123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
- <!-- Copyright © 1991-2013 Unicode, Inc.
- CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
- For terms of use, see http://www.unicode.org/copyright.html
- -->
- <ldml>
- <identity>
- <version number="$Revision: 9852 $"/>
- <generation date="$Date: 2014-02-28 23:57:43 -0600 (Fri, 28 Feb 2014) $"/>
- <language type="br"/>
- </identity>
- <localeDisplayNames>
- <languages>
- <language type="aa">afar</language>
- <language type="ab">abkhazeg</language>
- <language type="ach">acoli</language>
- <language type="ada">adangme</language>
- <language type="ady">adygeieg</language>
- <language type="ae">avesteg</language>
- <language type="af">afrikaans</language>
- <language type="afh">afrihili</language>
- <language type="agq">aghem</language>
- <language type="ak">akan</language>
- <language type="akk">akadeg</language>
- <language type="alt">altaieg ar Su</language>
- <language type="am">amhareg</language>
- <language type="an">aragoneg</language>
- <language type="ang">hensaozneg</language>
- <language type="ar">arabeg</language>
- <language type="arc">arameeg</language>
- <language type="arn">araoukaneg</language>
- <language type="arp">arapaho</language>
- <language type="arw">arawakeg</language>
- <language type="as">asameg</language>
- <language type="asa">asu</language>
- <language type="av">avar</language>
- <language type="awa">awadhi</language>
- <language type="ay">aymara</language>
- <language type="az">azeri</language>
- <language type="ba">bachkir</language>
- <language type="bal">baloutchi</language>
- <language type="ban">balineg</language>
- <language type="bas">basaa</language>
- <language type="be">belaruseg</language>
- <language type="bem">bemba</language>
- <language type="bez">bena</language>
- <language type="bg">bulgareg</language>
- <language type="bho">bhojpuri</language>
- <language type="bi">bislama</language>
- <language type="bik">bikol</language>
- <language type="bin">bini</language>
- <language type="bm">bambara</language>
- <language type="bn">bengali</language>
- <language type="bo">tibetaneg</language>
- <language type="br">brezhoneg</language>
- <language type="bra">braj</language>
- <language type="brx">bodo</language>
- <language type="bs">bosneg</language>
- <language type="bua">bouriat</language>
- <language type="bug">bugi</language>
- <language type="byn">blin</language>
- <language type="ca">katalaneg</language>
- <language type="cad">caddo</language>
- <language type="car">karibeg</language>
- <language type="ce">tchetcheneg</language>
- <language type="ceb">cebuano</language>
- <language type="ch">chamorru</language>
- <language type="chb">chibcha</language>
- <language type="chm">marieg</language>
- <language type="cho">choktaw</language>
- <language type="chp">chipewyan</language>
- <language type="chr">cherokee</language>
- <language type="chy">cheyenne</language>
- <language type="ckb">kurdeg sorani</language>
- <language type="co">korseg</language>
- <language type="cop">kopteg</language>
- <language type="cr">kri</language>
- <language type="crh">turkeg Krimea</language>
- <language type="cs">tchekeg</language>
- <language type="csb">kachoubeg</language>
- <language type="cu">slavoneg iliz</language>
- <language type="cv">tchouvatch</language>
- <language type="cy">kembraeg</language>
- <language type="da">daneg</language>
- <language type="dak">dakota</language>
- <language type="dar">dargwa</language>
- <language type="de">alamaneg</language>
- <language type="de_AT">alamaneg Aostria</language>
- <language type="de_CH">alamaneg uhel Suis</language>
- <language type="del">delaware</language>
- <language type="dgr">dogrib</language>
- <language type="din">dinka</language>
- <language type="doi">dogri</language>
- <language type="dsb">izelsorabeg</language>
- <language type="dv">divehi</language>
- <language type="dyu">dyula</language>
- <language type="dz">dzongkha</language>
- <language type="ebu">embu</language>
- <language type="ee">ewe</language>
- <language type="efi">efik</language>
- <language type="egy">henegipteg</language>
- <language type="eka">ekajuk</language>
- <language type="el">gresianeg</language>
- <language type="elx">elameg</language>
- <language type="en">saozneg</language>
- <language type="en_AU">saozneg Aostralia</language>
- <language type="en_CA">saozneg Kanada</language>
- <language type="en_GB">saozneg Breizh-Veur</language>
- <language type="en_US">saozneg S.U.</language>
- <language type="enm">krennsaozneg</language>
- <language type="eo">esperanteg</language>
- <language type="es">spagnoleg</language>
- <language type="es_419">spagnoleg Amerika latin</language>
- <language type="es_ES">spagnoleg Europa</language>
- <language type="et">estoneg</language>
- <language type="eu">euskareg</language>
- <language type="ewo">ewondo</language>
- <language type="fa">perseg</language>
- <language type="fan">fang</language>
- <language type="fat">fanti</language>
- <language type="fi">finneg</language>
- <language type="fil">filipineg</language>
- <language type="fj">fidjieg</language>
- <language type="fo">faeroeg</language>
- <language type="fon">fon</language>
- <language type="fr">galleg</language>
- <language type="fr_CA">galleg Kanada</language>
- <language type="fr_CH">galleg Suis</language>
- <language type="frm">krennc'halleg</language>
- <language type="fro">henc'halleg</language>
- <language type="frr">frizeg an Norzh</language>
- <language type="frs">frizeg ar Reter</language>
- <language type="fur">frioulaneg</language>
- <language type="fy">frizeg ar C'hornôg</language>
- <language type="ga">iwerzhoneg</language>
- <language type="gaa">ga</language>
- <language type="gay">gayo</language>
- <language type="gba">gbaya</language>
- <language type="gd">skoseg</language>
- <language type="gez">gezeg</language>
- <language type="gil">gilberteg</language>
- <language type="gl">galizeg</language>
- <language type="gn">guarani</language>
- <language type="gor">gorontalo</language>
- <language type="got">goteg</language>
- <language type="grb">grebo</language>
- <language type="grc">henc'hresianeg</language>
- <language type="gsw">alamaneg Suis</language>
- <language type="gu">gujarati</language>
- <language type="gv">manaveg</language>
- <language type="ha">haousa</language>
- <language type="hai">haida</language>
- <language type="haw">hawaieg</language>
- <language type="he">hebraeg</language>
- <language type="hi">hindi</language>
- <language type="hil">hiligaynon</language>
- <language type="hmn">hmong</language>
- <language type="ho">hiri motu</language>
- <language type="hr">kroateg</language>
- <language type="hsb">uhelsorabeg</language>
- <language type="ht">haitieg</language>
- <language type="hu">hungareg</language>
- <language type="hup">hupa</language>
- <language type="hy">armenianeg</language>
- <language type="hz">herero</language>
- <language type="ia">interlingua</language>
- <language type="iba">iban</language>
- <language type="ibb">ibibio</language>
- <language type="id">indonezeg</language>
- <language type="ie">interlingue</language>
- <language type="ig">igbo</language>
- <language type="ik">inupiaq</language>
- <language type="inh">ingoucheg</language>
- <language type="io">ido</language>
- <language type="is">islandeg</language>
- <language type="it">italianeg</language>
- <language type="iu">inuktitut</language>
- <language type="ja">japaneg</language>
- <language type="jpr">yuzev-perseg</language>
- <language type="jrb">yuzev-arabeg</language>
- <language type="jv">javaneg</language>
- <language type="ka">jorjianeg</language>
- <language type="kaa">karakalpak</language>
- <language type="kab">kabileg</language>
- <language type="kac">kachin</language>
- <language type="kam">kamba</language>
- <language type="kbd">kabardeg</language>
- <language type="kea">kabuverdianu</language>
- <language type="kg">kongo</language>
- <language type="kha">khasi</language>
- <language type="kho">khotaneg</language>
- <language type="ki">kikuyu</language>
- <language type="kj">kwanyama</language>
- <language type="kk">kazak</language>
- <language type="km">khmer</language>
- <language type="kmb">kimbundu</language>
- <language type="kn">kanareg</language>
- <language type="ko">koreaneg</language>
- <language type="kok">konkani</language>
- <language type="kos">kosrae</language>
- <language type="kpe">kpelle</language>
- <language type="kr">kanouri</language>
- <language type="krc">karatchay-balkar</language>
- <language type="kru">kurukh</language>
- <language type="ks">kashmiri</language>
- <language type="ku">kurdeg</language>
- <language type="kut">kutenai</language>
- <language type="kw">kerneveureg</language>
- <language type="ky">kirgiz</language>
- <language type="la">latin</language>
- <language type="lad">ladino</language>
- <language type="lah">lahnda</language>
- <language type="lam">lamba</language>
- <language type="lb">luksembourgeg</language>
- <language type="lez">lezgi</language>
- <language type="lg">ganda</language>
- <language type="li">limbourgeg</language>
- <language type="ln">lingala</language>
- <language type="lo">laoseg</language>
- <language type="lol">mongo</language>
- <language type="loz">lozi</language>
- <language type="lt">lituaneg</language>
- <language type="lu">luba-katanga</language>
- <language type="lua">luba-lulua</language>
- <language type="lui">luiseno</language>
- <language type="lun">lunda</language>
- <language type="luo">luo</language>
- <language type="lus">lushai</language>
- <language type="luy">luyia</language>
- <language type="lv">latvieg</language>
- <language type="mag">magahi</language>
- <language type="mai">maithili</language>
- <language type="mas">masai</language>
- <language type="mdf">moksha</language>
- <language type="mdr">mandar</language>
- <language type="men">mende</language>
- <language type="mfe">moriseg</language>
- <language type="mg">malgacheg</language>
- <language type="mga">krenniwerzhoneg</language>
- <language type="mh">marshall</language>
- <language type="mi">maori</language>
- <language type="mk">makedoneg</language>
- <language type="ml">malayalam</language>
- <language type="mn">mongoleg</language>
- <language type="mnc">manchou</language>
- <language type="mni">manipuri</language>
- <language type="moh">mohawk</language>
- <language type="mr">marathi</language>
- <language type="ms">malayseg</language>
- <language type="mt">malteg</language>
- <language type="mul">yezhoù lies</language>
- <language type="mus">muskogi</language>
- <language type="my">birmaneg</language>
- <language type="myv">erza</language>
- <language type="na">naurueg</language>
- <language type="nap">napolitaneg</language>
- <language type="nb">norvegeg bokmål</language>
- <language type="nd">ndebele an Norzh</language>
- <language type="ne">nepaleg</language>
- <language type="new">newari</language>
- <language type="ng">ndonga</language>
- <language type="nia">nias</language>
- <language type="niu">niue</language>
- <language type="nl">nederlandeg</language>
- <language type="nl_BE">flandrezeg</language>
- <language type="nn">norvegeg nynorsk</language>
- <language type="no">norvegeg</language>
- <language type="nog">nogay</language>
- <language type="nr">ndebele ar Su</language>
- <language type="nso">sotho an Norzh</language>
- <language type="nv">navac'ho</language>
- <language type="ny">nyanja</language>
- <language type="nym">nyamwezi</language>
- <language type="nyn">nyankole</language>
- <language type="nyo">nyoro</language>
- <language type="oc">okitaneg</language>
- <language type="oj">ojibwa</language>
- <language type="or">oriya</language>
- <language type="os">oseteg</language>
- <language type="osa">osage</language>
- <language type="pa">punjabi</language>
- <language type="pag">pangasinan</language>
- <language type="pal">pahlavi</language>
- <language type="pam">pampanga</language>
- <language type="pap">papiamento</language>
- <language type="pau">palau</language>
- <language type="peo">henberseg</language>
- <language type="phn">fenikianeg</language>
- <language type="pi">pali</language>
- <language type="pl">poloneg</language>
- <language type="pon">pohnpei</language>
- <language type="pro">henbrovañseg</language>
- <language type="ps">pachto</language>
- <language type="pt">portugaleg</language>
- <language type="pt_BR">portugaleg Brazil</language>
- <language type="pt_PT">portugaleg Europa</language>
- <language type="qu">kechuaeg</language>
- <language type="raj">rajasthani</language>
- <language type="rap">rapanui</language>
- <language type="rar">rarotonga</language>
- <language type="rm">romañcheg</language>
- <language type="rn">rundi</language>
- <language type="ro">roumaneg</language>
- <language type="ro_MD">moldoveg</language>
- <language type="rof">rombo</language>
- <language type="rom">romanieg</language>
- <language type="ru">rusianeg</language>
- <language type="rup">aroumaneg</language>
- <language type="rw">kinyarwanda</language>
- <language type="rwk">rwa</language>
- <language type="sa">sanskriteg</language>
- <language type="sad">sandawe</language>
- <language type="sah">yakouteg</language>
- <language type="sas">sasak</language>
- <language type="sat">santali</language>
- <language type="sc">sardeg</language>
- <language type="sco">skoteg</language>
- <language type="sd">sindhi</language>
- <language type="se">sámi an Norzh</language>
- <language type="sg">sango</language>
- <language type="sga">heniwerzhoneg</language>
- <language type="sh">serb-kroateg</language>
- <language type="shn">shan</language>
- <language type="si">singhaleg</language>
- <language type="sid">sidamo</language>
- <language type="sk">slovakeg</language>
- <language type="sl">sloveneg</language>
- <language type="sm">samoan</language>
- <language type="sma">sámi ar Su</language>
- <language type="smj">sámi Luleå</language>
- <language type="smn">sámi Inari</language>
- <language type="sms">sámi Skolt</language>
- <language type="sn">shona</language>
- <language type="snk">soninke</language>
- <language type="so">somali</language>
- <language type="sog">sogdieg</language>
- <language type="sq">albaneg</language>
- <language type="sr">serbeg</language>
- <language type="srr">serer</language>
- <language type="ss">swati</language>
- <language type="st">sotho ar Su</language>
- <language type="su">sundaneg</language>
- <language type="sux">sumereg</language>
- <language type="sv">svedeg</language>
- <language type="sw">swahili</language>
- <language type="swb">komoreg</language>
- <language type="syc">sirieg klasel</language>
- <language type="syr">sirieg</language>
- <language type="ta">tamileg</language>
- <language type="te">telougou</language>
- <language type="ter">tereno</language>
- <language type="tet">tetum</language>
- <language type="tg">tadjik</language>
- <language type="th">thai</language>
- <language type="ti">tigrigna</language>
- <language type="tig">tigreaneg</language>
- <language type="tiv">tiv</language>
- <language type="tk">turkmeneg</language>
- <language type="tkl">tokelau</language>
- <language type="tl">tagalog</language>
- <language type="tlh">klingon</language>
- <language type="tli">tinglit</language>
- <language type="tmh">tamacheg</language>
- <language type="tn">tswana</language>
- <language type="to">tonga</language>
- <language type="tog">nyasa tonga</language>
- <language type="tpi">tok pisin</language>
- <language type="tr">turkeg</language>
- <language type="ts">tsonga</language>
- <language type="tsi">tsimshian</language>
- <language type="tt">tatar</language>
- <language type="tum">tumbuka</language>
- <language type="tvl">tuvalu</language>
- <language type="tw">twi</language>
- <language type="ty">tahitianeg</language>
- <language type="tyv">touva</language>
- <language type="udm">oudmourteg</language>
- <language type="ug">ouigoureg</language>
- <language type="uga">ougariteg</language>
- <language type="uk">ukraineg</language>
- <language type="umb">umbundu</language>
- <language type="und">yezh dianav</language>
- <language type="ur">ourdou</language>
- <language type="uz">ouzbekeg</language>
- <language type="vai">vai</language>
- <language type="ve">venda</language>
- <language type="vi">vietnameg</language>
- <language type="vo">volapük</language>
- <language type="vot">votyakeg</language>
- <language type="wa">walloneg</language>
- <language type="wae">walser</language>
- <language type="wal">walamo</language>
- <language type="war">waray</language>
- <language type="was">washo</language>
- <language type="wo">wolof</language>
- <language type="xal">kalmouk</language>
- <language type="xh">xhosa</language>
- <language type="yao">yao</language>
- <language type="yap">yapeg</language>
- <language type="yi">yiddish</language>
- <language type="yo">yorouba</language>
- <language type="yue">kantoneg</language>
- <language type="za">zhuang</language>
- <language type="zap">zapoteg</language>
- <language type="zen">zenaga</language>
- <language type="zh">sinaeg</language>
- <language type="zh_Hans">sinaeg eeunaet</language>
- <language type="zh_Hant">sinaeg hengounel</language>
- <language type="zu">zouloueg</language>
- <language type="zun">zuni</language>
- <language type="zxx">diyezh</language>
- </languages>
- <scripts>
- <script type="Arab">arabek</script>
- <script type="Armi">arameek impalaerel</script>
- <script type="Armn">armenianek</script>
- <script type="Avst">avestek</script>
- <script type="Bali">balinek</script>
- <script type="Beng">bengali</script>
- <script type="Bopo">bopomofo</script>
- <script type="Brai">Braille</script>
- <script type="Copt">koptek</script>
- <script type="Cyrl">kirillek</script>
- <script type="Deva">devanagari</script>
- <script type="Egyp">hieroglifoù egiptek</script>
- <script type="Ethi">etiopek</script>
- <script type="Geor">jorjianek</script>
- <script type="Glag">glagolitek</script>
- <script type="Goth">gotek</script>
- <script type="Grek">gresianek</script>
- <script type="Gujr">gujarati</script>
- <script type="Guru">gurmukhi</script>
- <script type="Hang">hangeul</script>
- <script type="Hani">han</script>
- <script type="Hans">han eeunaet</script>
- <script type="Hant">han hengounel</script>
- <script type="Hebr">hebraek</script>
- <script type="Hira">hiragana</script>
- <script type="Ital">henitalek</script>
- <script type="Java">javanek</script>
- <script type="Jpan">japanek</script>
- <script type="Kana">katakana</script>
- <script type="Khmr">khmer</script>
- <script type="Knda">kannada</script>
- <script type="Kore">koreanek</script>
- <script type="Laoo">laosek</script>
- <script type="Latg">latin gouezelek</script>
- <script type="Latn">latin</script>
- <script type="Maya">hieroglifoù mayaek</script>
- <script type="Mlym">malayalam</script>
- <script type="Mong">mongolek</script>
- <script type="Mymr">myanmar</script>
- <script type="Ogam">ogam</script>
- <script type="Orya">oriya</script>
- <script type="Runr">runek</script>
- <script type="Sinh">singhalek</script>
- <script type="Sund">sundanek</script>
- <script type="Syrc">siriek</script>
- <script type="Syrj">siriek ar c'hornôg</script>
- <script type="Syrn">siriek ar reter</script>
- <script type="Taml">tamilek</script>
- <script type="Telu">telougou</script>
- <script type="Tglg">tagalog</script>
- <script type="Thaa">thaana</script>
- <script type="Thai">thai</script>
- <script type="Tibt">tibetanek</script>
- <script type="Vaii">vai</script>
- <script type="Xpeo">persek kozh</script>
- <script type="Zsym">arouezioù</script>
- <script type="Zxxx">anskrivet</script>
- <script type="Zyyy">boutin</script>
- <script type="Zzzz">skritur dianav</script>
- </scripts>
- <territories>
- <territory type="001">Bed</territory>
- <territory type="002">Afrika</territory>
- <territory type="003">Norzhamerika</territory>
- <territory type="005">Suamerika</territory>
- <territory type="009">Oseania</territory>
- <territory type="011">Afrika ar Cʼhornôg</territory>
- <territory type="013">Kreizamerika</territory>
- <territory type="014">Afrika ar Reter</territory>
- <territory type="015">Afrika an Norzh</territory>
- <territory type="017">Afrika ar Cʼhreiz</territory>
- <territory type="018">Afrika ar Su</territory>
- <territory type="019">Amerikaoù</territory>
- <territory type="021">Amerika an Norzh</territory>
- <territory type="029">Karib</territory>
- <territory type="030">Azia ar Reter</territory>
- <territory type="034">Azia ar Su</territory>
- <territory type="035">Azia ar Gevred</territory>
- <territory type="039">Europa ar Su</territory>
- <territory type="053">Aostralazia</territory>
- <territory type="054">Melanezia</territory>
- <territory type="057">Rannved Mikronezia</territory>
- <territory type="061">Polinezia</territory>
- <territory type="142">Azia</territory>
- <territory type="143">Azia ar Cʼhreiz</territory>
- <territory type="145">Azia ar Cʼhornôg</territory>
- <territory type="150">Europa</territory>
- <territory type="151">Europa ar Reter</territory>
- <territory type="154">Europa an Norzh</territory>
- <territory type="155">Europa ar Cʼhornôg</territory>
- <territory type="419">Amerika Latin</territory>
- <territory type="AC">Enez Ascension</territory>
- <territory type="AD">Andorra</territory>
- <territory type="AE">Emirelezhioù Arab Unanet</territory>
- <territory type="AF">Afghanistan</territory>
- <territory type="AG">Antigua ha Barbuda</territory>
- <territory type="AI">Anguilla</territory>
- <territory type="AL">Albania</territory>
- <territory type="AM">Armenia</territory>
- <territory type="AN">Antilhez Nederlandat</territory>
- <territory type="AO">Angola</territory>
- <territory type="AQ">Antarktika</territory>
- <territory type="AR">Arcʼhantina</territory>
- <territory type="AS">Samoa Amerikan</territory>
- <territory type="AT">Aostria</territory>
- <territory type="AU">Aostralia</territory>
- <territory type="AW">Aruba</territory>
- <territory type="AX">Inizi Åland</territory>
- <territory type="AZ">Azerbaidjan</territory>
- <territory type="BA">Bosnia ha Herzegovina</territory>
- <territory type="BB">Barbados</territory>
- <territory type="BD">Bangladesh</territory>
- <territory type="BE">Belgia</territory>
- <territory type="BF">Burkina Faso</territory>
- <territory type="BG">Bulgaria</territory>
- <territory type="BH">Bahrein</territory>
- <territory type="BI">Burundi</territory>
- <territory type="BJ">Benin</territory>
- <territory type="BL">Saint Barthélemy</territory>
- <territory type="BM">Bermuda</territory>
- <territory type="BN">Brunei</territory>
- <territory type="BO">Bolivia</territory>
- <territory type="BQ">Nederlandat Karib</territory>
- <territory type="BR">Brazil</territory>
- <territory type="BS">Bahamas</territory>
- <territory type="BT">Bhoutan</territory>
- <territory type="BV">Enez Bouvet</territory>
- <territory type="BW">Botswana</territory>
- <territory type="BY">Belarus</territory>
- <territory type="BZ">Belize</territory>
- <territory type="CA">Kanada</territory>
- <territory type="CC">Inizi Kokoz</territory>
- <territory type="CD">Kongo - Kinshasa</territory>
- <territory type="CD" alt="variant">Kongo (RDK)</territory>
- <territory type="CF">Republik Kreizafrikan</territory>
- <territory type="CG">Kongo - Brazzaville</territory>
- <territory type="CG" alt="variant">Kongo (Republik)</territory>
- <territory type="CH">Suis</territory>
- <territory type="CI">Aod an Olifant</territory>
- <territory type="CI" alt="variant">Aod Olifant</territory>
- <territory type="CK">Inizi Cook</territory>
- <territory type="CL">Chile</territory>
- <territory type="CM">Kameroun</territory>
- <territory type="CN">Sina</territory>
- <territory type="CO">Kolombia</territory>
- <territory type="CP">Enez Clipperton</territory>
- <territory type="CR">Costa Rica</territory>
- <territory type="CU">Kuba</territory>
- <territory type="CV">Kab Glas</territory>
- <territory type="CW">Curaçao</territory>
- <territory type="CX">Enez Christmas</territory>
- <territory type="CY">Kiprenez</territory>
- <territory type="CZ">Republik Tchek</territory>
- <territory type="DE">Alamagn</territory>
- <territory type="DG">Diego Garcia</territory>
- <territory type="DJ">Djibouti</territory>
- <territory type="DK">Danmark</territory>
- <territory type="DM">Dominica</territory>
- <territory type="DO">Republik Dominikan</territory>
- <territory type="DZ">Aljeria</territory>
- <territory type="EA">Ceuta ha Melilla</territory>
- <territory type="EC">Ecuador</territory>
- <territory type="EE">Estonia</territory>
- <territory type="EG">Egipt</territory>
- <territory type="EH">Sahara ar Cʼhornôg</territory>
- <territory type="ER">Eritrea</territory>
- <territory type="ES">Spagn</territory>
- <territory type="ET">Etiopia</territory>
- <territory type="EU">Unaniezh Europa</territory>
- <territory type="FI">Finland</territory>
- <territory type="FJ">Fidji</territory>
- <territory type="FK">Inizi Falkland</territory>
- <territory type="FK" alt="variant">Inizi Falkland (Inizi Maloù)</territory>
- <territory type="FM">Mikronezia</territory>
- <territory type="FO">Inizi Faero</territory>
- <territory type="FR">Frañs</territory>
- <territory type="GA">Gabon</territory>
- <territory type="GB">Rouantelezh-Unanet</territory>
- <territory type="GD">Grenada</territory>
- <territory type="GE">Jorjia</territory>
- <territory type="GF">Gwiana cʼhall</territory>
- <territory type="GG">Gwernenez</territory>
- <territory type="GH">Ghana</territory>
- <territory type="GI">Jibraltar</territory>
- <territory type="GL">Greunland</territory>
- <territory type="GM">Gambia</territory>
- <territory type="GN">Ginea</territory>
- <territory type="GP">Gwadeloup</territory>
- <territory type="GQ">Ginea ar Cʼheheder</territory>
- <territory type="GR">Gres</territory>
- <territory type="GS">Inizi Georgia ar Su hag Inizi Sandwich ar Su</territory>
- <territory type="GT">Guatemala</territory>
- <territory type="GU">Guam</territory>
- <territory type="GW">Ginea-Bissau</territory>
- <territory type="GY">Guyana</territory>
- <territory type="HK">Hong Kong RMD Sina</territory>
- <territory type="HK" alt="short">Hong Kong</territory>
- <territory type="HM">Inizi Heard ha McDonald</territory>
- <territory type="HN">Honduras</territory>
- <territory type="HR">Kroatia</territory>
- <territory type="HT">Haiti</territory>
- <territory type="HU">Hungaria</territory>
- <territory type="IC">Inizi Kanariez</territory>
- <territory type="ID">Indonezia</territory>
- <territory type="IE">Iwerzhon</territory>
- <territory type="IL">Israel</territory>
- <territory type="IM">Enez Vanav</territory>
- <territory type="IN">India</territory>
- <territory type="IO">Tiriad breizhveurat Meurvor Indez</territory>
- <territory type="IQ">Iraq</territory>
- <territory type="IR">Iran</territory>
- <territory type="IS">Island</territory>
- <territory type="IT">Italia</territory>
- <territory type="JE">Jerzenez</territory>
- <territory type="JM">Jamaika</territory>
- <territory type="JO">Jordania</territory>
- <territory type="JP">Japan</territory>
- <territory type="KE">Kenya</territory>
- <territory type="KG">Kyrgyzstan</territory>
- <territory type="KH">Kambodja</territory>
- <territory type="KI">Kiribati</territory>
- <territory type="KM">Komorez</territory>
- <territory type="KN">Saint Kitts ha Nevis</territory>
- <territory type="KP">Korea an Norzh</territory>
- <territory type="KR">Korea ar Su</territory>
- <territory type="KW">Koweit</territory>
- <territory type="KY">Inizi Cayman</territory>
- <territory type="KZ">Kazakstan</territory>
- <territory type="LA">Laos</territory>
- <territory type="LB">Liban</territory>
- <territory type="LC">Saint Lucia</territory>
- <territory type="LI">Liechtenstein</territory>
- <territory type="LK">Sri Lanka</territory>
- <territory type="LR">Liberia</territory>
- <territory type="LS">Lesotho</territory>
- <territory type="LT">Lituania</territory>
- <territory type="LU">Luksembourg</territory>
- <territory type="LV">Latvia</territory>
- <territory type="LY">Libia</territory>
- <territory type="MA">Maroko</territory>
- <territory type="MC">Monaco</territory>
- <territory type="MD">Moldova</territory>
- <territory type="ME">Montenegro</territory>
- <territory type="MF">Saint Martin</territory>
- <territory type="MG">Madagaskar</territory>
- <territory type="MH">Inizi Marshall</territory>
- <territory type="MK">Makedonia</territory>
- <territory type="MK" alt="variant">Makedonia (RYKM)</territory>
- <territory type="ML">Mali</territory>
- <territory type="MM">Myanmar (Birmania)</territory>
- <territory type="MN">Mongolia</territory>
- <territory type="MO">Macau RMD Sina</territory>
- <territory type="MO" alt="short">Macau</territory>
- <territory type="MP">Inizi Mariana an Norzh</territory>
- <territory type="MQ">Martinik</territory>
- <territory type="MR">Maouritania</territory>
- <territory type="MS">Montserrat</territory>
- <territory type="MT">Malta</territory>
- <territory type="MU">Moris</territory>
- <territory type="MV">Maldivez</territory>
- <territory type="MW">Malawi</territory>
- <territory type="MX">Mecʼhiko</territory>
- <territory type="MY">Malaysia</territory>
- <territory type="MZ">Mozambik</territory>
- <territory type="NA">Namibia</territory>
- <territory type="NC">Kaledonia Nevez</territory>
- <territory type="NE">Niger</territory>
- <territory type="NF">Enez Norfolk</territory>
- <territory type="NG">Nigeria</territory>
- <territory type="NI">Nicaragua</territory>
- <territory type="NL">Izelvroioù</territory>
- <territory type="NO">Norvegia</territory>
- <territory type="NP">Nepal</territory>
- <territory type="NR">Nauru</territory>
- <territory type="NU">Niue</territory>
- <territory type="NZ">Zeland-Nevez</territory>
- <territory type="OM">Oman</territory>
- <territory type="PA">Panamá</territory>
- <territory type="PE">Perou</territory>
- <territory type="PF">Polinezia cʼhall</territory>
- <territory type="PG">Papoua Ginea-Nevez</territory>
- <territory type="PH">Filipinez</territory>
- <territory type="PK">Pakistan</territory>
- <territory type="PL">Polonia</territory>
- <territory type="PM">Sant-Pêr-ha-Mikelon</territory>
- <territory type="PN">Enez Pitcairn</territory>
- <territory type="PR">Puerto Rico</territory>
- <territory type="PS">Tiriadoù Palestina</territory>
- <territory type="PT">Portugal</territory>
- <territory type="PW">Palau</territory>
- <territory type="PY">Paraguay</territory>
- <territory type="QA">Qatar</territory>
- <territory type="QO">Oseania diabell</territory>
- <territory type="RE">Reünion</territory>
- <territory type="RO">Roumania</territory>
- <territory type="RS">Serbia</territory>
- <territory type="RU">Rusia</territory>
- <territory type="RW">Rwanda</territory>
- <territory type="SA">Arabia Saoudat</territory>
- <territory type="SB">Salomon</territory>
- <territory type="SC">Sechelez</territory>
- <territory type="SD">Soudan</territory>
- <territory type="SE">Sveden</territory>
- <territory type="SG">Singapour</territory>
- <territory type="SH">Saint Helena</territory>
- <territory type="SI">Slovenia</territory>
- <territory type="SJ">Svalbard</territory>
- <territory type="SK">Slovakia</territory>
- <territory type="SL">Sierra Leone</territory>
- <territory type="SM">San Marino</territory>
- <territory type="SN">Senegal</territory>
- <territory type="SO">Somalia</territory>
- <territory type="SR">Surinam</territory>
- <territory type="SS">Su Soudan</territory>
- <territory type="ST">São Tomé ha Príncipe</territory>
- <territory type="SV">Salvador</territory>
- <territory type="SX">Sint Maarten</territory>
- <territory type="SY">Siria</territory>
- <territory type="SZ">Swaziland</territory>
- <territory type="TA">Tristan da Cunha</territory>
- <territory type="TC">Inizi Turks ha Caicos</territory>
- <territory type="TD">Tchad</territory>
- <territory type="TF">Douaroù aostral Frañs</territory>
- <territory type="TG">Togo</territory>
- <territory type="TH">Thailand</territory>
- <territory type="TJ">Tadjikistan</territory>
- <territory type="TK">Tokelau</territory>
- <territory type="TL">Timor-Leste</territory>
- <territory type="TL" alt="variant">Timor ar Reter</territory>
- <territory type="TM">Turkmenistan</territory>
- <territory type="TN">Tunizia</territory>
- <territory type="TO">Tonga</territory>
- <territory type="TR">Turkia</territory>
- <territory type="TT">Trinidad ha Tobago</territory>
- <territory type="TV">Tuvalu</territory>
- <territory type="TW">Taiwan</territory>
- <territory type="TZ">Tanzania</territory>
- <territory type="UA">Ukraina</territory>
- <territory type="UG">Ouganda</territory>
- <territory type="UM">Inizi diabell ar Stadoù-Unanet</territory>
- <territory type="US">Stadoù-Unanet</territory>
- <territory type="UY">Uruguay</territory>
- <territory type="UZ">Ouzbekistan</territory>
- <territory type="VA">Vatikan</territory>
- <territory type="VC">Sant Visant hag ar Grenadinez</territory>
- <territory type="VE">Venezuela</territory>
- <territory type="VG">Inizi Gwercʼh Breizh-Veur</territory>
- <territory type="VI">Inizi Gwercʼh ar Stadoù-Unanet</territory>
- <territory type="VN">Viêt Nam</territory>
- <territory type="VU">Vanuatu</territory>
- <territory type="WF">Wallis ha Futuna</territory>
- <territory type="WS">Samoa</territory>
- <territory type="YE">Yemen</territory>
- <territory type="YT">Mayotte</territory>
- <territory type="ZA">Suafrika</territory>
- <territory type="ZM">Zambia</territory>
- <territory type="ZW">Zimbabwe</territory>
- <territory type="ZZ">Rannved dianav</territory>
- </territories>
- <variants>
- <variant type="1901">reizhskrivadur alamanek hengounel</variant>
- <variant type="1994">reizhskrivadur resianek skoueriekaet</variant>
- <variant type="1996">reizhskrivadur alamanek 1996</variant>
- <variant type="1606NICT">krenncʼhalleg</variant>
- <variant type="1694ACAD">galleg rakvodern</variant>
- <variant type="1959ACAD">belaruseg akademek</variant>
- <variant type="ALALC97">romanekadur ALA-LC 1997</variant>
- <variant type="ALUKU">rannyezh aloukou</variant>
- <variant type="AREVELA">armenianeg ar Reter</variant>
- <variant type="AREVMDA">armenianeg ar Cʼhornôg</variant>
- <variant type="BAKU1926">lizherenneg latin turkek unvan</variant>
- <variant type="BAUDDHA">sanskriteg hiron boudaat</variant>
- <variant type="BISCAYAN">rannyezh euskarek Bizkaia</variant>
- <variant type="BISKE">rannyezh San Giorgio/Bila</variant>
- <variant type="BOONT">boontling</variant>
- <variant type="FONIPA">lizherenneg fonetek etrebroadel</variant>
- <variant type="FONUPA">lizherenneg fonetek ouralek</variant>
- <variant type="FONXSAMP">treuzskrivadur X-SAMPA</variant>
- <variant type="HEPBURN">romanekadur Hepburn</variant>
- <variant type="HOGNORSK">uhelnorvegeg</variant>
- <variant type="ITIHASA">sanskriteg itihâsa</variant>
- <variant type="JAUER">rannyezh romañchek Jauer</variant>
- <variant type="JYUTPING">romanekadur kantonek Jyutping</variant>
- <variant type="KKCOR">kerneveureg kumun</variant>
- <variant type="LAUKIKA">sanskriteg klasel</variant>
- <variant type="LIPAW">rannyezh resianek Lipovaz</variant>
- <variant type="LUNA1918">reizhskrivadur rusianek goude 1917</variant>
- <variant type="MONOTON">gresianeg untonel</variant>
- <variant type="NDYUKA">rannyezh Ndyuka</variant>
- <variant type="NEDIS">rannyezh Natisone</variant>
- <variant type="NJIVA">rannyezh Gniva/Njiva</variant>
- <variant type="OSOJS">rannyezh Oseacco/Osojane</variant>
- <variant type="PAMAKA">rannyezh Pamaka</variant>
- <variant type="PETR1708">reizhskrivadur rusianek 1708 Pêr I</variant>
- <variant type="PINYIN">romanekadur pinyin</variant>
- <variant type="POLYTON">gresianeg liestonel</variant>
- <variant type="PUTER">rannyezh romañchek Puter</variant>
- <variant type="REVISED">reizhskrivadur reizhet</variant>
- <variant type="ROZAJ">resianeg</variant>
- <variant type="RUMGR">romañcheg Grischun</variant>
- <variant type="SAAHO">saho</variant>
- <variant type="SCOTLAND">saozneg standart skos</variant>
- <variant type="SCOUSE">scouse</variant>
- <variant type="SOLBA">rannyezh Stolvizza/Solbica</variant>
- <variant type="SURMIRAN">rannyezh romañchek surmiran</variant>
- <variant type="SURSILV">rannyezh romañchek sursilvan</variant>
- <variant type="SUTSILV">rannyezh romañchek sutsilvan</variant>
- <variant type="TARASK">belaruseg Taraskievica</variant>
- <variant type="UCCOR">kerneveureg unvan</variant>
- <variant type="UCRCOR">kerneveureg unvan reizhet</variant>
- <variant type="ULSTER">rannyezh skotek Ulad</variant>
- <variant type="VAIDIKA">sanskriteg vedek</variant>
- <variant type="VALENCIA">valensianeg</variant>
- <variant type="VALLADER">rannyezh romañchek Vallader</variant>
- <variant type="WADEGILE">romanekadur Wade-Giles</variant>
- </variants>
- <keys>
- <key type="calendar">deiziadur</key>
- <key type="collation">doare rummañ</key>
- <key type="currency">moneiz</key>
- <key type="numbers">niveroù</key>
- </keys>
- <types>
- <type type="arab" key="numbers">sifroù arabek indian</type>
- <type type="arabext" key="numbers">sifroù arabek indian astennet</type>
- <type type="armn" key="numbers">niveroù armenianek</type>
- <type type="armnlow" key="numbers">niveroù armenianek bihan</type>
- <type type="bali" key="numbers">sifroù balinek</type>
- <type type="beng" key="numbers">sifroù bengali</type>
- <type type="big5han" key="collation">urzh rummañ sinaek hengounel - Big5</type>
- <type type="buddhist" key="calendar">deiziadur boudaat</type>
- <type type="chinese" key="calendar">deiziadur sinaat</type>
- <type type="coptic" key="calendar">deiziadur kopt</type>
- <type type="deva" key="numbers">sifroù devanagari</type>
- <type type="dictionary" key="collation">urzh rummañ ar geriadur</type>
- <type type="ducet" key="collation">urzh rummañ Unicode dre ziouer</type>
- <type type="ethi" key="numbers">niveroù etiopiat</type>
- <type type="ethiopic" key="calendar">deiziadur etiopiat</type>
- <type type="ethiopic-amete-alem" key="calendar">deiziadur etiopiat Amete Alem</type>
- <type type="fullwide" key="numbers">sifroù led plaen</type>
- <type type="gb2312han" key="collation">urzh rummañ sinaek eeunaet - GB2312</type>
- <type type="geor" key="numbers">niveroù jorjianek</type>
- <type type="gregorian" key="calendar">deiziadur gregorian</type>
- <type type="grek" key="numbers">niveroù gresianek</type>
- <type type="greklow" key="numbers">niveroù gresianek bihan</type>
- <type type="gujr" key="numbers">sifroù gujarati</type>
- <type type="guru" key="numbers">sifroù gurmukhi</type>
- <type type="hanidec" key="numbers">niveroù sinaek dekvedennek</type>
- <type type="hans" key="numbers">niveroù sinaek eeunaet</type>
- <type type="hansfin" key="numbers">niveroù sinaek eeunaet an arcʼhant</type>
- <type type="hant" key="numbers">niveroù sinaek hengounel</type>
- <type type="hantfin" key="numbers">niveroù sinaek hengounel an arcʼhant</type>
- <type type="hebr" key="numbers">niveroù hebraek</type>
- <type type="hebrew" key="calendar">deiziadur hebraek</type>
- <type type="indian" key="calendar">deiziadur indian</type>
- <type type="islamic" key="calendar">deiziadur islamek</type>
- <type type="islamic-civil" key="calendar">deiziadur islamek keodedel</type>
- <type type="japanese" key="calendar">deiziadur japanat</type>
- <type type="java" key="numbers">sifroù javanek</type>
- <type type="jpan" key="numbers">niveroù japanek</type>
- <type type="jpanfin" key="numbers">niveroù japanek an arcʼhant</type>
- <type type="khmr" key="numbers">sifroù khmer</type>
- <type type="knda" key="numbers">sifroù kanarek</type>
- <type type="laoo" key="numbers">sifroù laosek</type>
- <type type="latn" key="numbers">sifroù arabek ar Cʼhornôg</type>
- <type type="mlym" key="numbers">sifroù malayalam</type>
- <type type="mong" key="numbers">sifroù mongolek</type>
- <type type="mymr" key="numbers">sifroù myanmar</type>
- <type type="mymrshan" key="numbers">sifroù shan Myanmar</type>
- <type type="orya" key="numbers">sifroù oriya</type>
- <type type="persian" key="calendar">deiziadur persek</type>
- <type type="phonebook" key="collation">urzh rummañ al levr-pellgomz</type>
- <type type="pinyin" key="collation">urzh rummañ pinyin</type>
- <type type="reformed" key="collation">urzh rummañ adreizhet</type>
- <type type="roc" key="calendar">deiziadur Republik Sina</type>
- <type type="roman" key="numbers">niveroù roman</type>
- <type type="romanlow" key="numbers">niveroù roman bihan</type>
- <type type="search" key="collation">enklask hollek</type>
- <type type="stroke" key="collation">urzh rummañ an tresoù</type>
- <type type="sund" key="numbers">sifroù sundanek</type>
- <type type="taml" key="numbers">niveroù tamilek hengounel</type>
- <type type="tamldec" key="numbers">sifroù tamilek</type>
- <type type="telu" key="numbers">sifroù telougou</type>
- <type type="thai" key="numbers">sifroù thai</type>
- <type type="tibt" key="numbers">sifroù tibetan</type>
- <type type="traditional" key="collation">urzh rummañ hengounel</type>
- <type type="unihan" key="collation">urzh rummañ UniHan</type>
- <type type="vaii" key="numbers">sifroù vai</type>
- </types>
- <measurementSystemNames>
- <measurementSystemName type="metric">metrek</measurementSystemName>
- <measurementSystemName type="UK">RU</measurementSystemName>
- <measurementSystemName type="US">SU</measurementSystemName>
- </measurementSystemNames>
- </localeDisplayNames>
- <characters>
- <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>
- <exemplarCharacters type="auxiliary">[á à ă â å ä ã ā æ c ç é è ĕ ë ē í ì ĭ î ï ī ó ò ŏ ô ö ø ō œ q ú ŭ û ü ū ÿ]</exemplarCharacters>
- <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>
- </characters>
- <delimiters>
- <quotationStart>«</quotationStart>
- <quotationEnd>»</quotationEnd>
- <alternateQuotationStart>‹</alternateQuotationStart>
- <alternateQuotationEnd>›</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">Gen</month>
- <month type="2">Cʼhwe</month>
- <month type="3">Meur</month>
- <month type="4">Ebr</month>
- <month type="5">Mae</month>
- <month type="6">Mezh</month>
- <month type="7">Goue</month>
- <month type="8">Eost</month>
- <month type="9">Gwen</month>
- <month type="10">Here</month>
- <month type="11">Du</month>
- <month type="12">Ker</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">Genver</month>
- <month type="2">Cʼhwevrer</month>
- <month type="3">Meurzh</month>
- <month type="4">Ebrel</month>
- <month type="5">Mae</month>
- <month type="6">Mezheven</month>
- <month type="7">Gouere</month>
- <month type="8">Eost</month>
- <month type="9">Gwengolo</month>
- <month type="10">Here</month>
- <month type="11">Du</month>
- <month type="12">Kerzu</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">Gen</month>
- <month type="2">Cʼhwe</month>
- <month type="3">Meur</month>
- <month type="4">Ebr</month>
- <month type="5">Mae</month>
- <month type="6">Mezh</month>
- <month type="7">Goue</month>
- <month type="8">Eost</month>
- <month type="9">Gwen</month>
- <month type="10">Here</month>
- <month type="11">Du</month>
- <month type="12">Ker</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">Genver</month>
- <month type="2">Cʼhwevrer</month>
- <month type="3">Meurzh</month>
- <month type="4">Ebrel</month>
- <month type="5">Mae</month>
- <month type="6">Mezheven</month>
- <month type="7">Gouere</month>
- <month type="8">Eost</month>
- <month type="9">Gwengolo</month>
- <month type="10">Here</month>
- <month type="11">Du</month>
- <month type="12">Kerzu</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">sul</day>
- <day type="mon">lun</day>
- <day type="tue">meu.</day>
- <day type="wed">mer.</day>
- <day type="thu">yaou</day>
- <day type="fri">gwe.</day>
- <day type="sat">sad.</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">su</day>
- <day type="mon">lu</day>
- <day type="tue">mz</day>
- <day type="wed">mc</day>
- <day type="thu">ya</day>
- <day type="fri">gw</day>
- <day type="sat">sa</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">Sul</day>
- <day type="mon">Lun</day>
- <day type="tue">Meurzh</day>
- <day type="wed">Mercʼher</day>
- <day type="thu">Yaou</day>
- <day type="fri">Gwener</day>
- <day type="sat">Sadorn</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="abbreviated">
- <day type="sun">sul</day>
- <day type="mon">lun</day>
- <day type="tue">meu.</day>
- <day type="wed">mer.</day>
- <day type="thu">yaou</day>
- <day type="fri">gwe.</day>
- <day type="sat">sad.</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">su</day>
- <day type="mon">lu</day>
- <day type="tue">mz</day>
- <day type="wed">mc</day>
- <day type="thu">ya</day>
- <day type="fri">gw</day>
- <day type="sat">sa</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">Sul</day>
- <day type="mon">Lun</day>
- <day type="tue">Meurzh</day>
- <day type="wed">Mercʼher</day>
- <day type="thu">Yaou</day>
- <day type="fri">Gwener</day>
- <day type="sat">Sadorn</day>
- </dayWidth>
- </dayContext>
- </days>
- </calendar>
- </calendars>
- <fields>
- <field type="month">
- <displayName>miz</displayName>
- </field>
- <field type="week">
- <displayName>sizhun</displayName>
- </field>
- <field type="day">
- <relative type="-2">dercʼhent-decʼh</relative>
- <relative type="-1">decʼh</relative>
- <relative type="0">hiziv</relative>
- <relative type="1">warcʼhoazh</relative>
- </field>
- <field type="hour">
- <displayName>eur</displayName>
- </field>
- <field type="minute">
- <displayName>munut</displayName>
- </field>
- <field type="second">
- <displayName>eilenn</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <zone type="Etc/Unknown">
- <exemplarCity>kêr dianav</exemplarCity>
- </zone>
- <zone type="Asia/Kabul">
- <exemplarCity>Kaboul</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>Tiranë</exemplarCity>
- </zone>
- <zone type="Europe/Mariehamn">
- <exemplarCity>Marjehamn</exemplarCity>
- </zone>
- <zone type="Asia/Baku">
- <exemplarCity>Bakı</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>Brusel</exemplarCity>
- </zone>
- <zone type="Asia/Bahrain">
- <exemplarCity>Bahrein</exemplarCity>
- </zone>
- <zone type="America/Belem">
- <exemplarCity>Belém</exemplarCity>
- </zone>
- <zone type="America/Sao_Paulo">
- <exemplarCity>São Paulo</exemplarCity>
- </zone>
- <zone type="Europe/Minsk">
- <exemplarCity>Mensk</exemplarCity>
- </zone>
- <zone type="America/St_Johns">
- <exemplarCity>Saint John's</exemplarCity>
- </zone>
- <zone type="Indian/Cocos">
- <exemplarCity>Kokoz</exemplarCity>
- </zone>
- <zone type="Asia/Urumqi">
- <exemplarCity>Ürümqi</exemplarCity>
- </zone>
- <zone type="America/Bogota">
- <exemplarCity>Bogotá</exemplarCity>
- </zone>
- <zone type="America/Havana">
- <exemplarCity>La Habana</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity>Kab Glas</exemplarCity>
- </zone>
- <zone type="Asia/Nicosia">
- <exemplarCity>Levkosía</exemplarCity>
- </zone>
- <zone type="Europe/Prague">
- <exemplarCity>Praha</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>Kopenhagen</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity>Aljer</exemplarCity>
- </zone>
- <zone type="Pacific/Galapagos">
- <exemplarCity>Galápagos</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity>Kaero</exemplarCity>
- </zone>
- <zone type="Africa/El_Aaiun">
- <exemplarCity>La'Youn</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>Kanariez</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>Adis Abeba</exemplarCity>
- </zone>
- <zone type="Pacific/Fiji">
- <exemplarCity>Fidji</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity>Faero</exemplarCity>
- </zone>
- <zone type="Europe/Paris">
- <exemplarCity>Pariz</exemplarCity>
- </zone>
- <zone type="Europe/Guernsey">
- <exemplarCity>Gwernenez</exemplarCity>
- </zone>
- <zone type="Europe/Gibraltar">
- <exemplarCity>Jibraltar</exemplarCity>
- </zone>
- <zone type="America/Thule">
- <exemplarCity>Qânâq</exemplarCity>
- </zone>
- <zone type="America/Guadeloupe">
- <exemplarCity>Gwadeloup</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>Aten</exemplarCity>
- </zone>
- <zone type="Europe/Dublin">
- <exemplarCity>Dulenn</exemplarCity>
- </zone>
- <zone type="Asia/Jerusalem">
- <exemplarCity>Jeruzalem</exemplarCity>
- </zone>
- <zone type="Europe/Isle_of_Man">
- <exemplarCity>Manav</exemplarCity>
- </zone>
- <zone type="Atlantic/Reykjavik">
- <exemplarCity>Reykjavík</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>Roma</exemplarCity>
- </zone>
- <zone type="Europe/Jersey">
- <exemplarCity>Jerzenez</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity>Jamaika</exemplarCity>
- </zone>
- <zone type="Asia/Phnom_Penh">
- <exemplarCity>Phnum Pénh</exemplarCity>
- </zone>
- <zone type="Indian/Comoro">
- <exemplarCity>Komorez</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>Saint Kitts</exemplarCity>
- </zone>
- <zone type="Asia/Pyongyang">
- <exemplarCity>P'yongyang</exemplarCity>
- </zone>
- <zone type="Asia/Kuwait">
- <exemplarCity>Koweit</exemplarCity>
- </zone>
- <zone type="Asia/Vientiane">
- <exemplarCity>Viangchan</exemplarCity>
- </zone>
- <zone type="Asia/Beirut">
- <exemplarCity>Bayrut</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>Saint Lucia</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>Luksembourg</exemplarCity>
- </zone>
- <zone type="Africa/Tripoli">
- <exemplarCity>Tarabulus (Tripoli)</exemplarCity>
- </zone>
- <zone type="Africa/Casablanca">
- <exemplarCity>Dar el Beida (Casablanca)</exemplarCity>
- </zone>
- <zone type="Asia/Rangoon">
- <exemplarCity>Yangon</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity>Martinik</exemplarCity>
- </zone>
- <zone type="Indian/Mauritius">
- <exemplarCity>Moris</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>Maldivez</exemplarCity>
- </zone>
- <zone type="Asia/Muscat">
- <exemplarCity>Masqat</exemplarCity>
- </zone>
- <zone type="America/Panama">
- <exemplarCity>Panamá</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>Varsovia</exemplarCity>
- </zone>
- <zone type="America/Miquelon">
- <exemplarCity>Mikelon</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>Azorez</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity>Asunción</exemplarCity>
- </zone>
- <zone type="Indian/Reunion">
- <exemplarCity>Reünion</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>Bukarest</exemplarCity>
- </zone>
- <zone type="Europe/Belgrade">
- <exemplarCity>Beograd</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>Moskov</exemplarCity>
- </zone>
- <zone type="Asia/Yekaterinburg">
- <exemplarCity>Yekaterinbourg</exemplarCity>
- </zone>
- <zone type="Asia/Anadyr">
- <exemplarCity>Anadyr'</exemplarCity>
- </zone>
- <zone type="Asia/Singapore">
- <exemplarCity>Singapour</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>Saint Helena</exemplarCity>
- </zone>
- <zone type="Africa/Mogadishu">
- <exemplarCity>Muqdisho</exemplarCity>
- </zone>
- <zone type="Africa/Sao_Tome">
- <exemplarCity>São Tomé</exemplarCity>
- </zone>
- <zone type="America/El_Salvador">
- <exemplarCity>Salvador</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>Damask</exemplarCity>
- </zone>
- <zone type="Africa/Ndjamena">
- <exemplarCity>N'Djamena</exemplarCity>
- </zone>
- <zone type="Indian/Kerguelen">
- <exemplarCity>Kergelenn</exemplarCity>
- </zone>
- <zone type="Africa/Lome">
- <exemplarCity>Lomé</exemplarCity>
- </zone>
- <zone type="Africa/Tunis">
- <exemplarCity>Tuniz</exemplarCity>
- </zone>
- <zone type="Europe/Vatican">
- <exemplarCity>Vatikan</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>Sant Visant</exemplarCity>
- </zone>
- <zone type="Asia/Saigon">
- <exemplarCity>Kêr Hô-Chi-Minh</exemplarCity>
- </zone>
- </timeZoneNames>
- </dates>
- <numbers>
- <symbols numberSystem="latn">
- <decimal>,</decimal>
- <group> </group>
- </symbols>
- <currencies>
- <currency type="AED">
- <displayName>dirham EAU</displayName>
- <displayName count="one">dirham EAU</displayName>
- <displayName count="two">zirham EAU</displayName>
- <displayName count="few">dirham EAU</displayName>
- <displayName count="many">dirham EAU</displayName>
- <displayName count="other">dirham EAU</displayName>
- </currency>
- <currency type="AFN">
- <displayName>afghani Afghanistan</displayName>
- </currency>
- <currency type="ALL">
- <displayName>lek Albania</displayName>
- </currency>
- <currency type="AMD">
- <displayName>dram Armenia</displayName>
- <displayName count="one">dram Armenia</displayName>
- <displayName count="two">zram Armenia</displayName>
- <displayName count="few">dram Armenia</displayName>
- <displayName count="many">dram Armenia</displayName>
- <displayName count="other">dram Armenia</displayName>
- </currency>
- <currency type="ANG">
- <displayName>florin Antilhez nederlandat</displayName>
- </currency>
- <currency type="AOA">
- <displayName>kwanza Angola</displayName>
- <displayName count="one">c'hwanza Angola</displayName>
- <displayName count="two">gwanza Angola</displayName>
- <displayName count="few">c'hwanza Angola</displayName>
- <displayName count="many">kwanza Angola</displayName>
- <displayName count="other">kwanza Angola</displayName>
- </currency>
- <currency type="ARS">
- <displayName>peso Arcʼhantina</displayName>
- <displayName count="one">peso Arcʼhantina</displayName>
- <displayName count="two">beso Arcʼhantina</displayName>
- <displayName count="few">feso Arcʼhantina</displayName>
- <displayName count="many">peso Arcʼhantina</displayName>
- <displayName count="other">peso Arcʼhantina</displayName>
- </currency>
- <currency type="AUD">
- <displayName>dollar Aostralia</displayName>
- <displayName count="one">dollar Aostralia</displayName>
- <displayName count="two">zollar Aostralia</displayName>
- <displayName count="few">dollar Aostralia</displayName>
- <displayName count="many">dollar Aostralia</displayName>
- <displayName count="other">dollar Aostralia</displayName>
- </currency>
- <currency type="AWG">
- <displayName>florin Aruba</displayName>
- </currency>
- <currency type="AZM">
- <displayName>manat Azerbaidjan (1993–2006)</displayName>
- </currency>
- <currency type="AZN">
- <displayName>manat Azerbaidjan</displayName>
- <displayName count="one">manat Azerbaidjan</displayName>
- <displayName count="two">vanat Azerbaidjan</displayName>
- <displayName count="few">manat Azerbaidjan</displayName>
- <displayName count="many">manat Azerbaidjan</displayName>
- <displayName count="other">manat Azerbaidjan</displayName>
- </currency>
- <currency type="BAM">
- <displayName>mark kemmadus Bosnia ha Herzegovina</displayName>
- <displayName count="one">mark kemmadus Bosnia ha Herzegovina</displayName>
- <displayName count="two">vark kemmadus Bosnia ha Herzegovina</displayName>
- <displayName count="few">mark kemmadus Bosnia ha Herzegovina</displayName>
- <displayName count="many">mark kemmadus Bosnia ha Herzegovina</displayName>
- <displayName count="other">mark kemmadus Bosnia ha Herzegovina</displayName>
- </currency>
- <currency type="BBD">
- <displayName>dollar Barbados</displayName>
- <displayName count="one">dollar Barbados</displayName>
- <displayName count="two">zollar Barbados</displayName>
- <displayName count="few">dollar Barbados</displayName>
- <displayName count="many">dollar Barbados</displayName>
- <displayName count="other">dollar Barbados</displayName>
- </currency>
- <currency type="BDT">
- <displayName>taka Bangladesh</displayName>
- <displayName count="one">taka Bangladesh</displayName>
- <displayName count="two">daka Bangladesh</displayName>
- <displayName count="few">zaka Bangladesh</displayName>
- <displayName count="many">taka Bangladesh</displayName>
- <displayName count="other">taka Bangladesh</displayName>
- </currency>
- <currency type="BGN">
- <displayName>lev Bulgaria</displayName>
- </currency>
- <currency type="BHD">
- <displayName>dinar Bahrein</displayName>
- <displayName count="one">dinar Bahrein</displayName>
- <displayName count="two">zinar Bahrein</displayName>
- <displayName count="few">dinar Bahrein</displayName>
- <displayName count="many">dinar Bahrein</displayName>
- <displayName count="other">dinar Bahrein</displayName>
- </currency>
- <currency type="BIF">
- <displayName>lur Burundi</displayName>
- </currency>
- <currency type="BMD">
- <displayName>dollar Bermuda</displayName>
- <displayName count="one">dollar Bermuda</displayName>
- <displayName count="two">zollar Bermuda</displayName>
- <displayName count="few">dollar Bermuda</displayName>
- <displayName count="many">dollar Bermuda</displayName>
- <displayName count="other">dollar Bermuda</displayName>
- </currency>
- <currency type="BND">
- <displayName>dollar Brunei</displayName>
- <displayName count="one">dollar Brunei</displayName>
- <displayName count="two">zollar Brunei</displayName>
- <displayName count="few">dollar Brunei</displayName>
- <displayName count="many">dollar Brunei</displayName>
- <displayName count="other">dollar Brunei</displayName>
- </currency>
- <currency type="BOB">
- <displayName>boliviano Bolivia</displayName>
- <displayName count="one">boliviano Bolivia</displayName>
- <displayName count="two">voliviano Bolivia</displayName>
- <displayName count="few">boliviano Bolivia</displayName>
- <displayName count="many">boliviano Bolivia</displayName>
- <displayName count="other">boliviano Bolivia</displayName>
- </currency>
- <currency type="BRL">
- <displayName>real Brazil</displayName>
- </currency>
- <currency type="BSD">
- <displayName>dollar Bahamas</displayName>
- <displayName count="one">dollar Bahamas</displayName>
- <displayName count="two">zollar Bahamas</displayName>
- <displayName count="few">dollar Bahamas</displayName>
- <displayName count="many">dollar Bahamas</displayName>
- <displayName count="other">dollar Bahamas</displayName>
- </currency>
- <currency type="BTN">
- <displayName>ngultrum Bhoutan</displayName>
- </currency>
- <currency type="BWP">
- <displayName>pula Botswana</displayName>
- <displayName count="one">pula Botswana</displayName>
- <displayName count="two">bula Botswana</displayName>
- <displayName count="few">fula Botswana</displayName>
- <displayName count="many">pula Botswana</displayName>
- <displayName count="other">pula Botswana</displayName>
- </currency>
- <currency type="BYR">
- <displayName>roubl Belarus</displayName>
- </currency>
- <currency type="BZD">
- <displayName>dollar Belize</displayName>
- <displayName count="one">dollar Belize</displayName>
- <displayName count="two">zollar Belize</displayName>
- <displayName count="few">dollar Belize</displayName>
- <displayName count="many">dollar Belize</displayName>
- <displayName count="other">dollar Belize</displayName>
- </currency>
- <currency type="CAD">
- <displayName>dollar Kanada</displayName>
- <displayName count="one">dollar Kanada</displayName>
- <displayName count="two">zollar Kanada</displayName>
- <displayName count="few">dollar Kanada</displayName>
- <displayName count="many">dollar Kanada</displayName>
- <displayName count="other">dollar Kanada</displayName>
- </currency>
- <currency type="CDF">
- <displayName>lur Kongo</displayName>
- </currency>
- <currency type="CHF">
- <displayName>lur Suis</displayName>
- </currency>
- <currency type="CLP">
- <displayName>peso Chile</displayName>
- <displayName count="one">peso Chile</displayName>
- <displayName count="two">beso Chile</displayName>
- <displayName count="few">feso Chile</displayName>
- <displayName count="many">peso Chile</displayName>
- <displayName count="other">peso Chile</displayName>
- </currency>
- <currency type="CNY">
- <displayName>yuan Sina</displayName>
- <displayName count="one">yuan Sina</displayName>
- <displayName count="two">yuan Sina</displayName>
- <displayName count="few">yuan Sina</displayName>
- <displayName count="many">yuan Sina</displayName>
- <displayName count="other">yuan Sina</displayName>
- </currency>
- <currency type="COP">
- <displayName>peso Kolombia</displayName>
- <displayName count="one">peso Kolombia</displayName>
- <displayName count="two">beso Kolombia</displayName>
- <displayName count="few">feso Kolombia</displayName>
- <displayName count="many">peso Kolombia</displayName>
- <displayName count="other">peso Kolombia</displayName>
- </currency>
- <currency type="CRC">
- <displayName>colón Costa Rica</displayName>
- <displayName count="one">c'holón Costa Rica</displayName>
- <displayName count="two">golón Costa Rica</displayName>
- <displayName count="few">c'holón Costa Rica</displayName>
- <displayName count="many">colón Costa Rica</displayName>
- <displayName count="other">colón Costa Rica</displayName>
- </currency>
- <currency type="CUC">
- <displayName>peso kemmadus Kuba</displayName>
- <displayName count="one">peso kemmadus Kuba</displayName>
- <displayName count="two">beso gemmadus Kuba</displayName>
- <displayName count="few">feso kemmadus Kuba</displayName>
- <displayName count="many">peso kemmadus Kuba</displayName>
- <displayName count="other">peso kemmadus Kuba</displayName>
- </currency>
- <currency type="CUP">
- <displayName>peso Kuba</displayName>
- <displayName count="one">peso Kuba</displayName>
- <displayName count="two">beso Kuba</displayName>
- <displayName count="few">feso Kuba</displayName>
- <displayName count="many">peso Kuba</displayName>
- <displayName count="other">peso Kuba</displayName>
- </currency>
- <currency type="CVE">
- <displayName>escudo Kab Glas</displayName>
- </currency>
- <currency type="CZK">
- <displayName>kurunenn Tchek</displayName>
- <displayName count="one">gurunenn Tchek</displayName>
- <displayName count="two">gurunenn Tchek</displayName>
- <displayName count="few">kurunenn Tchek</displayName>
- <displayName count="many">kurunenn Tchek</displayName>
- <displayName count="other">kurunenn Tchek</displayName>
- </currency>
- <currency type="DJF">
- <displayName>lur Djibouti</displayName>
- </currency>
- <currency type="DKK">
- <displayName>kurunenn Danmark</displayName>
- <displayName count="one">gurunenn Danmark</displayName>
- <displayName count="two">gurunenn Danmark</displayName>
- <displayName count="few">kurunenn Danmark</displayName>
- <displayName count="many">kurunenn Danmark</displayName>
- <displayName count="other">kurunenn Danmark</displayName>
- </currency>
- <currency type="DOP">
- <displayName>peso Dominikan</displayName>
- <displayName count="one">peso Dominikan</displayName>
- <displayName count="two">beso Dominikan</displayName>
- <displayName count="few">feso Dominikan</displayName>
- <displayName count="many">peso Dominikan</displayName>
- <displayName count="other">peso Dominikan</displayName>
- </currency>
- <currency type="DZD">
- <displayName>dinar Aljeria</displayName>
- <displayName count="one">dinar Aljeria</displayName>
- <displayName count="two">zinar Aljeria</displayName>
- <displayName count="few">dinar Aljeria</displayName>
- <displayName count="many">dinar Aljeria</displayName>
- <displayName count="other">dinar Aljeria</displayName>
- </currency>
- <currency type="EEK">
- <displayName>kurunenn Estonia</displayName>
- </currency>
- <currency type="EGP">
- <displayName>lur Egipt</displayName>
- </currency>
- <currency type="ERN">
- <displayName>nakfa Eritrea</displayName>
- </currency>
- <currency type="ETB">
- <displayName>birr Etiopia</displayName>
- <displayName count="one">birr Etiopia</displayName>
- <displayName count="two">virr Etiopia</displayName>
- <displayName count="few">birr Etiopia</displayName>
- <displayName count="many">birr Etiopia</displayName>
- <displayName count="other">birr Etiopia</displayName>
- </currency>
- <currency type="EUR">
- <displayName>euro</displayName>
- </currency>
- <currency type="FJD">
- <displayName>dollar Fidji</displayName>
- <displayName count="one">dollar Fidji</displayName>
- <displayName count="two">zollar Fidji</displayName>
- <displayName count="few">dollar Fidji</displayName>
- <displayName count="many">dollar Fidji</displayName>
- <displayName count="other">dollar Fidji</displayName>
- </currency>
- <currency type="FKP">
- <displayName>lur Inizi Falkland</displayName>
- </currency>
- <currency type="FRF">
- <displayName>lur gall</displayName>
- <displayName count="one">lur gall</displayName>
- <displayName count="two">lur gall</displayName>
- <displayName count="few">lur gall</displayName>
- <displayName count="many">lur gall</displayName>
- <displayName count="other">lur gall</displayName>
- </currency>
- <currency type="GBP">
- <displayName>lur sterling Breizh-Veur</displayName>
- </currency>
- <currency type="GEL">
- <displayName>lari Jorjia</displayName>
- </currency>
- <currency type="GHS">
- <displayName>cedi Ghana</displayName>
- </currency>
- <currency type="GIP">
- <displayName>lur Jibraltar</displayName>
- </currency>
- <currency type="GMD">
- <displayName>dalasi Gambia</displayName>
- <displayName count="one">dalasi Gambia</displayName>
- <displayName count="two">zalasi Gambia</displayName>
- <displayName count="few">dalasi Gambia</displayName>
- <displayName count="many">dalasi Gambia</displayName>
- <displayName count="other">dalasi Gambia</displayName>
- </currency>
- <currency type="GNF">
- <displayName>lur Ginea</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>quetzal Guatemala</displayName>
- <displayName count="one">c'huetzal Guatemala</displayName>
- <displayName count="two">guetzal Guatemala</displayName>
- <displayName count="few">c'huetzal Guatemala</displayName>
- <displayName count="many">quetzal Guatemala</displayName>
- <displayName count="other">quetzal Guatemala</displayName>
- </currency>
- <currency type="GYD">
- <displayName>dollar Guyana</displayName>
- <displayName count="one">dollar Guyana</displayName>
- <displayName count="two">zollar Guyana</displayName>
- <displayName count="few">dollar Guyana</displayName>
- <displayName count="many">dollar Guyana</displayName>
- <displayName count="other">dollar Guyana</displayName>
- </currency>
- <currency type="HKD">
- <displayName>dollar Hong Kong</displayName>
- <displayName count="one">dollar Hong Kong</displayName>
- <displayName count="two">zollar Hong Kong</displayName>
- <displayName count="few">dollar Hong Kong</displayName>
- <displayName count="many">dollar Hong Kong</displayName>
- <displayName count="other">dollar Hong Kong</displayName>
- </currency>
- <currency type="HNL">
- <displayName>lempira Honduras</displayName>
- </currency>
- <currency type="HRK">
- <displayName>kuna Kroatia</displayName>
- <displayName count="one">c'huna Kroatia</displayName>
- <displayName count="two">guna Kroatia</displayName>
- <displayName count="few">c'huna Kroatia</displayName>
- <displayName count="many">kuna Kroatia</displayName>
- <displayName count="other">kuna Kroatia</displayName>
- </currency>
- <currency type="HTG">
- <displayName>gourde Haiti</displayName>
- <displayName count="one">gourde Haiti</displayName>
- <displayName count="two">c'hourde Haiti</displayName>
- <displayName count="few">gourde Haiti</displayName>
- <displayName count="many">gourde Haiti</displayName>
- <displayName count="other">gourde Haiti</displayName>
- </currency>
- <currency type="HUF">
- <displayName>forint Hungaria</displayName>
- </currency>
- <currency type="IDR">
- <displayName>roupi Indonezia</displayName>
- </currency>
- <currency type="ILS">
- <displayName>shekel nevez Israel</displayName>
- </currency>
- <currency type="INR">
- <displayName>roupi India</displayName>
- </currency>
- <currency type="IQD">
- <displayName>dinar Iraq</displayName>
- <displayName count="one">dinar Iraq</displayName>
- <displayName count="two">zinar Iraq</displayName>
- <displayName count="few">dinar Iraq</displayName>
- <displayName count="many">dinar Iraq</displayName>
- <displayName count="other">dinar Iraq</displayName>
- </currency>
- <currency type="IRR">
- <displayName>rial Iran</displayName>
- </currency>
- <currency type="ISK">
- <displayName>kurunenn Island</displayName>
- <displayName count="one">gurunenn Island</displayName>
- <displayName count="two">gurunenn Island</displayName>
- <displayName count="few">kurunenn Island</displayName>
- <displayName count="many">kurunenn Island</displayName>
- <displayName count="other">kurunenn Island</displayName>
- </currency>
- <currency type="ITL">
- <displayName>lur Italia</displayName>
- <displayName count="one">lur Italia</displayName>
- <displayName count="two">lur Italia</displayName>
- <displayName count="few">lur Italia</displayName>
- <displayName count="many">lur Italia</displayName>
- <displayName count="other">lur Italia</displayName>
- </currency>
- <currency type="JMD">
- <displayName>dollar Jamaika</displayName>
- <displayName count="one">dollar Jamaika</displayName>
- <displayName count="two">zollar Jamaika</displayName>
- <displayName count="few">dollar Jamaika</displayName>
- <displayName count="many">dollar Jamaika</displayName>
- <displayName count="other">dollar Jamaika</displayName>
- </currency>
- <currency type="JOD">
- <displayName>dinar Jordania</displayName>
- <displayName count="one">dinar Jordania</displayName>
- <displayName count="two">zinar Jordania</displayName>
- <displayName count="few">dinar Jordania</displayName>
- <displayName count="many">dinar Jordania</displayName>
- <displayName count="other">dinar Jordania</displayName>
- </currency>
- <currency type="JPY">
- <displayName>yen Japan</displayName>
- </currency>
- <currency type="KES">
- <displayName>shilling Kenya</displayName>
- </currency>
- <currency type="KGS">
- <displayName>som Kyrgyzstan</displayName>
- </currency>
- <currency type="KHR">
- <displayName>riel Kambodja</displayName>
- </currency>
- <currency type="KMF">
- <displayName>lur Komorez</displayName>
- </currency>
- <currency type="KPW">
- <displayName>won Korea an Norzh</displayName>
- </currency>
- <currency type="KRW">
- <displayName>won Korea ar Su</displayName>
- </currency>
- <currency type="KWD">
- <displayName>dinar Koweit</displayName>
- <displayName count="one">dinar Koweit</displayName>
- <displayName count="two">zinar Koweit</displayName>
- <displayName count="few">dinar Koweit</displayName>
- <displayName count="many">dinar Koweit</displayName>
- <displayName count="other">dinar Koweit</displayName>
- </currency>
- <currency type="KYD">
- <displayName>dollar Inizi Cayman</displayName>
- <displayName count="one">dollar Inizi Cayman</displayName>
- <displayName count="two">zollar Inizi Cayman</displayName>
- <displayName count="few">dollar Inizi Cayman</displayName>
- <displayName count="many">dollar Inizi Cayman</displayName>
- <displayName count="other">dollar Inizi Cayman</displayName>
- </currency>
- <currency type="KZT">
- <displayName>tenge Kazakstan</displayName>
- <displayName count="one">tenge Kazakstan</displayName>
- <displayName count="two">denge Kazakstan</displayName>
- <displayName count="few">zenge Kazakstan</displayName>
- <displayName count="many">tenge Kazakstan</displayName>
- <displayName count="other">tenge Kazakstan</displayName>
- </currency>
- <currency type="LAK">
- <displayName>kip Laos</displayName>
- <displayName count="one">c'hip Laos</displayName>
- <displayName count="two">gip Laos</displayName>
- <displayName count="few">c'hip Laos</displayName>
- <displayName count="many">kip Laos</displayName>
- <displayName count="other">kip Laos</displayName>
- </currency>
- <currency type="LBP">
- <displayName>lur Liban</displayName>
- </currency>
- <currency type="LKR">
- <displayName>roupi Sri Lanka</displayName>
- </currency>
- <currency type="LRD">
- <displayName>dollar Liberia</displayName>
- <displayName count="one">dollar Liberia</displayName>
- <displayName count="two">zollar Liberia</displayName>
- <displayName count="few">dollar Liberia</displayName>
- <displayName count="many">dollar Liberia</displayName>
- <displayName count="other">dollar Liberia</displayName>
- </currency>
- <currency type="LSL">
- <displayName>loti Lesotho</displayName>
- </currency>
- <currency type="LTL">
- <displayName>litas Lituania</displayName>
- </currency>
- <currency type="LUF">
- <displayName>lur Luksembourg</displayName>
- <displayName count="one">lur Luksembourg</displayName>
- <displayName count="two">lur Luksembourg</displayName>
- <displayName count="few">lur Luksembourg</displayName>
- <displayName count="many">lur Luksembourg</displayName>
- <displayName count="other">lur Luksembourg</displayName>
- </currency>
- <currency type="LVL">
- <displayName>lats Latvia</displayName>
- </currency>
- <currency type="LYD">
- <displayName>dinar Libia</displayName>
- <displayName count="one">dinar Libia</displayName>
- <displayName count="two">zinar Libia</displayName>
- <displayName count="few">dinar Libia</displayName>
- <displayName count="many">dinar Libia</displayName>
- <displayName count="other">dinar Libia</displayName>
- </currency>
- <currency type="MAD">
- <displayName>dirham Maroko</displayName>
- <displayName count="one">dirham Maroko</displayName>
- <displayName count="two">zirham Maroko</displayName>
- <displayName count="few">dirham Maroko</displayName>
- <displayName count="many">dirham Maroko</displayName>
- <displayName count="other">dirham Maroko</displayName>
- </currency>
- <currency type="MAF">
- <displayName>lur Maroko</displayName>
- <displayName count="one">lur Maroko</displayName>
- <displayName count="two">lur Maroko</displayName>
- <displayName count="few">lur Maroko</displayName>
- <displayName count="many">lur Maroko</displayName>
- <displayName count="other">lur Maroko</displayName>
- </currency>
- <currency type="MCF">
- <displayName>lur Monaco</displayName>
- <displayName count="one">lur Monaco</displayName>
- <displayName count="two">lur Monaco</displayName>
- <displayName count="few">lur Monaco</displayName>
- <displayName count="many">lur Monaco</displayName>
- <displayName count="other">lur Monaco</displayName>
- </currency>
- <currency type="MDL">
- <displayName>leu Moldova</displayName>
- </currency>
- <currency type="MGA">
- <displayName>ariary Madagaskar</displayName>
- </currency>
- <currency type="MKD">
- <displayName>denar Makedonia</displayName>
- <displayName count="one">denar Makedonia</displayName>
- <displayName count="two">zenar Makedonia</displayName>
- <displayName count="few">denar Makedonia</displayName>
- <displayName count="many">denar Makedonia</displayName>
- <displayName count="other">denar Makedonia</displayName>
- </currency>
- <currency type="MLF">
- <displayName>lur Mali</displayName>
- <displayName count="one">lur Mali</displayName>
- <displayName count="two">lur Mali</displayName>
- <displayName count="few">lur Mali</displayName>
- <displayName count="many">lur Mali</displayName>
- <displayName count="other">lur Mali</displayName>
- </currency>
- <currency type="MMK">
- <displayName>kyat Myanmar</displayName>
- <displayName count="one">c'hyat Myanmar</displayName>
- <displayName count="two">gyat Myanmar</displayName>
- <displayName count="few">c'hyat Myanmar</displayName>
- <displayName count="many">kyat Myanmar</displayName>
- <displayName count="other">kyat Myanmar</displayName>
- </currency>
- <currency type="MNT">
- <displayName>tugrik Mongolia</displayName>
- <displayName count="one">tugrik Mongolia</displayName>
- <displayName count="two">dugrik Mongolia</displayName>
- <displayName count="few">zugrik Mongolia</displayName>
- <displayName count="many">tugrik Mongolia</displayName>
- <displayName count="other">tugrik Mongolia</displayName>
- </currency>
- <currency type="MOP">
- <displayName>pataca Macau</displayName>
- <displayName count="one">pataca Macau</displayName>
- <displayName count="two">bataca Macau</displayName>
- <displayName count="few">fataca Macau</displayName>
- <displayName count="many">pataca Macau</displayName>
- <displayName count="other">pataca Macau</displayName>
- </currency>
- <currency type="MRO">
- <displayName>ouguiya Maouritania</displayName>
- </currency>
- <currency type="MUR">
- <displayName>roupi Moris</displayName>
- </currency>
- <currency type="MVR">
- <displayName>rufiyaa Maldivez</displayName>
- </currency>
- <currency type="MWK">
- <displayName>kwacha Malawi</displayName>
- <displayName count="one">c'hwacha Malawi</displayName>
- <displayName count="two">gwacha Malawi</displayName>
- <displayName count="few">kwacha Malawi</displayName>
- <displayName count="many">kwacha Malawi</displayName>
- <displayName count="other">kwacha Malawi</displayName>
- </currency>
- <currency type="MXN">
- <displayName>peso Mecʼhiko</displayName>
- <displayName count="one">peso Mecʼhiko</displayName>
- <displayName count="two">beso Mecʼhiko</displayName>
- <displayName count="few">feso Mecʼhiko</displayName>
- <displayName count="many">peso Mecʼhiko</displayName>
- <displayName count="other">peso Mecʼhiko</displayName>
- </currency>
- <currency type="MYR">
- <displayName>ringgit Malaysia</displayName>
- </currency>
- <currency type="MZM">
- <displayName>metical Mozambik (1980–2006)</displayName>
- <displayName count="one">metical Mozambik (1980–2006)</displayName>
- <displayName count="two">vetical Mozambik (1980–2006)</displayName>
- <displayName count="few">metical Mozambik (1980–2006)</displayName>
- <displayName count="many">metical Mozambik (1980–2006)</displayName>
- <displayName count="other">metical Mozambik (1980–2006)</displayName>
- </currency>
- <currency type="MZN">
- <displayName>metical Mozambik</displayName>
- <displayName count="one">metical Mozambik</displayName>
- <displayName count="two">vetical Mozambik</displayName>
- <displayName count="few">metical Mozambik</displayName>
- <displayName count="many">metical Mozambik</displayName>
- <displayName count="other">metical Mozambik</displayName>
- </currency>
- <currency type="NAD">
- <displayName>dollar Namibia</displayName>
- <displayName count="one">dollar Namibia</displayName>
- <displayName count="two">zollar Namibia</displayName>
- <displayName count="few">dollar Namibia</displayName>
- <displayName count="many">dollar Namibia</displayName>
- <displayName count="other">dollar Namibia</displayName>
- </currency>
- <currency type="NGN">
- <displayName>naira Nigeria</displayName>
- </currency>
- <currency type="NIO">
- <displayName>cordoba Nicaragua</displayName>
- <displayName count="one">c'hordoba Nicaragua</displayName>
- <displayName count="two">gordoba Nicaragua</displayName>
- <displayName count="few">c'hordoba Nicaragua</displayName>
- <displayName count="many">cordoba Nicaragua</displayName>
- <displayName count="other">cordoba Nicaragua</displayName>
- </currency>
- <currency type="NOK">
- <displayName>kurunenn Norvegia</displayName>
- <displayName count="one">gurunenn Norvegia</displayName>
- <displayName count="two">gurunenn Norvegia</displayName>
- <displayName count="few">kurunenn Norvegia</displayName>
- <displayName count="many">kurunenn Norvegia</displayName>
- <displayName count="other">kurunenn Norvegia</displayName>
- </currency>
- <currency type="NPR">
- <displayName>roupi Nepal</displayName>
- </currency>
- <currency type="NZD">
- <displayName>dollar Zeland-Nevez</displayName>
- <displayName count="one">dollar Zeland-Nevez</displayName>
- <displayName count="two">zollar Zeland-Nevez</displayName>
- <displayName count="few">dollar Zeland-Nevez</displayName>
- <displayName count="many">dollar Zeland-Nevez</displayName>
- <displayName count="other">dollar Zeland-Nevez</displayName>
- </currency>
- <currency type="OMR">
- <displayName>rial Oman</displayName>
- </currency>
- <currency type="PAB">
- <displayName>balboa Panamá</displayName>
- <displayName count="one">balboa Panamá</displayName>
- <displayName count="two">valboa Panamá</displayName>
- <displayName count="few">balboa Panamá</displayName>
- <displayName count="many">balboa Panamá</displayName>
- <displayName count="other">balboa Panamá</displayName>
- </currency>
- <currency type="PEN">
- <displayName>nuevo sol Perou</displayName>
- </currency>
- <currency type="PGK">
- <displayName>kina Papoua Ginea-Nevez</displayName>
- <displayName count="one">c'hina Papoua Ginea-Nevez</displayName>
- <displayName count="two">gina Papoua Ginea-Nevez</displayName>
- <displayName count="few">c'hina Papoua Ginea-Nevez</displayName>
- <displayName count="many">kina Papoua Ginea-Nevez</displayName>
- <displayName count="other">kina Papoua Ginea-Nevez</displayName>
- </currency>
- <currency type="PHP">
- <displayName>peso Filipinez</displayName>
- <displayName count="one">peso Filipinez</displayName>
- <displayName count="two">beso Filipinez</displayName>
- <displayName count="few">feso Filipinez</displayName>
- <displayName count="many">peso Filipinez</displayName>
- <displayName count="other">peso Filipinez</displayName>
- </currency>
- <currency type="PKR">
- <displayName>roupi Pakistan</displayName>
- </currency>
- <currency type="PLN">
- <displayName>zloty Polonia</displayName>
- </currency>
- <currency type="PYG">
- <displayName>guarani Paraguay</displayName>
- <displayName count="one">guarani Paraguay</displayName>
- <displayName count="two">uarani Paraguay</displayName>
- <displayName count="few">guarani Paraguay</displayName>
- <displayName count="many">guarani Paraguay</displayName>
- <displayName count="other">guarani Paraguay</displayName>
- </currency>
- <currency type="QAR">
- <displayName>rial Qatar</displayName>
- </currency>
- <currency type="ROL">
- <displayName>leu Roumania (1952–2006)</displayName>
- <displayName count="one">leu Roumania (1952–2006)</displayName>
- <displayName count="two">leu Roumania (1952–2006)</displayName>
- <displayName count="few">leu Roumania (1952–2006)</displayName>
- <displayName count="many">leu Roumania (1952–2006)</displayName>
- <displayName count="other">leu Roumania (1952–2006)</displayName>
- </currency>
- <currency type="RON">
- <displayName>leu Roumania</displayName>
- <displayName count="one">leu Roumania</displayName>
- <displayName count="two">leu Roumania</displayName>
- <displayName count="few">leu Roumania</displayName>
- <displayName count="many">leu Roumania</displayName>
- <displayName count="other">leu Roumania</displayName>
- </currency>
- <currency type="RSD">
- <displayName>dinar Serbia</displayName>
- <displayName count="one">dinar Serbia</displayName>
- <displayName count="two">zinar Serbia</displayName>
- <displayName count="few">dinar Serbia</displayName>
- <displayName count="many">dinar Serbia</displayName>
- <displayName count="other">dinar Serbia</displayName>
- </currency>
- <currency type="RUB">
- <displayName>roubl Rusia</displayName>
- </currency>
- <currency type="RWF">
- <displayName>lur Rwanda</displayName>
- </currency>
- <currency type="SAR">
- <displayName>riyal Arabia Saoudat</displayName>
- </currency>
- <currency type="SBD">
- <displayName>dollar Inizi Salomon</displayName>
- <displayName count="one">dollar Inizi Salomon</displayName>
- <displayName count="two">zollar Inizi Salomon</displayName>
- <displayName count="few">dollar Inizi Salomon</displayName>
- <displayName count="many">dollar Inizi Salomon</displayName>
- <displayName count="other">dollar Inizi Salomon</displayName>
- </currency>
- <currency type="SCR">
- <displayName>roupi Sechelez</displayName>
- </currency>
- <currency type="SDG">
- <displayName>lur Soudan</displayName>
- </currency>
- <currency type="SEK">
- <displayName>kurunenn Sveden</displayName>
- <displayName count="one">gurunenn Sveden</displayName>
- <displayName count="two">gurunenn Sveden</displayName>
- <displayName count="few">kurunenn Sveden</displayName>
- <displayName count="many">kurunenn Sveden</displayName>
- <displayName count="other">kurunenn Sveden</displayName>
- </currency>
- <currency type="SGD">
- <displayName>dollar Singapour</displayName>
- <displayName count="one">dollar Singapour</displayName>
- <displayName count="two">zollar Singapour</displayName>
- <displayName count="few">dollar Singapour</displayName>
- <displayName count="many">dollar Singapour</displayName>
- <displayName count="other">dollar Singapour</displayName>
- </currency>
- <currency type="SHP">
- <displayName>lur Saint Helena</displayName>
- </currency>
- <currency type="SKK">
- <displayName>kurunenn Slovakia</displayName>
- <displayName count="one">gurunenn Slovakia</displayName>
- <displayName count="two">gurunenn Slovakia</displayName>
- <displayName count="few">c'hurunenn Slovakia</displayName>
- <displayName count="many">kurunenn Slovakia</displayName>
- <displayName count="other">kurunenn Slovakia</displayName>
- </currency>
- <currency type="SLL">
- <displayName>leone Sierra Leone</displayName>
- </currency>
- <currency type="SOS">
- <displayName>shilling Somalia</displayName>
- </currency>
- <currency type="SRD">
- <displayName>dollar Surinam</displayName>
- <displayName count="one">dollar Surinam</displayName>
- <displayName count="two">zollar Surinam</displayName>
- <displayName count="few">dollar Surinam</displayName>
- <displayName count="many">dollar Surinam</displayName>
- <displayName count="other">dollar Surinam</displayName>
- </currency>
- <currency type="SSP">
- <displayName>lur Su Soudan</displayName>
- <displayName count="one">lur Su Soudan</displayName>
- <displayName count="two">lur Su Soudan</displayName>
- <displayName count="few">lur Su Soudan</displayName>
- <displayName count="many">lur Su Soudan</displayName>
- <displayName count="other">lur Su Soudan</displayName>
- </currency>
- <currency type="STD">
- <displayName>dobra São Tomé ha Príncipe</displayName>
- <displayName count="one">dobra São Tomé ha Príncipe</displayName>
- <displayName count="two">zobra São Tomé ha Príncipe</displayName>
- <displayName count="few">dobra São Tomé ha Príncipe</displayName>
- <displayName count="many">dobra São Tomé ha Príncipe</displayName>
- <displayName count="other">dobra São Tomé ha Príncipe</displayName>
- </currency>
- <currency type="SUR">
- <displayName>roubl soviedel</displayName>
- <displayName count="one">roubl soviedel</displayName>
- <displayName count="two">roubl soviedel</displayName>
- <displayName count="few">roubl soviedel</displayName>
- <displayName count="many">roubl soviedel</displayName>
- <displayName count="other">roubl soviedel</displayName>
- </currency>
- <currency type="SVC">
- <displayName>colón Salvador</displayName>
- <displayName count="one">c'holón Salvador</displayName>
- <displayName count="two">golón Salvador</displayName>
- <displayName count="few">c'holón Salvador</displayName>
- <displayName count="many">colón Salvador</displayName>
- <displayName count="other">colón Salvador</displayName>
- </currency>
- <currency type="SYP">
- <displayName>lur Siria</displayName>
- </currency>
- <currency type="SZL">
- <displayName>lilangeni Swaziland</displayName>
- </currency>
- <currency type="THB">
- <displayName>baht Thailand</displayName>
- <displayName count="one">baht Thailand</displayName>
- <displayName count="two">vaht Thailand</displayName>
- <displayName count="few">baht Thailand</displayName>
- <displayName count="many">baht Thailand</displayName>
- <displayName count="other">baht Thailand</displayName>
- </currency>
- <currency type="TJR">
- <displayName>roubl Tadjikistan</displayName>
- <displayName count="one">roubl Tadjikistan</displayName>
- <displayName count="two">roubl Tadjikistan</displayName>
- <displayName count="few">roubl Tadjikistan</displayName>
- <displayName count="many">roubl Tadjikistan</displayName>
- <displayName count="other">roubl Tadjikistan</displayName>
- </currency>
- <currency type="TJS">
- <displayName>somoni Tadjikistan</displayName>
- </currency>
- <currency type="TMM">
- <displayName>manat Turkmenistan (1993–2009)</displayName>
- <displayName count="one">manat Turkmenistan (1993–2009)</displayName>
- <displayName count="two">vanat Turkmenistan (1993–2009)</displayName>
- <displayName count="few">manat Turkmenistan (1993–2009)</displayName>
- <displayName count="many">manat Turkmenistan (1993–2009)</displayName>
- <displayName count="other">manat Turkmenistan (1993–2009)</displayName>
- </currency>
- <currency type="TMT">
- <displayName>manat Turkmenistan</displayName>
- <displayName count="one">manat Turkmenistan</displayName>
- <displayName count="two">vanat Turkmenistan</displayName>
- <displayName count="few">manat Turkmenistan</displayName>
- <displayName count="many">manat Turkmenistan</displayName>
- <displayName count="other">manat Turkmenistan</displayName>
- </currency>
- <currency type="TND">
- <displayName>dinar Tunizia</displayName>
- <displayName count="one">dinar Tunizia</displayName>
- <displayName count="two">zinar Tunizia</displayName>
- <displayName count="few">dinar Tunizia</displayName>
- <displayName count="many">dinar Tunizia</displayName>
- <displayName count="other">dinar Tunizia</displayName>
- </currency>
- <currency type="TOP">
- <displayName>paʻanga Tonga</displayName>
- <displayName count="one">paʻanga Tonga</displayName>
- <displayName count="two">baʻanga Tonga</displayName>
- <displayName count="few">faʻanga Tonga</displayName>
- <displayName count="many">paʻanga Tonga</displayName>
- <displayName count="other">paʻanga Tonga</displayName>
- </currency>
- <currency type="TRY">
- <displayName>lur Turkia</displayName>
- </currency>
- <currency type="TTD">
- <displayName>dollar Trinidad ha Tobago</displayName>
- <displayName count="one">dollar Trinidad ha Tobago</displayName>
- <displayName count="two">zollar Trinidad ha Tobago</displayName>
- <displayName count="few">dollar Trinidad ha Tobago</displayName>
- <displayName count="many">dollar Trinidad ha Tobago</displayName>
- <displayName count="other">dollar Trinidad ha Tobago</displayName>
- </currency>
- <currency type="TWD">
- <displayName>dollar nevez Taiwan</displayName>
- <displayName count="one">dollar nevez Taiwan</displayName>
- <displayName count="two">zollar nevez Taiwan</displayName>
- <displayName count="few">dollar nevez Taiwan</displayName>
- <displayName count="many">dollar nevez Taiwan</displayName>
- <displayName count="other">dollar nevez Taiwan</displayName>
- </currency>
- <currency type="TZS">
- <displayName>shilling Tanzania</displayName>
- </currency>
- <currency type="UAH">
- <displayName>hryvnia Ukraina</displayName>
- </currency>
- <currency type="UGX">
- <displayName>shilling Ouganda</displayName>
- </currency>
- <currency type="USD">
- <displayName>dollar SU</displayName>
- <displayName count="one">dollar SU</displayName>
- <displayName count="two">zollar SU</displayName>
- <displayName count="few">dollar SU</displayName>
- <displayName count="many">dollar SU</displayName>
- <displayName count="other">dollar SU</displayName>
- </currency>
- <currency type="UYU">
- <displayName>peso Uruguay</displayName>
- <displayName count="one">peso Uruguay</displayName>
- <displayName count="two">beso Uruguay</displayName>
- <displayName count="few">feso Uruguay</displayName>
- <displayName count="many">peso Uruguay</displayName>
- <displayName count="other">peso Uruguay</displayName>
- </currency>
- <currency type="UZS">
- <displayName>som Ouzbekistan</displayName>
- </currency>
- <currency type="VEF">
- <displayName>bolivar Venezuela</displayName>
- <displayName count="one">bolivar Venezuela</displayName>
- <displayName count="two">volivar Venezuela</displayName>
- <displayName count="few">bolivar Venezuela</displayName>
- <displayName count="many">bolivar Venezuela</displayName>
- <displayName count="other">bolivar Venezuela</displayName>
- </currency>
- <currency type="VND">
- <displayName>dong Viêt Nam</displayName>
- <displayName count="one">dong Viêt Nam</displayName>
- <displayName count="two">zong Viêt Nam</displayName>
- <displayName count="few">dong Viêt Nam</displayName>
- <displayName count="many">dong Viêt Nam</displayName>
- <displayName count="other">dong Viêt Nam</displayName>
- </currency>
- <currency type="VUV">
- <displayName>vatu Vanuatu</displayName>
- </currency>
- <currency type="WST">
- <displayName>tala Samoa</displayName>
- <displayName count="one">tala Samoa</displayName>
- <displayName count="two">dala Samoa</displayName>
- <displayName count="few">zala Samoa</displayName>
- <displayName count="many">tala Samoa</displayName>
- <displayName count="other">tala Samoa</displayName>
- </currency>
- <currency type="XAF">
- <displayName>lur CFA BEAC</displayName>
- </currency>
- <currency type="XAG">
- <displayName>arcʼhant</displayName>
- </currency>
- <currency type="XAU">
- <displayName>aour</displayName>
- </currency>
- <currency type="XBA">
- <displayName>unanenn kenaoz europat</displayName>
- </currency>
- <currency type="XBB">
- <displayName>unanenn voneiz europat</displayName>
- </currency>
- <currency type="XBC">
- <displayName>unanenn jediñ europat (XBC)</displayName>
- </currency>
- <currency type="XBD">
- <displayName>unanenn jediñ europat (XBD)</displayName>
- </currency>
- <currency type="XCD">
- <displayName>dollar Karib ar reter</displayName>
- <displayName count="one">dollar Karib ar reter</displayName>
- <displayName count="two">zollar Karib ar reter</displayName>
- <displayName count="few">dollar Karib ar reter</displayName>
- <displayName count="many">dollar Karib ar reter</displayName>
- <displayName count="other">dollar Karib ar reter</displayName>
- </currency>
- <currency type="XDR">
- <displayName>gwirioù tennañ arbennik</displayName>
- </currency>
- <currency type="XFO">
- <displayName>lur aour Frañs</displayName>
- </currency>
- <currency type="XFU">
- <displayName>lur Unaniezh etrebroadel an hentoù-houarn</displayName>
- </currency>
- <currency type="XOF">
- <displayName>lur CFA BCEAO</displayName>
- </currency>
- <currency type="XPD">
- <displayName>palladiom</displayName>
- </currency>
- <currency type="XPF">
- <displayName>lur CFP</displayName>
- </currency>
- <currency type="XPT">
- <displayName>platin</displayName>
- </currency>
- <currency type="XTS">
- <displayName>kod moneiz amprouiñ</displayName>
- </currency>
- <currency type="XXX">
- <displayName>moneiz dianav</displayName>
- </currency>
- <currency type="YDD">
- <displayName>dinar Yemen</displayName>
- <displayName count="one">dinar Yemen</displayName>
- <displayName count="two">zinar Yemen</displayName>
- <displayName count="few">dinar Yemen</displayName>
- <displayName count="many">dinar Yemen</displayName>
- <displayName count="other">dinar Yemen</displayName>
- </currency>
- <currency type="YER">
- <displayName>rial Yemen</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>rand Suafrika</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>kwacha Zambia (1968–2012)</displayName>
- <displayName count="one">c'hwacha Zambia (1968–2012)</displayName>
- <displayName count="two">gwacha Zambia (1968–2012)</displayName>
- <displayName count="few">kwacha Zambia (1968–2012)</displayName>
- <displayName count="many">kwacha Zambia (1968–2012)</displayName>
- <displayName count="other">kwacha Zambia (1968–2012)</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>kwacha Zambia</displayName>
- <displayName count="one">c'hwacha Zambia</displayName>
- <displayName count="two">gwacha Zambia</displayName>
- <displayName count="few">kwacha Zambia</displayName>
- <displayName count="many">kwacha Zambia</displayName>
- <displayName count="other">kwacha Zambia</displayName>
- </currency>
- <currency type="ZWD">
- <displayName>dollar Zimbabwe (1980–2008)</displayName>
- <displayName count="one">dollar Zimbabwe (1980–2008)</displayName>
- <displayName count="two">zollar Zimbabwe</displayName>
- <displayName count="few">dollar Zimbabwe (1980–2008)</displayName>
- <displayName count="many">dollar Zimbabwe (1980–2008)</displayName>
- <displayName count="other">dollar Zimbabwe (1980–2008)</displayName>
- </currency>
- <currency type="ZWL">
- <displayName>dollar Zimbabwe (2009)</displayName>
- <displayName count="one">dollar Zimbabwe (2009)</displayName>
- <displayName count="two">zollar Zimbabwe (2009)</displayName>
- <displayName count="few">dollar Zimbabwe (2009)</displayName>
- <displayName count="many">dollar Zimbabwe (2009)</displayName>
- <displayName count="other">dollar Zimbabwe (2009)</displayName>
- </currency>
- </currencies>
- </numbers>
- <posix>
- <messages>
- <yesstr>y</yesstr>
- <nostr>n</nostr>
- </messages>
- </posix>
- </ldml>
|