ca.xml 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <ldml>
  3. <identity>
  4. <version number="$Revision: 1.109 $"/>
  5. <generation date="$Date: 2009/06/15 03:46:24 $"/>
  6. <language type="ca"/>
  7. </identity>
  8. <fallback>es_ES</fallback>
  9. <localeDisplayNames>
  10. <localeDisplayPattern>
  11. <localePattern>{0} ({1})</localePattern>
  12. <localeSeparator>, </localeSeparator>
  13. </localeDisplayPattern>
  14. <languages>
  15. <language type="aa">àfar</language>
  16. <language type="ab">abkhaz</language>
  17. <language type="ace">atjeh</language>
  18. <language type="ach">acoli</language>
  19. <language type="ada">adangme</language>
  20. <language type="ady">adigué</language>
  21. <language type="ae">avèstic</language>
  22. <language type="af">afrikaans</language>
  23. <language type="afa">llengua afroasiàtica</language>
  24. <language type="afh">afrihili</language>
  25. <language type="ain">ainu</language>
  26. <language type="ak">àkan</language>
  27. <language type="akk">accadi</language>
  28. <language type="ale">aleuta</language>
  29. <language type="alg">llengua algonquina</language>
  30. <language type="alt">altaic meridional</language>
  31. <language type="am">amhàric</language>
  32. <language type="an">aragonès</language>
  33. <language type="ang">anglès antic</language>
  34. <language type="anp">angika</language>
  35. <language type="apa">llengua apatxe</language>
  36. <language type="ar">àrab</language>
  37. <language type="arc">arameu</language>
  38. <language type="arn">araucà</language>
  39. <language type="arp">arapaho</language>
  40. <language type="art">llengua artificial</language>
  41. <language type="arw">arauac</language>
  42. <language type="as">assamès</language>
  43. <language type="ast">asturià</language>
  44. <language type="ath">llengua atapascana</language>
  45. <language type="aus">llengua australiana</language>
  46. <language type="av">àvar</language>
  47. <language type="awa">awadhi</language>
  48. <language type="ay">aimara</language>
  49. <language type="az">àzeri</language>
  50. <language type="ba">baixkir</language>
  51. <language type="bad">banda</language>
  52. <language type="bai">bamileké</language>
  53. <language type="bal">balutxi</language>
  54. <language type="ban">balinès</language>
  55. <language type="bas">basa</language>
  56. <language type="bat">llengua bàltica</language>
  57. <language type="be">bielorús</language>
  58. <language type="bej">beja</language>
  59. <language type="bem">bemba</language>
  60. <language type="ber">berber</language>
  61. <language type="bg">búlgar</language>
  62. <language type="bh">bihari</language>
  63. <language type="bho">bhojpuri</language>
  64. <language type="bi">bislama</language>
  65. <language type="bik">bicol</language>
  66. <language type="bin">bini</language>
  67. <language type="bla">blackfoot</language>
  68. <language type="bm">bambara</language>
  69. <language type="bn">bengalí</language>
  70. <language type="bnt">bantu</language>
  71. <language type="bo">tibetà</language>
  72. <language type="br">bretó</language>
  73. <language type="bra">braj</language>
  74. <language type="bs">bosnià</language>
  75. <language type="btk">batak</language>
  76. <language type="bua">buriat</language>
  77. <language type="bug">bugui</language>
  78. <language type="byn">bilin</language>
  79. <language type="ca">català</language>
  80. <language type="cad">caddo</language>
  81. <language type="cai">llengua ameríndia d'Amèrica Central</language>
  82. <language type="car">carib</language>
  83. <language type="cau">llengua caucàsica</language>
  84. <language type="cch">atsam</language>
  85. <language type="ce">txetxè</language>
  86. <language type="ceb">cebuano</language>
  87. <language type="cel">llengua cèltica</language>
  88. <language type="ch">chamorro</language>
  89. <language type="chb">txibtxa</language>
  90. <language type="chg">txagatai</language>
  91. <language type="chk">chuuk</language>
  92. <language type="chm">mari</language>
  93. <language type="chn">pidgin chinook</language>
  94. <language type="cho">choctaw</language>
  95. <language type="chp">chipewyan</language>
  96. <language type="chr">cherokee</language>
  97. <language type="chy">xeienne</language>
  98. <language type="cmc">txam</language>
  99. <language type="co">cors</language>
  100. <language type="cop">copte</language>
  101. <language type="cpe">llengua criolla o pidgin basada en l'anglès</language>
  102. <language type="cpf">llengua criolla o pidgin basada en el francès</language>
  103. <language type="cpp">llengua criolla o pidgin basada en el portuguès</language>
  104. <language type="cr">cree</language>
  105. <language type="crh">tàtar de Crimea</language>
  106. <language type="crp">llengua criolla o pidgin</language>
  107. <language type="cs">txec</language>
  108. <language type="csb">caixubi</language>
  109. <language type="cu">eslau eclesiàstic</language>
  110. <language type="cus">llengua cuixítica</language>
  111. <language type="cv">txuvaix</language>
  112. <language type="cy">gal·lès</language>
  113. <language type="da">danès</language>
  114. <language type="dak">dakota</language>
  115. <language type="dar">darguà</language>
  116. <language type="day">daiak</language>
  117. <language type="de">alemany</language>
  118. <language type="de_AT">alemany austríac</language>
  119. <language type="de_CH">alt alemany suís</language>
  120. <language type="del">delaware</language>
  121. <language type="den">slavey</language>
  122. <language type="dgr">dogrib</language>
  123. <language type="din">dinka</language>
  124. <language type="doi">dogri</language>
  125. <language type="dra">llengua dravídica</language>
  126. <language type="dsb">baix sòrab</language>
  127. <language type="dua">duala</language>
  128. <language type="dum">neerlandès mitjà</language>
  129. <language type="dv">divehi</language>
  130. <language type="dyu">jula</language>
  131. <language type="dz">dzongka</language>
  132. <language type="ee">ewe</language>
  133. <language type="efi">efik</language>
  134. <language type="egy">egipci antic</language>
  135. <language type="eka">ekajuk</language>
  136. <language type="el">grec</language>
  137. <language type="elx">elamita</language>
  138. <language type="en">anglès</language>
  139. <language type="en_AU">anglès australià</language>
  140. <language type="en_CA">anglès canadenc</language>
  141. <language type="en_GB">anglès britànic</language>
  142. <language type="en_US">anglès americà</language>
  143. <language type="enm">anglès mitjà</language>
  144. <language type="eo">esperanto</language>
  145. <language type="es">espanyol</language>
  146. <language type="es_419">espanyol d'Hispanoamèrica</language>
  147. <language type="es_ES">espanyol d'Espanya</language>
  148. <language type="et">estonià</language>
  149. <language type="eu">basc</language>
  150. <language type="ewo">ewondo</language>
  151. <language type="fa">persa</language>
  152. <language type="fan">fang</language>
  153. <language type="fat">fanti</language>
  154. <language type="ff">ful</language>
  155. <language type="fi">finès</language>
  156. <language type="fil">filipí</language>
  157. <language type="fiu">llengua finoúgrica</language>
  158. <language type="fj">fijià</language>
  159. <language type="fo">feroès</language>
  160. <language type="fon">fon</language>
  161. <language type="fr">francès</language>
  162. <language type="fr_CA">francès canadenc</language>
  163. <language type="fr_CH">francès suís</language>
  164. <language type="frm">francès mitjà</language>
  165. <language type="fro">francès antic</language>
  166. <language type="frr">frisó septentrional</language>
  167. <language type="frs">frisó occidental</language>
  168. <language type="fur">friülà</language>
  169. <language type="fy">frisó oriental</language>
  170. <language type="ga">irlandès</language>
  171. <language type="gaa">ga</language>
  172. <language type="gay">gayo</language>
  173. <language type="gba">gbaya</language>
  174. <language type="gd">gaèlic escocès</language>
  175. <language type="gem">llengua germànica</language>
  176. <language type="gez">gueez</language>
  177. <language type="gil">gilbertès</language>
  178. <language type="gl">gallec</language>
  179. <language type="gmh">alt alemany mitjà</language>
  180. <language type="gn">guaraní</language>
  181. <language type="goh">alt alemany antic</language>
  182. <language type="gon">gondi</language>
  183. <language type="gor">gorontalo</language>
  184. <language type="got">gòtic</language>
  185. <language type="grb">grebo</language>
  186. <language type="grc">grec antic</language>
  187. <language type="gsw">alemany suís</language>
  188. <language type="gu">gujarati</language>
  189. <language type="gv">manx</language>
  190. <language type="gwi">gwichin</language>
  191. <language type="ha">haussa</language>
  192. <language type="hai">haida</language>
  193. <language type="haw">hawaià</language>
  194. <language type="he">hebreu</language>
  195. <language type="hi">hindi</language>
  196. <language type="hil">hiligainon</language>
  197. <language type="him">himachali</language>
  198. <language type="hit">hitita</language>
  199. <language type="hmn">hmong</language>
  200. <language type="ho">hiri motu</language>
  201. <language type="hr">croat</language>
  202. <language type="hsb">alt sòrab</language>
  203. <language type="ht">haitià</language>
  204. <language type="hu">hongarès</language>
  205. <language type="hup">hupa</language>
  206. <language type="hy">armeni</language>
  207. <language type="hz">herero</language>
  208. <language type="ia">interlingua</language>
  209. <language type="iba">iban</language>
  210. <language type="id">indonesi</language>
  211. <language type="ie">interlingue</language>
  212. <language type="ig">igbo</language>
  213. <language type="ii">yi sichuan</language>
  214. <language type="ijo">ijo</language>
  215. <language type="ik">inupiak</language>
  216. <language type="ilo">ilocà</language>
  217. <language type="inc">llengua índica</language>
  218. <language type="ine">llengua indoeuropea</language>
  219. <language type="inh">ingúix</language>
  220. <language type="io">ido</language>
  221. <language type="ira">llengua irànica</language>
  222. <language type="iro">iroquès</language>
  223. <language type="is">islandès</language>
  224. <language type="it">italià</language>
  225. <language type="iu">inuktitut</language>
  226. <language type="ja">japonès</language>
  227. <language type="jbo">lojban</language>
  228. <language type="jpr">judeopersa</language>
  229. <language type="jrb">judeoàrab</language>
  230. <language type="jv">javanès</language>
  231. <language type="ka">georgià</language>
  232. <language type="kaa">karakalpak</language>
  233. <language type="kab">cabilenc</language>
  234. <language type="kac">katxin</language>
  235. <language type="kaj">jju</language>
  236. <language type="kam">kamba</language>
  237. <language type="kar">karen</language>
  238. <language type="kaw">kawi</language>
  239. <language type="kbd">kabardí</language>
  240. <language type="kcg">tyap</language>
  241. <language type="kfo">koro</language>
  242. <language type="kg">kongo</language>
  243. <language type="kha">khasi</language>
  244. <language type="khi">llengua khoisan</language>
  245. <language type="kho">khotanès</language>
  246. <language type="ki">kikuiu</language>
  247. <language type="kj">kuanyama</language>
  248. <language type="kk">kazakh</language>
  249. <language type="kl">grenlandès</language>
  250. <language type="km">khmer</language>
  251. <language type="kmb">kimbundu</language>
  252. <language type="kn">kannada</language>
  253. <language type="ko">coreà</language>
  254. <language type="kok">konkani</language>
  255. <language type="kos">kosraeà</language>
  256. <language type="kpe">kpelle</language>
  257. <language type="kr">kanuri</language>
  258. <language type="krc">karatxai</language>
  259. <language type="krl">carelià</language>
  260. <language type="kro">kru</language>
  261. <language type="kru">kurukh</language>
  262. <language type="ks">caixmiri</language>
  263. <language type="ku">kurd</language>
  264. <language type="kum">kúmik</language>
  265. <language type="kut">kutenai</language>
  266. <language type="kv">komi</language>
  267. <language type="kw">còrnic</language>
  268. <language type="ky">kirguís</language>
  269. <language type="la">llatí</language>
  270. <language type="lad">ladí</language>
  271. <language type="lah">panjabi occidental</language>
  272. <language type="lam">lamba</language>
  273. <language type="lb">luxemburguès</language>
  274. <language type="lez">lesguià</language>
  275. <language type="lg">ganda</language>
  276. <language type="li">limburguès</language>
  277. <language type="ln">lingala</language>
  278. <language type="lo">laosià</language>
  279. <language type="lol">mongo</language>
  280. <language type="loz">lozi</language>
  281. <language type="lt">lituà</language>
  282. <language type="lu">luba katanga</language>
  283. <language type="lua">luba-lulua</language>
  284. <language type="lui">luisenyo</language>
  285. <language type="lun">lunda</language>
  286. <language type="luo">luo</language>
  287. <language type="lus">mizo</language>
  288. <language type="lv">letó</language>
  289. <language type="mad">madurès</language>
  290. <language type="mag">magahi</language>
  291. <language type="mai">maithili</language>
  292. <language type="mak">makassar</language>
  293. <language type="man">mandinga</language>
  294. <language type="map">llengua austronèsia</language>
  295. <language type="mas">massai</language>
  296. <language type="mdf">mordovià moksa</language>
  297. <language type="mdr">mandar</language>
  298. <language type="men">mende</language>
  299. <language type="mg">malgaix</language>
  300. <language type="mga">gaèlic irlandès mitjà</language>
  301. <language type="mh">marshallès</language>
  302. <language type="mi">maori</language>
  303. <language type="mic">micmac</language>
  304. <language type="min">minangkabau</language>
  305. <language type="mis">llengua miscel·lània</language>
  306. <language type="mk">macedoni</language>
  307. <language type="mkh">llengua monkhmer</language>
  308. <language type="ml">malaialam</language>
  309. <language type="mn">mongol</language>
  310. <language type="mnc">manxú</language>
  311. <language type="mni">manipurí</language>
  312. <language type="mno">llengua manobo</language>
  313. <language type="mo">moldau</language>
  314. <language type="moh">mohawk</language>
  315. <language type="mos">moré</language>
  316. <language type="mr">marathi</language>
  317. <language type="ms">malai</language>
  318. <language type="mt">maltès</language>
  319. <language type="mul">llengües vàries</language>
  320. <language type="mun">llengua munda</language>
  321. <language type="mus">creek</language>
  322. <language type="mwl">mirandès</language>
  323. <language type="mwr">marwari</language>
  324. <language type="my">birmà</language>
  325. <language type="myn">llengua maia</language>
  326. <language type="myv">mordovià erza</language>
  327. <language type="na">nauruà</language>
  328. <language type="nah">nàhuatl</language>
  329. <language type="nai">llengua ameríndia septentrional</language>
  330. <language type="nap">napolità</language>
  331. <language type="nb">noruec bokmål</language>
  332. <language type="nd">ndebele septentrional</language>
  333. <language type="nds">baix alemany</language>
  334. <language type="ne">nepalès</language>
  335. <language type="new">newari</language>
  336. <language type="ng">ndonga</language>
  337. <language type="nia">nias</language>
  338. <language type="nic">llengua nigerokurdufaniana</language>
  339. <language type="niu">niueà</language>
  340. <language type="nl">neerlandès</language>
  341. <language type="nl_BE">flamenc</language>
  342. <language type="nn">noruec nynorsk</language>
  343. <language type="no">noruec</language>
  344. <language type="nog">nogai</language>
  345. <language type="non">nòrdic antic</language>
  346. <language type="nqo">n’Ko</language>
  347. <language type="nr">ndebele meridional</language>
  348. <language type="nso">sotho septentrional</language>
  349. <language type="nub">llengua nubiana</language>
  350. <language type="nv">navaho</language>
  351. <language type="nwc">newari clàssic</language>
  352. <language type="ny">nyanja</language>
  353. <language type="nym">nyamwesi</language>
  354. <language type="nyn">nyankore</language>
  355. <language type="nyo">nyoro</language>
  356. <language type="nzi">nzema</language>
  357. <language type="oc">occità</language>
  358. <language type="oj">ojibwa</language>
  359. <language type="om">oromo</language>
  360. <language type="or">oriya</language>
  361. <language type="os">osset</language>
  362. <language type="osa">osage</language>
  363. <language type="ota">turc otomà</language>
  364. <language type="oto">llengua otomangueana</language>
  365. <language type="pa">panjabi</language>
  366. <language type="paa">llengua papú</language>
  367. <language type="pag">pangasi</language>
  368. <language type="pal">pahlavi</language>
  369. <language type="pam">pampangà</language>
  370. <language type="pap">papiamento</language>
  371. <language type="pau">palauà</language>
  372. <language type="peo">persa antic</language>
  373. <language type="phi">llengua filipina</language>
  374. <language type="phn">fenici</language>
  375. <language type="pi">pali</language>
  376. <language type="pl">polonès</language>
  377. <language type="pon">ponapeà</language>
  378. <language type="pra">pràcrit</language>
  379. <language type="pro">provençal antic</language>
  380. <language type="ps">paixto</language>
  381. <language type="pt">portuguès</language>
  382. <language type="pt_BR">portuguès de Brasil</language>
  383. <language type="pt_PT">portuguès de Portugal</language>
  384. <language type="qu">quètxua</language>
  385. <language type="raj">rajasthani</language>
  386. <language type="rap">rapanui</language>
  387. <language type="rar">rarotongà</language>
  388. <language type="rm">retoromànic</language>
  389. <language type="rn">rundi</language>
  390. <language type="ro">romanès</language>
  391. <language type="roa">llengua romànica</language>
  392. <language type="rom">romaní</language>
  393. <language type="root">arrel</language>
  394. <language type="ru">rus</language>
  395. <language type="rup">aromanès</language>
  396. <language type="rw">ruandès</language>
  397. <language type="sa">sànscrit</language>
  398. <language type="sad">sandawe</language>
  399. <language type="sah">iacut</language>
  400. <language type="sai">llengua ameríndia meridional</language>
  401. <language type="sal">llengua salish</language>
  402. <language type="sam">arameu samarità</language>
  403. <language type="sas">sasak</language>
  404. <language type="sat">santali</language>
  405. <language type="sc">sard</language>
  406. <language type="scn">sicilià</language>
  407. <language type="sco">escocès</language>
  408. <language type="sd">sindhi</language>
  409. <language type="se">sami septentrional</language>
  410. <language type="sel">selkup</language>
  411. <language type="sem">llengua semítica</language>
  412. <language type="sg">sango</language>
  413. <language type="sga">irlandès antic</language>
  414. <language type="sgn">llengua de signes</language>
  415. <language type="sh">serbocroat</language>
  416. <language type="shn">xan</language>
  417. <language type="si">singalès</language>
  418. <language type="sid">sidamo</language>
  419. <language type="sio">llengua sioux</language>
  420. <language type="sit">llengua sinotibetana</language>
  421. <language type="sk">eslovac</language>
  422. <language type="sl">eslovè</language>
  423. <language type="sla">llengua eslava</language>
  424. <language type="sm">samoà</language>
  425. <language type="sma">sami meridional</language>
  426. <language type="smi">llengua sami</language>
  427. <language type="smj">sami lule</language>
  428. <language type="smn">sami d'Inari</language>
  429. <language type="sms">sami skolt</language>
  430. <language type="sn">shona</language>
  431. <language type="snk">soninke</language>
  432. <language type="so">somali</language>
  433. <language type="sog">sogdià</language>
  434. <language type="son">songhai</language>
  435. <language type="sq">albanès</language>
  436. <language type="sr">serbi</language>
  437. <language type="srn">sranan</language>
  438. <language type="srr">serer</language>
  439. <language type="ss">siswati</language>
  440. <language type="ssa">llengua nilosahariana</language>
  441. <language type="st">sotho meridional</language>
  442. <language type="su">sundanès</language>
  443. <language type="suk">sukuma</language>
  444. <language type="sus">susú</language>
  445. <language type="sux">sumeri</language>
  446. <language type="sv">suec</language>
  447. <language type="sw">suahili</language>
  448. <language type="syc">siríac clàssic</language>
  449. <language type="syr">siríac</language>
  450. <language type="ta">tàmil</language>
  451. <language type="tai">llengua tai</language>
  452. <language type="te">telugu</language>
  453. <language type="tem">temne</language>
  454. <language type="ter">terena</language>
  455. <language type="tet">tetun</language>
  456. <language type="tg">tadjik</language>
  457. <language type="th">thai</language>
  458. <language type="ti">tigrinya</language>
  459. <language type="tig">tigre</language>
  460. <language type="tiv">tiv</language>
  461. <language type="tk">turcman</language>
  462. <language type="tkl">tokelauès</language>
  463. <language type="tl">tagàlog</language>
  464. <language type="tlh">klingonià</language>
  465. <language type="tli">tlingit</language>
  466. <language type="tmh">tamazight</language>
  467. <language type="tn">tswana</language>
  468. <language type="to">tongalès</language>
  469. <language type="tog">tonga</language>
  470. <language type="tpi">tok pisin</language>
  471. <language type="tr">turc</language>
  472. <language type="ts">tsonga</language>
  473. <language type="tsi">tsimshià</language>
  474. <language type="tt">tàtar</language>
  475. <language type="tum">tumbuka</language>
  476. <language type="tup">llengua tupí</language>
  477. <language type="tut">llengua altaica</language>
  478. <language type="tvl">tuvaluà</language>
  479. <language type="tw">twi</language>
  480. <language type="ty">tahitià</language>
  481. <language type="tyv">tuvinià</language>
  482. <language type="udm">udmurt</language>
  483. <language type="ug">uigur</language>
  484. <language type="uga">ugarític</language>
  485. <language type="uk">ucraïnès</language>
  486. <language type="umb">umbundu</language>
  487. <language type="und">idioma desconegut o no vàlid</language>
  488. <language type="ur">urdú</language>
  489. <language type="uz">uzbek</language>
  490. <language type="vai">vai</language>
  491. <language type="ve">venda</language>
  492. <language type="vi">vietnamita</language>
  493. <language type="vo">volapük</language>
  494. <language type="vot">vòtic</language>
  495. <language type="wa">való</language>
  496. <language type="wak">llengua wakash</language>
  497. <language type="wal">ameto</language>
  498. <language type="war">waray-waray</language>
  499. <language type="was">washo</language>
  500. <language type="wen">sòrab</language>
  501. <language type="wo">wòlof</language>
  502. <language type="xal">calmuc</language>
  503. <language type="xh">xosa</language>
  504. <language type="yao">yao</language>
  505. <language type="yap">yapeà</language>
  506. <language type="yi">jiddisch</language>
  507. <language type="yo">ioruba</language>
  508. <language type="ypk">llengua iupik</language>
  509. <language type="za">zhuang</language>
  510. <language type="zap">zapoteca</language>
  511. <language type="zbl">símbols Bliss</language>
  512. <language type="zen">zenaga</language>
  513. <language type="zh">xinès</language>
  514. <language type="zh_Hans">xinès simplificat</language>
  515. <language type="zh_Hant">xinès tradicional</language>
  516. <language type="znd">zande</language>
  517. <language type="zu">zulu</language>
  518. <language type="zun">zuni</language>
  519. <language type="zxx">sense contingut lingüístic</language>
  520. <language type="zza">zaza</language>
  521. </languages>
  522. <scripts>
  523. <script type="Arab">àrab</script>
  524. <script type="Armi">arameu imperial</script>
  525. <script type="Armn">armeni</script>
  526. <script type="Avst">avèstic</script>
  527. <script type="Bali">balinès</script>
  528. <script type="Batk">batak</script>
  529. <script type="Beng">bengalí</script>
  530. <script type="Blis">símbols Bliss</script>
  531. <script type="Bopo">bopomofo</script>
  532. <script type="Brah">brahmi</script>
  533. <script type="Brai">braille</script>
  534. <script type="Bugi">buginès</script>
  535. <script type="Buhd">buhid</script>
  536. <script type="Cakm">chakma</script>
  537. <script type="Cans">síl·labes dels aborígens canadencs unificats</script>
  538. <script type="Cari">carià</script>
  539. <script type="Cham">cham</script>
  540. <script type="Cher">cherokee</script>
  541. <script type="Cirt">cirth</script>
  542. <script type="Copt">copte</script>
  543. <script type="Cprt">xipriota</script>
  544. <script type="Cyrl">ciríl·lic</script>
  545. <script type="Cyrs">ciríl·lic de l'antic eslau eclesiàstic</script>
  546. <script type="Deva">devanagari</script>
  547. <script type="Dsrt">deseret</script>
  548. <script type="Egyd">demòtic egipci</script>
  549. <script type="Egyh">hieràtic egipci</script>
  550. <script type="Egyp">jeroglífic egipci</script>
  551. <script type="Ethi">etiòpic</script>
  552. <script type="Geok">georgià hucuri</script>
  553. <script type="Geor">georgià</script>
  554. <script type="Glag">glagolític</script>
  555. <script type="Goth">gòtic</script>
  556. <script type="Grek">grec</script>
  557. <script type="Gujr">gujarati</script>
  558. <script type="Guru">gurmukhi</script>
  559. <script type="Hang">hangul</script>
  560. <script type="Hani">han</script>
  561. <script type="Hano">hanunoo</script>
  562. <script type="Hans">xinès simplificat</script>
  563. <script type="Hant">xinès tradicional</script>
  564. <script type="Hebr">hebreu</script>
  565. <script type="Hira">hiragana</script>
  566. <script type="Hmng">pahawh hmong</script>
  567. <script type="Hrkt">katakana o hiragana</script>
  568. <script type="Hung">hongarès antic</script>
  569. <script type="Inds">escriptura de la vall de l'Indus</script>
  570. <script type="Ital">cursiva antiga</script>
  571. <script type="Java">javanès</script>
  572. <script type="Jpan">japonès</script>
  573. <script type="Kali">kayah li</script>
  574. <script type="Kana">katakana</script>
  575. <script type="Khar">kharosthi</script>
  576. <script type="Khmr">khmer</script>
  577. <script type="Knda">kannada</script>
  578. <script type="Kore">coreà</script>
  579. <script type="Kthi">kaithi</script>
  580. <script type="Lana">lanna</script>
  581. <script type="Laoo">lao</script>
  582. <script type="Latf">llatí fraktur</script>
  583. <script type="Latg">llatí gaèlic</script>
  584. <script type="Latn">llatí</script>
  585. <script type="Lepc">lepcha</script>
  586. <script type="Limb">limbu</script>
  587. <script type="Lina">lineal A</script>
  588. <script type="Linb">lineal B</script>
  589. <script type="Lyci">lici</script>
  590. <script type="Lydi">lidi</script>
  591. <script type="Mand">mandaic</script>
  592. <script type="Mani">maniqueu</script>
  593. <script type="Maya">jeroglífics maies</script>
  594. <script type="Mero">meroític</script>
  595. <script type="Mlym">malaialam</script>
  596. <script type="Mong">mongol</script>
  597. <script type="Moon">moon</script>
  598. <script type="Mtei">manipurí</script>
  599. <script type="Mymr">birmà</script>
  600. <script type="Nkoo">n’Ko</script>
  601. <script type="Ogam">ogham</script>
  602. <script type="Olck">santali</script>
  603. <script type="Orkh">orkhon</script>
  604. <script type="Orya">oriya</script>
  605. <script type="Osma">osmanya</script>
  606. <script type="Perm">antic pèrmic</script>
  607. <script type="Phag">phagspa</script>
  608. <script type="Phli">pahlavi inscripcional</script>
  609. <script type="Phlp">psalter pahlavi</script>
  610. <script type="Phlv">pahlavi</script>
  611. <script type="Phnx">fenici</script>
  612. <script type="Plrd">Pollard Miao</script>
  613. <script type="Prti">parthià inscripcional</script>
  614. <script type="Qaai">heretat</script>
  615. <script type="Rjng">rejang</script>
  616. <script type="Roro">rongo-rongo</script>
  617. <script type="Runr">rúnic</script>
  618. <script type="Samr">samarità</script>
  619. <script type="Sara">sarati</script>
  620. <script type="Saur">saurashtra</script>
  621. <script type="Sgnw">SignWriting</script>
  622. <script type="Shaw">shavià</script>
  623. <script type="Sinh">singalès</script>
  624. <script type="Sund">sundanès</script>
  625. <script type="Sylo">syloti nagri</script>
  626. <script type="Syrc">siríac</script>
  627. <script type="Syre">siríac estrangelo</script>
  628. <script type="Syrj">siríac occidental</script>
  629. <script type="Syrn">siríac oriental</script>
  630. <script type="Tagb">tagbanwa</script>
  631. <script type="Tale">tai le</script>
  632. <script type="Talu">nou tai lue</script>
  633. <script type="Taml">tàmil</script>
  634. <script type="Tavt">tai viet</script>
  635. <script type="Telu">telugu</script>
  636. <script type="Teng">tengwar</script>
  637. <script type="Tfng">tifinagh</script>
  638. <script type="Tglg">tagàlog</script>
  639. <script type="Thaa">thaana</script>
  640. <script type="Thai">tailandès</script>
  641. <script type="Tibt">tibetà</script>
  642. <script type="Ugar">ugarític</script>
  643. <script type="Vaii">vai</script>
  644. <script type="Visp">llenguatge visible</script>
  645. <script type="Xpeo">persa antic</script>
  646. <script type="Xsux">cuneïforme sumeri-accadi</script>
  647. <script type="Yiii">yi</script>
  648. <script type="Zmth">notació matemàtica</script>
  649. <script type="Zsym">símbols</script>
  650. <script type="Zxxx">sense escriptura</script>
  651. <script type="Zyyy">comú</script>
  652. <script type="Zzzz">escriptura desconeguda o no vàlida</script>
  653. </scripts>
  654. <territories>
  655. <territory type="001">Món</territory>
  656. <territory type="002">Àfrica</territory>
  657. <territory type="003">Amèrica del Nord</territory>
  658. <territory type="005">Amèrica del Sud</territory>
  659. <territory type="009">Oceania</territory>
  660. <territory type="011">Àfrica Occidental</territory>
  661. <territory type="013">Amèrica Central</territory>
  662. <territory type="014">Àfrica Oriental</territory>
  663. <territory type="015">Àfrica septentrional</territory>
  664. <territory type="017">Àfrica Central</territory>
  665. <territory type="018">Àfrica meridional</territory>
  666. <territory type="019">Amèrica</territory>
  667. <territory type="021">Amèrica septentrional</territory>
  668. <territory type="029">Carib</territory>
  669. <territory type="030">Àsia Oriental</territory>
  670. <territory type="034">Àsia meridional</territory>
  671. <territory type="035">Àsia Sud-oriental</territory>
  672. <territory type="039">Europa meridional</territory>
  673. <territory type="053">Austràlia i Nova Zelanda</territory>
  674. <territory type="054">Melanèsia</territory>
  675. <territory type="057">Regió de la Micronèsia</territory>
  676. <territory type="061">Polinèsia</territory>
  677. <territory type="062">Àsia Sud-central</territory>
  678. <territory type="142">Àsia</territory>
  679. <territory type="143">Àsia Central</territory>
  680. <territory type="145">Àsia Occidental</territory>
  681. <territory type="150">Europa</territory>
  682. <territory type="151">Europa Oriental</territory>
  683. <territory type="154">Europa septentrional</territory>
  684. <territory type="155">Europa Occidental</territory>
  685. <territory type="172">Comunitat d'Estats Independents</territory>
  686. <territory type="419">Amèrica Llatina i Carib</territory>
  687. <territory type="AD">Andorra</territory>
  688. <territory type="AE">Unió dels Emirats Àrabs</territory>
  689. <territory type="AF">Afganistan</territory>
  690. <territory type="AG">Antigua i Barbuda</territory>
  691. <territory type="AI">Anguilla</territory>
  692. <territory type="AL">Albània</territory>
  693. <territory type="AM">Armènia</territory>
  694. <territory type="AN">Antilles Neerlandeses</territory>
  695. <territory type="AO">Angola</territory>
  696. <territory type="AQ">Antàrtida</territory>
  697. <territory type="AR">Argentina</territory>
  698. <territory type="AS">Samoa Americana</territory>
  699. <territory type="AT">Àustria</territory>
  700. <territory type="AU">Austràlia</territory>
  701. <territory type="AW">Aruba</territory>
  702. <territory type="AX">Illes Åland</territory>
  703. <territory type="AZ">Azerbaidjan</territory>
  704. <territory type="BA">Bòsnia i Hercegovina</territory>
  705. <territory type="BB">Barbados</territory>
  706. <territory type="BD">Bangla Desh</territory>
  707. <territory type="BE">Bèlgica</territory>
  708. <territory type="BF">Burkina Faso</territory>
  709. <territory type="BG">Bulgària</territory>
  710. <territory type="BH">Bahrain</territory>
  711. <territory type="BI">Burundi</territory>
  712. <territory type="BJ">Benín</territory>
  713. <territory type="BL">Saint Barthélemy</territory>
  714. <territory type="BM">Bermudes</territory>
  715. <territory type="BN">Brunei</territory>
  716. <territory type="BO">Bolívia</territory>
  717. <territory type="BR">Brasil</territory>
  718. <territory type="BS">Bahames</territory>
  719. <territory type="BT">Bhutan</territory>
  720. <territory type="BV">Illa Bouvet</territory>
  721. <territory type="BW">Botswana</territory>
  722. <territory type="BY">Bielorússia</territory>
  723. <territory type="BZ">Belize</territory>
  724. <territory type="CA">Canadà</territory>
  725. <territory type="CC">Illes Cocos</territory>
  726. <territory type="CD">República Democràtica del Congo</territory>
  727. <territory type="CF">República Centreafricana</territory>
  728. <territory type="CG">Congo</territory>
  729. <territory type="CH">Suïssa</territory>
  730. <territory type="CI">Costa d’Ivori</territory>
  731. <territory type="CK">Illes Cook</territory>
  732. <territory type="CL">Xile</territory>
  733. <territory type="CM">Camerun</territory>
  734. <territory type="CN">Xina</territory>
  735. <territory type="CO">Colòmbia</territory>
  736. <territory type="CR">Costa Rica</territory>
  737. <territory type="CS">Sèrbia i Montenegro</territory>
  738. <territory type="CU">Cuba</territory>
  739. <territory type="CV">Cap Verd</territory>
  740. <territory type="CX">Illa Christmas</territory>
  741. <territory type="CY">Xipre</territory>
  742. <territory type="CZ">República Txeca</territory>
  743. <territory type="DE">Alemanya</territory>
  744. <territory type="DJ">Djibouti</territory>
  745. <territory type="DK">Dinamarca</territory>
  746. <territory type="DM">Dominica</territory>
  747. <territory type="DO">República Dominicana</territory>
  748. <territory type="DZ">Algèria</territory>
  749. <territory type="EC">Equador</territory>
  750. <territory type="EE">Estònia</territory>
  751. <territory type="EG">Egipte</territory>
  752. <territory type="EH">Sàhara Occidental</territory>
  753. <territory type="ER">Eritrea</territory>
  754. <territory type="ES">Espanya</territory>
  755. <territory type="ET">Etiòpia</territory>
  756. <territory type="FI">Finlàndia</territory>
  757. <territory type="FJ">Fiji</territory>
  758. <territory type="FK">Illes Malvines</territory>
  759. <territory type="FM">Micronèsia</territory>
  760. <territory type="FO">Illes Fèroe</territory>
  761. <territory type="FR">França</territory>
  762. <territory type="GA">Gabon</territory>
  763. <territory type="GB">Regne Unit</territory>
  764. <territory type="GD">Grenada</territory>
  765. <territory type="GE">Geòrgia</territory>
  766. <territory type="GF">Guaiana Francesa</territory>
  767. <territory type="GG">Guernsey</territory>
  768. <territory type="GH">Ghana</territory>
  769. <territory type="GI">Gibraltar</territory>
  770. <territory type="GL">Grenlàndia</territory>
  771. <territory type="GM">Gàmbia</territory>
  772. <territory type="GN">Guinea</territory>
  773. <territory type="GP">Guadeloupe</territory>
  774. <territory type="GQ">Guinea Equatorial</territory>
  775. <territory type="GR">Grècia</territory>
  776. <territory type="GS">Illes Geòrgia del Sud i Sandwich del Sud</territory>
  777. <territory type="GT">Guatemala</territory>
  778. <territory type="GU">Guam</territory>
  779. <territory type="GW">Guinea Bissau</territory>
  780. <territory type="GY">Guyana</territory>
  781. <territory type="HK">Regió administrativa especial xinesa de Hong Kong</territory>
  782. <territory type="HM">Illa Heard i Illes McDonald</territory>
  783. <territory type="HN">Hondures</territory>
  784. <territory type="HR">Croàcia</territory>
  785. <territory type="HT">Haití</territory>
  786. <territory type="HU">Hongria</territory>
  787. <territory type="ID">Indonèsia</territory>
  788. <territory type="IE">Irlanda</territory>
  789. <territory type="IL">Israel</territory>
  790. <territory type="IM">Illa de Man</territory>
  791. <territory type="IN">Índia</territory>
  792. <territory type="IO">Territori Britànic de l'Oceà Índic</territory>
  793. <territory type="IQ">Iraq</territory>
  794. <territory type="IR">Iran</territory>
  795. <territory type="IS">Islàndia</territory>
  796. <territory type="IT">Itàlia</territory>
  797. <territory type="JE">Jersey</territory>
  798. <territory type="JM">Jamaica</territory>
  799. <territory type="JO">Jordània</territory>
  800. <territory type="JP">Japó</territory>
  801. <territory type="KE">Kenya</territory>
  802. <territory type="KG">Kirguizistan</territory>
  803. <territory type="KH">Cambodja</territory>
  804. <territory type="KI">Kiribati</territory>
  805. <territory type="KM">Comores</territory>
  806. <territory type="KN">Saint Christopher i Nevis</territory>
  807. <territory type="KP">Corea del Nord</territory>
  808. <territory type="KR">Corea del Sud</territory>
  809. <territory type="KW">Kuwait</territory>
  810. <territory type="KY">Illes Caiman</territory>
  811. <territory type="KZ">Kazakhstan</territory>
  812. <territory type="LA">Laos</territory>
  813. <territory type="LB">Líban</territory>
  814. <territory type="LC">Saint Lucia</territory>
  815. <territory type="LI">Liechtenstein</territory>
  816. <territory type="LK">Sri Lanka</territory>
  817. <territory type="LR">Libèria</territory>
  818. <territory type="LS">Lesotho</territory>
  819. <territory type="LT">Lituània</territory>
  820. <territory type="LU">Luxemburg</territory>
  821. <territory type="LV">Letònia</territory>
  822. <territory type="LY">Líbia</territory>
  823. <territory type="MA">Marroc</territory>
  824. <territory type="MC">Mònaco</territory>
  825. <territory type="MD">Moldàvia</territory>
  826. <territory type="ME">Montenegro</territory>
  827. <territory type="MF">Saint Martin</territory>
  828. <territory type="MG">Madagascar</territory>
  829. <territory type="MH">Illes Marshall</territory>
  830. <territory type="MK">Macedònia</territory>
  831. <territory type="ML">Mali</territory>
  832. <territory type="MM">Myanmar</territory>
  833. <territory type="MN">Mongòlia</territory>
  834. <territory type="MO">Regió administrativa especial xinesa de Macau</territory>
  835. <territory type="MP">Illes Mariannes del Nord</territory>
  836. <territory type="MQ">Martinica</territory>
  837. <territory type="MR">Mauritània</territory>
  838. <territory type="MS">Montserrat</territory>
  839. <territory type="MT">Malta</territory>
  840. <territory type="MU">Maurici</territory>
  841. <territory type="MV">Maldives</territory>
  842. <territory type="MW">Malawi</territory>
  843. <territory type="MX">Mèxic</territory>
  844. <territory type="MY">Malàisia</territory>
  845. <territory type="MZ">Moçambic</territory>
  846. <territory type="NA">Namíbia</territory>
  847. <territory type="NC">Nova Caledònia</territory>
  848. <territory type="NE">Níger</territory>
  849. <territory type="NF">Illa Norfolk</territory>
  850. <territory type="NG">Nigèria</territory>
  851. <territory type="NI">Nicaragua</territory>
  852. <territory type="NL">Països Baixos</territory>
  853. <territory type="NO">Noruega</territory>
  854. <territory type="NP">Nepal</territory>
  855. <territory type="NR">Nauru</territory>
  856. <territory type="NU">Niue</territory>
  857. <territory type="NZ">Nova Zelanda</territory>
  858. <territory type="OM">Oman</territory>
  859. <territory type="PA">Panamà</territory>
  860. <territory type="PE">Perú</territory>
  861. <territory type="PF">Polinèsia Francesa</territory>
  862. <territory type="PG">Papua Nova Guinea</territory>
  863. <territory type="PH">Filipines</territory>
  864. <territory type="PK">Pakistan</territory>
  865. <territory type="PL">Polònia</territory>
  866. <territory type="PM">Saint Pierre i Miquelon</territory>
  867. <territory type="PN">Illes Pitcairn</territory>
  868. <territory type="PR">Puerto Rico</territory>
  869. <territory type="PS">Palestina</territory>
  870. <territory type="PT">Portugal</territory>
  871. <territory type="PW">Palau</territory>
  872. <territory type="PY">Paraguai</territory>
  873. <territory type="QA">Qatar</territory>
  874. <territory type="QO">Territoris allunyats d'Oceania</territory>
  875. <territory type="QU">Unió Europea</territory>
  876. <territory type="RE">Illa de la Reunió</territory>
  877. <territory type="RO">Romania</territory>
  878. <territory type="RS">Sèrbia</territory>
  879. <territory type="RU">Rússia</territory>
  880. <territory type="RW">Rwanda</territory>
  881. <territory type="SA">Aràbia Saudita</territory>
  882. <territory type="SB">Illes Salomó</territory>
  883. <territory type="SC">Seychelles</territory>
  884. <territory type="SD">Sudan</territory>
  885. <territory type="SE">Suècia</territory>
  886. <territory type="SG">Singapur</territory>
  887. <territory type="SH">Saint Helena</territory>
  888. <territory type="SI">Eslovènia</territory>
  889. <territory type="SJ">Svalbard i Jan Mayen</territory>
  890. <territory type="SK">Eslovàquia</territory>
  891. <territory type="SL">Sierra Leone</territory>
  892. <territory type="SM">San Marino</territory>
  893. <territory type="SN">Senegal</territory>
  894. <territory type="SO">Somàlia</territory>
  895. <territory type="SR">Surinam</territory>
  896. <territory type="ST">São Tomé i Príncipe</territory>
  897. <territory type="SV">El Salvador</territory>
  898. <territory type="SY">Síria</territory>
  899. <territory type="SZ">Swazilàndia</territory>
  900. <territory type="TC">Illes Turks i Caicos</territory>
  901. <territory type="TD">Txad</territory>
  902. <territory type="TF">Territoris Francesos del Sud</territory>
  903. <territory type="TG">Togo</territory>
  904. <territory type="TH">Tailàndia</territory>
  905. <territory type="TJ">Tadjikistan</territory>
  906. <territory type="TK">Tokelau</territory>
  907. <territory type="TL">Timor Oriental</territory>
  908. <territory type="TM">Turkmenistan</territory>
  909. <territory type="TN">Tunísia</territory>
  910. <territory type="TO">Tonga</territory>
  911. <territory type="TR">Turquia</territory>
  912. <territory type="TT">Trinitat i Tobago</territory>
  913. <territory type="TV">Tuvalu</territory>
  914. <territory type="TW">Taiwan</territory>
  915. <territory type="TZ">Tanzània</territory>
  916. <territory type="UA">Ucraïna</territory>
  917. <territory type="UG">Uganda</territory>
  918. <territory type="UM">Illes Perifèriques Menors dels EUA</territory>
  919. <territory type="US">Estats Units</territory>
  920. <territory type="UY">Uruguai</territory>
  921. <territory type="UZ">Uzbekistan</territory>
  922. <territory type="VA">Vaticà</territory>
  923. <territory type="VC">Saint Vincent i les Grenadines</territory>
  924. <territory type="VE">Veneçuela</territory>
  925. <territory type="VG">Illes Verges Britàniques</territory>
  926. <territory type="VI">Illes Verges Nord-americanes</territory>
  927. <territory type="VN">Vietnam</territory>
  928. <territory type="VU">Vanuatu</territory>
  929. <territory type="WF">Wallis i Futuna</territory>
  930. <territory type="WS">Samoa</territory>
  931. <territory type="YE">Iemen</territory>
  932. <territory type="YT">Mayotte</territory>
  933. <territory type="ZA">República de Sud-àfrica</territory>
  934. <territory type="ZM">Zàmbia</territory>
  935. <territory type="ZW">Zimbabwe</territory>
  936. <territory type="ZZ">Regió desconeguda o no vàlida</territory>
  937. </territories>
  938. <variants>
  939. <variant type="1901">ortografia alemanya tradicional</variant>
  940. <variant type="1994">ortofrafia resiana estandarditzada</variant>
  941. <variant type="1996">ortografia alemanya de 1996</variant>
  942. <variant type="1606NICT">francès mitjà tardà fins el 1606</variant>
  943. <variant type="1694ACAD">francès modern primerenc</variant>
  944. <variant type="AREVELA">armeni oriental</variant>
  945. <variant type="AREVMDA">armeni occidental</variant>
  946. <variant type="BAKU1926">alfabet llatí turc unificat</variant>
  947. <variant type="BISKE">dialecte de San Giorgio/Bila</variant>
  948. <variant type="BOONT">Boontling</variant>
  949. <variant type="FONIPA">alfabet fonètic internacional</variant>
  950. <variant type="FONUPA">sistema fonètic UPA</variant>
  951. <variant type="LIPAW">dialecte Lipovaz del resià</variant>
  952. <variant type="MONOTON">monotònic</variant>
  953. <variant type="NEDIS">dialecte de Natisone</variant>
  954. <variant type="NJIVA">dialecte de Gniva/Njiva</variant>
  955. <variant type="OSOJS">dialecte d'Oseacco/Osojane</variant>
  956. <variant type="POLYTON">politònic</variant>
  957. <variant type="POSIX">ordenador</variant>
  958. <variant type="REVISED">ortografia revisada</variant>
  959. <variant type="ROZAJ">resià</variant>
  960. <variant type="SAAHO">saho</variant>
  961. <variant type="SCOTLAND">anglès estàndard d'Escòcia</variant>
  962. <variant type="SCOUSE">scouse</variant>
  963. <variant type="SOLBA">dialecte de Stolvizza/Solbica</variant>
  964. <variant type="TARASK">ortografia taraskievica</variant>
  965. <variant type="VALENCIA">valencià</variant>
  966. </variants>
  967. <keys>
  968. <key type="calendar">calendari</key>
  969. <key type="collation">ordre alfabètic</key>
  970. <key type="currency">moneda</key>
  971. </keys>
  972. <types>
  973. <type type="big5han" key="collation">ordre del xinès tradicional - Big5</type>
  974. <type type="buddhist" key="calendar">calendari budista</type>
  975. <type type="chinese" key="calendar">calendari xinès</type>
  976. <type type="direct" key="collation">ordre directe</type>
  977. <type type="gb2312han" key="collation">ordre del xinès simplificat - GB2312</type>
  978. <type type="gregorian" key="calendar">calendari gregorià</type>
  979. <type type="hebrew" key="calendar">calendari hebreu</type>
  980. <type type="indian" key="calendar">calendari hindú</type>
  981. <type type="islamic" key="calendar">calendari musulmà</type>
  982. <type type="islamic-civil" key="calendar">calendari civil islàmic</type>
  983. <type type="japanese" key="calendar">calendari japonès</type>
  984. <type type="phonebook" key="collation">ordre de la guia telefònica</type>
  985. <type type="pinyin" key="collation">ordre pinyin</type>
  986. <type type="roc" key="calendar">calendari de la República Popular de Xina</type>
  987. <type type="stroke" key="collation">ordre dels traços</type>
  988. <type type="traditional" key="collation">ordre tradicional</type>
  989. </types>
  990. <measurementSystemNames>
  991. <measurementSystemName type="metric">mètric</measurementSystemName>
  992. <measurementSystemName type="US">imperial</measurementSystemName>
  993. </measurementSystemNames>
  994. <codePatterns>
  995. <codePattern type="language">Idioma: {0}</codePattern>
  996. <codePattern type="script">Escriptura: {0}</codePattern>
  997. <codePattern type="territory">Regió: {0}</codePattern>
  998. </codePatterns>
  999. </localeDisplayNames>
  1000. <characters>
  1001. <exemplarCharacters>[a à b c ç d e é è f-i í ï j-l ŀ m-o ó ò p-u ú ü v-z]</exemplarCharacters>
  1002. <exemplarCharacters type="auxiliary">[á ă â å ä ã ā æ ĕ ê ë ē ì ĭ î ī ñ º ŏ ô ö ø ō œ ß ù ŭ û ū ÿ]</exemplarCharacters>
  1003. <exemplarCharacters type="currencySymbol">[a-c č d-l ł m-o º p-z]</exemplarCharacters>
  1004. </characters>
  1005. <delimiters>
  1006. <quotationStart>‘</quotationStart>
  1007. <quotationEnd>’</quotationEnd>
  1008. <alternateQuotationStart>“</alternateQuotationStart>
  1009. <alternateQuotationEnd>”</alternateQuotationEnd>
  1010. </delimiters>
  1011. <dates>
  1012. <calendars>
  1013. <calendar type="gregorian">
  1014. <months>
  1015. <monthContext type="format">
  1016. <monthWidth type="abbreviated">
  1017. <month type="1">gen.</month>
  1018. <month type="2">febr.</month>
  1019. <month type="3">març</month>
  1020. <month type="4">abr.</month>
  1021. <month type="5">maig</month>
  1022. <month type="6">juny</month>
  1023. <month type="7">jul.</month>
  1024. <month type="8">ag.</month>
  1025. <month type="9">set.</month>
  1026. <month type="10">oct.</month>
  1027. <month type="11">nov.</month>
  1028. <month type="12">des.</month>
  1029. </monthWidth>
  1030. <monthWidth type="wide">
  1031. <month type="1">gener</month>
  1032. <month type="2">febrer</month>
  1033. <month type="3">març</month>
  1034. <month type="4">abril</month>
  1035. <month type="5">maig</month>
  1036. <month type="6">juny</month>
  1037. <month type="7">juliol</month>
  1038. <month type="8">agost</month>
  1039. <month type="9">setembre</month>
  1040. <month type="10">octubre</month>
  1041. <month type="11">novembre</month>
  1042. <month type="12">desembre</month>
  1043. </monthWidth>
  1044. </monthContext>
  1045. <monthContext type="stand-alone">
  1046. <monthWidth type="narrow">
  1047. <month type="1">g</month>
  1048. <month type="2">f</month>
  1049. <month type="3">m</month>
  1050. <month type="4">a</month>
  1051. <month type="5">m</month>
  1052. <month type="6">j</month>
  1053. <month type="7">j</month>
  1054. <month type="8">a</month>
  1055. <month type="9">s</month>
  1056. <month type="10">o</month>
  1057. <month type="11">n</month>
  1058. <month type="12">d</month>
  1059. </monthWidth>
  1060. </monthContext>
  1061. </months>
  1062. <days>
  1063. <dayContext type="format">
  1064. <dayWidth type="abbreviated">
  1065. <day type="sun">dg.</day>
  1066. <day type="mon">dl.</day>
  1067. <day type="tue">dt.</day>
  1068. <day type="wed">dc.</day>
  1069. <day type="thu">dj.</day>
  1070. <day type="fri">dv.</day>
  1071. <day type="sat">ds.</day>
  1072. </dayWidth>
  1073. <dayWidth type="wide">
  1074. <day type="sun">diumenge</day>
  1075. <day type="mon">dilluns</day>
  1076. <day type="tue">dimarts</day>
  1077. <day type="wed">dimecres</day>
  1078. <day type="thu">dijous</day>
  1079. <day type="fri">divendres</day>
  1080. <day type="sat">dissabte</day>
  1081. </dayWidth>
  1082. </dayContext>
  1083. <dayContext type="stand-alone">
  1084. <dayWidth type="abbreviated">
  1085. <day type="sun">dg</day>
  1086. <day type="mon">dl</day>
  1087. <day type="tue">dt</day>
  1088. <day type="wed">dc</day>
  1089. <day type="thu">dj</day>
  1090. <day type="fri">dv</day>
  1091. <day type="sat">ds</day>
  1092. </dayWidth>
  1093. <dayWidth type="narrow">
  1094. <day type="sun">g</day>
  1095. <day type="mon">l</day>
  1096. <day type="tue">t</day>
  1097. <day type="wed">c</day>
  1098. <day type="thu">j</day>
  1099. <day type="fri">v</day>
  1100. <day type="sat">s</day>
  1101. </dayWidth>
  1102. </dayContext>
  1103. </days>
  1104. <quarters>
  1105. <quarterContext type="format">
  1106. <quarterWidth type="abbreviated">
  1107. <quarter type="1">1T</quarter>
  1108. <quarter type="2">2T</quarter>
  1109. <quarter type="3">3T</quarter>
  1110. <quarter type="4">4T</quarter>
  1111. </quarterWidth>
  1112. <quarterWidth type="wide">
  1113. <quarter type="1">1r trimestre</quarter>
  1114. <quarter type="2">2n trimestre</quarter>
  1115. <quarter type="3">3r trimestre</quarter>
  1116. <quarter type="4">4t trimestre</quarter>
  1117. </quarterWidth>
  1118. </quarterContext>
  1119. <quarterContext type="stand-alone">
  1120. <quarterWidth type="narrow">
  1121. <quarter type="1">1</quarter>
  1122. <quarter type="2">2</quarter>
  1123. <quarter type="3">3</quarter>
  1124. <quarter type="4">4</quarter>
  1125. </quarterWidth>
  1126. </quarterContext>
  1127. </quarters>
  1128. <am>a.m.</am>
  1129. <pm>p.m.</pm>
  1130. <eras>
  1131. <eraAbbr>
  1132. <era type="0">aC</era>
  1133. <era type="1">dC</era>
  1134. </eraAbbr>
  1135. </eras>
  1136. <dateFormats>
  1137. <dateFormatLength type="full">
  1138. <dateFormat>
  1139. <pattern>EEEE d 'de' MMMM 'de' y</pattern>
  1140. </dateFormat>
  1141. </dateFormatLength>
  1142. <dateFormatLength type="long">
  1143. <dateFormat>
  1144. <pattern>d 'de' MMMM 'de' y</pattern>
  1145. </dateFormat>
  1146. </dateFormatLength>
  1147. <dateFormatLength type="medium">
  1148. <dateFormat>
  1149. <pattern>dd/MM/yyyy</pattern>
  1150. </dateFormat>
  1151. </dateFormatLength>
  1152. <dateFormatLength type="short">
  1153. <dateFormat>
  1154. <pattern>dd/MM/yy</pattern>
  1155. </dateFormat>
  1156. </dateFormatLength>
  1157. </dateFormats>
  1158. <timeFormats>
  1159. <timeFormatLength type="full">
  1160. <timeFormat>
  1161. <pattern>H:mm:ss zzzz</pattern>
  1162. </timeFormat>
  1163. </timeFormatLength>
  1164. <timeFormatLength type="long">
  1165. <timeFormat>
  1166. <pattern>H:mm:ss z</pattern>
  1167. </timeFormat>
  1168. </timeFormatLength>
  1169. <timeFormatLength type="medium">
  1170. <timeFormat>
  1171. <pattern>H:mm:ss</pattern>
  1172. </timeFormat>
  1173. </timeFormatLength>
  1174. <timeFormatLength type="short">
  1175. <timeFormat>
  1176. <pattern>H:mm</pattern>
  1177. </timeFormat>
  1178. </timeFormatLength>
  1179. </timeFormats>
  1180. <dateTimeFormats>
  1181. <availableFormats>
  1182. <dateFormatItem id="d">d</dateFormatItem>
  1183. <dateFormatItem id="EEEd">EEE d</dateFormatItem>
  1184. <dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
  1185. <dateFormatItem id="Hm">H:mm</dateFormatItem>
  1186. <dateFormatItem id="M">L</dateFormatItem>
  1187. <dateFormatItem id="Md">d/M</dateFormatItem>
  1188. <dateFormatItem id="MEd">E d/M</dateFormatItem>
  1189. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1190. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  1191. <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
  1192. <dateFormatItem id="MMMMd">d 'de' MMMM</dateFormatItem>
  1193. <dateFormatItem id="MMMMEd">E d MMMM</dateFormatItem>
  1194. <dateFormatItem id="mmss">mm:ss</dateFormatItem>
  1195. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1196. <dateFormatItem id="y">y</dateFormatItem>
  1197. <dateFormatItem id="yM">M/yyyy</dateFormatItem>
  1198. <dateFormatItem id="yMEd">E d/M/yyyy</dateFormatItem>
  1199. <dateFormatItem id="yMMM">MMM y</dateFormatItem>
  1200. <dateFormatItem id="yMMMEd">EEE d MMM y</dateFormatItem>
  1201. <dateFormatItem id="yMMMM">LLLL 'del' y</dateFormatItem>
  1202. <dateFormatItem id="yQ">Q yyyy</dateFormatItem>
  1203. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  1204. <dateFormatItem id="yyQ">Q yy</dateFormatItem>
  1205. <dateFormatItem id="yyyyMM">MM/yyyy</dateFormatItem>
  1206. </availableFormats>
  1207. <intervalFormats>
  1208. <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
  1209. <intervalFormatItem id="d">
  1210. <greatestDifference id="d">d-d</greatestDifference>
  1211. </intervalFormatItem>
  1212. <intervalFormatItem id="h">
  1213. <greatestDifference id="a">HH-HH</greatestDifference>
  1214. <greatestDifference id="h">H-H</greatestDifference>
  1215. </intervalFormatItem>
  1216. <intervalFormatItem id="hm">
  1217. <greatestDifference id="a">HH:mm-HH:mm</greatestDifference>
  1218. <greatestDifference id="h">HH:mm-HH:mm</greatestDifference>
  1219. <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
  1220. </intervalFormatItem>
  1221. <intervalFormatItem id="hmv">
  1222. <greatestDifference id="a">HH:mm-HH:mm v</greatestDifference>
  1223. <greatestDifference id="h">HH:mm-HH:mm v</greatestDifference>
  1224. <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
  1225. </intervalFormatItem>
  1226. <intervalFormatItem id="hv">
  1227. <greatestDifference id="a">HH-HH v</greatestDifference>
  1228. <greatestDifference id="h">H-H v</greatestDifference>
  1229. </intervalFormatItem>
  1230. <intervalFormatItem id="M">
  1231. <greatestDifference id="M">M-M</greatestDifference>
  1232. </intervalFormatItem>
  1233. <intervalFormatItem id="Md">
  1234. <greatestDifference id="d">dd/MM - dd/MM</greatestDifference>
  1235. <greatestDifference id="M">dd/MM - dd/MM</greatestDifference>
  1236. </intervalFormatItem>
  1237. <intervalFormatItem id="MEd">
  1238. <greatestDifference id="d">E dd/MM - E dd/MM</greatestDifference>
  1239. <greatestDifference id="M">E dd/MM - E dd/MM</greatestDifference>
  1240. </intervalFormatItem>
  1241. <intervalFormatItem id="MMM">
  1242. <greatestDifference id="M">MMM-MMM</greatestDifference>
  1243. </intervalFormatItem>
  1244. <intervalFormatItem id="MMMd">
  1245. <greatestDifference id="d">d-d 'de' MMM</greatestDifference>
  1246. <greatestDifference id="M">d 'de' MMM - d 'de' MMM</greatestDifference>
  1247. </intervalFormatItem>
  1248. <intervalFormatItem id="MMMEd">
  1249. <greatestDifference id="d">E d - E d 'de' MMM</greatestDifference>
  1250. <greatestDifference id="M">E d 'de' MMM - E d 'de' MMM</greatestDifference>
  1251. </intervalFormatItem>
  1252. <intervalFormatItem id="MMMM">
  1253. <greatestDifference id="M">LLLL-LLLL</greatestDifference>
  1254. </intervalFormatItem>
  1255. <intervalFormatItem id="y">
  1256. <greatestDifference id="y">y-y</greatestDifference>
  1257. </intervalFormatItem>
  1258. <intervalFormatItem id="yM">
  1259. <greatestDifference id="M">MM/yy - MM/yy</greatestDifference>
  1260. <greatestDifference id="y">MM/yy - MM/yy</greatestDifference>
  1261. </intervalFormatItem>
  1262. <intervalFormatItem id="yMd">
  1263. <greatestDifference id="d">dd/MM/yy - dd/MM/yy</greatestDifference>
  1264. <greatestDifference id="M">dd/MM/yy - dd/MM/yy</greatestDifference>
  1265. <greatestDifference id="y">dd/MM/yy - dd/MM/yy</greatestDifference>
  1266. </intervalFormatItem>
  1267. <intervalFormatItem id="yMEd">
  1268. <greatestDifference id="d">E dd/MM/yy - E dd/MM/yy</greatestDifference>
  1269. <greatestDifference id="M">E dd/MM/yy - E dd/MM/yy</greatestDifference>
  1270. <greatestDifference id="y">E dd/MM/yy - E dd/MM/yy</greatestDifference>
  1271. </intervalFormatItem>
  1272. <intervalFormatItem id="yMMM">
  1273. <greatestDifference id="M">MMM-MMM 'de' y</greatestDifference>
  1274. <greatestDifference id="y">MMM 'de' y - MMM 'de' y</greatestDifference>
  1275. </intervalFormatItem>
  1276. <intervalFormatItem id="yMMMd">
  1277. <greatestDifference id="d">d-d 'de' MMM 'de' y</greatestDifference>
  1278. <greatestDifference id="M">d 'de' MMM - d 'de' MMM 'de' y</greatestDifference>
  1279. <greatestDifference id="y">d 'de' MMM 'de' y - d 'de' MMM 'de' y</greatestDifference>
  1280. </intervalFormatItem>
  1281. <intervalFormatItem id="yMMMEd">
  1282. <greatestDifference id="d">E d - E d 'de' MMM 'de' y</greatestDifference>
  1283. <greatestDifference id="M">E d 'de' MMM - E d 'de' MMM 'de' y</greatestDifference>
  1284. <greatestDifference id="y">E d 'de' MMM 'de' y - E d 'de' MMM 'de' y</greatestDifference>
  1285. </intervalFormatItem>
  1286. <intervalFormatItem id="yMMMM">
  1287. <greatestDifference id="M">MM – MM-yyyy</greatestDifference>
  1288. <greatestDifference id="y">MM-yyyy – MM-yyyy</greatestDifference>
  1289. </intervalFormatItem>
  1290. </intervalFormats>
  1291. </dateTimeFormats>
  1292. <fields>
  1293. <field type="era">
  1294. <displayName>era</displayName>
  1295. </field>
  1296. <field type="year">
  1297. <displayName>any</displayName>
  1298. </field>
  1299. <field type="month">
  1300. <displayName>mes</displayName>
  1301. </field>
  1302. <field type="week">
  1303. <displayName>setmana</displayName>
  1304. </field>
  1305. <field type="day">
  1306. <displayName>dia</displayName>
  1307. <relative type="-3">fa tres dies</relative>
  1308. <relative type="-2">abans d'ahir</relative>
  1309. <relative type="-1">ahir</relative>
  1310. <relative type="0">avui</relative>
  1311. <relative type="1">demà</relative>
  1312. <relative type="2">demà passat</relative>
  1313. <relative type="3">d'aquí a tres dies</relative>
  1314. </field>
  1315. <field type="weekday">
  1316. <displayName>dia de la setmana</displayName>
  1317. </field>
  1318. <field type="dayperiod">
  1319. <displayName>a.m./p.m.</displayName>
  1320. </field>
  1321. <field type="hour">
  1322. <displayName>hora</displayName>
  1323. </field>
  1324. <field type="minute">
  1325. <displayName>minut</displayName>
  1326. </field>
  1327. <field type="second">
  1328. <displayName>segon</displayName>
  1329. </field>
  1330. <field type="zone">
  1331. <displayName>zona</displayName>
  1332. </field>
  1333. </fields>
  1334. </calendar>
  1335. </calendars>
  1336. <timeZoneNames>
  1337. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  1338. <gmtFormat>GMT{0}</gmtFormat>
  1339. <regionFormat>Hora de: {0}</regionFormat>
  1340. <fallbackFormat>{1} ({0})</fallbackFormat>
  1341. <zone type="Etc/Unknown">
  1342. <exemplarCity>Zona desconeguda</exemplarCity>
  1343. </zone>
  1344. <zone type="Europe/Tirane">
  1345. <exemplarCity>Tirana</exemplarCity>
  1346. </zone>
  1347. <zone type="Antarctica/South_Pole">
  1348. <exemplarCity>Pol sud</exemplarCity>
  1349. </zone>
  1350. <zone type="America/Argentina/Rio_Gallegos">
  1351. <exemplarCity>Río Gallegos</exemplarCity>
  1352. </zone>
  1353. <zone type="America/Argentina/Tucuman">
  1354. <exemplarCity>Tucumán</exemplarCity>
  1355. </zone>
  1356. <zone type="America/Cordoba">
  1357. <exemplarCity>Córdoba</exemplarCity>
  1358. </zone>
  1359. <zone type="Europe/Vienna">
  1360. <exemplarCity>Viena</exemplarCity>
  1361. </zone>
  1362. <zone type="Europe/Brussels">
  1363. <exemplarCity>Brussel·les</exemplarCity>
  1364. </zone>
  1365. <zone type="America/Eirunepe">
  1366. <exemplarCity>Eirunepé</exemplarCity>
  1367. </zone>
  1368. <zone type="America/Rio_Branco">
  1369. <exemplarCity>Río Branco</exemplarCity>
  1370. </zone>
  1371. <zone type="America/Cuiaba">
  1372. <exemplarCity>Cuiabá</exemplarCity>
  1373. </zone>
  1374. <zone type="America/Belem">
  1375. <exemplarCity>Belém</exemplarCity>
  1376. </zone>
  1377. <zone type="America/Araguaina">
  1378. <exemplarCity>Araguaína</exemplarCity>
  1379. </zone>
  1380. <zone type="America/Sao_Paulo">
  1381. <exemplarCity>São Paulo</exemplarCity>
  1382. </zone>
  1383. <zone type="America/Maceio">
  1384. <exemplarCity>Maceió</exemplarCity>
  1385. </zone>
  1386. <zone type="America/Belize">
  1387. <exemplarCity>Belise</exemplarCity>
  1388. </zone>
  1389. <zone type="Europe/Zurich">
  1390. <exemplarCity>Zuric</exemplarCity>
  1391. </zone>
  1392. <zone type="Pacific/Easter">
  1393. <exemplarCity>Illa de Pasqua</exemplarCity>
  1394. </zone>
  1395. <zone type="Asia/Urumqi">
  1396. <exemplarCity>Urumchi</exemplarCity>
  1397. </zone>
  1398. <zone type="America/Bogota">
  1399. <exemplarCity>Bogotà</exemplarCity>
  1400. </zone>
  1401. <zone type="Atlantic/Cape_Verde">
  1402. <exemplarCity>Cap Verd</exemplarCity>
  1403. </zone>
  1404. <zone type="Indian/Christmas">
  1405. <exemplarCity>Pasqua</exemplarCity>
  1406. </zone>
  1407. <zone type="Europe/Prague">
  1408. <exemplarCity>Praga</exemplarCity>
  1409. </zone>
  1410. <zone type="Europe/Berlin">
  1411. <exemplarCity>Berlín</exemplarCity>
  1412. </zone>
  1413. <zone type="Europe/Copenhagen">
  1414. <exemplarCity>Copenhaguen</exemplarCity>
  1415. </zone>
  1416. <zone type="Africa/Algiers">
  1417. <exemplarCity>Alger</exemplarCity>
  1418. </zone>
  1419. <zone type="Pacific/Galapagos">
  1420. <exemplarCity>Galápagos</exemplarCity>
  1421. </zone>
  1422. <zone type="Africa/Cairo">
  1423. <exemplarCity>El Caire</exemplarCity>
  1424. </zone>
  1425. <zone type="Atlantic/Canary">
  1426. <exemplarCity>Illes Canàries</exemplarCity>
  1427. </zone>
  1428. <zone type="Europe/Helsinki">
  1429. <exemplarCity>Hèlsinki</exemplarCity>
  1430. </zone>
  1431. <zone type="Atlantic/Faeroe">
  1432. <exemplarCity>Fèroe</exemplarCity>
  1433. </zone>
  1434. <zone type="Europe/Paris">
  1435. <exemplarCity>París</exemplarCity>
  1436. </zone>
  1437. <zone type="Europe/London">
  1438. <exemplarCity>Londres</exemplarCity>
  1439. </zone>
  1440. <zone type="America/Grenada">
  1441. <exemplarCity>Granada</exemplarCity>
  1442. </zone>
  1443. <zone type="America/Guadeloupe">
  1444. <exemplarCity>Guadalupe</exemplarCity>
  1445. </zone>
  1446. <zone type="Europe/Athens">
  1447. <exemplarCity>Atenes</exemplarCity>
  1448. </zone>
  1449. <zone type="Atlantic/South_Georgia">
  1450. <exemplarCity>Geòrgia del Sud</exemplarCity>
  1451. </zone>
  1452. <zone type="America/Port-au-Prince">
  1453. <exemplarCity>Port Príncep</exemplarCity>
  1454. </zone>
  1455. <zone type="Asia/Makassar">
  1456. <exemplarCity>Makasar</exemplarCity>
  1457. </zone>
  1458. <zone type="Europe/Dublin">
  1459. <exemplarCity>Dublín</exemplarCity>
  1460. </zone>
  1461. <zone type="Asia/Baghdad">
  1462. <exemplarCity>Bagdad</exemplarCity>
  1463. </zone>
  1464. <zone type="Asia/Tehran">
  1465. <exemplarCity>Teheran</exemplarCity>
  1466. </zone>
  1467. <zone type="Europe/Rome">
  1468. <exemplarCity>Roma</exemplarCity>
  1469. </zone>
  1470. <zone type="Asia/Tokyo">
  1471. <exemplarCity>Tòquio</exemplarCity>
  1472. </zone>
  1473. <zone type="America/St_Kitts">
  1474. <exemplarCity>St. Kitts</exemplarCity>
  1475. </zone>
  1476. <zone type="Asia/Seoul">
  1477. <exemplarCity>Seül</exemplarCity>
  1478. </zone>
  1479. <zone type="America/Cayman">
  1480. <exemplarCity>Caiman</exemplarCity>
  1481. </zone>
  1482. <zone type="Asia/Aqtau">
  1483. <exemplarCity>Aqtaū</exemplarCity>
  1484. </zone>
  1485. <zone type="Asia/Aqtobe">
  1486. <exemplarCity>Aķtöbe</exemplarCity>
  1487. </zone>
  1488. <zone type="America/St_Lucia">
  1489. <exemplarCity>St. Lucia</exemplarCity>
  1490. </zone>
  1491. <zone type="Europe/Luxembourg">
  1492. <exemplarCity>Luxemburg</exemplarCity>
  1493. </zone>
  1494. <zone type="Europe/Monaco">
  1495. <exemplarCity>Mònaco</exemplarCity>
  1496. </zone>
  1497. <zone type="America/Martinique">
  1498. <exemplarCity>Martinica</exemplarCity>
  1499. </zone>
  1500. <zone type="Indian/Mauritius">
  1501. <exemplarCity>Maurici</exemplarCity>
  1502. </zone>
  1503. <zone type="Indian/Maldives">
  1504. <exemplarCity>Les Maldives</exemplarCity>
  1505. </zone>
  1506. <zone type="America/Mazatlan">
  1507. <exemplarCity>Mazatlán</exemplarCity>
  1508. </zone>
  1509. <zone type="America/Mexico_City">
  1510. <exemplarCity>Mèxic</exemplarCity>
  1511. </zone>
  1512. <zone type="America/Merida">
  1513. <exemplarCity>Mérida</exemplarCity>
  1514. </zone>
  1515. <zone type="Pacific/Noumea">
  1516. <exemplarCity>Numea</exemplarCity>
  1517. </zone>
  1518. <zone type="Asia/Katmandu">
  1519. <exemplarCity>Katmandú</exemplarCity>
  1520. </zone>
  1521. <zone type="America/Panama">
  1522. <exemplarCity>Panamà</exemplarCity>
  1523. </zone>
  1524. <zone type="Pacific/Tahiti">
  1525. <exemplarCity>Tahití</exemplarCity>
  1526. </zone>
  1527. <zone type="Pacific/Marquesas">
  1528. <exemplarCity>Marqueses</exemplarCity>
  1529. </zone>
  1530. <zone type="Europe/Warsaw">
  1531. <exemplarCity>Varsòvia</exemplarCity>
  1532. </zone>
  1533. <zone type="Atlantic/Azores">
  1534. <exemplarCity>Açores</exemplarCity>
  1535. </zone>
  1536. <zone type="Europe/Lisbon">
  1537. <exemplarCity>Lisboa</exemplarCity>
  1538. </zone>
  1539. <zone type="America/Asuncion">
  1540. <exemplarCity>Asunción</exemplarCity>
  1541. </zone>
  1542. <zone type="Indian/Reunion">
  1543. <exemplarCity>Reunió</exemplarCity>
  1544. </zone>
  1545. <zone type="Europe/Bucharest">
  1546. <exemplarCity>Bucarest</exemplarCity>
  1547. </zone>
  1548. <zone type="Europe/Moscow">
  1549. <exemplarCity>Moscou</exemplarCity>
  1550. </zone>
  1551. <zone type="Asia/Yekaterinburg">
  1552. <exemplarCity>Jekaterinburg</exemplarCity>
  1553. </zone>
  1554. <zone type="Asia/Krasnoyarsk">
  1555. <exemplarCity>Krasnoiarsk</exemplarCity>
  1556. </zone>
  1557. <zone type="Asia/Yakutsk">
  1558. <exemplarCity>Jakutsk</exemplarCity>
  1559. </zone>
  1560. <zone type="Asia/Kamchatka">
  1561. <exemplarCity>Kamtxatka</exemplarCity>
  1562. </zone>
  1563. <zone type="Asia/Anadyr">
  1564. <exemplarCity>Anadyr'</exemplarCity>
  1565. </zone>
  1566. <zone type="Europe/Stockholm">
  1567. <exemplarCity>Estocolm</exemplarCity>
  1568. </zone>
  1569. <zone type="Asia/Singapore">
  1570. <exemplarCity>Singapur</exemplarCity>
  1571. </zone>
  1572. <zone type="Africa/Sao_Tome">
  1573. <exemplarCity>Sao Tomé</exemplarCity>
  1574. </zone>
  1575. <zone type="America/El_Salvador">
  1576. <exemplarCity>Salvador</exemplarCity>
  1577. </zone>
  1578. <zone type="Asia/Damascus">
  1579. <exemplarCity>Damasc</exemplarCity>
  1580. </zone>
  1581. <zone type="America/Grand_Turk">
  1582. <exemplarCity>Illes Turks i Caicos</exemplarCity>
  1583. </zone>
  1584. <zone type="Africa/Tunis">
  1585. <exemplarCity>Tunísia</exemplarCity>
  1586. </zone>
  1587. <zone type="America/Port_of_Spain">
  1588. <exemplarCity>Port Espanya</exemplarCity>
  1589. </zone>
  1590. <zone type="Europe/Kiev">
  1591. <exemplarCity>Kíev</exemplarCity>
  1592. </zone>
  1593. <zone type="America/North_Dakota/New_Salem">
  1594. <exemplarCity>New Salem, Dakota del Nord</exemplarCity>
  1595. </zone>
  1596. <zone type="America/North_Dakota/Center">
  1597. <exemplarCity>Center, Dakota del Nord</exemplarCity>
  1598. </zone>
  1599. <zone type="America/New_York">
  1600. <exemplarCity>Nova York</exemplarCity>
  1601. </zone>
  1602. <zone type="Asia/Samarkand">
  1603. <exemplarCity>Samarcanda</exemplarCity>
  1604. </zone>
  1605. <zone type="America/St_Vincent">
  1606. <exemplarCity>Sant Vicenç</exemplarCity>
  1607. </zone>
  1608. <zone type="America/St_Thomas">
  1609. <exemplarCity>Sant Tomàs</exemplarCity>
  1610. </zone>
  1611. <metazone type="Africa_Central">
  1612. <long>
  1613. <standard>Hora d'Àfrica Central</standard>
  1614. </long>
  1615. </metazone>
  1616. <metazone type="Africa_Eastern">
  1617. <long>
  1618. <standard>Hora d'Àfrica Oriental</standard>
  1619. </long>
  1620. </metazone>
  1621. <metazone type="Africa_Southern">
  1622. <long>
  1623. <standard>Hora d'Àfrica Austral</standard>
  1624. </long>
  1625. </metazone>
  1626. <metazone type="Africa_Western">
  1627. <long>
  1628. <standard>Hora d'Àfrica Occidental</standard>
  1629. <daylight>Hora d'estiu d'Àfrica Occidental</daylight>
  1630. </long>
  1631. </metazone>
  1632. <metazone type="America_Central">
  1633. <long>
  1634. <generic>Hora central</generic>
  1635. <standard>Hora estàndard central</standard>
  1636. <daylight>Hora d'estiu central</daylight>
  1637. </long>
  1638. <short>
  1639. <generic>CT</generic>
  1640. <standard>CST</standard>
  1641. <daylight>CDT</daylight>
  1642. </short>
  1643. </metazone>
  1644. <metazone type="America_Eastern">
  1645. <long>
  1646. <generic>Hora oriental</generic>
  1647. <standard>Hora estàndard oriental</standard>
  1648. <daylight>Hora d'estiu oriental</daylight>
  1649. </long>
  1650. <short>
  1651. <generic>ET</generic>
  1652. <standard>EST</standard>
  1653. <daylight>EDT</daylight>
  1654. </short>
  1655. </metazone>
  1656. <metazone type="America_Mountain">
  1657. <long>
  1658. <generic>Hora de muntanya</generic>
  1659. <standard>Hora estàndard de muntanya</standard>
  1660. <daylight>Hora d'estiu de muntanya</daylight>
  1661. </long>
  1662. <short>
  1663. <generic>MT</generic>
  1664. <standard>MST</standard>
  1665. <daylight>MDT</daylight>
  1666. </short>
  1667. </metazone>
  1668. <metazone type="America_Pacific">
  1669. <long>
  1670. <generic>Hora del Pacífic</generic>
  1671. <standard>Hora estàndard del Pacífic</standard>
  1672. <daylight>Hora d'estiu del Pacífic</daylight>
  1673. </long>
  1674. <short>
  1675. <generic>PT</generic>
  1676. <standard>PST</standard>
  1677. <daylight>PDT</daylight>
  1678. </short>
  1679. </metazone>
  1680. <metazone type="Arabian">
  1681. <long>
  1682. <generic>Hora d'Aràbia</generic>
  1683. <standard>Hora estàndard d'Aràbia</standard>
  1684. <daylight>Hora d'estiu d'Aràbia</daylight>
  1685. </long>
  1686. <short>
  1687. <generic>AT (Aràbia)</generic>
  1688. <standard>AST (Aràbia)</standard>
  1689. <daylight>ADT (Aràbia)</daylight>
  1690. </short>
  1691. </metazone>
  1692. <metazone type="Atlantic">
  1693. <long>
  1694. <generic>Hora de l'Atlàntic</generic>
  1695. <standard>Hora estàndard de l'Atlàntic</standard>
  1696. <daylight>Hora d'estiu de l'Atlàntic</daylight>
  1697. </long>
  1698. <short>
  1699. <generic>AT</generic>
  1700. <standard>AST</standard>
  1701. <daylight>ADT</daylight>
  1702. </short>
  1703. </metazone>
  1704. <metazone type="China">
  1705. <long>
  1706. <standard>Hora estàndard de la Xina</standard>
  1707. </long>
  1708. <short>
  1709. <standard>CST (Xina)</standard>
  1710. </short>
  1711. </metazone>
  1712. <metazone type="Europe_Central">
  1713. <long>
  1714. <generic>Hora d'Espanya</generic>
  1715. <standard>Hora Central Europea</standard>
  1716. <daylight>Hora Central Europea de l'estiu</daylight>
  1717. </long>
  1718. <short>
  1719. <generic>Hora d'Espanya</generic>
  1720. <standard>CET</standard>
  1721. <daylight>CEST</daylight>
  1722. </short>
  1723. </metazone>
  1724. <metazone type="Europe_Eastern">
  1725. <long>
  1726. <standard>Hora d'Europa de l'Est</standard>
  1727. <daylight>Hora d'estiu d'Europa de l'Est</daylight>
  1728. </long>
  1729. <short>
  1730. <standard>EET</standard>
  1731. <daylight>EEST</daylight>
  1732. </short>
  1733. </metazone>
  1734. <metazone type="Europe_Western">
  1735. <long>
  1736. <standard>Hora d'Europa Occidental</standard>
  1737. <daylight>Hora d'estiu d'Europa Occidental</daylight>
  1738. </long>
  1739. <short>
  1740. <standard>WET</standard>
  1741. <daylight>WEST</daylight>
  1742. </short>
  1743. </metazone>
  1744. <metazone type="GMT">
  1745. <long>
  1746. <standard>Hora mitjana de Greenwich</standard>
  1747. </long>
  1748. <short>
  1749. <standard>GMT</standard>
  1750. </short>
  1751. </metazone>
  1752. <metazone type="India">
  1753. <long>
  1754. <standard>Hora estàndard de l'Índia</standard>
  1755. </long>
  1756. </metazone>
  1757. <metazone type="Israel">
  1758. <long>
  1759. <standard>Hora estàndard d'Israel</standard>
  1760. <daylight>Hora d'estiu d'Israel</daylight>
  1761. </long>
  1762. <short>
  1763. <standard>IST (Israel)</standard>
  1764. </short>
  1765. </metazone>
  1766. <metazone type="Japan">
  1767. <long>
  1768. <standard>Hora estàndard del Japó</standard>
  1769. </long>
  1770. </metazone>
  1771. <metazone type="Korea">
  1772. <long>
  1773. <standard>Hora estàndard de Corea</standard>
  1774. </long>
  1775. </metazone>
  1776. <metazone type="Kuybyshev">
  1777. <long>
  1778. <standard>Hora de Kujbysev</standard>
  1779. <daylight>Hora d'estiu de Kujbysev</daylight>
  1780. </long>
  1781. </metazone>
  1782. <metazone type="Moscow">
  1783. <long>
  1784. <standard>Hora de Moscou</standard>
  1785. <daylight>Hora d'estiu de Moscou</daylight>
  1786. </long>
  1787. </metazone>
  1788. <metazone type="Samara">
  1789. <long>
  1790. <standard>Hora de Samara</standard>
  1791. <daylight>Hora d'estiu de Samara</daylight>
  1792. </long>
  1793. </metazone>
  1794. <metazone type="Turkey">
  1795. <long>
  1796. <standard>Hora de Turquia</standard>
  1797. <daylight>Hora d'estiu de Turquia</daylight>
  1798. </long>
  1799. </metazone>
  1800. <metazone type="Volgograd">
  1801. <long>
  1802. <standard>Hora de Volgograd</standard>
  1803. <daylight>Hora d'estiu de Volgograd</daylight>
  1804. </long>
  1805. </metazone>
  1806. </timeZoneNames>
  1807. </dates>
  1808. <numbers>
  1809. <symbols>
  1810. <decimal>,</decimal>
  1811. <group>.</group>
  1812. <list>;</list>
  1813. <percentSign>%</percentSign>
  1814. <nativeZeroDigit>0</nativeZeroDigit>
  1815. <patternDigit>#</patternDigit>
  1816. <plusSign>+</plusSign>
  1817. <minusSign>-</minusSign>
  1818. <exponential>E</exponential>
  1819. <perMille>‰</perMille>
  1820. <infinity>∞</infinity>
  1821. <nan>NaN</nan>
  1822. </symbols>
  1823. <decimalFormats>
  1824. <decimalFormatLength>
  1825. <decimalFormat>
  1826. <pattern>#,##0.###</pattern>
  1827. </decimalFormat>
  1828. </decimalFormatLength>
  1829. </decimalFormats>
  1830. <scientificFormats>
  1831. <scientificFormatLength>
  1832. <scientificFormat>
  1833. <pattern>#E0</pattern>
  1834. </scientificFormat>
  1835. </scientificFormatLength>
  1836. </scientificFormats>
  1837. <percentFormats>
  1838. <percentFormatLength>
  1839. <percentFormat>
  1840. <pattern>#,##0%</pattern>
  1841. </percentFormat>
  1842. </percentFormatLength>
  1843. </percentFormats>
  1844. <currencyFormats>
  1845. <currencyFormatLength>
  1846. <currencyFormat>
  1847. <pattern>#,##0.00 ¤</pattern>
  1848. </currencyFormat>
  1849. </currencyFormatLength>
  1850. <unitPattern count="one">{0} {1}</unitPattern>
  1851. <unitPattern count="other">{0} {1}</unitPattern>
  1852. </currencyFormats>
  1853. <currencies>
  1854. <currency type="ADP">
  1855. <displayName>pesseta andorrana</displayName>
  1856. <displayName count="one">pesseta andorrana</displayName>
  1857. <displayName count="other">pessetes andorranes</displayName>
  1858. </currency>
  1859. <currency type="AED">
  1860. <displayName>dirhem dels Emirats Àrabs Units</displayName>
  1861. <displayName count="one">dirhem dels Emirats Àrabs Units</displayName>
  1862. <displayName count="other">dirhems dels Emirats Àrabs Units</displayName>
  1863. </currency>
  1864. <currency type="AFA">
  1865. <displayName>afgani afganès (1927-2002)</displayName>
  1866. <displayName count="one">afgani afganès (AFA)</displayName>
  1867. <displayName count="other">afganis afganesos (AFA)</displayName>
  1868. </currency>
  1869. <currency type="AFN">
  1870. <displayName>afgani afganès</displayName>
  1871. <displayName count="one">afgani afganès</displayName>
  1872. <displayName count="other">afganis afganesos</displayName>
  1873. </currency>
  1874. <currency type="ALL">
  1875. <displayName>lek albanès</displayName>
  1876. <displayName count="one">lek albanès</displayName>
  1877. <displayName count="other">lekë albanesos</displayName>
  1878. </currency>
  1879. <currency type="AMD">
  1880. <displayName>dram armeni</displayName>
  1881. <displayName count="one">dram armeni</displayName>
  1882. <displayName count="other">drams armenis</displayName>
  1883. </currency>
  1884. <currency type="ANG">
  1885. <displayName>florí de les Antilles Neerlandeses</displayName>
  1886. <displayName count="one">florí de les Antilles Neerlandeses</displayName>
  1887. <displayName count="other">florins de les Antilles Neerlandeses</displayName>
  1888. </currency>
  1889. <currency type="AOA">
  1890. <displayName>kwanza angolès</displayName>
  1891. <displayName count="one">kwanza angolès</displayName>
  1892. <displayName count="other">kwanzas angolesos</displayName>
  1893. </currency>
  1894. <currency type="AOK">
  1895. <displayName>kwanza angolès (1977-1990)</displayName>
  1896. <displayName count="one">kwanza angolès (AOK)</displayName>
  1897. <displayName count="other">kwanzas angolesos (AOK)</displayName>
  1898. </currency>
  1899. <currency type="AON">
  1900. <displayName>nou kwanza angolès (1990-2000)</displayName>
  1901. <displayName count="one">nou kwanza angolès (AON)</displayName>
  1902. <displayName count="other">nous kwanzas angolesos (AON)</displayName>
  1903. </currency>
  1904. <currency type="AOR">
  1905. <displayName>kwanza angolès reajustat (1995-1999)</displayName>
  1906. <displayName count="one">kwanza angolès reajustat (AOR)</displayName>
  1907. <displayName count="other">kwanzas angolesos reajustats (AOR)</displayName>
  1908. </currency>
  1909. <currency type="ARA">
  1910. <displayName>austral argentí</displayName>
  1911. <displayName count="one">austral argentí</displayName>
  1912. <displayName count="other">australs argentins</displayName>
  1913. </currency>
  1914. <currency type="ARP">
  1915. <displayName>peso argentí (1983-1985)</displayName>
  1916. <displayName count="one">peso argentí (ARP)</displayName>
  1917. <displayName count="other">pesos argentins (ARP)</displayName>
  1918. </currency>
  1919. <currency type="ARS">
  1920. <displayName>peso argentí</displayName>
  1921. <displayName count="one">peso argentí</displayName>
  1922. <displayName count="other">pesos argentins</displayName>
  1923. </currency>
  1924. <currency type="ATS">
  1925. <displayName>xíling austríac</displayName>
  1926. <displayName count="one">xíling austríac</displayName>
  1927. <displayName count="other">xílings austríacs</displayName>
  1928. </currency>
  1929. <currency type="AUD">
  1930. <displayName>dòlar australià</displayName>
  1931. <displayName count="one">dòlar australià</displayName>
  1932. <displayName count="other">dòlars australians</displayName>
  1933. </currency>
  1934. <currency type="AWG">
  1935. <displayName>florí d'Aruba</displayName>
  1936. <displayName count="one">florí d'Aruba</displayName>
  1937. <displayName count="other">florins d'Aruba</displayName>
  1938. </currency>
  1939. <currency type="AZM">
  1940. <displayName>manat azerbaidjanès (1993-2006)</displayName>
  1941. <displayName count="one">manat azerbaidjanès (AZM)</displayName>
  1942. <displayName count="other">manats azerbaidjanesos (AZM)</displayName>
  1943. </currency>
  1944. <currency type="AZN">
  1945. <displayName>manat azerbaidjanès</displayName>
  1946. <displayName count="one">manat azerbaidjanès</displayName>
  1947. <displayName count="other">manats azerbaidjanesos</displayName>
  1948. </currency>
  1949. <currency type="BAD">
  1950. <displayName>dinar de Bòsnia i Hercegovina</displayName>
  1951. <displayName count="one">dinar de Bòsnia i Hercegovina</displayName>
  1952. <displayName count="other">dinars de Bòsnia i Hercegovina</displayName>
  1953. </currency>
  1954. <currency type="BAM">
  1955. <displayName>marc convertible de Bòsnia i Hercegovina</displayName>
  1956. <displayName count="one">marc convertible de Bòsnia i Hercegovina</displayName>
  1957. <displayName count="other">marcs convertibles de Bòsnia i Hercegovina</displayName>
  1958. </currency>
  1959. <currency type="BBD">
  1960. <displayName>dòlar de Barbados</displayName>
  1961. <displayName count="one">dòlar de Barbados</displayName>
  1962. <displayName count="other">dòlars de Barbados</displayName>
  1963. </currency>
  1964. <currency type="BDT">
  1965. <displayName>taka de Bangla Desh</displayName>
  1966. <displayName count="one">taka de Bangla Desh</displayName>
  1967. <displayName count="other">taka de Bangla Desh</displayName>
  1968. </currency>
  1969. <currency type="BEC">
  1970. <displayName>franc belga (convertible)</displayName>
  1971. <displayName count="one">franc belga (convertible)</displayName>
  1972. <displayName count="other">francs belgues (convertibles)</displayName>
  1973. </currency>
  1974. <currency type="BEF">
  1975. <displayName>franc belga</displayName>
  1976. <displayName count="one">franc belga</displayName>
  1977. <displayName count="other">francs belgues</displayName>
  1978. </currency>
  1979. <currency type="BEL">
  1980. <displayName>franc belga (financer)</displayName>
  1981. <displayName count="one">franc belga (financer)</displayName>
  1982. <displayName count="other">francs belgues (financers)</displayName>
  1983. </currency>
  1984. <currency type="BGL">
  1985. <displayName>lev fort búlgar</displayName>
  1986. <displayName count="one">lev fort búlgar</displayName>
  1987. <displayName count="other">leva forts búlgars</displayName>
  1988. </currency>
  1989. <currency type="BGN">
  1990. <displayName>lev búlgar</displayName>
  1991. <displayName count="one">lev búlgar</displayName>
  1992. <displayName count="other">leva búlgars</displayName>
  1993. </currency>
  1994. <currency type="BHD">
  1995. <displayName>dinar de Bahrain</displayName>
  1996. <displayName count="one">dinar de Bahrain</displayName>
  1997. <displayName count="other">dinars de Bahrain</displayName>
  1998. </currency>
  1999. <currency type="BIF">
  2000. <displayName>franc de Burundi</displayName>
  2001. <displayName count="one">franc de Burundi</displayName>
  2002. <displayName count="other">francs de Burundi</displayName>
  2003. </currency>
  2004. <currency type="BMD">
  2005. <displayName>dòlar de les Bermudes</displayName>
  2006. <displayName count="one">dòlar de les Bermudes</displayName>
  2007. <displayName count="other">dòlars de les Bermudes</displayName>
  2008. </currency>
  2009. <currency type="BND">
  2010. <displayName>dòlar de Brunei</displayName>
  2011. <displayName count="one">dòlar de Brunei</displayName>
  2012. <displayName count="other">dòlars de Brunei</displayName>
  2013. </currency>
  2014. <currency type="BOB">
  2015. <displayName>boliviano</displayName>
  2016. <displayName count="one">boliviano</displayName>
  2017. <displayName count="other">bolivianos</displayName>
  2018. </currency>
  2019. <currency type="BOP">
  2020. <displayName>peso bolivià</displayName>
  2021. <displayName count="one">peso bolivià</displayName>
  2022. <displayName count="other">pesos bolivians</displayName>
  2023. </currency>
  2024. <currency type="BOV">
  2025. <displayName>MVDOL bolivià</displayName>
  2026. <displayName count="one">MVDOL bolivià</displayName>
  2027. <displayName count="other">MVDOL bolivians</displayName>
  2028. </currency>
  2029. <currency type="BRB">
  2030. <displayName>cruzeiro novo brasiler (1967-1986)</displayName>
  2031. <displayName count="one">cruzeiro novo brasiler (BRB)</displayName>
  2032. <displayName count="other">cruzeiros novos brasilers (BRB)</displayName>
  2033. </currency>
  2034. <currency type="BRC">
  2035. <displayName>cruzado brasiler</displayName>
  2036. <displayName count="one">cruzado brasiler</displayName>
  2037. <displayName count="other">cruzados brasilers</displayName>
  2038. </currency>
  2039. <currency type="BRE">
  2040. <displayName>cruzeiro brasiler (1990-1993)</displayName>
  2041. <displayName count="one">cruzeiro brasiler (BRE)</displayName>
  2042. <displayName count="other">cruzeiros brasilers (BRE)</displayName>
  2043. </currency>
  2044. <currency type="BRL">
  2045. <displayName>real brasiler</displayName>
  2046. <displayName count="one">real brasiler</displayName>
  2047. <displayName count="other">reais brasilers</displayName>
  2048. </currency>
  2049. <currency type="BRN">
  2050. <displayName>cruzado novo brasiler</displayName>
  2051. <displayName count="one">cruzado novo brasiler</displayName>
  2052. <displayName count="other">cruzados novos brasilers</displayName>
  2053. </currency>
  2054. <currency type="BRR">
  2055. <displayName>cruzeiro brasiler</displayName>
  2056. <displayName count="one">cruzeiro brasiler</displayName>
  2057. <displayName count="other">cruzeiros brasilers</displayName>
  2058. </currency>
  2059. <currency type="BSD">
  2060. <displayName>dòlar de les Bahames</displayName>
  2061. <displayName count="one">dòlar de les Bahames</displayName>
  2062. <displayName count="other">dòlars de les Bahames</displayName>
  2063. </currency>
  2064. <currency type="BTN">
  2065. <displayName>ngultrum de Bhutan</displayName>
  2066. <displayName count="one">ngultrum de Bhutan</displayName>
  2067. <displayName count="other">ngultrums de Bhutan</displayName>
  2068. </currency>
  2069. <currency type="BUK">
  2070. <displayName>kyat birmà</displayName>
  2071. <displayName count="one">kyat birmà</displayName>
  2072. <displayName count="other">kyats birmans</displayName>
  2073. </currency>
  2074. <currency type="BWP">
  2075. <displayName>pula de Botswana</displayName>
  2076. <displayName count="one">pula de Botswana</displayName>
  2077. <displayName count="other">pula de Botswana</displayName>
  2078. </currency>
  2079. <currency type="BYB">
  2080. <displayName>nou ruble bielorús (1994-1999)</displayName>
  2081. <displayName count="one">nou ruble bielorús (BYB)</displayName>
  2082. <displayName count="other">nous rubles bielorussos (BYB)</displayName>
  2083. </currency>
  2084. <currency type="BYR">
  2085. <displayName>ruble bielorús</displayName>
  2086. <displayName count="one">ruble bielorús</displayName>
  2087. <displayName count="other">rubles bielorussos</displayName>
  2088. </currency>
  2089. <currency type="BZD">
  2090. <displayName>dòlar de Belize</displayName>
  2091. <displayName count="one">dòlar de Belize</displayName>
  2092. <displayName count="other">dòlars de Belize</displayName>
  2093. </currency>
  2094. <currency type="CAD">
  2095. <displayName>dòlar canadenc</displayName>
  2096. <displayName count="one">dòlar canadenc</displayName>
  2097. <displayName count="other">dòlars canadencs</displayName>
  2098. </currency>
  2099. <currency type="CDF">
  2100. <displayName>franc congolès</displayName>
  2101. <displayName count="one">franc congolès</displayName>
  2102. <displayName count="other">francs congolesos</displayName>
  2103. </currency>
  2104. <currency type="CHE">
  2105. <displayName>euro WIR</displayName>
  2106. <displayName count="one">euro WIR</displayName>
  2107. <displayName count="other">euros WIR</displayName>
  2108. </currency>
  2109. <currency type="CHF">
  2110. <displayName>franc suís</displayName>
  2111. <displayName count="one">franc suís</displayName>
  2112. <displayName count="other">francs suïssos</displayName>
  2113. </currency>
  2114. <currency type="CHW">
  2115. <displayName>franc WIR</displayName>
  2116. <displayName count="one">franc WIR</displayName>
  2117. <displayName count="other">francs WIR</displayName>
  2118. </currency>
  2119. <currency type="CLF">
  2120. <displayName>unidad de fomento xilena</displayName>
  2121. <displayName count="one">unidad de fomento xilena</displayName>
  2122. <displayName count="other">unidades de fomento xilenes</displayName>
  2123. </currency>
  2124. <currency type="CLP">
  2125. <displayName>peso xilè</displayName>
  2126. <displayName count="one">peso xilè</displayName>
  2127. <displayName count="other">pesos xilens</displayName>
  2128. </currency>
  2129. <currency type="CNY">
  2130. <displayName>iuan renmimbi xinès</displayName>
  2131. <displayName count="one">iuan xinès</displayName>
  2132. <displayName count="other">iuan xinesos</displayName>
  2133. </currency>
  2134. <currency type="COP">
  2135. <displayName>peso colombià</displayName>
  2136. <displayName count="one">peso colombià</displayName>
  2137. <displayName count="other">pesos colombians</displayName>
  2138. </currency>
  2139. <currency type="COU">
  2140. <displayName>unidad de valor real colombiana</displayName>
  2141. <displayName count="one">unidad de valor real colombiana</displayName>
  2142. <displayName count="other">unidades de valor real colombianes</displayName>
  2143. </currency>
  2144. <currency type="CRC">
  2145. <displayName>colón costa-riqueny</displayName>
  2146. <displayName count="one">colón costa-riqueny</displayName>
  2147. <displayName count="other">colones costa-riquenys</displayName>
  2148. </currency>
  2149. <currency type="CSD">
  2150. <displayName>dinar serbi antic</displayName>
  2151. <displayName count="one">dinar serbi antic</displayName>
  2152. <displayName count="other">dinars serbis antics</displayName>
  2153. </currency>
  2154. <currency type="CSK">
  2155. <displayName>corona forta txecoslovaca</displayName>
  2156. <displayName count="one">corona forta txecoslovaca</displayName>
  2157. <displayName count="other">corones fortes txecoslovaques</displayName>
  2158. </currency>
  2159. <currency type="CUP">
  2160. <displayName>peso cubà</displayName>
  2161. <displayName count="one">peso cubà</displayName>
  2162. <displayName count="other">pesos cubans</displayName>
  2163. </currency>
  2164. <currency type="CVE">
  2165. <displayName>escut de Cap Verd</displayName>
  2166. <displayName count="one">escut de Cap Verd</displayName>
  2167. <displayName count="other">escuts de Cap Verd</displayName>
  2168. </currency>
  2169. <currency type="CYP">
  2170. <displayName>lliura xipriota</displayName>
  2171. <displayName count="one">lliura xipriota</displayName>
  2172. <displayName count="other">lliures xipriotes</displayName>
  2173. </currency>
  2174. <currency type="CZK">
  2175. <displayName>corona txeca</displayName>
  2176. <displayName count="one">corona txeca</displayName>
  2177. <displayName count="other">corones txeques</displayName>
  2178. </currency>
  2179. <currency type="DDM">
  2180. <displayName>marc de l'Alemanya Oriental</displayName>
  2181. <displayName count="one">marc de l'Alemanya Oriental</displayName>
  2182. <displayName count="other">marcs de l'Alemanya Oriental</displayName>
  2183. </currency>
  2184. <currency type="DEM">
  2185. <displayName>marc alemany</displayName>
  2186. <displayName count="one">marc alemany</displayName>
  2187. <displayName count="other">marcs alemanys</displayName>
  2188. </currency>
  2189. <currency type="DJF">
  2190. <displayName>franc de Djibouti</displayName>
  2191. <displayName count="one">franc de Djibouti</displayName>
  2192. <displayName count="other">francs de Djibouti</displayName>
  2193. </currency>
  2194. <currency type="DKK">
  2195. <displayName>corona danesa</displayName>
  2196. <displayName count="one">corona danesa</displayName>
  2197. <displayName count="other">corones daneses</displayName>
  2198. </currency>
  2199. <currency type="DOP">
  2200. <displayName>peso dominicà</displayName>
  2201. <displayName count="one">peso dominicà</displayName>
  2202. <displayName count="other">pesos dominicans</displayName>
  2203. </currency>
  2204. <currency type="DZD">
  2205. <displayName>dinar algerià</displayName>
  2206. <displayName count="one">dinar algerià</displayName>
  2207. <displayName count="other">dinars algerians</displayName>
  2208. </currency>
  2209. <currency type="ECS">
  2210. <displayName>sucre equatorià</displayName>
  2211. <displayName count="one">sucre equatorià</displayName>
  2212. <displayName count="other">sucres equatorians</displayName>
  2213. </currency>
  2214. <currency type="ECV">
  2215. <displayName>unidad de valor constante (UVC) equatoriana</displayName>
  2216. <displayName count="one">unidad de valor constante (UVC) equatoriana</displayName>
  2217. <displayName count="other">unidades de valor constante (UVC) equatorianes</displayName>
  2218. </currency>
  2219. <currency type="EEK">
  2220. <displayName>corona estoniana</displayName>
  2221. <displayName count="one">corona estoniana</displayName>
  2222. <displayName count="other">corones estonianes</displayName>
  2223. </currency>
  2224. <currency type="EGP">
  2225. <displayName>lliura egípcia</displayName>
  2226. <displayName count="one">lliura egípcia</displayName>
  2227. <displayName count="other">lliures egípcies</displayName>
  2228. </currency>
  2229. <currency type="ERN">
  2230. <displayName>nakfa eritreu</displayName>
  2231. <displayName count="one">nakfa eritreu</displayName>
  2232. <displayName count="other">nakfes eritreus</displayName>
  2233. </currency>
  2234. <currency type="ESA">
  2235. <displayName>pesseta espanyola (compte A)</displayName>
  2236. <displayName count="one">pesseta espanyola (compte A)</displayName>
  2237. <displayName count="other">pessetes espanyoles (compte A)</displayName>
  2238. </currency>
  2239. <currency type="ESB">
  2240. <displayName>pesseta espanyola (compte convertible)</displayName>
  2241. <displayName count="one">pesseta espanyola (compte convertible)</displayName>
  2242. <displayName count="other">pessetes espanyoles (compte convertible)</displayName>
  2243. </currency>
  2244. <currency type="ESP">
  2245. <pattern>¤ #,##0;-¤ #,##0</pattern>
  2246. <displayName>pesseta espanyola</displayName>
  2247. <displayName count="one">pesseta espanyola</displayName>
  2248. <displayName count="other">pessetes espanyoles</displayName>
  2249. <symbol>₧</symbol>
  2250. <decimal>,</decimal>
  2251. <group>.</group>
  2252. </currency>
  2253. <currency type="ETB">
  2254. <displayName>birr etíop</displayName>
  2255. <displayName count="one">birr etíop</displayName>
  2256. <displayName count="other">birrs etíops</displayName>
  2257. </currency>
  2258. <currency type="EUR">
  2259. <displayName>euro</displayName>
  2260. <displayName count="one">euro</displayName>
  2261. <displayName count="other">euros</displayName>
  2262. </currency>
  2263. <currency type="FIM">
  2264. <displayName>marc finlandès</displayName>
  2265. <displayName count="one">marc finlandès</displayName>
  2266. <displayName count="other">marcs finlandesos</displayName>
  2267. </currency>
  2268. <currency type="FJD">
  2269. <displayName>dòlar fijià</displayName>
  2270. <displayName count="one">dòlar fijià</displayName>
  2271. <displayName count="other">dòlars fijians</displayName>
  2272. </currency>
  2273. <currency type="FKP">
  2274. <displayName>lliura de les illes Malvines</displayName>
  2275. <displayName count="one">lliura de les illes Malvines</displayName>
  2276. <displayName count="other">lliures de les illes Malvines</displayName>
  2277. </currency>
  2278. <currency type="FRF">
  2279. <displayName>franc francès</displayName>
  2280. <displayName count="one">franc francès</displayName>
  2281. <displayName count="other">francs francesos</displayName>
  2282. </currency>
  2283. <currency type="GBP">
  2284. <displayName>lliura esterlina britànica</displayName>
  2285. <displayName count="one">lliura esterlina britànica</displayName>
  2286. <displayName count="other">lliures esterlines britàniques</displayName>
  2287. </currency>
  2288. <currency type="GEK">
  2289. <displayName>cupó de lari georgià</displayName>
  2290. <displayName count="one">cupó de lari georgià</displayName>
  2291. <displayName count="other">cupons de lari georgians</displayName>
  2292. </currency>
  2293. <currency type="GEL">
  2294. <displayName>lari georgià</displayName>
  2295. <displayName count="one">lari georgià</displayName>
  2296. <displayName count="other">laris georgians</displayName>
  2297. </currency>
  2298. <currency type="GHC">
  2299. <displayName>cedi ghanès (1979-2007)</displayName>
  2300. <displayName count="one">cedi ghanès (GHC)</displayName>
  2301. <displayName count="other">cedis ghanesos (GHC)</displayName>
  2302. </currency>
  2303. <currency type="GHS">
  2304. <displayName>cedi ghanès</displayName>
  2305. <displayName count="one">cedi ghanès</displayName>
  2306. <displayName count="other">cedis ghanesos</displayName>
  2307. </currency>
  2308. <currency type="GIP">
  2309. <displayName>lliura de Gibraltar</displayName>
  2310. <displayName count="one">lliura de Gibraltar</displayName>
  2311. <displayName count="other">lliures de Gibraltar</displayName>
  2312. </currency>
  2313. <currency type="GMD">
  2314. <displayName>dalasi gambià</displayName>
  2315. <displayName count="one">dalasi gambià</displayName>
  2316. <displayName count="other">dalasis gambians</displayName>
  2317. </currency>
  2318. <currency type="GNF">
  2319. <displayName>franc guineà</displayName>
  2320. <displayName count="one">franc guineà</displayName>
  2321. <displayName count="other">francs guineans</displayName>
  2322. </currency>
  2323. <currency type="GNS">
  2324. <displayName>syli guineà</displayName>
  2325. <displayName count="one">syli guineà</displayName>
  2326. <displayName count="other">sylis guineans</displayName>
  2327. </currency>
  2328. <currency type="GQE">
  2329. <displayName>ekwele de Guinea Equatorial</displayName>
  2330. <displayName count="one">ekwele de Guinea Equatorial</displayName>
  2331. <displayName count="other">bipkwele de Guinea Equatorial</displayName>
  2332. </currency>
  2333. <currency type="GRD">
  2334. <displayName>dracma grega</displayName>
  2335. <displayName count="one">dracma grega</displayName>
  2336. <displayName count="other">dracmes gregues</displayName>
  2337. </currency>
  2338. <currency type="GTQ">
  2339. <displayName>quetzal guatemalenc</displayName>
  2340. <displayName count="one">quetzal guatemalenc</displayName>
  2341. <displayName count="other">quetzals guatemalencs</displayName>
  2342. </currency>
  2343. <currency type="GWE">
  2344. <displayName>escut de la Guinea Portuguesa</displayName>
  2345. <displayName count="one">escut de la Guinea Portuguesa</displayName>
  2346. <displayName count="other">escuts de la Guinea Portuguesa</displayName>
  2347. </currency>
  2348. <currency type="GWP">
  2349. <displayName>peso de Guinea Bissau</displayName>
  2350. <displayName count="one">peso de Guinea Bissau</displayName>
  2351. <displayName count="other">pesos de Guinea Bissau</displayName>
  2352. </currency>
  2353. <currency type="GYD">
  2354. <displayName>dòlar de Guyana</displayName>
  2355. <displayName count="one">dòlar de Guyana</displayName>
  2356. <displayName count="other">dòlars de Guyana</displayName>
  2357. </currency>
  2358. <currency type="HKD">
  2359. <displayName>dòlar de Hong Kong</displayName>
  2360. <displayName count="one">dòlar de Hong Kong</displayName>
  2361. <displayName count="other">dòlars de Hong Kong</displayName>
  2362. </currency>
  2363. <currency type="HNL">
  2364. <displayName>lempira hondurenya</displayName>
  2365. <displayName count="one">lempira hondurenya</displayName>
  2366. <displayName count="other">lempires hondurenyes</displayName>
  2367. </currency>
  2368. <currency type="HRD">
  2369. <displayName>dinar croat</displayName>
  2370. <displayName count="one">dinar croat</displayName>
  2371. <displayName count="other">dinars croats</displayName>
  2372. </currency>
  2373. <currency type="HRK">
  2374. <displayName>kuna croata</displayName>
  2375. <displayName count="one">kuna croata</displayName>
  2376. <displayName count="other">kunes croates</displayName>
  2377. </currency>
  2378. <currency type="HTG">
  2379. <displayName>gourde haitià</displayName>
  2380. <displayName count="one">gourde haitià</displayName>
  2381. <displayName count="other">gourdes haitians</displayName>
  2382. </currency>
  2383. <currency type="HUF">
  2384. <displayName>fòrint hongarès</displayName>
  2385. <displayName count="one">fòrint hongarès</displayName>
  2386. <displayName count="other">fòrints hongaresos</displayName>
  2387. </currency>
  2388. <currency type="IDR">
  2389. <displayName>rupia indonèsia</displayName>
  2390. <displayName count="one">rupia indonèsia</displayName>
  2391. <displayName count="other">rupies indonèsies</displayName>
  2392. </currency>
  2393. <currency type="IEP">
  2394. <displayName>lliura irlandesa</displayName>
  2395. <displayName count="one">lliura irlandesa</displayName>
  2396. <displayName count="other">lliures irlandeses</displayName>
  2397. </currency>
  2398. <currency type="ILP">
  2399. <displayName>lliura israeliana</displayName>
  2400. <displayName count="one">lliura israeliana</displayName>
  2401. <displayName count="other">lliures israelianes</displayName>
  2402. </currency>
  2403. <currency type="ILR">
  2404. <displayName>xéquel israelià</displayName>
  2405. <displayName count="one">xéquel israelià</displayName>
  2406. <displayName count="other">xéquel israelià</displayName>
  2407. </currency>
  2408. <currency type="ILS">
  2409. <displayName>nou xéquel israelià</displayName>
  2410. <displayName count="one">nou xéquel israelià</displayName>
  2411. <displayName count="other">nous xéquels israelians</displayName>
  2412. </currency>
  2413. <currency type="INR">
  2414. <displayName>rupia índia</displayName>
  2415. <displayName count="one">rupia índia</displayName>
  2416. <displayName count="other">rupies índies</displayName>
  2417. </currency>
  2418. <currency type="IQD">
  2419. <displayName>dinar iraquià</displayName>
  2420. <displayName count="one">dinar iraquià</displayName>
  2421. <displayName count="other">dinars iraquians</displayName>
  2422. </currency>
  2423. <currency type="IRR">
  2424. <displayName>rial iranià</displayName>
  2425. <displayName count="one">rial iranià</displayName>
  2426. <displayName count="other">rials iranians</displayName>
  2427. </currency>
  2428. <currency type="ISJ">
  2429. <displayName>corona islandesa antiga</displayName>
  2430. <displayName count="one">corona islandesa antiga</displayName>
  2431. <displayName count="other">corones islandeses antigues</displayName>
  2432. </currency>
  2433. <currency type="ISK">
  2434. <displayName>corona islandesa</displayName>
  2435. <displayName count="one">corona islandesa</displayName>
  2436. <displayName count="other">corones islandeses</displayName>
  2437. </currency>
  2438. <currency type="ITL">
  2439. <displayName>lira italiana</displayName>
  2440. <displayName count="one">lira italiana</displayName>
  2441. <displayName count="other">lires italianes</displayName>
  2442. </currency>
  2443. <currency type="JMD">
  2444. <displayName>dòlar jamaicà</displayName>
  2445. <displayName count="one">dòlar jamaicà</displayName>
  2446. <displayName count="other">dòlars jamaicans</displayName>
  2447. </currency>
  2448. <currency type="JOD">
  2449. <displayName>dinar jordà</displayName>
  2450. <displayName count="one">dinar jordà</displayName>
  2451. <displayName count="other">dinars jordans</displayName>
  2452. </currency>
  2453. <currency type="JPY">
  2454. <displayName>ien japonès</displayName>
  2455. <displayName count="one">ien japonès</displayName>
  2456. <displayName count="other">iens japonesos</displayName>
  2457. </currency>
  2458. <currency type="KES">
  2459. <displayName>xíling kenyà</displayName>
  2460. <displayName count="one">xíling kenyà</displayName>
  2461. <displayName count="other">xílings kenyans</displayName>
  2462. </currency>
  2463. <currency type="KGS">
  2464. <displayName>som kirguís</displayName>
  2465. <displayName count="one">som kirguís</displayName>
  2466. <displayName count="other">soms kirguisos</displayName>
  2467. </currency>
  2468. <currency type="KHR">
  2469. <displayName>riel cambodjà</displayName>
  2470. <displayName count="one">riel cambodjà</displayName>
  2471. <displayName count="other">riels cambodjans</displayName>
  2472. </currency>
  2473. <currency type="KMF">
  2474. <displayName>franc de les Comores</displayName>
  2475. <displayName count="one">franc de les Comores</displayName>
  2476. <displayName count="other">francs de les Comores</displayName>
  2477. </currency>
  2478. <currency type="KPW">
  2479. <displayName>won nord-coreà</displayName>
  2480. <displayName count="one">won nord-coreà</displayName>
  2481. <displayName count="other">wons nord-coreans</displayName>
  2482. </currency>
  2483. <currency type="KRW">
  2484. <displayName>won sud-coreà</displayName>
  2485. <displayName count="one">won sud-coreà</displayName>
  2486. <displayName count="other">wons sud-coreans</displayName>
  2487. </currency>
  2488. <currency type="KWD">
  2489. <displayName>dinar kuwaitià</displayName>
  2490. <displayName count="one">dinar kuwaitià</displayName>
  2491. <displayName count="other">dinars kuwaitians</displayName>
  2492. </currency>
  2493. <currency type="KYD">
  2494. <displayName>dòlar de les illes Caiman</displayName>
  2495. <displayName count="one">dòlar de les illes Caiman</displayName>
  2496. <displayName count="other">dòlars de les illes Caiman</displayName>
  2497. </currency>
  2498. <currency type="KZT">
  2499. <displayName>tenge kazakh</displayName>
  2500. <displayName count="one">tenge kazakh</displayName>
  2501. <displayName count="other">tenges kazakhs</displayName>
  2502. </currency>
  2503. <currency type="LAK">
  2504. <displayName>kip laosià</displayName>
  2505. <displayName count="one">kip laosià</displayName>
  2506. <displayName count="other">kips laosians</displayName>
  2507. </currency>
  2508. <currency type="LBP">
  2509. <displayName>lliura libanesa</displayName>
  2510. <displayName count="one">lliura libanesa</displayName>
  2511. <displayName count="other">lliures libaneses</displayName>
  2512. </currency>
  2513. <currency type="LKR">
  2514. <displayName>rupia de Sri Lanka</displayName>
  2515. <displayName count="one">rupia de Sri Lanka</displayName>
  2516. <displayName count="other">rupies de Sri Lanka</displayName>
  2517. </currency>
  2518. <currency type="LRD">
  2519. <displayName>dòlar liberià</displayName>
  2520. <displayName count="one">dòlar liberià</displayName>
  2521. <displayName count="other">dòlars liberians</displayName>
  2522. </currency>
  2523. <currency type="LSL">
  2524. <displayName>loti de Lesotho</displayName>
  2525. <displayName count="one">loti de Lesotho</displayName>
  2526. <displayName count="other">maloti de Lesotho</displayName>
  2527. </currency>
  2528. <currency type="LTL">
  2529. <displayName>litas lituà</displayName>
  2530. <displayName count="one">litas lituà</displayName>
  2531. <displayName count="other">litai lituans</displayName>
  2532. </currency>
  2533. <currency type="LTT">
  2534. <displayName>talonas lituà</displayName>
  2535. <displayName count="one">talonas lituà</displayName>
  2536. <displayName count="other">talonai lituans</displayName>
  2537. </currency>
  2538. <currency type="LUC">
  2539. <displayName>franc convertible luxemburguès</displayName>
  2540. <displayName count="one">franc convertible luxemburguès</displayName>
  2541. <displayName count="other">francs convertibles luxemburguesos</displayName>
  2542. </currency>
  2543. <currency type="LUF">
  2544. <displayName>franc luxemburguès</displayName>
  2545. <displayName count="one">franc luxemburguès</displayName>
  2546. <displayName count="other">francs luxemburguesos</displayName>
  2547. </currency>
  2548. <currency type="LUL">
  2549. <displayName>franc financer luxemburguès</displayName>
  2550. <displayName count="one">franc financer luxemburguès</displayName>
  2551. <displayName count="other">francs financers luxemburguesos</displayName>
  2552. </currency>
  2553. <currency type="LVL">
  2554. <displayName>lats letó</displayName>
  2555. <displayName count="one">lats letó</displayName>
  2556. <displayName count="other">lati letons</displayName>
  2557. </currency>
  2558. <currency type="LVR">
  2559. <displayName>ruble letó</displayName>
  2560. <displayName count="one">ruble letó</displayName>
  2561. <displayName count="other">rubles letons</displayName>
  2562. </currency>
  2563. <currency type="LYD">
  2564. <displayName>dinar libi</displayName>
  2565. <displayName count="one">dinar libi</displayName>
  2566. <displayName count="other">dinars libis</displayName>
  2567. </currency>
  2568. <currency type="MAD">
  2569. <displayName>dírham marroquí</displayName>
  2570. <displayName count="one">dírham marroquí</displayName>
  2571. <displayName count="other">dírhams marroquins</displayName>
  2572. </currency>
  2573. <currency type="MAF">
  2574. <displayName>franc marroquí</displayName>
  2575. <displayName count="one">franc marroquí</displayName>
  2576. <displayName count="other">francs marroquins</displayName>
  2577. </currency>
  2578. <currency type="MDL">
  2579. <displayName>leu moldau</displayName>
  2580. <displayName count="one">leu moldau</displayName>
  2581. <displayName count="other">lei moldaus</displayName>
  2582. </currency>
  2583. <currency type="MGA">
  2584. <displayName>ariary malgaix</displayName>
  2585. <displayName count="one">ariary malgaix</displayName>
  2586. <displayName count="other">ariarys malgaixos</displayName>
  2587. </currency>
  2588. <currency type="MGF">
  2589. <displayName>franc malgaix</displayName>
  2590. <displayName count="one">franc malgaix</displayName>
  2591. <displayName count="other">francs malgaixos</displayName>
  2592. </currency>
  2593. <currency type="MKD">
  2594. <displayName>denar macedoni</displayName>
  2595. <displayName count="one">denar macedoni</displayName>
  2596. <displayName count="other">denari macedonis</displayName>
  2597. </currency>
  2598. <currency type="MLF">
  2599. <displayName>franc malià</displayName>
  2600. <displayName count="one">franc malià</displayName>
  2601. <displayName count="other">francs malians</displayName>
  2602. </currency>
  2603. <currency type="MMK">
  2604. <displayName>kyat de Myanmar</displayName>
  2605. <displayName count="one">kyat de Myanmar</displayName>
  2606. <displayName count="other">kyats de Myanmar</displayName>
  2607. </currency>
  2608. <currency type="MNT">
  2609. <displayName>tögrög mongol</displayName>
  2610. <displayName count="one">tögrög mongol</displayName>
  2611. <displayName count="other">tögrögs mongols</displayName>
  2612. </currency>
  2613. <currency type="MOP">
  2614. <displayName>pataca de Macau</displayName>
  2615. <displayName count="one">pataca de Macau</displayName>
  2616. <displayName count="other">pataques de Macau</displayName>
  2617. </currency>
  2618. <currency type="MRO">
  2619. <displayName>ouguiya maurità</displayName>
  2620. <displayName count="one">ouguiya maurità</displayName>
  2621. <displayName count="other">ouguiyas mauritans</displayName>
  2622. </currency>
  2623. <currency type="MTL">
  2624. <displayName>lira maltesa</displayName>
  2625. <displayName count="one">lira maltesa</displayName>
  2626. <displayName count="other">lires malteses</displayName>
  2627. </currency>
  2628. <currency type="MTP">
  2629. <displayName>lliura maltesa</displayName>
  2630. <displayName count="one">lliura maltesa</displayName>
  2631. <displayName count="other">lliures malteses</displayName>
  2632. </currency>
  2633. <currency type="MUR">
  2634. <displayName>rupia de Maurici</displayName>
  2635. <displayName count="one">rupia de Maurici</displayName>
  2636. <displayName count="other">rupies de Maurici</displayName>
  2637. </currency>
  2638. <currency type="MVR">
  2639. <displayName>rupia de les Maldives</displayName>
  2640. <displayName count="one">rupia de les Maldives</displayName>
  2641. <displayName count="other">rupies de les Maldives</displayName>
  2642. </currency>
  2643. <currency type="MWK">
  2644. <displayName>kwacha malawià</displayName>
  2645. <displayName count="one">kwacha malawià</displayName>
  2646. <displayName count="other">kwachas malawians</displayName>
  2647. </currency>
  2648. <currency type="MXN">
  2649. <displayName>peso mexicà</displayName>
  2650. <displayName count="one">peso mexicà</displayName>
  2651. <displayName count="other">pesos mexicans</displayName>
  2652. </currency>
  2653. <currency type="MXP">
  2654. <displayName>peso de plata mexicà (1861-1992)</displayName>
  2655. <displayName count="one">peso de plata mexicà (MXP)</displayName>
  2656. <displayName count="other">pesos de plata mexicans (MXP)</displayName>
  2657. </currency>
  2658. <currency type="MXV">
  2659. <displayName>unidad de inversión (UDI) mexicana</displayName>
  2660. <displayName count="one">unidad de inversión (UDI) mexicana</displayName>
  2661. <displayName count="other">unidades de inversión (UDI) mexicanes</displayName>
  2662. </currency>
  2663. <currency type="MYR">
  2664. <displayName>ringgit de Malàisia</displayName>
  2665. <displayName count="one">ringgit de Malàisia</displayName>
  2666. <displayName count="other">ringgits de Malàisia</displayName>
  2667. </currency>
  2668. <currency type="MZE">
  2669. <displayName>escut moçambiquès</displayName>
  2670. <displayName count="one">escut moçambiquès</displayName>
  2671. <displayName count="other">escuts moçambiquesos</displayName>
  2672. </currency>
  2673. <currency type="MZM">
  2674. <displayName>antic metical moçambiquès</displayName>
  2675. <displayName count="one">antic metical moçambiquès</displayName>
  2676. <displayName count="other">antics meticals moçambiquesos</displayName>
  2677. </currency>
  2678. <currency type="MZN">
  2679. <displayName>metical moçambiquès</displayName>
  2680. <displayName count="one">metical moçambiquès</displayName>
  2681. <displayName count="other">meticals moçambiquesos</displayName>
  2682. </currency>
  2683. <currency type="NAD">
  2684. <displayName>dòlar namibià</displayName>
  2685. <displayName count="one">dòlar namibià</displayName>
  2686. <displayName count="other">dòlars namibians</displayName>
  2687. </currency>
  2688. <currency type="NGN">
  2689. <displayName>naira nigerià</displayName>
  2690. <displayName count="one">naira nigerià</displayName>
  2691. <displayName count="other">naires nigerians</displayName>
  2692. </currency>
  2693. <currency type="NIC">
  2694. <displayName>córdoba nicaragüenca</displayName>
  2695. <displayName count="one">córdoba nicaragüenca</displayName>
  2696. <displayName count="other">córdobas nicaragüenques</displayName>
  2697. </currency>
  2698. <currency type="NIO">
  2699. <displayName>córdoba oro nicaragüenca</displayName>
  2700. <displayName count="one">córdoba oro nicaragüenca</displayName>
  2701. <displayName count="other">córdobas oro nicaragüenques</displayName>
  2702. </currency>
  2703. <currency type="NLG">
  2704. <displayName>florí neerlandès</displayName>
  2705. <displayName count="one">florí neerlandès</displayName>
  2706. <displayName count="other">florins neerlandesos</displayName>
  2707. </currency>
  2708. <currency type="NOK">
  2709. <displayName>corona noruega</displayName>
  2710. <displayName count="one">corona noruega</displayName>
  2711. <displayName count="other">corones noruegues</displayName>
  2712. </currency>
  2713. <currency type="NPR">
  2714. <displayName>rupia nepalesa</displayName>
  2715. <displayName count="one">rupia nepalesa</displayName>
  2716. <displayName count="other">rupies nepaleses</displayName>
  2717. </currency>
  2718. <currency type="NZD">
  2719. <displayName>dòlar neozelandès</displayName>
  2720. <displayName count="one">dòlar neozelandès</displayName>
  2721. <displayName count="other">dòlars neozelandesos</displayName>
  2722. </currency>
  2723. <currency type="OMR">
  2724. <displayName>rial omanita</displayName>
  2725. <displayName count="one">rial omanita</displayName>
  2726. <displayName count="other">rials omanites</displayName>
  2727. </currency>
  2728. <currency type="PAB">
  2729. <displayName>balboa panameny</displayName>
  2730. <displayName count="one">balboa panameny</displayName>
  2731. <displayName count="other">balboes panamenys</displayName>
  2732. </currency>
  2733. <currency type="PEI">
  2734. <displayName>inti peruà</displayName>
  2735. <displayName count="one">inti peruà</displayName>
  2736. <displayName count="other">intis peruans</displayName>
  2737. </currency>
  2738. <currency type="PEN">
  2739. <displayName>nou sol peruà</displayName>
  2740. <displayName count="one">nou sol peruà</displayName>
  2741. <displayName count="other">nous sols peruans</displayName>
  2742. </currency>
  2743. <currency type="PES">
  2744. <displayName>sol peruà</displayName>
  2745. <displayName count="one">sol peruà</displayName>
  2746. <displayName count="other">sols peruans</displayName>
  2747. </currency>
  2748. <currency type="PGK">
  2749. <displayName>kina de Papua Nova Guinea</displayName>
  2750. <displayName count="one">kina de Papua Nova Guinea</displayName>
  2751. <displayName count="other">kines de Papua Nova Guinea</displayName>
  2752. </currency>
  2753. <currency type="PHP">
  2754. <displayName>peso filipí</displayName>
  2755. <displayName count="one">peso filipí</displayName>
  2756. <displayName count="other">pesos filipins</displayName>
  2757. </currency>
  2758. <currency type="PKR">
  2759. <displayName>rupia pakistanesa</displayName>
  2760. <displayName count="one">rupia pakistanesa</displayName>
  2761. <displayName count="other">rupies pakistaneses</displayName>
  2762. </currency>
  2763. <currency type="PLN">
  2764. <displayName>zloty polonès</displayName>
  2765. <displayName count="one">zloty polonès</displayName>
  2766. <displayName count="other">zlote polonesos</displayName>
  2767. </currency>
  2768. <currency type="PLZ">
  2769. <displayName>zloty polonès (1950-1995)</displayName>
  2770. <displayName count="one">zloty polonès (PLZ)</displayName>
  2771. <displayName count="other">zlote polonesos (PLZ)</displayName>
  2772. </currency>
  2773. <currency type="PTE">
  2774. <displayName>escut portuguès</displayName>
  2775. <displayName count="one">escut portuguès</displayName>
  2776. <displayName count="other">escuts portuguesos</displayName>
  2777. </currency>
  2778. <currency type="PYG">
  2779. <displayName>guaraní paraguaià</displayName>
  2780. <displayName count="one">guaraní paraguaià</displayName>
  2781. <displayName count="other">guaranís paraguaians</displayName>
  2782. </currency>
  2783. <currency type="QAR">
  2784. <displayName>riyal de Qatar</displayName>
  2785. <displayName count="one">riyal de Qatar</displayName>
  2786. <displayName count="other">riyals de Qatar</displayName>
  2787. </currency>
  2788. <currency type="RHD">
  2789. <displayName>dòlar rhodesià</displayName>
  2790. <displayName count="one">dòlar rhodesià</displayName>
  2791. <displayName count="other">dòlars rhodesians</displayName>
  2792. </currency>
  2793. <currency type="ROL">
  2794. <displayName>antic leu romanès</displayName>
  2795. <displayName count="one">antic leu romanès</displayName>
  2796. <displayName count="other">antics lei romanesos</displayName>
  2797. </currency>
  2798. <currency type="RON">
  2799. <displayName>leu romanès</displayName>
  2800. <displayName count="one">leu romanès</displayName>
  2801. <displayName count="other">lei romanesos</displayName>
  2802. </currency>
  2803. <currency type="RSD">
  2804. <displayName>dinar serbi</displayName>
  2805. <displayName count="one">dinar serbi</displayName>
  2806. <displayName count="other">dinars serbis</displayName>
  2807. </currency>
  2808. <currency type="RUB">
  2809. <displayName>ruble rus</displayName>
  2810. <displayName count="one">ruble rus</displayName>
  2811. <displayName count="other">rubles russos</displayName>
  2812. </currency>
  2813. <currency type="RUR">
  2814. <displayName>ruble rus (1991-1998)</displayName>
  2815. <displayName count="one">ruble rus (RUR)</displayName>
  2816. <displayName count="other">rubles russos (RUR)</displayName>
  2817. </currency>
  2818. <currency type="RWF">
  2819. <displayName>franc rwandès</displayName>
  2820. <displayName count="one">franc rwandès</displayName>
  2821. <displayName count="other">francs rwandesos</displayName>
  2822. </currency>
  2823. <currency type="SAR">
  2824. <displayName>riyal saudita</displayName>
  2825. <displayName count="one">riyal saudita</displayName>
  2826. <displayName count="other">riyals saudites</displayName>
  2827. </currency>
  2828. <currency type="SBD">
  2829. <displayName>dòlar de les illes Salomó</displayName>
  2830. <displayName count="one">dòlar de les illes Salomó</displayName>
  2831. <displayName count="other">dòlars de les illes Salomó</displayName>
  2832. </currency>
  2833. <currency type="SCR">
  2834. <displayName>rupia de les Seychelles</displayName>
  2835. <displayName count="one">rupia de les Seychelles</displayName>
  2836. <displayName count="other">rupies de les Seychelles</displayName>
  2837. </currency>
  2838. <currency type="SDD">
  2839. <displayName>dinar sudanès</displayName>
  2840. <displayName count="one">dinar sudanès</displayName>
  2841. <displayName count="other">dinars sudanesos</displayName>
  2842. </currency>
  2843. <currency type="SDG">
  2844. <displayName>lliura sudanesa</displayName>
  2845. <displayName count="one">lliura sudanesa</displayName>
  2846. <displayName count="other">lliures sudaneses</displayName>
  2847. </currency>
  2848. <currency type="SDP">
  2849. <displayName>antiga lliura sudanesa</displayName>
  2850. <displayName count="one">antiga lliura sudanesa</displayName>
  2851. <displayName count="other">antigues lliures sudaneses</displayName>
  2852. </currency>
  2853. <currency type="SEK">
  2854. <displayName>corona sueca</displayName>
  2855. <displayName count="one">corona sueca</displayName>
  2856. <displayName count="other">corones sueques</displayName>
  2857. </currency>
  2858. <currency type="SGD">
  2859. <displayName>dòlar de Singapur</displayName>
  2860. <displayName count="one">dòlar de Singapur</displayName>
  2861. <displayName count="other">dòlars de Singapur</displayName>
  2862. </currency>
  2863. <currency type="SHP">
  2864. <displayName>lliura de Santa Helena</displayName>
  2865. <displayName count="one">lliura de Santa Helena</displayName>
  2866. <displayName count="other">lliures de Santa Helena</displayName>
  2867. </currency>
  2868. <currency type="SIT">
  2869. <displayName>tolar eslovè</displayName>
  2870. <displayName count="one">tolar eslovè</displayName>
  2871. <displayName count="other">tolars eslovens</displayName>
  2872. </currency>
  2873. <currency type="SKK">
  2874. <displayName>corona eslovaca</displayName>
  2875. <displayName count="one">corona eslovaca</displayName>
  2876. <displayName count="other">corones eslovaques</displayName>
  2877. </currency>
  2878. <currency type="SLL">
  2879. <displayName>leone de Sierra Leone</displayName>
  2880. <displayName count="one">leone de Sierra Leone</displayName>
  2881. <displayName count="other">leones de Sierra Leone</displayName>
  2882. </currency>
  2883. <currency type="SOS">
  2884. <displayName>xíling somali</displayName>
  2885. <displayName count="one">xíling somali</displayName>
  2886. <displayName count="other">xílings somalis</displayName>
  2887. </currency>
  2888. <currency type="SRD">
  2889. <displayName>dòlar de Surinam</displayName>
  2890. <displayName count="one">dòlar de Surinam</displayName>
  2891. <displayName count="other">dòlars de Surinam</displayName>
  2892. </currency>
  2893. <currency type="SRG">
  2894. <displayName>florí de Surinam</displayName>
  2895. <displayName count="one">florí de Surinam</displayName>
  2896. <displayName count="other">florins de Surinam</displayName>
  2897. </currency>
  2898. <currency type="STD">
  2899. <displayName>dobra de São Tomé i Príncipe</displayName>
  2900. <displayName count="one">dobra de São Tomé i Príncipe</displayName>
  2901. <displayName count="other">dobras de São Tomé i Príncipe</displayName>
  2902. </currency>
  2903. <currency type="SUR">
  2904. <displayName>ruble soviètic</displayName>
  2905. <displayName count="one">ruble soviètic</displayName>
  2906. <displayName count="other">rubles soviètics</displayName>
  2907. </currency>
  2908. <currency type="SVC">
  2909. <displayName>colón salvadorenc</displayName>
  2910. <displayName count="one">colón salvadorenc</displayName>
  2911. <displayName count="other">colones salvadorencs</displayName>
  2912. </currency>
  2913. <currency type="SYP">
  2914. <displayName>lliura síria</displayName>
  2915. <displayName count="one">lliura síria</displayName>
  2916. <displayName count="other">lliures síries</displayName>
  2917. </currency>
  2918. <currency type="SZL">
  2919. <displayName>lilangeni swazi</displayName>
  2920. <displayName count="one">lilangeni swazi</displayName>
  2921. <displayName count="other">emalangeni swazis</displayName>
  2922. </currency>
  2923. <currency type="THB">
  2924. <displayName>baht tailandès</displayName>
  2925. <displayName count="one">baht tailandès</displayName>
  2926. <displayName count="other">bahts tailandesos</displayName>
  2927. </currency>
  2928. <currency type="TJR">
  2929. <displayName>ruble tadjik</displayName>
  2930. <displayName count="one">ruble tadjik</displayName>
  2931. <displayName count="other">rubles tadjiks</displayName>
  2932. </currency>
  2933. <currency type="TJS">
  2934. <displayName>somoni tadjik</displayName>
  2935. <displayName count="one">somoni tadjik</displayName>
  2936. <displayName count="other">somonis tadjiks</displayName>
  2937. </currency>
  2938. <currency type="TMM">
  2939. <displayName>manat turcman</displayName>
  2940. <displayName count="one">manat turcman</displayName>
  2941. <displayName count="other">manats turcmans</displayName>
  2942. </currency>
  2943. <currency type="TND">
  2944. <displayName>dinar tunisià</displayName>
  2945. <displayName count="one">dinar tunisià</displayName>
  2946. <displayName count="other">dinars tunisians</displayName>
  2947. </currency>
  2948. <currency type="TOP">
  2949. <displayName>pa‘anga tongà</displayName>
  2950. <displayName count="one">pa‘anga tongà</displayName>
  2951. <displayName count="other">pa‘angas tongans</displayName>
  2952. </currency>
  2953. <currency type="TPE">
  2954. <displayName>escut de Timor</displayName>
  2955. <displayName count="one">escut de Timor</displayName>
  2956. <displayName count="other">escuts de Timor</displayName>
  2957. </currency>
  2958. <currency type="TRL">
  2959. <displayName>antiga lira turca</displayName>
  2960. <displayName count="one">antiga lira turca</displayName>
  2961. <displayName count="other">antigues lires turques</displayName>
  2962. </currency>
  2963. <currency type="TRY">
  2964. <displayName>lira turca</displayName>
  2965. <displayName count="one">lira turca</displayName>
  2966. <displayName count="other">lires turques</displayName>
  2967. </currency>
  2968. <currency type="TTD">
  2969. <displayName>dòlar de Trinitat i Tobago</displayName>
  2970. <displayName count="one">dòlar de Trinitat i Tobago</displayName>
  2971. <displayName count="other">dòlars de Trinitat i Tobago</displayName>
  2972. </currency>
  2973. <currency type="TWD">
  2974. <displayName>nou dòlar de Taiwan</displayName>
  2975. <displayName count="one">nou dòlar de Taiwan</displayName>
  2976. <displayName count="other">nous dòlars de Taiwan</displayName>
  2977. </currency>
  2978. <currency type="TZS">
  2979. <displayName>xíling tanzà</displayName>
  2980. <displayName count="one">xíling tanzà</displayName>
  2981. <displayName count="other">xílings tanzans</displayName>
  2982. </currency>
  2983. <currency type="UAH">
  2984. <displayName>hrívnia ucraïnesa</displayName>
  2985. <displayName count="one">hrívnia ucraïnesa</displayName>
  2986. <displayName count="other">hrívnies ucraïneses</displayName>
  2987. </currency>
  2988. <currency type="UAK">
  2989. <displayName>karbóvanets ucraïnès</displayName>
  2990. <displayName count="one">karbóvanets ucraïnès</displayName>
  2991. <displayName count="other">karbóvantsiv ucraïnesos</displayName>
  2992. </currency>
  2993. <currency type="UGS">
  2994. <displayName>xíling ugandès (1966-1987)</displayName>
  2995. <displayName count="one">xíling ugandès (UGS)</displayName>
  2996. <displayName count="other">xílings ugandesos (UGS)</displayName>
  2997. </currency>
  2998. <currency type="UGX">
  2999. <displayName>xíling ugandès</displayName>
  3000. <displayName count="one">xíling ugandès</displayName>
  3001. <displayName count="other">xílings ugandesos</displayName>
  3002. </currency>
  3003. <currency type="USD">
  3004. <displayName>dòlar dels Estats Units</displayName>
  3005. <displayName count="one">dòlar dels Estats Units</displayName>
  3006. <displayName count="other">dòlars dels Estats Units</displayName>
  3007. </currency>
  3008. <currency type="USN">
  3009. <displayName>dòlar dels Estats Units (dia següent)</displayName>
  3010. <displayName count="one">dòlar dels Estats Units (dia següent)</displayName>
  3011. <displayName count="other">dòlars dels Estats Units (dia següent)</displayName>
  3012. </currency>
  3013. <currency type="USS">
  3014. <displayName>dòlar dels Estats Units (mateix dia)</displayName>
  3015. <displayName count="one">dòlar dels Estats Units (mateix dia)</displayName>
  3016. <displayName count="other">dòlars dels Estats Units (mateix dia)</displayName>
  3017. </currency>
  3018. <currency type="UYI">
  3019. <displayName>peso uruguaià en unitats indexades</displayName>
  3020. <displayName count="one">peso uruguaià en unitats indexades</displayName>
  3021. <displayName count="other">pesos uruguaians en unitats indexades</displayName>
  3022. </currency>
  3023. <currency type="UYP">
  3024. <displayName>peso uruguaià (1975-1993)</displayName>
  3025. <displayName count="one">peso uruguaià (UYP)</displayName>
  3026. <displayName count="other">pesos uruguaians (UYP)</displayName>
  3027. </currency>
  3028. <currency type="UYU">
  3029. <displayName>peso uruguaià</displayName>
  3030. <displayName count="one">peso uruguaià</displayName>
  3031. <displayName count="other">pesos uruguaians</displayName>
  3032. </currency>
  3033. <currency type="UZS">
  3034. <displayName>som uzbek</displayName>
  3035. <displayName count="one">som uzbek</displayName>
  3036. <displayName count="other">soms uzbeks</displayName>
  3037. </currency>
  3038. <currency type="VEB">
  3039. <displayName>bolívar veneçolà</displayName>
  3040. <displayName count="one">bolívar veneçolà</displayName>
  3041. <displayName count="other">bolívars veneçolans</displayName>
  3042. </currency>
  3043. <currency type="VEF">
  3044. <displayName>bolívar fort veneçolà</displayName>
  3045. <displayName count="one">bolívar fort veneçolà</displayName>
  3046. <displayName count="other">bolívars forts veneçolans</displayName>
  3047. </currency>
  3048. <currency type="VND">
  3049. <displayName>dong vietnamita</displayName>
  3050. <displayName count="one">dong vietnamita</displayName>
  3051. <displayName count="other">dongs vietnamites</displayName>
  3052. </currency>
  3053. <currency type="VUV">
  3054. <displayName>vatu de Vanuatu</displayName>
  3055. <displayName count="one">vatu de Vanuatu</displayName>
  3056. <displayName count="other">vatus de Vanuatu</displayName>
  3057. </currency>
  3058. <currency type="WST">
  3059. <displayName>tala samoà</displayName>
  3060. <displayName count="one">tala samoà</displayName>
  3061. <displayName count="other">tales samoans</displayName>
  3062. </currency>
  3063. <currency type="XAF">
  3064. <displayName>franc CFA BEAC</displayName>
  3065. <displayName count="one">franc CFA BEAC</displayName>
  3066. <displayName count="other">francs CFA BEAC</displayName>
  3067. </currency>
  3068. <currency type="XAG">
  3069. <displayName>plata</displayName>
  3070. <displayName count="one">plata</displayName>
  3071. <displayName count="other">plata</displayName>
  3072. </currency>
  3073. <currency type="XAU">
  3074. <displayName>or</displayName>
  3075. <displayName count="one">or</displayName>
  3076. <displayName count="other">or</displayName>
  3077. </currency>
  3078. <currency type="XBA">
  3079. <displayName>unitat compensatòria europea</displayName>
  3080. <displayName count="one">unitat compensatòria europea</displayName>
  3081. <displayName count="other">unitats compensatòries europees</displayName>
  3082. </currency>
  3083. <currency type="XBB">
  3084. <displayName>unitat monetària europea</displayName>
  3085. <displayName count="one">unitat monetària europea</displayName>
  3086. <displayName count="other">unitats monetàries europees</displayName>
  3087. </currency>
  3088. <currency type="XBC">
  3089. <displayName>unitat de compte europea (XBC)</displayName>
  3090. <displayName count="one">unitat de compte europea (XBC)</displayName>
  3091. <displayName count="other">unitats de compte europees (XBC)</displayName>
  3092. </currency>
  3093. <currency type="XBD">
  3094. <displayName>unitat de compte europea (XBD)</displayName>
  3095. <displayName count="one">unitat de compte europea (XBD)</displayName>
  3096. <displayName count="other">unitats de compte europees (XBD)</displayName>
  3097. </currency>
  3098. <currency type="XCD">
  3099. <displayName>dòlar del Carib Oriental</displayName>
  3100. <displayName count="one">dòlar del Carib Oriental</displayName>
  3101. <displayName count="other">dòlars del Carib Oriental</displayName>
  3102. </currency>
  3103. <currency type="XDR">
  3104. <displayName>drets especials de gir</displayName>
  3105. <displayName count="one">drets especials de gir</displayName>
  3106. <displayName count="other">drets especials de gir</displayName>
  3107. </currency>
  3108. <currency type="XEU">
  3109. <displayName>unitat de moneda europea</displayName>
  3110. <displayName count="one">unitat de moneda europea</displayName>
  3111. <displayName count="other">unitats de moneda europees</displayName>
  3112. </currency>
  3113. <currency type="XFO">
  3114. <displayName>franc or francès</displayName>
  3115. <displayName count="one">franc or francès</displayName>
  3116. <displayName count="other">francs or francesos</displayName>
  3117. </currency>
  3118. <currency type="XFU">
  3119. <displayName>franc UIC francès</displayName>
  3120. <displayName count="one">franc UIC francès</displayName>
  3121. <displayName count="other">francs UIC francesos</displayName>
  3122. </currency>
  3123. <currency type="XOF">
  3124. <displayName>franc CFA BCEAO</displayName>
  3125. <displayName count="one">franc CFA BCEAO</displayName>
  3126. <displayName count="other">francs CFA BCEAO</displayName>
  3127. </currency>
  3128. <currency type="XPD">
  3129. <displayName>pal·ladi</displayName>
  3130. <displayName count="one">pal·ladi</displayName>
  3131. <displayName count="other">pal·ladi</displayName>
  3132. </currency>
  3133. <currency type="XPF">
  3134. <displayName>franc CFP</displayName>
  3135. <displayName count="one">franc CFP</displayName>
  3136. <displayName count="other">francs CFP</displayName>
  3137. </currency>
  3138. <currency type="XPT">
  3139. <displayName>platí</displayName>
  3140. <displayName count="one">platí</displayName>
  3141. <displayName count="other">platí</displayName>
  3142. </currency>
  3143. <currency type="XRE">
  3144. <displayName>fons RINET</displayName>
  3145. <displayName count="one">fons RINET</displayName>
  3146. <displayName count="other">fons RINET</displayName>
  3147. </currency>
  3148. <currency type="XTS">
  3149. <displayName>codi reservat per a proves</displayName>
  3150. <displayName count="one">codi reservat per a proves</displayName>
  3151. <displayName count="other">codi reservat per a proves</displayName>
  3152. </currency>
  3153. <currency type="XXX">
  3154. <displayName>moneda desconeguda/no vàlida</displayName>
  3155. <displayName count="one">moneda desconeguda/no vàlida</displayName>
  3156. <displayName count="other">monedes desconegudes/no vàlides</displayName>
  3157. </currency>
  3158. <currency type="YDD">
  3159. <displayName>dinar iemenita</displayName>
  3160. <displayName count="one">dinar iemenita</displayName>
  3161. <displayName count="other">dinars iemenites</displayName>
  3162. </currency>
  3163. <currency type="YER">
  3164. <displayName>rial iemenita</displayName>
  3165. <displayName count="one">rial iemenita</displayName>
  3166. <displayName count="other">rials iemenites</displayName>
  3167. </currency>
  3168. <currency type="YUD">
  3169. <displayName>dinar fort iugoslau</displayName>
  3170. <displayName count="one">dinar fort iugoslau</displayName>
  3171. <displayName count="other">dinars forts iugoslaus</displayName>
  3172. </currency>
  3173. <currency type="YUM">
  3174. <displayName>nou dinar iugoslau</displayName>
  3175. <displayName count="one">nou dinar iugoslau</displayName>
  3176. <displayName count="other">nous dinars iugoslaus</displayName>
  3177. </currency>
  3178. <currency type="YUN">
  3179. <displayName>dinar convertible iugoslau</displayName>
  3180. <displayName count="one">dinar convertible iugoslau</displayName>
  3181. <displayName count="other">dinars convertibles iugoslaus</displayName>
  3182. </currency>
  3183. <currency type="ZAL">
  3184. <displayName>rand sud-africà (financer)</displayName>
  3185. <displayName count="one">rand sud-africà (financer)</displayName>
  3186. <displayName count="other">rands sud-africans (financers)</displayName>
  3187. </currency>
  3188. <currency type="ZAR">
  3189. <displayName>rand sud-africà</displayName>
  3190. <displayName count="one">rand sud-africà</displayName>
  3191. <displayName count="other">rands sud-africans</displayName>
  3192. </currency>
  3193. <currency type="ZMK">
  3194. <displayName>kwacha zambià</displayName>
  3195. <displayName count="one">kwacha zambià</displayName>
  3196. <displayName count="other">kwacha zambians</displayName>
  3197. </currency>
  3198. <currency type="ZRN">
  3199. <displayName>nou zaire zairès</displayName>
  3200. <displayName count="one">nou zaire zairès</displayName>
  3201. <displayName count="other">nous zaires zairesos</displayName>
  3202. </currency>
  3203. <currency type="ZRZ">
  3204. <displayName>zaire zairès</displayName>
  3205. <displayName count="one">zaire zairès</displayName>
  3206. <displayName count="other">zaires zairesos</displayName>
  3207. </currency>
  3208. <currency type="ZWD">
  3209. <displayName>dòlar zimbabuès</displayName>
  3210. <displayName count="one">dòlar zimbabuès</displayName>
  3211. <displayName count="other">dòlars zimbabuesos</displayName>
  3212. </currency>
  3213. </currencies>
  3214. </numbers>
  3215. <units>
  3216. <unit type="day">
  3217. <unitPattern count="one">{0} dia</unitPattern>
  3218. <unitPattern count="other">{0} dies</unitPattern>
  3219. </unit>
  3220. <unit type="hour">
  3221. <unitPattern count="one">{0} hora</unitPattern>
  3222. <unitPattern count="other">{0} hores</unitPattern>
  3223. </unit>
  3224. <unit type="minute">
  3225. <unitPattern count="one">{0} minut</unitPattern>
  3226. <unitPattern count="other">{0} minuts</unitPattern>
  3227. </unit>
  3228. <unit type="month">
  3229. <unitPattern count="one">{0} mes</unitPattern>
  3230. <unitPattern count="other">{0} mesos</unitPattern>
  3231. </unit>
  3232. <unit type="second">
  3233. <unitPattern count="one">{0} segon</unitPattern>
  3234. <unitPattern count="other">{0} segons</unitPattern>
  3235. </unit>
  3236. <unit type="week">
  3237. <unitPattern count="one">{0} setmana</unitPattern>
  3238. <unitPattern count="other">{0} setmanes</unitPattern>
  3239. </unit>
  3240. <unit type="year">
  3241. <unitPattern count="one">{0} any</unitPattern>
  3242. <unitPattern count="other">{0} anys</unitPattern>
  3243. </unit>
  3244. </units>
  3245. <posix>
  3246. <messages>
  3247. <yesstr>sí:s</yesstr>
  3248. <nostr>no:n</nostr>
  3249. </messages>
  3250. </posix>
  3251. </ldml>