br.xml 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
  3. <!-- Copyright © 1991-2013 Unicode, Inc.
  4. CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
  5. For terms of use, see http://www.unicode.org/copyright.html
  6. -->
  7. <ldml>
  8. <identity>
  9. <version number="$Revision: 9852 $"/>
  10. <generation date="$Date: 2014-02-28 23:57:43 -0600 (Fri, 28 Feb 2014) $"/>
  11. <language type="br"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <languages>
  15. <language type="aa">afar</language>
  16. <language type="ab">abkhazeg</language>
  17. <language type="ach">acoli</language>
  18. <language type="ada">adangme</language>
  19. <language type="ady">adygeieg</language>
  20. <language type="ae">avesteg</language>
  21. <language type="af">afrikaans</language>
  22. <language type="afh">afrihili</language>
  23. <language type="agq">aghem</language>
  24. <language type="ak">akan</language>
  25. <language type="akk">akadeg</language>
  26. <language type="alt">altaieg ar Su</language>
  27. <language type="am">amhareg</language>
  28. <language type="an">aragoneg</language>
  29. <language type="ang">hensaozneg</language>
  30. <language type="ar">arabeg</language>
  31. <language type="arc">arameeg</language>
  32. <language type="arn">araoukaneg</language>
  33. <language type="arp">arapaho</language>
  34. <language type="arw">arawakeg</language>
  35. <language type="as">asameg</language>
  36. <language type="asa">asu</language>
  37. <language type="av">avar</language>
  38. <language type="awa">awadhi</language>
  39. <language type="ay">aymara</language>
  40. <language type="az">azeri</language>
  41. <language type="ba">bachkir</language>
  42. <language type="bal">baloutchi</language>
  43. <language type="ban">balineg</language>
  44. <language type="bas">basaa</language>
  45. <language type="be">belaruseg</language>
  46. <language type="bem">bemba</language>
  47. <language type="bez">bena</language>
  48. <language type="bg">bulgareg</language>
  49. <language type="bho">bhojpuri</language>
  50. <language type="bi">bislama</language>
  51. <language type="bik">bikol</language>
  52. <language type="bin">bini</language>
  53. <language type="bm">bambara</language>
  54. <language type="bn">bengali</language>
  55. <language type="bo">tibetaneg</language>
  56. <language type="br">brezhoneg</language>
  57. <language type="bra">braj</language>
  58. <language type="brx">bodo</language>
  59. <language type="bs">bosneg</language>
  60. <language type="bua">bouriat</language>
  61. <language type="bug">bugi</language>
  62. <language type="byn">blin</language>
  63. <language type="ca">katalaneg</language>
  64. <language type="cad">caddo</language>
  65. <language type="car">karibeg</language>
  66. <language type="ce">tchetcheneg</language>
  67. <language type="ceb">cebuano</language>
  68. <language type="ch">chamorru</language>
  69. <language type="chb">chibcha</language>
  70. <language type="chm">marieg</language>
  71. <language type="cho">choktaw</language>
  72. <language type="chp">chipewyan</language>
  73. <language type="chr">cherokee</language>
  74. <language type="chy">cheyenne</language>
  75. <language type="ckb">kurdeg sorani</language>
  76. <language type="co">korseg</language>
  77. <language type="cop">kopteg</language>
  78. <language type="cr">kri</language>
  79. <language type="crh">turkeg Krimea</language>
  80. <language type="cs">tchekeg</language>
  81. <language type="csb">kachoubeg</language>
  82. <language type="cu">slavoneg iliz</language>
  83. <language type="cv">tchouvatch</language>
  84. <language type="cy">kembraeg</language>
  85. <language type="da">daneg</language>
  86. <language type="dak">dakota</language>
  87. <language type="dar">dargwa</language>
  88. <language type="de">alamaneg</language>
  89. <language type="de_AT">alamaneg Aostria</language>
  90. <language type="de_CH">alamaneg uhel Suis</language>
  91. <language type="del">delaware</language>
  92. <language type="dgr">dogrib</language>
  93. <language type="din">dinka</language>
  94. <language type="doi">dogri</language>
  95. <language type="dsb">izelsorabeg</language>
  96. <language type="dv">divehi</language>
  97. <language type="dyu">dyula</language>
  98. <language type="dz">dzongkha</language>
  99. <language type="ebu">embu</language>
  100. <language type="ee">ewe</language>
  101. <language type="efi">efik</language>
  102. <language type="egy">henegipteg</language>
  103. <language type="eka">ekajuk</language>
  104. <language type="el">gresianeg</language>
  105. <language type="elx">elameg</language>
  106. <language type="en">saozneg</language>
  107. <language type="en_AU">saozneg Aostralia</language>
  108. <language type="en_CA">saozneg Kanada</language>
  109. <language type="en_GB">saozneg Breizh-Veur</language>
  110. <language type="en_US">saozneg S.U.</language>
  111. <language type="enm">krennsaozneg</language>
  112. <language type="eo">esperanteg</language>
  113. <language type="es">spagnoleg</language>
  114. <language type="es_419">spagnoleg Amerika latin</language>
  115. <language type="es_ES">spagnoleg Europa</language>
  116. <language type="et">estoneg</language>
  117. <language type="eu">euskareg</language>
  118. <language type="ewo">ewondo</language>
  119. <language type="fa">perseg</language>
  120. <language type="fan">fang</language>
  121. <language type="fat">fanti</language>
  122. <language type="fi">finneg</language>
  123. <language type="fil">filipineg</language>
  124. <language type="fj">fidjieg</language>
  125. <language type="fo">faeroeg</language>
  126. <language type="fon">fon</language>
  127. <language type="fr">galleg</language>
  128. <language type="fr_CA">galleg Kanada</language>
  129. <language type="fr_CH">galleg Suis</language>
  130. <language type="frm">krennc'halleg</language>
  131. <language type="fro">henc'halleg</language>
  132. <language type="frr">frizeg an Norzh</language>
  133. <language type="frs">frizeg ar Reter</language>
  134. <language type="fur">frioulaneg</language>
  135. <language type="fy">frizeg ar C'hornôg</language>
  136. <language type="ga">iwerzhoneg</language>
  137. <language type="gaa">ga</language>
  138. <language type="gay">gayo</language>
  139. <language type="gba">gbaya</language>
  140. <language type="gd">skoseg</language>
  141. <language type="gez">gezeg</language>
  142. <language type="gil">gilberteg</language>
  143. <language type="gl">galizeg</language>
  144. <language type="gn">guarani</language>
  145. <language type="gor">gorontalo</language>
  146. <language type="got">goteg</language>
  147. <language type="grb">grebo</language>
  148. <language type="grc">henc'hresianeg</language>
  149. <language type="gsw">alamaneg Suis</language>
  150. <language type="gu">gujarati</language>
  151. <language type="gv">manaveg</language>
  152. <language type="ha">haousa</language>
  153. <language type="hai">haida</language>
  154. <language type="haw">hawaieg</language>
  155. <language type="he">hebraeg</language>
  156. <language type="hi">hindi</language>
  157. <language type="hil">hiligaynon</language>
  158. <language type="hmn">hmong</language>
  159. <language type="ho">hiri motu</language>
  160. <language type="hr">kroateg</language>
  161. <language type="hsb">uhelsorabeg</language>
  162. <language type="ht">haitieg</language>
  163. <language type="hu">hungareg</language>
  164. <language type="hup">hupa</language>
  165. <language type="hy">armenianeg</language>
  166. <language type="hz">herero</language>
  167. <language type="ia">interlingua</language>
  168. <language type="iba">iban</language>
  169. <language type="ibb">ibibio</language>
  170. <language type="id">indonezeg</language>
  171. <language type="ie">interlingue</language>
  172. <language type="ig">igbo</language>
  173. <language type="ik">inupiaq</language>
  174. <language type="inh">ingoucheg</language>
  175. <language type="io">ido</language>
  176. <language type="is">islandeg</language>
  177. <language type="it">italianeg</language>
  178. <language type="iu">inuktitut</language>
  179. <language type="ja">japaneg</language>
  180. <language type="jpr">yuzev-perseg</language>
  181. <language type="jrb">yuzev-arabeg</language>
  182. <language type="jv">javaneg</language>
  183. <language type="ka">jorjianeg</language>
  184. <language type="kaa">karakalpak</language>
  185. <language type="kab">kabileg</language>
  186. <language type="kac">kachin</language>
  187. <language type="kam">kamba</language>
  188. <language type="kbd">kabardeg</language>
  189. <language type="kea">kabuverdianu</language>
  190. <language type="kg">kongo</language>
  191. <language type="kha">khasi</language>
  192. <language type="kho">khotaneg</language>
  193. <language type="ki">kikuyu</language>
  194. <language type="kj">kwanyama</language>
  195. <language type="kk">kazak</language>
  196. <language type="km">khmer</language>
  197. <language type="kmb">kimbundu</language>
  198. <language type="kn">kanareg</language>
  199. <language type="ko">koreaneg</language>
  200. <language type="kok">konkani</language>
  201. <language type="kos">kosrae</language>
  202. <language type="kpe">kpelle</language>
  203. <language type="kr">kanouri</language>
  204. <language type="krc">karatchay-balkar</language>
  205. <language type="kru">kurukh</language>
  206. <language type="ks">kashmiri</language>
  207. <language type="ku">kurdeg</language>
  208. <language type="kut">kutenai</language>
  209. <language type="kw">kerneveureg</language>
  210. <language type="ky">kirgiz</language>
  211. <language type="la">latin</language>
  212. <language type="lad">ladino</language>
  213. <language type="lah">lahnda</language>
  214. <language type="lam">lamba</language>
  215. <language type="lb">luksembourgeg</language>
  216. <language type="lez">lezgi</language>
  217. <language type="lg">ganda</language>
  218. <language type="li">limbourgeg</language>
  219. <language type="ln">lingala</language>
  220. <language type="lo">laoseg</language>
  221. <language type="lol">mongo</language>
  222. <language type="loz">lozi</language>
  223. <language type="lt">lituaneg</language>
  224. <language type="lu">luba-katanga</language>
  225. <language type="lua">luba-lulua</language>
  226. <language type="lui">luiseno</language>
  227. <language type="lun">lunda</language>
  228. <language type="luo">luo</language>
  229. <language type="lus">lushai</language>
  230. <language type="luy">luyia</language>
  231. <language type="lv">latvieg</language>
  232. <language type="mag">magahi</language>
  233. <language type="mai">maithili</language>
  234. <language type="mas">masai</language>
  235. <language type="mdf">moksha</language>
  236. <language type="mdr">mandar</language>
  237. <language type="men">mende</language>
  238. <language type="mfe">moriseg</language>
  239. <language type="mg">malgacheg</language>
  240. <language type="mga">krenniwerzhoneg</language>
  241. <language type="mh">marshall</language>
  242. <language type="mi">maori</language>
  243. <language type="mk">makedoneg</language>
  244. <language type="ml">malayalam</language>
  245. <language type="mn">mongoleg</language>
  246. <language type="mnc">manchou</language>
  247. <language type="mni">manipuri</language>
  248. <language type="moh">mohawk</language>
  249. <language type="mr">marathi</language>
  250. <language type="ms">malayseg</language>
  251. <language type="mt">malteg</language>
  252. <language type="mul">yezhoù lies</language>
  253. <language type="mus">muskogi</language>
  254. <language type="my">birmaneg</language>
  255. <language type="myv">erza</language>
  256. <language type="na">naurueg</language>
  257. <language type="nap">napolitaneg</language>
  258. <language type="nb">norvegeg bokmål</language>
  259. <language type="nd">ndebele an Norzh</language>
  260. <language type="ne">nepaleg</language>
  261. <language type="new">newari</language>
  262. <language type="ng">ndonga</language>
  263. <language type="nia">nias</language>
  264. <language type="niu">niue</language>
  265. <language type="nl">nederlandeg</language>
  266. <language type="nl_BE">flandrezeg</language>
  267. <language type="nn">norvegeg nynorsk</language>
  268. <language type="no">norvegeg</language>
  269. <language type="nog">nogay</language>
  270. <language type="nr">ndebele ar Su</language>
  271. <language type="nso">sotho an Norzh</language>
  272. <language type="nv">navac'ho</language>
  273. <language type="ny">nyanja</language>
  274. <language type="nym">nyamwezi</language>
  275. <language type="nyn">nyankole</language>
  276. <language type="nyo">nyoro</language>
  277. <language type="oc">okitaneg</language>
  278. <language type="oj">ojibwa</language>
  279. <language type="or">oriya</language>
  280. <language type="os">oseteg</language>
  281. <language type="osa">osage</language>
  282. <language type="pa">punjabi</language>
  283. <language type="pag">pangasinan</language>
  284. <language type="pal">pahlavi</language>
  285. <language type="pam">pampanga</language>
  286. <language type="pap">papiamento</language>
  287. <language type="pau">palau</language>
  288. <language type="peo">henberseg</language>
  289. <language type="phn">fenikianeg</language>
  290. <language type="pi">pali</language>
  291. <language type="pl">poloneg</language>
  292. <language type="pon">pohnpei</language>
  293. <language type="pro">henbrovañseg</language>
  294. <language type="ps">pachto</language>
  295. <language type="pt">portugaleg</language>
  296. <language type="pt_BR">portugaleg Brazil</language>
  297. <language type="pt_PT">portugaleg Europa</language>
  298. <language type="qu">kechuaeg</language>
  299. <language type="raj">rajasthani</language>
  300. <language type="rap">rapanui</language>
  301. <language type="rar">rarotonga</language>
  302. <language type="rm">romañcheg</language>
  303. <language type="rn">rundi</language>
  304. <language type="ro">roumaneg</language>
  305. <language type="ro_MD">moldoveg</language>
  306. <language type="rof">rombo</language>
  307. <language type="rom">romanieg</language>
  308. <language type="ru">rusianeg</language>
  309. <language type="rup">aroumaneg</language>
  310. <language type="rw">kinyarwanda</language>
  311. <language type="rwk">rwa</language>
  312. <language type="sa">sanskriteg</language>
  313. <language type="sad">sandawe</language>
  314. <language type="sah">yakouteg</language>
  315. <language type="sas">sasak</language>
  316. <language type="sat">santali</language>
  317. <language type="sc">sardeg</language>
  318. <language type="sco">skoteg</language>
  319. <language type="sd">sindhi</language>
  320. <language type="se">sámi an Norzh</language>
  321. <language type="sg">sango</language>
  322. <language type="sga">heniwerzhoneg</language>
  323. <language type="sh">serb-kroateg</language>
  324. <language type="shn">shan</language>
  325. <language type="si">singhaleg</language>
  326. <language type="sid">sidamo</language>
  327. <language type="sk">slovakeg</language>
  328. <language type="sl">sloveneg</language>
  329. <language type="sm">samoan</language>
  330. <language type="sma">sámi ar Su</language>
  331. <language type="smj">sámi Luleå</language>
  332. <language type="smn">sámi Inari</language>
  333. <language type="sms">sámi Skolt</language>
  334. <language type="sn">shona</language>
  335. <language type="snk">soninke</language>
  336. <language type="so">somali</language>
  337. <language type="sog">sogdieg</language>
  338. <language type="sq">albaneg</language>
  339. <language type="sr">serbeg</language>
  340. <language type="srr">serer</language>
  341. <language type="ss">swati</language>
  342. <language type="st">sotho ar Su</language>
  343. <language type="su">sundaneg</language>
  344. <language type="sux">sumereg</language>
  345. <language type="sv">svedeg</language>
  346. <language type="sw">swahili</language>
  347. <language type="swb">komoreg</language>
  348. <language type="syc">sirieg klasel</language>
  349. <language type="syr">sirieg</language>
  350. <language type="ta">tamileg</language>
  351. <language type="te">telougou</language>
  352. <language type="ter">tereno</language>
  353. <language type="tet">tetum</language>
  354. <language type="tg">tadjik</language>
  355. <language type="th">thai</language>
  356. <language type="ti">tigrigna</language>
  357. <language type="tig">tigreaneg</language>
  358. <language type="tiv">tiv</language>
  359. <language type="tk">turkmeneg</language>
  360. <language type="tkl">tokelau</language>
  361. <language type="tl">tagalog</language>
  362. <language type="tlh">klingon</language>
  363. <language type="tli">tinglit</language>
  364. <language type="tmh">tamacheg</language>
  365. <language type="tn">tswana</language>
  366. <language type="to">tonga</language>
  367. <language type="tog">nyasa tonga</language>
  368. <language type="tpi">tok pisin</language>
  369. <language type="tr">turkeg</language>
  370. <language type="ts">tsonga</language>
  371. <language type="tsi">tsimshian</language>
  372. <language type="tt">tatar</language>
  373. <language type="tum">tumbuka</language>
  374. <language type="tvl">tuvalu</language>
  375. <language type="tw">twi</language>
  376. <language type="ty">tahitianeg</language>
  377. <language type="tyv">touva</language>
  378. <language type="udm">oudmourteg</language>
  379. <language type="ug">ouigoureg</language>
  380. <language type="uga">ougariteg</language>
  381. <language type="uk">ukraineg</language>
  382. <language type="umb">umbundu</language>
  383. <language type="und">yezh dianav</language>
  384. <language type="ur">ourdou</language>
  385. <language type="uz">ouzbekeg</language>
  386. <language type="vai">vai</language>
  387. <language type="ve">venda</language>
  388. <language type="vi">vietnameg</language>
  389. <language type="vo">volapük</language>
  390. <language type="vot">votyakeg</language>
  391. <language type="wa">walloneg</language>
  392. <language type="wae">walser</language>
  393. <language type="wal">walamo</language>
  394. <language type="war">waray</language>
  395. <language type="was">washo</language>
  396. <language type="wo">wolof</language>
  397. <language type="xal">kalmouk</language>
  398. <language type="xh">xhosa</language>
  399. <language type="yao">yao</language>
  400. <language type="yap">yapeg</language>
  401. <language type="yi">yiddish</language>
  402. <language type="yo">yorouba</language>
  403. <language type="yue">kantoneg</language>
  404. <language type="za">zhuang</language>
  405. <language type="zap">zapoteg</language>
  406. <language type="zen">zenaga</language>
  407. <language type="zh">sinaeg</language>
  408. <language type="zh_Hans">sinaeg eeunaet</language>
  409. <language type="zh_Hant">sinaeg hengounel</language>
  410. <language type="zu">zouloueg</language>
  411. <language type="zun">zuni</language>
  412. <language type="zxx">diyezh</language>
  413. </languages>
  414. <scripts>
  415. <script type="Arab">arabek</script>
  416. <script type="Armi">arameek impalaerel</script>
  417. <script type="Armn">armenianek</script>
  418. <script type="Avst">avestek</script>
  419. <script type="Bali">balinek</script>
  420. <script type="Beng">bengali</script>
  421. <script type="Bopo">bopomofo</script>
  422. <script type="Brai">Braille</script>
  423. <script type="Copt">koptek</script>
  424. <script type="Cyrl">kirillek</script>
  425. <script type="Deva">devanagari</script>
  426. <script type="Egyp">hieroglifoù egiptek</script>
  427. <script type="Ethi">etiopek</script>
  428. <script type="Geor">jorjianek</script>
  429. <script type="Glag">glagolitek</script>
  430. <script type="Goth">gotek</script>
  431. <script type="Grek">gresianek</script>
  432. <script type="Gujr">gujarati</script>
  433. <script type="Guru">gurmukhi</script>
  434. <script type="Hang">hangeul</script>
  435. <script type="Hani">han</script>
  436. <script type="Hans">han eeunaet</script>
  437. <script type="Hant">han hengounel</script>
  438. <script type="Hebr">hebraek</script>
  439. <script type="Hira">hiragana</script>
  440. <script type="Ital">henitalek</script>
  441. <script type="Java">javanek</script>
  442. <script type="Jpan">japanek</script>
  443. <script type="Kana">katakana</script>
  444. <script type="Khmr">khmer</script>
  445. <script type="Knda">kannada</script>
  446. <script type="Kore">koreanek</script>
  447. <script type="Laoo">laosek</script>
  448. <script type="Latg">latin gouezelek</script>
  449. <script type="Latn">latin</script>
  450. <script type="Maya">hieroglifoù mayaek</script>
  451. <script type="Mlym">malayalam</script>
  452. <script type="Mong">mongolek</script>
  453. <script type="Mymr">myanmar</script>
  454. <script type="Ogam">ogam</script>
  455. <script type="Orya">oriya</script>
  456. <script type="Runr">runek</script>
  457. <script type="Sinh">singhalek</script>
  458. <script type="Sund">sundanek</script>
  459. <script type="Syrc">siriek</script>
  460. <script type="Syrj">siriek ar c'hornôg</script>
  461. <script type="Syrn">siriek ar reter</script>
  462. <script type="Taml">tamilek</script>
  463. <script type="Telu">telougou</script>
  464. <script type="Tglg">tagalog</script>
  465. <script type="Thaa">thaana</script>
  466. <script type="Thai">thai</script>
  467. <script type="Tibt">tibetanek</script>
  468. <script type="Vaii">vai</script>
  469. <script type="Xpeo">persek kozh</script>
  470. <script type="Zsym">arouezioù</script>
  471. <script type="Zxxx">anskrivet</script>
  472. <script type="Zyyy">boutin</script>
  473. <script type="Zzzz">skritur dianav</script>
  474. </scripts>
  475. <territories>
  476. <territory type="001">Bed</territory>
  477. <territory type="002">Afrika</territory>
  478. <territory type="003">Norzhamerika</territory>
  479. <territory type="005">Suamerika</territory>
  480. <territory type="009">Oseania</territory>
  481. <territory type="011">Afrika ar Cʼhornôg</territory>
  482. <territory type="013">Kreizamerika</territory>
  483. <territory type="014">Afrika ar Reter</territory>
  484. <territory type="015">Afrika an Norzh</territory>
  485. <territory type="017">Afrika ar Cʼhreiz</territory>
  486. <territory type="018">Afrika ar Su</territory>
  487. <territory type="019">Amerikaoù</territory>
  488. <territory type="021">Amerika an Norzh</territory>
  489. <territory type="029">Karib</territory>
  490. <territory type="030">Azia ar Reter</territory>
  491. <territory type="034">Azia ar Su</territory>
  492. <territory type="035">Azia ar Gevred</territory>
  493. <territory type="039">Europa ar Su</territory>
  494. <territory type="053">Aostralazia</territory>
  495. <territory type="054">Melanezia</territory>
  496. <territory type="057">Rannved Mikronezia</territory>
  497. <territory type="061">Polinezia</territory>
  498. <territory type="142">Azia</territory>
  499. <territory type="143">Azia ar Cʼhreiz</territory>
  500. <territory type="145">Azia ar Cʼhornôg</territory>
  501. <territory type="150">Europa</territory>
  502. <territory type="151">Europa ar Reter</territory>
  503. <territory type="154">Europa an Norzh</territory>
  504. <territory type="155">Europa ar Cʼhornôg</territory>
  505. <territory type="419">Amerika Latin</territory>
  506. <territory type="AC">Enez Ascension</territory>
  507. <territory type="AD">Andorra</territory>
  508. <territory type="AE">Emirelezhioù Arab Unanet</territory>
  509. <territory type="AF">Afghanistan</territory>
  510. <territory type="AG">Antigua ha Barbuda</territory>
  511. <territory type="AI">Anguilla</territory>
  512. <territory type="AL">Albania</territory>
  513. <territory type="AM">Armenia</territory>
  514. <territory type="AN">Antilhez Nederlandat</territory>
  515. <territory type="AO">Angola</territory>
  516. <territory type="AQ">Antarktika</territory>
  517. <territory type="AR">Arcʼhantina</territory>
  518. <territory type="AS">Samoa Amerikan</territory>
  519. <territory type="AT">Aostria</territory>
  520. <territory type="AU">Aostralia</territory>
  521. <territory type="AW">Aruba</territory>
  522. <territory type="AX">Inizi Åland</territory>
  523. <territory type="AZ">Azerbaidjan</territory>
  524. <territory type="BA">Bosnia ha Herzegovina</territory>
  525. <territory type="BB">Barbados</territory>
  526. <territory type="BD">Bangladesh</territory>
  527. <territory type="BE">Belgia</territory>
  528. <territory type="BF">Burkina Faso</territory>
  529. <territory type="BG">Bulgaria</territory>
  530. <territory type="BH">Bahrein</territory>
  531. <territory type="BI">Burundi</territory>
  532. <territory type="BJ">Benin</territory>
  533. <territory type="BL">Saint Barthélemy</territory>
  534. <territory type="BM">Bermuda</territory>
  535. <territory type="BN">Brunei</territory>
  536. <territory type="BO">Bolivia</territory>
  537. <territory type="BQ">Nederlandat Karib</territory>
  538. <territory type="BR">Brazil</territory>
  539. <territory type="BS">Bahamas</territory>
  540. <territory type="BT">Bhoutan</territory>
  541. <territory type="BV">Enez Bouvet</territory>
  542. <territory type="BW">Botswana</territory>
  543. <territory type="BY">Belarus</territory>
  544. <territory type="BZ">Belize</territory>
  545. <territory type="CA">Kanada</territory>
  546. <territory type="CC">Inizi Kokoz</territory>
  547. <territory type="CD">Kongo - Kinshasa</territory>
  548. <territory type="CD" alt="variant">Kongo (RDK)</territory>
  549. <territory type="CF">Republik Kreizafrikan</territory>
  550. <territory type="CG">Kongo - Brazzaville</territory>
  551. <territory type="CG" alt="variant">Kongo (Republik)</territory>
  552. <territory type="CH">Suis</territory>
  553. <territory type="CI">Aod an Olifant</territory>
  554. <territory type="CI" alt="variant">Aod Olifant</territory>
  555. <territory type="CK">Inizi Cook</territory>
  556. <territory type="CL">Chile</territory>
  557. <territory type="CM">Kameroun</territory>
  558. <territory type="CN">Sina</territory>
  559. <territory type="CO">Kolombia</territory>
  560. <territory type="CP">Enez Clipperton</territory>
  561. <territory type="CR">Costa Rica</territory>
  562. <territory type="CU">Kuba</territory>
  563. <territory type="CV">Kab Glas</territory>
  564. <territory type="CW">Curaçao</territory>
  565. <territory type="CX">Enez Christmas</territory>
  566. <territory type="CY">Kiprenez</territory>
  567. <territory type="CZ">Republik Tchek</territory>
  568. <territory type="DE">Alamagn</territory>
  569. <territory type="DG">Diego Garcia</territory>
  570. <territory type="DJ">Djibouti</territory>
  571. <territory type="DK">Danmark</territory>
  572. <territory type="DM">Dominica</territory>
  573. <territory type="DO">Republik Dominikan</territory>
  574. <territory type="DZ">Aljeria</territory>
  575. <territory type="EA">Ceuta ha Melilla</territory>
  576. <territory type="EC">Ecuador</territory>
  577. <territory type="EE">Estonia</territory>
  578. <territory type="EG">Egipt</territory>
  579. <territory type="EH">Sahara ar Cʼhornôg</territory>
  580. <territory type="ER">Eritrea</territory>
  581. <territory type="ES">Spagn</territory>
  582. <territory type="ET">Etiopia</territory>
  583. <territory type="EU">Unaniezh Europa</territory>
  584. <territory type="FI">Finland</territory>
  585. <territory type="FJ">Fidji</territory>
  586. <territory type="FK">Inizi Falkland</territory>
  587. <territory type="FK" alt="variant">Inizi Falkland (Inizi Maloù)</territory>
  588. <territory type="FM">Mikronezia</territory>
  589. <territory type="FO">Inizi Faero</territory>
  590. <territory type="FR">Frañs</territory>
  591. <territory type="GA">Gabon</territory>
  592. <territory type="GB">Rouantelezh-Unanet</territory>
  593. <territory type="GD">Grenada</territory>
  594. <territory type="GE">Jorjia</territory>
  595. <territory type="GF">Gwiana cʼhall</territory>
  596. <territory type="GG">Gwernenez</territory>
  597. <territory type="GH">Ghana</territory>
  598. <territory type="GI">Jibraltar</territory>
  599. <territory type="GL">Greunland</territory>
  600. <territory type="GM">Gambia</territory>
  601. <territory type="GN">Ginea</territory>
  602. <territory type="GP">Gwadeloup</territory>
  603. <territory type="GQ">Ginea ar Cʼheheder</territory>
  604. <territory type="GR">Gres</territory>
  605. <territory type="GS">Inizi Georgia ar Su hag Inizi Sandwich ar Su</territory>
  606. <territory type="GT">Guatemala</territory>
  607. <territory type="GU">Guam</territory>
  608. <territory type="GW">Ginea-Bissau</territory>
  609. <territory type="GY">Guyana</territory>
  610. <territory type="HK">Hong Kong RMD Sina</territory>
  611. <territory type="HK" alt="short">Hong Kong</territory>
  612. <territory type="HM">Inizi Heard ha McDonald</territory>
  613. <territory type="HN">Honduras</territory>
  614. <territory type="HR">Kroatia</territory>
  615. <territory type="HT">Haiti</territory>
  616. <territory type="HU">Hungaria</territory>
  617. <territory type="IC">Inizi Kanariez</territory>
  618. <territory type="ID">Indonezia</territory>
  619. <territory type="IE">Iwerzhon</territory>
  620. <territory type="IL">Israel</territory>
  621. <territory type="IM">Enez Vanav</territory>
  622. <territory type="IN">India</territory>
  623. <territory type="IO">Tiriad breizhveurat Meurvor Indez</territory>
  624. <territory type="IQ">Iraq</territory>
  625. <territory type="IR">Iran</territory>
  626. <territory type="IS">Island</territory>
  627. <territory type="IT">Italia</territory>
  628. <territory type="JE">Jerzenez</territory>
  629. <territory type="JM">Jamaika</territory>
  630. <territory type="JO">Jordania</territory>
  631. <territory type="JP">Japan</territory>
  632. <territory type="KE">Kenya</territory>
  633. <territory type="KG">Kyrgyzstan</territory>
  634. <territory type="KH">Kambodja</territory>
  635. <territory type="KI">Kiribati</territory>
  636. <territory type="KM">Komorez</territory>
  637. <territory type="KN">Saint Kitts ha Nevis</territory>
  638. <territory type="KP">Korea an Norzh</territory>
  639. <territory type="KR">Korea ar Su</territory>
  640. <territory type="KW">Koweit</territory>
  641. <territory type="KY">Inizi Cayman</territory>
  642. <territory type="KZ">Kazakstan</territory>
  643. <territory type="LA">Laos</territory>
  644. <territory type="LB">Liban</territory>
  645. <territory type="LC">Saint Lucia</territory>
  646. <territory type="LI">Liechtenstein</territory>
  647. <territory type="LK">Sri Lanka</territory>
  648. <territory type="LR">Liberia</territory>
  649. <territory type="LS">Lesotho</territory>
  650. <territory type="LT">Lituania</territory>
  651. <territory type="LU">Luksembourg</territory>
  652. <territory type="LV">Latvia</territory>
  653. <territory type="LY">Libia</territory>
  654. <territory type="MA">Maroko</territory>
  655. <territory type="MC">Monaco</territory>
  656. <territory type="MD">Moldova</territory>
  657. <territory type="ME">Montenegro</territory>
  658. <territory type="MF">Saint Martin</territory>
  659. <territory type="MG">Madagaskar</territory>
  660. <territory type="MH">Inizi Marshall</territory>
  661. <territory type="MK">Makedonia</territory>
  662. <territory type="MK" alt="variant">Makedonia (RYKM)</territory>
  663. <territory type="ML">Mali</territory>
  664. <territory type="MM">Myanmar (Birmania)</territory>
  665. <territory type="MN">Mongolia</territory>
  666. <territory type="MO">Macau RMD Sina</territory>
  667. <territory type="MO" alt="short">Macau</territory>
  668. <territory type="MP">Inizi Mariana an Norzh</territory>
  669. <territory type="MQ">Martinik</territory>
  670. <territory type="MR">Maouritania</territory>
  671. <territory type="MS">Montserrat</territory>
  672. <territory type="MT">Malta</territory>
  673. <territory type="MU">Moris</territory>
  674. <territory type="MV">Maldivez</territory>
  675. <territory type="MW">Malawi</territory>
  676. <territory type="MX">Mecʼhiko</territory>
  677. <territory type="MY">Malaysia</territory>
  678. <territory type="MZ">Mozambik</territory>
  679. <territory type="NA">Namibia</territory>
  680. <territory type="NC">Kaledonia Nevez</territory>
  681. <territory type="NE">Niger</territory>
  682. <territory type="NF">Enez Norfolk</territory>
  683. <territory type="NG">Nigeria</territory>
  684. <territory type="NI">Nicaragua</territory>
  685. <territory type="NL">Izelvroioù</territory>
  686. <territory type="NO">Norvegia</territory>
  687. <territory type="NP">Nepal</territory>
  688. <territory type="NR">Nauru</territory>
  689. <territory type="NU">Niue</territory>
  690. <territory type="NZ">Zeland-Nevez</territory>
  691. <territory type="OM">Oman</territory>
  692. <territory type="PA">Panamá</territory>
  693. <territory type="PE">Perou</territory>
  694. <territory type="PF">Polinezia cʼhall</territory>
  695. <territory type="PG">Papoua Ginea-Nevez</territory>
  696. <territory type="PH">Filipinez</territory>
  697. <territory type="PK">Pakistan</territory>
  698. <territory type="PL">Polonia</territory>
  699. <territory type="PM">Sant-Pêr-ha-Mikelon</territory>
  700. <territory type="PN">Enez Pitcairn</territory>
  701. <territory type="PR">Puerto Rico</territory>
  702. <territory type="PS">Tiriadoù Palestina</territory>
  703. <territory type="PT">Portugal</territory>
  704. <territory type="PW">Palau</territory>
  705. <territory type="PY">Paraguay</territory>
  706. <territory type="QA">Qatar</territory>
  707. <territory type="QO">Oseania diabell</territory>
  708. <territory type="RE">Reünion</territory>
  709. <territory type="RO">Roumania</territory>
  710. <territory type="RS">Serbia</territory>
  711. <territory type="RU">Rusia</territory>
  712. <territory type="RW">Rwanda</territory>
  713. <territory type="SA">Arabia Saoudat</territory>
  714. <territory type="SB">Salomon</territory>
  715. <territory type="SC">Sechelez</territory>
  716. <territory type="SD">Soudan</territory>
  717. <territory type="SE">Sveden</territory>
  718. <territory type="SG">Singapour</territory>
  719. <territory type="SH">Saint Helena</territory>
  720. <territory type="SI">Slovenia</territory>
  721. <territory type="SJ">Svalbard</territory>
  722. <territory type="SK">Slovakia</territory>
  723. <territory type="SL">Sierra Leone</territory>
  724. <territory type="SM">San Marino</territory>
  725. <territory type="SN">Senegal</territory>
  726. <territory type="SO">Somalia</territory>
  727. <territory type="SR">Surinam</territory>
  728. <territory type="SS">Su Soudan</territory>
  729. <territory type="ST">São Tomé ha Príncipe</territory>
  730. <territory type="SV">Salvador</territory>
  731. <territory type="SX">Sint Maarten</territory>
  732. <territory type="SY">Siria</territory>
  733. <territory type="SZ">Swaziland</territory>
  734. <territory type="TA">Tristan da Cunha</territory>
  735. <territory type="TC">Inizi Turks ha Caicos</territory>
  736. <territory type="TD">Tchad</territory>
  737. <territory type="TF">Douaroù aostral Frañs</territory>
  738. <territory type="TG">Togo</territory>
  739. <territory type="TH">Thailand</territory>
  740. <territory type="TJ">Tadjikistan</territory>
  741. <territory type="TK">Tokelau</territory>
  742. <territory type="TL">Timor-Leste</territory>
  743. <territory type="TL" alt="variant">Timor ar Reter</territory>
  744. <territory type="TM">Turkmenistan</territory>
  745. <territory type="TN">Tunizia</territory>
  746. <territory type="TO">Tonga</territory>
  747. <territory type="TR">Turkia</territory>
  748. <territory type="TT">Trinidad ha Tobago</territory>
  749. <territory type="TV">Tuvalu</territory>
  750. <territory type="TW">Taiwan</territory>
  751. <territory type="TZ">Tanzania</territory>
  752. <territory type="UA">Ukraina</territory>
  753. <territory type="UG">Ouganda</territory>
  754. <territory type="UM">Inizi diabell ar Stadoù-Unanet</territory>
  755. <territory type="US">Stadoù-Unanet</territory>
  756. <territory type="UY">Uruguay</territory>
  757. <territory type="UZ">Ouzbekistan</territory>
  758. <territory type="VA">Vatikan</territory>
  759. <territory type="VC">Sant Visant hag ar Grenadinez</territory>
  760. <territory type="VE">Venezuela</territory>
  761. <territory type="VG">Inizi Gwercʼh Breizh-Veur</territory>
  762. <territory type="VI">Inizi Gwercʼh ar Stadoù-Unanet</territory>
  763. <territory type="VN">Viêt Nam</territory>
  764. <territory type="VU">Vanuatu</territory>
  765. <territory type="WF">Wallis ha Futuna</territory>
  766. <territory type="WS">Samoa</territory>
  767. <territory type="YE">Yemen</territory>
  768. <territory type="YT">Mayotte</territory>
  769. <territory type="ZA">Suafrika</territory>
  770. <territory type="ZM">Zambia</territory>
  771. <territory type="ZW">Zimbabwe</territory>
  772. <territory type="ZZ">Rannved dianav</territory>
  773. </territories>
  774. <variants>
  775. <variant type="1901">reizhskrivadur alamanek hengounel</variant>
  776. <variant type="1994">reizhskrivadur resianek skoueriekaet</variant>
  777. <variant type="1996">reizhskrivadur alamanek 1996</variant>
  778. <variant type="1606NICT">krenncʼhalleg</variant>
  779. <variant type="1694ACAD">galleg rakvodern</variant>
  780. <variant type="1959ACAD">belaruseg akademek</variant>
  781. <variant type="ALALC97">romanekadur ALA-LC 1997</variant>
  782. <variant type="ALUKU">rannyezh aloukou</variant>
  783. <variant type="AREVELA">armenianeg ar Reter</variant>
  784. <variant type="AREVMDA">armenianeg ar Cʼhornôg</variant>
  785. <variant type="BAKU1926">lizherenneg latin turkek unvan</variant>
  786. <variant type="BAUDDHA">sanskriteg hiron boudaat</variant>
  787. <variant type="BISCAYAN">rannyezh euskarek Bizkaia</variant>
  788. <variant type="BISKE">rannyezh San Giorgio/Bila</variant>
  789. <variant type="BOONT">boontling</variant>
  790. <variant type="FONIPA">lizherenneg fonetek etrebroadel</variant>
  791. <variant type="FONUPA">lizherenneg fonetek ouralek</variant>
  792. <variant type="FONXSAMP">treuzskrivadur X-SAMPA</variant>
  793. <variant type="HEPBURN">romanekadur Hepburn</variant>
  794. <variant type="HOGNORSK">uhelnorvegeg</variant>
  795. <variant type="ITIHASA">sanskriteg itihâsa</variant>
  796. <variant type="JAUER">rannyezh romañchek Jauer</variant>
  797. <variant type="JYUTPING">romanekadur kantonek Jyutping</variant>
  798. <variant type="KKCOR">kerneveureg kumun</variant>
  799. <variant type="LAUKIKA">sanskriteg klasel</variant>
  800. <variant type="LIPAW">rannyezh resianek Lipovaz</variant>
  801. <variant type="LUNA1918">reizhskrivadur rusianek goude 1917</variant>
  802. <variant type="MONOTON">gresianeg untonel</variant>
  803. <variant type="NDYUKA">rannyezh Ndyuka</variant>
  804. <variant type="NEDIS">rannyezh Natisone</variant>
  805. <variant type="NJIVA">rannyezh Gniva/Njiva</variant>
  806. <variant type="OSOJS">rannyezh Oseacco/Osojane</variant>
  807. <variant type="PAMAKA">rannyezh Pamaka</variant>
  808. <variant type="PETR1708">reizhskrivadur rusianek 1708 Pêr I</variant>
  809. <variant type="PINYIN">romanekadur pinyin</variant>
  810. <variant type="POLYTON">gresianeg liestonel</variant>
  811. <variant type="PUTER">rannyezh romañchek Puter</variant>
  812. <variant type="REVISED">reizhskrivadur reizhet</variant>
  813. <variant type="ROZAJ">resianeg</variant>
  814. <variant type="RUMGR">romañcheg Grischun</variant>
  815. <variant type="SAAHO">saho</variant>
  816. <variant type="SCOTLAND">saozneg standart skos</variant>
  817. <variant type="SCOUSE">scouse</variant>
  818. <variant type="SOLBA">rannyezh Stolvizza/Solbica</variant>
  819. <variant type="SURMIRAN">rannyezh romañchek surmiran</variant>
  820. <variant type="SURSILV">rannyezh romañchek sursilvan</variant>
  821. <variant type="SUTSILV">rannyezh romañchek sutsilvan</variant>
  822. <variant type="TARASK">belaruseg Taraskievica</variant>
  823. <variant type="UCCOR">kerneveureg unvan</variant>
  824. <variant type="UCRCOR">kerneveureg unvan reizhet</variant>
  825. <variant type="ULSTER">rannyezh skotek Ulad</variant>
  826. <variant type="VAIDIKA">sanskriteg vedek</variant>
  827. <variant type="VALENCIA">valensianeg</variant>
  828. <variant type="VALLADER">rannyezh romañchek Vallader</variant>
  829. <variant type="WADEGILE">romanekadur Wade-Giles</variant>
  830. </variants>
  831. <keys>
  832. <key type="calendar">deiziadur</key>
  833. <key type="collation">doare rummañ</key>
  834. <key type="currency">moneiz</key>
  835. <key type="numbers">niveroù</key>
  836. </keys>
  837. <types>
  838. <type type="arab" key="numbers">sifroù arabek indian</type>
  839. <type type="arabext" key="numbers">sifroù arabek indian astennet</type>
  840. <type type="armn" key="numbers">niveroù armenianek</type>
  841. <type type="armnlow" key="numbers">niveroù armenianek bihan</type>
  842. <type type="bali" key="numbers">sifroù balinek</type>
  843. <type type="beng" key="numbers">sifroù bengali</type>
  844. <type type="big5han" key="collation">urzh rummañ sinaek hengounel - Big5</type>
  845. <type type="buddhist" key="calendar">deiziadur boudaat</type>
  846. <type type="chinese" key="calendar">deiziadur sinaat</type>
  847. <type type="coptic" key="calendar">deiziadur kopt</type>
  848. <type type="deva" key="numbers">sifroù devanagari</type>
  849. <type type="dictionary" key="collation">urzh rummañ ar geriadur</type>
  850. <type type="ducet" key="collation">urzh rummañ Unicode dre ziouer</type>
  851. <type type="ethi" key="numbers">niveroù etiopiat</type>
  852. <type type="ethiopic" key="calendar">deiziadur etiopiat</type>
  853. <type type="ethiopic-amete-alem" key="calendar">deiziadur etiopiat Amete Alem</type>
  854. <type type="fullwide" key="numbers">sifroù led plaen</type>
  855. <type type="gb2312han" key="collation">urzh rummañ sinaek eeunaet - GB2312</type>
  856. <type type="geor" key="numbers">niveroù jorjianek</type>
  857. <type type="gregorian" key="calendar">deiziadur gregorian</type>
  858. <type type="grek" key="numbers">niveroù gresianek</type>
  859. <type type="greklow" key="numbers">niveroù gresianek bihan</type>
  860. <type type="gujr" key="numbers">sifroù gujarati</type>
  861. <type type="guru" key="numbers">sifroù gurmukhi</type>
  862. <type type="hanidec" key="numbers">niveroù sinaek dekvedennek</type>
  863. <type type="hans" key="numbers">niveroù sinaek eeunaet</type>
  864. <type type="hansfin" key="numbers">niveroù sinaek eeunaet an arcʼhant</type>
  865. <type type="hant" key="numbers">niveroù sinaek hengounel</type>
  866. <type type="hantfin" key="numbers">niveroù sinaek hengounel an arcʼhant</type>
  867. <type type="hebr" key="numbers">niveroù hebraek</type>
  868. <type type="hebrew" key="calendar">deiziadur hebraek</type>
  869. <type type="indian" key="calendar">deiziadur indian</type>
  870. <type type="islamic" key="calendar">deiziadur islamek</type>
  871. <type type="islamic-civil" key="calendar">deiziadur islamek keodedel</type>
  872. <type type="japanese" key="calendar">deiziadur japanat</type>
  873. <type type="java" key="numbers">sifroù javanek</type>
  874. <type type="jpan" key="numbers">niveroù japanek</type>
  875. <type type="jpanfin" key="numbers">niveroù japanek an arcʼhant</type>
  876. <type type="khmr" key="numbers">sifroù khmer</type>
  877. <type type="knda" key="numbers">sifroù kanarek</type>
  878. <type type="laoo" key="numbers">sifroù laosek</type>
  879. <type type="latn" key="numbers">sifroù arabek ar Cʼhornôg</type>
  880. <type type="mlym" key="numbers">sifroù malayalam</type>
  881. <type type="mong" key="numbers">sifroù mongolek</type>
  882. <type type="mymr" key="numbers">sifroù myanmar</type>
  883. <type type="mymrshan" key="numbers">sifroù shan Myanmar</type>
  884. <type type="orya" key="numbers">sifroù oriya</type>
  885. <type type="persian" key="calendar">deiziadur persek</type>
  886. <type type="phonebook" key="collation">urzh rummañ al levr-pellgomz</type>
  887. <type type="pinyin" key="collation">urzh rummañ pinyin</type>
  888. <type type="reformed" key="collation">urzh rummañ adreizhet</type>
  889. <type type="roc" key="calendar">deiziadur Republik Sina</type>
  890. <type type="roman" key="numbers">niveroù roman</type>
  891. <type type="romanlow" key="numbers">niveroù roman bihan</type>
  892. <type type="search" key="collation">enklask hollek</type>
  893. <type type="stroke" key="collation">urzh rummañ an tresoù</type>
  894. <type type="sund" key="numbers">sifroù sundanek</type>
  895. <type type="taml" key="numbers">niveroù tamilek hengounel</type>
  896. <type type="tamldec" key="numbers">sifroù tamilek</type>
  897. <type type="telu" key="numbers">sifroù telougou</type>
  898. <type type="thai" key="numbers">sifroù thai</type>
  899. <type type="tibt" key="numbers">sifroù tibetan</type>
  900. <type type="traditional" key="collation">urzh rummañ hengounel</type>
  901. <type type="unihan" key="collation">urzh rummañ UniHan</type>
  902. <type type="vaii" key="numbers">sifroù vai</type>
  903. </types>
  904. <measurementSystemNames>
  905. <measurementSystemName type="metric">metrek</measurementSystemName>
  906. <measurementSystemName type="UK">RU</measurementSystemName>
  907. <measurementSystemName type="US">SU</measurementSystemName>
  908. </measurementSystemNames>
  909. </localeDisplayNames>
  910. <characters>
  911. <exemplarCharacters>[a b {ch} {cʼh} d e ê f g h i j k l m n ñ o p r s t u ù v w x y z]</exemplarCharacters>
  912. <exemplarCharacters type="auxiliary">[á à ă â å ä ã ā æ c ç é è ĕ ë ē í ì ĭ î ï ī ó ò ŏ ô ö ø ō œ q ú ŭ û ü ū ÿ]</exemplarCharacters>
  913. <exemplarCharacters type="index">[A B C D E F G H I J K L M N O P R S T U V W X Y Z]</exemplarCharacters>
  914. </characters>
  915. <delimiters>
  916. <quotationStart>«</quotationStart>
  917. <quotationEnd>»</quotationEnd>
  918. <alternateQuotationStart>‹</alternateQuotationStart>
  919. <alternateQuotationEnd>›</alternateQuotationEnd>
  920. </delimiters>
  921. <dates>
  922. <calendars>
  923. <calendar type="gregorian">
  924. <months>
  925. <monthContext type="format">
  926. <monthWidth type="abbreviated">
  927. <month type="1">Gen</month>
  928. <month type="2">Cʼhwe</month>
  929. <month type="3">Meur</month>
  930. <month type="4">Ebr</month>
  931. <month type="5">Mae</month>
  932. <month type="6">Mezh</month>
  933. <month type="7">Goue</month>
  934. <month type="8">Eost</month>
  935. <month type="9">Gwen</month>
  936. <month type="10">Here</month>
  937. <month type="11">Du</month>
  938. <month type="12">Ker</month>
  939. </monthWidth>
  940. <monthWidth type="wide">
  941. <month type="1">Genver</month>
  942. <month type="2">Cʼhwevrer</month>
  943. <month type="3">Meurzh</month>
  944. <month type="4">Ebrel</month>
  945. <month type="5">Mae</month>
  946. <month type="6">Mezheven</month>
  947. <month type="7">Gouere</month>
  948. <month type="8">Eost</month>
  949. <month type="9">Gwengolo</month>
  950. <month type="10">Here</month>
  951. <month type="11">Du</month>
  952. <month type="12">Kerzu</month>
  953. </monthWidth>
  954. </monthContext>
  955. <monthContext type="stand-alone">
  956. <monthWidth type="abbreviated">
  957. <month type="1">Gen</month>
  958. <month type="2">Cʼhwe</month>
  959. <month type="3">Meur</month>
  960. <month type="4">Ebr</month>
  961. <month type="5">Mae</month>
  962. <month type="6">Mezh</month>
  963. <month type="7">Goue</month>
  964. <month type="8">Eost</month>
  965. <month type="9">Gwen</month>
  966. <month type="10">Here</month>
  967. <month type="11">Du</month>
  968. <month type="12">Ker</month>
  969. </monthWidth>
  970. <monthWidth type="wide">
  971. <month type="1">Genver</month>
  972. <month type="2">Cʼhwevrer</month>
  973. <month type="3">Meurzh</month>
  974. <month type="4">Ebrel</month>
  975. <month type="5">Mae</month>
  976. <month type="6">Mezheven</month>
  977. <month type="7">Gouere</month>
  978. <month type="8">Eost</month>
  979. <month type="9">Gwengolo</month>
  980. <month type="10">Here</month>
  981. <month type="11">Du</month>
  982. <month type="12">Kerzu</month>
  983. </monthWidth>
  984. </monthContext>
  985. </months>
  986. <days>
  987. <dayContext type="format">
  988. <dayWidth type="abbreviated">
  989. <day type="sun">sul</day>
  990. <day type="mon">lun</day>
  991. <day type="tue">meu.</day>
  992. <day type="wed">mer.</day>
  993. <day type="thu">yaou</day>
  994. <day type="fri">gwe.</day>
  995. <day type="sat">sad.</day>
  996. </dayWidth>
  997. <dayWidth type="narrow">
  998. <day type="sun">su</day>
  999. <day type="mon">lu</day>
  1000. <day type="tue">mz</day>
  1001. <day type="wed">mc</day>
  1002. <day type="thu">ya</day>
  1003. <day type="fri">gw</day>
  1004. <day type="sat">sa</day>
  1005. </dayWidth>
  1006. <dayWidth type="wide">
  1007. <day type="sun">Sul</day>
  1008. <day type="mon">Lun</day>
  1009. <day type="tue">Meurzh</day>
  1010. <day type="wed">Mercʼher</day>
  1011. <day type="thu">Yaou</day>
  1012. <day type="fri">Gwener</day>
  1013. <day type="sat">Sadorn</day>
  1014. </dayWidth>
  1015. </dayContext>
  1016. <dayContext type="stand-alone">
  1017. <dayWidth type="abbreviated">
  1018. <day type="sun">sul</day>
  1019. <day type="mon">lun</day>
  1020. <day type="tue">meu.</day>
  1021. <day type="wed">mer.</day>
  1022. <day type="thu">yaou</day>
  1023. <day type="fri">gwe.</day>
  1024. <day type="sat">sad.</day>
  1025. </dayWidth>
  1026. <dayWidth type="narrow">
  1027. <day type="sun">su</day>
  1028. <day type="mon">lu</day>
  1029. <day type="tue">mz</day>
  1030. <day type="wed">mc</day>
  1031. <day type="thu">ya</day>
  1032. <day type="fri">gw</day>
  1033. <day type="sat">sa</day>
  1034. </dayWidth>
  1035. <dayWidth type="wide">
  1036. <day type="sun">Sul</day>
  1037. <day type="mon">Lun</day>
  1038. <day type="tue">Meurzh</day>
  1039. <day type="wed">Mercʼher</day>
  1040. <day type="thu">Yaou</day>
  1041. <day type="fri">Gwener</day>
  1042. <day type="sat">Sadorn</day>
  1043. </dayWidth>
  1044. </dayContext>
  1045. </days>
  1046. </calendar>
  1047. </calendars>
  1048. <fields>
  1049. <field type="month">
  1050. <displayName>miz</displayName>
  1051. </field>
  1052. <field type="week">
  1053. <displayName>sizhun</displayName>
  1054. </field>
  1055. <field type="day">
  1056. <relative type="-2">dercʼhent-decʼh</relative>
  1057. <relative type="-1">decʼh</relative>
  1058. <relative type="0">hiziv</relative>
  1059. <relative type="1">warcʼhoazh</relative>
  1060. </field>
  1061. <field type="hour">
  1062. <displayName>eur</displayName>
  1063. </field>
  1064. <field type="minute">
  1065. <displayName>munut</displayName>
  1066. </field>
  1067. <field type="second">
  1068. <displayName>eilenn</displayName>
  1069. </field>
  1070. </fields>
  1071. <timeZoneNames>
  1072. <zone type="Etc/Unknown">
  1073. <exemplarCity>kêr dianav</exemplarCity>
  1074. </zone>
  1075. <zone type="Asia/Kabul">
  1076. <exemplarCity>Kaboul</exemplarCity>
  1077. </zone>
  1078. <zone type="Europe/Tirane">
  1079. <exemplarCity>Tiranë</exemplarCity>
  1080. </zone>
  1081. <zone type="Europe/Mariehamn">
  1082. <exemplarCity>Marjehamn</exemplarCity>
  1083. </zone>
  1084. <zone type="Asia/Baku">
  1085. <exemplarCity>Bakı</exemplarCity>
  1086. </zone>
  1087. <zone type="Europe/Brussels">
  1088. <exemplarCity>Brusel</exemplarCity>
  1089. </zone>
  1090. <zone type="Asia/Bahrain">
  1091. <exemplarCity>Bahrein</exemplarCity>
  1092. </zone>
  1093. <zone type="America/Belem">
  1094. <exemplarCity>Belém</exemplarCity>
  1095. </zone>
  1096. <zone type="America/Sao_Paulo">
  1097. <exemplarCity>São Paulo</exemplarCity>
  1098. </zone>
  1099. <zone type="Europe/Minsk">
  1100. <exemplarCity>Mensk</exemplarCity>
  1101. </zone>
  1102. <zone type="America/St_Johns">
  1103. <exemplarCity>Saint John's</exemplarCity>
  1104. </zone>
  1105. <zone type="Indian/Cocos">
  1106. <exemplarCity>Kokoz</exemplarCity>
  1107. </zone>
  1108. <zone type="Asia/Urumqi">
  1109. <exemplarCity>Ürümqi</exemplarCity>
  1110. </zone>
  1111. <zone type="America/Bogota">
  1112. <exemplarCity>Bogotá</exemplarCity>
  1113. </zone>
  1114. <zone type="America/Havana">
  1115. <exemplarCity>La Habana</exemplarCity>
  1116. </zone>
  1117. <zone type="Atlantic/Cape_Verde">
  1118. <exemplarCity>Kab Glas</exemplarCity>
  1119. </zone>
  1120. <zone type="Asia/Nicosia">
  1121. <exemplarCity>Levkosía</exemplarCity>
  1122. </zone>
  1123. <zone type="Europe/Prague">
  1124. <exemplarCity>Praha</exemplarCity>
  1125. </zone>
  1126. <zone type="Europe/Copenhagen">
  1127. <exemplarCity>Kopenhagen</exemplarCity>
  1128. </zone>
  1129. <zone type="Africa/Algiers">
  1130. <exemplarCity>Aljer</exemplarCity>
  1131. </zone>
  1132. <zone type="Pacific/Galapagos">
  1133. <exemplarCity>Galápagos</exemplarCity>
  1134. </zone>
  1135. <zone type="Africa/Cairo">
  1136. <exemplarCity>Kaero</exemplarCity>
  1137. </zone>
  1138. <zone type="Africa/El_Aaiun">
  1139. <exemplarCity>La'Youn</exemplarCity>
  1140. </zone>
  1141. <zone type="Atlantic/Canary">
  1142. <exemplarCity>Kanariez</exemplarCity>
  1143. </zone>
  1144. <zone type="Africa/Addis_Ababa">
  1145. <exemplarCity>Adis Abeba</exemplarCity>
  1146. </zone>
  1147. <zone type="Pacific/Fiji">
  1148. <exemplarCity>Fidji</exemplarCity>
  1149. </zone>
  1150. <zone type="Atlantic/Faeroe">
  1151. <exemplarCity>Faero</exemplarCity>
  1152. </zone>
  1153. <zone type="Europe/Paris">
  1154. <exemplarCity>Pariz</exemplarCity>
  1155. </zone>
  1156. <zone type="Europe/Guernsey">
  1157. <exemplarCity>Gwernenez</exemplarCity>
  1158. </zone>
  1159. <zone type="Europe/Gibraltar">
  1160. <exemplarCity>Jibraltar</exemplarCity>
  1161. </zone>
  1162. <zone type="America/Thule">
  1163. <exemplarCity>Qânâq</exemplarCity>
  1164. </zone>
  1165. <zone type="America/Guadeloupe">
  1166. <exemplarCity>Gwadeloup</exemplarCity>
  1167. </zone>
  1168. <zone type="Europe/Athens">
  1169. <exemplarCity>Aten</exemplarCity>
  1170. </zone>
  1171. <zone type="Europe/Dublin">
  1172. <exemplarCity>Dulenn</exemplarCity>
  1173. </zone>
  1174. <zone type="Asia/Jerusalem">
  1175. <exemplarCity>Jeruzalem</exemplarCity>
  1176. </zone>
  1177. <zone type="Europe/Isle_of_Man">
  1178. <exemplarCity>Manav</exemplarCity>
  1179. </zone>
  1180. <zone type="Atlantic/Reykjavik">
  1181. <exemplarCity>Reykjavík</exemplarCity>
  1182. </zone>
  1183. <zone type="Europe/Rome">
  1184. <exemplarCity>Roma</exemplarCity>
  1185. </zone>
  1186. <zone type="Europe/Jersey">
  1187. <exemplarCity>Jerzenez</exemplarCity>
  1188. </zone>
  1189. <zone type="America/Jamaica">
  1190. <exemplarCity>Jamaika</exemplarCity>
  1191. </zone>
  1192. <zone type="Asia/Phnom_Penh">
  1193. <exemplarCity>Phnum Pénh</exemplarCity>
  1194. </zone>
  1195. <zone type="Indian/Comoro">
  1196. <exemplarCity>Komorez</exemplarCity>
  1197. </zone>
  1198. <zone type="America/St_Kitts">
  1199. <exemplarCity>Saint Kitts</exemplarCity>
  1200. </zone>
  1201. <zone type="Asia/Pyongyang">
  1202. <exemplarCity>P'yongyang</exemplarCity>
  1203. </zone>
  1204. <zone type="Asia/Kuwait">
  1205. <exemplarCity>Koweit</exemplarCity>
  1206. </zone>
  1207. <zone type="Asia/Vientiane">
  1208. <exemplarCity>Viangchan</exemplarCity>
  1209. </zone>
  1210. <zone type="Asia/Beirut">
  1211. <exemplarCity>Bayrut</exemplarCity>
  1212. </zone>
  1213. <zone type="America/St_Lucia">
  1214. <exemplarCity>Saint Lucia</exemplarCity>
  1215. </zone>
  1216. <zone type="Europe/Luxembourg">
  1217. <exemplarCity>Luksembourg</exemplarCity>
  1218. </zone>
  1219. <zone type="Africa/Tripoli">
  1220. <exemplarCity>Tarabulus (Tripoli)</exemplarCity>
  1221. </zone>
  1222. <zone type="Africa/Casablanca">
  1223. <exemplarCity>Dar el Beida (Casablanca)</exemplarCity>
  1224. </zone>
  1225. <zone type="Asia/Rangoon">
  1226. <exemplarCity>Yangon</exemplarCity>
  1227. </zone>
  1228. <zone type="America/Martinique">
  1229. <exemplarCity>Martinik</exemplarCity>
  1230. </zone>
  1231. <zone type="Indian/Mauritius">
  1232. <exemplarCity>Moris</exemplarCity>
  1233. </zone>
  1234. <zone type="Indian/Maldives">
  1235. <exemplarCity>Maldivez</exemplarCity>
  1236. </zone>
  1237. <zone type="Asia/Muscat">
  1238. <exemplarCity>Masqat</exemplarCity>
  1239. </zone>
  1240. <zone type="America/Panama">
  1241. <exemplarCity>Panamá</exemplarCity>
  1242. </zone>
  1243. <zone type="Europe/Warsaw">
  1244. <exemplarCity>Varsovia</exemplarCity>
  1245. </zone>
  1246. <zone type="America/Miquelon">
  1247. <exemplarCity>Mikelon</exemplarCity>
  1248. </zone>
  1249. <zone type="Atlantic/Azores">
  1250. <exemplarCity>Azorez</exemplarCity>
  1251. </zone>
  1252. <zone type="America/Asuncion">
  1253. <exemplarCity>Asunción</exemplarCity>
  1254. </zone>
  1255. <zone type="Indian/Reunion">
  1256. <exemplarCity>Reünion</exemplarCity>
  1257. </zone>
  1258. <zone type="Europe/Bucharest">
  1259. <exemplarCity>Bukarest</exemplarCity>
  1260. </zone>
  1261. <zone type="Europe/Belgrade">
  1262. <exemplarCity>Beograd</exemplarCity>
  1263. </zone>
  1264. <zone type="Europe/Moscow">
  1265. <exemplarCity>Moskov</exemplarCity>
  1266. </zone>
  1267. <zone type="Asia/Yekaterinburg">
  1268. <exemplarCity>Yekaterinbourg</exemplarCity>
  1269. </zone>
  1270. <zone type="Asia/Anadyr">
  1271. <exemplarCity>Anadyr'</exemplarCity>
  1272. </zone>
  1273. <zone type="Asia/Singapore">
  1274. <exemplarCity>Singapour</exemplarCity>
  1275. </zone>
  1276. <zone type="Atlantic/St_Helena">
  1277. <exemplarCity>Saint Helena</exemplarCity>
  1278. </zone>
  1279. <zone type="Africa/Mogadishu">
  1280. <exemplarCity>Muqdisho</exemplarCity>
  1281. </zone>
  1282. <zone type="Africa/Sao_Tome">
  1283. <exemplarCity>São Tomé</exemplarCity>
  1284. </zone>
  1285. <zone type="America/El_Salvador">
  1286. <exemplarCity>Salvador</exemplarCity>
  1287. </zone>
  1288. <zone type="Asia/Damascus">
  1289. <exemplarCity>Damask</exemplarCity>
  1290. </zone>
  1291. <zone type="Africa/Ndjamena">
  1292. <exemplarCity>N'Djamena</exemplarCity>
  1293. </zone>
  1294. <zone type="Indian/Kerguelen">
  1295. <exemplarCity>Kergelenn</exemplarCity>
  1296. </zone>
  1297. <zone type="Africa/Lome">
  1298. <exemplarCity>Lomé</exemplarCity>
  1299. </zone>
  1300. <zone type="Africa/Tunis">
  1301. <exemplarCity>Tuniz</exemplarCity>
  1302. </zone>
  1303. <zone type="Europe/Vatican">
  1304. <exemplarCity>Vatikan</exemplarCity>
  1305. </zone>
  1306. <zone type="America/St_Vincent">
  1307. <exemplarCity>Sant Visant</exemplarCity>
  1308. </zone>
  1309. <zone type="Asia/Saigon">
  1310. <exemplarCity>Kêr Hô-Chi-Minh</exemplarCity>
  1311. </zone>
  1312. </timeZoneNames>
  1313. </dates>
  1314. <numbers>
  1315. <symbols numberSystem="latn">
  1316. <decimal>,</decimal>
  1317. <group> </group>
  1318. </symbols>
  1319. <currencies>
  1320. <currency type="AED">
  1321. <displayName>dirham EAU</displayName>
  1322. <displayName count="one">dirham EAU</displayName>
  1323. <displayName count="two">zirham EAU</displayName>
  1324. <displayName count="few">dirham EAU</displayName>
  1325. <displayName count="many">dirham EAU</displayName>
  1326. <displayName count="other">dirham EAU</displayName>
  1327. </currency>
  1328. <currency type="AFN">
  1329. <displayName>afghani Afghanistan</displayName>
  1330. </currency>
  1331. <currency type="ALL">
  1332. <displayName>lek Albania</displayName>
  1333. </currency>
  1334. <currency type="AMD">
  1335. <displayName>dram Armenia</displayName>
  1336. <displayName count="one">dram Armenia</displayName>
  1337. <displayName count="two">zram Armenia</displayName>
  1338. <displayName count="few">dram Armenia</displayName>
  1339. <displayName count="many">dram Armenia</displayName>
  1340. <displayName count="other">dram Armenia</displayName>
  1341. </currency>
  1342. <currency type="ANG">
  1343. <displayName>florin Antilhez nederlandat</displayName>
  1344. </currency>
  1345. <currency type="AOA">
  1346. <displayName>kwanza Angola</displayName>
  1347. <displayName count="one">c'hwanza Angola</displayName>
  1348. <displayName count="two">gwanza Angola</displayName>
  1349. <displayName count="few">c'hwanza Angola</displayName>
  1350. <displayName count="many">kwanza Angola</displayName>
  1351. <displayName count="other">kwanza Angola</displayName>
  1352. </currency>
  1353. <currency type="ARS">
  1354. <displayName>peso Arcʼhantina</displayName>
  1355. <displayName count="one">peso Arcʼhantina</displayName>
  1356. <displayName count="two">beso Arcʼhantina</displayName>
  1357. <displayName count="few">feso Arcʼhantina</displayName>
  1358. <displayName count="many">peso Arcʼhantina</displayName>
  1359. <displayName count="other">peso Arcʼhantina</displayName>
  1360. </currency>
  1361. <currency type="AUD">
  1362. <displayName>dollar Aostralia</displayName>
  1363. <displayName count="one">dollar Aostralia</displayName>
  1364. <displayName count="two">zollar Aostralia</displayName>
  1365. <displayName count="few">dollar Aostralia</displayName>
  1366. <displayName count="many">dollar Aostralia</displayName>
  1367. <displayName count="other">dollar Aostralia</displayName>
  1368. </currency>
  1369. <currency type="AWG">
  1370. <displayName>florin Aruba</displayName>
  1371. </currency>
  1372. <currency type="AZM">
  1373. <displayName>manat Azerbaidjan (1993–2006)</displayName>
  1374. </currency>
  1375. <currency type="AZN">
  1376. <displayName>manat Azerbaidjan</displayName>
  1377. <displayName count="one">manat Azerbaidjan</displayName>
  1378. <displayName count="two">vanat Azerbaidjan</displayName>
  1379. <displayName count="few">manat Azerbaidjan</displayName>
  1380. <displayName count="many">manat Azerbaidjan</displayName>
  1381. <displayName count="other">manat Azerbaidjan</displayName>
  1382. </currency>
  1383. <currency type="BAM">
  1384. <displayName>mark kemmadus Bosnia ha Herzegovina</displayName>
  1385. <displayName count="one">mark kemmadus Bosnia ha Herzegovina</displayName>
  1386. <displayName count="two">vark kemmadus Bosnia ha Herzegovina</displayName>
  1387. <displayName count="few">mark kemmadus Bosnia ha Herzegovina</displayName>
  1388. <displayName count="many">mark kemmadus Bosnia ha Herzegovina</displayName>
  1389. <displayName count="other">mark kemmadus Bosnia ha Herzegovina</displayName>
  1390. </currency>
  1391. <currency type="BBD">
  1392. <displayName>dollar Barbados</displayName>
  1393. <displayName count="one">dollar Barbados</displayName>
  1394. <displayName count="two">zollar Barbados</displayName>
  1395. <displayName count="few">dollar Barbados</displayName>
  1396. <displayName count="many">dollar Barbados</displayName>
  1397. <displayName count="other">dollar Barbados</displayName>
  1398. </currency>
  1399. <currency type="BDT">
  1400. <displayName>taka Bangladesh</displayName>
  1401. <displayName count="one">taka Bangladesh</displayName>
  1402. <displayName count="two">daka Bangladesh</displayName>
  1403. <displayName count="few">zaka Bangladesh</displayName>
  1404. <displayName count="many">taka Bangladesh</displayName>
  1405. <displayName count="other">taka Bangladesh</displayName>
  1406. </currency>
  1407. <currency type="BGN">
  1408. <displayName>lev Bulgaria</displayName>
  1409. </currency>
  1410. <currency type="BHD">
  1411. <displayName>dinar Bahrein</displayName>
  1412. <displayName count="one">dinar Bahrein</displayName>
  1413. <displayName count="two">zinar Bahrein</displayName>
  1414. <displayName count="few">dinar Bahrein</displayName>
  1415. <displayName count="many">dinar Bahrein</displayName>
  1416. <displayName count="other">dinar Bahrein</displayName>
  1417. </currency>
  1418. <currency type="BIF">
  1419. <displayName>lur Burundi</displayName>
  1420. </currency>
  1421. <currency type="BMD">
  1422. <displayName>dollar Bermuda</displayName>
  1423. <displayName count="one">dollar Bermuda</displayName>
  1424. <displayName count="two">zollar Bermuda</displayName>
  1425. <displayName count="few">dollar Bermuda</displayName>
  1426. <displayName count="many">dollar Bermuda</displayName>
  1427. <displayName count="other">dollar Bermuda</displayName>
  1428. </currency>
  1429. <currency type="BND">
  1430. <displayName>dollar Brunei</displayName>
  1431. <displayName count="one">dollar Brunei</displayName>
  1432. <displayName count="two">zollar Brunei</displayName>
  1433. <displayName count="few">dollar Brunei</displayName>
  1434. <displayName count="many">dollar Brunei</displayName>
  1435. <displayName count="other">dollar Brunei</displayName>
  1436. </currency>
  1437. <currency type="BOB">
  1438. <displayName>boliviano Bolivia</displayName>
  1439. <displayName count="one">boliviano Bolivia</displayName>
  1440. <displayName count="two">voliviano Bolivia</displayName>
  1441. <displayName count="few">boliviano Bolivia</displayName>
  1442. <displayName count="many">boliviano Bolivia</displayName>
  1443. <displayName count="other">boliviano Bolivia</displayName>
  1444. </currency>
  1445. <currency type="BRL">
  1446. <displayName>real Brazil</displayName>
  1447. </currency>
  1448. <currency type="BSD">
  1449. <displayName>dollar Bahamas</displayName>
  1450. <displayName count="one">dollar Bahamas</displayName>
  1451. <displayName count="two">zollar Bahamas</displayName>
  1452. <displayName count="few">dollar Bahamas</displayName>
  1453. <displayName count="many">dollar Bahamas</displayName>
  1454. <displayName count="other">dollar Bahamas</displayName>
  1455. </currency>
  1456. <currency type="BTN">
  1457. <displayName>ngultrum Bhoutan</displayName>
  1458. </currency>
  1459. <currency type="BWP">
  1460. <displayName>pula Botswana</displayName>
  1461. <displayName count="one">pula Botswana</displayName>
  1462. <displayName count="two">bula Botswana</displayName>
  1463. <displayName count="few">fula Botswana</displayName>
  1464. <displayName count="many">pula Botswana</displayName>
  1465. <displayName count="other">pula Botswana</displayName>
  1466. </currency>
  1467. <currency type="BYR">
  1468. <displayName>roubl Belarus</displayName>
  1469. </currency>
  1470. <currency type="BZD">
  1471. <displayName>dollar Belize</displayName>
  1472. <displayName count="one">dollar Belize</displayName>
  1473. <displayName count="two">zollar Belize</displayName>
  1474. <displayName count="few">dollar Belize</displayName>
  1475. <displayName count="many">dollar Belize</displayName>
  1476. <displayName count="other">dollar Belize</displayName>
  1477. </currency>
  1478. <currency type="CAD">
  1479. <displayName>dollar Kanada</displayName>
  1480. <displayName count="one">dollar Kanada</displayName>
  1481. <displayName count="two">zollar Kanada</displayName>
  1482. <displayName count="few">dollar Kanada</displayName>
  1483. <displayName count="many">dollar Kanada</displayName>
  1484. <displayName count="other">dollar Kanada</displayName>
  1485. </currency>
  1486. <currency type="CDF">
  1487. <displayName>lur Kongo</displayName>
  1488. </currency>
  1489. <currency type="CHF">
  1490. <displayName>lur Suis</displayName>
  1491. </currency>
  1492. <currency type="CLP">
  1493. <displayName>peso Chile</displayName>
  1494. <displayName count="one">peso Chile</displayName>
  1495. <displayName count="two">beso Chile</displayName>
  1496. <displayName count="few">feso Chile</displayName>
  1497. <displayName count="many">peso Chile</displayName>
  1498. <displayName count="other">peso Chile</displayName>
  1499. </currency>
  1500. <currency type="CNY">
  1501. <displayName>yuan Sina</displayName>
  1502. <displayName count="one">yuan Sina</displayName>
  1503. <displayName count="two">yuan Sina</displayName>
  1504. <displayName count="few">yuan Sina</displayName>
  1505. <displayName count="many">yuan Sina</displayName>
  1506. <displayName count="other">yuan Sina</displayName>
  1507. </currency>
  1508. <currency type="COP">
  1509. <displayName>peso Kolombia</displayName>
  1510. <displayName count="one">peso Kolombia</displayName>
  1511. <displayName count="two">beso Kolombia</displayName>
  1512. <displayName count="few">feso Kolombia</displayName>
  1513. <displayName count="many">peso Kolombia</displayName>
  1514. <displayName count="other">peso Kolombia</displayName>
  1515. </currency>
  1516. <currency type="CRC">
  1517. <displayName>colón Costa Rica</displayName>
  1518. <displayName count="one">c'holón Costa Rica</displayName>
  1519. <displayName count="two">golón Costa Rica</displayName>
  1520. <displayName count="few">c'holón Costa Rica</displayName>
  1521. <displayName count="many">colón Costa Rica</displayName>
  1522. <displayName count="other">colón Costa Rica</displayName>
  1523. </currency>
  1524. <currency type="CUC">
  1525. <displayName>peso kemmadus Kuba</displayName>
  1526. <displayName count="one">peso kemmadus Kuba</displayName>
  1527. <displayName count="two">beso gemmadus Kuba</displayName>
  1528. <displayName count="few">feso kemmadus Kuba</displayName>
  1529. <displayName count="many">peso kemmadus Kuba</displayName>
  1530. <displayName count="other">peso kemmadus Kuba</displayName>
  1531. </currency>
  1532. <currency type="CUP">
  1533. <displayName>peso Kuba</displayName>
  1534. <displayName count="one">peso Kuba</displayName>
  1535. <displayName count="two">beso Kuba</displayName>
  1536. <displayName count="few">feso Kuba</displayName>
  1537. <displayName count="many">peso Kuba</displayName>
  1538. <displayName count="other">peso Kuba</displayName>
  1539. </currency>
  1540. <currency type="CVE">
  1541. <displayName>escudo Kab Glas</displayName>
  1542. </currency>
  1543. <currency type="CZK">
  1544. <displayName>kurunenn Tchek</displayName>
  1545. <displayName count="one">gurunenn Tchek</displayName>
  1546. <displayName count="two">gurunenn Tchek</displayName>
  1547. <displayName count="few">kurunenn Tchek</displayName>
  1548. <displayName count="many">kurunenn Tchek</displayName>
  1549. <displayName count="other">kurunenn Tchek</displayName>
  1550. </currency>
  1551. <currency type="DJF">
  1552. <displayName>lur Djibouti</displayName>
  1553. </currency>
  1554. <currency type="DKK">
  1555. <displayName>kurunenn Danmark</displayName>
  1556. <displayName count="one">gurunenn Danmark</displayName>
  1557. <displayName count="two">gurunenn Danmark</displayName>
  1558. <displayName count="few">kurunenn Danmark</displayName>
  1559. <displayName count="many">kurunenn Danmark</displayName>
  1560. <displayName count="other">kurunenn Danmark</displayName>
  1561. </currency>
  1562. <currency type="DOP">
  1563. <displayName>peso Dominikan</displayName>
  1564. <displayName count="one">peso Dominikan</displayName>
  1565. <displayName count="two">beso Dominikan</displayName>
  1566. <displayName count="few">feso Dominikan</displayName>
  1567. <displayName count="many">peso Dominikan</displayName>
  1568. <displayName count="other">peso Dominikan</displayName>
  1569. </currency>
  1570. <currency type="DZD">
  1571. <displayName>dinar Aljeria</displayName>
  1572. <displayName count="one">dinar Aljeria</displayName>
  1573. <displayName count="two">zinar Aljeria</displayName>
  1574. <displayName count="few">dinar Aljeria</displayName>
  1575. <displayName count="many">dinar Aljeria</displayName>
  1576. <displayName count="other">dinar Aljeria</displayName>
  1577. </currency>
  1578. <currency type="EEK">
  1579. <displayName>kurunenn Estonia</displayName>
  1580. </currency>
  1581. <currency type="EGP">
  1582. <displayName>lur Egipt</displayName>
  1583. </currency>
  1584. <currency type="ERN">
  1585. <displayName>nakfa Eritrea</displayName>
  1586. </currency>
  1587. <currency type="ETB">
  1588. <displayName>birr Etiopia</displayName>
  1589. <displayName count="one">birr Etiopia</displayName>
  1590. <displayName count="two">virr Etiopia</displayName>
  1591. <displayName count="few">birr Etiopia</displayName>
  1592. <displayName count="many">birr Etiopia</displayName>
  1593. <displayName count="other">birr Etiopia</displayName>
  1594. </currency>
  1595. <currency type="EUR">
  1596. <displayName>euro</displayName>
  1597. </currency>
  1598. <currency type="FJD">
  1599. <displayName>dollar Fidji</displayName>
  1600. <displayName count="one">dollar Fidji</displayName>
  1601. <displayName count="two">zollar Fidji</displayName>
  1602. <displayName count="few">dollar Fidji</displayName>
  1603. <displayName count="many">dollar Fidji</displayName>
  1604. <displayName count="other">dollar Fidji</displayName>
  1605. </currency>
  1606. <currency type="FKP">
  1607. <displayName>lur Inizi Falkland</displayName>
  1608. </currency>
  1609. <currency type="FRF">
  1610. <displayName>lur gall</displayName>
  1611. <displayName count="one">lur gall</displayName>
  1612. <displayName count="two">lur gall</displayName>
  1613. <displayName count="few">lur gall</displayName>
  1614. <displayName count="many">lur gall</displayName>
  1615. <displayName count="other">lur gall</displayName>
  1616. </currency>
  1617. <currency type="GBP">
  1618. <displayName>lur sterling Breizh-Veur</displayName>
  1619. </currency>
  1620. <currency type="GEL">
  1621. <displayName>lari Jorjia</displayName>
  1622. </currency>
  1623. <currency type="GHS">
  1624. <displayName>cedi Ghana</displayName>
  1625. </currency>
  1626. <currency type="GIP">
  1627. <displayName>lur Jibraltar</displayName>
  1628. </currency>
  1629. <currency type="GMD">
  1630. <displayName>dalasi Gambia</displayName>
  1631. <displayName count="one">dalasi Gambia</displayName>
  1632. <displayName count="two">zalasi Gambia</displayName>
  1633. <displayName count="few">dalasi Gambia</displayName>
  1634. <displayName count="many">dalasi Gambia</displayName>
  1635. <displayName count="other">dalasi Gambia</displayName>
  1636. </currency>
  1637. <currency type="GNF">
  1638. <displayName>lur Ginea</displayName>
  1639. </currency>
  1640. <currency type="GTQ">
  1641. <displayName>quetzal Guatemala</displayName>
  1642. <displayName count="one">c'huetzal Guatemala</displayName>
  1643. <displayName count="two">guetzal Guatemala</displayName>
  1644. <displayName count="few">c'huetzal Guatemala</displayName>
  1645. <displayName count="many">quetzal Guatemala</displayName>
  1646. <displayName count="other">quetzal Guatemala</displayName>
  1647. </currency>
  1648. <currency type="GYD">
  1649. <displayName>dollar Guyana</displayName>
  1650. <displayName count="one">dollar Guyana</displayName>
  1651. <displayName count="two">zollar Guyana</displayName>
  1652. <displayName count="few">dollar Guyana</displayName>
  1653. <displayName count="many">dollar Guyana</displayName>
  1654. <displayName count="other">dollar Guyana</displayName>
  1655. </currency>
  1656. <currency type="HKD">
  1657. <displayName>dollar Hong Kong</displayName>
  1658. <displayName count="one">dollar Hong Kong</displayName>
  1659. <displayName count="two">zollar Hong Kong</displayName>
  1660. <displayName count="few">dollar Hong Kong</displayName>
  1661. <displayName count="many">dollar Hong Kong</displayName>
  1662. <displayName count="other">dollar Hong Kong</displayName>
  1663. </currency>
  1664. <currency type="HNL">
  1665. <displayName>lempira Honduras</displayName>
  1666. </currency>
  1667. <currency type="HRK">
  1668. <displayName>kuna Kroatia</displayName>
  1669. <displayName count="one">c'huna Kroatia</displayName>
  1670. <displayName count="two">guna Kroatia</displayName>
  1671. <displayName count="few">c'huna Kroatia</displayName>
  1672. <displayName count="many">kuna Kroatia</displayName>
  1673. <displayName count="other">kuna Kroatia</displayName>
  1674. </currency>
  1675. <currency type="HTG">
  1676. <displayName>gourde Haiti</displayName>
  1677. <displayName count="one">gourde Haiti</displayName>
  1678. <displayName count="two">c'hourde Haiti</displayName>
  1679. <displayName count="few">gourde Haiti</displayName>
  1680. <displayName count="many">gourde Haiti</displayName>
  1681. <displayName count="other">gourde Haiti</displayName>
  1682. </currency>
  1683. <currency type="HUF">
  1684. <displayName>forint Hungaria</displayName>
  1685. </currency>
  1686. <currency type="IDR">
  1687. <displayName>roupi Indonezia</displayName>
  1688. </currency>
  1689. <currency type="ILS">
  1690. <displayName>shekel nevez Israel</displayName>
  1691. </currency>
  1692. <currency type="INR">
  1693. <displayName>roupi India</displayName>
  1694. </currency>
  1695. <currency type="IQD">
  1696. <displayName>dinar Iraq</displayName>
  1697. <displayName count="one">dinar Iraq</displayName>
  1698. <displayName count="two">zinar Iraq</displayName>
  1699. <displayName count="few">dinar Iraq</displayName>
  1700. <displayName count="many">dinar Iraq</displayName>
  1701. <displayName count="other">dinar Iraq</displayName>
  1702. </currency>
  1703. <currency type="IRR">
  1704. <displayName>rial Iran</displayName>
  1705. </currency>
  1706. <currency type="ISK">
  1707. <displayName>kurunenn Island</displayName>
  1708. <displayName count="one">gurunenn Island</displayName>
  1709. <displayName count="two">gurunenn Island</displayName>
  1710. <displayName count="few">kurunenn Island</displayName>
  1711. <displayName count="many">kurunenn Island</displayName>
  1712. <displayName count="other">kurunenn Island</displayName>
  1713. </currency>
  1714. <currency type="ITL">
  1715. <displayName>lur Italia</displayName>
  1716. <displayName count="one">lur Italia</displayName>
  1717. <displayName count="two">lur Italia</displayName>
  1718. <displayName count="few">lur Italia</displayName>
  1719. <displayName count="many">lur Italia</displayName>
  1720. <displayName count="other">lur Italia</displayName>
  1721. </currency>
  1722. <currency type="JMD">
  1723. <displayName>dollar Jamaika</displayName>
  1724. <displayName count="one">dollar Jamaika</displayName>
  1725. <displayName count="two">zollar Jamaika</displayName>
  1726. <displayName count="few">dollar Jamaika</displayName>
  1727. <displayName count="many">dollar Jamaika</displayName>
  1728. <displayName count="other">dollar Jamaika</displayName>
  1729. </currency>
  1730. <currency type="JOD">
  1731. <displayName>dinar Jordania</displayName>
  1732. <displayName count="one">dinar Jordania</displayName>
  1733. <displayName count="two">zinar Jordania</displayName>
  1734. <displayName count="few">dinar Jordania</displayName>
  1735. <displayName count="many">dinar Jordania</displayName>
  1736. <displayName count="other">dinar Jordania</displayName>
  1737. </currency>
  1738. <currency type="JPY">
  1739. <displayName>yen Japan</displayName>
  1740. </currency>
  1741. <currency type="KES">
  1742. <displayName>shilling Kenya</displayName>
  1743. </currency>
  1744. <currency type="KGS">
  1745. <displayName>som Kyrgyzstan</displayName>
  1746. </currency>
  1747. <currency type="KHR">
  1748. <displayName>riel Kambodja</displayName>
  1749. </currency>
  1750. <currency type="KMF">
  1751. <displayName>lur Komorez</displayName>
  1752. </currency>
  1753. <currency type="KPW">
  1754. <displayName>won Korea an Norzh</displayName>
  1755. </currency>
  1756. <currency type="KRW">
  1757. <displayName>won Korea ar Su</displayName>
  1758. </currency>
  1759. <currency type="KWD">
  1760. <displayName>dinar Koweit</displayName>
  1761. <displayName count="one">dinar Koweit</displayName>
  1762. <displayName count="two">zinar Koweit</displayName>
  1763. <displayName count="few">dinar Koweit</displayName>
  1764. <displayName count="many">dinar Koweit</displayName>
  1765. <displayName count="other">dinar Koweit</displayName>
  1766. </currency>
  1767. <currency type="KYD">
  1768. <displayName>dollar Inizi Cayman</displayName>
  1769. <displayName count="one">dollar Inizi Cayman</displayName>
  1770. <displayName count="two">zollar Inizi Cayman</displayName>
  1771. <displayName count="few">dollar Inizi Cayman</displayName>
  1772. <displayName count="many">dollar Inizi Cayman</displayName>
  1773. <displayName count="other">dollar Inizi Cayman</displayName>
  1774. </currency>
  1775. <currency type="KZT">
  1776. <displayName>tenge Kazakstan</displayName>
  1777. <displayName count="one">tenge Kazakstan</displayName>
  1778. <displayName count="two">denge Kazakstan</displayName>
  1779. <displayName count="few">zenge Kazakstan</displayName>
  1780. <displayName count="many">tenge Kazakstan</displayName>
  1781. <displayName count="other">tenge Kazakstan</displayName>
  1782. </currency>
  1783. <currency type="LAK">
  1784. <displayName>kip Laos</displayName>
  1785. <displayName count="one">c'hip Laos</displayName>
  1786. <displayName count="two">gip Laos</displayName>
  1787. <displayName count="few">c'hip Laos</displayName>
  1788. <displayName count="many">kip Laos</displayName>
  1789. <displayName count="other">kip Laos</displayName>
  1790. </currency>
  1791. <currency type="LBP">
  1792. <displayName>lur Liban</displayName>
  1793. </currency>
  1794. <currency type="LKR">
  1795. <displayName>roupi Sri Lanka</displayName>
  1796. </currency>
  1797. <currency type="LRD">
  1798. <displayName>dollar Liberia</displayName>
  1799. <displayName count="one">dollar Liberia</displayName>
  1800. <displayName count="two">zollar Liberia</displayName>
  1801. <displayName count="few">dollar Liberia</displayName>
  1802. <displayName count="many">dollar Liberia</displayName>
  1803. <displayName count="other">dollar Liberia</displayName>
  1804. </currency>
  1805. <currency type="LSL">
  1806. <displayName>loti Lesotho</displayName>
  1807. </currency>
  1808. <currency type="LTL">
  1809. <displayName>litas Lituania</displayName>
  1810. </currency>
  1811. <currency type="LUF">
  1812. <displayName>lur Luksembourg</displayName>
  1813. <displayName count="one">lur Luksembourg</displayName>
  1814. <displayName count="two">lur Luksembourg</displayName>
  1815. <displayName count="few">lur Luksembourg</displayName>
  1816. <displayName count="many">lur Luksembourg</displayName>
  1817. <displayName count="other">lur Luksembourg</displayName>
  1818. </currency>
  1819. <currency type="LVL">
  1820. <displayName>lats Latvia</displayName>
  1821. </currency>
  1822. <currency type="LYD">
  1823. <displayName>dinar Libia</displayName>
  1824. <displayName count="one">dinar Libia</displayName>
  1825. <displayName count="two">zinar Libia</displayName>
  1826. <displayName count="few">dinar Libia</displayName>
  1827. <displayName count="many">dinar Libia</displayName>
  1828. <displayName count="other">dinar Libia</displayName>
  1829. </currency>
  1830. <currency type="MAD">
  1831. <displayName>dirham Maroko</displayName>
  1832. <displayName count="one">dirham Maroko</displayName>
  1833. <displayName count="two">zirham Maroko</displayName>
  1834. <displayName count="few">dirham Maroko</displayName>
  1835. <displayName count="many">dirham Maroko</displayName>
  1836. <displayName count="other">dirham Maroko</displayName>
  1837. </currency>
  1838. <currency type="MAF">
  1839. <displayName>lur Maroko</displayName>
  1840. <displayName count="one">lur Maroko</displayName>
  1841. <displayName count="two">lur Maroko</displayName>
  1842. <displayName count="few">lur Maroko</displayName>
  1843. <displayName count="many">lur Maroko</displayName>
  1844. <displayName count="other">lur Maroko</displayName>
  1845. </currency>
  1846. <currency type="MCF">
  1847. <displayName>lur Monaco</displayName>
  1848. <displayName count="one">lur Monaco</displayName>
  1849. <displayName count="two">lur Monaco</displayName>
  1850. <displayName count="few">lur Monaco</displayName>
  1851. <displayName count="many">lur Monaco</displayName>
  1852. <displayName count="other">lur Monaco</displayName>
  1853. </currency>
  1854. <currency type="MDL">
  1855. <displayName>leu Moldova</displayName>
  1856. </currency>
  1857. <currency type="MGA">
  1858. <displayName>ariary Madagaskar</displayName>
  1859. </currency>
  1860. <currency type="MKD">
  1861. <displayName>denar Makedonia</displayName>
  1862. <displayName count="one">denar Makedonia</displayName>
  1863. <displayName count="two">zenar Makedonia</displayName>
  1864. <displayName count="few">denar Makedonia</displayName>
  1865. <displayName count="many">denar Makedonia</displayName>
  1866. <displayName count="other">denar Makedonia</displayName>
  1867. </currency>
  1868. <currency type="MLF">
  1869. <displayName>lur Mali</displayName>
  1870. <displayName count="one">lur Mali</displayName>
  1871. <displayName count="two">lur Mali</displayName>
  1872. <displayName count="few">lur Mali</displayName>
  1873. <displayName count="many">lur Mali</displayName>
  1874. <displayName count="other">lur Mali</displayName>
  1875. </currency>
  1876. <currency type="MMK">
  1877. <displayName>kyat Myanmar</displayName>
  1878. <displayName count="one">c'hyat Myanmar</displayName>
  1879. <displayName count="two">gyat Myanmar</displayName>
  1880. <displayName count="few">c'hyat Myanmar</displayName>
  1881. <displayName count="many">kyat Myanmar</displayName>
  1882. <displayName count="other">kyat Myanmar</displayName>
  1883. </currency>
  1884. <currency type="MNT">
  1885. <displayName>tugrik Mongolia</displayName>
  1886. <displayName count="one">tugrik Mongolia</displayName>
  1887. <displayName count="two">dugrik Mongolia</displayName>
  1888. <displayName count="few">zugrik Mongolia</displayName>
  1889. <displayName count="many">tugrik Mongolia</displayName>
  1890. <displayName count="other">tugrik Mongolia</displayName>
  1891. </currency>
  1892. <currency type="MOP">
  1893. <displayName>pataca Macau</displayName>
  1894. <displayName count="one">pataca Macau</displayName>
  1895. <displayName count="two">bataca Macau</displayName>
  1896. <displayName count="few">fataca Macau</displayName>
  1897. <displayName count="many">pataca Macau</displayName>
  1898. <displayName count="other">pataca Macau</displayName>
  1899. </currency>
  1900. <currency type="MRO">
  1901. <displayName>ouguiya Maouritania</displayName>
  1902. </currency>
  1903. <currency type="MUR">
  1904. <displayName>roupi Moris</displayName>
  1905. </currency>
  1906. <currency type="MVR">
  1907. <displayName>rufiyaa Maldivez</displayName>
  1908. </currency>
  1909. <currency type="MWK">
  1910. <displayName>kwacha Malawi</displayName>
  1911. <displayName count="one">c'hwacha Malawi</displayName>
  1912. <displayName count="two">gwacha Malawi</displayName>
  1913. <displayName count="few">kwacha Malawi</displayName>
  1914. <displayName count="many">kwacha Malawi</displayName>
  1915. <displayName count="other">kwacha Malawi</displayName>
  1916. </currency>
  1917. <currency type="MXN">
  1918. <displayName>peso Mecʼhiko</displayName>
  1919. <displayName count="one">peso Mecʼhiko</displayName>
  1920. <displayName count="two">beso Mecʼhiko</displayName>
  1921. <displayName count="few">feso Mecʼhiko</displayName>
  1922. <displayName count="many">peso Mecʼhiko</displayName>
  1923. <displayName count="other">peso Mecʼhiko</displayName>
  1924. </currency>
  1925. <currency type="MYR">
  1926. <displayName>ringgit Malaysia</displayName>
  1927. </currency>
  1928. <currency type="MZM">
  1929. <displayName>metical Mozambik (1980–2006)</displayName>
  1930. <displayName count="one">metical Mozambik (1980–2006)</displayName>
  1931. <displayName count="two">vetical Mozambik (1980–2006)</displayName>
  1932. <displayName count="few">metical Mozambik (1980–2006)</displayName>
  1933. <displayName count="many">metical Mozambik (1980–2006)</displayName>
  1934. <displayName count="other">metical Mozambik (1980–2006)</displayName>
  1935. </currency>
  1936. <currency type="MZN">
  1937. <displayName>metical Mozambik</displayName>
  1938. <displayName count="one">metical Mozambik</displayName>
  1939. <displayName count="two">vetical Mozambik</displayName>
  1940. <displayName count="few">metical Mozambik</displayName>
  1941. <displayName count="many">metical Mozambik</displayName>
  1942. <displayName count="other">metical Mozambik</displayName>
  1943. </currency>
  1944. <currency type="NAD">
  1945. <displayName>dollar Namibia</displayName>
  1946. <displayName count="one">dollar Namibia</displayName>
  1947. <displayName count="two">zollar Namibia</displayName>
  1948. <displayName count="few">dollar Namibia</displayName>
  1949. <displayName count="many">dollar Namibia</displayName>
  1950. <displayName count="other">dollar Namibia</displayName>
  1951. </currency>
  1952. <currency type="NGN">
  1953. <displayName>naira Nigeria</displayName>
  1954. </currency>
  1955. <currency type="NIO">
  1956. <displayName>cordoba Nicaragua</displayName>
  1957. <displayName count="one">c'hordoba Nicaragua</displayName>
  1958. <displayName count="two">gordoba Nicaragua</displayName>
  1959. <displayName count="few">c'hordoba Nicaragua</displayName>
  1960. <displayName count="many">cordoba Nicaragua</displayName>
  1961. <displayName count="other">cordoba Nicaragua</displayName>
  1962. </currency>
  1963. <currency type="NOK">
  1964. <displayName>kurunenn Norvegia</displayName>
  1965. <displayName count="one">gurunenn Norvegia</displayName>
  1966. <displayName count="two">gurunenn Norvegia</displayName>
  1967. <displayName count="few">kurunenn Norvegia</displayName>
  1968. <displayName count="many">kurunenn Norvegia</displayName>
  1969. <displayName count="other">kurunenn Norvegia</displayName>
  1970. </currency>
  1971. <currency type="NPR">
  1972. <displayName>roupi Nepal</displayName>
  1973. </currency>
  1974. <currency type="NZD">
  1975. <displayName>dollar Zeland-Nevez</displayName>
  1976. <displayName count="one">dollar Zeland-Nevez</displayName>
  1977. <displayName count="two">zollar Zeland-Nevez</displayName>
  1978. <displayName count="few">dollar Zeland-Nevez</displayName>
  1979. <displayName count="many">dollar Zeland-Nevez</displayName>
  1980. <displayName count="other">dollar Zeland-Nevez</displayName>
  1981. </currency>
  1982. <currency type="OMR">
  1983. <displayName>rial Oman</displayName>
  1984. </currency>
  1985. <currency type="PAB">
  1986. <displayName>balboa Panamá</displayName>
  1987. <displayName count="one">balboa Panamá</displayName>
  1988. <displayName count="two">valboa Panamá</displayName>
  1989. <displayName count="few">balboa Panamá</displayName>
  1990. <displayName count="many">balboa Panamá</displayName>
  1991. <displayName count="other">balboa Panamá</displayName>
  1992. </currency>
  1993. <currency type="PEN">
  1994. <displayName>nuevo sol Perou</displayName>
  1995. </currency>
  1996. <currency type="PGK">
  1997. <displayName>kina Papoua Ginea-Nevez</displayName>
  1998. <displayName count="one">c'hina Papoua Ginea-Nevez</displayName>
  1999. <displayName count="two">gina Papoua Ginea-Nevez</displayName>
  2000. <displayName count="few">c'hina Papoua Ginea-Nevez</displayName>
  2001. <displayName count="many">kina Papoua Ginea-Nevez</displayName>
  2002. <displayName count="other">kina Papoua Ginea-Nevez</displayName>
  2003. </currency>
  2004. <currency type="PHP">
  2005. <displayName>peso Filipinez</displayName>
  2006. <displayName count="one">peso Filipinez</displayName>
  2007. <displayName count="two">beso Filipinez</displayName>
  2008. <displayName count="few">feso Filipinez</displayName>
  2009. <displayName count="many">peso Filipinez</displayName>
  2010. <displayName count="other">peso Filipinez</displayName>
  2011. </currency>
  2012. <currency type="PKR">
  2013. <displayName>roupi Pakistan</displayName>
  2014. </currency>
  2015. <currency type="PLN">
  2016. <displayName>zloty Polonia</displayName>
  2017. </currency>
  2018. <currency type="PYG">
  2019. <displayName>guarani Paraguay</displayName>
  2020. <displayName count="one">guarani Paraguay</displayName>
  2021. <displayName count="two">uarani Paraguay</displayName>
  2022. <displayName count="few">guarani Paraguay</displayName>
  2023. <displayName count="many">guarani Paraguay</displayName>
  2024. <displayName count="other">guarani Paraguay</displayName>
  2025. </currency>
  2026. <currency type="QAR">
  2027. <displayName>rial Qatar</displayName>
  2028. </currency>
  2029. <currency type="ROL">
  2030. <displayName>leu Roumania (1952–2006)</displayName>
  2031. <displayName count="one">leu Roumania (1952–2006)</displayName>
  2032. <displayName count="two">leu Roumania (1952–2006)</displayName>
  2033. <displayName count="few">leu Roumania (1952–2006)</displayName>
  2034. <displayName count="many">leu Roumania (1952–2006)</displayName>
  2035. <displayName count="other">leu Roumania (1952–2006)</displayName>
  2036. </currency>
  2037. <currency type="RON">
  2038. <displayName>leu Roumania</displayName>
  2039. <displayName count="one">leu Roumania</displayName>
  2040. <displayName count="two">leu Roumania</displayName>
  2041. <displayName count="few">leu Roumania</displayName>
  2042. <displayName count="many">leu Roumania</displayName>
  2043. <displayName count="other">leu Roumania</displayName>
  2044. </currency>
  2045. <currency type="RSD">
  2046. <displayName>dinar Serbia</displayName>
  2047. <displayName count="one">dinar Serbia</displayName>
  2048. <displayName count="two">zinar Serbia</displayName>
  2049. <displayName count="few">dinar Serbia</displayName>
  2050. <displayName count="many">dinar Serbia</displayName>
  2051. <displayName count="other">dinar Serbia</displayName>
  2052. </currency>
  2053. <currency type="RUB">
  2054. <displayName>roubl Rusia</displayName>
  2055. </currency>
  2056. <currency type="RWF">
  2057. <displayName>lur Rwanda</displayName>
  2058. </currency>
  2059. <currency type="SAR">
  2060. <displayName>riyal Arabia Saoudat</displayName>
  2061. </currency>
  2062. <currency type="SBD">
  2063. <displayName>dollar Inizi Salomon</displayName>
  2064. <displayName count="one">dollar Inizi Salomon</displayName>
  2065. <displayName count="two">zollar Inizi Salomon</displayName>
  2066. <displayName count="few">dollar Inizi Salomon</displayName>
  2067. <displayName count="many">dollar Inizi Salomon</displayName>
  2068. <displayName count="other">dollar Inizi Salomon</displayName>
  2069. </currency>
  2070. <currency type="SCR">
  2071. <displayName>roupi Sechelez</displayName>
  2072. </currency>
  2073. <currency type="SDG">
  2074. <displayName>lur Soudan</displayName>
  2075. </currency>
  2076. <currency type="SEK">
  2077. <displayName>kurunenn Sveden</displayName>
  2078. <displayName count="one">gurunenn Sveden</displayName>
  2079. <displayName count="two">gurunenn Sveden</displayName>
  2080. <displayName count="few">kurunenn Sveden</displayName>
  2081. <displayName count="many">kurunenn Sveden</displayName>
  2082. <displayName count="other">kurunenn Sveden</displayName>
  2083. </currency>
  2084. <currency type="SGD">
  2085. <displayName>dollar Singapour</displayName>
  2086. <displayName count="one">dollar Singapour</displayName>
  2087. <displayName count="two">zollar Singapour</displayName>
  2088. <displayName count="few">dollar Singapour</displayName>
  2089. <displayName count="many">dollar Singapour</displayName>
  2090. <displayName count="other">dollar Singapour</displayName>
  2091. </currency>
  2092. <currency type="SHP">
  2093. <displayName>lur Saint Helena</displayName>
  2094. </currency>
  2095. <currency type="SKK">
  2096. <displayName>kurunenn Slovakia</displayName>
  2097. <displayName count="one">gurunenn Slovakia</displayName>
  2098. <displayName count="two">gurunenn Slovakia</displayName>
  2099. <displayName count="few">c'hurunenn Slovakia</displayName>
  2100. <displayName count="many">kurunenn Slovakia</displayName>
  2101. <displayName count="other">kurunenn Slovakia</displayName>
  2102. </currency>
  2103. <currency type="SLL">
  2104. <displayName>leone Sierra Leone</displayName>
  2105. </currency>
  2106. <currency type="SOS">
  2107. <displayName>shilling Somalia</displayName>
  2108. </currency>
  2109. <currency type="SRD">
  2110. <displayName>dollar Surinam</displayName>
  2111. <displayName count="one">dollar Surinam</displayName>
  2112. <displayName count="two">zollar Surinam</displayName>
  2113. <displayName count="few">dollar Surinam</displayName>
  2114. <displayName count="many">dollar Surinam</displayName>
  2115. <displayName count="other">dollar Surinam</displayName>
  2116. </currency>
  2117. <currency type="SSP">
  2118. <displayName>lur Su Soudan</displayName>
  2119. <displayName count="one">lur Su Soudan</displayName>
  2120. <displayName count="two">lur Su Soudan</displayName>
  2121. <displayName count="few">lur Su Soudan</displayName>
  2122. <displayName count="many">lur Su Soudan</displayName>
  2123. <displayName count="other">lur Su Soudan</displayName>
  2124. </currency>
  2125. <currency type="STD">
  2126. <displayName>dobra São Tomé ha Príncipe</displayName>
  2127. <displayName count="one">dobra São Tomé ha Príncipe</displayName>
  2128. <displayName count="two">zobra São Tomé ha Príncipe</displayName>
  2129. <displayName count="few">dobra São Tomé ha Príncipe</displayName>
  2130. <displayName count="many">dobra São Tomé ha Príncipe</displayName>
  2131. <displayName count="other">dobra São Tomé ha Príncipe</displayName>
  2132. </currency>
  2133. <currency type="SUR">
  2134. <displayName>roubl soviedel</displayName>
  2135. <displayName count="one">roubl soviedel</displayName>
  2136. <displayName count="two">roubl soviedel</displayName>
  2137. <displayName count="few">roubl soviedel</displayName>
  2138. <displayName count="many">roubl soviedel</displayName>
  2139. <displayName count="other">roubl soviedel</displayName>
  2140. </currency>
  2141. <currency type="SVC">
  2142. <displayName>colón Salvador</displayName>
  2143. <displayName count="one">c'holón Salvador</displayName>
  2144. <displayName count="two">golón Salvador</displayName>
  2145. <displayName count="few">c'holón Salvador</displayName>
  2146. <displayName count="many">colón Salvador</displayName>
  2147. <displayName count="other">colón Salvador</displayName>
  2148. </currency>
  2149. <currency type="SYP">
  2150. <displayName>lur Siria</displayName>
  2151. </currency>
  2152. <currency type="SZL">
  2153. <displayName>lilangeni Swaziland</displayName>
  2154. </currency>
  2155. <currency type="THB">
  2156. <displayName>baht Thailand</displayName>
  2157. <displayName count="one">baht Thailand</displayName>
  2158. <displayName count="two">vaht Thailand</displayName>
  2159. <displayName count="few">baht Thailand</displayName>
  2160. <displayName count="many">baht Thailand</displayName>
  2161. <displayName count="other">baht Thailand</displayName>
  2162. </currency>
  2163. <currency type="TJR">
  2164. <displayName>roubl Tadjikistan</displayName>
  2165. <displayName count="one">roubl Tadjikistan</displayName>
  2166. <displayName count="two">roubl Tadjikistan</displayName>
  2167. <displayName count="few">roubl Tadjikistan</displayName>
  2168. <displayName count="many">roubl Tadjikistan</displayName>
  2169. <displayName count="other">roubl Tadjikistan</displayName>
  2170. </currency>
  2171. <currency type="TJS">
  2172. <displayName>somoni Tadjikistan</displayName>
  2173. </currency>
  2174. <currency type="TMM">
  2175. <displayName>manat Turkmenistan (1993–2009)</displayName>
  2176. <displayName count="one">manat Turkmenistan (1993–2009)</displayName>
  2177. <displayName count="two">vanat Turkmenistan (1993–2009)</displayName>
  2178. <displayName count="few">manat Turkmenistan (1993–2009)</displayName>
  2179. <displayName count="many">manat Turkmenistan (1993–2009)</displayName>
  2180. <displayName count="other">manat Turkmenistan (1993–2009)</displayName>
  2181. </currency>
  2182. <currency type="TMT">
  2183. <displayName>manat Turkmenistan</displayName>
  2184. <displayName count="one">manat Turkmenistan</displayName>
  2185. <displayName count="two">vanat Turkmenistan</displayName>
  2186. <displayName count="few">manat Turkmenistan</displayName>
  2187. <displayName count="many">manat Turkmenistan</displayName>
  2188. <displayName count="other">manat Turkmenistan</displayName>
  2189. </currency>
  2190. <currency type="TND">
  2191. <displayName>dinar Tunizia</displayName>
  2192. <displayName count="one">dinar Tunizia</displayName>
  2193. <displayName count="two">zinar Tunizia</displayName>
  2194. <displayName count="few">dinar Tunizia</displayName>
  2195. <displayName count="many">dinar Tunizia</displayName>
  2196. <displayName count="other">dinar Tunizia</displayName>
  2197. </currency>
  2198. <currency type="TOP">
  2199. <displayName>paʻanga Tonga</displayName>
  2200. <displayName count="one">paʻanga Tonga</displayName>
  2201. <displayName count="two">baʻanga Tonga</displayName>
  2202. <displayName count="few">faʻanga Tonga</displayName>
  2203. <displayName count="many">paʻanga Tonga</displayName>
  2204. <displayName count="other">paʻanga Tonga</displayName>
  2205. </currency>
  2206. <currency type="TRY">
  2207. <displayName>lur Turkia</displayName>
  2208. </currency>
  2209. <currency type="TTD">
  2210. <displayName>dollar Trinidad ha Tobago</displayName>
  2211. <displayName count="one">dollar Trinidad ha Tobago</displayName>
  2212. <displayName count="two">zollar Trinidad ha Tobago</displayName>
  2213. <displayName count="few">dollar Trinidad ha Tobago</displayName>
  2214. <displayName count="many">dollar Trinidad ha Tobago</displayName>
  2215. <displayName count="other">dollar Trinidad ha Tobago</displayName>
  2216. </currency>
  2217. <currency type="TWD">
  2218. <displayName>dollar nevez Taiwan</displayName>
  2219. <displayName count="one">dollar nevez Taiwan</displayName>
  2220. <displayName count="two">zollar nevez Taiwan</displayName>
  2221. <displayName count="few">dollar nevez Taiwan</displayName>
  2222. <displayName count="many">dollar nevez Taiwan</displayName>
  2223. <displayName count="other">dollar nevez Taiwan</displayName>
  2224. </currency>
  2225. <currency type="TZS">
  2226. <displayName>shilling Tanzania</displayName>
  2227. </currency>
  2228. <currency type="UAH">
  2229. <displayName>hryvnia Ukraina</displayName>
  2230. </currency>
  2231. <currency type="UGX">
  2232. <displayName>shilling Ouganda</displayName>
  2233. </currency>
  2234. <currency type="USD">
  2235. <displayName>dollar SU</displayName>
  2236. <displayName count="one">dollar SU</displayName>
  2237. <displayName count="two">zollar SU</displayName>
  2238. <displayName count="few">dollar SU</displayName>
  2239. <displayName count="many">dollar SU</displayName>
  2240. <displayName count="other">dollar SU</displayName>
  2241. </currency>
  2242. <currency type="UYU">
  2243. <displayName>peso Uruguay</displayName>
  2244. <displayName count="one">peso Uruguay</displayName>
  2245. <displayName count="two">beso Uruguay</displayName>
  2246. <displayName count="few">feso Uruguay</displayName>
  2247. <displayName count="many">peso Uruguay</displayName>
  2248. <displayName count="other">peso Uruguay</displayName>
  2249. </currency>
  2250. <currency type="UZS">
  2251. <displayName>som Ouzbekistan</displayName>
  2252. </currency>
  2253. <currency type="VEF">
  2254. <displayName>bolivar Venezuela</displayName>
  2255. <displayName count="one">bolivar Venezuela</displayName>
  2256. <displayName count="two">volivar Venezuela</displayName>
  2257. <displayName count="few">bolivar Venezuela</displayName>
  2258. <displayName count="many">bolivar Venezuela</displayName>
  2259. <displayName count="other">bolivar Venezuela</displayName>
  2260. </currency>
  2261. <currency type="VND">
  2262. <displayName>dong Viêt Nam</displayName>
  2263. <displayName count="one">dong Viêt Nam</displayName>
  2264. <displayName count="two">zong Viêt Nam</displayName>
  2265. <displayName count="few">dong Viêt Nam</displayName>
  2266. <displayName count="many">dong Viêt Nam</displayName>
  2267. <displayName count="other">dong Viêt Nam</displayName>
  2268. </currency>
  2269. <currency type="VUV">
  2270. <displayName>vatu Vanuatu</displayName>
  2271. </currency>
  2272. <currency type="WST">
  2273. <displayName>tala Samoa</displayName>
  2274. <displayName count="one">tala Samoa</displayName>
  2275. <displayName count="two">dala Samoa</displayName>
  2276. <displayName count="few">zala Samoa</displayName>
  2277. <displayName count="many">tala Samoa</displayName>
  2278. <displayName count="other">tala Samoa</displayName>
  2279. </currency>
  2280. <currency type="XAF">
  2281. <displayName>lur CFA BEAC</displayName>
  2282. </currency>
  2283. <currency type="XAG">
  2284. <displayName>arcʼhant</displayName>
  2285. </currency>
  2286. <currency type="XAU">
  2287. <displayName>aour</displayName>
  2288. </currency>
  2289. <currency type="XBA">
  2290. <displayName>unanenn kenaoz europat</displayName>
  2291. </currency>
  2292. <currency type="XBB">
  2293. <displayName>unanenn voneiz europat</displayName>
  2294. </currency>
  2295. <currency type="XBC">
  2296. <displayName>unanenn jediñ europat (XBC)</displayName>
  2297. </currency>
  2298. <currency type="XBD">
  2299. <displayName>unanenn jediñ europat (XBD)</displayName>
  2300. </currency>
  2301. <currency type="XCD">
  2302. <displayName>dollar Karib ar reter</displayName>
  2303. <displayName count="one">dollar Karib ar reter</displayName>
  2304. <displayName count="two">zollar Karib ar reter</displayName>
  2305. <displayName count="few">dollar Karib ar reter</displayName>
  2306. <displayName count="many">dollar Karib ar reter</displayName>
  2307. <displayName count="other">dollar Karib ar reter</displayName>
  2308. </currency>
  2309. <currency type="XDR">
  2310. <displayName>gwirioù tennañ arbennik</displayName>
  2311. </currency>
  2312. <currency type="XFO">
  2313. <displayName>lur aour Frañs</displayName>
  2314. </currency>
  2315. <currency type="XFU">
  2316. <displayName>lur Unaniezh etrebroadel an hentoù-houarn</displayName>
  2317. </currency>
  2318. <currency type="XOF">
  2319. <displayName>lur CFA BCEAO</displayName>
  2320. </currency>
  2321. <currency type="XPD">
  2322. <displayName>palladiom</displayName>
  2323. </currency>
  2324. <currency type="XPF">
  2325. <displayName>lur CFP</displayName>
  2326. </currency>
  2327. <currency type="XPT">
  2328. <displayName>platin</displayName>
  2329. </currency>
  2330. <currency type="XTS">
  2331. <displayName>kod moneiz amprouiñ</displayName>
  2332. </currency>
  2333. <currency type="XXX">
  2334. <displayName>moneiz dianav</displayName>
  2335. </currency>
  2336. <currency type="YDD">
  2337. <displayName>dinar Yemen</displayName>
  2338. <displayName count="one">dinar Yemen</displayName>
  2339. <displayName count="two">zinar Yemen</displayName>
  2340. <displayName count="few">dinar Yemen</displayName>
  2341. <displayName count="many">dinar Yemen</displayName>
  2342. <displayName count="other">dinar Yemen</displayName>
  2343. </currency>
  2344. <currency type="YER">
  2345. <displayName>rial Yemen</displayName>
  2346. </currency>
  2347. <currency type="ZAR">
  2348. <displayName>rand Suafrika</displayName>
  2349. </currency>
  2350. <currency type="ZMK">
  2351. <displayName>kwacha Zambia (1968–2012)</displayName>
  2352. <displayName count="one">c'hwacha Zambia (1968–2012)</displayName>
  2353. <displayName count="two">gwacha Zambia (1968–2012)</displayName>
  2354. <displayName count="few">kwacha Zambia (1968–2012)</displayName>
  2355. <displayName count="many">kwacha Zambia (1968–2012)</displayName>
  2356. <displayName count="other">kwacha Zambia (1968–2012)</displayName>
  2357. </currency>
  2358. <currency type="ZMW">
  2359. <displayName>kwacha Zambia</displayName>
  2360. <displayName count="one">c'hwacha Zambia</displayName>
  2361. <displayName count="two">gwacha Zambia</displayName>
  2362. <displayName count="few">kwacha Zambia</displayName>
  2363. <displayName count="many">kwacha Zambia</displayName>
  2364. <displayName count="other">kwacha Zambia</displayName>
  2365. </currency>
  2366. <currency type="ZWD">
  2367. <displayName>dollar Zimbabwe (1980–2008)</displayName>
  2368. <displayName count="one">dollar Zimbabwe (1980–2008)</displayName>
  2369. <displayName count="two">zollar Zimbabwe</displayName>
  2370. <displayName count="few">dollar Zimbabwe (1980–2008)</displayName>
  2371. <displayName count="many">dollar Zimbabwe (1980–2008)</displayName>
  2372. <displayName count="other">dollar Zimbabwe (1980–2008)</displayName>
  2373. </currency>
  2374. <currency type="ZWL">
  2375. <displayName>dollar Zimbabwe (2009)</displayName>
  2376. <displayName count="one">dollar Zimbabwe (2009)</displayName>
  2377. <displayName count="two">zollar Zimbabwe (2009)</displayName>
  2378. <displayName count="few">dollar Zimbabwe (2009)</displayName>
  2379. <displayName count="many">dollar Zimbabwe (2009)</displayName>
  2380. <displayName count="other">dollar Zimbabwe (2009)</displayName>
  2381. </currency>
  2382. </currencies>
  2383. </numbers>
  2384. <posix>
  2385. <messages>
  2386. <yesstr>y</yesstr>
  2387. <nostr>n</nostr>
  2388. </messages>
  2389. </posix>
  2390. </ldml>