ca.xml 216 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
  3. <!-- Copyright © 1991-2013 Unicode, Inc.
  4. CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
  5. For terms of use, see http://www.unicode.org/copyright.html
  6. -->
  7. <ldml>
  8. <identity>
  9. <version number="$Revision: 8671 $"/>
  10. <generation date="$Date: 2013-05-03 14:17:48 -0500 (Fri, 03 May 2013) $"/>
  11. <language type="ca"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <localeDisplayPattern>
  15. <localePattern>{0} ({1})</localePattern>
  16. <localeSeparator>, </localeSeparator>
  17. <localeKeyTypePattern draft="contributed">{0}: {1}</localeKeyTypePattern>
  18. </localeDisplayPattern>
  19. <languages>
  20. <language type="aa">àfar</language>
  21. <language type="ab">abkhaz</language>
  22. <language type="ace">atjeh</language>
  23. <language type="ach">acoli</language>
  24. <language type="ada">adangme</language>
  25. <language type="ady">adigué</language>
  26. <language type="ae">avèstic</language>
  27. <language type="af">afrikaans</language>
  28. <language type="afa">llengua afroasiàtica</language>
  29. <language type="afh">afrihili</language>
  30. <language type="agq" draft="contributed">aghem</language>
  31. <language type="ain">ainu</language>
  32. <language type="ak">àkan</language>
  33. <language type="akk">accadi</language>
  34. <language type="ale">aleuta</language>
  35. <language type="alg">llengua algonquina</language>
  36. <language type="alt">altaic meridional</language>
  37. <language type="am">amhàric</language>
  38. <language type="an">aragonès</language>
  39. <language type="ang">anglès antic</language>
  40. <language type="anp">angika</language>
  41. <language type="apa">llengua apatxe</language>
  42. <language type="ar">àrab</language>
  43. <language type="arc">arameu</language>
  44. <language type="arn">araucà</language>
  45. <language type="arp">arapaho</language>
  46. <language type="art">llengua artificial</language>
  47. <language type="arw">arauac</language>
  48. <language type="as">assamès</language>
  49. <language type="asa" draft="contributed">pare</language>
  50. <language type="ast">asturià</language>
  51. <language type="ath">llengua atapascana</language>
  52. <language type="aus">llengua australiana</language>
  53. <language type="av">àvar</language>
  54. <language type="awa">awadhi</language>
  55. <language type="ay">aimara</language>
  56. <language type="az">azerbaidjanès</language>
  57. <language type="az" alt="short" draft="contributed">àzeri</language>
  58. <language type="ba">baixkir</language>
  59. <language type="bad">banda</language>
  60. <language type="bai">bamileké</language>
  61. <language type="bal">balutxi</language>
  62. <language type="ban">balinès</language>
  63. <language type="bas">basa</language>
  64. <language type="bat">llengua bàltica</language>
  65. <language type="bax" draft="contributed">bamun</language>
  66. <language type="bbj" draft="contributed">ghomala</language>
  67. <language type="be">bielorús</language>
  68. <language type="bej">beja</language>
  69. <language type="bem">bemba</language>
  70. <language type="ber">berber</language>
  71. <language type="bez" draft="contributed">bena</language>
  72. <language type="bfd" draft="contributed">bafut</language>
  73. <language type="bg">búlgar</language>
  74. <language type="bh">bihari</language>
  75. <language type="bho">bhojpuri</language>
  76. <language type="bi">bislama</language>
  77. <language type="bik">bicol</language>
  78. <language type="bin">bini</language>
  79. <language type="bkm" draft="contributed">kom</language>
  80. <language type="bla">blackfoot</language>
  81. <language type="bm">bambara</language>
  82. <language type="bn">bengalí</language>
  83. <language type="bnt">bantu</language>
  84. <language type="bo">tibetà</language>
  85. <language type="br">bretó</language>
  86. <language type="bra">braj</language>
  87. <language type="brx" draft="contributed">bodo</language>
  88. <language type="bs">bosnià</language>
  89. <language type="bss" draft="contributed">akoose</language>
  90. <language type="btk">batak</language>
  91. <language type="bua">buriat</language>
  92. <language type="bug">bugui</language>
  93. <language type="bum" draft="contributed">seki</language>
  94. <language type="byn">bilin</language>
  95. <language type="byv" draft="contributed">medumba</language>
  96. <language type="ca">català</language>
  97. <language type="cad">caddo</language>
  98. <language type="cai">llengua ameríndia d'Amèrica Central</language>
  99. <language type="car">carib</language>
  100. <language type="cau">llengua caucàsica</language>
  101. <language type="cay" draft="contributed">cayuga</language>
  102. <language type="cch">atsam</language>
  103. <language type="ce">txetxè</language>
  104. <language type="ceb">cebuà</language>
  105. <language type="cel">llengua cèltica</language>
  106. <language type="cgg" draft="contributed">chiga</language>
  107. <language type="ch">chamorro</language>
  108. <language type="chb">txibtxa</language>
  109. <language type="chg">txagatai</language>
  110. <language type="chk">chuuk</language>
  111. <language type="chm">mari</language>
  112. <language type="chn">pidgin chinook</language>
  113. <language type="cho">choctaw</language>
  114. <language type="chp">chipewyan</language>
  115. <language type="chr">cherokee</language>
  116. <language type="chy">xeienne</language>
  117. <language type="ckb">kurd sorani</language>
  118. <language type="cmc">txam</language>
  119. <language type="co">cors</language>
  120. <language type="cop">copte</language>
  121. <language type="cpe">llengua criolla o pidgin basada en l'anglès</language>
  122. <language type="cpf">llengua criolla o pidgin basada en el francès</language>
  123. <language type="cpp">llengua criolla o pidgin basada en el portuguès</language>
  124. <language type="cr">cree</language>
  125. <language type="crh">tàtar de Crimea</language>
  126. <language type="crp">llengua criolla o pidgin</language>
  127. <language type="cs">txec</language>
  128. <language type="csb">caixubi</language>
  129. <language type="cu">eslau eclesiàstic</language>
  130. <language type="cus">llengua cuixítica</language>
  131. <language type="cv">txuvaix</language>
  132. <language type="cy">gal·lès</language>
  133. <language type="da">danès</language>
  134. <language type="dak">dakota</language>
  135. <language type="dar">darguà</language>
  136. <language type="dav" draft="contributed">taita</language>
  137. <language type="day">daiak</language>
  138. <language type="de">alemany</language>
  139. <language type="de_AT">alemany austríac</language>
  140. <language type="de_CH">alt alemany suís</language>
  141. <language type="del">delaware</language>
  142. <language type="den">slavey</language>
  143. <language type="dgr">dogrib</language>
  144. <language type="din">dinka</language>
  145. <language type="dje" draft="contributed">zarma</language>
  146. <language type="doi">dogri</language>
  147. <language type="dra">llengua dravídica</language>
  148. <language type="dsb">baix sòrab</language>
  149. <language type="dua">duala</language>
  150. <language type="dum">neerlandès mitjà</language>
  151. <language type="dv">divehi</language>
  152. <language type="dyo" draft="contributed">jola-fonyi</language>
  153. <language type="dyu">jula</language>
  154. <language type="dz">dzongka</language>
  155. <language type="dzg" draft="contributed">dazaga</language>
  156. <language type="ebu" draft="contributed">embu</language>
  157. <language type="ee">ewe</language>
  158. <language type="efi">efik</language>
  159. <language type="egy">egipci antic</language>
  160. <language type="eka">ekajuk</language>
  161. <language type="el">grec</language>
  162. <language type="elx">elamita</language>
  163. <language type="en">anglès</language>
  164. <language type="en_AU">anglès australià</language>
  165. <language type="en_CA">anglès canadenc</language>
  166. <language type="en_GB">anglès britànic</language>
  167. <language type="en_US">anglès americà</language>
  168. <language type="enm">anglès mitjà</language>
  169. <language type="eo">esperanto</language>
  170. <language type="es">espanyol</language>
  171. <language type="es_419">espanyol d'Hispanoamèrica</language>
  172. <language type="es_ES">espanyol d'Espanya</language>
  173. <language type="et">estonià</language>
  174. <language type="eu">basc</language>
  175. <language type="ewo">ewondo</language>
  176. <language type="fa">persa</language>
  177. <language type="fan">fang</language>
  178. <language type="fat">fanti</language>
  179. <language type="ff">ful</language>
  180. <language type="fi">finès</language>
  181. <language type="fil">filipí</language>
  182. <language type="fiu">llengua finoúgrica</language>
  183. <language type="fj">fijià</language>
  184. <language type="fo">feroès</language>
  185. <language type="fon">fon</language>
  186. <language type="fr">francès</language>
  187. <language type="fr_CA">francès canadenc</language>
  188. <language type="fr_CH">francès suís</language>
  189. <language type="frm">francès mitjà</language>
  190. <language type="fro">francès antic</language>
  191. <language type="frr">frisó septentrional</language>
  192. <language type="frs">frisó occidental</language>
  193. <language type="fur">friülà</language>
  194. <language type="fy">frisó oriental</language>
  195. <language type="ga">irlandès</language>
  196. <language type="gaa">ga</language>
  197. <language type="gay">gayo</language>
  198. <language type="gba">gbaya</language>
  199. <language type="gd">gaèlic escocès</language>
  200. <language type="gem">llengua germànica</language>
  201. <language type="gez">gueez</language>
  202. <language type="gil">gilbertès</language>
  203. <language type="gl">gallec</language>
  204. <language type="gmh">alt alemany mitjà</language>
  205. <language type="gn">guaraní</language>
  206. <language type="goh">alt alemany antic</language>
  207. <language type="gon">gondi</language>
  208. <language type="gor">gorontalo</language>
  209. <language type="got">gòtic</language>
  210. <language type="grb">grebo</language>
  211. <language type="grc">grec antic</language>
  212. <language type="gsw">alemany suís</language>
  213. <language type="gu">gujarati</language>
  214. <language type="guz" draft="contributed">gusí</language>
  215. <language type="gv">manx</language>
  216. <language type="gwi">gwichin</language>
  217. <language type="ha">haussa</language>
  218. <language type="hai">haida</language>
  219. <language type="haw">hawaià</language>
  220. <language type="he">hebreu</language>
  221. <language type="hi">hindi</language>
  222. <language type="hil">hiligainon</language>
  223. <language type="him">himachali</language>
  224. <language type="hit">hitita</language>
  225. <language type="hmn">hmong</language>
  226. <language type="ho">hiri motu</language>
  227. <language type="hr">croat</language>
  228. <language type="hsb">alt sòrab</language>
  229. <language type="ht">haitià</language>
  230. <language type="hu">hongarès</language>
  231. <language type="hup">hupa</language>
  232. <language type="hy">armeni</language>
  233. <language type="hz">herero</language>
  234. <language type="ia">interlingua</language>
  235. <language type="iba">iban</language>
  236. <language type="ibb" draft="contributed">ibibio</language>
  237. <language type="id">indonesi</language>
  238. <language type="ie">interlingue</language>
  239. <language type="ig">igbo</language>
  240. <language type="ii">yi sichuan</language>
  241. <language type="ijo">ijo</language>
  242. <language type="ik">inupiak</language>
  243. <language type="ilo">ilocà</language>
  244. <language type="inc">llengua índica</language>
  245. <language type="ine">llengua indoeuropea</language>
  246. <language type="inh">ingúix</language>
  247. <language type="io">ido</language>
  248. <language type="ira">llengua irànica</language>
  249. <language type="iro">iroquès</language>
  250. <language type="is">islandès</language>
  251. <language type="it">italià</language>
  252. <language type="iu">inuktitut</language>
  253. <language type="ja">japonès</language>
  254. <language type="jbo">lojban</language>
  255. <language type="jmc" draft="contributed">machame</language>
  256. <language type="jpr">judeopersa</language>
  257. <language type="jrb">judeoàrab</language>
  258. <language type="jv">javanès</language>
  259. <language type="ka">georgià</language>
  260. <language type="kaa">karakalpak</language>
  261. <language type="kab">cabilenc</language>
  262. <language type="kac">katxin</language>
  263. <language type="kaj">jju</language>
  264. <language type="kam">kamba</language>
  265. <language type="kar">karen</language>
  266. <language type="kaw">kawi</language>
  267. <language type="kbd">kabardí</language>
  268. <language type="kbl" draft="contributed">kanembu</language>
  269. <language type="kcg">tyap</language>
  270. <language type="kde" draft="contributed">makonde</language>
  271. <language type="kea" draft="contributed">crioll capverdià</language>
  272. <language type="kfo">koro</language>
  273. <language type="kg">kongo</language>
  274. <language type="kha">khasi</language>
  275. <language type="khi">llengua khoisan</language>
  276. <language type="kho">khotanès</language>
  277. <language type="khq" draft="contributed">koyra chiini</language>
  278. <language type="ki">kikuiu</language>
  279. <language type="kj">kuanyama</language>
  280. <language type="kk">kazakh</language>
  281. <language type="kkj" draft="contributed">kako</language>
  282. <language type="kl">grenlandès</language>
  283. <language type="kln" draft="contributed">kalenjin</language>
  284. <language type="km">khmer</language>
  285. <language type="kmb">kimbundu</language>
  286. <language type="kn">kannada</language>
  287. <language type="ko">coreà</language>
  288. <language type="kok">konkani</language>
  289. <language type="kos">kosraeà</language>
  290. <language type="kpe">kpelle</language>
  291. <language type="kr">kanuri</language>
  292. <language type="krc">karatxai</language>
  293. <language type="krl">carelià</language>
  294. <language type="kro">kru</language>
  295. <language type="kru">kurukh</language>
  296. <language type="ks">caixmiri</language>
  297. <language type="ksb" draft="contributed">shambala</language>
  298. <language type="ksf" draft="contributed">bafia</language>
  299. <language type="ksh" draft="contributed">colognian</language>
  300. <language type="ku">kurd</language>
  301. <language type="kum">kúmik</language>
  302. <language type="kut">kutenai</language>
  303. <language type="kv">komi</language>
  304. <language type="kw">còrnic</language>
  305. <language type="ky">kirguís</language>
  306. <language type="la">llatí</language>
  307. <language type="lad">ladí</language>
  308. <language type="lag" draft="contributed">langi</language>
  309. <language type="lah">panjabi occidental</language>
  310. <language type="lam">lamba</language>
  311. <language type="lb">luxemburguès</language>
  312. <language type="lez">lesguià</language>
  313. <language type="lg">ganda</language>
  314. <language type="li">limburguès</language>
  315. <language type="ln">lingala</language>
  316. <language type="lo">laosià</language>
  317. <language type="lol">mongo</language>
  318. <language type="loz">lozi</language>
  319. <language type="lt">lituà</language>
  320. <language type="lu">luba katanga</language>
  321. <language type="lua">luba-lulua</language>
  322. <language type="lui">luisenyo</language>
  323. <language type="lun">lunda</language>
  324. <language type="luo">luo</language>
  325. <language type="lus">mizo</language>
  326. <language type="luy" draft="contributed">luyia</language>
  327. <language type="lv">letó</language>
  328. <language type="mad">madurès</language>
  329. <language type="maf" draft="contributed">mafa</language>
  330. <language type="mag">magahi</language>
  331. <language type="mai">maithili</language>
  332. <language type="mak">makassar</language>
  333. <language type="man">mandinga</language>
  334. <language type="map">llengua austronèsia</language>
  335. <language type="mas">massai</language>
  336. <language type="mde" draft="contributed">maba</language>
  337. <language type="mdf">mordovià moksa</language>
  338. <language type="mdr">mandar</language>
  339. <language type="men">mende</language>
  340. <language type="mer" draft="contributed">meru</language>
  341. <language type="mfe">mauricià</language>
  342. <language type="mg">malgaix</language>
  343. <language type="mga">gaèlic irlandès mitjà</language>
  344. <language type="mgh" draft="contributed">makhuwa-metto</language>
  345. <language type="mh">marshallès</language>
  346. <language type="mi">maori</language>
  347. <language type="mic">micmac</language>
  348. <language type="min">minangkabau</language>
  349. <language type="mis">llengua miscel·lània</language>
  350. <language type="mk">macedoni</language>
  351. <language type="mkh">llengua monkhmer</language>
  352. <language type="ml">malaialam</language>
  353. <language type="mn">mongol</language>
  354. <language type="mnc">manxú</language>
  355. <language type="mni">manipurí</language>
  356. <language type="mno">llengua manobo</language>
  357. <language type="mo">moldau</language>
  358. <language type="moh">mohawk</language>
  359. <language type="mos">moré</language>
  360. <language type="mr">marathi</language>
  361. <language type="ms">malai</language>
  362. <language type="mt">maltès</language>
  363. <language type="mua" draft="contributed">mundang</language>
  364. <language type="mul">llengües vàries</language>
  365. <language type="mun">llengua munda</language>
  366. <language type="mus">creek</language>
  367. <language type="mwl">mirandès</language>
  368. <language type="mwr">marwari</language>
  369. <language type="my">birmà</language>
  370. <language type="mye" draft="contributed">myene</language>
  371. <language type="myn">llengua maia</language>
  372. <language type="myv">mordovià erza</language>
  373. <language type="na">nauruà</language>
  374. <language type="nah">nàhuatl</language>
  375. <language type="nai">llengua ameríndia septentrional</language>
  376. <language type="nap">napolità</language>
  377. <language type="naq" draft="contributed">nama</language>
  378. <language type="nb">noruec bokmål</language>
  379. <language type="nd">ndebele septentrional</language>
  380. <language type="nds">baix alemany</language>
  381. <language type="ne">nepalès</language>
  382. <language type="new">newari</language>
  383. <language type="ng">ndonga</language>
  384. <language type="nia">nias</language>
  385. <language type="nic">llengua nigerokurdufaniana</language>
  386. <language type="niu">niueà</language>
  387. <language type="nl">neerlandès</language>
  388. <language type="nl_BE">flamenc</language>
  389. <language type="nmg" draft="contributed">bissio</language>
  390. <language type="nn">noruec nynorsk</language>
  391. <language type="nnh" draft="contributed">ngiemboon</language>
  392. <language type="no">noruec</language>
  393. <language type="nog">nogai</language>
  394. <language type="non">nòrdic antic</language>
  395. <language type="nqo">n’Ko</language>
  396. <language type="nr">ndebele meridional</language>
  397. <language type="nso">sotho septentrional</language>
  398. <language type="nub">llengua nubiana</language>
  399. <language type="nus" draft="contributed">nuer</language>
  400. <language type="nv">navaho</language>
  401. <language type="nwc">newari clàssic</language>
  402. <language type="ny">nyanja</language>
  403. <language type="nym">nyamwesi</language>
  404. <language type="nyn">nyankole</language>
  405. <language type="nyo">nyoro</language>
  406. <language type="nzi">nzema</language>
  407. <language type="oc">occità</language>
  408. <language type="oj">ojibwa</language>
  409. <language type="om">oromo</language>
  410. <language type="or">oriya</language>
  411. <language type="os">osset</language>
  412. <language type="osa">osage</language>
  413. <language type="ota">turc otomà</language>
  414. <language type="oto">llengua otomangueana</language>
  415. <language type="pa">panjabi</language>
  416. <language type="paa">llengua papú</language>
  417. <language type="pag">pangasi</language>
  418. <language type="pal">pahlavi</language>
  419. <language type="pam">pampangà</language>
  420. <language type="pap">papiamento</language>
  421. <language type="pau">palauà</language>
  422. <language type="peo">persa antic</language>
  423. <language type="phi">llengua filipina</language>
  424. <language type="phn">fenici</language>
  425. <language type="pi">pali</language>
  426. <language type="pl">polonès</language>
  427. <language type="pon">ponapeà</language>
  428. <language type="pra">pràcrit</language>
  429. <language type="pro">provençal antic</language>
  430. <language type="ps">paixtu</language>
  431. <language type="ps" alt="variant">pushtu</language>
  432. <language type="pt">portuguès</language>
  433. <language type="pt_BR">portuguès de Brasil</language>
  434. <language type="pt_PT">portuguès de Portugal</language>
  435. <language type="qu">quítxua</language>
  436. <language type="raj">rajasthani</language>
  437. <language type="rap">rapanui</language>
  438. <language type="rar">rarotongà</language>
  439. <language type="rm">retoromànic</language>
  440. <language type="rn">rundi</language>
  441. <language type="ro">romanès</language>
  442. <language type="roa">llengua romànica</language>
  443. <language type="rof" draft="contributed">rombo</language>
  444. <language type="rom">romaní</language>
  445. <language type="root">arrel</language>
  446. <language type="ru">rus</language>
  447. <language type="rup">aromanès</language>
  448. <language type="rw">ruandès</language>
  449. <language type="rwk" draft="contributed">rwo</language>
  450. <language type="sa">sànscrit</language>
  451. <language type="sad">sandawe</language>
  452. <language type="sah">iacut</language>
  453. <language type="sai">llengua ameríndia meridional</language>
  454. <language type="sal">llengua salish</language>
  455. <language type="sam">arameu samarità</language>
  456. <language type="saq" draft="contributed">samburu</language>
  457. <language type="sas">sasak</language>
  458. <language type="sat">santali</language>
  459. <language type="sba" draft="contributed">ngambay</language>
  460. <language type="sbp" draft="contributed">sangu</language>
  461. <language type="sc">sard</language>
  462. <language type="scn">sicilià</language>
  463. <language type="sco">escocès</language>
  464. <language type="sd">sindhi</language>
  465. <language type="se">sami septentrional</language>
  466. <language type="see" draft="contributed">seneca</language>
  467. <language type="seh" draft="contributed">sena</language>
  468. <language type="sel">selkup</language>
  469. <language type="sem">llengua semítica</language>
  470. <language type="ses" draft="contributed">koyraboro senni</language>
  471. <language type="sg">sango</language>
  472. <language type="sga">irlandès antic</language>
  473. <language type="sgn">llengua de signes</language>
  474. <language type="sh">serbocroat</language>
  475. <language type="shi" draft="contributed">tachelhit</language>
  476. <language type="shn">xan</language>
  477. <language type="shu" draft="contributed">àrab txadià</language>
  478. <language type="si">singalès</language>
  479. <language type="sid">sidamo</language>
  480. <language type="sio">llengua sioux</language>
  481. <language type="sit">llengua sinotibetana</language>
  482. <language type="sk">eslovac</language>
  483. <language type="sl">eslovè</language>
  484. <language type="sla">llengua eslava</language>
  485. <language type="sm">samoà</language>
  486. <language type="sma">sami meridional</language>
  487. <language type="smi">llengua sami</language>
  488. <language type="smj">sami lule</language>
  489. <language type="smn">sami d'Inari</language>
  490. <language type="sms">sami skolt</language>
  491. <language type="sn">shona</language>
  492. <language type="snk">soninke</language>
  493. <language type="so">somali</language>
  494. <language type="sog">sogdià</language>
  495. <language type="son">songhai</language>
  496. <language type="sq">albanès</language>
  497. <language type="sr">serbi</language>
  498. <language type="srn">sranan</language>
  499. <language type="srr">serer</language>
  500. <language type="ss">siswati</language>
  501. <language type="ssa">llengua nilosahariana</language>
  502. <language type="ssy" draft="contributed">saho</language>
  503. <language type="st">sotho meridional</language>
  504. <language type="su">sundanès</language>
  505. <language type="suk">sukuma</language>
  506. <language type="sus">susú</language>
  507. <language type="sux">sumeri</language>
  508. <language type="sv">suec</language>
  509. <language type="sw">suahili</language>
  510. <language type="swb">comorià</language>
  511. <language type="swc" draft="contributed">suahili del Congo</language>
  512. <language type="syc">siríac clàssic</language>
  513. <language type="syr">siríac</language>
  514. <language type="ta">tàmil</language>
  515. <language type="tai">llengua tai</language>
  516. <language type="te">telugu</language>
  517. <language type="tem">temne</language>
  518. <language type="teo" draft="contributed">teso</language>
  519. <language type="ter">terena</language>
  520. <language type="tet">tetun</language>
  521. <language type="tg">tadjik</language>
  522. <language type="th">tailandès</language>
  523. <language type="ti">tigrinya</language>
  524. <language type="tig">tigre</language>
  525. <language type="tiv">tiv</language>
  526. <language type="tk">turcman</language>
  527. <language type="tkl">tokelauès</language>
  528. <language type="tl">tagàlog</language>
  529. <language type="tlh">klingonià</language>
  530. <language type="tli">tlingit</language>
  531. <language type="tmh">tamazight</language>
  532. <language type="tn">tswana</language>
  533. <language type="to">tongalès</language>
  534. <language type="tog">tonga</language>
  535. <language type="tpi">tok pisin</language>
  536. <language type="tr">turc</language>
  537. <language type="trv" draft="contributed">taroko</language>
  538. <language type="ts">tsonga</language>
  539. <language type="tsi">tsimshià</language>
  540. <language type="tt">tàtar</language>
  541. <language type="tum">tumbuka</language>
  542. <language type="tup">llengua tupí</language>
  543. <language type="tut">llengua altaica</language>
  544. <language type="tvl">tuvaluà</language>
  545. <language type="tw">twi</language>
  546. <language type="twq" draft="contributed">tasawaq</language>
  547. <language type="ty">tahitià</language>
  548. <language type="tyv">tuvinià</language>
  549. <language type="tzm" draft="contributed">amazic del Marroc central</language>
  550. <language type="udm">udmurt</language>
  551. <language type="ug">uigur</language>
  552. <language type="ug" alt="variant" draft="contributed">uigur</language>
  553. <language type="uga">ugarític</language>
  554. <language type="uk">ucraïnès</language>
  555. <language type="umb">umbundu</language>
  556. <language type="und">idioma desconegut</language>
  557. <language type="ur">urdú</language>
  558. <language type="uz">uzbek</language>
  559. <language type="vai">vai</language>
  560. <language type="ve">venda</language>
  561. <language type="vi">vietnamita</language>
  562. <language type="vo">volapük</language>
  563. <language type="vot">vòtic</language>
  564. <language type="vun" draft="contributed">vunjo</language>
  565. <language type="wa">való</language>
  566. <language type="wae" draft="contributed">walser</language>
  567. <language type="wak">llengua wakash</language>
  568. <language type="wal">ameto</language>
  569. <language type="war">waray-waray</language>
  570. <language type="was">washo</language>
  571. <language type="wen">sòrab</language>
  572. <language type="wo">wòlof</language>
  573. <language type="xal">calmuc</language>
  574. <language type="xh">xosa</language>
  575. <language type="xog" draft="contributed">soga</language>
  576. <language type="yao">yao</language>
  577. <language type="yap">yapeà</language>
  578. <language type="yav" draft="contributed">yangben</language>
  579. <language type="ybb" draft="contributed">yemba</language>
  580. <language type="yi">jiddisch</language>
  581. <language type="yo">ioruba</language>
  582. <language type="ypk">llengua iupik</language>
  583. <language type="yue">cantonès</language>
  584. <language type="za">zhuang</language>
  585. <language type="zap">zapoteca</language>
  586. <language type="zbl">símbols Bliss</language>
  587. <language type="zen">zenaga</language>
  588. <language type="zh">xinès</language>
  589. <language type="zh_Hans">xinès simplificat</language>
  590. <language type="zh_Hant">xinès tradicional</language>
  591. <language type="znd">zande</language>
  592. <language type="zu">zulu</language>
  593. <language type="zun">zuni</language>
  594. <language type="zxx">sense contingut lingüístic</language>
  595. <language type="zza">zaza</language>
  596. </languages>
  597. <scripts>
  598. <script type="Afak" draft="contributed">afaka</script>
  599. <script type="Arab">àrab</script>
  600. <script type="Arab" alt="variant" draft="contributed">perso-àrabic</script>
  601. <script type="Armi">arameu imperial</script>
  602. <script type="Armn">armeni</script>
  603. <script type="Avst">avèstic</script>
  604. <script type="Bali">balinès</script>
  605. <script type="Bamu" draft="contributed">bamum</script>
  606. <script type="Bass" draft="contributed">bassa vah</script>
  607. <script type="Batk">batak</script>
  608. <script type="Beng">bengalí</script>
  609. <script type="Blis">símbols Bliss</script>
  610. <script type="Bopo">bopomofo</script>
  611. <script type="Brah">brahmi</script>
  612. <script type="Brai">Braille</script>
  613. <script type="Bugi">buginès</script>
  614. <script type="Buhd">buhid</script>
  615. <script type="Cakm">chakma</script>
  616. <script type="Cans">síl·labes dels aborígens canadencs unificats</script>
  617. <script type="Cari">carià</script>
  618. <script type="Cham">cham</script>
  619. <script type="Cher">cherokee</script>
  620. <script type="Cirt">cirth</script>
  621. <script type="Copt">copte</script>
  622. <script type="Cprt">xipriota</script>
  623. <script type="Cyrl">ciríl·lic</script>
  624. <script type="Cyrs">ciríl·lic de l'antic eslau eclesiàstic</script>
  625. <script type="Deva">devanagari</script>
  626. <script type="Dsrt">deseret</script>
  627. <script type="Dupl" draft="contributed">taquigrafia Duployé</script>
  628. <script type="Egyd">demòtic egipci</script>
  629. <script type="Egyh">hieràtic egipci</script>
  630. <script type="Egyp">jeroglífic egipci</script>
  631. <script type="Ethi">etiòpic</script>
  632. <script type="Geok">georgià hucuri</script>
  633. <script type="Geor">georgià</script>
  634. <script type="Glag">glagolític</script>
  635. <script type="Goth">gòtic</script>
  636. <script type="Gran" draft="contributed">grantha</script>
  637. <script type="Grek">grec</script>
  638. <script type="Gujr">gujarati</script>
  639. <script type="Guru">gurmukhi</script>
  640. <script type="Hang">hangul</script>
  641. <script type="Hani">han</script>
  642. <script type="Hano">hanunoo</script>
  643. <script type="Hans">simplificat</script>
  644. <script type="Hans" alt="stand-alone">xinès simplificat</script>
  645. <script type="Hant">tradicional</script>
  646. <script type="Hant" alt="stand-alone">xinès tradicional</script>
  647. <script type="Hebr">hebreu</script>
  648. <script type="Hira">hiragana</script>
  649. <script type="Hluw" draft="contributed">jeroglífic anatoli</script>
  650. <script type="Hmng">pahawh hmong</script>
  651. <script type="Hrkt">katakana o hiragana</script>
  652. <script type="Hung">hongarès antic</script>
  653. <script type="Inds">escriptura de la vall de l'Indus</script>
  654. <script type="Ital">cursiva antiga</script>
  655. <script type="Java">javanès</script>
  656. <script type="Jpan">japonès</script>
  657. <script type="Jurc" draft="contributed">jürchen</script>
  658. <script type="Kali">kayah li</script>
  659. <script type="Kana">katakana</script>
  660. <script type="Khar">kharosthi</script>
  661. <script type="Khmr">khmer</script>
  662. <script type="Khoj" draft="contributed">khoja</script>
  663. <script type="Knda">kannada</script>
  664. <script type="Kore">coreà</script>
  665. <script type="Kpel" draft="contributed">kpelle</script>
  666. <script type="Kthi">kaithi</script>
  667. <script type="Lana">lanna</script>
  668. <script type="Laoo">lao</script>
  669. <script type="Latf">llatí fraktur</script>
  670. <script type="Latg">llatí gaèlic</script>
  671. <script type="Latn">llatí</script>
  672. <script type="Lepc">lepcha</script>
  673. <script type="Limb">limbu</script>
  674. <script type="Lina">lineal A</script>
  675. <script type="Linb">lineal B</script>
  676. <script type="Lisu" draft="contributed">lisu</script>
  677. <script type="Loma" draft="contributed">loma</script>
  678. <script type="Lyci">lici</script>
  679. <script type="Lydi">lidi</script>
  680. <script type="Mand">mandaic</script>
  681. <script type="Mani">maniqueu</script>
  682. <script type="Maya">jeroglífics maies</script>
  683. <script type="Mend" draft="contributed">mende</script>
  684. <script type="Merc" draft="contributed">cursiva meroítica</script>
  685. <script type="Mero">meroític</script>
  686. <script type="Mlym">malaialam</script>
  687. <script type="Mong">mongol</script>
  688. <script type="Moon">moon</script>
  689. <script type="Mroo" draft="contributed">mro</script>
  690. <script type="Mtei">manipurí</script>
  691. <script type="Mymr">birmà</script>
  692. <script type="Narb" draft="contributed">antic nord-aràbic</script>
  693. <script type="Nbat" draft="contributed">nabateu</script>
  694. <script type="Nkgb" draft="contributed">geba</script>
  695. <script type="Nkoo">n’Ko</script>
  696. <script type="Nshu" draft="contributed">nü shu</script>
  697. <script type="Ogam">ogham</script>
  698. <script type="Olck">santali</script>
  699. <script type="Orkh">orkhon</script>
  700. <script type="Orya">oriya</script>
  701. <script type="Osma">osmanya</script>
  702. <script type="Palm" draft="contributed">palmirè</script>
  703. <script type="Perm">antic pèrmic</script>
  704. <script type="Phag">phagspa</script>
  705. <script type="Phli">pahlavi inscripcional</script>
  706. <script type="Phlp">psalter pahlavi</script>
  707. <script type="Phlv">pahlavi</script>
  708. <script type="Phnx">fenici</script>
  709. <script type="Plrd">pollard miao</script>
  710. <script type="Prti">parthià inscripcional</script>
  711. <script type="Rjng">rejang</script>
  712. <script type="Roro">rongo-rongo</script>
  713. <script type="Runr">rúnic</script>
  714. <script type="Samr">samarità</script>
  715. <script type="Sara">sarati</script>
  716. <script type="Sarb" draft="contributed">sud-aràbic antic</script>
  717. <script type="Saur">saurashtra</script>
  718. <script type="Sgnw" draft="contributed">escriptura de signes</script>
  719. <script type="Shaw">shavià</script>
  720. <script type="Shrd" draft="contributed">shrada</script>
  721. <script type="Sind" draft="contributed">devangari</script>
  722. <script type="Sinh">singalès</script>
  723. <script type="Sora" draft="contributed">sora sompeng</script>
  724. <script type="Sund">sundanès</script>
  725. <script type="Sylo">syloti nagri</script>
  726. <script type="Syrc">siríac</script>
  727. <script type="Syre">siríac estrangelo</script>
  728. <script type="Syrj">siríac occidental</script>
  729. <script type="Syrn">siríac oriental</script>
  730. <script type="Tagb">tagbanwa</script>
  731. <script type="Takr" draft="contributed">takri</script>
  732. <script type="Tale">tai le</script>
  733. <script type="Talu">nou tai lue</script>
  734. <script type="Taml">tàmil</script>
  735. <script type="Tang" draft="contributed">tangut</script>
  736. <script type="Tavt">tai viet</script>
  737. <script type="Telu">telugu</script>
  738. <script type="Teng">tengwar</script>
  739. <script type="Tfng">tifinagh</script>
  740. <script type="Tglg">tagàlog</script>
  741. <script type="Thaa">thaana</script>
  742. <script type="Thai">tailandès</script>
  743. <script type="Tibt">tibetà</script>
  744. <script type="Tirh" draft="contributed">tirhut</script>
  745. <script type="Ugar">ugarític</script>
  746. <script type="Vaii">vai</script>
  747. <script type="Visp">llenguatge visible</script>
  748. <script type="Wara" draft="contributed">varang kshiti</script>
  749. <script type="Wole" draft="contributed">woleai</script>
  750. <script type="Xpeo">persa antic</script>
  751. <script type="Xsux">cuneïforme sumeri-accadi</script>
  752. <script type="Yiii">yi</script>
  753. <script type="Zinh">heretat</script>
  754. <script type="Zmth">notació matemàtica</script>
  755. <script type="Zsym">símbols</script>
  756. <script type="Zxxx">sense escriptura</script>
  757. <script type="Zyyy">comú</script>
  758. <script type="Zzzz">escriptura desconeguda</script>
  759. </scripts>
  760. <territories>
  761. <territory type="001">Món</territory>
  762. <territory type="002">Àfrica</territory>
  763. <territory type="003">Amèrica del Nord</territory>
  764. <territory type="005">Amèrica del Sud</territory>
  765. <territory type="009">Oceania</territory>
  766. <territory type="011">Àfrica Occidental</territory>
  767. <territory type="013">Amèrica Central</territory>
  768. <territory type="014">Àfrica Oriental</territory>
  769. <territory type="015">Àfrica septentrional</territory>
  770. <territory type="017">Àfrica Central</territory>
  771. <territory type="018">Àfrica meridional</territory>
  772. <territory type="019">Amèrica</territory>
  773. <territory type="021">Amèrica septentrional</territory>
  774. <territory type="029">Carib</territory>
  775. <territory type="030">Àsia Oriental</territory>
  776. <territory type="034">Àsia meridional</territory>
  777. <territory type="035">Àsia Sud-oriental</territory>
  778. <territory type="039">Europa meridional</territory>
  779. <territory type="053">Austràlia i Nova Zelanda</territory>
  780. <territory type="054">Melanèsia</territory>
  781. <territory type="057">Regió de la Micronèsia</territory>
  782. <territory type="061">Polinèsia</territory>
  783. <territory type="142">Àsia</territory>
  784. <territory type="143">Àsia Central</territory>
  785. <territory type="145">Àsia Occidental</territory>
  786. <territory type="150">Europa</territory>
  787. <territory type="151">Europa Oriental</territory>
  788. <territory type="154">Europa septentrional</territory>
  789. <territory type="155">Europa Occidental</territory>
  790. <territory type="419">Amèrica Llatina</territory>
  791. <territory type="AC">Illa de l'Ascensió</territory>
  792. <territory type="AD">Andorra</territory>
  793. <territory type="AE">Unió dels Emirats Àrabs</territory>
  794. <territory type="AF">Afganistan</territory>
  795. <territory type="AG">Antigua i Barbuda</territory>
  796. <territory type="AI">Anguilla</territory>
  797. <territory type="AL">Albània</territory>
  798. <territory type="AM">Armènia</territory>
  799. <territory type="AN">Antilles Neerlandeses</territory>
  800. <territory type="AO">Angola</territory>
  801. <territory type="AQ">Antàrtida</territory>
  802. <territory type="AR">Argentina</territory>
  803. <territory type="AS">Samoa Americana</territory>
  804. <territory type="AT">Àustria</territory>
  805. <territory type="AU">Austràlia</territory>
  806. <territory type="AW">Aruba</territory>
  807. <territory type="AX">Illes Åland</territory>
  808. <territory type="AZ">Azerbaidjan</territory>
  809. <territory type="BA">Bòsnia i Hercegovina</territory>
  810. <territory type="BB">Barbados</territory>
  811. <territory type="BD">Bangla Desh</territory>
  812. <territory type="BE">Bèlgica</territory>
  813. <territory type="BF">Burkina Faso</territory>
  814. <territory type="BG">Bulgària</territory>
  815. <territory type="BH">Bahrain</territory>
  816. <territory type="BI">Burundi</territory>
  817. <territory type="BJ">Benín</territory>
  818. <territory type="BL">Saint Barthélemy</territory>
  819. <territory type="BM">Bermudes</territory>
  820. <territory type="BN">Brunei</territory>
  821. <territory type="BO">Bolívia</territory>
  822. <territory type="BQ" draft="contributed">Carib Neerlandès</territory>
  823. <territory type="BR">Brasil</territory>
  824. <territory type="BS">Bahames</territory>
  825. <territory type="BT">Bhutan</territory>
  826. <territory type="BV">Illa Bouvet</territory>
  827. <territory type="BW">Botswana</territory>
  828. <territory type="BY">Bielorússia</territory>
  829. <territory type="BZ">Belize</territory>
  830. <territory type="CA">Canadà</territory>
  831. <territory type="CC">Illes Cocos</territory>
  832. <territory type="CD">Congo - Kinshasa</territory>
  833. <territory type="CD" alt="variant">Congo [República Democràtica del Congo]</territory>
  834. <territory type="CF">República Centreafricana</territory>
  835. <territory type="CG">Congo - Brazzaville</territory>
  836. <territory type="CG" alt="variant">Congo [República del Congo]</territory>
  837. <territory type="CH">Suïssa</territory>
  838. <territory type="CI">Costa d’Ivori</territory>
  839. <territory type="CI" alt="variant">Costa d’Ivori</territory>
  840. <territory type="CK">Illes Cook</territory>
  841. <territory type="CL">Xile</territory>
  842. <territory type="CM">Camerun</territory>
  843. <territory type="CN">Xina</territory>
  844. <territory type="CO">Colòmbia</territory>
  845. <territory type="CP">Illa Clipperton</territory>
  846. <territory type="CR">Costa Rica</territory>
  847. <territory type="CU">Cuba</territory>
  848. <territory type="CV">Cap Verd</territory>
  849. <territory type="CW">Curaçao</territory>
  850. <territory type="CX">Illa Christmas</territory>
  851. <territory type="CY">Xipre</territory>
  852. <territory type="CZ">República Txeca</territory>
  853. <territory type="DE">Alemanya</territory>
  854. <territory type="DG">Diego Garcia</territory>
  855. <territory type="DJ">Djibouti</territory>
  856. <territory type="DK">Dinamarca</territory>
  857. <territory type="DM">Dominica</territory>
  858. <territory type="DO">República Dominicana</territory>
  859. <territory type="DZ">Algèria</territory>
  860. <territory type="EA">Ceuta i Melilla</territory>
  861. <territory type="EC">Equador</territory>
  862. <territory type="EE">Estònia</territory>
  863. <territory type="EG">Egipte</territory>
  864. <territory type="EH">Sàhara Occidental</territory>
  865. <territory type="ER">Eritrea</territory>
  866. <territory type="ES">Espanya</territory>
  867. <territory type="ET">Etiòpia</territory>
  868. <territory type="EU">Unió Europea</territory>
  869. <territory type="FI">Finlàndia</territory>
  870. <territory type="FJ">Fiji</territory>
  871. <territory type="FK">Illes Malvines</territory>
  872. <territory type="FK" alt="variant">Illes Malvines [Illes Falkland]</territory>
  873. <territory type="FM">Micronèsia</territory>
  874. <territory type="FO">Illes Fèroe</territory>
  875. <territory type="FR">França</territory>
  876. <territory type="GA">Gabon</territory>
  877. <territory type="GB">Regne Unit</territory>
  878. <territory type="GD">Grenada</territory>
  879. <territory type="GE">Geòrgia</territory>
  880. <territory type="GF">Guaiana Francesa</territory>
  881. <territory type="GG">Guernsey</territory>
  882. <territory type="GH">Ghana</territory>
  883. <territory type="GI">Gibraltar</territory>
  884. <territory type="GL">Grenlàndia</territory>
  885. <territory type="GM">Gàmbia</territory>
  886. <territory type="GN">Guinea</territory>
  887. <territory type="GP">Guadeloupe</territory>
  888. <territory type="GQ">Guinea Equatorial</territory>
  889. <territory type="GR">Grècia</territory>
  890. <territory type="GS">Illes Geòrgia del Sud i Sandwich del Sud</territory>
  891. <territory type="GT">Guatemala</territory>
  892. <territory type="GU">Guam</territory>
  893. <territory type="GW">Guinea Bissau</territory>
  894. <territory type="GY">Guyana</territory>
  895. <territory type="HK">Regió adm. especial xinesa de Hong Kong</territory>
  896. <territory type="HK" alt="short">Hong Kong</territory>
  897. <territory type="HM">Illa Heard i Illes McDonald</territory>
  898. <territory type="HN">Hondures</territory>
  899. <territory type="HR">Croàcia</territory>
  900. <territory type="HT">Haití</territory>
  901. <territory type="HU">Hongria</territory>
  902. <territory type="IC">Illes Canàries</territory>
  903. <territory type="ID">Indonèsia</territory>
  904. <territory type="IE">Irlanda</territory>
  905. <territory type="IL">Israel</territory>
  906. <territory type="IM">Illa de Man</territory>
  907. <territory type="IN">Índia</territory>
  908. <territory type="IO">Territori Britànic de l'Oceà Índic</territory>
  909. <territory type="IQ">Iraq</territory>
  910. <territory type="IR">Iran</territory>
  911. <territory type="IS">Islàndia</territory>
  912. <territory type="IT">Itàlia</territory>
  913. <territory type="JE">Jersey</territory>
  914. <territory type="JM">Jamaica</territory>
  915. <territory type="JO">Jordània</territory>
  916. <territory type="JP">Japó</territory>
  917. <territory type="KE">Kenya</territory>
  918. <territory type="KG">Kirguizistan</territory>
  919. <territory type="KH">Cambodja</territory>
  920. <territory type="KI">Kiribati</territory>
  921. <territory type="KM">Comores</territory>
  922. <territory type="KN">Saint Christopher i Nevis</territory>
  923. <territory type="KP">Corea del Nord</territory>
  924. <territory type="KR">Corea del Sud</territory>
  925. <territory type="KW">Kuwait</territory>
  926. <territory type="KY">Illes Caiman</territory>
  927. <territory type="KZ">Kazakhstan</territory>
  928. <territory type="LA">Laos</territory>
  929. <territory type="LB">Líban</territory>
  930. <territory type="LC">Saint Lucia</territory>
  931. <territory type="LI">Liechtenstein</territory>
  932. <territory type="LK">Sri Lanka</territory>
  933. <territory type="LR">Libèria</territory>
  934. <territory type="LS">Lesotho</territory>
  935. <territory type="LT">Lituània</territory>
  936. <territory type="LU">Luxemburg</territory>
  937. <territory type="LV">Letònia</territory>
  938. <territory type="LY">Líbia</territory>
  939. <territory type="MA">Marroc</territory>
  940. <territory type="MC">Mònaco</territory>
  941. <territory type="MD">Moldàvia</territory>
  942. <territory type="ME">Montenegro</territory>
  943. <territory type="MF">Saint Martin</territory>
  944. <territory type="MG">Madagascar</territory>
  945. <territory type="MH">Illes Marshall</territory>
  946. <territory type="MK">Macedònia</territory>
  947. <territory type="MK" alt="variant">Macedònia [Exrepública Iugoslava de Macedònia]</territory>
  948. <territory type="ML">Mali</territory>
  949. <territory type="MM">Myanmar [Birmània]</territory>
  950. <territory type="MN">Mongòlia</territory>
  951. <territory type="MO">Regió administrativa especial xinesa de Macau</territory>
  952. <territory type="MO" alt="short">Macau</territory>
  953. <territory type="MP">Illes Mariannes del Nord</territory>
  954. <territory type="MQ">Martinica</territory>
  955. <territory type="MR">Mauritània</territory>
  956. <territory type="MS">Montserrat</territory>
  957. <territory type="MT">Malta</territory>
  958. <territory type="MU">Maurici</territory>
  959. <territory type="MV">Maldives</territory>
  960. <territory type="MW">Malawi</territory>
  961. <territory type="MX">Mèxic</territory>
  962. <territory type="MY">Malàisia</territory>
  963. <territory type="MZ">Moçambic</territory>
  964. <territory type="NA">Namíbia</territory>
  965. <territory type="NC">Nova Caledònia</territory>
  966. <territory type="NE">Níger</territory>
  967. <territory type="NF">Illa Norfolk</territory>
  968. <territory type="NG">Nigèria</territory>
  969. <territory type="NI">Nicaragua</territory>
  970. <territory type="NL">Països Baixos</territory>
  971. <territory type="NO">Noruega</territory>
  972. <territory type="NP">Nepal</territory>
  973. <territory type="NR">Nauru</territory>
  974. <territory type="NU">Niue</territory>
  975. <territory type="NZ">Nova Zelanda</territory>
  976. <territory type="OM">Oman</territory>
  977. <territory type="PA">Panamà</territory>
  978. <territory type="PE">Perú</territory>
  979. <territory type="PF">Polinèsia Francesa</territory>
  980. <territory type="PG">Papua Nova Guinea</territory>
  981. <territory type="PH">Filipines</territory>
  982. <territory type="PK">Pakistan</territory>
  983. <territory type="PL">Polònia</territory>
  984. <territory type="PM">Saint-Pierre-et-Miquelon</territory>
  985. <territory type="PN">Illes Pitcairn</territory>
  986. <territory type="PR">Puerto Rico</territory>
  987. <territory type="PS">Palestina</territory>
  988. <territory type="PS" alt="short">Palestina</territory>
  989. <territory type="PT">Portugal</territory>
  990. <territory type="PW">Palau</territory>
  991. <territory type="PY">Paraguai</territory>
  992. <territory type="QA">Qatar</territory>
  993. <territory type="QO">Territoris allunyats d'Oceania</territory>
  994. <territory type="RE">Illa de la Reunió</territory>
  995. <territory type="RO">Romania</territory>
  996. <territory type="RS">Sèrbia</territory>
  997. <territory type="RU">Rússia</territory>
  998. <territory type="RW">Rwanda</territory>
  999. <territory type="SA">Aràbia Saudita</territory>
  1000. <territory type="SB">Illes Salomó</territory>
  1001. <territory type="SC">Seychelles</territory>
  1002. <territory type="SD">Sudan</territory>
  1003. <territory type="SE">Suècia</territory>
  1004. <territory type="SG">Singapur</territory>
  1005. <territory type="SH">Saint Helena</territory>
  1006. <territory type="SI">Eslovènia</territory>
  1007. <territory type="SJ">Svalbard i Jan Mayen</territory>
  1008. <territory type="SK">Eslovàquia</territory>
  1009. <territory type="SL">Sierra Leone</territory>
  1010. <territory type="SM">San Marino</territory>
  1011. <territory type="SN">Senegal</territory>
  1012. <territory type="SO">Somàlia</territory>
  1013. <territory type="SR">Surinam</territory>
  1014. <territory type="SS">Sudan del Sud</territory>
  1015. <territory type="ST">São Tomé i Príncipe</territory>
  1016. <territory type="SV">El Salvador</territory>
  1017. <territory type="SX">Sint Maarten</territory>
  1018. <territory type="SY">Síria</territory>
  1019. <territory type="SZ">Swazilàndia</territory>
  1020. <territory type="TA">Tristão da Cunha</territory>
  1021. <territory type="TC">Illes Turks i Caicos</territory>
  1022. <territory type="TD">Txad</territory>
  1023. <territory type="TF">Territoris Francesos del Sud</territory>
  1024. <territory type="TG">Togo</territory>
  1025. <territory type="TH">Tailàndia</territory>
  1026. <territory type="TJ">Tadjikistan</territory>
  1027. <territory type="TK">Tokelau</territory>
  1028. <territory type="TL">Timor Oriental</territory>
  1029. <territory type="TL" alt="variant">Timor Oriental</territory>
  1030. <territory type="TM">Turkmenistan</territory>
  1031. <territory type="TN">Tunísia</territory>
  1032. <territory type="TO">Tonga</territory>
  1033. <territory type="TR">Turquia</territory>
  1034. <territory type="TT">Trinitat i Tobago</territory>
  1035. <territory type="TV">Tuvalu</territory>
  1036. <territory type="TW">Taiwan</territory>
  1037. <territory type="TZ">Tanzània</territory>
  1038. <territory type="UA">Ucraïna</territory>
  1039. <territory type="UG">Uganda</territory>
  1040. <territory type="UM">Illes Perifèriques Menors dels EUA</territory>
  1041. <territory type="US">Estats Units</territory>
  1042. <territory type="UY">Uruguai</territory>
  1043. <territory type="UZ">Uzbekistan</territory>
  1044. <territory type="VA">Vaticà</territory>
  1045. <territory type="VC">Saint Vincent i les Grenadines</territory>
  1046. <territory type="VE">Veneçuela</territory>
  1047. <territory type="VG">Illes Verges Britàniques</territory>
  1048. <territory type="VI">Illes Verges Nord-americanes</territory>
  1049. <territory type="VN">Vietnam</territory>
  1050. <territory type="VU">Vanuatu</territory>
  1051. <territory type="WF">Wallis i Futuna</territory>
  1052. <territory type="WS">Samoa</territory>
  1053. <territory type="XK">Kosovo</territory>
  1054. <territory type="YE">Iemen</territory>
  1055. <territory type="YT">Mayotte</territory>
  1056. <territory type="ZA">República de Sud-àfrica</territory>
  1057. <territory type="ZM">Zàmbia</territory>
  1058. <territory type="ZW">Zimbabwe</territory>
  1059. <territory type="ZZ">Regió desconeguda</territory>
  1060. </territories>
  1061. <variants>
  1062. <variant type="1901">ortografia alemanya tradicional</variant>
  1063. <variant type="1994">ortofrafia resiana estandarditzada</variant>
  1064. <variant type="1996">ortografia alemanya de 1996</variant>
  1065. <variant type="1606NICT">francès mitjà tardà fins el 1606</variant>
  1066. <variant type="1694ACAD">francès modern primerenc</variant>
  1067. <variant type="1959ACAD" draft="contributed">acadèmica</variant>
  1068. <variant type="ALALC97" draft="contributed">romanització ALA/LC, edició de 1997</variant>
  1069. <variant type="ALUKU" draft="contributed">dialecte aluku</variant>
  1070. <variant type="AREVELA">armeni oriental</variant>
  1071. <variant type="AREVMDA">armeni occidental</variant>
  1072. <variant type="BAKU1926">alfabet llatí turc unificat</variant>
  1073. <variant type="BAUDDHA" draft="contributed">bauddha</variant>
  1074. <variant type="BISCAYAN" draft="contributed">basc biscaí</variant>
  1075. <variant type="BISKE">dialecte de San Giorgio/Bila</variant>
  1076. <variant type="BOONT">Boontling</variant>
  1077. <variant type="FONIPA">alfabet fonètic internacional</variant>
  1078. <variant type="FONUPA">sistema fonètic UPA</variant>
  1079. <variant type="FONXSAMP" draft="contributed">sistema X-SAMPA</variant>
  1080. <variant type="HEPBURN" draft="contributed">romanització Hepburn</variant>
  1081. <variant type="HOGNORSK" draft="contributed">høgnorsk</variant>
  1082. <variant type="ITIHASA" draft="contributed">itihasa</variant>
  1083. <variant type="JAUER" draft="contributed">jauer</variant>
  1084. <variant type="JYUTPING" draft="contributed">jyupting</variant>
  1085. <variant type="KKCOR" draft="contributed">ortografia comuna</variant>
  1086. <variant type="LAUKIKA" draft="contributed">laukika</variant>
  1087. <variant type="LIPAW">dialecte Lipovaz del resià</variant>
  1088. <variant type="LUNA1918" draft="contributed">luna 1918</variant>
  1089. <variant type="MONOTON">monotònic</variant>
  1090. <variant type="NDYUKA" draft="contributed">dialecte ndyuka</variant>
  1091. <variant type="NEDIS">dialecte de Natisone</variant>
  1092. <variant type="NJIVA">dialecte de Gniva/Njiva</variant>
  1093. <variant type="OSOJS">dialecte d'Oseacco/Osojane</variant>
  1094. <variant type="PAMAKA" draft="contributed">dialecte pamaka</variant>
  1095. <variant type="PETR1708" draft="contributed">ortografia russa 1708-1917</variant>
  1096. <variant type="PINYIN">romanització Pinyin</variant>
  1097. <variant type="POLYTON">politònic</variant>
  1098. <variant type="POSIX">ordenador</variant>
  1099. <variant type="PUTER" draft="contributed">alt engiadinès</variant>
  1100. <variant type="REVISED">ortografia revisada</variant>
  1101. <variant type="ROZAJ">resià</variant>
  1102. <variant type="RUMGR" draft="contributed">interomanx</variant>
  1103. <variant type="SAAHO">saho</variant>
  1104. <variant type="SCOTLAND">anglès estàndard d'Escòcia</variant>
  1105. <variant type="SCOUSE">scouse</variant>
  1106. <variant type="SOLBA">dialecte de Stolvizza/Solbica</variant>
  1107. <variant type="SURMIRAN" draft="contributed">surmiran</variant>
  1108. <variant type="SURSILV" draft="contributed">sobreselvà</variant>
  1109. <variant type="SUTSILV" draft="contributed">sotaselvà</variant>
  1110. <variant type="TARASK">ortografia taraskievica</variant>
  1111. <variant type="UCCOR" draft="contributed">ortografia unificada</variant>
  1112. <variant type="UCRCOR" draft="contributed">ortografia revisada unificada</variant>
  1113. <variant type="ULSTER" draft="contributed">ulster</variant>
  1114. <variant type="VAIDIKA" draft="contributed">vèdic</variant>
  1115. <variant type="VALENCIA">valencià</variant>
  1116. <variant type="VALLADER" draft="contributed">baix engiadinès</variant>
  1117. <variant type="WADEGILE">romanització Wade-Giles</variant>
  1118. </variants>
  1119. <keys>
  1120. <key type="calendar">calendari</key>
  1121. <key type="colAlternate" draft="contributed">Ordenació sense tenir en compte els símbols</key>
  1122. <key type="colBackwards" draft="contributed">Ordenació per accents invertida</key>
  1123. <key type="colCaseFirst" draft="contributed">Ordenació per majúscules i minúscules</key>
  1124. <key type="colCaseLevel" draft="contributed">Ordenació per detecció de majúscules</key>
  1125. <key type="colHiraganaQuaternary" draft="contributed">Ordenació per kana</key>
  1126. <key type="collation">ordre alfabètic</key>
  1127. <key type="colNormalization" draft="contributed">Ordenació normalitzada</key>
  1128. <key type="colNumeric" draft="contributed">Ordenació numèrica</key>
  1129. <key type="colStrength" draft="contributed">Força de l'ordenació</key>
  1130. <key type="currency">moneda</key>
  1131. <key type="numbers" draft="contributed">xifres</key>
  1132. <key type="timezone" draft="contributed">Zona horària</key>
  1133. <key type="va" draft="contributed">Variant local</key>
  1134. <key type="variableTop" draft="contributed">Ordena com a símbols</key>
  1135. <key type="x" draft="contributed">ús privat</key>
  1136. </keys>
  1137. <types>
  1138. <type type="arab" key="numbers" draft="provisional">dígits àrabs i índics</type>
  1139. <type type="arabext" key="numbers" draft="provisional">dígits àrabs i índics ampliats</type>
  1140. <type type="armn" key="numbers" draft="provisional">numerals armenis</type>
  1141. <type type="armnlow" key="numbers" draft="provisional">numerals armenis en minúscules</type>
  1142. <type type="bali" key="numbers" draft="contributed">dígits balinesos</type>
  1143. <type type="beng" key="numbers" draft="provisional">dígits bengalins</type>
  1144. <type type="big5han" key="collation">ordre del xinès tradicional - Big5</type>
  1145. <type type="buddhist" key="calendar">calendari budista</type>
  1146. <type type="cham" key="numbers" draft="contributed">dígits txams</type>
  1147. <type type="chinese" key="calendar">calendari xinès</type>
  1148. <type type="coptic" key="calendar" draft="contributed">calendari copte</type>
  1149. <type type="deva" key="numbers">dígits devanagaris</type>
  1150. <type type="dictionary" key="collation" draft="provisional">ordenació de diccionari</type>
  1151. <type type="ducet" key="collation">ordenació Unicode predeterminada</type>
  1152. <type type="ethi" key="numbers" draft="provisional">numerals etiòpics</type>
  1153. <type type="ethiopic" key="calendar" draft="contributed">calendari etíop</type>
  1154. <type type="ethiopic-amete-alem" key="calendar" draft="contributed">calendari etíop amete-alem</type>
  1155. <type type="finance" key="numbers" draft="contributed">Numerals financers</type>
  1156. <type type="fullwide" key="numbers" draft="provisional">dígits d'amplada completa</type>
  1157. <type type="gb2312han" key="collation">ordre del xinès simplificat - GB2312</type>
  1158. <type type="geor" key="numbers" draft="provisional">numerals georgians</type>
  1159. <type type="gregorian" key="calendar">calendari gregorià</type>
  1160. <type type="grek" key="numbers" draft="provisional">numerals grecs</type>
  1161. <type type="greklow" key="numbers" draft="provisional">numerals grecs en minúscules</type>
  1162. <type type="gujr" key="numbers" draft="provisional">dígits gujarati</type>
  1163. <type type="guru" key="numbers" draft="provisional">dígits gurmukhi</type>
  1164. <type type="hanidec" key="numbers" draft="provisional">numerals decimals xinesos</type>
  1165. <type type="hans" key="numbers" draft="provisional">numerals xinesos simplificats</type>
  1166. <type type="hansfin" key="numbers" draft="provisional">numerals financers xinesos simplificats</type>
  1167. <type type="hant" key="numbers" draft="provisional">numerals xinesos tradicionals</type>
  1168. <type type="hantfin" key="numbers" draft="provisional">numerals financers xinesos tradicionals</type>
  1169. <type type="hebr" key="numbers" draft="provisional">numerals hebreus</type>
  1170. <type type="hebrew" key="calendar">calendari hebreu</type>
  1171. <type type="identical" key="colStrength" draft="contributed">Ordena-ho tot</type>
  1172. <type type="indian" key="calendar">calendari hindú</type>
  1173. <type type="islamic" key="calendar">calendari musulmà</type>
  1174. <type type="islamic-civil" key="calendar">calendari civil islàmic</type>
  1175. <type type="japanese" key="calendar">calendari japonès</type>
  1176. <type type="java" key="numbers" draft="contributed">dígits javanesos</type>
  1177. <type type="jpan" key="numbers" draft="provisional">numerals japonesos</type>
  1178. <type type="jpanfin" key="numbers" draft="provisional">numerals financers japonesos</type>
  1179. <type type="kali" key="numbers" draft="contributed">dígits kayah</type>
  1180. <type type="khmr" key="numbers" draft="provisional">dígits khmer</type>
  1181. <type type="knda" key="numbers" draft="provisional">dígits kannada</type>
  1182. <type type="lana" key="numbers" draft="contributed">dígits tai tham hora</type>
  1183. <type type="lanatham" key="numbers" draft="contributed">dígits tai tham tham</type>
  1184. <type type="laoo" key="numbers" draft="provisional">dígits lao</type>
  1185. <type type="latn" key="numbers">Nombres aràbics</type>
  1186. <type type="lepc" key="numbers" draft="contributed">dígits lepcha</type>
  1187. <type type="limb" key="numbers" draft="contributed">dígits limbu</type>
  1188. <type type="lower" key="colCaseFirst" draft="contributed">Mostra primer les minúscules</type>
  1189. <type type="mlym" key="numbers" draft="provisional">dígits malaiàlam</type>
  1190. <type type="mong" key="numbers" draft="contributed">dígits mongols</type>
  1191. <type type="mtei" key="numbers" draft="contributed">dígits meitei mayek</type>
  1192. <type type="mymr" key="numbers" draft="provisional">dígits de Myanmar</type>
  1193. <type type="mymrshan" key="numbers" draft="contributed">dígits shan de Myanmar</type>
  1194. <type type="native" key="numbers" draft="contributed">Dígits natius</type>
  1195. <type type="nkoo" key="numbers" draft="contributed">dígits n'ko</type>
  1196. <type type="no" key="colBackwards" draft="contributed">Ordena els accents de manera normal</type>
  1197. <type type="no" key="colCaseFirst" draft="contributed">Ordena per tipus de lletra normal</type>
  1198. <type type="no" key="colCaseLevel" draft="contributed">Ordena sense distingir majúscules i minúscules</type>
  1199. <type type="no" key="colHiraganaQuaternary" draft="contributed">Ordena els caràcters kana de manera independent</type>
  1200. <type type="no" key="colNormalization" draft="contributed">Ordena sense normalització</type>
  1201. <type type="no" key="colNumeric" draft="contributed">Ordena els dígits individualment</type>
  1202. <type type="non-ignorable" key="colAlternate" draft="contributed">Ordena els símbols</type>
  1203. <type type="olck" key="numbers" draft="contributed">dígits ol chiki</type>
  1204. <type type="orya" key="numbers" draft="provisional">dígits oriya</type>
  1205. <type type="persian" key="calendar" draft="provisional">calendari persa</type>
  1206. <type type="phonebook" key="collation">ordre de la guia telefònica</type>
  1207. <type type="phonetic" key="collation" draft="contributed">Ordenació fonètica</type>
  1208. <type type="pinyin" key="collation">ordre pinyin</type>
  1209. <type type="primary" key="colStrength" draft="contributed">Ordena només les lletres de base</type>
  1210. <type type="quaternary" key="colStrength" draft="contributed">Ordena per accents/majúscules/amplada/kana</type>
  1211. <type type="reformed" key="collation" draft="provisional">ordenació reformada</type>
  1212. <type type="roc" key="calendar">calendari de la República de Xina</type>
  1213. <type type="roman" key="numbers" draft="contributed">xifres romanes</type>
  1214. <type type="romanlow" key="numbers" draft="contributed">xifres romanes minúscules</type>
  1215. <type type="saur" key="numbers" draft="contributed">dígits saurashtra</type>
  1216. <type type="search" key="collation">cerca de propòsit general</type>
  1217. <type type="searchjl" key="collation" draft="provisional">cerca per consonant inicial del hangul</type>
  1218. <type type="secondary" key="colStrength" draft="contributed">Ordena els accents</type>
  1219. <type type="shifted" key="colAlternate" draft="contributed">Ordena sense tenir en compte els símbols</type>
  1220. <type type="stroke" key="collation">ordre dels traços</type>
  1221. <type type="sund" key="numbers" draft="contributed">dígits sudanesos</type>
  1222. <type type="talu" key="numbers" draft="contributed">dígits tai lue nous</type>
  1223. <type type="taml" key="numbers" draft="contributed">numerals tamils tradicionals</type>
  1224. <type type="tamldec" key="numbers" draft="contributed">dígits tamils</type>
  1225. <type type="telu" key="numbers" draft="provisional">dígits telugu</type>
  1226. <type type="tertiary" key="colStrength" draft="contributed">Ordena per accent/majúscules/amplada</type>
  1227. <type type="thai" key="numbers" draft="provisional">dígits thai</type>
  1228. <type type="tibt" key="numbers" draft="provisional">dígits tibetans</type>
  1229. <type type="traditional" key="collation">ordre tradicional</type>
  1230. <type type="traditional" key="numbers" draft="contributed">Numerals tradicionals</type>
  1231. <type type="unihan" key="collation" draft="provisional">ordenació per quantitat de traços radicals</type>
  1232. <type type="upper" key="colCaseFirst" draft="contributed">Ordena amb majúscules primer</type>
  1233. <type type="vaii" key="numbers" draft="provisional">dígits vai</type>
  1234. <type type="yes" key="colBackwards" draft="contributed">Ordena amb ordre invers dels accents</type>
  1235. <type type="yes" key="colCaseLevel" draft="contributed">Ordena amb detecció de majúscules i minúscules</type>
  1236. <type type="yes" key="colHiraganaQuaternary" draft="contributed">Ordena els caràcters kana de manera diferent</type>
  1237. <type type="yes" key="colNormalization" draft="contributed">Ordena per caràcters Unicode normalitzats</type>
  1238. <type type="yes" key="colNumeric" draft="contributed">Ordena els dígits numèricament</type>
  1239. </types>
  1240. <transformNames>
  1241. <transformName type="BGN" draft="contributed">BGN</transformName>
  1242. <transformName type="Numeric" draft="contributed">Numèric</transformName>
  1243. <transformName type="Tone" draft="contributed">To</transformName>
  1244. <transformName type="UNGEGN" draft="contributed">UNGEGN</transformName>
  1245. <transformName type="x-Accents" draft="contributed">Accents</transformName>
  1246. <transformName type="x-Fullwidth" draft="contributed">Amplada completa</transformName>
  1247. <transformName type="x-Halfwidth" draft="contributed">Amplada mitjana</transformName>
  1248. <transformName type="x-Jamo" draft="contributed">Jamo</transformName>
  1249. <transformName type="x-Pinyin" draft="contributed">Pinyin</transformName>
  1250. <transformName type="x-Publishing" draft="contributed">Publicació</transformName>
  1251. </transformNames>
  1252. <measurementSystemNames>
  1253. <measurementSystemName type="metric">mètric</measurementSystemName>
  1254. <measurementSystemName type="UK">anglosaxó</measurementSystemName>
  1255. <measurementSystemName type="US">imperial</measurementSystemName>
  1256. </measurementSystemNames>
  1257. <codePatterns>
  1258. <codePattern type="language">Idioma: {0}</codePattern>
  1259. <codePattern type="script">Escriptura: {0}</codePattern>
  1260. <codePattern type="territory">Regió: {0}</codePattern>
  1261. </codePatterns>
  1262. </localeDisplayNames>
  1263. <characters>
  1264. <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>
  1265. <exemplarCharacters type="auxiliary">[á ă â å ä ã ā æ ĕ ê ë ē ì ĭ î ī ñ º ŏ ô ö ø ō œ ù ŭ û ū ÿ]</exemplarCharacters>
  1266. <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>
  1267. <ellipsis type="final">{0}…</ellipsis>
  1268. <ellipsis type="initial">…{0}</ellipsis>
  1269. <ellipsis type="medial">{0}…{1}</ellipsis>
  1270. <moreInformation>?</moreInformation>
  1271. </characters>
  1272. <delimiters>
  1273. <quotationStart>“</quotationStart>
  1274. <quotationEnd>”</quotationEnd>
  1275. <alternateQuotationStart>«</alternateQuotationStart>
  1276. <alternateQuotationEnd>»</alternateQuotationEnd>
  1277. </delimiters>
  1278. <dates>
  1279. <calendars>
  1280. <calendar type="buddhist">
  1281. <eras>
  1282. <eraAbbr>
  1283. <era type="0" draft="contributed">eB</era>
  1284. </eraAbbr>
  1285. </eras>
  1286. <dateFormats>
  1287. <dateFormatLength type="full">
  1288. <dateFormat>
  1289. <pattern draft="contributed">EEEE, dd MMMM y G</pattern>
  1290. </dateFormat>
  1291. </dateFormatLength>
  1292. <dateFormatLength type="long">
  1293. <dateFormat>
  1294. <pattern draft="contributed">d MMMM y G</pattern>
  1295. </dateFormat>
  1296. </dateFormatLength>
  1297. <dateFormatLength type="medium">
  1298. <dateFormat>
  1299. <pattern draft="contributed">d MMM y G</pattern>
  1300. </dateFormat>
  1301. </dateFormatLength>
  1302. <dateFormatLength type="short">
  1303. <dateFormat>
  1304. <pattern draft="contributed">dd/MM/y GGGGG</pattern>
  1305. </dateFormat>
  1306. </dateFormatLength>
  1307. </dateFormats>
  1308. <dateTimeFormats>
  1309. <availableFormats>
  1310. <dateFormatItem id="d" draft="contributed">d</dateFormatItem>
  1311. <dateFormatItem id="h" draft="contributed">h a</dateFormatItem>
  1312. <dateFormatItem id="H" draft="contributed">HH</dateFormatItem>
  1313. <dateFormatItem id="hm" draft="contributed">h:mm a</dateFormatItem>
  1314. <dateFormatItem id="Hm" draft="contributed">HH:mm</dateFormatItem>
  1315. <dateFormatItem id="hms" draft="contributed">h:mm:ss a</dateFormatItem>
  1316. <dateFormatItem id="Hms" draft="contributed">HH:mm:ss</dateFormatItem>
  1317. <dateFormatItem id="M" draft="contributed">L</dateFormatItem>
  1318. <dateFormatItem id="Md" draft="contributed">d/M</dateFormatItem>
  1319. <dateFormatItem id="MEd" draft="contributed">E, d/M</dateFormatItem>
  1320. <dateFormatItem id="MMM" draft="contributed">LLL</dateFormatItem>
  1321. <dateFormatItem id="MMMd" draft="contributed">d MMM</dateFormatItem>
  1322. <dateFormatItem id="MMMEd" draft="contributed">E d MMM</dateFormatItem>
  1323. <dateFormatItem id="ms" draft="contributed">mm:ss</dateFormatItem>
  1324. <dateFormatItem id="y" draft="contributed">y G</dateFormatItem>
  1325. <dateFormatItem id="yM" draft="contributed">MM/y GGGGG</dateFormatItem>
  1326. <dateFormatItem id="yMEd" draft="contributed">E, dd/MM/y GGGGG</dateFormatItem>
  1327. <dateFormatItem id="yMMM" draft="contributed">MMM y G</dateFormatItem>
  1328. <dateFormatItem id="yMMMEd" draft="contributed">E, d MMM y G</dateFormatItem>
  1329. <dateFormatItem id="yQQQ" draft="contributed">QQQ y GGGGG</dateFormatItem>
  1330. <dateFormatItem id="yQQQQ" draft="contributed">QQQQ y G</dateFormatItem>
  1331. </availableFormats>
  1332. </dateTimeFormats>
  1333. </calendar>
  1334. <calendar type="chinese">
  1335. <months>
  1336. <monthContext type="format">
  1337. <monthWidth type="abbreviated">
  1338. <month type="1" draft="contributed">1</month>
  1339. <month type="2" draft="contributed">2</month>
  1340. <month type="3" draft="contributed">3</month>
  1341. <month type="4" draft="contributed">4</month>
  1342. <month type="5" draft="contributed">5</month>
  1343. <month type="6" draft="contributed">6</month>
  1344. <month type="7" draft="contributed">7</month>
  1345. <month type="8" draft="contributed">8</month>
  1346. <month type="9" draft="contributed">9</month>
  1347. <month type="10" draft="contributed">10</month>
  1348. <month type="11" draft="contributed">11</month>
  1349. <month type="12" draft="contributed">12</month>
  1350. </monthWidth>
  1351. <monthWidth type="narrow">
  1352. <month type="1" draft="contributed">1</month>
  1353. <month type="2" draft="contributed">2</month>
  1354. <month type="3" draft="contributed">3</month>
  1355. <month type="4" draft="contributed">4</month>
  1356. <month type="5" draft="contributed">5</month>
  1357. <month type="6" draft="contributed">6</month>
  1358. <month type="7" draft="contributed">7</month>
  1359. <month type="8" draft="contributed">8</month>
  1360. <month type="9" draft="contributed">9</month>
  1361. <month type="10" draft="contributed">10</month>
  1362. <month type="11" draft="contributed">11</month>
  1363. <month type="12" draft="contributed">12</month>
  1364. </monthWidth>
  1365. <monthWidth type="wide">
  1366. <month type="1" draft="contributed">1</month>
  1367. <month type="2" draft="contributed">2</month>
  1368. <month type="3" draft="contributed">3</month>
  1369. <month type="4" draft="contributed">4</month>
  1370. <month type="5" draft="contributed">5</month>
  1371. <month type="6" draft="contributed">6</month>
  1372. <month type="7" draft="contributed">7</month>
  1373. <month type="8" draft="contributed">8</month>
  1374. <month type="9" draft="contributed">9</month>
  1375. <month type="10" draft="contributed">10</month>
  1376. <month type="11" draft="contributed">11</month>
  1377. <month type="12" draft="contributed">12</month>
  1378. </monthWidth>
  1379. </monthContext>
  1380. <monthContext type="stand-alone">
  1381. <monthWidth type="abbreviated">
  1382. <month type="1" draft="contributed">1</month>
  1383. <month type="2" draft="contributed">2</month>
  1384. <month type="3" draft="contributed">3</month>
  1385. <month type="4" draft="contributed">4</month>
  1386. <month type="5" draft="contributed">5</month>
  1387. <month type="6" draft="contributed">6</month>
  1388. <month type="7" draft="contributed">7</month>
  1389. <month type="8" draft="contributed">8</month>
  1390. <month type="9" draft="contributed">9</month>
  1391. <month type="10" draft="contributed">10</month>
  1392. <month type="11" draft="contributed">11</month>
  1393. <month type="12" draft="contributed">12</month>
  1394. </monthWidth>
  1395. <monthWidth type="narrow">
  1396. <month type="1" draft="contributed">1</month>
  1397. <month type="2" draft="contributed">2</month>
  1398. <month type="3" draft="contributed">3</month>
  1399. <month type="4" draft="contributed">4</month>
  1400. <month type="5" draft="contributed">5</month>
  1401. <month type="6" draft="contributed">6</month>
  1402. <month type="7" draft="contributed">7</month>
  1403. <month type="8" draft="contributed">8</month>
  1404. <month type="9" draft="contributed">9</month>
  1405. <month type="10" draft="contributed">10</month>
  1406. <month type="11" draft="contributed">11</month>
  1407. <month type="12" draft="contributed">12</month>
  1408. </monthWidth>
  1409. <monthWidth type="wide">
  1410. <month type="1" draft="contributed">1</month>
  1411. <month type="2" draft="contributed">2</month>
  1412. <month type="3" draft="contributed">3</month>
  1413. <month type="4" draft="contributed">4</month>
  1414. <month type="5" draft="contributed">5</month>
  1415. <month type="6" draft="contributed">6</month>
  1416. <month type="7" draft="contributed">7</month>
  1417. <month type="8" draft="contributed">8</month>
  1418. <month type="9" draft="contributed">9</month>
  1419. <month type="10" draft="contributed">10</month>
  1420. <month type="11" draft="contributed">11</month>
  1421. <month type="12" draft="contributed">12</month>
  1422. </monthWidth>
  1423. </monthContext>
  1424. </months>
  1425. <cyclicNameSets>
  1426. <cyclicNameSet type="dayParts">
  1427. <cyclicNameContext type="format">
  1428. <cyclicNameWidth type="abbreviated">
  1429. <cyclicName type="1" draft="contributed">zi</cyclicName>
  1430. <cyclicName type="2" draft="contributed">chou</cyclicName>
  1431. <cyclicName type="3" draft="contributed">yin</cyclicName>
  1432. <cyclicName type="4" draft="contributed">mao</cyclicName>
  1433. <cyclicName type="5" draft="contributed">chen</cyclicName>
  1434. <cyclicName type="6" draft="contributed">si</cyclicName>
  1435. <cyclicName type="7" draft="contributed">wu</cyclicName>
  1436. <cyclicName type="8" draft="contributed">wei</cyclicName>
  1437. <cyclicName type="9" draft="contributed">shen</cyclicName>
  1438. <cyclicName type="10" draft="contributed">you</cyclicName>
  1439. <cyclicName type="11" draft="contributed">xu</cyclicName>
  1440. <cyclicName type="12" draft="contributed">hai</cyclicName>
  1441. </cyclicNameWidth>
  1442. </cyclicNameContext>
  1443. </cyclicNameSet>
  1444. <cyclicNameSet type="years">
  1445. <cyclicNameContext type="format">
  1446. <cyclicNameWidth type="abbreviated">
  1447. <cyclicName type="1" draft="contributed">jia-zi</cyclicName>
  1448. <cyclicName type="2" draft="contributed">yi-chou</cyclicName>
  1449. <cyclicName type="3" draft="contributed">bing-yin</cyclicName>
  1450. <cyclicName type="4" draft="contributed">ding-mao</cyclicName>
  1451. <cyclicName type="5" draft="contributed">wu-chen</cyclicName>
  1452. <cyclicName type="6" draft="contributed">ji-si</cyclicName>
  1453. <cyclicName type="7" draft="contributed">geng-wu</cyclicName>
  1454. <cyclicName type="8" draft="contributed">xin-wei</cyclicName>
  1455. <cyclicName type="9" draft="contributed">ren-shen</cyclicName>
  1456. <cyclicName type="10" draft="contributed">gui-you</cyclicName>
  1457. <cyclicName type="11" draft="contributed">jia-xu</cyclicName>
  1458. <cyclicName type="12" draft="contributed">yi-hai</cyclicName>
  1459. <cyclicName type="13" draft="contributed">bing-zi</cyclicName>
  1460. <cyclicName type="14" draft="contributed">ding-chou</cyclicName>
  1461. <cyclicName type="15" draft="contributed">wu-yin</cyclicName>
  1462. <cyclicName type="16" draft="contributed">ji-mao</cyclicName>
  1463. <cyclicName type="17" draft="contributed">geng-chen</cyclicName>
  1464. <cyclicName type="18" draft="contributed">xin-si</cyclicName>
  1465. <cyclicName type="19" draft="contributed">ren-wu</cyclicName>
  1466. <cyclicName type="20" draft="contributed">gui-wei</cyclicName>
  1467. <cyclicName type="21" draft="contributed">jia-shen</cyclicName>
  1468. <cyclicName type="22" draft="contributed">yi-you</cyclicName>
  1469. <cyclicName type="23" draft="contributed">bing-xu</cyclicName>
  1470. <cyclicName type="24" draft="contributed">ding-hai</cyclicName>
  1471. <cyclicName type="25" draft="contributed">wu-zi</cyclicName>
  1472. <cyclicName type="26" draft="contributed">ji-chou</cyclicName>
  1473. <cyclicName type="27" draft="contributed">geng-yin</cyclicName>
  1474. <cyclicName type="28" draft="contributed">xin-mao</cyclicName>
  1475. <cyclicName type="29" draft="contributed">ren-chen</cyclicName>
  1476. <cyclicName type="30" draft="contributed">gui-si</cyclicName>
  1477. <cyclicName type="31" draft="contributed">jia-wu</cyclicName>
  1478. <cyclicName type="32" draft="contributed">yi-wei</cyclicName>
  1479. <cyclicName type="33" draft="contributed">bing-shen</cyclicName>
  1480. <cyclicName type="34" draft="contributed">ding-you</cyclicName>
  1481. <cyclicName type="35" draft="contributed">wu-xu</cyclicName>
  1482. <cyclicName type="36" draft="contributed">ji-hai</cyclicName>
  1483. <cyclicName type="37" draft="contributed">geng-zi</cyclicName>
  1484. <cyclicName type="38" draft="contributed">xin-chou</cyclicName>
  1485. <cyclicName type="39" draft="contributed">ren-yin</cyclicName>
  1486. <cyclicName type="40" draft="contributed">gui-mao</cyclicName>
  1487. <cyclicName type="41" draft="contributed">jia-chen</cyclicName>
  1488. <cyclicName type="42" draft="contributed">yi-si</cyclicName>
  1489. <cyclicName type="43" draft="contributed">bing-wu</cyclicName>
  1490. <cyclicName type="44" draft="contributed">ding-wei</cyclicName>
  1491. <cyclicName type="45" draft="contributed">wu-shen</cyclicName>
  1492. <cyclicName type="46" draft="contributed">ji-you</cyclicName>
  1493. <cyclicName type="47" draft="contributed">geng-xu</cyclicName>
  1494. <cyclicName type="48" draft="contributed">xin-hai</cyclicName>
  1495. <cyclicName type="49" draft="contributed">ren-zi</cyclicName>
  1496. <cyclicName type="50" draft="contributed">gui-chou</cyclicName>
  1497. <cyclicName type="51" draft="contributed">jia-yin</cyclicName>
  1498. <cyclicName type="52" draft="contributed">yi-mao</cyclicName>
  1499. <cyclicName type="53" draft="contributed">bing-chen</cyclicName>
  1500. <cyclicName type="54" draft="contributed">ding-si</cyclicName>
  1501. <cyclicName type="55" draft="contributed">wu-wu</cyclicName>
  1502. <cyclicName type="56" draft="contributed">ji-wei</cyclicName>
  1503. <cyclicName type="57" draft="contributed">geng-shen</cyclicName>
  1504. <cyclicName type="58" draft="contributed">xin-you</cyclicName>
  1505. <cyclicName type="59" draft="contributed">ren-xu</cyclicName>
  1506. <cyclicName type="60" draft="contributed">gui-hai</cyclicName>
  1507. </cyclicNameWidth>
  1508. </cyclicNameContext>
  1509. </cyclicNameSet>
  1510. <cyclicNameSet type="zodiacs">
  1511. <cyclicNameContext type="format">
  1512. <cyclicNameWidth type="abbreviated">
  1513. <cyclicName type="1" draft="contributed">zi</cyclicName>
  1514. <cyclicName type="2" draft="contributed">chou</cyclicName>
  1515. <cyclicName type="3" draft="contributed">yin</cyclicName>
  1516. <cyclicName type="4" draft="contributed">mao</cyclicName>
  1517. <cyclicName type="5" draft="contributed">chen</cyclicName>
  1518. <cyclicName type="6" draft="contributed">si</cyclicName>
  1519. <cyclicName type="7" draft="contributed">wu</cyclicName>
  1520. <cyclicName type="8" draft="contributed">wei</cyclicName>
  1521. <cyclicName type="9" draft="contributed">shen</cyclicName>
  1522. <cyclicName type="10" draft="contributed">you</cyclicName>
  1523. <cyclicName type="11" draft="contributed">xu</cyclicName>
  1524. <cyclicName type="12" draft="contributed">hai</cyclicName>
  1525. </cyclicNameWidth>
  1526. </cyclicNameContext>
  1527. </cyclicNameSet>
  1528. </cyclicNameSets>
  1529. <dateFormats>
  1530. <dateFormatLength type="full">
  1531. <dateFormat>
  1532. <pattern draft="contributed">EEEE, dd MMMM UU</pattern>
  1533. </dateFormat>
  1534. </dateFormatLength>
  1535. <dateFormatLength type="long">
  1536. <dateFormat>
  1537. <pattern draft="contributed">d MMMM U</pattern>
  1538. </dateFormat>
  1539. </dateFormatLength>
  1540. <dateFormatLength type="medium">
  1541. <dateFormat>
  1542. <pattern draft="contributed">d MMM U</pattern>
  1543. </dateFormat>
  1544. </dateFormatLength>
  1545. <dateFormatLength type="short">
  1546. <dateFormat>
  1547. <pattern draft="contributed">d/M/y</pattern>
  1548. </dateFormat>
  1549. </dateFormatLength>
  1550. </dateFormats>
  1551. </calendar>
  1552. <calendar type="generic">
  1553. <dateFormats>
  1554. <dateFormatLength type="full">
  1555. <dateFormat>
  1556. <pattern>EEEE d MMMM 'de' y G</pattern>
  1557. </dateFormat>
  1558. </dateFormatLength>
  1559. <dateFormatLength type="long">
  1560. <dateFormat>
  1561. <pattern>d MMMM 'de' y G</pattern>
  1562. </dateFormat>
  1563. </dateFormatLength>
  1564. <dateFormatLength type="medium">
  1565. <dateFormat>
  1566. <pattern>dd/MM/y G</pattern>
  1567. </dateFormat>
  1568. </dateFormatLength>
  1569. <dateFormatLength type="short">
  1570. <dateFormat>
  1571. <pattern>dd/MM/yy GGGGG</pattern>
  1572. </dateFormat>
  1573. </dateFormatLength>
  1574. </dateFormats>
  1575. <dateTimeFormats>
  1576. <dateTimeFormatLength type="full">
  1577. <dateTimeFormat>
  1578. <pattern>{1} {0}</pattern>
  1579. </dateTimeFormat>
  1580. </dateTimeFormatLength>
  1581. <dateTimeFormatLength type="long">
  1582. <dateTimeFormat>
  1583. <pattern>{1} {0}</pattern>
  1584. </dateTimeFormat>
  1585. </dateTimeFormatLength>
  1586. <dateTimeFormatLength type="medium">
  1587. <dateTimeFormat>
  1588. <pattern>{1} {0}</pattern>
  1589. </dateTimeFormat>
  1590. </dateTimeFormatLength>
  1591. <dateTimeFormatLength type="short">
  1592. <dateTimeFormat>
  1593. <pattern>{1} {0}</pattern>
  1594. </dateTimeFormat>
  1595. </dateTimeFormatLength>
  1596. <availableFormats>
  1597. <dateFormatItem id="d">d</dateFormatItem>
  1598. <dateFormatItem id="Ed">E d</dateFormatItem>
  1599. <dateFormatItem id="h">h a</dateFormatItem>
  1600. <dateFormatItem id="H">H</dateFormatItem>
  1601. <dateFormatItem id="hm">h.mm a</dateFormatItem>
  1602. <dateFormatItem id="Hm">H.mm</dateFormatItem>
  1603. <dateFormatItem id="hms">h.mm.ss a</dateFormatItem>
  1604. <dateFormatItem id="Hms">H.mm.ss</dateFormatItem>
  1605. <dateFormatItem id="M">L</dateFormatItem>
  1606. <dateFormatItem id="Md">d/M</dateFormatItem>
  1607. <dateFormatItem id="MEd">E d/M</dateFormatItem>
  1608. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1609. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  1610. <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
  1611. <dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
  1612. <dateFormatItem id="MMMMEd">E d MMMM</dateFormatItem>
  1613. <dateFormatItem id="mmss">mm:ss</dateFormatItem>
  1614. <dateFormatItem id="ms">mm.ss</dateFormatItem>
  1615. <dateFormatItem id="y">y</dateFormatItem>
  1616. <dateFormatItem id="yM">M/y</dateFormatItem>
  1617. <dateFormatItem id="yMd">d/M/y</dateFormatItem>
  1618. <dateFormatItem id="yMEd">E, d.M.y</dateFormatItem>
  1619. <dateFormatItem id="yMM" draft="contributed">MM/y</dateFormatItem>
  1620. <dateFormatItem id="yMMM">LLL y</dateFormatItem>
  1621. <dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
  1622. <dateFormatItem id="yMMMEd">E, d MMM, y</dateFormatItem>
  1623. <dateFormatItem id="yMMMM">LLLL 'de' y</dateFormatItem>
  1624. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  1625. <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
  1626. </availableFormats>
  1627. <intervalFormats>
  1628. <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
  1629. <intervalFormatItem id="d">
  1630. <greatestDifference id="d">d-d</greatestDifference>
  1631. </intervalFormatItem>
  1632. <intervalFormatItem id="h">
  1633. <greatestDifference id="a">h a - h a</greatestDifference>
  1634. <greatestDifference id="h">h-h a</greatestDifference>
  1635. </intervalFormatItem>
  1636. <intervalFormatItem id="H">
  1637. <greatestDifference id="H">H-H</greatestDifference>
  1638. </intervalFormatItem>
  1639. <intervalFormatItem id="hm">
  1640. <greatestDifference id="a">h.mm a -h.mm a</greatestDifference>
  1641. <greatestDifference id="h">h.mm-h.mm a</greatestDifference>
  1642. <greatestDifference id="m">h.mm-h.mm a</greatestDifference>
  1643. </intervalFormatItem>
  1644. <intervalFormatItem id="Hm">
  1645. <greatestDifference id="H">HH.mm-HH.mm</greatestDifference>
  1646. <greatestDifference id="m">HH.mm-HH.mm</greatestDifference>
  1647. </intervalFormatItem>
  1648. <intervalFormatItem id="hmv">
  1649. <greatestDifference id="a">h.mm a - h.mm a v</greatestDifference>
  1650. <greatestDifference id="h">h.mm-h.mm a v</greatestDifference>
  1651. <greatestDifference id="m">h.mm-h.mm a v</greatestDifference>
  1652. </intervalFormatItem>
  1653. <intervalFormatItem id="Hmv">
  1654. <greatestDifference id="H">HH.mm-HH.mm v</greatestDifference>
  1655. <greatestDifference id="m">HH.mm-HH.mm v</greatestDifference>
  1656. </intervalFormatItem>
  1657. <intervalFormatItem id="hv">
  1658. <greatestDifference id="a">h a - h a v</greatestDifference>
  1659. <greatestDifference id="h">h-h a v</greatestDifference>
  1660. </intervalFormatItem>
  1661. <intervalFormatItem id="Hv">
  1662. <greatestDifference id="H">H-H v</greatestDifference>
  1663. </intervalFormatItem>
  1664. <intervalFormatItem id="M">
  1665. <greatestDifference id="M">M-M</greatestDifference>
  1666. </intervalFormatItem>
  1667. <intervalFormatItem id="Md">
  1668. <greatestDifference id="d">dd/MM - dd/MM</greatestDifference>
  1669. <greatestDifference id="M">dd/MM - dd/MM</greatestDifference>
  1670. </intervalFormatItem>
  1671. <intervalFormatItem id="MEd">
  1672. <greatestDifference id="d">E dd/MM - E dd/MM</greatestDifference>
  1673. <greatestDifference id="M">E dd/MM - E dd/MM</greatestDifference>
  1674. </intervalFormatItem>
  1675. <intervalFormatItem id="MMM">
  1676. <greatestDifference id="M">LLL-LLL</greatestDifference>
  1677. </intervalFormatItem>
  1678. <intervalFormatItem id="MMMd">
  1679. <greatestDifference id="d">d-d MMM</greatestDifference>
  1680. <greatestDifference id="M">d MMM - d MMM</greatestDifference>
  1681. </intervalFormatItem>
  1682. <intervalFormatItem id="MMMEd">
  1683. <greatestDifference id="d">E d - E d MMM</greatestDifference>
  1684. <greatestDifference id="M">E d MMM - E d MMM</greatestDifference>
  1685. </intervalFormatItem>
  1686. <intervalFormatItem id="y">
  1687. <greatestDifference id="y">y-y</greatestDifference>
  1688. </intervalFormatItem>
  1689. <intervalFormatItem id="yM">
  1690. <greatestDifference id="M">MM/y - MM/y</greatestDifference>
  1691. <greatestDifference id="y">MM/y - MM/y</greatestDifference>
  1692. </intervalFormatItem>
  1693. <intervalFormatItem id="yMd">
  1694. <greatestDifference id="d">dd/MM/y - dd/MM/y</greatestDifference>
  1695. <greatestDifference id="M">dd/MM/y - dd/MM/y</greatestDifference>
  1696. <greatestDifference id="y">dd/MM/y - dd/MM/y</greatestDifference>
  1697. </intervalFormatItem>
  1698. <intervalFormatItem id="yMEd">
  1699. <greatestDifference id="d">E dd/MM/y - E dd/MM/y</greatestDifference>
  1700. <greatestDifference id="M">E dd/MM/y - E dd/MM/y</greatestDifference>
  1701. <greatestDifference id="y">E dd/MM/y - E dd/MM/y</greatestDifference>
  1702. </intervalFormatItem>
  1703. <intervalFormatItem id="yMMM">
  1704. <greatestDifference id="M">LLL-LLL 'de' y</greatestDifference>
  1705. <greatestDifference id="y">LLL 'de' y - LLL 'de' y</greatestDifference>
  1706. </intervalFormatItem>
  1707. <intervalFormatItem id="yMMMd">
  1708. <greatestDifference id="d">d-d MMM 'de' y</greatestDifference>
  1709. <greatestDifference id="M">d MMM - d MMM 'de' y</greatestDifference>
  1710. <greatestDifference id="y">d MMM 'de' y - d MMM 'de' y</greatestDifference>
  1711. </intervalFormatItem>
  1712. <intervalFormatItem id="yMMMEd">
  1713. <greatestDifference id="d">E d - E d MMM 'de' y</greatestDifference>
  1714. <greatestDifference id="M">E d MMM - E d MMM 'de' y</greatestDifference>
  1715. <greatestDifference id="y">E d MMM 'de' y - E d MMM 'de' y</greatestDifference>
  1716. </intervalFormatItem>
  1717. <intervalFormatItem id="yMMMM">
  1718. <greatestDifference id="M">LLLL-LLLL 'de' y</greatestDifference>
  1719. <greatestDifference id="y">LLLL 'de' y - LLLL 'de' y</greatestDifference>
  1720. </intervalFormatItem>
  1721. </intervalFormats>
  1722. </dateTimeFormats>
  1723. </calendar>
  1724. <calendar type="gregorian">
  1725. <months>
  1726. <monthContext type="format">
  1727. <monthWidth type="abbreviated">
  1728. <month type="1">de gen.</month>
  1729. <month type="2">de febr.</month>
  1730. <month type="3">de març</month>
  1731. <month type="4">d’abr.</month>
  1732. <month type="5">de maig</month>
  1733. <month type="6">de juny</month>
  1734. <month type="7">de jul.</month>
  1735. <month type="8">d’ag.</month>
  1736. <month type="9">de set.</month>
  1737. <month type="10">d’oct.</month>
  1738. <month type="11">de nov.</month>
  1739. <month type="12">de des.</month>
  1740. </monthWidth>
  1741. <monthWidth type="narrow">
  1742. <month type="1">G</month>
  1743. <month type="2">F</month>
  1744. <month type="3">M</month>
  1745. <month type="4">A</month>
  1746. <month type="5">M</month>
  1747. <month type="6">J</month>
  1748. <month type="7">J</month>
  1749. <month type="8">A</month>
  1750. <month type="9">S</month>
  1751. <month type="10">O</month>
  1752. <month type="11">N</month>
  1753. <month type="12">D</month>
  1754. </monthWidth>
  1755. <monthWidth type="wide">
  1756. <month type="1">de gener</month>
  1757. <month type="2">de febrer</month>
  1758. <month type="3">de març</month>
  1759. <month type="4">d’abril</month>
  1760. <month type="5">de maig</month>
  1761. <month type="6">de juny</month>
  1762. <month type="7">de juliol</month>
  1763. <month type="8">d’agost</month>
  1764. <month type="9">de setembre</month>
  1765. <month type="10">d’octubre</month>
  1766. <month type="11">de novembre</month>
  1767. <month type="12">de desembre</month>
  1768. </monthWidth>
  1769. </monthContext>
  1770. <monthContext type="stand-alone">
  1771. <monthWidth type="abbreviated">
  1772. <month type="1">gen.</month>
  1773. <month type="2">febr.</month>
  1774. <month type="3">març</month>
  1775. <month type="4">abr.</month>
  1776. <month type="5">maig</month>
  1777. <month type="6">juny</month>
  1778. <month type="7">jul.</month>
  1779. <month type="8">ag.</month>
  1780. <month type="9">set.</month>
  1781. <month type="10">oct.</month>
  1782. <month type="11">nov.</month>
  1783. <month type="12">des.</month>
  1784. </monthWidth>
  1785. <monthWidth type="narrow">
  1786. <month type="1">g</month>
  1787. <month type="2">f</month>
  1788. <month type="3">m</month>
  1789. <month type="4">a</month>
  1790. <month type="5">m</month>
  1791. <month type="6">j</month>
  1792. <month type="7">j</month>
  1793. <month type="8">a</month>
  1794. <month type="9">s</month>
  1795. <month type="10">o</month>
  1796. <month type="11">n</month>
  1797. <month type="12">d</month>
  1798. </monthWidth>
  1799. <monthWidth type="wide">
  1800. <month type="1">gener</month>
  1801. <month type="2">febrer</month>
  1802. <month type="3">març</month>
  1803. <month type="4">abril</month>
  1804. <month type="5">maig</month>
  1805. <month type="6">juny</month>
  1806. <month type="7">juliol</month>
  1807. <month type="8">agost</month>
  1808. <month type="9">setembre</month>
  1809. <month type="10">octubre</month>
  1810. <month type="11">novembre</month>
  1811. <month type="12">desembre</month>
  1812. </monthWidth>
  1813. </monthContext>
  1814. </months>
  1815. <days>
  1816. <dayContext type="format">
  1817. <dayWidth type="abbreviated">
  1818. <day type="sun">dg.</day>
  1819. <day type="mon">dl.</day>
  1820. <day type="tue">dt.</day>
  1821. <day type="wed">dc.</day>
  1822. <day type="thu">dj.</day>
  1823. <day type="fri">dv.</day>
  1824. <day type="sat">ds.</day>
  1825. </dayWidth>
  1826. <dayWidth type="narrow">
  1827. <day type="sun">dg</day>
  1828. <day type="mon">dl</day>
  1829. <day type="tue">dt</day>
  1830. <day type="wed">dc</day>
  1831. <day type="thu">dj</day>
  1832. <day type="fri">dv</day>
  1833. <day type="sat">ds</day>
  1834. </dayWidth>
  1835. <dayWidth type="short">
  1836. <day type="sun">dg.</day>
  1837. <day type="mon">dl.</day>
  1838. <day type="tue">dt.</day>
  1839. <day type="wed">dc.</day>
  1840. <day type="thu">dj.</day>
  1841. <day type="fri">dv.</day>
  1842. <day type="sat">ds.</day>
  1843. </dayWidth>
  1844. <dayWidth type="wide">
  1845. <day type="sun">diumenge</day>
  1846. <day type="mon">dilluns</day>
  1847. <day type="tue">dimarts</day>
  1848. <day type="wed">dimecres</day>
  1849. <day type="thu">dijous</day>
  1850. <day type="fri">divendres</day>
  1851. <day type="sat">dissabte</day>
  1852. </dayWidth>
  1853. </dayContext>
  1854. <dayContext type="stand-alone">
  1855. <dayWidth type="abbreviated">
  1856. <day type="sun">dg</day>
  1857. <day type="mon">dl</day>
  1858. <day type="tue">dt</day>
  1859. <day type="wed">dc</day>
  1860. <day type="thu">dj</day>
  1861. <day type="fri">dv</day>
  1862. <day type="sat">ds</day>
  1863. </dayWidth>
  1864. <dayWidth type="narrow">
  1865. <day type="sun">dg</day>
  1866. <day type="mon">dl</day>
  1867. <day type="tue">dt</day>
  1868. <day type="wed">dc</day>
  1869. <day type="thu">dj</day>
  1870. <day type="fri">dv</day>
  1871. <day type="sat">ds</day>
  1872. </dayWidth>
  1873. <dayWidth type="short">
  1874. <day type="sun">dg.</day>
  1875. <day type="mon">dl.</day>
  1876. <day type="tue">dm.</day>
  1877. <day type="wed">dc.</day>
  1878. <day type="thu">dj.</day>
  1879. <day type="fri">dv.</day>
  1880. <day type="sat">ds.</day>
  1881. </dayWidth>
  1882. <dayWidth type="wide">
  1883. <day type="sun">Diumenge</day>
  1884. <day type="mon">Dilluns</day>
  1885. <day type="tue">Dimarts</day>
  1886. <day type="wed">Dimecres</day>
  1887. <day type="thu">Dijous</day>
  1888. <day type="fri">Divendres</day>
  1889. <day type="sat">Dissabte</day>
  1890. </dayWidth>
  1891. </dayContext>
  1892. </days>
  1893. <quarters>
  1894. <quarterContext type="format">
  1895. <quarterWidth type="abbreviated">
  1896. <quarter type="1">1T</quarter>
  1897. <quarter type="2">2T</quarter>
  1898. <quarter type="3">3T</quarter>
  1899. <quarter type="4">4T</quarter>
  1900. </quarterWidth>
  1901. <quarterWidth type="narrow">
  1902. <quarter type="1">1</quarter>
  1903. <quarter type="2">2</quarter>
  1904. <quarter type="3">3</quarter>
  1905. <quarter type="4">4</quarter>
  1906. </quarterWidth>
  1907. <quarterWidth type="wide">
  1908. <quarter type="1">1r trimestre</quarter>
  1909. <quarter type="2">2n trimestre</quarter>
  1910. <quarter type="3">3r trimestre</quarter>
  1911. <quarter type="4">4t trimestre</quarter>
  1912. </quarterWidth>
  1913. </quarterContext>
  1914. <quarterContext type="stand-alone">
  1915. <quarterWidth type="abbreviated">
  1916. <quarter type="1" draft="contributed">1T</quarter>
  1917. <quarter type="2" draft="contributed">2T</quarter>
  1918. <quarter type="3" draft="contributed">3T</quarter>
  1919. <quarter type="4" draft="contributed">4T</quarter>
  1920. </quarterWidth>
  1921. <quarterWidth type="narrow">
  1922. <quarter type="1">1</quarter>
  1923. <quarter type="2">2</quarter>
  1924. <quarter type="3">3</quarter>
  1925. <quarter type="4">4</quarter>
  1926. </quarterWidth>
  1927. <quarterWidth type="wide">
  1928. <quarter type="1" draft="contributed">1r trimestre</quarter>
  1929. <quarter type="2" draft="contributed">2n trimestre</quarter>
  1930. <quarter type="3" draft="contributed">3r trimestre</quarter>
  1931. <quarter type="4" draft="contributed">4t trimestre</quarter>
  1932. </quarterWidth>
  1933. </quarterContext>
  1934. </quarters>
  1935. <dayPeriods>
  1936. <dayPeriodContext type="format">
  1937. <dayPeriodWidth type="narrow">
  1938. <dayPeriod type="am">a.m.</dayPeriod>
  1939. <dayPeriod type="pm">p.m.</dayPeriod>
  1940. </dayPeriodWidth>
  1941. <dayPeriodWidth type="wide">
  1942. <dayPeriod type="am">a.m.</dayPeriod>
  1943. <dayPeriod type="pm">p.m.</dayPeriod>
  1944. </dayPeriodWidth>
  1945. </dayPeriodContext>
  1946. </dayPeriods>
  1947. <eras>
  1948. <eraNames>
  1949. <era type="0" draft="contributed">abans de Crist</era>
  1950. <era type="1" draft="contributed">després de Crist</era>
  1951. </eraNames>
  1952. <eraAbbr>
  1953. <era type="0">aC</era>
  1954. <era type="1">dC</era>
  1955. </eraAbbr>
  1956. <eraNarrow>
  1957. <era type="0">aC</era>
  1958. <era type="1">dC</era>
  1959. </eraNarrow>
  1960. </eras>
  1961. <dateFormats>
  1962. <dateFormatLength type="full">
  1963. <dateFormat>
  1964. <pattern>EEEE d MMMM 'de' y</pattern>
  1965. </dateFormat>
  1966. </dateFormatLength>
  1967. <dateFormatLength type="long">
  1968. <dateFormat>
  1969. <pattern>d MMMM 'de' y</pattern>
  1970. </dateFormat>
  1971. </dateFormatLength>
  1972. <dateFormatLength type="medium">
  1973. <dateFormat>
  1974. <pattern>dd/MM/y</pattern>
  1975. </dateFormat>
  1976. </dateFormatLength>
  1977. <dateFormatLength type="short">
  1978. <dateFormat>
  1979. <pattern>dd/MM/yy</pattern>
  1980. </dateFormat>
  1981. </dateFormatLength>
  1982. </dateFormats>
  1983. <timeFormats>
  1984. <timeFormatLength type="full">
  1985. <timeFormat>
  1986. <pattern>H.mm.ss zzzz</pattern>
  1987. </timeFormat>
  1988. </timeFormatLength>
  1989. <timeFormatLength type="long">
  1990. <timeFormat>
  1991. <pattern>H.mm.ss z</pattern>
  1992. </timeFormat>
  1993. </timeFormatLength>
  1994. <timeFormatLength type="medium">
  1995. <timeFormat>
  1996. <pattern>H.mm.ss</pattern>
  1997. </timeFormat>
  1998. </timeFormatLength>
  1999. <timeFormatLength type="short">
  2000. <timeFormat>
  2001. <pattern>H.mm</pattern>
  2002. </timeFormat>
  2003. </timeFormatLength>
  2004. </timeFormats>
  2005. <dateTimeFormats>
  2006. <dateTimeFormatLength type="full">
  2007. <dateTimeFormat>
  2008. <pattern>{1} {0}</pattern>
  2009. </dateTimeFormat>
  2010. </dateTimeFormatLength>
  2011. <dateTimeFormatLength type="long">
  2012. <dateTimeFormat>
  2013. <pattern>{1} {0}</pattern>
  2014. </dateTimeFormat>
  2015. </dateTimeFormatLength>
  2016. <dateTimeFormatLength type="medium">
  2017. <dateTimeFormat>
  2018. <pattern>{1} {0}</pattern>
  2019. </dateTimeFormat>
  2020. </dateTimeFormatLength>
  2021. <dateTimeFormatLength type="short">
  2022. <dateTimeFormat>
  2023. <pattern>{1} {0}</pattern>
  2024. </dateTimeFormat>
  2025. </dateTimeFormatLength>
  2026. <availableFormats>
  2027. <dateFormatItem id="d">d</dateFormatItem>
  2028. <dateFormatItem id="Ed">E d</dateFormatItem>
  2029. <dateFormatItem id="h">h a</dateFormatItem>
  2030. <dateFormatItem id="H">H</dateFormatItem>
  2031. <dateFormatItem id="hm">h.mm a</dateFormatItem>
  2032. <dateFormatItem id="Hm">H.mm</dateFormatItem>
  2033. <dateFormatItem id="hms">h.mm.ss a</dateFormatItem>
  2034. <dateFormatItem id="Hms">H.mm.ss</dateFormatItem>
  2035. <dateFormatItem id="M">L</dateFormatItem>
  2036. <dateFormatItem id="Md">d/M</dateFormatItem>
  2037. <dateFormatItem id="MEd">E d/M</dateFormatItem>
  2038. <dateFormatItem id="MMM">LLL</dateFormatItem>
  2039. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  2040. <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
  2041. <dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
  2042. <dateFormatItem id="MMMMEd">E d MMMM</dateFormatItem>
  2043. <dateFormatItem id="mmss">mm:ss</dateFormatItem>
  2044. <dateFormatItem id="ms">mm.ss</dateFormatItem>
  2045. <dateFormatItem id="y">y</dateFormatItem>
  2046. <dateFormatItem id="yM">M/y</dateFormatItem>
  2047. <dateFormatItem id="yMd">d/M/y</dateFormatItem>
  2048. <dateFormatItem id="yMEd">E, d.M.y</dateFormatItem>
  2049. <dateFormatItem id="yMM" draft="contributed">MM/y</dateFormatItem>
  2050. <dateFormatItem id="yMMM">LLL y</dateFormatItem>
  2051. <dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
  2052. <dateFormatItem id="yMMMEd">E, d MMM, y</dateFormatItem>
  2053. <dateFormatItem id="yMMMM">LLLL 'de' y</dateFormatItem>
  2054. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  2055. <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
  2056. </availableFormats>
  2057. <intervalFormats>
  2058. <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
  2059. <intervalFormatItem id="d">
  2060. <greatestDifference id="d">d-d</greatestDifference>
  2061. </intervalFormatItem>
  2062. <intervalFormatItem id="h">
  2063. <greatestDifference id="a">h a - h a</greatestDifference>
  2064. <greatestDifference id="h">h-h a</greatestDifference>
  2065. </intervalFormatItem>
  2066. <intervalFormatItem id="H">
  2067. <greatestDifference id="H">H-H</greatestDifference>
  2068. </intervalFormatItem>
  2069. <intervalFormatItem id="hm">
  2070. <greatestDifference id="a">h.mm a -h.mm a</greatestDifference>
  2071. <greatestDifference id="h">h.mm-h.mm a</greatestDifference>
  2072. <greatestDifference id="m">h.mm-h.mm a</greatestDifference>
  2073. </intervalFormatItem>
  2074. <intervalFormatItem id="Hm">
  2075. <greatestDifference id="H">HH.mm-HH.mm</greatestDifference>
  2076. <greatestDifference id="m">HH.mm-HH.mm</greatestDifference>
  2077. </intervalFormatItem>
  2078. <intervalFormatItem id="hmv">
  2079. <greatestDifference id="a">h.mm a - h.mm a v</greatestDifference>
  2080. <greatestDifference id="h">h.mm-h.mm a v</greatestDifference>
  2081. <greatestDifference id="m">h.mm-h.mm a v</greatestDifference>
  2082. </intervalFormatItem>
  2083. <intervalFormatItem id="Hmv">
  2084. <greatestDifference id="H">HH.mm-HH.mm v</greatestDifference>
  2085. <greatestDifference id="m">HH.mm-HH.mm v</greatestDifference>
  2086. </intervalFormatItem>
  2087. <intervalFormatItem id="hv">
  2088. <greatestDifference id="a">h a - h a v</greatestDifference>
  2089. <greatestDifference id="h">h-h a v</greatestDifference>
  2090. </intervalFormatItem>
  2091. <intervalFormatItem id="Hv">
  2092. <greatestDifference id="H">H-H v</greatestDifference>
  2093. </intervalFormatItem>
  2094. <intervalFormatItem id="M">
  2095. <greatestDifference id="M">M-M</greatestDifference>
  2096. </intervalFormatItem>
  2097. <intervalFormatItem id="Md">
  2098. <greatestDifference id="d">dd/MM - dd/MM</greatestDifference>
  2099. <greatestDifference id="M">dd/MM - dd/MM</greatestDifference>
  2100. </intervalFormatItem>
  2101. <intervalFormatItem id="MEd">
  2102. <greatestDifference id="d">E dd/MM - E dd/MM</greatestDifference>
  2103. <greatestDifference id="M">E dd/MM - E dd/MM</greatestDifference>
  2104. </intervalFormatItem>
  2105. <intervalFormatItem id="MMM">
  2106. <greatestDifference id="M">LLL-LLL</greatestDifference>
  2107. </intervalFormatItem>
  2108. <intervalFormatItem id="MMMd">
  2109. <greatestDifference id="d">d-d MMM</greatestDifference>
  2110. <greatestDifference id="M">d MMM - d MMM</greatestDifference>
  2111. </intervalFormatItem>
  2112. <intervalFormatItem id="MMMEd">
  2113. <greatestDifference id="d">E d - E d MMM</greatestDifference>
  2114. <greatestDifference id="M">E d MMM - E d MMM</greatestDifference>
  2115. </intervalFormatItem>
  2116. <intervalFormatItem id="y">
  2117. <greatestDifference id="y">y-y</greatestDifference>
  2118. </intervalFormatItem>
  2119. <intervalFormatItem id="yM">
  2120. <greatestDifference id="M">MM/y - MM/y</greatestDifference>
  2121. <greatestDifference id="y">MM/y - MM/y</greatestDifference>
  2122. </intervalFormatItem>
  2123. <intervalFormatItem id="yMd">
  2124. <greatestDifference id="d">dd/MM/y - dd/MM/y</greatestDifference>
  2125. <greatestDifference id="M">dd/MM/y - dd/MM/y</greatestDifference>
  2126. <greatestDifference id="y">dd/MM/y - dd/MM/y</greatestDifference>
  2127. </intervalFormatItem>
  2128. <intervalFormatItem id="yMEd">
  2129. <greatestDifference id="d">E dd/MM/y - E dd/MM/y</greatestDifference>
  2130. <greatestDifference id="M">E dd/MM/y - E dd/MM/y</greatestDifference>
  2131. <greatestDifference id="y">E dd/MM/y - E dd/MM/y</greatestDifference>
  2132. </intervalFormatItem>
  2133. <intervalFormatItem id="yMMM">
  2134. <greatestDifference id="M">LLL-LLL 'de' y</greatestDifference>
  2135. <greatestDifference id="y">LLL 'de' y - LLL 'de' y</greatestDifference>
  2136. </intervalFormatItem>
  2137. <intervalFormatItem id="yMMMd">
  2138. <greatestDifference id="d">d-d MMM 'de' y</greatestDifference>
  2139. <greatestDifference id="M">d MMM - d MMM 'de' y</greatestDifference>
  2140. <greatestDifference id="y">d MMM 'de' y - d MMM 'de' y</greatestDifference>
  2141. </intervalFormatItem>
  2142. <intervalFormatItem id="yMMMEd">
  2143. <greatestDifference id="d">E d - E d MMM 'de' y</greatestDifference>
  2144. <greatestDifference id="M">E d MMM - E d MMM 'de' y</greatestDifference>
  2145. <greatestDifference id="y">E d MMM 'de' y - E d MMM 'de' y</greatestDifference>
  2146. </intervalFormatItem>
  2147. <intervalFormatItem id="yMMMM">
  2148. <greatestDifference id="M">LLLL-LLLL 'de' y</greatestDifference>
  2149. <greatestDifference id="y">LLLL 'de' y - LLLL 'de' y</greatestDifference>
  2150. </intervalFormatItem>
  2151. </intervalFormats>
  2152. </dateTimeFormats>
  2153. </calendar>
  2154. <calendar type="roc">
  2155. <dateTimeFormats>
  2156. <availableFormats>
  2157. <dateFormatItem id="h" draft="unconfirmed">h a</dateFormatItem>
  2158. <dateFormatItem id="H" draft="unconfirmed">HH</dateFormatItem>
  2159. <dateFormatItem id="hm" draft="unconfirmed">h.mm a</dateFormatItem>
  2160. <dateFormatItem id="Hm" draft="unconfirmed">HH.mm</dateFormatItem>
  2161. <dateFormatItem id="hms" draft="unconfirmed">h.mm.ss a</dateFormatItem>
  2162. <dateFormatItem id="Hms" draft="unconfirmed">HH.mm.ss</dateFormatItem>
  2163. <dateFormatItem id="ms" draft="unconfirmed">mm.ss</dateFormatItem>
  2164. </availableFormats>
  2165. </dateTimeFormats>
  2166. </calendar>
  2167. </calendars>
  2168. <fields>
  2169. <field type="era">
  2170. <displayName>era</displayName>
  2171. </field>
  2172. <field type="year">
  2173. <displayName>any</displayName>
  2174. <relative type="-1">Últim any</relative>
  2175. <relative type="0" draft="contributed">Aquest any</relative>
  2176. <relative type="1" draft="contributed">Any següent</relative>
  2177. </field>
  2178. <field type="month">
  2179. <displayName>mes</displayName>
  2180. <relative type="-1" draft="contributed">Últim mes</relative>
  2181. <relative type="0" draft="contributed">Aquest mes</relative>
  2182. <relative type="1" draft="contributed">Mes següent</relative>
  2183. </field>
  2184. <field type="week">
  2185. <displayName>setmana</displayName>
  2186. <relative type="-1" draft="contributed">Última setmana</relative>
  2187. <relative type="0" draft="contributed">Aquesta setmana</relative>
  2188. <relative type="1" draft="contributed">Setmana següent</relative>
  2189. </field>
  2190. <field type="day">
  2191. <displayName>dia</displayName>
  2192. <relative type="-2">abans d'ahir</relative>
  2193. <relative type="-1">ahir</relative>
  2194. <relative type="0">avui</relative>
  2195. <relative type="1">demà</relative>
  2196. <relative type="2">demà passat</relative>
  2197. </field>
  2198. <field type="weekday">
  2199. <displayName>dia de la setmana</displayName>
  2200. </field>
  2201. <field type="dayperiod">
  2202. <displayName>a.m./p.m.</displayName>
  2203. </field>
  2204. <field type="hour">
  2205. <displayName>hora</displayName>
  2206. </field>
  2207. <field type="minute">
  2208. <displayName>minut</displayName>
  2209. </field>
  2210. <field type="second">
  2211. <displayName>segon</displayName>
  2212. </field>
  2213. <field type="zone">
  2214. <displayName>zona</displayName>
  2215. </field>
  2216. </fields>
  2217. <timeZoneNames>
  2218. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  2219. <gmtFormat>GMT{0}</gmtFormat>
  2220. <gmtZeroFormat>GMT</gmtZeroFormat>
  2221. <regionFormat>Hora de: {0}</regionFormat>
  2222. <fallbackFormat>{1} ({0})</fallbackFormat>
  2223. <fallbackRegionFormat>Hora de: {1} ({0})</fallbackRegionFormat>
  2224. <zone type="Etc/Unknown">
  2225. <exemplarCity>Zona desconeguda</exemplarCity>
  2226. </zone>
  2227. <zone type="Asia/Kabul">
  2228. <exemplarCity draft="contributed">Kābul</exemplarCity>
  2229. </zone>
  2230. <zone type="Europe/Tirane">
  2231. <exemplarCity draft="contributed">Tirana</exemplarCity>
  2232. </zone>
  2233. <zone type="Asia/Yerevan">
  2234. <exemplarCity draft="contributed">Erevan</exemplarCity>
  2235. </zone>
  2236. <zone type="Antarctica/South_Pole">
  2237. <exemplarCity>pol sud</exemplarCity>
  2238. </zone>
  2239. <zone type="Antarctica/DumontDUrville">
  2240. <exemplarCity draft="contributed">Dumont d’Urville</exemplarCity>
  2241. </zone>
  2242. <zone type="America/Argentina/Rio_Gallegos">
  2243. <exemplarCity>Río Gallegos</exemplarCity>
  2244. </zone>
  2245. <zone type="America/Argentina/Tucuman">
  2246. <exemplarCity>Tucumán</exemplarCity>
  2247. </zone>
  2248. <zone type="America/Cordoba">
  2249. <exemplarCity>Córdoba</exemplarCity>
  2250. </zone>
  2251. <zone type="Europe/Vienna">
  2252. <exemplarCity draft="contributed">Viena</exemplarCity>
  2253. </zone>
  2254. <zone type="Europe/Mariehamn">
  2255. <exemplarCity draft="contributed">Maarianhamina</exemplarCity>
  2256. </zone>
  2257. <zone type="Asia/Baku">
  2258. <exemplarCity draft="contributed">Bakú</exemplarCity>
  2259. </zone>
  2260. <zone type="Asia/Dhaka">
  2261. <exemplarCity draft="contributed">Dacca</exemplarCity>
  2262. </zone>
  2263. <zone type="Europe/Brussels">
  2264. <exemplarCity draft="contributed">Brussel·les</exemplarCity>
  2265. </zone>
  2266. <zone type="America/St_Barthelemy">
  2267. <exemplarCity>Saint Barthélemy</exemplarCity>
  2268. </zone>
  2269. <zone type="Atlantic/Bermuda">
  2270. <exemplarCity draft="contributed">Bermudes</exemplarCity>
  2271. </zone>
  2272. <zone type="America/Eirunepe">
  2273. <exemplarCity>Eirunepé</exemplarCity>
  2274. </zone>
  2275. <zone type="America/Rio_Branco">
  2276. <exemplarCity>Río Branco</exemplarCity>
  2277. </zone>
  2278. <zone type="America/Cuiaba">
  2279. <exemplarCity>Cuiabá</exemplarCity>
  2280. </zone>
  2281. <zone type="America/Santarem">
  2282. <exemplarCity draft="contributed">Santarém</exemplarCity>
  2283. </zone>
  2284. <zone type="America/Belem">
  2285. <exemplarCity>Belém</exemplarCity>
  2286. </zone>
  2287. <zone type="America/Araguaina">
  2288. <exemplarCity>Araguaína</exemplarCity>
  2289. </zone>
  2290. <zone type="America/Sao_Paulo">
  2291. <exemplarCity>São Paulo</exemplarCity>
  2292. </zone>
  2293. <zone type="America/Maceio">
  2294. <exemplarCity>Maceió</exemplarCity>
  2295. </zone>
  2296. <zone type="Asia/Thimphu">
  2297. <exemplarCity draft="contributed">Thimbu</exemplarCity>
  2298. </zone>
  2299. <zone type="America/Coral_Harbour">
  2300. <exemplarCity draft="contributed">Atikokan</exemplarCity>
  2301. </zone>
  2302. <zone type="America/Blanc-Sablon">
  2303. <exemplarCity draft="contributed">Blanc Sablon</exemplarCity>
  2304. </zone>
  2305. <zone type="America/St_Johns">
  2306. <exemplarCity>Saint John’s</exemplarCity>
  2307. </zone>
  2308. <zone type="Europe/Zurich">
  2309. <exemplarCity draft="contributed">Zuric</exemplarCity>
  2310. </zone>
  2311. <zone type="Pacific/Easter">
  2312. <exemplarCity>Illa de Pasqua</exemplarCity>
  2313. </zone>
  2314. <zone type="Asia/Kashgar">
  2315. <exemplarCity draft="contributed">Kaixgar</exemplarCity>
  2316. </zone>
  2317. <zone type="Asia/Urumqi">
  2318. <exemplarCity>Urumchi</exemplarCity>
  2319. </zone>
  2320. <zone type="Asia/Shanghai">
  2321. <exemplarCity draft="contributed">Xangai</exemplarCity>
  2322. </zone>
  2323. <zone type="America/Bogota">
  2324. <exemplarCity draft="contributed">Bogotà</exemplarCity>
  2325. </zone>
  2326. <zone type="Atlantic/Cape_Verde">
  2327. <exemplarCity draft="contributed">Cap Verd</exemplarCity>
  2328. </zone>
  2329. <zone type="America/Curacao">
  2330. <exemplarCity>Curaçao</exemplarCity>
  2331. </zone>
  2332. <zone type="Asia/Nicosia">
  2333. <exemplarCity draft="contributed">Nicòsia</exemplarCity>
  2334. </zone>
  2335. <zone type="Europe/Prague">
  2336. <exemplarCity draft="contributed">Praga</exemplarCity>
  2337. </zone>
  2338. <zone type="Europe/Berlin">
  2339. <exemplarCity draft="contributed">Berlín</exemplarCity>
  2340. </zone>
  2341. <zone type="Africa/Algiers">
  2342. <exemplarCity draft="contributed">Alger</exemplarCity>
  2343. </zone>
  2344. <zone type="Pacific/Galapagos">
  2345. <exemplarCity>Galápagos</exemplarCity>
  2346. </zone>
  2347. <zone type="Africa/Cairo">
  2348. <exemplarCity draft="contributed">Caire, el</exemplarCity>
  2349. </zone>
  2350. <zone type="Africa/El_Aaiun">
  2351. <exemplarCity draft="contributed">Al-aaiun</exemplarCity>
  2352. </zone>
  2353. <zone type="Africa/Asmera">
  2354. <exemplarCity draft="contributed">Asmara</exemplarCity>
  2355. </zone>
  2356. <zone type="Atlantic/Canary">
  2357. <exemplarCity>Illes Canàries</exemplarCity>
  2358. </zone>
  2359. <zone type="Africa/Addis_Ababa">
  2360. <exemplarCity draft="contributed">Addis Abeba</exemplarCity>
  2361. </zone>
  2362. <zone type="Europe/Helsinki">
  2363. <exemplarCity draft="contributed">Hèlsinki</exemplarCity>
  2364. </zone>
  2365. <zone type="Pacific/Truk">
  2366. <exemplarCity draft="contributed">Chuuk</exemplarCity>
  2367. </zone>
  2368. <zone type="Pacific/Ponape">
  2369. <exemplarCity draft="contributed">Pohnpei</exemplarCity>
  2370. </zone>
  2371. <zone type="Atlantic/Faeroe">
  2372. <exemplarCity draft="contributed">Illes Fèroe</exemplarCity>
  2373. </zone>
  2374. <zone type="Europe/Paris">
  2375. <exemplarCity draft="contributed">París</exemplarCity>
  2376. </zone>
  2377. <zone type="Europe/London">
  2378. <long>
  2379. <daylight draft="contributed">Horari d'estiu britànic</daylight>
  2380. </long>
  2381. <exemplarCity draft="contributed">Londres</exemplarCity>
  2382. </zone>
  2383. <zone type="America/Cayenne">
  2384. <exemplarCity draft="contributed">Caiena</exemplarCity>
  2385. </zone>
  2386. <zone type="America/Guadeloupe">
  2387. <exemplarCity draft="contributed">Guadalupe</exemplarCity>
  2388. </zone>
  2389. <zone type="Europe/Athens">
  2390. <exemplarCity draft="contributed">Atenes</exemplarCity>
  2391. </zone>
  2392. <zone type="Atlantic/South_Georgia">
  2393. <exemplarCity draft="contributed">Geòrgia del Sud</exemplarCity>
  2394. </zone>
  2395. <zone type="Asia/Makassar">
  2396. <exemplarCity>Makasar</exemplarCity>
  2397. </zone>
  2398. <zone type="Asia/Jayapura">
  2399. <exemplarCity draft="contributed">Jaipur</exemplarCity>
  2400. </zone>
  2401. <zone type="Europe/Dublin">
  2402. <long>
  2403. <daylight draft="contributed">Horari d'estiu irlandès</daylight>
  2404. </long>
  2405. <exemplarCity draft="contributed">Dublín</exemplarCity>
  2406. </zone>
  2407. <zone type="Europe/Isle_of_Man">
  2408. <exemplarCity draft="contributed">Man</exemplarCity>
  2409. </zone>
  2410. <zone type="Asia/Calcutta">
  2411. <exemplarCity draft="contributed">Calcuta</exemplarCity>
  2412. </zone>
  2413. <zone type="Asia/Baghdad">
  2414. <exemplarCity draft="contributed">Bagdad</exemplarCity>
  2415. </zone>
  2416. <zone type="Asia/Tehran">
  2417. <exemplarCity draft="contributed">Teheran</exemplarCity>
  2418. </zone>
  2419. <zone type="Europe/Rome">
  2420. <exemplarCity draft="contributed">Roma</exemplarCity>
  2421. </zone>
  2422. <zone type="Asia/Tokyo">
  2423. <exemplarCity draft="contributed">Tòquio</exemplarCity>
  2424. </zone>
  2425. <zone type="Asia/Bishkek">
  2426. <exemplarCity draft="contributed">Bixkek</exemplarCity>
  2427. </zone>
  2428. <zone type="America/St_Kitts">
  2429. <exemplarCity draft="contributed">Saint Kitts</exemplarCity>
  2430. </zone>
  2431. <zone type="Asia/Seoul">
  2432. <exemplarCity draft="contributed">Seül</exemplarCity>
  2433. </zone>
  2434. <zone type="America/Cayman">
  2435. <exemplarCity draft="contributed">Caiman</exemplarCity>
  2436. </zone>
  2437. <zone type="Asia/Aqtau">
  2438. <exemplarCity>Aqtaū</exemplarCity>
  2439. </zone>
  2440. <zone type="Asia/Aqtobe">
  2441. <exemplarCity>Aķtöbe</exemplarCity>
  2442. </zone>
  2443. <zone type="Asia/Qyzylorda">
  2444. <exemplarCity draft="contributed">Kizilordà</exemplarCity>
  2445. </zone>
  2446. <zone type="America/St_Lucia">
  2447. <exemplarCity draft="contributed">Saint Lucia</exemplarCity>
  2448. </zone>
  2449. <zone type="Europe/Vilnius">
  2450. <exemplarCity draft="contributed">Vílnius</exemplarCity>
  2451. </zone>
  2452. <zone type="Europe/Luxembourg">
  2453. <exemplarCity draft="contributed">Luxemburg</exemplarCity>
  2454. </zone>
  2455. <zone type="Africa/Tripoli">
  2456. <exemplarCity draft="contributed">Trípoli</exemplarCity>
  2457. </zone>
  2458. <zone type="Europe/Monaco">
  2459. <exemplarCity draft="contributed">Mònaco</exemplarCity>
  2460. </zone>
  2461. <zone type="Asia/Ulaanbaatar">
  2462. <exemplarCity draft="contributed">Ulan Bator</exemplarCity>
  2463. </zone>
  2464. <zone type="Asia/Choibalsan">
  2465. <exemplarCity draft="contributed">Čojbalsan</exemplarCity>
  2466. </zone>
  2467. <zone type="America/Martinique">
  2468. <exemplarCity draft="contributed">Martinica</exemplarCity>
  2469. </zone>
  2470. <zone type="Indian/Mauritius">
  2471. <exemplarCity draft="contributed">Maurici</exemplarCity>
  2472. </zone>
  2473. <zone type="America/Mazatlan">
  2474. <exemplarCity>Mazatlán</exemplarCity>
  2475. </zone>
  2476. <zone type="America/Mexico_City">
  2477. <exemplarCity>Ciutat de Mèxic</exemplarCity>
  2478. </zone>
  2479. <zone type="America/Merida">
  2480. <exemplarCity>Mérida</exemplarCity>
  2481. </zone>
  2482. <zone type="Pacific/Noumea">
  2483. <exemplarCity>Nouméa</exemplarCity>
  2484. </zone>
  2485. <zone type="Asia/Katmandu">
  2486. <exemplarCity draft="contributed">Katmandú</exemplarCity>
  2487. </zone>
  2488. <zone type="Asia/Muscat">
  2489. <exemplarCity draft="contributed">Masqat</exemplarCity>
  2490. </zone>
  2491. <zone type="America/Panama">
  2492. <exemplarCity draft="contributed">Panamà</exemplarCity>
  2493. </zone>
  2494. <zone type="Pacific/Tahiti">
  2495. <exemplarCity draft="contributed">Tahití</exemplarCity>
  2496. </zone>
  2497. <zone type="Pacific/Marquesas">
  2498. <exemplarCity>Marqueses</exemplarCity>
  2499. </zone>
  2500. <zone type="Europe/Warsaw">
  2501. <exemplarCity draft="contributed">Varsòvia</exemplarCity>
  2502. </zone>
  2503. <zone type="Atlantic/Azores">
  2504. <exemplarCity>Açores</exemplarCity>
  2505. </zone>
  2506. <zone type="Europe/Lisbon">
  2507. <exemplarCity draft="contributed">Lisboa</exemplarCity>
  2508. </zone>
  2509. <zone type="America/Asuncion">
  2510. <exemplarCity>Asunción</exemplarCity>
  2511. </zone>
  2512. <zone type="Indian/Reunion">
  2513. <exemplarCity>Reunió</exemplarCity>
  2514. </zone>
  2515. <zone type="Europe/Bucharest">
  2516. <exemplarCity draft="contributed">Bucarest</exemplarCity>
  2517. </zone>
  2518. <zone type="Europe/Belgrade">
  2519. <exemplarCity draft="contributed">Belgrad</exemplarCity>
  2520. </zone>
  2521. <zone type="Europe/Moscow">
  2522. <exemplarCity>Moscou</exemplarCity>
  2523. </zone>
  2524. <zone type="Asia/Yekaterinburg">
  2525. <exemplarCity>Jekaterinburg</exemplarCity>
  2526. </zone>
  2527. <zone type="Asia/Krasnoyarsk">
  2528. <exemplarCity>Krasnoiarsk</exemplarCity>
  2529. </zone>
  2530. <zone type="Asia/Yakutsk">
  2531. <exemplarCity>Jakutsk</exemplarCity>
  2532. </zone>
  2533. <zone type="Asia/Kamchatka">
  2534. <exemplarCity>Kamtxatka</exemplarCity>
  2535. </zone>
  2536. <zone type="Asia/Anadyr">
  2537. <exemplarCity>Anadyr'</exemplarCity>
  2538. </zone>
  2539. <zone type="Asia/Riyadh">
  2540. <exemplarCity draft="contributed">Al-Riyād</exemplarCity>
  2541. </zone>
  2542. <zone type="Africa/Khartoum">
  2543. <exemplarCity draft="contributed">Khartum</exemplarCity>
  2544. </zone>
  2545. <zone type="Europe/Stockholm">
  2546. <exemplarCity draft="contributed">Estocolm</exemplarCity>
  2547. </zone>
  2548. <zone type="Asia/Singapore">
  2549. <exemplarCity draft="contributed">Singapur</exemplarCity>
  2550. </zone>
  2551. <zone type="Atlantic/St_Helena">
  2552. <exemplarCity draft="contributed">Saint Helena</exemplarCity>
  2553. </zone>
  2554. <zone type="Africa/Mogadishu">
  2555. <exemplarCity draft="contributed">Mogadixo</exemplarCity>
  2556. </zone>
  2557. <zone type="Africa/Sao_Tome">
  2558. <exemplarCity>São Tomé</exemplarCity>
  2559. </zone>
  2560. <zone type="America/Lower_Princes">
  2561. <exemplarCity>Lower Prince's Quarter</exemplarCity>
  2562. </zone>
  2563. <zone type="Asia/Damascus">
  2564. <exemplarCity draft="contributed">Damasc</exemplarCity>
  2565. </zone>
  2566. <zone type="Europe/Kiev">
  2567. <exemplarCity draft="contributed">Kíev</exemplarCity>
  2568. </zone>
  2569. <zone type="Europe/Zaporozhye">
  2570. <exemplarCity draft="contributed">Zaporójjia</exemplarCity>
  2571. </zone>
  2572. <zone type="America/North_Dakota/Beulah">
  2573. <exemplarCity draft="contributed">Beulah, Dakota del Nord</exemplarCity>
  2574. </zone>
  2575. <zone type="America/North_Dakota/New_Salem">
  2576. <exemplarCity>New Salem, Dakota del Nord</exemplarCity>
  2577. </zone>
  2578. <zone type="America/North_Dakota/Center">
  2579. <exemplarCity>Center, Dakota del Nord</exemplarCity>
  2580. </zone>
  2581. <zone type="America/Indiana/Vincennes">
  2582. <exemplarCity draft="contributed">Vincennes, Indiana</exemplarCity>
  2583. </zone>
  2584. <zone type="America/Indiana/Petersburg">
  2585. <exemplarCity draft="contributed">Petersburg, Indiana</exemplarCity>
  2586. </zone>
  2587. <zone type="America/Indiana/Tell_City">
  2588. <exemplarCity draft="contributed">Tell City, Indiana</exemplarCity>
  2589. </zone>
  2590. <zone type="America/Indiana/Knox">
  2591. <exemplarCity draft="contributed">Knox, Indiana</exemplarCity>
  2592. </zone>
  2593. <zone type="America/Indiana/Winamac">
  2594. <exemplarCity draft="contributed">Winamac, Indiana</exemplarCity>
  2595. </zone>
  2596. <zone type="America/Indiana/Marengo">
  2597. <exemplarCity draft="contributed">Marengo, Indiana</exemplarCity>
  2598. </zone>
  2599. <zone type="America/Indiana/Vevay">
  2600. <exemplarCity draft="contributed">Vevay, Indiana</exemplarCity>
  2601. </zone>
  2602. <zone type="America/Kentucky/Monticello">
  2603. <exemplarCity draft="contributed">Monticello, Kentucky</exemplarCity>
  2604. </zone>
  2605. <zone type="America/New_York">
  2606. <exemplarCity>Nova York</exemplarCity>
  2607. </zone>
  2608. <zone type="Asia/Samarkand">
  2609. <exemplarCity>Samarcanda</exemplarCity>
  2610. </zone>
  2611. <zone type="Asia/Tashkent">
  2612. <exemplarCity draft="contributed">Taixkent</exemplarCity>
  2613. </zone>
  2614. <zone type="Europe/Vatican">
  2615. <exemplarCity draft="contributed">Vaticà</exemplarCity>
  2616. </zone>
  2617. <zone type="America/St_Vincent">
  2618. <exemplarCity draft="contributed">Saint Vincent</exemplarCity>
  2619. </zone>
  2620. <zone type="America/St_Thomas">
  2621. <exemplarCity draft="contributed">Saint Thomas</exemplarCity>
  2622. </zone>
  2623. <zone type="Asia/Saigon">
  2624. <exemplarCity draft="contributed">Ho Chi Minh</exemplarCity>
  2625. </zone>
  2626. <metazone type="Afghanistan">
  2627. <long>
  2628. <standard>Hora de l'Afganistan</standard>
  2629. </long>
  2630. </metazone>
  2631. <metazone type="Africa_Central">
  2632. <long>
  2633. <standard>Hora de l'Àfrica Central</standard>
  2634. </long>
  2635. </metazone>
  2636. <metazone type="Africa_Eastern">
  2637. <long>
  2638. <standard>Hora de l'Àfrica Oriental</standard>
  2639. </long>
  2640. </metazone>
  2641. <metazone type="Africa_Southern">
  2642. <long>
  2643. <standard>Hora estàndard del sud de l'Àfrica</standard>
  2644. </long>
  2645. </metazone>
  2646. <metazone type="Africa_Western">
  2647. <long>
  2648. <generic>Hora de l'Àfrica Occidental</generic>
  2649. <standard>Hora estàndard de l'Àfrica Occidental</standard>
  2650. <daylight>Hora d'estiu de l'Àfrica Occidental</daylight>
  2651. </long>
  2652. </metazone>
  2653. <metazone type="Alaska">
  2654. <long>
  2655. <generic draft="contributed">Hora d'Alaska</generic>
  2656. <standard draft="contributed">Horari estàndard d'Alaska</standard>
  2657. <daylight draft="contributed">Horari d'estiu d'Alaska</daylight>
  2658. </long>
  2659. </metazone>
  2660. <metazone type="Amazon">
  2661. <long>
  2662. <generic draft="contributed">Hora de l'Amazones</generic>
  2663. <standard draft="contributed">Hora estàndard de l'Amazones</standard>
  2664. <daylight draft="contributed">Hora d'estiu de l'Amazones</daylight>
  2665. </long>
  2666. </metazone>
  2667. <metazone type="America_Central">
  2668. <long>
  2669. <generic>Hora central</generic>
  2670. <standard>Hora estàndard central</standard>
  2671. <daylight>Hora d'estiu central</daylight>
  2672. </long>
  2673. </metazone>
  2674. <metazone type="America_Eastern">
  2675. <long>
  2676. <generic>Hora oriental</generic>
  2677. <standard>Hora estàndard oriental</standard>
  2678. <daylight>Hora d'estiu oriental</daylight>
  2679. </long>
  2680. </metazone>
  2681. <metazone type="America_Mountain">
  2682. <long>
  2683. <generic>Hora de muntanya</generic>
  2684. <standard>Hora estàndard de muntanya</standard>
  2685. <daylight>Hora d'estiu de muntanya</daylight>
  2686. </long>
  2687. </metazone>
  2688. <metazone type="America_Pacific">
  2689. <long>
  2690. <generic>Hora del Pacífic</generic>
  2691. <standard>Hora estàndard del Pacífic</standard>
  2692. <daylight>Hora d'estiu del Pacífic</daylight>
  2693. </long>
  2694. </metazone>
  2695. <metazone type="Anadyr">
  2696. <long>
  2697. <generic draft="contributed">Hora d'Anadyr</generic>
  2698. <standard draft="contributed">Hora estàndard d'Anadyr</standard>
  2699. <daylight draft="contributed">Horari d'estiu d'Anadyr</daylight>
  2700. </long>
  2701. </metazone>
  2702. <metazone type="Arabian">
  2703. <long>
  2704. <generic>Hora àrab</generic>
  2705. <standard>Hora estàndard àrab</standard>
  2706. <daylight>Hora d'estiu àrab</daylight>
  2707. </long>
  2708. </metazone>
  2709. <metazone type="Argentina">
  2710. <long>
  2711. <generic>Hora de l'Argentina</generic>
  2712. <standard>Hora estàndard de l'Argentina</standard>
  2713. <daylight>Horari d'estiu de l'Argentina</daylight>
  2714. </long>
  2715. </metazone>
  2716. <metazone type="Argentina_Western">
  2717. <long>
  2718. <generic>Hora de l'oest de l'Argentina</generic>
  2719. <standard>Hora estàndard de l'oest de l'Argentina</standard>
  2720. <daylight>Horari d'estiu de l'oest de l'Argentina</daylight>
  2721. </long>
  2722. </metazone>
  2723. <metazone type="Armenia">
  2724. <long>
  2725. <generic>Hora d'Armènia</generic>
  2726. <standard>Hora estàndard d'Armènia</standard>
  2727. <daylight>Hora d'estiu d'Armènia</daylight>
  2728. </long>
  2729. </metazone>
  2730. <metazone type="Atlantic">
  2731. <long>
  2732. <generic>Hora de l'Atlàntic</generic>
  2733. <standard>Hora estàndard de l'Atlàntic</standard>
  2734. <daylight>Hora d'estiu de l'Atlàntic</daylight>
  2735. </long>
  2736. </metazone>
  2737. <metazone type="Australia_Central">
  2738. <long>
  2739. <generic>Hora d'Austràlia Central</generic>
  2740. <standard>Hora estàndard d'Austràlia Central</standard>
  2741. <daylight>Hora d'estiu d'Austràlia Central</daylight>
  2742. </long>
  2743. </metazone>
  2744. <metazone type="Australia_CentralWestern">
  2745. <long>
  2746. <generic>Hora d'Austràlia centre-occidental</generic>
  2747. <standard>Hora estàndard d'Austràlia centre-occidental</standard>
  2748. <daylight>Hora d'estiu d'Austràlia centre-occidental</daylight>
  2749. </long>
  2750. </metazone>
  2751. <metazone type="Australia_Eastern">
  2752. <long>
  2753. <generic>Hora d'Austràlia Oriental</generic>
  2754. <standard>Hora estàndard d'Austràlia Oriental</standard>
  2755. <daylight>Hora d'estiu d'Austràlia Oriental</daylight>
  2756. </long>
  2757. </metazone>
  2758. <metazone type="Australia_Western">
  2759. <long>
  2760. <generic>Hora d'Austràlia Occidental</generic>
  2761. <standard>Hora estàndard d'Austràlia Occidental</standard>
  2762. <daylight>Hora d'estiu d'Austràlia Occidental</daylight>
  2763. </long>
  2764. </metazone>
  2765. <metazone type="Azerbaijan">
  2766. <long>
  2767. <generic draft="provisional">Hora d'Azerbaidjan</generic>
  2768. <standard draft="provisional">Hora estàndard d'Azerbaidjan</standard>
  2769. <daylight draft="provisional">Hora d'estiu d'Azerbaidjan</daylight>
  2770. </long>
  2771. </metazone>
  2772. <metazone type="Azores">
  2773. <long>
  2774. <generic>Hora de les Açores</generic>
  2775. <standard>Hora estàndard de les Açores</standard>
  2776. <daylight>Hora d'estiu de les Açores</daylight>
  2777. </long>
  2778. </metazone>
  2779. <metazone type="Bangladesh">
  2780. <long>
  2781. <generic>Hora de Bangla Desh</generic>
  2782. <standard>Hora estàndard de Bangla Desh</standard>
  2783. <daylight>Hora d'estiu de Bangla Desh</daylight>
  2784. </long>
  2785. </metazone>
  2786. <metazone type="Bhutan">
  2787. <long>
  2788. <standard>Hora de Bhutan</standard>
  2789. </long>
  2790. </metazone>
  2791. <metazone type="Bolivia">
  2792. <long>
  2793. <standard>Hora de Bolívia</standard>
  2794. </long>
  2795. </metazone>
  2796. <metazone type="Brasilia">
  2797. <long>
  2798. <generic>Hora de Brasília</generic>
  2799. <standard>Hora estàndard de Brasília</standard>
  2800. <daylight>Hora d'estiu de Brasília</daylight>
  2801. </long>
  2802. </metazone>
  2803. <metazone type="Brunei">
  2804. <long>
  2805. <standard>Hora de Brunei Darussalam</standard>
  2806. </long>
  2807. </metazone>
  2808. <metazone type="Cape_Verde">
  2809. <long>
  2810. <generic>Hora de Cap Verd</generic>
  2811. <standard>Hora estàndard de Cap Verd</standard>
  2812. <daylight>Hora d'estiu de Cap Verd</daylight>
  2813. </long>
  2814. </metazone>
  2815. <metazone type="Chamorro">
  2816. <long>
  2817. <standard draft="provisional">Hora de Chamorro</standard>
  2818. </long>
  2819. </metazone>
  2820. <metazone type="Chatham">
  2821. <long>
  2822. <generic>Hora de Chatham</generic>
  2823. <standard>Hora estàndard de Chatham</standard>
  2824. <daylight>Hora d'estiu de Chatham</daylight>
  2825. </long>
  2826. </metazone>
  2827. <metazone type="Chile">
  2828. <long>
  2829. <generic>Hora de Xile</generic>
  2830. <standard>Hora estàndard de Xile</standard>
  2831. <daylight>Hora d'estiu de Xile</daylight>
  2832. </long>
  2833. </metazone>
  2834. <metazone type="China">
  2835. <long>
  2836. <generic>Hora de la Xina</generic>
  2837. <standard>Hora estàndard de la Xina</standard>
  2838. <daylight>Hora d'estiu de la Xina</daylight>
  2839. </long>
  2840. </metazone>
  2841. <metazone type="Choibalsan">
  2842. <long>
  2843. <generic>Hora de Choibalsan</generic>
  2844. <standard>Hora estàndard de Choibalsan</standard>
  2845. <daylight>Horari d'estiu de Choibalsan</daylight>
  2846. </long>
  2847. </metazone>
  2848. <metazone type="Christmas">
  2849. <long>
  2850. <standard draft="provisional">Hora de Kiritimati</standard>
  2851. </long>
  2852. </metazone>
  2853. <metazone type="Cocos">
  2854. <long>
  2855. <standard>Hora de les illes Cocos</standard>
  2856. </long>
  2857. </metazone>
  2858. <metazone type="Colombia">
  2859. <long>
  2860. <generic>Hora de Colòmbia</generic>
  2861. <standard>Hora estàndard de Colòmbia</standard>
  2862. <daylight>Hora d'estiu de Colòmbia</daylight>
  2863. </long>
  2864. </metazone>
  2865. <metazone type="Cook">
  2866. <long>
  2867. <generic>Hora de les illes Cook</generic>
  2868. <standard>Hora estàndard de les illes Cook</standard>
  2869. <daylight>Horari de mig estiu de les illes Cook</daylight>
  2870. </long>
  2871. </metazone>
  2872. <metazone type="Cuba">
  2873. <long>
  2874. <generic>Hora de Cuba</generic>
  2875. <standard>Hora estàndard de Cuba</standard>
  2876. <daylight>Hora d'estiu de Cuba</daylight>
  2877. </long>
  2878. </metazone>
  2879. <metazone type="Davis">
  2880. <long>
  2881. <standard>Hora de Davis</standard>
  2882. </long>
  2883. </metazone>
  2884. <metazone type="DumontDUrville">
  2885. <long>
  2886. <standard draft="provisional">Hora de Dumont-d'Urville</standard>
  2887. </long>
  2888. </metazone>
  2889. <metazone type="East_Timor">
  2890. <long>
  2891. <standard draft="provisional">Hora de Timor Oriental</standard>
  2892. </long>
  2893. </metazone>
  2894. <metazone type="Easter">
  2895. <long>
  2896. <generic draft="provisional">Hora de l'illa de Pasqua</generic>
  2897. <standard draft="provisional">Hora estàndard de l'illa de Pasqua</standard>
  2898. <daylight draft="provisional">Hora d'estiu de l'illa de Pasqua</daylight>
  2899. </long>
  2900. </metazone>
  2901. <metazone type="Ecuador">
  2902. <long>
  2903. <standard draft="provisional">Hora d'Equador</standard>
  2904. </long>
  2905. </metazone>
  2906. <metazone type="Europe_Central">
  2907. <long>
  2908. <generic>Hora del Centre d'Europa</generic>
  2909. <standard>Hora estàndard del Centre d'Europa</standard>
  2910. <daylight>Hora d'estiu del Centre d'Europa</daylight>
  2911. </long>
  2912. </metazone>
  2913. <metazone type="Europe_Eastern">
  2914. <long>
  2915. <generic>Hora de l'Est d'Europa</generic>
  2916. <standard>Hora estàndard de l'Est d'Europa</standard>
  2917. <daylight>Hora d'estiu de l'Est d'Europa</daylight>
  2918. </long>
  2919. </metazone>
  2920. <metazone type="Europe_Western">
  2921. <long>
  2922. <generic>Hora de l'Oest d'Europa</generic>
  2923. <standard>Hora estàndard de l'Oest d'Europa</standard>
  2924. <daylight>Hora d'estiu de l'Oest d'Europa</daylight>
  2925. </long>
  2926. </metazone>
  2927. <metazone type="Falkland">
  2928. <long>
  2929. <generic>Hora de les illes Malvines</generic>
  2930. <standard>Hora estàndard de les illes Malvines</standard>
  2931. <daylight>Hora d'estiu de les illes Malvines</daylight>
  2932. </long>
  2933. </metazone>
  2934. <metazone type="Fiji">
  2935. <long>
  2936. <generic>Hora de Fiji</generic>
  2937. <standard>Hora estàndard de Fiji</standard>
  2938. <daylight>Hora d'estiu de Fiji</daylight>
  2939. </long>
  2940. </metazone>
  2941. <metazone type="French_Guiana">
  2942. <long>
  2943. <standard draft="provisional">Hora d'estiu de la Guaiana Francesa</standard>
  2944. </long>
  2945. </metazone>
  2946. <metazone type="French_Southern">
  2947. <long>
  2948. <standard draft="provisional">Hora d'Antàrtida i França del Sud</standard>
  2949. </long>
  2950. </metazone>
  2951. <metazone type="Galapagos">
  2952. <long>
  2953. <standard draft="provisional">Hora de Galápagos</standard>
  2954. </long>
  2955. </metazone>
  2956. <metazone type="Gambier">
  2957. <long>
  2958. <standard>Hora de Gambier</standard>
  2959. </long>
  2960. </metazone>
  2961. <metazone type="Georgia">
  2962. <long>
  2963. <generic>Hora de Geòrgia</generic>
  2964. <standard>Hora estàndard de Geòrgia</standard>
  2965. <daylight>Hora d'estiu de Geòrgia</daylight>
  2966. </long>
  2967. </metazone>
  2968. <metazone type="Gilbert_Islands">
  2969. <long>
  2970. <standard draft="provisional">Hora de les illes Gilbert</standard>
  2971. </long>
  2972. </metazone>
  2973. <metazone type="GMT">
  2974. <long>
  2975. <standard>Hora del Meridià de Greenwich</standard>
  2976. </long>
  2977. </metazone>
  2978. <metazone type="Greenland_Eastern">
  2979. <long>
  2980. <generic>Hora de l'Est de Grenlàndia</generic>
  2981. <standard>Hora estàndard de l'Est de Grenlàndia</standard>
  2982. <daylight>Hora d'estiu de l'Est de Grenlàndia</daylight>
  2983. </long>
  2984. </metazone>
  2985. <metazone type="Greenland_Western">
  2986. <long>
  2987. <generic>Hora de l'Oest de Grenlàndia</generic>
  2988. <standard>Hora estàndard de l'Oest de Grenlàndia</standard>
  2989. <daylight>Hora d'estiu de l'Oest de Grenlàndia</daylight>
  2990. </long>
  2991. </metazone>
  2992. <metazone type="Gulf">
  2993. <long>
  2994. <standard draft="provisional">Hora de Gulf</standard>
  2995. </long>
  2996. </metazone>
  2997. <metazone type="Guyana">
  2998. <long>
  2999. <standard>Hora de Guyana</standard>
  3000. </long>
  3001. </metazone>
  3002. <metazone type="Hawaii_Aleutian">
  3003. <long>
  3004. <generic>Hora de Hawaii-Aleutianes</generic>
  3005. <standard>Hora estàndard de Hawaii-Aleutianes</standard>
  3006. <daylight>Hora d'estiu de Hawaii-Aleutianes</daylight>
  3007. </long>
  3008. </metazone>
  3009. <metazone type="Hong_Kong">
  3010. <long>
  3011. <generic>Hora de Hong Kong</generic>
  3012. <standard>Hora estàndard de Hong Kong</standard>
  3013. <daylight>Hora d'estiu de Hong Kong</daylight>
  3014. </long>
  3015. </metazone>
  3016. <metazone type="Hovd">
  3017. <long>
  3018. <generic>Hora de Hovd</generic>
  3019. <standard>Hora estàndard de Hovd</standard>
  3020. <daylight>Horari d'estiu de Hovd</daylight>
  3021. </long>
  3022. </metazone>
  3023. <metazone type="India">
  3024. <long>
  3025. <standard>Hora estàndard de l'Índia</standard>
  3026. </long>
  3027. </metazone>
  3028. <metazone type="Indian_Ocean">
  3029. <long>
  3030. <standard draft="provisional">Hora de l'oceà Índic</standard>
  3031. </long>
  3032. </metazone>
  3033. <metazone type="Indochina">
  3034. <long>
  3035. <standard>Hora d'Indoxina</standard>
  3036. </long>
  3037. </metazone>
  3038. <metazone type="Indonesia_Central">
  3039. <long>
  3040. <standard>Hora d'Indonèsia Central</standard>
  3041. </long>
  3042. </metazone>
  3043. <metazone type="Indonesia_Eastern">
  3044. <long>
  3045. <standard>Hora de l'est d'Indonèsia</standard>
  3046. </long>
  3047. </metazone>
  3048. <metazone type="Indonesia_Western">
  3049. <long>
  3050. <standard>Hora de l'oest d'Indonèsia</standard>
  3051. </long>
  3052. </metazone>
  3053. <metazone type="Iran">
  3054. <long>
  3055. <generic draft="provisional">Hora d'Iran</generic>
  3056. <standard draft="provisional">Hora estàndard d'Iran</standard>
  3057. <daylight draft="provisional">Hora d'estiu d'Iran</daylight>
  3058. </long>
  3059. </metazone>
  3060. <metazone type="Irkutsk">
  3061. <long>
  3062. <generic draft="contributed">Hora d'Irkutsk</generic>
  3063. <standard draft="contributed">Hora estàndard d'Irkutsk</standard>
  3064. <daylight draft="contributed">Horari d'estiu d'Irkutsk</daylight>
  3065. </long>
  3066. </metazone>
  3067. <metazone type="Israel">
  3068. <long>
  3069. <generic>Hora d'Israel</generic>
  3070. <standard>Hora estàndard d'Israel</standard>
  3071. <daylight>Hora d'estiu d'Israel</daylight>
  3072. </long>
  3073. </metazone>
  3074. <metazone type="Japan">
  3075. <long>
  3076. <generic>Hora del Japó</generic>
  3077. <standard>Hora estàndard del Japó</standard>
  3078. <daylight>Hora d'estiu del Japó</daylight>
  3079. </long>
  3080. </metazone>
  3081. <metazone type="Kamchatka">
  3082. <long>
  3083. <generic draft="contributed">Hora de Kamtxatka</generic>
  3084. <standard draft="contributed">Hora estàndard de Petropavlovsk de Kamtxatka</standard>
  3085. <daylight draft="contributed">Horari d'estiu de Petropavlovsk de Kamtxatka</daylight>
  3086. </long>
  3087. </metazone>
  3088. <metazone type="Kazakhstan_Eastern">
  3089. <long>
  3090. <standard>Hora de l'est del Kazakhstan</standard>
  3091. </long>
  3092. </metazone>
  3093. <metazone type="Kazakhstan_Western">
  3094. <long>
  3095. <standard>Hora de l'oest del Kazakhstan</standard>
  3096. </long>
  3097. </metazone>
  3098. <metazone type="Korea">
  3099. <long>
  3100. <generic>Hora de Corea</generic>
  3101. <standard>Hora estàndard de Corea</standard>
  3102. <daylight>Hora d'estiu de Corea</daylight>
  3103. </long>
  3104. </metazone>
  3105. <metazone type="Kosrae">
  3106. <long>
  3107. <standard>Hora de Kosrae</standard>
  3108. </long>
  3109. </metazone>
  3110. <metazone type="Krasnoyarsk">
  3111. <long>
  3112. <generic draft="contributed">Hora de Krasnoiarsk</generic>
  3113. <standard draft="contributed">Hora estàndard de Krasnoiarsk</standard>
  3114. <daylight draft="contributed">Horari d'estiu de Krasnoiarsk</daylight>
  3115. </long>
  3116. </metazone>
  3117. <metazone type="Kyrgystan">
  3118. <long>
  3119. <standard>Hora del Kirguizistan</standard>
  3120. </long>
  3121. </metazone>
  3122. <metazone type="Line_Islands">
  3123. <long>
  3124. <standard>Hora de Line Islands</standard>
  3125. </long>
  3126. </metazone>
  3127. <metazone type="Lord_Howe">
  3128. <long>
  3129. <generic draft="contributed">Hora de Lord Howe</generic>
  3130. <standard draft="contributed">Hora estàndard de Lord Howe</standard>
  3131. <daylight draft="contributed">Horari d'estiu de Lord Howe</daylight>
  3132. </long>
  3133. </metazone>
  3134. <metazone type="Macquarie">
  3135. <long>
  3136. <standard>Hora de Macquarie</standard>
  3137. </long>
  3138. </metazone>
  3139. <metazone type="Magadan">
  3140. <long>
  3141. <generic draft="contributed">Hora de Magadan</generic>
  3142. <standard draft="contributed">Hora estàndard de Magadan</standard>
  3143. <daylight draft="contributed">Horari d'estiu de Magadan</daylight>
  3144. </long>
  3145. </metazone>
  3146. <metazone type="Malaysia">
  3147. <long>
  3148. <standard>Hora de Malàisia</standard>
  3149. </long>
  3150. </metazone>
  3151. <metazone type="Maldives">
  3152. <long>
  3153. <standard>Hora de Maldives</standard>
  3154. </long>
  3155. </metazone>
  3156. <metazone type="Marquesas">
  3157. <long>
  3158. <standard draft="contributed">Hora de les Marqueses</standard>
  3159. </long>
  3160. </metazone>
  3161. <metazone type="Marshall_Islands">
  3162. <long>
  3163. <standard>Hora de les illes Marshall</standard>
  3164. </long>
  3165. </metazone>
  3166. <metazone type="Mauritius">
  3167. <long>
  3168. <generic>Hora de Maurici</generic>
  3169. <standard>Hora estàndard de Maurici</standard>
  3170. <daylight>Hora d'estiu de Maurici</daylight>
  3171. </long>
  3172. </metazone>
  3173. <metazone type="Mawson">
  3174. <long>
  3175. <standard>Hora de Mawson</standard>
  3176. </long>
  3177. </metazone>
  3178. <metazone type="Mongolia">
  3179. <long>
  3180. <generic draft="contributed">Hora d'Ulan Bator</generic>
  3181. <standard draft="contributed">Hora estàndard d'Ulan Bator</standard>
  3182. <daylight draft="contributed">Horari d'estiu d'Ulan Bator</daylight>
  3183. </long>
  3184. </metazone>
  3185. <metazone type="Moscow">
  3186. <long>
  3187. <generic>Hora de Moscou</generic>
  3188. <standard>Hora estàndard de Moscou</standard>
  3189. <daylight>Hora d'estiu de Moscou</daylight>
  3190. </long>
  3191. </metazone>
  3192. <metazone type="Myanmar">
  3193. <long>
  3194. <standard>Hora de Myanmar</standard>
  3195. </long>
  3196. </metazone>
  3197. <metazone type="Nauru">
  3198. <long>
  3199. <standard>Hora de Nauru</standard>
  3200. </long>
  3201. </metazone>
  3202. <metazone type="Nepal">
  3203. <long>
  3204. <standard>Hora del Nepal</standard>
  3205. </long>
  3206. </metazone>
  3207. <metazone type="New_Caledonia">
  3208. <long>
  3209. <generic>Hora de Nova Caledònia</generic>
  3210. <standard>Hora estàndard de Nova Caledònia</standard>
  3211. <daylight>Hora d'estiu de Nova Caledònia</daylight>
  3212. </long>
  3213. </metazone>
  3214. <metazone type="New_Zealand">
  3215. <long>
  3216. <generic>Hora de Nova Zelanda</generic>
  3217. <standard>Hora estàndard de Nova Zelanda</standard>
  3218. <daylight>Hora d'estiu de Nova Zelanda</daylight>
  3219. </long>
  3220. </metazone>
  3221. <metazone type="Newfoundland">
  3222. <long>
  3223. <generic draft="contributed">Hora de Terranova</generic>
  3224. <standard draft="contributed">Hora estàndard de Terranova</standard>
  3225. <daylight draft="contributed">Horari d'estiu de Terranova</daylight>
  3226. </long>
  3227. </metazone>
  3228. <metazone type="Niue">
  3229. <long>
  3230. <standard>Hora de Niue</standard>
  3231. </long>
  3232. </metazone>
  3233. <metazone type="Norfolk">
  3234. <long>
  3235. <standard draft="provisional">Hora de les illes Norfolk</standard>
  3236. </long>
  3237. </metazone>
  3238. <metazone type="Noronha">
  3239. <long>
  3240. <generic>Hora de Fernando de Noronha</generic>
  3241. <standard>Hora estàndard de Fernando de Noronha</standard>
  3242. <daylight>Horari d'estiu de Fernando de Noronha</daylight>
  3243. </long>
  3244. </metazone>
  3245. <metazone type="Novosibirsk">
  3246. <long>
  3247. <generic draft="contributed">Hora de Novosibirsk</generic>
  3248. <standard draft="contributed">Hora estàndard de Novosibirsk</standard>
  3249. <daylight draft="contributed">Horari d'estiu de Novosibirsk</daylight>
  3250. </long>
  3251. </metazone>
  3252. <metazone type="Omsk">
  3253. <long>
  3254. <generic draft="contributed">Hora d'Omsk</generic>
  3255. <standard draft="contributed">Hora estàndard d'Omsk</standard>
  3256. <daylight draft="contributed">Horari d'estiu d'Omsk</daylight>
  3257. </long>
  3258. </metazone>
  3259. <metazone type="Pakistan">
  3260. <long>
  3261. <generic>Hora del Pakistan</generic>
  3262. <standard>Hora estàndard del Pakistan</standard>
  3263. <daylight>Hora d'estiu del Pakistan</daylight>
  3264. </long>
  3265. </metazone>
  3266. <metazone type="Palau">
  3267. <long>
  3268. <standard>Hora de Palau</standard>
  3269. </long>
  3270. </metazone>
  3271. <metazone type="Papua_New_Guinea">
  3272. <long>
  3273. <standard>Hora de Papua Nova Guinea</standard>
  3274. </long>
  3275. </metazone>
  3276. <metazone type="Paraguay">
  3277. <long>
  3278. <generic>Hora del Paraguai</generic>
  3279. <standard>Hora estàndard del Paraguai</standard>
  3280. <daylight>Hora d'estiu del Paraguai</daylight>
  3281. </long>
  3282. </metazone>
  3283. <metazone type="Peru">
  3284. <long>
  3285. <generic>Hora del Perú</generic>
  3286. <standard>Hora estàndard del Perú</standard>
  3287. <daylight>Hora d'estiu del Perú</daylight>
  3288. </long>
  3289. </metazone>
  3290. <metazone type="Philippines">
  3291. <long>
  3292. <generic draft="provisional">Hora de Filipines</generic>
  3293. <standard draft="provisional">Hora estàndard de Filipines</standard>
  3294. <daylight draft="provisional">Hora d'estiu de Filipines</daylight>
  3295. </long>
  3296. </metazone>
  3297. <metazone type="Phoenix_Islands">
  3298. <long>
  3299. <standard draft="provisional">Hora de les illes Phoenix</standard>
  3300. </long>
  3301. </metazone>
  3302. <metazone type="Pierre_Miquelon">
  3303. <long>
  3304. <generic draft="provisional">Hora de Saint-Pierre i Miquelon</generic>
  3305. <standard draft="provisional">Hora estàndard de Saint-Pierre i Miquelon</standard>
  3306. <daylight draft="provisional">Hora d'estiu de Saint-Pierre i Miquelon</daylight>
  3307. </long>
  3308. </metazone>
  3309. <metazone type="Pitcairn">
  3310. <long>
  3311. <standard>Hora de Pitcairn</standard>
  3312. </long>
  3313. </metazone>
  3314. <metazone type="Ponape">
  3315. <long>
  3316. <standard>Hora de Ponape</standard>
  3317. </long>
  3318. </metazone>
  3319. <metazone type="Reunion">
  3320. <long>
  3321. <standard>Hora de Reunió</standard>
  3322. </long>
  3323. </metazone>
  3324. <metazone type="Rothera">
  3325. <long>
  3326. <standard>Hora de Rothera</standard>
  3327. </long>
  3328. </metazone>
  3329. <metazone type="Sakhalin">
  3330. <long>
  3331. <generic draft="contributed">Hora de Sakhalin</generic>
  3332. <standard draft="contributed">Hora estàndard de Sakhalin</standard>
  3333. <daylight draft="contributed">Horari d'estiu de Sakhalin</daylight>
  3334. </long>
  3335. </metazone>
  3336. <metazone type="Samara">
  3337. <long>
  3338. <generic>Hora de Samara</generic>
  3339. <standard>Hora estàndard de Samara</standard>
  3340. <daylight>Hora d'estiu de Samara</daylight>
  3341. </long>
  3342. </metazone>
  3343. <metazone type="Samoa">
  3344. <long>
  3345. <generic>Hora de Samoa</generic>
  3346. <standard>Hora estàndard de Samoa</standard>
  3347. <daylight>Hora d'estiu de Samoa</daylight>
  3348. </long>
  3349. </metazone>
  3350. <metazone type="Seychelles">
  3351. <long>
  3352. <standard>Hora de les Seychelles</standard>
  3353. </long>
  3354. </metazone>
  3355. <metazone type="Singapore">
  3356. <long>
  3357. <standard draft="provisional">Hora de Singapur</standard>
  3358. </long>
  3359. </metazone>
  3360. <metazone type="Solomon">
  3361. <long>
  3362. <standard>Hora de Salomó</standard>
  3363. </long>
  3364. </metazone>
  3365. <metazone type="South_Georgia">
  3366. <long>
  3367. <standard>Hora de Geòrgia del Sud</standard>
  3368. </long>
  3369. </metazone>
  3370. <metazone type="Suriname">
  3371. <long>
  3372. <standard>Hora de Surinam</standard>
  3373. </long>
  3374. </metazone>
  3375. <metazone type="Syowa">
  3376. <long>
  3377. <standard>Hora de Syowa</standard>
  3378. </long>
  3379. </metazone>
  3380. <metazone type="Tahiti">
  3381. <long>
  3382. <standard>Hora de Tahití</standard>
  3383. </long>
  3384. </metazone>
  3385. <metazone type="Taipei">
  3386. <long>
  3387. <generic>Hora de Taipei</generic>
  3388. <standard>Hora estàndard de Taipei</standard>
  3389. <daylight>Hora d'estiu de Taipei</daylight>
  3390. </long>
  3391. </metazone>
  3392. <metazone type="Tajikistan">
  3393. <long>
  3394. <standard>Hora del Tadjikistan</standard>
  3395. </long>
  3396. </metazone>
  3397. <metazone type="Tokelau">
  3398. <long>
  3399. <standard>Hora de Tokelau</standard>
  3400. </long>
  3401. </metazone>
  3402. <metazone type="Tonga">
  3403. <long>
  3404. <generic>Hora de Tonga</generic>
  3405. <standard>Hora estàndard de Tonga</standard>
  3406. <daylight>Hora d'estiu de Tonga</daylight>
  3407. </long>
  3408. </metazone>
  3409. <metazone type="Truk">
  3410. <long>
  3411. <standard>Hora de Chuuk</standard>
  3412. </long>
  3413. </metazone>
  3414. <metazone type="Turkmenistan">
  3415. <long>
  3416. <generic>Hora del Turkmenistan</generic>
  3417. <standard>Hora estàndard del Turkmenistan</standard>
  3418. <daylight>Hora d'estiu del Turkmenistan</daylight>
  3419. </long>
  3420. </metazone>
  3421. <metazone type="Tuvalu">
  3422. <long>
  3423. <standard>Hora de Tuvalu</standard>
  3424. </long>
  3425. </metazone>
  3426. <metazone type="Uruguay">
  3427. <long>
  3428. <generic>Hora de l'Uruguai</generic>
  3429. <standard>Hora estàndard de l'Uruguai</standard>
  3430. <daylight>Hora d'estiu de l'Uruguai</daylight>
  3431. </long>
  3432. </metazone>
  3433. <metazone type="Uzbekistan">
  3434. <long>
  3435. <generic>Hora de l'Uzbekistan</generic>
  3436. <standard>Hora estàndard de l'Uzbekistan</standard>
  3437. <daylight>Hora d'estiu de l'Uzbekistan</daylight>
  3438. </long>
  3439. </metazone>
  3440. <metazone type="Vanuatu">
  3441. <long>
  3442. <generic draft="provisional">Hora de Vanatu</generic>
  3443. <standard draft="provisional">Hora estàndard de Vanatu</standard>
  3444. <daylight draft="provisional">Hora d'estiu de Vanatu</daylight>
  3445. </long>
  3446. </metazone>
  3447. <metazone type="Venezuela">
  3448. <long>
  3449. <standard>Hora de Veneçuela</standard>
  3450. </long>
  3451. </metazone>
  3452. <metazone type="Vladivostok">
  3453. <long>
  3454. <generic draft="contributed">Hora de Vladivostok</generic>
  3455. <standard draft="contributed">Hora estàndard de Vladivostok</standard>
  3456. <daylight draft="contributed">Horari d'estiu de Vladivostok</daylight>
  3457. </long>
  3458. </metazone>
  3459. <metazone type="Volgograd">
  3460. <long>
  3461. <generic>Hora de Volgograd</generic>
  3462. <standard>Hora estàndard de Volgograd</standard>
  3463. <daylight>Hora d'estiu de Volgograd</daylight>
  3464. </long>
  3465. </metazone>
  3466. <metazone type="Vostok">
  3467. <long>
  3468. <standard>Hora de Vostok</standard>
  3469. </long>
  3470. </metazone>
  3471. <metazone type="Wake">
  3472. <long>
  3473. <standard>Hora de Wake</standard>
  3474. </long>
  3475. </metazone>
  3476. <metazone type="Wallis">
  3477. <long>
  3478. <standard>Hora de Wallis i Futuna</standard>
  3479. </long>
  3480. </metazone>
  3481. <metazone type="Yakutsk">
  3482. <long>
  3483. <generic draft="contributed">Hora de Iakutsk</generic>
  3484. <standard draft="contributed">Hora estàndard de Iakutsk</standard>
  3485. <daylight draft="contributed">Horari d'estiu de Iakutsk</daylight>
  3486. </long>
  3487. </metazone>
  3488. <metazone type="Yekaterinburg">
  3489. <long>
  3490. <generic draft="contributed">Hora d'Ekaterinburg</generic>
  3491. <standard draft="contributed">Hora estàndard d'Ekaterinburg</standard>
  3492. <daylight draft="contributed">Horari d'estiu d'Ekaterinburg</daylight>
  3493. </long>
  3494. </metazone>
  3495. </timeZoneNames>
  3496. </dates>
  3497. <numbers>
  3498. <symbols numberSystem="latn">
  3499. <decimal>,</decimal>
  3500. <group>.</group>
  3501. <list>;</list>
  3502. <percentSign>%</percentSign>
  3503. <plusSign>+</plusSign>
  3504. <minusSign>-</minusSign>
  3505. <exponential>E</exponential>
  3506. <perMille>‰</perMille>
  3507. <infinity>∞</infinity>
  3508. <nan>NaN</nan>
  3509. </symbols>
  3510. <decimalFormats numberSystem="latn">
  3511. <decimalFormatLength>
  3512. <decimalFormat>
  3513. <pattern>#,##0.###</pattern>
  3514. </decimalFormat>
  3515. </decimalFormatLength>
  3516. <decimalFormatLength type="long">
  3517. <decimalFormat>
  3518. <pattern type="1000" count="one">0 mil</pattern>
  3519. <pattern type="1000" count="other">0 mil</pattern>
  3520. <pattern type="10000" count="one">00 mil</pattern>
  3521. <pattern type="10000" count="other">00 mil</pattern>
  3522. <pattern type="100000" count="one">000 mil</pattern>
  3523. <pattern type="100000" count="other">000 mil</pattern>
  3524. <pattern type="1000000" count="one">0 milió</pattern>
  3525. <pattern type="1000000" count="other">0 milions</pattern>
  3526. <pattern type="10000000" count="one">00 milió</pattern>
  3527. <pattern type="10000000" count="other">00 milions</pattern>
  3528. <pattern type="100000000" count="one">000 milió</pattern>
  3529. <pattern type="100000000" count="other">000 milions</pattern>
  3530. <pattern type="1000000000" count="one">0 miliard</pattern>
  3531. <pattern type="1000000000" count="other">0 miliards</pattern>
  3532. <pattern type="10000000000" count="one">00 miliards</pattern>
  3533. <pattern type="10000000000" count="other">00 miliards</pattern>
  3534. <pattern type="100000000000" count="one">000 miliard</pattern>
  3535. <pattern type="100000000000" count="other">000 miliards</pattern>
  3536. <pattern type="1000000000000" count="one">0 bilions</pattern>
  3537. <pattern type="1000000000000" count="other">0 bilions</pattern>
  3538. <pattern type="10000000000000" count="one">00 bilions</pattern>
  3539. <pattern type="10000000000000" count="other">00 bilions</pattern>
  3540. <pattern type="100000000000000" count="one">000 bilions</pattern>
  3541. <pattern type="100000000000000" count="other">000 bilions</pattern>
  3542. </decimalFormat>
  3543. </decimalFormatLength>
  3544. <decimalFormatLength type="short">
  3545. <decimalFormat>
  3546. <pattern type="1000" count="one">0 K</pattern>
  3547. <pattern type="1000" count="other">0 K</pattern>
  3548. <pattern type="10000" count="one">00 K</pattern>
  3549. <pattern type="10000" count="other">00 K</pattern>
  3550. <pattern type="100000" count="one">000 K</pattern>
  3551. <pattern type="100000" count="other">000 K</pattern>
  3552. <pattern type="1000000" count="one">0 M</pattern>
  3553. <pattern type="1000000" count="other">0 M</pattern>
  3554. <pattern type="10000000" count="one">00 M</pattern>
  3555. <pattern type="10000000" count="other">00 M</pattern>
  3556. <pattern type="100000000" count="one">000 M</pattern>
  3557. <pattern type="100000000" count="other">000 M</pattern>
  3558. <pattern type="1000000000" count="one">0000 M</pattern>
  3559. <pattern type="1000000000" count="other">0000 M</pattern>
  3560. <pattern type="10000000000" count="one">00k M</pattern>
  3561. <pattern type="10000000000" count="other">00k M</pattern>
  3562. <pattern type="100000000000" count="one">000k M</pattern>
  3563. <pattern type="100000000000" count="other">000k M</pattern>
  3564. <pattern type="1000000000000" count="one">0 B</pattern>
  3565. <pattern type="1000000000000" count="other">0 B</pattern>
  3566. <pattern type="10000000000000" count="one">00 B</pattern>
  3567. <pattern type="10000000000000" count="other">00 B</pattern>
  3568. <pattern type="100000000000000" count="one">000 B</pattern>
  3569. <pattern type="100000000000000" count="other">000 B</pattern>
  3570. </decimalFormat>
  3571. </decimalFormatLength>
  3572. </decimalFormats>
  3573. <scientificFormats numberSystem="latn">
  3574. <scientificFormatLength>
  3575. <scientificFormat>
  3576. <pattern>#E0</pattern>
  3577. </scientificFormat>
  3578. </scientificFormatLength>
  3579. </scientificFormats>
  3580. <percentFormats numberSystem="latn">
  3581. <percentFormatLength>
  3582. <percentFormat>
  3583. <pattern>#,##0%</pattern>
  3584. </percentFormat>
  3585. </percentFormatLength>
  3586. </percentFormats>
  3587. <currencyFormats numberSystem="latn">
  3588. <currencyFormatLength>
  3589. <currencyFormat>
  3590. <pattern>¤#,##0.00;(¤#,##0.00)</pattern>
  3591. </currencyFormat>
  3592. </currencyFormatLength>
  3593. <unitPattern count="one">{0} {1}</unitPattern>
  3594. <unitPattern count="other">{0} {1}</unitPattern>
  3595. </currencyFormats>
  3596. <currencies>
  3597. <currency type="ADP">
  3598. <displayName>pesseta andorrana</displayName>
  3599. <displayName count="one">pesseta andorrana</displayName>
  3600. <displayName count="other">pessetes andorranes</displayName>
  3601. </currency>
  3602. <currency type="AED">
  3603. <displayName>dirhem dels Emirats Àrabs Units</displayName>
  3604. <displayName count="one">dirhem dels Emirats Àrabs Units</displayName>
  3605. <displayName count="other">dirhems dels Emirats Àrabs Units</displayName>
  3606. </currency>
  3607. <currency type="AFA">
  3608. <displayName>afgani afganès (1927-2002)</displayName>
  3609. <displayName count="one">afgani afganès (1927-2002)</displayName>
  3610. <displayName count="other">afganis afganesos (1927-2002)</displayName>
  3611. </currency>
  3612. <currency type="AFN">
  3613. <displayName>afgani afganès</displayName>
  3614. <displayName count="one">afgani afganès</displayName>
  3615. <displayName count="other">afganis afganesos</displayName>
  3616. </currency>
  3617. <currency type="ALK">
  3618. <displayName>lek albanès (1946-1965)</displayName>
  3619. <displayName count="one">lek albanès (1946-1965)</displayName>
  3620. <displayName count="other">lekë albanesos (1946-1965)</displayName>
  3621. </currency>
  3622. <currency type="ALL">
  3623. <displayName>lek albanès</displayName>
  3624. <displayName count="one">lek albanès</displayName>
  3625. <displayName count="other">lekë albanesos</displayName>
  3626. </currency>
  3627. <currency type="AMD">
  3628. <displayName>dram armeni</displayName>
  3629. <displayName count="one">dram armeni</displayName>
  3630. <displayName count="other">drams armenis</displayName>
  3631. </currency>
  3632. <currency type="ANG">
  3633. <displayName>florí de les Antilles Neerlandeses</displayName>
  3634. <displayName count="one">florí de les Antilles Neerlandeses</displayName>
  3635. <displayName count="other">florins de les Antilles Neerlandeses</displayName>
  3636. </currency>
  3637. <currency type="AOA">
  3638. <displayName>kwanza angolès</displayName>
  3639. <displayName count="one">kwanza angolès</displayName>
  3640. <displayName count="other">kwanzas angolesos</displayName>
  3641. </currency>
  3642. <currency type="AOK">
  3643. <displayName>kwanza angolès (1977-1991)</displayName>
  3644. <displayName count="one">kwanza angolès (1977-1991)</displayName>
  3645. <displayName count="other">kwanzas angolesos (1977-1991)</displayName>
  3646. </currency>
  3647. <currency type="AON">
  3648. <displayName>nou kwanza angolès (1990-2000)</displayName>
  3649. <displayName count="one">nou kwanza angolès (1990-2000)</displayName>
  3650. <displayName count="other">nous kwanzas angolesos (1990-2000)</displayName>
  3651. </currency>
  3652. <currency type="AOR">
  3653. <displayName>kwanza angolès reajustat (1995-1999)</displayName>
  3654. <displayName count="one">kwanza angolès reajustat (1995-1999)</displayName>
  3655. <displayName count="other">kwanzas angolesos (1995-1999)</displayName>
  3656. </currency>
  3657. <currency type="ARA">
  3658. <displayName>austral argentí</displayName>
  3659. <displayName count="one">austral argentí</displayName>
  3660. <displayName count="other">australs argentins</displayName>
  3661. </currency>
  3662. <currency type="ARL">
  3663. <displayName>peso ley argentí (1970-1983)</displayName>
  3664. <displayName count="one">peso ley argentí (1970-1983)</displayName>
  3665. <displayName count="other">pesos ley argentins (1970-1983)</displayName>
  3666. </currency>
  3667. <currency type="ARM">
  3668. <displayName draft="contributed">peso argentí (1981-1970)</displayName>
  3669. <displayName count="one" draft="contributed">peso argentí moneda nacional</displayName>
  3670. <displayName count="other" draft="contributed">pesos argentins moneda nacional</displayName>
  3671. </currency>
  3672. <currency type="ARP">
  3673. <displayName>peso argentí (1983-1985)</displayName>
  3674. <displayName count="one">peso argentí (1983-1985)</displayName>
  3675. <displayName count="other">pesos argentins (1983-1985)</displayName>
  3676. </currency>
  3677. <currency type="ARS">
  3678. <displayName>peso argentí</displayName>
  3679. <displayName count="one">peso argentí</displayName>
  3680. <displayName count="other">pesos argentins</displayName>
  3681. </currency>
  3682. <currency type="ATS">
  3683. <displayName>xíling austríac</displayName>
  3684. <displayName count="one">xíling austríac</displayName>
  3685. <displayName count="other">xílings austríacs</displayName>
  3686. </currency>
  3687. <currency type="AUD">
  3688. <displayName>dòlar australià</displayName>
  3689. <displayName count="one">dòlar australià</displayName>
  3690. <displayName count="other">dòlars australians</displayName>
  3691. <symbol draft="contributed">AU$</symbol>
  3692. </currency>
  3693. <currency type="AWG">
  3694. <displayName>florí d'Aruba</displayName>
  3695. <displayName count="one">florí d'Aruba</displayName>
  3696. <displayName count="other">florins d'Aruba</displayName>
  3697. </currency>
  3698. <currency type="AZM">
  3699. <displayName>manat azerbaidjanès (1993-2006)</displayName>
  3700. <displayName count="one">manat azerbaidjanès (1993-2006)</displayName>
  3701. <displayName count="other">manats azerbaidjanesos (1993-2006)</displayName>
  3702. </currency>
  3703. <currency type="AZN">
  3704. <displayName>manat azerbaidjanès</displayName>
  3705. <displayName count="one">manat azerbaidjanès</displayName>
  3706. <displayName count="other">manats azerbaidjanesos</displayName>
  3707. </currency>
  3708. <currency type="BAD">
  3709. <displayName>dinar de Bòsnia i Hercegovina (1992-1994)</displayName>
  3710. <displayName count="one">dinar de Bòsnia i Hercegovina (1992-1994)</displayName>
  3711. <displayName count="other">dinars de Bòsnia i Hercegovina (1992-1994)</displayName>
  3712. </currency>
  3713. <currency type="BAM">
  3714. <displayName>marc convertible de Bòsnia i Hercegovina</displayName>
  3715. <displayName count="one">marc convertible de Bòsnia i Hercegovina</displayName>
  3716. <displayName count="other">marcs convertibles de Bòsnia i Hercegovina</displayName>
  3717. </currency>
  3718. <currency type="BAN">
  3719. <displayName>nou dinar de Bòsnia i Hercegovina (1994-1997)</displayName>
  3720. <displayName count="one">nou dinar de Bòsnia i Hercegovina (1994-1997)</displayName>
  3721. <displayName count="other">nous dinars de Bòsnia i Hercegovina (1994-1997)</displayName>
  3722. </currency>
  3723. <currency type="BBD">
  3724. <displayName>dòlar de Barbados</displayName>
  3725. <displayName count="one">dòlar de Barbados</displayName>
  3726. <displayName count="other">dòlars de Barbados</displayName>
  3727. </currency>
  3728. <currency type="BDT">
  3729. <displayName>taka de Bangla Desh</displayName>
  3730. <displayName count="one">taka de Bangla Desh</displayName>
  3731. <displayName count="other">taka de Bangla Desh</displayName>
  3732. </currency>
  3733. <currency type="BEC">
  3734. <displayName>franc belga (convertible)</displayName>
  3735. <displayName count="one">franc belga (convertible)</displayName>
  3736. <displayName count="other">francs belgues (convertibles)</displayName>
  3737. </currency>
  3738. <currency type="BEF">
  3739. <displayName>franc belga</displayName>
  3740. <displayName count="one">franc belga</displayName>
  3741. <displayName count="other">francs belgues</displayName>
  3742. </currency>
  3743. <currency type="BEL">
  3744. <displayName>franc belga (financer)</displayName>
  3745. <displayName count="one">franc belga (financer)</displayName>
  3746. <displayName count="other">francs belgues (financers)</displayName>
  3747. </currency>
  3748. <currency type="BGL">
  3749. <displayName>lev fort búlgar</displayName>
  3750. <displayName count="one">lev fort búlgar</displayName>
  3751. <displayName count="other">leva forts búlgars</displayName>
  3752. </currency>
  3753. <currency type="BGM">
  3754. <displayName>lev socialista búlgar</displayName>
  3755. <displayName count="one">lev socialista búlgar</displayName>
  3756. <displayName count="other">leva socialistes búlgars</displayName>
  3757. </currency>
  3758. <currency type="BGN">
  3759. <displayName>lev búlgar</displayName>
  3760. <displayName count="one">lev búlgar</displayName>
  3761. <displayName count="other">leva búlgars</displayName>
  3762. </currency>
  3763. <currency type="BGO">
  3764. <displayName>lev búlgar (1879-1952)</displayName>
  3765. <displayName count="one">lev búlgar (1879-1952)</displayName>
  3766. <displayName count="other">leva búlgars (1879-1952)</displayName>
  3767. </currency>
  3768. <currency type="BHD">
  3769. <displayName>dinar de Bahrain</displayName>
  3770. <displayName count="one">dinar de Bahrain</displayName>
  3771. <displayName count="other">dinars de Bahrain</displayName>
  3772. </currency>
  3773. <currency type="BIF">
  3774. <displayName>franc de Burundi</displayName>
  3775. <displayName count="one">franc de Burundi</displayName>
  3776. <displayName count="other">francs de Burundi</displayName>
  3777. </currency>
  3778. <currency type="BMD">
  3779. <displayName>dòlar de les Bermudes</displayName>
  3780. <displayName count="one">dòlar de les Bermudes</displayName>
  3781. <displayName count="other">dòlars de les Bermudes</displayName>
  3782. </currency>
  3783. <currency type="BND">
  3784. <displayName>dòlar de Brunei</displayName>
  3785. <displayName count="one">dòlar de Brunei</displayName>
  3786. <displayName count="other">dòlars de Brunei</displayName>
  3787. </currency>
  3788. <currency type="BOB">
  3789. <displayName>boliviano bolivià</displayName>
  3790. <displayName count="one">boliviano bolivià</displayName>
  3791. <displayName count="other">bolivianos bolivians</displayName>
  3792. </currency>
  3793. <currency type="BOL">
  3794. <displayName>boliviano bolivià (1863-1963)</displayName>
  3795. <displayName count="one">boliviano bolivià (1863-1963)</displayName>
  3796. <displayName count="other">bolivianos bolivians (1863-1963)</displayName>
  3797. </currency>
  3798. <currency type="BOP">
  3799. <displayName>peso bolivià</displayName>
  3800. <displayName count="one">peso bolivià</displayName>
  3801. <displayName count="other">pesos bolivians</displayName>
  3802. </currency>
  3803. <currency type="BOV">
  3804. <displayName>MVDOL bolivià</displayName>
  3805. <displayName count="one">MVDOL bolivià</displayName>
  3806. <displayName count="other">MVDOL bolivians</displayName>
  3807. </currency>
  3808. <currency type="BRB">
  3809. <displayName>cruzeiro novo brasiler (1967-1986)</displayName>
  3810. <displayName count="one">cruzeiro novo brasiler (1967-1986)</displayName>
  3811. <displayName count="other">cruzeiros novos brasilers (1967-1986)</displayName>
  3812. </currency>
  3813. <currency type="BRC">
  3814. <displayName>cruzado brasiler</displayName>
  3815. <displayName count="one">cruzado brasiler</displayName>
  3816. <displayName count="other">cruzados brasilers</displayName>
  3817. </currency>
  3818. <currency type="BRE">
  3819. <displayName>cruzeiro brasiler (1990-1993)</displayName>
  3820. <displayName count="one">cruzeiro brasiler (1990-1993)</displayName>
  3821. <displayName count="other">cruzeiros brasilers (1990-1993)</displayName>
  3822. </currency>
  3823. <currency type="BRL">
  3824. <displayName>real brasiler</displayName>
  3825. <displayName count="one">real brasiler</displayName>
  3826. <displayName count="other">reais brasilers</displayName>
  3827. <symbol draft="contributed">BRL</symbol>
  3828. </currency>
  3829. <currency type="BRN">
  3830. <displayName>cruzado novo brasiler</displayName>
  3831. <displayName count="one">cruzado novo brasiler</displayName>
  3832. <displayName count="other">cruzados novos brasilers</displayName>
  3833. </currency>
  3834. <currency type="BRR">
  3835. <displayName>cruzeiro brasiler</displayName>
  3836. <displayName count="one">cruzeiro brasiler</displayName>
  3837. <displayName count="other">cruzeiros brasilers</displayName>
  3838. </currency>
  3839. <currency type="BRZ">
  3840. <displayName draft="contributed">antic cruzeiro brasiler</displayName>
  3841. <displayName count="one" draft="contributed">antic cruzeiro brasiler</displayName>
  3842. <displayName count="other" draft="contributed">antics cruzeiros brasilers</displayName>
  3843. </currency>
  3844. <currency type="BSD">
  3845. <displayName>dòlar de les Bahames</displayName>
  3846. <displayName count="one">dòlar de les Bahames</displayName>
  3847. <displayName count="other">dòlars de les Bahames</displayName>
  3848. </currency>
  3849. <currency type="BTN">
  3850. <displayName>ngultrum de Bhutan</displayName>
  3851. <displayName count="one">ngultrum de Bhutan</displayName>
  3852. <displayName count="other">ngultrums de Bhutan</displayName>
  3853. </currency>
  3854. <currency type="BUK">
  3855. <displayName>kyat birmà</displayName>
  3856. <displayName count="one">kyat birmà</displayName>
  3857. <displayName count="other">kyats birmans</displayName>
  3858. </currency>
  3859. <currency type="BWP">
  3860. <displayName>pula de Botswana</displayName>
  3861. <displayName count="one">pula de Botswana</displayName>
  3862. <displayName count="other">pula de Botswana</displayName>
  3863. </currency>
  3864. <currency type="BYB">
  3865. <displayName>nou ruble bielorús (1994-1999)</displayName>
  3866. <displayName count="one">nou ruble bielorús (1994-1999)</displayName>
  3867. <displayName count="other">nous rubles bielorussos (1994-1999)</displayName>
  3868. </currency>
  3869. <currency type="BYR">
  3870. <displayName>ruble bielorús</displayName>
  3871. <displayName count="one">ruble bielorús</displayName>
  3872. <displayName count="other">rubles bielorussos</displayName>
  3873. </currency>
  3874. <currency type="BZD">
  3875. <displayName>dòlar de Belize</displayName>
  3876. <displayName count="one">dòlar de Belize</displayName>
  3877. <displayName count="other">dòlars de Belize</displayName>
  3878. </currency>
  3879. <currency type="CAD">
  3880. <displayName>dòlar canadenc</displayName>
  3881. <displayName count="one">dòlar canadenc</displayName>
  3882. <displayName count="other">dòlars canadencs</displayName>
  3883. <symbol draft="contributed">CA$</symbol>
  3884. </currency>
  3885. <currency type="CDF">
  3886. <displayName>franc congolès</displayName>
  3887. <displayName count="one">franc congolès</displayName>
  3888. <displayName count="other">francs congolesos</displayName>
  3889. </currency>
  3890. <currency type="CHE">
  3891. <displayName>euro WIR</displayName>
  3892. <displayName count="one">euro WIR</displayName>
  3893. <displayName count="other">euros WIR</displayName>
  3894. </currency>
  3895. <currency type="CHF">
  3896. <displayName>franc suís</displayName>
  3897. <displayName count="one">franc suís</displayName>
  3898. <displayName count="other">francs suïssos</displayName>
  3899. </currency>
  3900. <currency type="CHW">
  3901. <displayName>franc WIR</displayName>
  3902. <displayName count="one">franc WIR</displayName>
  3903. <displayName count="other">francs WIR</displayName>
  3904. </currency>
  3905. <currency type="CLE">
  3906. <displayName draft="contributed">escut xilè</displayName>
  3907. <displayName count="one" draft="contributed">escudo xilè</displayName>
  3908. <displayName count="other" draft="contributed">escudos xilens</displayName>
  3909. </currency>
  3910. <currency type="CLF">
  3911. <displayName>unidad de fomento xilena</displayName>
  3912. <displayName count="one">unidad de fomento xilena</displayName>
  3913. <displayName count="other">unidades de fomento xilenes</displayName>
  3914. </currency>
  3915. <currency type="CLP">
  3916. <displayName>peso xilè</displayName>
  3917. <displayName count="one">peso xilè</displayName>
  3918. <displayName count="other">pesos xilens</displayName>
  3919. </currency>
  3920. <currency type="CNX">
  3921. <displayName count="one" draft="contributed">dòlar del Banc Popular Xinès</displayName>
  3922. <displayName count="other" draft="contributed">dòlars del Banc Popular Xinès</displayName>
  3923. </currency>
  3924. <currency type="CNY">
  3925. <displayName>iuan renmimbi xinès</displayName>
  3926. <displayName count="one">iuan xinès</displayName>
  3927. <displayName count="other">iuan xinesos</displayName>
  3928. <symbol draft="contributed">¥</symbol>
  3929. </currency>
  3930. <currency type="COP">
  3931. <displayName>peso colombià</displayName>
  3932. <displayName count="one">peso colombià</displayName>
  3933. <displayName count="other">pesos colombians</displayName>
  3934. </currency>
  3935. <currency type="COU">
  3936. <displayName>unidad de valor real colombiana</displayName>
  3937. <displayName count="one">unidad de valor real colombiana</displayName>
  3938. <displayName count="other">unidades de valor real colombianes</displayName>
  3939. </currency>
  3940. <currency type="CRC">
  3941. <displayName>colón costa-riqueny</displayName>
  3942. <displayName count="one">colón costa-riqueny</displayName>
  3943. <displayName count="other">colones costa-riquenys</displayName>
  3944. </currency>
  3945. <currency type="CSD">
  3946. <displayName>dinar serbi antic</displayName>
  3947. <displayName count="one">dinar serbi antic</displayName>
  3948. <displayName count="other">dinars serbis antics</displayName>
  3949. </currency>
  3950. <currency type="CSK">
  3951. <displayName>corona forta txecoslovaca</displayName>
  3952. <displayName count="one">corona forta txecoslovaca</displayName>
  3953. <displayName count="other">corones fortes txecoslovaques</displayName>
  3954. </currency>
  3955. <currency type="CUC">
  3956. <displayName>peso convertible cubà</displayName>
  3957. <displayName count="one">peso convertible cubà</displayName>
  3958. <displayName count="other">pesos convertibles cubans</displayName>
  3959. </currency>
  3960. <currency type="CUP">
  3961. <displayName>peso cubà</displayName>
  3962. <displayName count="one">peso cubà</displayName>
  3963. <displayName count="other">pesos cubans</displayName>
  3964. </currency>
  3965. <currency type="CVE">
  3966. <displayName>escut de Cap Verd</displayName>
  3967. <displayName count="one">escut de Cap Verd</displayName>
  3968. <displayName count="other">escuts de Cap Verd</displayName>
  3969. </currency>
  3970. <currency type="CYP">
  3971. <displayName>lliura xipriota</displayName>
  3972. <displayName count="one">lliura xipriota</displayName>
  3973. <displayName count="other">lliures xipriotes</displayName>
  3974. </currency>
  3975. <currency type="CZK">
  3976. <displayName>corona txeca</displayName>
  3977. <displayName count="one">corona txeca</displayName>
  3978. <displayName count="other">corones txeques</displayName>
  3979. </currency>
  3980. <currency type="DDM">
  3981. <displayName>marc de l'Alemanya Oriental</displayName>
  3982. <displayName count="one">marc de l'Alemanya Oriental</displayName>
  3983. <displayName count="other">marcs de l'Alemanya Oriental</displayName>
  3984. </currency>
  3985. <currency type="DEM">
  3986. <displayName>marc alemany</displayName>
  3987. <displayName count="one">marc alemany</displayName>
  3988. <displayName count="other">marcs alemanys</displayName>
  3989. </currency>
  3990. <currency type="DJF">
  3991. <displayName>franc de Djibouti</displayName>
  3992. <displayName count="one">franc de Djibouti</displayName>
  3993. <displayName count="other">francs de Djibouti</displayName>
  3994. </currency>
  3995. <currency type="DKK">
  3996. <displayName>corona danesa</displayName>
  3997. <displayName count="one">corona danesa</displayName>
  3998. <displayName count="other">corones daneses</displayName>
  3999. </currency>
  4000. <currency type="DOP">
  4001. <displayName>peso dominicà</displayName>
  4002. <displayName count="one">peso dominicà</displayName>
  4003. <displayName count="other">pesos dominicans</displayName>
  4004. </currency>
  4005. <currency type="DZD">
  4006. <displayName>dinar algerià</displayName>
  4007. <displayName count="one">dinar algerià</displayName>
  4008. <displayName count="other">dinars algerians</displayName>
  4009. </currency>
  4010. <currency type="ECS">
  4011. <displayName>sucre equatorià</displayName>
  4012. <displayName count="one">sucre equatorià</displayName>
  4013. <displayName count="other">sucres equatorians</displayName>
  4014. </currency>
  4015. <currency type="ECV">
  4016. <displayName>unidad de valor constante (UVC) equatoriana</displayName>
  4017. <displayName count="one">unidad de valor constante (UVC) equatoriana</displayName>
  4018. <displayName count="other">unidades de valor constante (UVC) equatorianes</displayName>
  4019. </currency>
  4020. <currency type="EEK">
  4021. <displayName>corona estoniana</displayName>
  4022. <displayName count="one">corona estoniana</displayName>
  4023. <displayName count="other">corones estonianes</displayName>
  4024. </currency>
  4025. <currency type="EGP">
  4026. <displayName>lliura egípcia</displayName>
  4027. <displayName count="one">lliura egípcia</displayName>
  4028. <displayName count="other">lliures egípcies</displayName>
  4029. </currency>
  4030. <currency type="ERN">
  4031. <displayName>nakfa eritreu</displayName>
  4032. <displayName count="one">nakfa eritreu</displayName>
  4033. <displayName count="other">nakfes eritreus</displayName>
  4034. </currency>
  4035. <currency type="ESA">
  4036. <displayName>pesseta espanyola (compte A)</displayName>
  4037. <displayName count="one">pesseta espanyola (compte A)</displayName>
  4038. <displayName count="other">pessetes espanyoles (compte A)</displayName>
  4039. </currency>
  4040. <currency type="ESB">
  4041. <displayName>pesseta espanyola (compte convertible)</displayName>
  4042. <displayName count="one">pesseta espanyola (compte convertible)</displayName>
  4043. <displayName count="other">pessetes espanyoles (compte convertible)</displayName>
  4044. </currency>
  4045. <currency type="ESP">
  4046. <pattern>¤ #,##0.00</pattern>
  4047. <displayName>pesseta espanyola</displayName>
  4048. <displayName count="one">pesseta espanyola</displayName>
  4049. <displayName count="other">pessetes espanyoles</displayName>
  4050. <symbol>₧</symbol>
  4051. <decimal>,</decimal>
  4052. <group>.</group>
  4053. </currency>
  4054. <currency type="ETB">
  4055. <displayName>birr etíop</displayName>
  4056. <displayName count="one">birr etíop</displayName>
  4057. <displayName count="other">birrs etíops</displayName>
  4058. </currency>
  4059. <currency type="EUR">
  4060. <displayName>euro</displayName>
  4061. <displayName count="one">euro</displayName>
  4062. <displayName count="other">euros</displayName>
  4063. <symbol draft="contributed">€</symbol>
  4064. </currency>
  4065. <currency type="FIM">
  4066. <displayName>marc finlandès</displayName>
  4067. <displayName count="one">marc finlandès</displayName>
  4068. <displayName count="other">marcs finlandesos</displayName>
  4069. </currency>
  4070. <currency type="FJD">
  4071. <displayName>dòlar fijià</displayName>
  4072. <displayName count="one">dòlar fijià</displayName>
  4073. <displayName count="other">dòlars fijians</displayName>
  4074. </currency>
  4075. <currency type="FKP">
  4076. <displayName>lliura de les illes Malvines</displayName>
  4077. <displayName count="one">lliura de les illes Malvines</displayName>
  4078. <displayName count="other">lliures de les illes Malvines</displayName>
  4079. </currency>
  4080. <currency type="FRF">
  4081. <displayName>franc francès</displayName>
  4082. <displayName count="one">franc francès</displayName>
  4083. <displayName count="other">francs francesos</displayName>
  4084. </currency>
  4085. <currency type="GBP">
  4086. <displayName>lliura esterlina britànica</displayName>
  4087. <displayName count="one">lliura esterlina britànica</displayName>
  4088. <displayName count="other">lliures esterlines britàniques</displayName>
  4089. <symbol draft="contributed">£</symbol>
  4090. </currency>
  4091. <currency type="GEK">
  4092. <displayName>cupó de lari georgià</displayName>
  4093. <displayName count="one">cupó de lari georgià</displayName>
  4094. <displayName count="other">cupons de lari georgians</displayName>
  4095. </currency>
  4096. <currency type="GEL">
  4097. <displayName>lari georgià</displayName>
  4098. <displayName count="one">lari georgià</displayName>
  4099. <displayName count="other">laris georgians</displayName>
  4100. </currency>
  4101. <currency type="GHC">
  4102. <displayName>cedi ghanès (1979-2007)</displayName>
  4103. <displayName count="one">cedi ghanès (1979-2007)</displayName>
  4104. <displayName count="other">cedis ghanesos (1979-2007)</displayName>
  4105. </currency>
  4106. <currency type="GHS">
  4107. <displayName>cedi ghanès</displayName>
  4108. <displayName count="one">cedi ghanès</displayName>
  4109. <displayName count="other">cedis ghanesos</displayName>
  4110. </currency>
  4111. <currency type="GIP">
  4112. <displayName>lliura de Gibraltar</displayName>
  4113. <displayName count="one">lliura de Gibraltar</displayName>
  4114. <displayName count="other">lliures de Gibraltar</displayName>
  4115. </currency>
  4116. <currency type="GMD">
  4117. <displayName>dalasi gambià</displayName>
  4118. <displayName count="one">dalasi gambià</displayName>
  4119. <displayName count="other">dalasis gambians</displayName>
  4120. </currency>
  4121. <currency type="GNF">
  4122. <displayName>franc guineà</displayName>
  4123. <displayName count="one">franc guineà</displayName>
  4124. <displayName count="other">francs guineans</displayName>
  4125. </currency>
  4126. <currency type="GNS">
  4127. <displayName>syli guineà</displayName>
  4128. <displayName count="one">syli guineà</displayName>
  4129. <displayName count="other">sylis guineans</displayName>
  4130. </currency>
  4131. <currency type="GQE">
  4132. <displayName>ekwele de Guinea Equatorial</displayName>
  4133. <displayName count="one">ekwele de Guinea Equatorial</displayName>
  4134. <displayName count="other">bipkwele de Guinea Equatorial</displayName>
  4135. </currency>
  4136. <currency type="GRD">
  4137. <displayName>dracma grega</displayName>
  4138. <displayName count="one">dracma grega</displayName>
  4139. <displayName count="other">dracmes gregues</displayName>
  4140. </currency>
  4141. <currency type="GTQ">
  4142. <displayName>quetzal guatemalenc</displayName>
  4143. <displayName count="one">quetzal guatemalenc</displayName>
  4144. <displayName count="other">quetzals guatemalencs</displayName>
  4145. </currency>
  4146. <currency type="GWE">
  4147. <displayName>escut de la Guinea Portuguesa</displayName>
  4148. <displayName count="one">escut de la Guinea Portuguesa</displayName>
  4149. <displayName count="other">escuts de la Guinea Portuguesa</displayName>
  4150. </currency>
  4151. <currency type="GWP">
  4152. <displayName>peso de Guinea Bissau</displayName>
  4153. <displayName count="one">peso de Guinea Bissau</displayName>
  4154. <displayName count="other">pesos de Guinea Bissau</displayName>
  4155. </currency>
  4156. <currency type="GYD">
  4157. <displayName>dòlar de Guyana</displayName>
  4158. <displayName count="one">dòlar de Guyana</displayName>
  4159. <displayName count="other">dòlars de Guyana</displayName>
  4160. </currency>
  4161. <currency type="HKD">
  4162. <displayName>dòlar de Hong Kong</displayName>
  4163. <displayName count="one">dòlar de Hong Kong</displayName>
  4164. <displayName count="other">dòlars de Hong Kong</displayName>
  4165. <symbol draft="contributed">HK$</symbol>
  4166. </currency>
  4167. <currency type="HNL">
  4168. <displayName>lempira hondurenya</displayName>
  4169. <displayName count="one">lempira hondurenya</displayName>
  4170. <displayName count="other">lempires hondurenyes</displayName>
  4171. </currency>
  4172. <currency type="HRD">
  4173. <displayName>dinar croat</displayName>
  4174. <displayName count="one">dinar croat</displayName>
  4175. <displayName count="other">dinars croats</displayName>
  4176. </currency>
  4177. <currency type="HRK">
  4178. <displayName>kuna croata</displayName>
  4179. <displayName count="one">kuna croata</displayName>
  4180. <displayName count="other">kunes croates</displayName>
  4181. </currency>
  4182. <currency type="HTG">
  4183. <displayName>gourde haitià</displayName>
  4184. <displayName count="one">gourde haitià</displayName>
  4185. <displayName count="other">gourdes haitians</displayName>
  4186. </currency>
  4187. <currency type="HUF">
  4188. <displayName>fòrint hongarès</displayName>
  4189. <displayName count="one">fòrint hongarès</displayName>
  4190. <displayName count="other">fòrints hongaresos</displayName>
  4191. </currency>
  4192. <currency type="IDR">
  4193. <displayName>rupia indonèsia</displayName>
  4194. <displayName count="one">rupia indonèsia</displayName>
  4195. <displayName count="other">rupies indonèsies</displayName>
  4196. </currency>
  4197. <currency type="IEP">
  4198. <displayName>lliura irlandesa</displayName>
  4199. <displayName count="one">lliura irlandesa</displayName>
  4200. <displayName count="other">lliures irlandeses</displayName>
  4201. </currency>
  4202. <currency type="ILP">
  4203. <displayName>lliura israeliana</displayName>
  4204. <displayName count="one">lliura israeliana</displayName>
  4205. <displayName count="other">lliures israelianes</displayName>
  4206. </currency>
  4207. <currency type="ILR">
  4208. <displayName>xéquel israelià</displayName>
  4209. <displayName count="one">xéquel israelià</displayName>
  4210. <displayName count="other">xéquel israelià</displayName>
  4211. </currency>
  4212. <currency type="ILS">
  4213. <displayName>nou xéquel israelià</displayName>
  4214. <displayName count="one">nou xéquel israelià</displayName>
  4215. <displayName count="other">nous xéquels israelians</displayName>
  4216. <symbol draft="contributed">₪</symbol>
  4217. </currency>
  4218. <currency type="INR">
  4219. <displayName>rupia índia</displayName>
  4220. <displayName count="one">rupia índia</displayName>
  4221. <displayName count="other">rupies índies</displayName>
  4222. <symbol draft="contributed">₹</symbol>
  4223. </currency>
  4224. <currency type="IQD">
  4225. <displayName>dinar iraquià</displayName>
  4226. <displayName count="one">dinar iraquià</displayName>
  4227. <displayName count="other">dinars iraquians</displayName>
  4228. </currency>
  4229. <currency type="IRR">
  4230. <displayName>rial iranià</displayName>
  4231. <displayName count="one">rial iranià</displayName>
  4232. <displayName count="other">rials iranians</displayName>
  4233. </currency>
  4234. <currency type="ISJ">
  4235. <displayName>corona islandesa antiga</displayName>
  4236. <displayName count="one">corona islandesa antiga</displayName>
  4237. <displayName count="other">corones islandeses antigues</displayName>
  4238. </currency>
  4239. <currency type="ISK">
  4240. <displayName>corona islandesa</displayName>
  4241. <displayName count="one">corona islandesa</displayName>
  4242. <displayName count="other">corones islandeses</displayName>
  4243. </currency>
  4244. <currency type="ITL">
  4245. <displayName>lira italiana</displayName>
  4246. <displayName count="one">lira italiana</displayName>
  4247. <displayName count="other">lires italianes</displayName>
  4248. </currency>
  4249. <currency type="JMD">
  4250. <displayName>dòlar jamaicà</displayName>
  4251. <displayName count="one">dòlar jamaicà</displayName>
  4252. <displayName count="other">dòlars jamaicans</displayName>
  4253. </currency>
  4254. <currency type="JOD">
  4255. <displayName>dinar jordà</displayName>
  4256. <displayName count="one">dinar jordà</displayName>
  4257. <displayName count="other">dinars jordans</displayName>
  4258. </currency>
  4259. <currency type="JPY">
  4260. <displayName>ien japonès</displayName>
  4261. <displayName count="one">ien japonès</displayName>
  4262. <displayName count="other">iens japonesos</displayName>
  4263. <symbol draft="contributed">JP¥</symbol>
  4264. </currency>
  4265. <currency type="KES">
  4266. <displayName>xíling kenyà</displayName>
  4267. <displayName count="one">xíling kenyà</displayName>
  4268. <displayName count="other">xílings kenyans</displayName>
  4269. </currency>
  4270. <currency type="KGS">
  4271. <displayName>som kirguís</displayName>
  4272. <displayName count="one">som kirguís</displayName>
  4273. <displayName count="other">soms kirguisos</displayName>
  4274. </currency>
  4275. <currency type="KHR">
  4276. <displayName>riel cambodjà</displayName>
  4277. <displayName count="one">riel cambodjà</displayName>
  4278. <displayName count="other">riels cambodjans</displayName>
  4279. </currency>
  4280. <currency type="KMF">
  4281. <displayName>franc de les Comores</displayName>
  4282. <displayName count="one">franc de les Comores</displayName>
  4283. <displayName count="other">francs de les Comores</displayName>
  4284. </currency>
  4285. <currency type="KPW">
  4286. <displayName>won nord-coreà</displayName>
  4287. <displayName count="one">won nord-coreà</displayName>
  4288. <displayName count="other">wons nord-coreans</displayName>
  4289. </currency>
  4290. <currency type="KRH">
  4291. <displayName draft="contributed">hwan sud-coreà (1953-1962)</displayName>
  4292. <displayName count="one" draft="contributed">hwan sud-coreà</displayName>
  4293. <displayName count="other" draft="contributed">hwans sud-coreans</displayName>
  4294. </currency>
  4295. <currency type="KRO">
  4296. <displayName draft="contributed">antic won sud-coreà</displayName>
  4297. <displayName count="one" draft="contributed">antic won sud-coreà</displayName>
  4298. <displayName count="other" draft="contributed">antics wons sud-coreans</displayName>
  4299. </currency>
  4300. <currency type="KRW">
  4301. <displayName>won sud-coreà</displayName>
  4302. <displayName count="one">won sud-coreà</displayName>
  4303. <displayName count="other">wons sud-coreans</displayName>
  4304. <symbol draft="contributed">₩</symbol>
  4305. </currency>
  4306. <currency type="KWD">
  4307. <displayName>dinar kuwaitià</displayName>
  4308. <displayName count="one">dinar kuwaitià</displayName>
  4309. <displayName count="other">dinars kuwaitians</displayName>
  4310. </currency>
  4311. <currency type="KYD">
  4312. <displayName>dòlar de les illes Caiman</displayName>
  4313. <displayName count="one">dòlar de les illes Caiman</displayName>
  4314. <displayName count="other">dòlars de les illes Caiman</displayName>
  4315. </currency>
  4316. <currency type="KZT">
  4317. <displayName>tenge kazakh</displayName>
  4318. <displayName count="one">tenge kazakh</displayName>
  4319. <displayName count="other">tenges kazakhs</displayName>
  4320. </currency>
  4321. <currency type="LAK">
  4322. <displayName>kip laosià</displayName>
  4323. <displayName count="one">kip laosià</displayName>
  4324. <displayName count="other">kips laosians</displayName>
  4325. </currency>
  4326. <currency type="LBP">
  4327. <displayName>lliura libanesa</displayName>
  4328. <displayName count="one">lliura libanesa</displayName>
  4329. <displayName count="other">lliures libaneses</displayName>
  4330. </currency>
  4331. <currency type="LKR">
  4332. <displayName>rupia de Sri Lanka</displayName>
  4333. <displayName count="one">rupia de Sri Lanka</displayName>
  4334. <displayName count="other">rupies de Sri Lanka</displayName>
  4335. </currency>
  4336. <currency type="LRD">
  4337. <displayName>dòlar liberià</displayName>
  4338. <displayName count="one">dòlar liberià</displayName>
  4339. <displayName count="other">dòlars liberians</displayName>
  4340. </currency>
  4341. <currency type="LSL">
  4342. <displayName>loti de Lesotho</displayName>
  4343. <displayName count="one">loti de Lesotho</displayName>
  4344. <displayName count="other">maloti de Lesotho</displayName>
  4345. </currency>
  4346. <currency type="LTL">
  4347. <displayName>litas lituà</displayName>
  4348. <displayName count="one">litas lituà</displayName>
  4349. <displayName count="other">litai lituans</displayName>
  4350. </currency>
  4351. <currency type="LTT">
  4352. <displayName>talonas lituà</displayName>
  4353. <displayName count="one">talonas lituà</displayName>
  4354. <displayName count="other">talonai lituans</displayName>
  4355. </currency>
  4356. <currency type="LUC">
  4357. <displayName>franc convertible luxemburguès</displayName>
  4358. <displayName count="one">franc convertible luxemburguès</displayName>
  4359. <displayName count="other">francs convertibles luxemburguesos</displayName>
  4360. </currency>
  4361. <currency type="LUF">
  4362. <displayName>franc luxemburguès</displayName>
  4363. <displayName count="one">franc luxemburguès</displayName>
  4364. <displayName count="other">francs luxemburguesos</displayName>
  4365. </currency>
  4366. <currency type="LUL">
  4367. <displayName>franc financer luxemburguès</displayName>
  4368. <displayName count="one">franc financer luxemburguès</displayName>
  4369. <displayName count="other">francs financers luxemburguesos</displayName>
  4370. </currency>
  4371. <currency type="LVL">
  4372. <displayName>lats letó</displayName>
  4373. <displayName count="one">lats letó</displayName>
  4374. <displayName count="other">lati letons</displayName>
  4375. </currency>
  4376. <currency type="LVR">
  4377. <displayName>ruble letó</displayName>
  4378. <displayName count="one">ruble letó</displayName>
  4379. <displayName count="other">rubles letons</displayName>
  4380. </currency>
  4381. <currency type="LYD">
  4382. <displayName>dinar libi</displayName>
  4383. <displayName count="one">dinar libi</displayName>
  4384. <displayName count="other">dinars libis</displayName>
  4385. </currency>
  4386. <currency type="MAD">
  4387. <displayName>dírham marroquí</displayName>
  4388. <displayName count="one">dírham marroquí</displayName>
  4389. <displayName count="other">dírhams marroquins</displayName>
  4390. </currency>
  4391. <currency type="MAF">
  4392. <displayName>franc marroquí</displayName>
  4393. <displayName count="one">franc marroquí</displayName>
  4394. <displayName count="other">francs marroquins</displayName>
  4395. </currency>
  4396. <currency type="MCF">
  4397. <displayName draft="contributed">franc monegasc</displayName>
  4398. <displayName count="one" draft="contributed">franc monegasc</displayName>
  4399. <displayName count="other" draft="contributed">francs monegascos</displayName>
  4400. </currency>
  4401. <currency type="MDC">
  4402. <displayName draft="contributed">cupó moldau</displayName>
  4403. <displayName count="one" draft="contributed">cupó moldau</displayName>
  4404. <displayName count="other" draft="contributed">cupons moldaus</displayName>
  4405. </currency>
  4406. <currency type="MDL">
  4407. <displayName>leu moldau</displayName>
  4408. <displayName count="one">leu moldau</displayName>
  4409. <displayName count="other">lei moldaus</displayName>
  4410. </currency>
  4411. <currency type="MGA">
  4412. <displayName>ariary malgaix</displayName>
  4413. <displayName count="one">ariary malgaix</displayName>
  4414. <displayName count="other">ariarys malgaixos</displayName>
  4415. </currency>
  4416. <currency type="MGF">
  4417. <displayName>franc malgaix</displayName>
  4418. <displayName count="one">franc malgaix</displayName>
  4419. <displayName count="other">francs malgaixos</displayName>
  4420. </currency>
  4421. <currency type="MKD">
  4422. <displayName>denar macedoni</displayName>
  4423. <displayName count="one">denar macedoni</displayName>
  4424. <displayName count="other">denari macedonis</displayName>
  4425. </currency>
  4426. <currency type="MKN">
  4427. <displayName>denar macedoni (1992-1993)</displayName>
  4428. <displayName count="one">denar macedoni (1992-1993)</displayName>
  4429. <displayName count="other">denari macedonis (1992-1993)</displayName>
  4430. </currency>
  4431. <currency type="MLF">
  4432. <displayName>franc malià</displayName>
  4433. <displayName count="one">franc malià</displayName>
  4434. <displayName count="other">francs malians</displayName>
  4435. </currency>
  4436. <currency type="MMK">
  4437. <displayName>kyat de Myanmar</displayName>
  4438. <displayName count="one">kyat de Myanmar</displayName>
  4439. <displayName count="other">kyats de Myanmar</displayName>
  4440. </currency>
  4441. <currency type="MNT">
  4442. <displayName>tögrög mongol</displayName>
  4443. <displayName count="one">tögrög mongol</displayName>
  4444. <displayName count="other">tögrögs mongols</displayName>
  4445. </currency>
  4446. <currency type="MOP">
  4447. <displayName>pataca de Macau</displayName>
  4448. <displayName count="one">pataca de Macau</displayName>
  4449. <displayName count="other">pataques de Macau</displayName>
  4450. </currency>
  4451. <currency type="MRO">
  4452. <displayName>ouguiya maurità</displayName>
  4453. <displayName count="one">ouguiya maurità</displayName>
  4454. <displayName count="other">ouguiyas mauritans</displayName>
  4455. </currency>
  4456. <currency type="MTL">
  4457. <displayName>lira maltesa</displayName>
  4458. <displayName count="one">lira maltesa</displayName>
  4459. <displayName count="other">lires malteses</displayName>
  4460. </currency>
  4461. <currency type="MTP">
  4462. <displayName>lliura maltesa</displayName>
  4463. <displayName count="one">lliura maltesa</displayName>
  4464. <displayName count="other">lliures malteses</displayName>
  4465. </currency>
  4466. <currency type="MUR">
  4467. <displayName>rupia de Maurici</displayName>
  4468. <displayName count="one">rupia de Maurici</displayName>
  4469. <displayName count="other">rupies de Maurici</displayName>
  4470. </currency>
  4471. <currency type="MVR">
  4472. <displayName>rupia de les Maldives</displayName>
  4473. <displayName count="one">rupia de les Maldives</displayName>
  4474. <displayName count="other">rupies de les Maldives</displayName>
  4475. </currency>
  4476. <currency type="MWK">
  4477. <displayName>kwacha malawià</displayName>
  4478. <displayName count="one">kwacha malawià</displayName>
  4479. <displayName count="other">kwachas malawians</displayName>
  4480. </currency>
  4481. <currency type="MXN">
  4482. <displayName>peso mexicà</displayName>
  4483. <displayName count="one">peso mexicà</displayName>
  4484. <displayName count="other">pesos mexicans</displayName>
  4485. <symbol draft="contributed">MXN</symbol>
  4486. </currency>
  4487. <currency type="MXP">
  4488. <displayName>peso de plata mexicà (1861-1992)</displayName>
  4489. <displayName count="one">peso de plata mexicà (1861-1992)</displayName>
  4490. <displayName count="other">pesos de plata mexicans (1861-1992)</displayName>
  4491. </currency>
  4492. <currency type="MXV">
  4493. <displayName>unidad de inversión (UDI) mexicana</displayName>
  4494. <displayName count="one">unidad de inversión (UDI) mexicana</displayName>
  4495. <displayName count="other">unidades de inversión (UDI) mexicanes</displayName>
  4496. </currency>
  4497. <currency type="MYR">
  4498. <displayName>ringgit de Malàisia</displayName>
  4499. <displayName count="one">ringgit de Malàisia</displayName>
  4500. <displayName count="other">ringgits de Malàisia</displayName>
  4501. </currency>
  4502. <currency type="MZE">
  4503. <displayName>escut moçambiquès</displayName>
  4504. <displayName count="one">escut moçambiquès</displayName>
  4505. <displayName count="other">escuts moçambiquesos</displayName>
  4506. </currency>
  4507. <currency type="MZM">
  4508. <displayName>antic metical moçambiquès</displayName>
  4509. <displayName count="one">antic metical moçambiquès</displayName>
  4510. <displayName count="other">antics meticals moçambiquesos</displayName>
  4511. </currency>
  4512. <currency type="MZN">
  4513. <displayName>metical moçambiquès</displayName>
  4514. <displayName count="one">metical moçambiquès</displayName>
  4515. <displayName count="other">meticals moçambiquesos</displayName>
  4516. </currency>
  4517. <currency type="NAD">
  4518. <displayName>dòlar namibià</displayName>
  4519. <displayName count="one">dòlar namibià</displayName>
  4520. <displayName count="other">dòlars namibians</displayName>
  4521. </currency>
  4522. <currency type="NGN">
  4523. <displayName>naira nigerià</displayName>
  4524. <displayName count="one">naira nigerià</displayName>
  4525. <displayName count="other">naires nigerians</displayName>
  4526. </currency>
  4527. <currency type="NIC">
  4528. <displayName>córdoba nicaragüenca</displayName>
  4529. <displayName count="one">córdoba nicaragüenca</displayName>
  4530. <displayName count="other">córdobas nicaragüenques</displayName>
  4531. </currency>
  4532. <currency type="NIO">
  4533. <displayName>córdoba oro nicaragüenca</displayName>
  4534. <displayName count="one">córdoba oro nicaragüenca</displayName>
  4535. <displayName count="other">córdobas oro nicaragüenques</displayName>
  4536. </currency>
  4537. <currency type="NLG">
  4538. <displayName>florí neerlandès</displayName>
  4539. <displayName count="one">florí neerlandès</displayName>
  4540. <displayName count="other">florins neerlandesos</displayName>
  4541. </currency>
  4542. <currency type="NOK">
  4543. <displayName>corona noruega</displayName>
  4544. <displayName count="one">corona noruega</displayName>
  4545. <displayName count="other">corones noruegues</displayName>
  4546. </currency>
  4547. <currency type="NPR">
  4548. <displayName>rupia nepalesa</displayName>
  4549. <displayName count="one">rupia nepalesa</displayName>
  4550. <displayName count="other">rupies nepaleses</displayName>
  4551. </currency>
  4552. <currency type="NZD">
  4553. <displayName>dòlar neozelandès</displayName>
  4554. <displayName count="one">dòlar neozelandès</displayName>
  4555. <displayName count="other">dòlars neozelandesos</displayName>
  4556. <symbol draft="contributed">NZ$</symbol>
  4557. </currency>
  4558. <currency type="OMR">
  4559. <displayName>rial omanita</displayName>
  4560. <displayName count="one">rial omanita</displayName>
  4561. <displayName count="other">rials omanites</displayName>
  4562. </currency>
  4563. <currency type="PAB">
  4564. <displayName>balboa panameny</displayName>
  4565. <displayName count="one">balboa panameny</displayName>
  4566. <displayName count="other">balboes panamenys</displayName>
  4567. </currency>
  4568. <currency type="PEI">
  4569. <displayName>inti peruà</displayName>
  4570. <displayName count="one">inti peruà</displayName>
  4571. <displayName count="other">intis peruans</displayName>
  4572. </currency>
  4573. <currency type="PEN">
  4574. <displayName>nou sol peruà</displayName>
  4575. <displayName count="one">nou sol peruà</displayName>
  4576. <displayName count="other">nous sols peruans</displayName>
  4577. </currency>
  4578. <currency type="PES">
  4579. <displayName>sol peruà</displayName>
  4580. <displayName count="one">sol peruà</displayName>
  4581. <displayName count="other">sols peruans</displayName>
  4582. </currency>
  4583. <currency type="PGK">
  4584. <displayName>kina de Papua Nova Guinea</displayName>
  4585. <displayName count="one">kina de Papua Nova Guinea</displayName>
  4586. <displayName count="other">kines de Papua Nova Guinea</displayName>
  4587. </currency>
  4588. <currency type="PHP">
  4589. <displayName>peso filipí</displayName>
  4590. <displayName count="one">peso filipí</displayName>
  4591. <displayName count="other">pesos filipins</displayName>
  4592. </currency>
  4593. <currency type="PKR">
  4594. <displayName>rupia pakistanesa</displayName>
  4595. <displayName count="one">rupia pakistanesa</displayName>
  4596. <displayName count="other">rupies pakistaneses</displayName>
  4597. </currency>
  4598. <currency type="PLN">
  4599. <displayName>zloty polonès</displayName>
  4600. <displayName count="one">zloty polonès</displayName>
  4601. <displayName count="other">zlote polonesos</displayName>
  4602. </currency>
  4603. <currency type="PLZ">
  4604. <displayName>zloty polonès (1950-1995)</displayName>
  4605. <displayName count="one">zloty polonès (1950-1995)</displayName>
  4606. <displayName count="other">zlote polonesos (1950-1995)</displayName>
  4607. </currency>
  4608. <currency type="PTE">
  4609. <displayName>escut portuguès</displayName>
  4610. <displayName count="one">escut portuguès</displayName>
  4611. <displayName count="other">escuts portuguesos</displayName>
  4612. </currency>
  4613. <currency type="PYG">
  4614. <displayName>guaraní paraguaià</displayName>
  4615. <displayName count="one">guaraní paraguaià</displayName>
  4616. <displayName count="other">guaranís paraguaians</displayName>
  4617. </currency>
  4618. <currency type="QAR">
  4619. <displayName>riyal de Qatar</displayName>
  4620. <displayName count="one">riyal de Qatar</displayName>
  4621. <displayName count="other">riyals de Qatar</displayName>
  4622. </currency>
  4623. <currency type="RHD">
  4624. <displayName>dòlar rhodesià</displayName>
  4625. <displayName count="one">dòlar rhodesià</displayName>
  4626. <displayName count="other">dòlars rhodesians</displayName>
  4627. </currency>
  4628. <currency type="ROL">
  4629. <displayName>antic leu romanès</displayName>
  4630. <displayName count="one">antic leu romanès</displayName>
  4631. <displayName count="other">antics lei romanesos</displayName>
  4632. </currency>
  4633. <currency type="RON">
  4634. <displayName>leu romanès</displayName>
  4635. <displayName count="one">leu romanès</displayName>
  4636. <displayName count="other">lei romanesos</displayName>
  4637. </currency>
  4638. <currency type="RSD">
  4639. <displayName>dinar serbi</displayName>
  4640. <displayName count="one">dinar serbi</displayName>
  4641. <displayName count="other">dinars serbis</displayName>
  4642. </currency>
  4643. <currency type="RUB">
  4644. <displayName>ruble rus</displayName>
  4645. <displayName count="one">ruble rus</displayName>
  4646. <displayName count="other">rubles russos</displayName>
  4647. </currency>
  4648. <currency type="RUR">
  4649. <displayName>ruble rus (1991-1998)</displayName>
  4650. <displayName count="one">ruble rus (1991-1998)</displayName>
  4651. <displayName count="other">rubles russos (1991-1998)</displayName>
  4652. </currency>
  4653. <currency type="RWF">
  4654. <displayName>franc rwandès</displayName>
  4655. <displayName count="one">franc rwandès</displayName>
  4656. <displayName count="other">francs rwandesos</displayName>
  4657. </currency>
  4658. <currency type="SAR">
  4659. <displayName>riyal saudita</displayName>
  4660. <displayName count="one">riyal saudita</displayName>
  4661. <displayName count="other">riyals saudites</displayName>
  4662. </currency>
  4663. <currency type="SBD">
  4664. <displayName>dòlar de les illes Salomó</displayName>
  4665. <displayName count="one">dòlar de les illes Salomó</displayName>
  4666. <displayName count="other">dòlars de les illes Salomó</displayName>
  4667. </currency>
  4668. <currency type="SCR">
  4669. <displayName>rupia de les Seychelles</displayName>
  4670. <displayName count="one">rupia de les Seychelles</displayName>
  4671. <displayName count="other">rupies de les Seychelles</displayName>
  4672. </currency>
  4673. <currency type="SDD">
  4674. <displayName>dinar sudanès</displayName>
  4675. <displayName count="one">dinar sudanès</displayName>
  4676. <displayName count="other">dinars sudanesos</displayName>
  4677. </currency>
  4678. <currency type="SDG">
  4679. <displayName>lliura sudanesa</displayName>
  4680. <displayName count="one">lliura sudanesa</displayName>
  4681. <displayName count="other">lliures sudaneses</displayName>
  4682. </currency>
  4683. <currency type="SDP">
  4684. <displayName>antiga lliura sudanesa</displayName>
  4685. <displayName count="one">antiga lliura sudanesa</displayName>
  4686. <displayName count="other">antigues lliures sudaneses</displayName>
  4687. </currency>
  4688. <currency type="SEK">
  4689. <displayName>corona sueca</displayName>
  4690. <displayName count="one">corona sueca</displayName>
  4691. <displayName count="other">corones sueques</displayName>
  4692. </currency>
  4693. <currency type="SGD">
  4694. <displayName>dòlar de Singapur</displayName>
  4695. <displayName count="one">dòlar de Singapur</displayName>
  4696. <displayName count="other">dòlars de Singapur</displayName>
  4697. </currency>
  4698. <currency type="SHP">
  4699. <displayName>lliura de Santa Helena</displayName>
  4700. <displayName count="one">lliura de Santa Helena</displayName>
  4701. <displayName count="other">lliures de Santa Helena</displayName>
  4702. </currency>
  4703. <currency type="SIT">
  4704. <displayName>tolar eslovè</displayName>
  4705. <displayName count="one">tolar eslovè</displayName>
  4706. <displayName count="other">tolars eslovens</displayName>
  4707. </currency>
  4708. <currency type="SKK">
  4709. <displayName>corona eslovaca</displayName>
  4710. <displayName count="one">corona eslovaca</displayName>
  4711. <displayName count="other">corones eslovaques</displayName>
  4712. </currency>
  4713. <currency type="SLL">
  4714. <displayName>leone de Sierra Leone</displayName>
  4715. <displayName count="one">leone de Sierra Leone</displayName>
  4716. <displayName count="other">leones de Sierra Leone</displayName>
  4717. </currency>
  4718. <currency type="SOS">
  4719. <displayName>xíling somali</displayName>
  4720. <displayName count="one">xíling somali</displayName>
  4721. <displayName count="other">xílings somalis</displayName>
  4722. </currency>
  4723. <currency type="SRD">
  4724. <displayName>dòlar de Surinam</displayName>
  4725. <displayName count="one">dòlar de Surinam</displayName>
  4726. <displayName count="other">dòlars de Surinam</displayName>
  4727. </currency>
  4728. <currency type="SRG">
  4729. <displayName>florí de Surinam</displayName>
  4730. <displayName count="one">florí de Surinam</displayName>
  4731. <displayName count="other">florins de Surinam</displayName>
  4732. </currency>
  4733. <currency type="SSP">
  4734. <displayName draft="provisional">lliura del Sudan del Sud</displayName>
  4735. <displayName count="one" draft="contributed">lliura del Sudan del Sud</displayName>
  4736. <displayName count="other" draft="contributed">lliures del Sudan del Sud</displayName>
  4737. </currency>
  4738. <currency type="STD">
  4739. <displayName>dobra de São Tomé i Príncipe</displayName>
  4740. <displayName count="one">dobra de São Tomé i Príncipe</displayName>
  4741. <displayName count="other">dobras de São Tomé i Príncipe</displayName>
  4742. </currency>
  4743. <currency type="SUR">
  4744. <displayName>ruble soviètic</displayName>
  4745. <displayName count="one">ruble soviètic</displayName>
  4746. <displayName count="other">rubles soviètics</displayName>
  4747. </currency>
  4748. <currency type="SVC">
  4749. <displayName>colón salvadorenc</displayName>
  4750. <displayName count="one">colón salvadorenc</displayName>
  4751. <displayName count="other">colones salvadorencs</displayName>
  4752. </currency>
  4753. <currency type="SYP">
  4754. <displayName>lliura síria</displayName>
  4755. <displayName count="one">lliura síria</displayName>
  4756. <displayName count="other">lliures síries</displayName>
  4757. </currency>
  4758. <currency type="SZL">
  4759. <displayName>lilangeni swazi</displayName>
  4760. <displayName count="one">lilangeni swazi</displayName>
  4761. <displayName count="other">emalangeni swazis</displayName>
  4762. </currency>
  4763. <currency type="THB">
  4764. <displayName>baht tailandès</displayName>
  4765. <displayName count="one">baht tailandès</displayName>
  4766. <displayName count="other">bahts tailandesos</displayName>
  4767. <symbol draft="contributed">฿</symbol>
  4768. </currency>
  4769. <currency type="TJR">
  4770. <displayName>ruble tadjik</displayName>
  4771. <displayName count="one">ruble tadjik</displayName>
  4772. <displayName count="other">rubles tadjiks</displayName>
  4773. </currency>
  4774. <currency type="TJS">
  4775. <displayName>somoni tadjik</displayName>
  4776. <displayName count="one">somoni tadjik</displayName>
  4777. <displayName count="other">somonis tadjiks</displayName>
  4778. </currency>
  4779. <currency type="TMM">
  4780. <displayName>manat turcman (1993-2009)</displayName>
  4781. <displayName count="one">manat turcman (1993-2009)</displayName>
  4782. <displayName count="other">manats turcmans (1993-2009)</displayName>
  4783. </currency>
  4784. <currency type="TMT">
  4785. <displayName>manat turcman</displayName>
  4786. <displayName count="one">manat turcman</displayName>
  4787. <displayName count="other">manats turcmans</displayName>
  4788. </currency>
  4789. <currency type="TND">
  4790. <displayName>dinar tunisià</displayName>
  4791. <displayName count="one">dinar tunisià</displayName>
  4792. <displayName count="other">dinars tunisians</displayName>
  4793. </currency>
  4794. <currency type="TOP">
  4795. <displayName>pa‘anga tongà</displayName>
  4796. <displayName count="one">pa‘anga tongà</displayName>
  4797. <displayName count="other">pa‘angas tongans</displayName>
  4798. </currency>
  4799. <currency type="TPE">
  4800. <displayName>escut de Timor</displayName>
  4801. <displayName count="one">escut de Timor</displayName>
  4802. <displayName count="other">escuts de Timor</displayName>
  4803. </currency>
  4804. <currency type="TRL">
  4805. <displayName>lira turca (1922-2005)</displayName>
  4806. <displayName count="one">lira turca (1922-2005)</displayName>
  4807. <displayName count="other">lires turques (1922-2005)</displayName>
  4808. </currency>
  4809. <currency type="TRY">
  4810. <displayName>lira turca</displayName>
  4811. <displayName count="one">lira turca</displayName>
  4812. <displayName count="other">lires turques</displayName>
  4813. </currency>
  4814. <currency type="TTD">
  4815. <displayName>dòlar de Trinitat i Tobago</displayName>
  4816. <displayName count="one">dòlar de Trinitat i Tobago</displayName>
  4817. <displayName count="other">dòlars de Trinitat i Tobago</displayName>
  4818. </currency>
  4819. <currency type="TWD">
  4820. <displayName>nou dòlar de Taiwan</displayName>
  4821. <displayName count="one">nou dòlar de Taiwan</displayName>
  4822. <displayName count="other">nous dòlars de Taiwan</displayName>
  4823. <symbol draft="contributed">NT$</symbol>
  4824. </currency>
  4825. <currency type="TZS">
  4826. <displayName>xíling tanzà</displayName>
  4827. <displayName count="one">xíling tanzà</displayName>
  4828. <displayName count="other">xílings tanzans</displayName>
  4829. </currency>
  4830. <currency type="UAH">
  4831. <displayName>hrívnia ucraïnesa</displayName>
  4832. <displayName count="one">hrívnia ucraïnesa</displayName>
  4833. <displayName count="other">hrívnies ucraïneses</displayName>
  4834. </currency>
  4835. <currency type="UAK">
  4836. <displayName>karbóvanets ucraïnès</displayName>
  4837. <displayName count="one">karbóvanets ucraïnès</displayName>
  4838. <displayName count="other">karbóvantsiv ucraïnesos</displayName>
  4839. </currency>
  4840. <currency type="UGS">
  4841. <displayName>xíling ugandès (1966-1987)</displayName>
  4842. <displayName count="one">xíling ugandès (1966-1987)</displayName>
  4843. <displayName count="other">xílings ugandesos (1966-1987)</displayName>
  4844. </currency>
  4845. <currency type="UGX">
  4846. <displayName>xíling ugandès</displayName>
  4847. <displayName count="one">xíling ugandès</displayName>
  4848. <displayName count="other">xílings ugandesos</displayName>
  4849. </currency>
  4850. <currency type="USD">
  4851. <displayName>dòlar dels Estats Units</displayName>
  4852. <displayName count="one">dòlar dels Estats Units</displayName>
  4853. <displayName count="other">dòlars dels Estats Units</displayName>
  4854. <symbol draft="contributed">US$</symbol>
  4855. </currency>
  4856. <currency type="USN">
  4857. <displayName>dòlar dels Estats Units (dia següent)</displayName>
  4858. <displayName count="one">dòlar dels Estats Units (dia següent)</displayName>
  4859. <displayName count="other">dòlars dels Estats Units (dia següent)</displayName>
  4860. </currency>
  4861. <currency type="USS">
  4862. <displayName>dòlar dels Estats Units (mateix dia)</displayName>
  4863. <displayName count="one">dòlar dels Estats Units (mateix dia)</displayName>
  4864. <displayName count="other">dòlars dels Estats Units (mateix dia)</displayName>
  4865. </currency>
  4866. <currency type="UYI">
  4867. <displayName>peso uruguaià en unitats indexades</displayName>
  4868. <displayName count="one">peso uruguaià en unitats indexades</displayName>
  4869. <displayName count="other">pesos uruguaians en unitats indexades</displayName>
  4870. </currency>
  4871. <currency type="UYP">
  4872. <displayName>peso uruguaià (1975-1993)</displayName>
  4873. <displayName count="one">peso uruguaià (1975-1993)</displayName>
  4874. <displayName count="other">pesos uruguaians (1975-1993)</displayName>
  4875. </currency>
  4876. <currency type="UYU">
  4877. <displayName>peso uruguaià</displayName>
  4878. <displayName count="one">peso uruguaià</displayName>
  4879. <displayName count="other">pesos uruguaians</displayName>
  4880. </currency>
  4881. <currency type="UZS">
  4882. <displayName>som uzbek</displayName>
  4883. <displayName count="one">som uzbek</displayName>
  4884. <displayName count="other">soms uzbeks</displayName>
  4885. </currency>
  4886. <currency type="VEB">
  4887. <displayName>bolívar veneçolà (1871-2008)</displayName>
  4888. <displayName count="one">bolívar veneçolà (1871-2008)</displayName>
  4889. <displayName count="other">bolívars veneçolans (1871-2008)</displayName>
  4890. </currency>
  4891. <currency type="VEF">
  4892. <displayName>bolívar veneçolà</displayName>
  4893. <displayName count="one">bolívar veneçolà</displayName>
  4894. <displayName count="other">bolívars veneçolans</displayName>
  4895. </currency>
  4896. <currency type="VND">
  4897. <displayName>dong vietnamita</displayName>
  4898. <displayName count="one">dong vietnamita</displayName>
  4899. <displayName count="other">dongs vietnamites</displayName>
  4900. <symbol draft="contributed">₫</symbol>
  4901. </currency>
  4902. <currency type="VNN">
  4903. <displayName>dong vietnamita (1978-1985)</displayName>
  4904. <displayName count="one">dong vietnamita (1978-1985)</displayName>
  4905. <displayName count="other">dongs vietnamites (1978-1985)</displayName>
  4906. </currency>
  4907. <currency type="VUV">
  4908. <displayName>vatu de Vanuatu</displayName>
  4909. <displayName count="one">vatu de Vanuatu</displayName>
  4910. <displayName count="other">vatus de Vanuatu</displayName>
  4911. </currency>
  4912. <currency type="WST">
  4913. <displayName>tala samoà</displayName>
  4914. <displayName count="one">tala samoà</displayName>
  4915. <displayName count="other">tales samoans</displayName>
  4916. </currency>
  4917. <currency type="XAF">
  4918. <displayName>franc CFA BEAC</displayName>
  4919. <displayName count="one">franc CFA BEAC</displayName>
  4920. <displayName count="other">francs CFA BEAC</displayName>
  4921. <symbol draft="contributed">XAF</symbol>
  4922. </currency>
  4923. <currency type="XAG">
  4924. <displayName>plata</displayName>
  4925. <displayName count="one">plata</displayName>
  4926. <displayName count="other">plata</displayName>
  4927. </currency>
  4928. <currency type="XAU">
  4929. <displayName>or</displayName>
  4930. <displayName count="one">or</displayName>
  4931. <displayName count="other">or</displayName>
  4932. </currency>
  4933. <currency type="XBA">
  4934. <displayName>unitat compensatòria europea</displayName>
  4935. <displayName count="one">unitat compensatòria europea</displayName>
  4936. <displayName count="other">unitats compensatòries europees</displayName>
  4937. </currency>
  4938. <currency type="XBB">
  4939. <displayName>unitat monetària europea</displayName>
  4940. <displayName count="one">unitat monetària europea</displayName>
  4941. <displayName count="other">unitats monetàries europees</displayName>
  4942. </currency>
  4943. <currency type="XBC">
  4944. <displayName>unitat de compte europea (XBC)</displayName>
  4945. <displayName count="one">unitat de compte europea (XBC)</displayName>
  4946. <displayName count="other">unitats de compte europees (XBC)</displayName>
  4947. </currency>
  4948. <currency type="XBD">
  4949. <displayName>unitat de compte europea (XBD)</displayName>
  4950. <displayName count="one">unitat de compte europea (XBD)</displayName>
  4951. <displayName count="other">unitats de compte europees (XBD)</displayName>
  4952. </currency>
  4953. <currency type="XCD">
  4954. <displayName>dòlar del Carib Oriental</displayName>
  4955. <displayName count="one">dòlar del Carib Oriental</displayName>
  4956. <displayName count="other">dòlars del Carib Oriental</displayName>
  4957. <symbol draft="contributed">XCD</symbol>
  4958. </currency>
  4959. <currency type="XDR">
  4960. <displayName>drets especials de gir</displayName>
  4961. <displayName count="one">drets especials de gir</displayName>
  4962. <displayName count="other">drets especials de gir</displayName>
  4963. </currency>
  4964. <currency type="XEU">
  4965. <displayName>unitat de moneda europea</displayName>
  4966. <displayName count="one">unitat de moneda europea</displayName>
  4967. <displayName count="other">unitats de moneda europees</displayName>
  4968. </currency>
  4969. <currency type="XFO">
  4970. <displayName>franc or francès</displayName>
  4971. <displayName count="one">franc or francès</displayName>
  4972. <displayName count="other">francs or francesos</displayName>
  4973. </currency>
  4974. <currency type="XFU">
  4975. <displayName>franc UIC francès</displayName>
  4976. <displayName count="one">franc UIC francès</displayName>
  4977. <displayName count="other">francs UIC francesos</displayName>
  4978. </currency>
  4979. <currency type="XOF">
  4980. <displayName>franc CFA BCEAO</displayName>
  4981. <displayName count="one">franc CFA BCEAO</displayName>
  4982. <displayName count="other">francs CFA BCEAO</displayName>
  4983. <symbol draft="contributed">XOF</symbol>
  4984. </currency>
  4985. <currency type="XPD">
  4986. <displayName>pal·ladi</displayName>
  4987. <displayName count="one">pal·ladi</displayName>
  4988. <displayName count="other">pal·ladi</displayName>
  4989. </currency>
  4990. <currency type="XPF">
  4991. <displayName>franc CFP</displayName>
  4992. <displayName count="one">franc CFP</displayName>
  4993. <displayName count="other">francs CFP</displayName>
  4994. <symbol draft="contributed">XPF</symbol>
  4995. </currency>
  4996. <currency type="XPT">
  4997. <displayName>platí</displayName>
  4998. <displayName count="one">platí</displayName>
  4999. <displayName count="other">platí</displayName>
  5000. </currency>
  5001. <currency type="XRE">
  5002. <displayName>fons RINET</displayName>
  5003. <displayName count="one">fons RINET</displayName>
  5004. <displayName count="other">fons RINET</displayName>
  5005. </currency>
  5006. <currency type="XTS">
  5007. <displayName>codi reservat per a proves</displayName>
  5008. <displayName count="one">codi reservat per a proves</displayName>
  5009. <displayName count="other">codi reservat per a proves</displayName>
  5010. </currency>
  5011. <currency type="XXX">
  5012. <displayName>moneda desconeguda/no vàlida</displayName>
  5013. <displayName count="one">moneda desconeguda/no vàlida</displayName>
  5014. <displayName count="other">monedes desconegudes/no vàlides</displayName>
  5015. </currency>
  5016. <currency type="YDD">
  5017. <displayName>dinar iemenita</displayName>
  5018. <displayName count="one">dinar iemenita</displayName>
  5019. <displayName count="other">dinars iemenites</displayName>
  5020. </currency>
  5021. <currency type="YER">
  5022. <displayName>rial iemenita</displayName>
  5023. <displayName count="one">rial iemenita</displayName>
  5024. <displayName count="other">rials iemenites</displayName>
  5025. </currency>
  5026. <currency type="YUD">
  5027. <displayName>dinar fort iugoslau</displayName>
  5028. <displayName count="one">dinar fort iugoslau</displayName>
  5029. <displayName count="other">dinars forts iugoslaus</displayName>
  5030. </currency>
  5031. <currency type="YUM">
  5032. <displayName>nou dinar iugoslau</displayName>
  5033. <displayName count="one">nou dinar iugoslau</displayName>
  5034. <displayName count="other">nous dinars iugoslaus</displayName>
  5035. </currency>
  5036. <currency type="YUN">
  5037. <displayName>dinar convertible iugoslau</displayName>
  5038. <displayName count="one">dinar convertible iugoslau</displayName>
  5039. <displayName count="other">dinars convertibles iugoslaus</displayName>
  5040. </currency>
  5041. <currency type="YUR">
  5042. <displayName draft="contributed">dinar iugoslau reformat (1992-1993)</displayName>
  5043. <displayName count="one" draft="contributed">dinar reformat iugoslau</displayName>
  5044. <displayName count="other" draft="contributed">dinars reformats iugoslaus</displayName>
  5045. </currency>
  5046. <currency type="ZAL">
  5047. <displayName>rand sud-africà (financer)</displayName>
  5048. <displayName count="one">rand sud-africà (financer)</displayName>
  5049. <displayName count="other">rands sud-africans (financers)</displayName>
  5050. </currency>
  5051. <currency type="ZAR">
  5052. <displayName>rand sud-africà</displayName>
  5053. <displayName count="one">rand sud-africà</displayName>
  5054. <displayName count="other">rands sud-africans</displayName>
  5055. </currency>
  5056. <currency type="ZMK">
  5057. <displayName>kwacha zambià (1968-2012)</displayName>
  5058. <displayName count="one">kwacha zambià (1968-2012)</displayName>
  5059. <displayName count="other">kwacha zambians (1968-2012)</displayName>
  5060. </currency>
  5061. <currency type="ZMW">
  5062. <displayName>kwacha zambià</displayName>
  5063. <displayName count="one">kwacha zambià</displayName>
  5064. <displayName count="other">kwacha zambians</displayName>
  5065. </currency>
  5066. <currency type="ZRN">
  5067. <displayName>nou zaire zairès</displayName>
  5068. <displayName count="one">nou zaire zairès</displayName>
  5069. <displayName count="other">nous zaires zairesos</displayName>
  5070. </currency>
  5071. <currency type="ZRZ">
  5072. <displayName>zaire zairès</displayName>
  5073. <displayName count="one">zaire zairès</displayName>
  5074. <displayName count="other">zaires zairesos</displayName>
  5075. </currency>
  5076. <currency type="ZWD">
  5077. <displayName>dòlar zimbabuès (1980-2008)</displayName>
  5078. <displayName count="one">dòlar zimbabuès (1980-2008)</displayName>
  5079. <displayName count="other">dòlars zimbabuesos (1980-2008)</displayName>
  5080. </currency>
  5081. <currency type="ZWL">
  5082. <displayName>dòlar zimbabuès (2009)</displayName>
  5083. <displayName count="one">dòlar zimbabuès (2009)</displayName>
  5084. <displayName count="other">dòlars zimbabuesos (2009)</displayName>
  5085. </currency>
  5086. <currency type="ZWR">
  5087. <displayName>dòlar zimbabuès (2008)</displayName>
  5088. <displayName count="one">dòlar zimbabuès (2008)</displayName>
  5089. <displayName count="other">dòlars zimbabuesos (2008)</displayName>
  5090. </currency>
  5091. </currencies>
  5092. </numbers>
  5093. <units>
  5094. <unit type="day">
  5095. <unitPattern count="one">{0} dia</unitPattern>
  5096. <unitPattern count="one" alt="short">{0} dia</unitPattern>
  5097. <unitPattern count="other">{0} dies</unitPattern>
  5098. <unitPattern count="other" alt="short">{0} dies</unitPattern>
  5099. </unit>
  5100. <unit type="day-future">
  5101. <unitPattern count="one">D'aquí a {0} dia</unitPattern>
  5102. <unitPattern count="other">D'aquí a {0} dies</unitPattern>
  5103. </unit>
  5104. <unit type="day-past">
  5105. <unitPattern count="one">Fa {0} dia</unitPattern>
  5106. <unitPattern count="other">Fa {0} dies</unitPattern>
  5107. </unit>
  5108. <unit type="hour">
  5109. <unitPattern count="one">{0} hora</unitPattern>
  5110. <unitPattern count="one" alt="short">{0} h</unitPattern>
  5111. <unitPattern count="other">{0} hores</unitPattern>
  5112. <unitPattern count="other" alt="short">{0} h</unitPattern>
  5113. </unit>
  5114. <unit type="hour-future">
  5115. <unitPattern count="one">D'aquí a {0} hora</unitPattern>
  5116. <unitPattern count="other">D'aquí a {0} hores</unitPattern>
  5117. </unit>
  5118. <unit type="hour-past">
  5119. <unitPattern count="one">Fa {0} hora</unitPattern>
  5120. <unitPattern count="other">Fa {0} hores</unitPattern>
  5121. </unit>
  5122. <unit type="minute">
  5123. <unitPattern count="one">{0} minut</unitPattern>
  5124. <unitPattern count="one" alt="short">{0} m</unitPattern>
  5125. <unitPattern count="other">{0} minuts</unitPattern>
  5126. <unitPattern count="other" alt="short">{0} m</unitPattern>
  5127. </unit>
  5128. <unit type="minute-future">
  5129. <unitPattern count="one">D'aquí a {0} minut</unitPattern>
  5130. <unitPattern count="other">D'aquí a {0} minuts</unitPattern>
  5131. </unit>
  5132. <unit type="minute-past">
  5133. <unitPattern count="one">Fa {0} minut</unitPattern>
  5134. <unitPattern count="other">Fa {0} minuts</unitPattern>
  5135. </unit>
  5136. <unit type="month">
  5137. <unitPattern count="one">{0} mes</unitPattern>
  5138. <unitPattern count="one" alt="short">{0} mes</unitPattern>
  5139. <unitPattern count="other">{0} mesos</unitPattern>
  5140. <unitPattern count="other" alt="short">{0} mesos</unitPattern>
  5141. </unit>
  5142. <unit type="month-future">
  5143. <unitPattern count="one">D'aquí a {0} mes</unitPattern>
  5144. <unitPattern count="other">D'aquí a {0} mesos</unitPattern>
  5145. </unit>
  5146. <unit type="month-past">
  5147. <unitPattern count="one">Fa {0} mes</unitPattern>
  5148. <unitPattern count="other">Fa {0} mesos</unitPattern>
  5149. </unit>
  5150. <unit type="second">
  5151. <unitPattern count="one">{0} segon</unitPattern>
  5152. <unitPattern count="one" alt="short">{0} s</unitPattern>
  5153. <unitPattern count="other">{0} segons</unitPattern>
  5154. <unitPattern count="other" alt="short">{0} s</unitPattern>
  5155. </unit>
  5156. <unit type="second-future">
  5157. <unitPattern count="one">D'aquí a {0} segon</unitPattern>
  5158. <unitPattern count="other">D'aquí a {0} segons</unitPattern>
  5159. </unit>
  5160. <unit type="second-past">
  5161. <unitPattern count="one">Fa {0} segon</unitPattern>
  5162. <unitPattern count="other">Fa {0} segons</unitPattern>
  5163. </unit>
  5164. <unit type="week">
  5165. <unitPattern count="one">{0} setmana</unitPattern>
  5166. <unitPattern count="one" alt="short">{0} setmana</unitPattern>
  5167. <unitPattern count="other">{0} setmanes</unitPattern>
  5168. <unitPattern count="other" alt="short">{0} setmanes</unitPattern>
  5169. </unit>
  5170. <unit type="week-future">
  5171. <unitPattern count="one">D'aquí a {0} setmana</unitPattern>
  5172. <unitPattern count="other">D'aquí a {0} setmanes</unitPattern>
  5173. </unit>
  5174. <unit type="week-past">
  5175. <unitPattern count="one">Fa {0} setmana</unitPattern>
  5176. <unitPattern count="other">Fa {0} setmanes</unitPattern>
  5177. </unit>
  5178. <unit type="year">
  5179. <unitPattern count="one">{0} any</unitPattern>
  5180. <unitPattern count="one" alt="short">{0} any</unitPattern>
  5181. <unitPattern count="other">{0} anys</unitPattern>
  5182. <unitPattern count="other" alt="short">{0} anys</unitPattern>
  5183. </unit>
  5184. <unit type="year-future">
  5185. <unitPattern count="one">D'aquí a {0} any</unitPattern>
  5186. <unitPattern count="other">D'aquí a {0} anys</unitPattern>
  5187. </unit>
  5188. <unit type="year-past">
  5189. <unitPattern count="one">Fa {0} any</unitPattern>
  5190. <unitPattern count="other">Fa {0} anys</unitPattern>
  5191. </unit>
  5192. </units>
  5193. <listPatterns>
  5194. <listPattern>
  5195. <listPatternPart type="2">{0} i {1}</listPatternPart>
  5196. <listPatternPart type="end">{0} i {1}</listPatternPart>
  5197. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  5198. <listPatternPart type="start">{0}, {1}</listPatternPart>
  5199. </listPattern>
  5200. </listPatterns>
  5201. <posix>
  5202. <messages>
  5203. <yesstr>sí:s</yesstr>
  5204. <nostr>no:n</nostr>
  5205. </messages>
  5206. </posix>
  5207. </ldml>