| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387 |
- <?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: 8245 $"/>
- <generation date="$Date: 2013-02-24 22:19:26 -0600 (Sun, 24 Feb 2013) $"/>
- <language type="gsw"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>, </localeSeparator>
- </localeDisplayPattern>
- <languages>
- <language type="aa">Afar</language>
- <language type="ab">Abchasisch</language>
- <language type="ace">Aceh</language>
- <language type="ach">Acholi</language>
- <language type="ada">Adangme</language>
- <language type="ady">Adygai</language>
- <language type="ae">Avestisch</language>
- <language type="af">Afrikaans</language>
- <language type="afa">Afro-Asiatischi Schpraach</language>
- <language type="afh">Afrihili</language>
- <language type="ain">Ainu</language>
- <language type="ak">Akan</language>
- <language type="akk">Akkadisch</language>
- <language type="ale">Aleutisch</language>
- <language type="alg">Algonkin-Schpraach</language>
- <language type="alt">Süüd-Altaisch</language>
- <language type="am">Amharisch</language>
- <language type="an">Aragonesisch</language>
- <language type="ang">Altänglisch</language>
- <language type="anp">Angika</language>
- <language type="apa">Apache-Schpraach</language>
- <language type="ar">Arabisch</language>
- <language type="arc">Aramääisch</language>
- <language type="arn">Araukanisch</language>
- <language type="arp">Arapaho</language>
- <language type="art">Künschtlichi Schpraach</language>
- <language type="arw">Arawak</language>
- <language type="as">Assamesisch</language>
- <language type="asa" draft="unconfirmed">Asu (Tanzania)</language>
- <language type="ast">Aschturianisch</language>
- <language type="ath">Athapaskischi Schpraach</language>
- <language type="aus">Auschtralischi Schpraach</language>
- <language type="av">Awarisch</language>
- <language type="awa">Awadhi</language>
- <language type="ay">Aymara</language>
- <language type="az">Aserbaidschanisch</language>
- <language type="ba">Baschkirisch</language>
- <language type="bad">Banda</language>
- <language type="bai">Bamileke</language>
- <language type="bal">Belutschisch</language>
- <language type="ban">Balinesisch</language>
- <language type="bas">Basaa</language>
- <language type="bat">Baltischi Schpraach</language>
- <language type="be">Wiissrussisch</language>
- <language type="bej">Bedauye</language>
- <language type="bem">Bemba</language>
- <language type="ber">Bärberisch</language>
- <language type="bez" draft="unconfirmed">Bena (Tanzania)</language>
- <language type="bg">Bulgaarisch</language>
- <language type="bh">Bihaarisch</language>
- <language type="bho">Bhodschpuri</language>
- <language type="bi">Bislama</language>
- <language type="bik">Bikolisch</language>
- <language type="bin">Bini</language>
- <language type="bla">Blackfoot-Schpraach</language>
- <language type="bm">Bambara</language>
- <language type="bn">Bengalisch</language>
- <language type="bnt">Bantu</language>
- <language type="bo">Tibeetisch</language>
- <language type="br">Brötoonisch</language>
- <language type="bra">Braj-Bhakha</language>
- <language type="bs">Bosnisch</language>
- <language type="btk">Batak</language>
- <language type="bua">Burjatisch</language>
- <language type="bug">Bugineesisch</language>
- <language type="byn">Blin</language>
- <language type="ca">Katalaanisch</language>
- <language type="cad">Caddo</language>
- <language type="cai">Zentralamerikanischi Indianerschpraach</language>
- <language type="car">Kariibisch</language>
- <language type="cau">Kaukaasisch</language>
- <language type="cch">Atsam</language>
- <language type="ce">Tschetscheenisch</language>
- <language type="ceb">Cebuano</language>
- <language type="cel">Keltischi Schpraach</language>
- <language type="ch">Chamorro</language>
- <language type="chb">Tschibtscha</language>
- <language type="chg">Tschagataisch</language>
- <language type="chk">Trukesisch</language>
- <language type="chm">Tscheremissisch</language>
- <language type="chn">Chinook</language>
- <language type="cho">Choctaw</language>
- <language type="chp">Chipewyan</language>
- <language type="chr">Cherokee</language>
- <language type="chy">Cheyenne</language>
- <language type="cmc">Chamischi Schpraach</language>
- <language type="co">Korsisch</language>
- <language type="cop">Koptisch</language>
- <language type="cpe">Änglisch-basierts Kreol oder Pidgin</language>
- <language type="cpf">Französisch-basierts Kreol oder Pidgin</language>
- <language type="cpp">Portugiesisch-basierts Kreol oder Pidgin</language>
- <language type="cr">Cree</language>
- <language type="crh">Krimtatarisch</language>
- <language type="crp">Kreol oder Pidgin</language>
- <language type="cs">Tschechisch</language>
- <language type="csb">Kaschubisch</language>
- <language type="cu">Chileslawisch</language>
- <language type="cus">Kuschitischi Schpraach</language>
- <language type="cv">Tschuwaschisch</language>
- <language type="cy">Walisisch</language>
- <language type="da">Tänisch</language>
- <language type="dak">Takota</language>
- <language type="dar">Targiinisch</language>
- <language type="day">Tajakisch</language>
- <language type="de">Tüütsch</language>
- <language type="de_AT">Öschtriichischs Tüütsch</language>
- <language type="de_CH">Schwiizer Hochtüütsch</language>
- <language type="del">Delaware-Schpraach</language>
- <language type="den">Slavey</language>
- <language type="dgr">Togrib</language>
- <language type="din">Tinka</language>
- <language type="doi">Togri</language>
- <language type="dra">Trawidischi Schpraach</language>
- <language type="dsb">Nidersorbisch</language>
- <language type="dua">Tuala</language>
- <language type="dum">Mittelniderländisch</language>
- <language type="dv">Malediivisch</language>
- <language type="dyu">Tiula</language>
- <language type="dz">Dschongkha</language>
- <language type="ee">Ewe</language>
- <language type="efi">Efikisch</language>
- <language type="egy">Altägyptisch</language>
- <language type="eka">Ekajuk</language>
- <language type="el">Griechisch</language>
- <language type="elx">Elamisch</language>
- <language type="en">Änglisch</language>
- <language type="en_AU">Auschtralischs Änglisch</language>
- <language type="en_CA">Kanadischs Änglisch</language>
- <language type="en_GB">Britischs Änglisch</language>
- <language type="en_US">Amerikanischs Änglisch</language>
- <language type="enm">Mittelänglisch</language>
- <language type="eo">Eschperanto</language>
- <language type="es">Schpanisch</language>
- <language type="es_419">Latiinamerikanischs Schpanisch</language>
- <language type="es_ES">Ibeerischs Schpanisch</language>
- <language type="et">Eestnisch</language>
- <language type="eu">Baskisch</language>
- <language type="ewo">Ewondo</language>
- <language type="fa">Persisch</language>
- <language type="fan">Pangwe-Schpraach</language>
- <language type="fat">Fanti-Schpraach</language>
- <language type="ff">Ful</language>
- <language type="fi">Finnisch</language>
- <language type="fil">Filipino</language>
- <language type="fiu">Finno-ugrischi Schpraach</language>
- <language type="fj">Fidschianisch</language>
- <language type="fo">Färöisch</language>
- <language type="fon">Fon</language>
- <language type="fr">Französisch</language>
- <language type="fr_CA">Kanadischs Französisch</language>
- <language type="fr_CH">Schwiizer Französisch</language>
- <language type="frm">Mittelfranzösisch</language>
- <language type="fro">Altfranzösisch</language>
- <language type="frr">Nordfriesisch</language>
- <language type="frs">Oschtfriesisch</language>
- <language type="fur">Friulisch</language>
- <language type="fy">Friesisch</language>
- <language type="ga">Iirisch</language>
- <language type="gaa">Ga</language>
- <language type="gay">Gayo</language>
- <language type="gba">Gbaya</language>
- <language type="gd">Schottisch-Gäälisch</language>
- <language type="gem">Germanischi Schpraach</language>
- <language type="gez">Geez</language>
- <language type="gil">Gilbertesisch</language>
- <language type="gl">Galizisch</language>
- <language type="gmh">Mittelhochtüütsch</language>
- <language type="gn">Guarani</language>
- <language type="goh">Althochtüütsch</language>
- <language type="gon">Gondi</language>
- <language type="gor">Mongondou</language>
- <language type="got">Gotisch</language>
- <language type="grb">Grebo</language>
- <language type="grc">Altgriechisch</language>
- <language type="gsw">Schwiizertüütsch</language>
- <language type="gu">Gujarati</language>
- <language type="gv">Manx-Gäälisch</language>
- <language type="gwi">Kutchinisch</language>
- <language type="ha">Haussa</language>
- <language type="hai">Haida</language>
- <language type="haw">Hawaiianisch</language>
- <language type="he">Hebräisch</language>
- <language type="hi">Hindi</language>
- <language type="hil">Hiligaynonisch</language>
- <language type="him">Himatschalisch</language>
- <language type="hit">Hethitisch</language>
- <language type="hmn">Miao</language>
- <language type="ho">Hiri-Motu</language>
- <language type="hr">Kroazisch</language>
- <language type="hsb">Obersorbisch</language>
- <language type="ht">Haitisch</language>
- <language type="hu">Ungarisch</language>
- <language type="hup">Hupa</language>
- <language type="hy">Armenisch</language>
- <language type="hz">Herero</language>
- <language type="ia">Interlingua</language>
- <language type="iba">Ibanisch</language>
- <language type="id">Indonesisch</language>
- <language type="ie">Interlingue</language>
- <language type="ig">Igbo</language>
- <language type="ii">Sezuanischs Yi</language>
- <language type="ijo">Ijo</language>
- <language type="ik">Inupiak</language>
- <language type="ilo">Ilokano</language>
- <language type="inc">Indoarischi Schpraach</language>
- <language type="ine">Indogermanischi Schpraach</language>
- <language type="inh">Inguschisch</language>
- <language type="io">Ido</language>
- <language type="ira">Iranischi Schpraach</language>
- <language type="iro">Irokesischi Schpraach</language>
- <language type="is">Iisländisch</language>
- <language type="it">Italiänisch</language>
- <language type="iu">Inukitut</language>
- <language type="ja">Japanisch</language>
- <language type="jbo">Lojbanisch</language>
- <language type="jpr">Jüüdisch-Persisch</language>
- <language type="jrb">Jüüdisch-Arabisch</language>
- <language type="jv">Javanisch</language>
- <language type="ka">Georgisch</language>
- <language type="kaa">Karakalpakisch</language>
- <language type="kab">Kabylisch</language>
- <language type="kac">Kachin-Schpraach</language>
- <language type="kaj">Jju</language>
- <language type="kam">Kamba</language>
- <language type="kar">Karenisch</language>
- <language type="kaw">Kawi</language>
- <language type="kbd">Kabardinisch</language>
- <language type="kcg">Tyap</language>
- <language type="kea" draft="unconfirmed">Kabuverdianu</language>
- <language type="kfo">Koro</language>
- <language type="kg">Kongolesisch</language>
- <language type="kha">Khasisch</language>
- <language type="khi">Khoisanisch</language>
- <language type="kho">Sakisch</language>
- <language type="ki">Kikuyu-Schpraach</language>
- <language type="kj">Kwanyama</language>
- <language type="kk">Kasachisch</language>
- <language type="kl">Gröönländisch</language>
- <language type="km">Kambodschanisch</language>
- <language type="kmb">Kimbundu-Schpraach</language>
- <language type="kn">Kannada</language>
- <language type="ko">Koreaanisch</language>
- <language type="kok">Konkani</language>
- <language type="kos">Kosraeanisch</language>
- <language type="kpe">Kpelle-Schpraach</language>
- <language type="kr">Kanuri-Schpraach</language>
- <language type="krc">Karatschaiisch-Balkarisch</language>
- <language type="krl">Karelisch</language>
- <language type="kro">Kru-Schpraach</language>
- <language type="kru">Oraon-Schpraach</language>
- <language type="ks">Kaschmirisch</language>
- <language type="ku">Kurdisch</language>
- <language type="kum">Kumükisch</language>
- <language type="kut">Kutenai-Schpraach</language>
- <language type="kv">Komi-Schpraach</language>
- <language type="kw">Kornisch</language>
- <language type="ky">Kirgiisisch</language>
- <language type="la">Latiin</language>
- <language type="lad">Ladino</language>
- <language type="lah">Lahndanisch</language>
- <language type="lam">Lambanisch</language>
- <language type="lb">Luxemburgisch</language>
- <language type="lez">Lesgisch</language>
- <language type="lg">Ganda-Schpraach</language>
- <language type="li">Limburgisch</language>
- <language type="ln">Lingala</language>
- <language type="lo">Laozisch</language>
- <language type="lol">Mongo</language>
- <language type="loz">Rotse-Schpraach</language>
- <language type="lt">Litauisch</language>
- <language type="lu">Luba</language>
- <language type="lua">Luba-Lulua</language>
- <language type="lui">Luiseno-Schpraach</language>
- <language type="lun">Lunda-Schpraach</language>
- <language type="luo">Luo-Schpraach</language>
- <language type="lus">Lushai-Schpraach</language>
- <language type="luy" draft="unconfirmed">Olulujia</language>
- <language type="lv">Lettisch</language>
- <language type="mad">Maduresisch</language>
- <language type="mag">Khotta</language>
- <language type="mai">Maithili</language>
- <language type="mak">Makassarisch</language>
- <language type="man">Manding-Schpraach</language>
- <language type="map">Auschtroneesischi Schpraach</language>
- <language type="mas">Massai-Schpraach</language>
- <language type="mdf">Mokschamordwinisch</language>
- <language type="mdr">Mandaresisch</language>
- <language type="men">Mende-Schpraach</language>
- <language type="mg">Madagassisch</language>
- <language type="mga">Mittelirisch</language>
- <language type="mh">Marschallesisch</language>
- <language type="mi">Maori</language>
- <language type="mic">Micmac-Schpraach</language>
- <language type="min">Minangkabau-Schpraach</language>
- <language type="mis">Anderi Schpraach</language>
- <language type="mk">Mazedonisch</language>
- <language type="mkh">Mon-Khmer-Schpraach</language>
- <language type="ml">Malayalam</language>
- <language type="mn">Mongolisch</language>
- <language type="mnc">Mandschurisch</language>
- <language type="mni">Meithei-Schpraach</language>
- <language type="mno">Manobo-Schpraach</language>
- <language type="mo">Moldawisch</language>
- <language type="moh">Mohawk-Schpraach</language>
- <language type="mos">Mossi-Schpraach</language>
- <language type="mr">Marathi</language>
- <language type="ms">Malaiisch</language>
- <language type="mt">Maltesisch</language>
- <language type="mul">Mehrschpraachig</language>
- <language type="mun">Munda-Schpraach</language>
- <language type="mus">Muskogee-Schpraach</language>
- <language type="mwl">Mirandesisch</language>
- <language type="mwr">Marwarisch</language>
- <language type="my">Birmanisch</language>
- <language type="myn">Maya-Schpraach</language>
- <language type="myv">Erzya</language>
- <language type="na">Nauruisch</language>
- <language type="nah">Nahuatl</language>
- <language type="nai">Nordamerikanischi Indianersprach</language>
- <language type="nap">Neapolitanisch</language>
- <language type="nb">Norwegisch Bokmål</language>
- <language type="nd">Nord-Ndebele-Schpraach</language>
- <language type="nds">Nidertüütsch</language>
- <language type="ne">Nepalesisch</language>
- <language type="new">Newarisch</language>
- <language type="ng">Ndonga</language>
- <language type="nia">Nias-Schpraach</language>
- <language type="nic">Nigerkordofanischi Schpraach</language>
- <language type="niu">Niue-Schpraach</language>
- <language type="nl">Niderländisch</language>
- <language type="nl_BE">Fläämisch</language>
- <language type="nn">Norwegisch Nynorsk</language>
- <language type="no">Norwegisch</language>
- <language type="nog">Nogaisch</language>
- <language type="non">Altnordisch</language>
- <language type="nqo">N’Ko</language>
- <language type="nr">Süüd-Ndebele-Schpraach</language>
- <language type="nso">Nord-Sotho-Schpraach</language>
- <language type="nub">Nubischi Schpraach</language>
- <language type="nv">Navajo-Schpraach</language>
- <language type="nwc">Alt-Newari</language>
- <language type="ny">Chewa-Schpraach</language>
- <language type="nym">Nyamwezi-Schpraach</language>
- <language type="nyn">Nyankole</language>
- <language type="nyo">Nyoro</language>
- <language type="nzi">Nzima</language>
- <language type="oc">Okzitanisch</language>
- <language type="oj">Ojibwa-Schpraach</language>
- <language type="om">Oromo</language>
- <language type="or">Orija</language>
- <language type="os">Ossezisch</language>
- <language type="osa">Osage-Schpraach</language>
- <language type="ota">Osmanisch</language>
- <language type="oto">Otomangue-Schpraach</language>
- <language type="pa">Pandschabisch</language>
- <language type="paa">Papua-Schpraach</language>
- <language type="pag">Pangasinanisch</language>
- <language type="pal">Mittelpersisch</language>
- <language type="pam">Pampanggan-Schpraach</language>
- <language type="pap">Papiamento</language>
- <language type="pau">Palau</language>
- <language type="peo">Altpersisch</language>
- <language type="phi">Philippine-Austronesischi Schpraach</language>
- <language type="phn">Phönikisch</language>
- <language type="pi">Pali</language>
- <language type="pl">Polnisch</language>
- <language type="pon">Ponapeanisch</language>
- <language type="pra">Prakrit</language>
- <language type="pro">Altprovenzalisch</language>
- <language type="ps">Paschtu</language>
- <language type="pt">Portugiisisch</language>
- <language type="pt_BR">Brasilianischs Portugiisisch</language>
- <language type="pt_PT">Iberischs Portugiisisch</language>
- <language type="qu">Quechua</language>
- <language type="raj">Rajasthani</language>
- <language type="rap">Oschterinsel-Schpraach</language>
- <language type="rar">Rarotonganisch</language>
- <language type="rm">Rätoromanisch</language>
- <language type="rn">Rundi-Schpraach</language>
- <language type="ro">Rumänisch</language>
- <language type="roa">Romanischi Schpraach</language>
- <language type="rom">Zigüünerschpraach</language>
- <language type="root">Root</language>
- <language type="ru">Russisch</language>
- <language type="rup">Aromunisch</language>
- <language type="rw">Ruandisch</language>
- <language type="sa">Sanschkrit</language>
- <language type="sad">Sandawe-Schpraach</language>
- <language type="sah">Jakutisch</language>
- <language type="sai">Süüdamerikanischi Indianerschpraach</language>
- <language type="sal">Salish-Schpraach</language>
- <language type="sam">Samaritanisch</language>
- <language type="sas">Sasak</language>
- <language type="sat">Santali</language>
- <language type="sc">Sardisch</language>
- <language type="scn">Sizilianisch</language>
- <language type="sco">Schottisch</language>
- <language type="sd">Sindhi</language>
- <language type="se">Nord-Samisch</language>
- <language type="sel">Selkupisch</language>
- <language type="sem">Semitischi Schpraach</language>
- <language type="sg">Sango</language>
- <language type="sga">Altirisch</language>
- <language type="sgn">Gebäärdeschpraach</language>
- <language type="sh">Serbo-Kroatisch</language>
- <language type="shn">Schan-Schpraach</language>
- <language type="si">Singhalesisch</language>
- <language type="sid">Sidamo</language>
- <language type="sio">Sioux-Schpraach</language>
- <language type="sit">Sinotibetischi Schpraach</language>
- <language type="sk">Slowakisch</language>
- <language type="sl">Slowenisch</language>
- <language type="sla">Slawischi Schpraach</language>
- <language type="sm">Samoanisch</language>
- <language type="sma">Süüd-Samisch</language>
- <language type="smi">Samisch</language>
- <language type="smj">Lule-Samisch</language>
- <language type="smn">Inari-Samisch</language>
- <language type="sms">Skolt-Samisch</language>
- <language type="sn">Schhona</language>
- <language type="snk">Soninke-Schpraach</language>
- <language type="so">Somali</language>
- <language type="sog">Sogdisch</language>
- <language type="son">Songhai-Schpraach</language>
- <language type="sq">Albanisch</language>
- <language type="sr">Serbisch</language>
- <language type="srn">Srananisch</language>
- <language type="srr">Serer-Schpraach</language>
- <language type="ss">Swazi</language>
- <language type="ssa">Nilosaharanischi Schpraach</language>
- <language type="st">Süüd-Sotho-Schpraach</language>
- <language type="su">Sundanesisch</language>
- <language type="suk">Sukuma-Schpraach</language>
- <language type="sus">Susu</language>
- <language type="sux">Sumerisch</language>
- <language type="sv">Schwedisch</language>
- <language type="sw">Suaheli</language>
- <language type="swb" draft="unconfirmed">Shimaorisch</language>
- <language type="syc">Altsyrisch</language>
- <language type="syr">Syrisch</language>
- <language type="ta">Tamilisch</language>
- <language type="tai">Thaischpraache</language>
- <language type="te">Telugu</language>
- <language type="tem">Temne</language>
- <language type="ter">Tereno-Schpraach</language>
- <language type="tet">Tetum-Schpraach</language>
- <language type="tg">Tadschikisch</language>
- <language type="th">Thailändisch</language>
- <language type="ti">Tigrinja</language>
- <language type="tig">Tigre</language>
- <language type="tiv">Tiv-Schpraach</language>
- <language type="tk">Turkmenisch</language>
- <language type="tkl">Tokelauanisch</language>
- <language type="tl">Tagalog</language>
- <language type="tlh">Klingonisch</language>
- <language type="tli">Tlingit-Schpraach</language>
- <language type="tmh">Tamaseq</language>
- <language type="tn">Tswana-Schpraach</language>
- <language type="to">Tongaisch</language>
- <language type="tog">Tsonga-Schpraach</language>
- <language type="tpi">Neumelanesisch</language>
- <language type="tr">Türkisch</language>
- <language type="ts">Tsonga</language>
- <language type="tsi">Tsimshian-Schpraach</language>
- <language type="tt">Tatarisch</language>
- <language type="tum">Tumbuka-Schpraach</language>
- <language type="tup">Tupi-Schpraache</language>
- <language type="tut">Altaischi Schpraachä</language>
- <language type="tvl">Elliceanisch</language>
- <language type="tw">Twi</language>
- <language type="ty">Tahitisch</language>
- <language type="tyv">Tuwinisch</language>
- <language type="udm">Udmurtisch</language>
- <language type="ug">Uigurisch</language>
- <language type="uga">Ugaritisch</language>
- <language type="uk">Ukrainisch</language>
- <language type="umb">Mbundu-Schpraach</language>
- <language type="und">Unbeschtimmti Schpraach</language>
- <language type="ur">Urdu</language>
- <language type="uz">Usbekisch</language>
- <language type="vai">Vai-Schpraach</language>
- <language type="ve">Venda-Schpraach</language>
- <language type="vi">Vietnamesisch</language>
- <language type="vo">Volapük</language>
- <language type="vot">Wotisch</language>
- <language type="wa">Wallonisch</language>
- <language type="wak">Wakashanisch</language>
- <language type="wal">Walamo-Schpraach</language>
- <language type="war">Waray</language>
- <language type="was">Washo-Schpraach</language>
- <language type="wen">Sorbisch</language>
- <language type="wo">Wolof</language>
- <language type="xal">Kalmückisch</language>
- <language type="xh">Xhosa</language>
- <language type="yao">Yao-Schpraach</language>
- <language type="yap">Yapesisch</language>
- <language type="yi">Jiddisch</language>
- <language type="yo">Yoruba</language>
- <language type="ypk">Yupik-Schpraach</language>
- <language type="yue" draft="unconfirmed">Kantonesisch</language>
- <language type="za">Zhuang</language>
- <language type="zap">Zapotekisch</language>
- <language type="zbl">Bliss-Symbool</language>
- <language type="zen">Zenaga</language>
- <language type="zh">Chineesisch</language>
- <language type="zh_Hans">Veräifachts Chineesisch</language>
- <language type="zh_Hant">Tradizionells Chineesisch</language>
- <language type="znd">Zande-Schpraach</language>
- <language type="zu">Zulu</language>
- <language type="zun">Zuni-Schpraach</language>
- <language type="zxx">Kän schpraachliche Inhalt</language>
- <language type="zza">Zaza</language>
- </languages>
- <scripts>
- <script type="Arab">Arabisch</script>
- <script type="Armi">Armi</script>
- <script type="Armn">Armenisch</script>
- <script type="Avst">Aveschtisch</script>
- <script type="Bali">Balinesisch</script>
- <script type="Batk">Battakisch</script>
- <script type="Beng">Bengalisch</script>
- <script type="Blis">Bliss-Symbool</script>
- <script type="Bopo">Bopomofo</script>
- <script type="Brah">Brahmi</script>
- <script type="Brai">Blindäschrift</script>
- <script type="Bugi">Buginesisch</script>
- <script type="Buhd">Buhid</script>
- <script type="Cans">UCAS</script>
- <script type="Cari">Karisch</script>
- <script type="Cham">Cham</script>
- <script type="Cher">Cherokee</script>
- <script type="Cirt">Cirth</script>
- <script type="Copt">Koptisch</script>
- <script type="Cprt">Zypriotisch</script>
- <script type="Cyrl">Kyrillisch</script>
- <script type="Cyrs">Altchileslawisch</script>
- <script type="Deva">Tövanagaari</script>
- <script type="Dsrt">Teseret</script>
- <script type="Egyd">Temozisch-Ägüptisch</script>
- <script type="Egyh">Hiraazisch-Ägüptisch</script>
- <script type="Egyp">Ägüptischi Hiroglüüfe</script>
- <script type="Ethi">Äzioopisch</script>
- <script type="Geok">Ghutsuri</script>
- <script type="Geor">Georgisch</script>
- <script type="Glag">Glagolitisch</script>
- <script type="Goth">Gotisch</script>
- <script type="Grek">Griechisch</script>
- <script type="Gujr">Guscharati</script>
- <script type="Guru">Gurmukhi</script>
- <script type="Hang">Hangul</script>
- <script type="Hani">Chineesisch</script>
- <script type="Hano">Hanunoo</script>
- <script type="Hans">Veräifachti Chineesischi Schrift</script>
- <script type="Hant">Tradizionelli Chineesischi Schrift</script>
- <script type="Hebr">Hebräisch</script>
- <script type="Hira">Hiragana</script>
- <script type="Hmng">Pahawh Hmong</script>
- <script type="Hrkt">Katakana oder Hiragana</script>
- <script type="Hung">Altungarisch</script>
- <script type="Inds">Indus-Schrift</script>
- <script type="Ital">Altitalisch</script>
- <script type="Java">Javanesisch</script>
- <script type="Jpan">Japanisch</script>
- <script type="Kali">Kayah Li</script>
- <script type="Kana">Katakana</script>
- <script type="Khar">Kharoshthi</script>
- <script type="Khmr">Khmer</script>
- <script type="Knda">Kannada</script>
- <script type="Kore">Koreanisch</script>
- <script type="Lana">Lanna</script>
- <script type="Laoo">Laotisch</script>
- <script type="Latf">Latiinisch - Fraktur-Variante</script>
- <script type="Latg">Latiinisch - Gäälischi Variante</script>
- <script type="Latn">Latiinisch</script>
- <script type="Lepc">Lepcha</script>
- <script type="Limb">Limbu</script>
- <script type="Lina">Linear A</script>
- <script type="Linb">Linear B</script>
- <script type="Lyci">Lykisch</script>
- <script type="Lydi">Lydisch</script>
- <script type="Mand">Mandäisch</script>
- <script type="Mani">Manichäisch</script>
- <script type="Maya">Maya-Hieroglyphä</script>
- <script type="Mero">Meroitisch</script>
- <script type="Mlym">Malaysisch</script>
- <script type="Mong">Mongolisch</script>
- <script type="Moon">Moon</script>
- <script type="Mtei">Meitei Mayek</script>
- <script type="Mymr">Burmesisch</script>
- <script type="Nkoo">N’Ko</script>
- <script type="Ogam">Ogham</script>
- <script type="Olck">Ol Chiki</script>
- <script type="Orkh">Orchon-Runä</script>
- <script type="Orya">Oriya</script>
- <script type="Osma">Osmanisch</script>
- <script type="Perm">Altpermisch</script>
- <script type="Phag">Phags-pa</script>
- <script type="Phlv">Pahlavi</script>
- <script type="Phnx">Phönizisch</script>
- <script type="Plrd">Pollard Phonetisch</script>
- <script type="Rjng">Rejang</script>
- <script type="Roro">Rongorongo</script>
- <script type="Runr">Runäschrift</script>
- <script type="Samr">Samaritanisch</script>
- <script type="Sara">Sarati</script>
- <script type="Saur">Saurashtra</script>
- <script type="Sgnw">Gebäärdeschpraach</script>
- <script type="Shaw">Shaw-Alphabet</script>
- <script type="Sinh">Singhalesisch</script>
- <script type="Sund">Sundanesisch</script>
- <script type="Sylo">Syloti Nagri</script>
- <script type="Syrc">Syrisch</script>
- <script type="Syre">Syrisch - Eschtrangelo-Variante</script>
- <script type="Syrj">Weschtsyrisch</script>
- <script type="Syrn">Oschtsyrisch</script>
- <script type="Tagb">Tagbanwa</script>
- <script type="Tale">Tai Le</script>
- <script type="Talu">Tai Lue</script>
- <script type="Taml">Tamilisch</script>
- <script type="Telu">Telugu</script>
- <script type="Teng">Tengwar</script>
- <script type="Tfng">Tifinagh</script>
- <script type="Tglg">Tagalog</script>
- <script type="Thaa">Thaana</script>
- <script type="Thai">Thai</script>
- <script type="Tibt">Tibeetisch</script>
- <script type="Ugar">Ugaritisch</script>
- <script type="Vaii">Vai</script>
- <script type="Visp">Sichtbari Schpraach</script>
- <script type="Xpeo">Altpersisch</script>
- <script type="Xsux">Sumerisch-akkadischi Keilschrift</script>
- <script type="Yiii">Yi</script>
- <script type="Zinh">G’eerbtä Schriftwärt</script>
- <script type="Zxxx">Schriftlosi Schpraach</script>
- <script type="Zyyy">Unbeschtimmt</script>
- <script type="Zzzz">Uncodiirti Schrift</script>
- </scripts>
- <territories>
- <territory type="001">Wält</territory>
- <territory type="002">Afrika</territory>
- <territory type="003">Nordameerika</territory>
- <territory type="005">Süüdameerika</territory>
- <territory type="009">Ozeaanie</territory>
- <territory type="011">Weschtafrika</territory>
- <territory type="013">Mittelameerika</territory>
- <territory type="014">Oschtafrika</territory>
- <territory type="015">Nordafrika</territory>
- <territory type="017">Zentraalafrika</territory>
- <territory type="018">Süüdlichs Afrika</territory>
- <territory type="019">Nord-, Mittel- und Süüdameerika</territory>
- <territory type="021">Nördlichs Ameerika</territory>
- <territory type="029">Karibik</territory>
- <territory type="030">Oschtaasie</territory>
- <territory type="034">Süüdaasie</territory>
- <territory type="035">Süüdoschtaasie</territory>
- <territory type="039">Süüdeuropa</territory>
- <territory type="053">Auschtraalie und Nöiseeland</territory>
- <territory type="054">Melaneesie</territory>
- <territory type="057">Mikroneesischs Inselgebiet</territory>
- <territory type="061">Polineesie</territory>
- <territory type="142">Aasie</territory>
- <territory type="143">Zentraalaasie</territory>
- <territory type="145">Weschtaasie</territory>
- <territory type="150">Euroopa</territory>
- <territory type="151">Oschteuroopa</territory>
- <territory type="154">Nordeuroopa</territory>
- <territory type="155">Weschteuroopa</territory>
- <territory type="419">Latiinameerika</territory>
- <territory type="AC" draft="unconfirmed">Ascension</territory>
- <territory type="AD">Andorra</territory>
- <territory type="AE">Veräinigti Arabischi Emiräät</territory>
- <territory type="AF">Afganischtan</territory>
- <territory type="AG">Antigua und Barbuda</territory>
- <territory type="AI">Anguilla</territory>
- <territory type="AL">Albaanie</territory>
- <territory type="AM">Armeenie</territory>
- <territory type="AN">Niderländischi Antille</territory>
- <territory type="AO">Angoola</territory>
- <territory type="AQ">Antarktis</territory>
- <territory type="AR">Argentiinie</territory>
- <territory type="AS">Amerikaanisch-Samoa</territory>
- <territory type="AT">Ööschtriich</territory>
- <territory type="AU">Auschtraalie</territory>
- <territory type="AW">Aruba</territory>
- <territory type="AX">Aaland-Insle</territory>
- <territory type="AZ">Aserbäidschan</territory>
- <territory type="BA">Bosnie und Herzegowina</territory>
- <territory type="BB">Barbados</territory>
- <territory type="BD">Bangladesch</territory>
- <territory type="BE">Belgie</territory>
- <territory type="BF">Burkina Faaso</territory>
- <territory type="BG">Bulgaarie</territory>
- <territory type="BH">Bachräin</territory>
- <territory type="BI">Burundi</territory>
- <territory type="BJ">Benin</territory>
- <territory type="BL">St. Barthelemi</territory>
- <territory type="BM">Bermuuda</territory>
- <territory type="BN">Brunäi Tarussalam</territory>
- <territory type="BO">Boliivie</territory>
- <territory type="BR">Brasilie</territory>
- <territory type="BS">Bahaamas</territory>
- <territory type="BT">Bhutan</territory>
- <territory type="BV">Bouvet-Insle</territory>
- <territory type="BW">Botswana</territory>
- <territory type="BY">Wiissrussland</territory>
- <territory type="BZ">Belize</territory>
- <territory type="CA">Kanada</territory>
- <territory type="CC">Kokos-Insle</territory>
- <territory type="CD">Temokraatischi Republik Kongo</territory>
- <territory type="CD" alt="variant" draft="unconfirmed">Kongo-Kinshasa</territory>
- <territory type="CF">Zentraalafrikaanischi Republik</territory>
- <territory type="CG">Kongo</territory>
- <territory type="CG" alt="variant" draft="unconfirmed">Kongo-Brazzaville</territory>
- <territory type="CH">Schwiiz</territory>
- <territory type="CI">Elfebäiküschte</territory>
- <territory type="CI" alt="variant" draft="unconfirmed">Elfebäiküschte</territory>
- <territory type="CK">Cook-Insle</territory>
- <territory type="CL">Tschile</territory>
- <territory type="CM">Kamerun</territory>
- <territory type="CN">Chiina</territory>
- <territory type="CO">Kolumbie</territory>
- <territory type="CP" draft="unconfirmed">Clipperton</territory>
- <territory type="CR">Coschta Rica</territory>
- <territory type="CU">Kuba</territory>
- <territory type="CV">Kap Verde</territory>
- <territory type="CX">Wienachts-Insle</territory>
- <territory type="CY">Tsüpere</territory>
- <territory type="CZ">Tschechischi Republik</territory>
- <territory type="DE">Tüütschland</territory>
- <territory type="DG" draft="unconfirmed">Diego Garcia</territory>
- <territory type="DJ">Tschibuuti</territory>
- <territory type="DK">Tänemark</territory>
- <territory type="DM">Tominica</territory>
- <territory type="DO">Tominikaanischi Republik</territory>
- <territory type="DZ">Algeerie</territory>
- <territory type="EA" draft="unconfirmed">Ceuta und Melilla</territory>
- <territory type="EC">Ecuador</territory>
- <territory type="EE">Eestland</territory>
- <territory type="EG">Ägüpte</territory>
- <territory type="EH">Weschtsahara</territory>
- <territory type="ER">Äritreea</territory>
- <territory type="ES">Schpanie</territory>
- <territory type="ET">Äzioopie</territory>
- <territory type="EU">Europääischi Unioon</territory>
- <territory type="FI">Finnland</territory>
- <territory type="FJ">Fitschi</territory>
- <territory type="FK">Falkland-Insle</territory>
- <territory type="FK" alt="variant" draft="unconfirmed">Falkland-Insle</territory>
- <territory type="FM">Mikroneesie</territory>
- <territory type="FO">Färöer</territory>
- <territory type="FR">Frankriich</territory>
- <territory type="GA">Gabun</territory>
- <territory type="GB">Veräinigts Chönigriich</territory>
- <territory type="GD">Grenada</territory>
- <territory type="GE">Geoorgie</territory>
- <territory type="GF">Französisch-Guäjaana</territory>
- <territory type="GG">Gäärnsi</territory>
- <territory type="GH">Gaana</territory>
- <territory type="GI">Gibraltar</territory>
- <territory type="GL">Gröönland</territory>
- <territory type="GM">Gambia</territory>
- <territory type="GN">Gineea</territory>
- <territory type="GP">Guadälup</territory>
- <territory type="GQ">Äquatoriaalgineea</territory>
- <territory type="GR">Griecheland</territory>
- <territory type="GS">Süüdgeorgie und d’süüdlichi Sändwitsch-Insle</territory>
- <territory type="GT">Guatemaala</territory>
- <territory type="GU">Guam</territory>
- <territory type="GW">Gineea-Bissau</territory>
- <territory type="GY">Guäjaana</territory>
- <territory type="HK">Sonderverwaltigszone Hongkong</territory>
- <territory type="HK" alt="short">Hongkong</territory>
- <territory type="HM">Höörd- und MäcDonald-Insle</territory>
- <territory type="HN">Honduras</territory>
- <territory type="HR">Kroaazie</territory>
- <territory type="HT">Haiti</territory>
- <territory type="HU">Ungarn</territory>
- <territory type="IC" draft="unconfirmed">Canarische Eilanden</territory>
- <territory type="ID">Indoneesie</territory>
- <territory type="IE">Irland</territory>
- <territory type="IL">Israel</territory>
- <territory type="IM">Insle vo Män</territory>
- <territory type="IN">Indie</territory>
- <territory type="IO">Britischs Territoorium im Indische Oozean</territory>
- <territory type="IQ">Iraak</territory>
- <territory type="IR">Iraan</territory>
- <territory type="IS">Iisland</territory>
- <territory type="IT">Itaalie</territory>
- <territory type="JE">Dschörsi</territory>
- <territory type="JM">Dschamäika</territory>
- <territory type="JO">Jordaanie</territory>
- <territory type="JP">Japan</territory>
- <territory type="KE">Keenia</territory>
- <territory type="KG">Kirgiisischtan</territory>
- <territory type="KH">Kambodscha</territory>
- <territory type="KI">Kiribaati</territory>
- <territory type="KM">Komoore</territory>
- <territory type="KN">St. Kitts und Niuwis</territory>
- <territory type="KP">Demokraatischi Volksrepublik Koreea</territory>
- <territory type="KR">Republik Koreea</territory>
- <territory type="KW">Kuwäit</territory>
- <territory type="KY">Käimän-Insle</territory>
- <territory type="KZ">Kasachschtan</territory>
- <territory type="LA">Laaos</territory>
- <territory type="LB">Libanon</territory>
- <territory type="LC">Sankta Lutschiia</territory>
- <territory type="LI">Liächteschtäi</territory>
- <territory type="LK">Schri Lanka</territory>
- <territory type="LR">Libeeria</territory>
- <territory type="LS">Lesooto</territory>
- <territory type="LT">Littaue</territory>
- <territory type="LU">Luxemburg</territory>
- <territory type="LV">Lettland</territory>
- <territory type="LY">Lüübie</territory>
- <territory type="MA">Marokko</territory>
- <territory type="MC">Monaco</territory>
- <territory type="MD">Republik Moldau</territory>
- <territory type="ME">Monteneegro</territory>
- <territory type="MF">St. Martin</territory>
- <territory type="MG">Madagaschkar</territory>
- <territory type="MH">Marshallinsle</territory>
- <territory type="MK">Mazedoonie</territory>
- <territory type="MK" alt="variant" draft="unconfirmed">Mazedoonie</territory>
- <territory type="ML">Maali</territory>
- <territory type="MM">Müanmar</territory>
- <territory type="MN">Mongolei</territory>
- <territory type="MO">Sonderverwaltigszone Macao</territory>
- <territory type="MO" alt="short">Macao</territory>
- <territory type="MP">Nördlichi Mariaane</territory>
- <territory type="MQ">Martinigg</territory>
- <territory type="MR">Mauretaanie</territory>
- <territory type="MS">Moosörrat</territory>
- <territory type="MT">Malta</territory>
- <territory type="MU">Mauriizius</territory>
- <territory type="MV">Malediiwe</territory>
- <territory type="MW">Malaawi</territory>
- <territory type="MX">Mexiko</territory>
- <territory type="MY">Malaisia</territory>
- <territory type="MZ">Mosambik</territory>
- <territory type="NA">Namiibia</territory>
- <territory type="NC">Nöikaledoonie</territory>
- <territory type="NE">Niger</territory>
- <territory type="NF">Norfolk-Insle</territory>
- <territory type="NG">Nigeeria</territory>
- <territory type="NI">Nicaraagua</territory>
- <territory type="NL">Niderland</territory>
- <territory type="NO">Norweege</territory>
- <territory type="NP">Neepal</territory>
- <territory type="NR">Nauru</territory>
- <territory type="NU">Niue</territory>
- <territory type="NZ">Nöiseeland</territory>
- <territory type="OM">Omaan</territory>
- <territory type="PA">Panama</territory>
- <territory type="PE">Peru</territory>
- <territory type="PF">Französisch-Polineesie</territory>
- <territory type="PG">Papua-Neuguinea</territory>
- <territory type="PH">Philippiine</territory>
- <territory type="PK">Pakischtan</territory>
- <territory type="PL">Poole</territory>
- <territory type="PM">St. Pierr und Miggelo</territory>
- <territory type="PN">Pitggäärn</territory>
- <territory type="PR">Puerto Riggo</territory>
- <territory type="PS">Paläschtinänsischi Gebiet</territory>
- <territory type="PT">Portugal</territory>
- <territory type="PW">Palau</territory>
- <territory type="PY">Paraguai</territory>
- <territory type="QA">Ggatar</territory>
- <territory type="QO">Üssers Ozeaanie</territory>
- <territory type="RE">Reünioon</territory>
- <territory type="RO">Rumäänie</territory>
- <territory type="RS">Särbie</territory>
- <territory type="RU">Russischi Föderazioon</territory>
- <territory type="RW">Ruanda</territory>
- <territory type="SA">Saudi-Araabie</territory>
- <territory type="SB">Salomoone</territory>
- <territory type="SC">Seischälle</territory>
- <territory type="SD">Sudan</territory>
- <territory type="SE">Schweede</territory>
- <territory type="SG">Singapuur</territory>
- <territory type="SH">St. Helena</territory>
- <territory type="SI">Sloweenie</territory>
- <territory type="SJ">Svalbard und Jaan Määie</territory>
- <territory type="SK">Slowakäi</territory>
- <territory type="SL">Sierra Leoone</territory>
- <territory type="SM">San Mariino</territory>
- <territory type="SN">Senegal</territory>
- <territory type="SO">Somaalia</territory>
- <territory type="SR">Surinam</territory>
- <territory type="ST">Sao Tome und Prinssipe</territory>
- <territory type="SV">El Salvador</territory>
- <territory type="SY">Süürie</territory>
- <territory type="SZ">Swasiland</territory>
- <territory type="TA" draft="unconfirmed">Tristan da Cunha</territory>
- <territory type="TC">Törks- und Gaiggos-Insle</territory>
- <territory type="TD">Tschad</territory>
- <territory type="TF">Französischi Süüd- und Antarktisgebiet</territory>
- <territory type="TG">Toogo</territory>
- <territory type="TH">Thailand</territory>
- <territory type="TJ">Tadschikischtan</territory>
- <territory type="TK">Tokelau</territory>
- <territory type="TL">Oschttimor</territory>
- <territory type="TL" alt="variant" draft="unconfirmed">Oschttimor</territory>
- <territory type="TM">Turkmeenischtan</territory>
- <territory type="TN">Tuneesie</territory>
- <territory type="TO">Tonga</territory>
- <territory type="TR">Türggei</territory>
- <territory type="TT">Trinidad und Tobaago</territory>
- <territory type="TV">Tuvalu</territory>
- <territory type="TW">Taiwan</territory>
- <territory type="TZ">Tansaniia</territory>
- <territory type="UA">Ukraiine</territory>
- <territory type="UG">Uganda</territory>
- <territory type="UM">Amerikanisch-Ozeaanie</territory>
- <territory type="US">Veräinigti Schtaate</territory>
- <territory type="UY">Uruguay</territory>
- <territory type="UZ">Uschbeekischtan</territory>
- <territory type="VA">Vatikanstadt</territory>
- <territory type="VC">Sankt Wässä und d’Grönadiine</territory>
- <territory type="VE">Venezueela</territory>
- <territory type="VG">Britischi Jungfere-Insle</territory>
- <territory type="VI">Amerikaanischi Jungfere-Insle</territory>
- <territory type="VN">Wietnam</territory>
- <territory type="VU">Wanuatu</territory>
- <territory type="WF">Wallis und Futuuna</territory>
- <territory type="WS">Samooa</territory>
- <territory type="YE">Jeeme</territory>
- <territory type="YT">Majott</territory>
- <territory type="ZA">Süüdafrika</territory>
- <territory type="ZM">Sambia</territory>
- <territory type="ZW">Simbabwe</territory>
- <territory type="ZZ">Unbekannti oder ungültigi Regioon</territory>
- </territories>
- <variants>
- <variant type="1901">Alti tüütschi Rächtschriibig</variant>
- <variant type="1994">Schtandardisierti Resianischi Rächtschriibig</variant>
- <variant type="1996">Nööi tüütschi Rächtschriibig</variant>
- <variant type="1606NICT">Schpaats Mittelfranzösisch</variant>
- <variant type="AREVELA">Oschtarmeenisch</variant>
- <variant type="AREVMDA">Weschtarmeenisch</variant>
- <variant type="BAKU1926">Äinheitlichs Türggischs Alfabeet</variant>
- <variant type="BISKE">Bela-Tialäkt</variant>
- <variant type="BOONT">Boontling</variant>
- <variant type="FONIPA">Foneetisch (IPA)</variant>
- <variant type="FONUPA">Foneetisch (UPA)</variant>
- <variant type="LIPAW">Lipowaz-Mundart</variant>
- <variant type="MONOTON">Monotonisch</variant>
- <variant type="NEDIS">Natisone-Mundart</variant>
- <variant type="NJIVA">Njiva-Mundart</variant>
- <variant type="OSOJS">Osojane-Mundart</variant>
- <variant type="PINYIN" draft="unconfirmed">Pinyin</variant>
- <variant type="POLYTON">Politonisch</variant>
- <variant type="POSIX">Posix</variant>
- <variant type="REVISED">Nööi Rächtschriibig</variant>
- <variant type="ROZAJ">Resianisch</variant>
- <variant type="SAAHO">Saho</variant>
- <variant type="SCOTLAND">Schottischs Schtandardänglisch</variant>
- <variant type="SCOUSE">Scouse-Mundart</variant>
- <variant type="SOLBA">Solbica-Mundart</variant>
- <variant type="TARASK">Taraskievica-Rächtschriibig</variant>
- <variant type="WADEGILE" draft="unconfirmed">Wade-Giles</variant>
- </variants>
- <keys>
- <key type="calendar">Kaländer</key>
- <key type="collation">Sortiirig</key>
- <key type="currency">Wäährig</key>
- </keys>
- <types>
- <type type="big5han" key="collation">Tradizionells Chineesisch - Big5</type>
- <type type="buddhist" key="calendar">Buddhischtisch Kaländer</type>
- <type type="chinese" key="calendar">Chineesisch Kaländer</type>
- <type type="gb2312han" key="collation">Veräifachts Chineesisch - GB2312</type>
- <type type="gregorian" key="calendar">Gregoriaanisch Kaländer</type>
- <type type="hebrew" key="calendar">Hebrääisch Kaländer</type>
- <type type="indian" key="calendar">Indisch Nationaalkaländer</type>
- <type type="islamic" key="calendar">Islaamisch Kaländer</type>
- <type type="islamic-civil" key="calendar">Bürgerlich islaamisch Kaländer</type>
- <type type="japanese" key="calendar">Japaanisch Kaländer</type>
- <type type="phonebook" key="collation">Telifonbuech-Sortiirregle</type>
- <type type="pinyin" key="collation">Pinyin-Sortiirregle</type>
- <type type="roc" key="calendar">Kaländer vor Republik Chiina</type>
- <type type="stroke" key="collation">Strichfolg</type>
- <type type="traditional" key="collation">Tradizionelli Sortiir-Regle</type>
- </types>
- <measurementSystemNames>
- <measurementSystemName type="metric">metrisch</measurementSystemName>
- <measurementSystemName type="US">angloamerikaanisch</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">Schpraach: {0}</codePattern>
- <codePattern type="script">Schrift: {0}</codePattern>
- <codePattern type="territory">Regioon: {0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <characters>
- <exemplarCharacters>[a ä b c d e f g h i j k l m n o ö p q r s t u ü v w x y z]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[á à ă â å ā æ ç é è ĕ ê ë ē í ì ĭ î ï ī ñ ó ò ŏ ô ø ō œ ú ù ŭ û ū ÿ]</exemplarCharacters>
- <exemplarCharacters type="index" draft="unconfirmed">[A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]</exemplarCharacters>
- </characters>
- <delimiters>
- <quotationStart>«</quotationStart>
- <quotationEnd>»</quotationEnd>
- <alternateQuotationStart>‹</alternateQuotationStart>
- <alternateQuotationEnd>›</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="buddhist">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE d. MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d. MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d. MMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>d.M.y</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- </calendar>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, d. MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d. MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd.MM.y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd.MM.yy GGGGG</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">E d.</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="HHmm">HH:mm</dateFormatItem>
- <dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">d.M.</dateFormatItem>
- <dateFormatItem id="MEd">E, d.M.</dateFormatItem>
- <dateFormatItem id="MMd">d.MM.</dateFormatItem>
- <dateFormatItem id="MMdd">dd.MM.</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d. MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">E d. MMM</dateFormatItem>
- <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
- <dateFormatItem id="MMMMdd">dd. MMMM</dateFormatItem>
- <dateFormatItem id="MMMMEd">E d. MMMM</dateFormatItem>
- <dateFormatItem id="mmss">mm:ss</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">y-M</dateFormatItem>
- <dateFormatItem id="yMEd">E, y-M-d</dateFormatItem>
- <dateFormatItem id="yMM">MM.y</dateFormatItem>
- <dateFormatItem id="yMMdd">dd.MM.y</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMEd">E, d. MMM y</dateFormatItem>
- <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
- <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d.-d.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a - h a</greatestDifference>
- <greatestDifference id="h">h-h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH-HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm-h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm-HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm-h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm-h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm-HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a - h a v</greatestDifference>
- <greatestDifference id="h">h-h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH-HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M.-M.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">dd.MM. - dd.MM.</greatestDifference>
- <greatestDifference id="M">dd.MM. - dd.MM.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E, dd.MM. - E, dd.MM.</greatestDifference>
- <greatestDifference id="M">E, dd.MM. - E, dd.MM.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM-MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d.-d. MMM</greatestDifference>
- <greatestDifference id="M">d. MMM - d. MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E, d. - E, d. MMM</greatestDifference>
- <greatestDifference id="M">E, d. MMM - E, d. MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMM">
- <greatestDifference id="M">LLLL-LLLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y-y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">MM.y - MM.y</greatestDifference>
- <greatestDifference id="y">MM.y - MM.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">dd.MM.y - dd.MM.y</greatestDifference>
- <greatestDifference id="M">dd.MM.y - dd.MM.y</greatestDifference>
- <greatestDifference id="y">dd.MM.y - dd.MM.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E, dd.MM.y - E, dd.MM.y</greatestDifference>
- <greatestDifference id="M">E, dd.MM.y - E, dd.MM.y</greatestDifference>
- <greatestDifference id="y">E, dd.MM.y - E, dd.MM.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">MMM-MMM y</greatestDifference>
- <greatestDifference id="y">MMM y - MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d.-d. MMM y</greatestDifference>
- <greatestDifference id="M">d. MMM - d. MMM y</greatestDifference>
- <greatestDifference id="y">d. MMM y - d. MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E, d. - E, d. MMM y</greatestDifference>
- <greatestDifference id="M">E, d. MMM - E, d. MMM y</greatestDifference>
- <greatestDifference id="y">E, d. MMM y - E, d. MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">MM – MM.y</greatestDifference>
- <greatestDifference id="y">MM.y – MM.y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">Jan</month>
- <month type="2">Feb</month>
- <month type="3">Mär</month>
- <month type="4">Apr</month>
- <month type="5">Mai</month>
- <month type="6">Jun</month>
- <month type="7">Jul</month>
- <month type="8">Aug</month>
- <month type="9">Sep</month>
- <month type="10">Okt</month>
- <month type="11">Nov</month>
- <month type="12">Dez</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">Januar</month>
- <month type="2">Februar</month>
- <month type="3">März</month>
- <month type="4">April</month>
- <month type="5">Mai</month>
- <month type="6">Juni</month>
- <month type="7">Juli</month>
- <month type="8">Auguscht</month>
- <month type="9">Septämber</month>
- <month type="10">Oktoober</month>
- <month type="11">Novämber</month>
- <month type="12">Dezämber</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="narrow">
- <month type="1">J</month>
- <month type="2">F</month>
- <month type="3">M</month>
- <month type="4">A</month>
- <month type="5">M</month>
- <month type="6">J</month>
- <month type="7">J</month>
- <month type="8">A</month>
- <month type="9">S</month>
- <month type="10">O</month>
- <month type="11">N</month>
- <month type="12">D</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">Su.</day>
- <day type="mon">Mä.</day>
- <day type="tue">Zi.</day>
- <day type="wed">Mi.</day>
- <day type="thu">Du.</day>
- <day type="fri">Fr.</day>
- <day type="sat">Sa.</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">Sunntig</day>
- <day type="mon">Määntig</day>
- <day type="tue">Ziischtig</day>
- <day type="wed">Mittwuch</day>
- <day type="thu">Dunschtig</day>
- <day type="fri">Friitig</day>
- <day type="sat">Samschtig</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="narrow">
- <day type="sun">S</day>
- <day type="mon">M</day>
- <day type="tue">D</day>
- <day type="wed">M</day>
- <day type="thu">D</day>
- <day type="fri">F</day>
- <day type="sat">S</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">Q1</quarter>
- <quarter type="2">Q2</quarter>
- <quarter type="3">Q3</quarter>
- <quarter type="4">Q4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1. Quartal</quarter>
- <quarter type="2">2. Quartal</quarter>
- <quarter type="3">3. Quartal</quarter>
- <quarter type="4">4. Quartal</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="abbreviated">
- <dayPeriod type="am" draft="unconfirmed">v.m.</dayPeriod>
- <dayPeriod type="pm" draft="unconfirmed">n.m.</dayPeriod>
- </dayPeriodWidth>
- <dayPeriodWidth type="wide">
- <dayPeriod type="am">vorm.</dayPeriod>
- <dayPeriod type="pm">nam.</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- <dayPeriodContext type="stand-alone">
- <dayPeriodWidth type="wide">
- <dayPeriod type="am" draft="unconfirmed">Vormittag</dayPeriod>
- <dayPeriod type="pm" draft="unconfirmed">Namittag</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraNames>
- <era type="0">v. Chr.</era>
- <era type="1">n. Chr.</era>
- </eraNames>
- <eraAbbr>
- <era type="0">v. Chr.</era>
- <era type="1">n. Chr.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, d. MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d. MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd.MM.y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd.MM.yy</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>HH:mm:ss zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>HH:mm:ss z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>HH:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>HH:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">E d.</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="HHmm">HH:mm</dateFormatItem>
- <dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">d.M.</dateFormatItem>
- <dateFormatItem id="MEd">E, d.M.</dateFormatItem>
- <dateFormatItem id="MMd">d.MM.</dateFormatItem>
- <dateFormatItem id="MMdd">dd.MM.</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d. MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">E d. MMM</dateFormatItem>
- <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
- <dateFormatItem id="MMMMdd">dd. MMMM</dateFormatItem>
- <dateFormatItem id="MMMMEd">E d. MMMM</dateFormatItem>
- <dateFormatItem id="mmss">mm:ss</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">y-M</dateFormatItem>
- <dateFormatItem id="yMEd">E, y-M-d</dateFormatItem>
- <dateFormatItem id="yMM">MM.y</dateFormatItem>
- <dateFormatItem id="yMMdd">dd.MM.y</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMEd">E, d. MMM y</dateFormatItem>
- <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
- <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d.-d.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a - h a</greatestDifference>
- <greatestDifference id="h">h-h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH-HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm-h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">HH:mm-HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm-h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm-h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">HH:mm-HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">h a - h a v</greatestDifference>
- <greatestDifference id="h">h-h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH-HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M.-M.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">dd.MM. - dd.MM.</greatestDifference>
- <greatestDifference id="M">dd.MM. - dd.MM.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E, dd.MM. - E, dd.MM.</greatestDifference>
- <greatestDifference id="M">E, dd.MM. - E, dd.MM.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM-MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d.-d. MMM</greatestDifference>
- <greatestDifference id="M">d. MMM - d. MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E, d. - E, d. MMM</greatestDifference>
- <greatestDifference id="M">E, d. MMM - E, d. MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMM">
- <greatestDifference id="M">LLLL-LLLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y-y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">MM.y - MM.y</greatestDifference>
- <greatestDifference id="y">MM.y - MM.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">dd.MM.y - dd.MM.y</greatestDifference>
- <greatestDifference id="M">dd.MM.y - dd.MM.y</greatestDifference>
- <greatestDifference id="y">dd.MM.y - dd.MM.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E, dd.MM.y - E, dd.MM.y</greatestDifference>
- <greatestDifference id="M">E, dd.MM.y - E, dd.MM.y</greatestDifference>
- <greatestDifference id="y">E, dd.MM.y - E, dd.MM.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">MMM-MMM y</greatestDifference>
- <greatestDifference id="y">MMM y - MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d.-d. MMM y</greatestDifference>
- <greatestDifference id="M">d. MMM - d. MMM y</greatestDifference>
- <greatestDifference id="y">d. MMM y - d. MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E, d. - E, d. MMM y</greatestDifference>
- <greatestDifference id="M">E, d. MMM - E, d. MMM y</greatestDifference>
- <greatestDifference id="y">E, d. MMM y - E, d. MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">MM – MM.y</greatestDifference>
- <greatestDifference id="y">MM.y – MM.y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- </calendars>
- <fields>
- <field type="era">
- <displayName>Epoche</displayName>
- </field>
- <field type="year">
- <displayName>Jaar</displayName>
- </field>
- <field type="month">
- <displayName>Monet</displayName>
- </field>
- <field type="week">
- <displayName>Wuche</displayName>
- </field>
- <field type="day">
- <displayName>Tag</displayName>
- <relative type="-2">vorgeschter</relative>
- <relative type="-1">geschter</relative>
- <relative type="0">hüt</relative>
- <relative type="1">moorn</relative>
- <relative type="2">übermoorn</relative>
- </field>
- <field type="weekday">
- <displayName>Wuchetag</displayName>
- </field>
- <field type="dayperiod">
- <displayName>Tageshälfti</displayName>
- </field>
- <field type="hour">
- <displayName>Schtund</displayName>
- </field>
- <field type="minute">
- <displayName>Minuute</displayName>
- </field>
- <field type="second">
- <displayName>Sekunde</displayName>
- </field>
- <field type="zone">
- <displayName>Zone</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <hourFormat>+HH:mm;-HH:mm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <fallbackFormat>{1} ({0})</fallbackFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>Unbekannt</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>Tirana</exemplarCity>
- </zone>
- <zone type="Asia/Yerevan">
- <exemplarCity>Erivan</exemplarCity>
- </zone>
- <zone type="Antarctica/South_Pole">
- <exemplarCity>Süüdpol</exemplarCity>
- </zone>
- <zone type="Antarctica/Vostok">
- <exemplarCity>Woschtok</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity>Dumont D'Urville</exemplarCity>
- </zone>
- <zone type="Europe/Vienna">
- <exemplarCity>Wien</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>Brüssel</exemplarCity>
- </zone>
- <zone type="Africa/Ouagadougou">
- <exemplarCity>Wagadugu</exemplarCity>
- </zone>
- <zone type="Atlantic/Bermuda">
- <exemplarCity>Bermudas</exemplarCity>
- </zone>
- <zone type="Europe/Zurich">
- <exemplarCity>Züri</exemplarCity>
- </zone>
- <zone type="Pacific/Easter">
- <exemplarCity>Oschterinsle</exemplarCity>
- </zone>
- <zone type="America/Havana">
- <exemplarCity>Havanna</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity>Kap Verde</exemplarCity>
- </zone>
- <zone type="America/Curacao">
- <exemplarCity>Curaçao</exemplarCity>
- </zone>
- <zone type="Indian/Christmas">
- <exemplarCity>Wienachts-Insle</exemplarCity>
- </zone>
- <zone type="Asia/Nicosia">
- <exemplarCity>Nikosia</exemplarCity>
- </zone>
- <zone type="Africa/Djibouti">
- <exemplarCity>Dschibuti</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>Kopehage</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity>Algier</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity>Kairo</exemplarCity>
- </zone>
- <zone type="Africa/El_Aaiun">
- <exemplarCity>El Aaiún</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>Kanare</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>Addis Abeba</exemplarCity>
- </zone>
- <zone type="Pacific/Fiji">
- <exemplarCity>Fidschi</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity>Färöer</exemplarCity>
- </zone>
- <zone type="Asia/Tbilisi">
- <exemplarCity>Tiflis</exemplarCity>
- </zone>
- <zone type="Africa/Accra">
- <exemplarCity>Akkra</exemplarCity>
- </zone>
- <zone type="America/Scoresbysund">
- <exemplarCity>Ittoqqortoormiit</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>Athen</exemplarCity>
- </zone>
- <zone type="Atlantic/South_Georgia">
- <exemplarCity>Süüd-Georgie</exemplarCity>
- </zone>
- <zone type="Asia/Hong_Kong">
- <exemplarCity>Hongkong</exemplarCity>
- </zone>
- <zone type="Asia/Baghdad">
- <exemplarCity>Bagdad</exemplarCity>
- </zone>
- <zone type="Asia/Tehran">
- <exemplarCity>Teheran</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>Rom</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity>Jamaika</exemplarCity>
- </zone>
- <zone type="Asia/Tokyo">
- <exemplarCity>Tokio</exemplarCity>
- </zone>
- <zone type="Asia/Bishkek">
- <exemplarCity>Bischkek</exemplarCity>
- </zone>
- <zone type="Indian/Comoro">
- <exemplarCity>Komore</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>St. Kitts</exemplarCity>
- </zone>
- <zone type="Asia/Pyongyang">
- <exemplarCity>Pjöngjang</exemplarCity>
- </zone>
- <zone type="America/Cayman">
- <exemplarCity>Kaimaninsle</exemplarCity>
- </zone>
- <zone type="Asia/Aqtobe">
- <exemplarCity>Aktobe</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>St. Lucia</exemplarCity>
- </zone>
- <zone type="Europe/Vilnius">
- <exemplarCity>Wilna</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>Luxemburg</exemplarCity>
- </zone>
- <zone type="Europe/Chisinau">
- <exemplarCity>Kischinau</exemplarCity>
- </zone>
- <zone type="Asia/Ulaanbaatar">
- <exemplarCity>Ulan-Baator</exemplarCity>
- </zone>
- <zone type="Asia/Macau">
- <exemplarCity>Macao</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>Maledive</exemplarCity>
- </zone>
- <zone type="America/Mexico_City">
- <exemplarCity>Mexiko-Schtadt</exemplarCity>
- </zone>
- <zone type="Asia/Muscat">
- <exemplarCity>Muschkat</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>Warschau</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>Azore</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>Lissabon</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity>Asunción</exemplarCity>
- </zone>
- <zone type="Asia/Qatar">
- <exemplarCity>Katar</exemplarCity>
- </zone>
- <zone type="Indian/Reunion">
- <exemplarCity>Réunion</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>Bukarescht</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>Moskau</exemplarCity>
- </zone>
- <zone type="Asia/Yekaterinburg">
- <exemplarCity>Jekaterinburg</exemplarCity>
- </zone>
- <zone type="Asia/Novosibirsk">
- <exemplarCity>Nowosibirsk</exemplarCity>
- </zone>
- <zone type="Asia/Krasnoyarsk">
- <exemplarCity>Krasnojarsk</exemplarCity>
- </zone>
- <zone type="Asia/Yakutsk">
- <exemplarCity>Jakutsk</exemplarCity>
- </zone>
- <zone type="Asia/Vladivostok">
- <exemplarCity>Wladiwostok</exemplarCity>
- </zone>
- <zone type="Asia/Sakhalin">
- <exemplarCity>Sachalin</exemplarCity>
- </zone>
- <zone type="Asia/Kamchatka">
- <exemplarCity>Kamtschatka</exemplarCity>
- </zone>
- <zone type="Asia/Riyadh">
- <exemplarCity>Riad</exemplarCity>
- </zone>
- <zone type="Africa/Khartoum">
- <exemplarCity>Khartum</exemplarCity>
- </zone>
- <zone type="Asia/Singapore">
- <exemplarCity>Singapur</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>St. Helena</exemplarCity>
- </zone>
- <zone type="Africa/Mogadishu">
- <exemplarCity>Mogadischu</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>Damaskus</exemplarCity>
- </zone>
- <zone type="Asia/Dushanbe">
- <exemplarCity>Duschanbe</exemplarCity>
- </zone>
- <zone type="America/Port_of_Spain">
- <exemplarCity>Port-of-Spain</exemplarCity>
- </zone>
- <zone type="Asia/Taipei">
- <exemplarCity>Taipeh</exemplarCity>
- </zone>
- <zone type="Africa/Dar_es_Salaam">
- <exemplarCity>Daressalam</exemplarCity>
- </zone>
- <zone type="Europe/Uzhgorod">
- <exemplarCity>Uschgorod</exemplarCity>
- </zone>
- <zone type="Europe/Kiev">
- <exemplarCity>Kiew</exemplarCity>
- </zone>
- <zone type="Europe/Zaporozhye">
- <exemplarCity>Saporischja</exemplarCity>
- </zone>
- <zone type="America/Indiana/Knox">
- <exemplarCity>Knox</exemplarCity>
- </zone>
- <zone type="Asia/Tashkent">
- <exemplarCity>Taschkent</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>St. Vincent</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>St. Thomas</exemplarCity>
- </zone>
- <metazone type="Acre">
- <long>
- <generic>Acre-Ziit</generic>
- <standard>Acre-Schtandardziit</standard>
- <daylight>Acre-Summerziit</daylight>
- </long>
- </metazone>
- <metazone type="Afghanistan">
- <long>
- <standard>Afghanischtan-Ziit</standard>
- </long>
- </metazone>
- <metazone type="Africa_Central">
- <long>
- <standard>Zentralafrikanischi Ziit</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>Oschtafrikanischi Ziit</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <standard>Süüdafrikanischi ziit</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <generic>Weschtafrikanischi Ziit</generic>
- <standard>Weschtafrikanischi Schtandardziit</standard>
- <daylight>Weschtafrikanischi Summerziit</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>Alaska-Ziit</generic>
- <standard>Alaska-Schtandardziit</standard>
- <daylight>Alaska-Summerziit</daylight>
- </long>
- </metazone>
- <metazone type="Almaty">
- <long>
- <generic>Almaty-Ziit</generic>
- <standard>Almaty-Schtandardziit</standard>
- <daylight>Almaty-Summerziit</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <generic>Amazonas-Ziit</generic>
- <standard>Amazonas-Schtandardziit</standard>
- <daylight>Amazonas-Summerziit</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <generic>Mitteleuropäischi Ziit</generic>
- <standard>Mitteleuropäischi Schtandardziit</standard>
- <daylight>Mitteleuropäischi Summerziit</daylight>
- </long>
- <short>
- <generic>MEZ</generic>
- <standard>MEZ</standard>
- <daylight>MESZ</daylight>
- </short>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <generic>Oschteuropäischi Ziit</generic>
- <standard>Oschteuropäischi Schtandardziit</standard>
- <daylight>Oschteuropäischi Summerziit</daylight>
- </long>
- <short>
- <generic>OEZ</generic>
- <standard>OEZ</standard>
- <daylight>OESZ</daylight>
- </short>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <generic>Weschteuropäischi Ziit</generic>
- <standard>Weschteuropäischi Schtandardziit</standard>
- <daylight>Weschteuropäischi Summerziit</daylight>
- </long>
- <short>
- <generic>WEZ</generic>
- <standard>WEZ</standard>
- <daylight>WESZ</daylight>
- </short>
- </metazone>
- <metazone type="Moscow">
- <long>
- <generic>Moskauer Ziit</generic>
- <standard>Moskauer Schtandardziit</standard>
- <daylight>Moskauer Summerziit</daylight>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <symbols numberSystem="latn">
- <decimal>.</decimal>
- <group>’</group>
- <list>;</list>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign>
- <minusSign>−</minusSign>
- <exponential>E</exponential>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>NaN</nan>
- </symbols>
- <decimalFormats numberSystem="latn">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="long">
- <decimalFormat>
- <pattern type="1000" count="one" draft="unconfirmed">0 tausend</pattern>
- <pattern type="1000" count="other" draft="unconfirmed">0 tausend</pattern>
- <pattern type="10000" count="one" draft="unconfirmed">00 tausend</pattern>
- <pattern type="10000" count="other" draft="unconfirmed">00 tausend</pattern>
- <pattern type="100000" count="one" draft="unconfirmed">000 tausend</pattern>
- <pattern type="100000" count="other" draft="unconfirmed">000 tausend</pattern>
- <pattern type="1000000" count="one" draft="unconfirmed">0 Million</pattern>
- <pattern type="1000000" count="other" draft="unconfirmed">0 Millionen</pattern>
- <pattern type="10000000" count="one" draft="unconfirmed">00 Million</pattern>
- <pattern type="10000000" count="other" draft="unconfirmed">00 Millionen</pattern>
- <pattern type="100000000" count="one" draft="unconfirmed">000 Million</pattern>
- <pattern type="100000000" count="other" draft="unconfirmed">000 Millionen</pattern>
- <pattern type="1000000000" count="one" draft="unconfirmed">0 Milliarde</pattern>
- <pattern type="1000000000" count="other" draft="unconfirmed">0 Milliarden</pattern>
- <pattern type="10000000000" count="one" draft="unconfirmed">00 Milliarde</pattern>
- <pattern type="10000000000" count="other" draft="unconfirmed">00 Milliarden</pattern>
- <pattern type="100000000000" count="one" draft="unconfirmed">000 Milliarde</pattern>
- <pattern type="100000000000" count="other" draft="unconfirmed">000 Milliarden</pattern>
- <pattern type="1000000000000" count="one" draft="unconfirmed">0 Billion</pattern>
- <pattern type="1000000000000" count="other" draft="unconfirmed">0 Billionen</pattern>
- <pattern type="10000000000000" count="one" draft="unconfirmed">00 Billion</pattern>
- <pattern type="10000000000000" count="other" draft="unconfirmed">00 Billionen</pattern>
- <pattern type="100000000000000" count="one" draft="unconfirmed">000 Billion</pattern>
- <pattern type="100000000000000" count="other" draft="unconfirmed">000 Billionen</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="one" draft="unconfirmed">0 tsd</pattern>
- <pattern type="1000" count="other" draft="unconfirmed">0 tsd</pattern>
- <pattern type="10000" count="one" draft="unconfirmed">00 tsd</pattern>
- <pattern type="10000" count="other" draft="unconfirmed">00 tsd</pattern>
- <pattern type="100000" count="one" draft="unconfirmed">000 tsd</pattern>
- <pattern type="100000" count="other" draft="unconfirmed">000 tsd</pattern>
- <pattern type="1000000" count="one" draft="unconfirmed">0 Mio</pattern>
- <pattern type="1000000" count="other" draft="unconfirmed">0 Mio</pattern>
- <pattern type="10000000" count="one" draft="unconfirmed">00 Mio</pattern>
- <pattern type="10000000" count="other" draft="unconfirmed">00 Mio</pattern>
- <pattern type="100000000" count="one" draft="unconfirmed">000 Mio</pattern>
- <pattern type="100000000" count="other" draft="unconfirmed">000 Mio</pattern>
- <pattern type="1000000000" count="one" draft="unconfirmed">0 Mrd</pattern>
- <pattern type="1000000000" count="other" draft="unconfirmed">0 Mrd</pattern>
- <pattern type="10000000000" count="one" draft="unconfirmed">00 Mrd</pattern>
- <pattern type="10000000000" count="other" draft="unconfirmed">00 Mrd</pattern>
- <pattern type="100000000000" count="one" draft="unconfirmed">000 Mrd</pattern>
- <pattern type="100000000000" count="other" draft="unconfirmed">000 Mrd</pattern>
- <pattern type="1000000000000" count="one" draft="unconfirmed">0 Bio</pattern>
- <pattern type="1000000000000" count="other" draft="unconfirmed">0 Bio</pattern>
- <pattern type="10000000000000" count="one" draft="unconfirmed">00 Bio</pattern>
- <pattern type="10000000000000" count="other" draft="unconfirmed">00 Bio</pattern>
- <pattern type="100000000000000" count="one" draft="unconfirmed">000 Bio</pattern>
- <pattern type="100000000000000" count="other" draft="unconfirmed">000 Bio</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats numberSystem="latn">
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats numberSystem="latn">
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0 %</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats numberSystem="latn">
- <currencyFormatLength>
- <currencyFormat>
- <pattern>#,##0.00 ¤</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="ADP">
- <displayName>Andorranischi Peseete</displayName>
- <displayName count="one">Andorranischi Peseete</displayName>
- <displayName count="other">Andorranischi Peseete</displayName>
- </currency>
- <currency type="AED">
- <displayName>UAE Dirham</displayName>
- <displayName count="one">UAE Dirham</displayName>
- <displayName count="other">UAE Dirham</displayName>
- </currency>
- <currency type="AFA">
- <displayName>Afghani (1927-2002)</displayName>
- <displayName count="one">Afghani (1927-2002)</displayName>
- <displayName count="other">Afghani (1927-2002)</displayName>
- </currency>
- <currency type="AFN">
- <displayName>Afghani</displayName>
- <displayName count="one">Afghani</displayName>
- <displayName count="other">Afghani</displayName>
- </currency>
- <currency type="ALL">
- <displayName>Lek</displayName>
- <displayName count="one">Lek</displayName>
- <displayName count="other">Lek</displayName>
- </currency>
- <currency type="AMD">
- <displayName>Dram</displayName>
- <displayName count="one">Dram</displayName>
- <displayName count="other">Dram</displayName>
- </currency>
- <currency type="ANG">
- <displayName>Niderländischi-Antille-Gulde</displayName>
- </currency>
- <currency type="AOA">
- <displayName>Kwanza</displayName>
- </currency>
- <currency type="AOK">
- <displayName>Angolanische Kwanza (1977-1990)</displayName>
- <displayName count="one">Angolanischi Kwanza (1977-1990)</displayName>
- <displayName count="other">Angolanischi Kwanza (1977-1990)</displayName>
- </currency>
- <currency type="AON">
- <displayName>Nöie Kwanza</displayName>
- <displayName count="one">Nöii Kwanza</displayName>
- <displayName count="other">Nöii Kwanza</displayName>
- </currency>
- <currency type="AOR">
- <displayName>Kwanza Reajustado</displayName>
- <displayName count="one">Kwanza Reajustado</displayName>
- <displayName count="other">Kwanza Reajustado</displayName>
- </currency>
- <currency type="ARA">
- <displayName>Argentinische Auschtral</displayName>
- <displayName count="one">Argentinischi Auschtral</displayName>
- <displayName count="other">Argentinischi Auschtral</displayName>
- </currency>
- <currency type="ARP">
- <displayName>Argentinische Peso (1983-1985)</displayName>
- <displayName count="one">Argentinischi Peso (1983-1985)</displayName>
- <displayName count="other">Argentinischi Peso (1983-1985)</displayName>
- </currency>
- <currency type="ARS">
- <displayName>Argentinische Peso</displayName>
- <displayName count="one">Argentinische Peso</displayName>
- <displayName count="other">Argentinischi Pesos</displayName>
- </currency>
- <currency type="ATS">
- <displayName>Öschtriichische Schilling</displayName>
- <displayName count="one">Öschtriichischi Schilling</displayName>
- <displayName count="other">Öschtriichischi Schilling</displayName>
- <symbol>öS</symbol>
- </currency>
- <currency type="AUD">
- <displayName>Auschtralische Dollar</displayName>
- <displayName count="one">Auschtralische Dollar</displayName>
- <displayName count="other">Auschtralischi Dollar</displayName>
- </currency>
- <currency type="AWG">
- <displayName>Aruba Florin</displayName>
- <displayName count="one">Aruba Florin</displayName>
- <displayName count="other">Aruba Florin</displayName>
- </currency>
- <currency type="AZM">
- <displayName>Aserbeidschanische Manat (1993-2006)</displayName>
- <displayName count="one">Aserbaidschanischi Manat (1993-2006)</displayName>
- <displayName count="other">Aserbaidschanischi Manat (1993-2006)</displayName>
- </currency>
- <currency type="AZN">
- <displayName>Aserbeidschanische Manat</displayName>
- <displayName count="one">Aserbeidschanische Manat</displayName>
- <displayName count="other">Aserbeidschanischi Manat</displayName>
- </currency>
- <currency type="BAD">
- <displayName>Bosnie-und-Herzegowina-Dinar</displayName>
- <displayName count="one">Bosnie-und-Herzegowina-Dinär</displayName>
- <displayName count="other">Bosnie-und-Herzegowina-Dinär</displayName>
- </currency>
- <currency type="BAM">
- <displayName>Konvertierbari Mark vo Bosnie und Herzegowina</displayName>
- </currency>
- <currency type="BBD">
- <displayName>Barbados-Dollar</displayName>
- <displayName count="one">Barbados-Dollar</displayName>
- <displayName count="other">Barbados-Dollar</displayName>
- </currency>
- <currency type="BDT">
- <displayName>Taka</displayName>
- <displayName count="one">Taka</displayName>
- <displayName count="other">Taka</displayName>
- </currency>
- <currency type="BEC">
- <displayName>Belgische Franc (konvertibel)</displayName>
- <displayName count="one">Belgischi Franc (konvertibel)</displayName>
- <displayName count="other">Belgischi Franc (konvertibel)</displayName>
- </currency>
- <currency type="BEF">
- <displayName>Belgische Franc</displayName>
- <displayName count="one">Belgischi Franc</displayName>
- <displayName count="other">Belgischi Franc</displayName>
- </currency>
- <currency type="BEL">
- <displayName>Belgische Finanz-Franc</displayName>
- <displayName count="one">Belgischi Finanz-Franc</displayName>
- <displayName count="other">Belgischi Finanz-Franc</displayName>
- </currency>
- <currency type="BGL">
- <displayName>Lew (1962-1999)</displayName>
- <displayName count="one">Lewa (1962-1999)</displayName>
- <displayName count="other">Lewa (1962-1999)</displayName>
- </currency>
- <currency type="BGN">
- <displayName>Bulgarische Lew</displayName>
- <displayName count="one">Bulgarische Lew</displayName>
- <displayName count="other">Bulgarischi Lew</displayName>
- </currency>
- <currency type="BHD">
- <displayName>Bahrain-Dinar</displayName>
- <displayName count="one">Bahrain-Dinar</displayName>
- <displayName count="other">Bahrain-Dinar</displayName>
- </currency>
- <currency type="BIF">
- <displayName>Burundi-Franc</displayName>
- <displayName count="one">Burundi-Franc</displayName>
- <displayName count="other">Burundi-Franc</displayName>
- </currency>
- <currency type="BMD">
- <displayName>Bermuda-Dollar</displayName>
- <displayName count="one">Bermuda-Dollar</displayName>
- <displayName count="other">Bermuda-Dollar</displayName>
- </currency>
- <currency type="BND">
- <displayName>Brunei-Dollar</displayName>
- <displayName count="one">Brunei-Dollar</displayName>
- <displayName count="other">Brunei-Dollar</displayName>
- </currency>
- <currency type="BOB">
- <displayName>Boliviano</displayName>
- <displayName count="one">Boliviano</displayName>
- <displayName count="other">Boliviano</displayName>
- </currency>
- <currency type="BOP">
- <displayName>Bolivianische Peso</displayName>
- <displayName count="one">Bolivianischi Peso</displayName>
- <displayName count="other">Bolivianischi Peso</displayName>
- </currency>
- <currency type="BOV">
- <displayName>Bolivianische Mvdol</displayName>
- <displayName count="one">Bolivianischi Mvdol</displayName>
- <displayName count="other">Bolivianischi Mvdol</displayName>
- </currency>
- <currency type="BRB">
- <displayName>Brasilianische Cruzeiro Novo (1967-1986)</displayName>
- <displayName count="one">Brasilianischi Cruzeiro Novo (1967-1986)</displayName>
- <displayName count="other">Brasilianischi Cruzeiro Novo (1967-1986)</displayName>
- </currency>
- <currency type="BRC">
- <displayName>Brasilianische Cruzado</displayName>
- <displayName count="one">Brasilianischi Cruzado</displayName>
- <displayName count="other">Brasilianischi Cruzado</displayName>
- </currency>
- <currency type="BRE">
- <displayName>Brasilianische Cruzeiro (1990-1993)</displayName>
- <displayName count="one">Brasilianischi Cruzeiro (1990-1993)</displayName>
- <displayName count="other">Brasilianischi Cruzeiro (1990-1993)</displayName>
- </currency>
- <currency type="BRL">
- <displayName>Brasilianische Real</displayName>
- <displayName count="one">Brasilianische Real</displayName>
- <displayName count="other">Brasilianischi Real</displayName>
- </currency>
- <currency type="BRN">
- <displayName>Brasilianische Cruzado Novo</displayName>
- <displayName count="one">Brasilianischi Cruzado Novo</displayName>
- <displayName count="other">Brasilianischi Cruzado Novo</displayName>
- </currency>
- <currency type="BRR">
- <displayName>Brasilianische Cruzeiro</displayName>
- <displayName count="one">Brasilianischi Cruzeiro</displayName>
- <displayName count="other">Brasilianischi Cruzeiro</displayName>
- </currency>
- <currency type="BSD">
- <displayName>Bahama-Dollar</displayName>
- <displayName count="one">Bahama-Dollar</displayName>
- <displayName count="other">Bahama-Dollar</displayName>
- </currency>
- <currency type="BTN">
- <displayName>Bhutanische Ngultrum</displayName>
- <displayName count="one">Bhutanische Ngultrum</displayName>
- <displayName count="other">Bhutanischi Ngultrum</displayName>
- </currency>
- <currency type="BUK">
- <displayName>Birmanische Kyat</displayName>
- <displayName count="one">Birmanischi Kyat</displayName>
- <displayName count="other">Birmanischi Kyat</displayName>
- </currency>
- <currency type="BWP">
- <displayName>Botswanische Pula</displayName>
- <displayName count="one">Botswanische Pula</displayName>
- <displayName count="other">Botswanischi Pula</displayName>
- </currency>
- <currency type="BYB">
- <displayName>Belarus-Rubel (alt)</displayName>
- <displayName count="one">Belarus-Rubel (alt)</displayName>
- <displayName count="other">Belarus-Rubel (alt)</displayName>
- </currency>
- <currency type="BYR">
- <displayName>Belarus Rubel (nöi)</displayName>
- <displayName count="one">Belarus-Rubel (nöi)</displayName>
- <displayName count="other">Belarus-Rubel (nöi)</displayName>
- </currency>
- <currency type="BZD">
- <displayName>Belize-Dollar</displayName>
- </currency>
- <currency type="CAD">
- <displayName>Kanadische Dollar</displayName>
- <displayName count="one">Kanadische Dollar</displayName>
- <displayName count="other">Kanadischi Dollar</displayName>
- </currency>
- <currency type="CDF">
- <displayName>Kongolesische Franc</displayName>
- <displayName count="one">Kongolesische Franc</displayName>
- <displayName count="other">Kongolesischi Franc</displayName>
- </currency>
- <currency type="CHE">
- <displayName>WIR-Euro</displayName>
- </currency>
- <currency type="CHF">
- <displayName>Schwiizer Franke</displayName>
- <displayName count="one">Schwiizer Franke</displayName>
- <displayName count="other">Schwiizer Franke</displayName>
- <symbol>CHF</symbol>
- </currency>
- <currency type="CHW">
- <displayName>WIR-Franke</displayName>
- <displayName count="one">WIR-Franke</displayName>
- <displayName count="other">WIR-Franke</displayName>
- </currency>
- <currency type="CLF">
- <displayName>Tschileenische Unidad de Fomento</displayName>
- <displayName count="one">Tschileenischi Unidades de Fomento</displayName>
- <displayName count="other">Tschileenischi Unidades de Fomento</displayName>
- </currency>
- <currency type="CLP">
- <displayName>Tschileenische Peso</displayName>
- <displayName count="one">Tschileenische Peso</displayName>
- <displayName count="other">Tschileenischi Pesos</displayName>
- </currency>
- <currency type="CNY">
- <displayName>Renminbi Yuan</displayName>
- </currency>
- <currency type="COP">
- <displayName>Kolumbianische Peso</displayName>
- <displayName count="one">Kolumbianische Peso</displayName>
- <displayName count="other">Kolumbianischi Pesos</displayName>
- </currency>
- <currency type="COU">
- <displayName>Unidad de Valor Real</displayName>
- <displayName count="one">Unidad de Valor Real</displayName>
- <displayName count="other">Unidad de Valor Real</displayName>
- </currency>
- <currency type="CRC">
- <displayName>Costa Rica Colon</displayName>
- <displayName count="one">Costa Rica Colon</displayName>
- <displayName count="other">Costa Rica Colon</displayName>
- </currency>
- <currency type="CSD">
- <displayName>Alte Serbische Dinar</displayName>
- <displayName count="one">Alti Serbischi Dinar</displayName>
- <displayName count="other">Alti Serbischi Dinar</displayName>
- </currency>
- <currency type="CSK">
- <displayName>Tschechoslowakischi Chroone</displayName>
- <displayName count="one">Tschechoslowakischi Chroone</displayName>
- <displayName count="other">Tschechoslowakischi Chroone</displayName>
- </currency>
- <currency type="CUP">
- <displayName>Kubanische Peso</displayName>
- <displayName count="one">Kubanische Peso</displayName>
- <displayName count="other">Kubanischi Pesos</displayName>
- </currency>
- <currency type="CVE">
- <displayName>Kap Verde Escudo</displayName>
- <displayName count="one">Kap Verde Escudo</displayName>
- <displayName count="other">Kap Verde Escudo</displayName>
- </currency>
- <currency type="CYP">
- <displayName>Zypere-Pfund</displayName>
- </currency>
- <currency type="CZK">
- <displayName>Tschechischi Chroone</displayName>
- <displayName count="one">Tschechischi Chroone</displayName>
- <displayName count="other">Tschechischi Chroone</displayName>
- </currency>
- <currency type="DDM">
- <displayName>DDR-Mark</displayName>
- <displayName count="one">DDR-Mark</displayName>
- <displayName count="other">DDR-Mark</displayName>
- </currency>
- <currency type="DEM">
- <displayName>Tüütschi Mark</displayName>
- <displayName count="one">Tüütschi Mark</displayName>
- <displayName count="other">Tüütschi Mark</displayName>
- </currency>
- <currency type="DJF">
- <displayName>Dschibuti-Franc</displayName>
- <displayName count="one">Dschibuti-Franc</displayName>
- <displayName count="other">Dschibuti-Franc</displayName>
- </currency>
- <currency type="DKK">
- <displayName>Tänischi Chroone</displayName>
- <displayName count="one">Tänischi Chroone</displayName>
- <displayName count="other">Tänischi Chroone</displayName>
- </currency>
- <currency type="DOP">
- <displayName>Tominikanische Peso</displayName>
- <displayName count="one">Tominikanische Peso</displayName>
- <displayName count="other">Tominikanischi Pesos</displayName>
- </currency>
- <currency type="DZD">
- <displayName>Algeerischi Dinar</displayName>
- <displayName count="one">Algeerische Dinar</displayName>
- <displayName count="other">Algeerischi Dinar</displayName>
- </currency>
- <currency type="ECS">
- <displayName>Ecuadorianische Sucre</displayName>
- <displayName count="one">Ecuadorianischi Sucre</displayName>
- <displayName count="other">Ecuadorianischi Sucre</displayName>
- </currency>
- <currency type="ECV">
- <displayName>Verrächnigsäiheit für EC</displayName>
- <displayName count="one">Verrächnigsäiheit für EC</displayName>
- <displayName count="other">Verrächnigsäiheit für EC</displayName>
- </currency>
- <currency type="EEK">
- <displayName>Eestnischi Chroone</displayName>
- <displayName count="one">Eestnischi Chroone</displayName>
- <displayName count="other">Eestnischi Chroone</displayName>
- </currency>
- <currency type="EGP">
- <displayName>Ägüptischs Pfund</displayName>
- <displayName count="one">Ägüptische Pfund</displayName>
- <displayName count="other">Ägüptischi Pfund</displayName>
- </currency>
- <currency type="ERN">
- <displayName>Eritreische Nakfa</displayName>
- <displayName count="one">Eritreische Nakfa</displayName>
- <displayName count="other">Eritreischi Nakfa</displayName>
- </currency>
- <currency type="ESA">
- <displayName>Schpanischi Peseeta (A-Kontene)</displayName>
- <displayName count="one">Schpanischi Peseete (A-Kontene)</displayName>
- <displayName count="other">Schpanischi Peseete (A-Kontene)</displayName>
- </currency>
- <currency type="ESB">
- <displayName>Schpanischi Peseeta (konvertibel)</displayName>
- <displayName count="one">Schpanischi Peseete (konvertibel)</displayName>
- <displayName count="other">Schpanischi Peseete (konvertibel)</displayName>
- </currency>
- <currency type="ESP">
- <displayName>Schpanischi Peseeta</displayName>
- <displayName count="one">Schpanischi Peseete</displayName>
- <displayName count="other">Schpanischi Peseete</displayName>
- </currency>
- <currency type="ETB">
- <displayName>Äthiopische Birr</displayName>
- <displayName count="one">Äthiopische Birr</displayName>
- <displayName count="other">Äthiopischi Birr</displayName>
- </currency>
- <currency type="EUR">
- <displayName>Euro</displayName>
- <displayName count="one">Euro</displayName>
- <displayName count="other">Euro</displayName>
- </currency>
- <currency type="FIM">
- <displayName>Finnischi Mark</displayName>
- <displayName count="one">Finnischi Mark</displayName>
- <displayName count="other">Finnischi Mark</displayName>
- </currency>
- <currency type="FJD">
- <displayName>Fidschi Dollar</displayName>
- <displayName count="one">Fidschi Dollar</displayName>
- <displayName count="other">Fidschi Dollar</displayName>
- </currency>
- <currency type="FKP">
- <displayName>Falkland-Pfund</displayName>
- <displayName count="one">Falkland-Pfund</displayName>
- <displayName count="other">Falkland-Pfund</displayName>
- </currency>
- <currency type="FRF">
- <displayName>Französische Franc</displayName>
- <displayName count="one">Französischi Franc</displayName>
- <displayName count="other">Französischi Franc</displayName>
- </currency>
- <currency type="GBP">
- <displayName>Pfund Schtörling</displayName>
- <displayName count="one">Pfund Schtörling</displayName>
- <displayName count="other">Pfund Schtörling</displayName>
- </currency>
- <currency type="GEK">
- <displayName>Georgische Kupon Larit</displayName>
- <displayName count="one">Georgischi Kupon Larit</displayName>
- <displayName count="other">Georgischi Kupon Larit</displayName>
- </currency>
- <currency type="GEL">
- <displayName>Georgische Lari</displayName>
- <displayName count="one">Georgische Lari</displayName>
- <displayName count="other">Georgischi Lari</displayName>
- </currency>
- <currency type="GHC">
- <displayName>Ghanaische Cedi (GHC)</displayName>
- <displayName count="one">Ghanaischi Cedi (GHC)</displayName>
- <displayName count="other">Ghanaischi Cedi (GHC)</displayName>
- </currency>
- <currency type="GHS">
- <displayName>Ghanaische Cedi (GHS)</displayName>
- <displayName count="one">Ghanaische Cedi (GHS)</displayName>
- <displayName count="other">Ghanaischi Cedi (GHS)</displayName>
- </currency>
- <currency type="GIP">
- <displayName>Gibraltar-Pfund</displayName>
- <displayName count="one">Gibraltar-Pfund</displayName>
- <displayName count="other">Gibraltar-Pfund</displayName>
- </currency>
- <currency type="GMD">
- <displayName>Gambische Dalasi</displayName>
- <displayName count="one">Gambische Dalasi</displayName>
- <displayName count="other">Gambischi Dalasi</displayName>
- </currency>
- <currency type="GNF">
- <displayName>Guinea-Franc</displayName>
- <displayName count="one">Guinea-Franc</displayName>
- <displayName count="other">Guinea-Franc</displayName>
- </currency>
- <currency type="GNS">
- <displayName>Guineische Syli</displayName>
- <displayName count="one">Guineischi Syli</displayName>
- <displayName count="other">Guineischi Syli</displayName>
- </currency>
- <currency type="GQE">
- <displayName>Äquatorialguinea-Ekwele</displayName>
- <displayName count="one">Äquatorialguinea-Ekwele</displayName>
- <displayName count="other">Äquatorialguinea-Ekwele</displayName>
- </currency>
- <currency type="GRD">
- <displayName>Griechische Trachme</displayName>
- <displayName count="one">Griechischi Trachme</displayName>
- <displayName count="other">Griechischi Trachme</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>Quetzal</displayName>
- <displayName count="one">Quetzal</displayName>
- <displayName count="other">Quetzal</displayName>
- </currency>
- <currency type="GWE">
- <displayName>Portugiisische Guinea Escudo</displayName>
- <displayName count="one">Portugiisischi Guinea Escudo</displayName>
- <displayName count="other">Portugiisischi Guinea Escudo</displayName>
- </currency>
- <currency type="GWP">
- <displayName>Guinea-Bissau-Peso</displayName>
- <displayName count="one">Guinea-Bissau-Pesos</displayName>
- <displayName count="other">Guinea-Bissau-Pesos</displayName>
- </currency>
- <currency type="GYD">
- <displayName>Guyana-Dollar</displayName>
- <displayName count="one">Guyana-Dollar</displayName>
- <displayName count="other">Guyana-Dollar</displayName>
- </currency>
- <currency type="HKD">
- <displayName>Hongkong-Dollar</displayName>
- <displayName count="one">Hongkong-Dollar</displayName>
- <displayName count="other">Hongkong-Dollar</displayName>
- </currency>
- <currency type="HNL">
- <displayName>Lempira</displayName>
- <displayName count="one">Lempira</displayName>
- <displayName count="other">Lempira</displayName>
- </currency>
- <currency type="HRD">
- <displayName>Kroazische Dinar</displayName>
- <displayName count="one">Kroazischi Dinar</displayName>
- <displayName count="other">Kroazischi Dinar</displayName>
- </currency>
- <currency type="HRK">
- <displayName>Kuna</displayName>
- <displayName count="one">Kuna</displayName>
- <displayName count="other">Kuna</displayName>
- </currency>
- <currency type="HTG">
- <displayName>Gourde</displayName>
- <displayName count="one">Gourde</displayName>
- <displayName count="other">Gourde</displayName>
- </currency>
- <currency type="HUF">
- <displayName>Forint</displayName>
- <displayName count="one">Forint</displayName>
- <displayName count="other">Forint</displayName>
- </currency>
- <currency type="IDR">
- <displayName>Indonesischi Rupie</displayName>
- <displayName count="one">Indonesischi Rupie</displayName>
- <displayName count="other">Indonesischi Rupie</displayName>
- </currency>
- <currency type="IEP">
- <displayName>Iirischs Pfund</displayName>
- <displayName count="one">Iirischi Pfund</displayName>
- <displayName count="other">Iirischi Pfund</displayName>
- </currency>
- <currency type="ILP">
- <displayName>Israelischs Pfund</displayName>
- <displayName count="one">Israelischi Pfund</displayName>
- <displayName count="other">Israelischi Pfund</displayName>
- </currency>
- <currency type="ILS">
- <displayName>Schekel</displayName>
- <displayName count="one">Schekel</displayName>
- <displayName count="other">Schekel</displayName>
- </currency>
- <currency type="INR">
- <displayName>Indischi Rupie</displayName>
- <displayName count="one">Indischi Rupie</displayName>
- <displayName count="other">Indischi Rupie</displayName>
- </currency>
- <currency type="IQD">
- <displayName>Irak-Dinar</displayName>
- <displayName count="one">Irak-Dinar</displayName>
- <displayName count="other">Irak-Dinar</displayName>
- </currency>
- <currency type="IRR">
- <displayName>Rial</displayName>
- <displayName count="one">Rial</displayName>
- <displayName count="other">Rial</displayName>
- </currency>
- <currency type="ISK">
- <displayName>Iisländischi Chroone</displayName>
- <displayName count="one">Iisländischi Chroone</displayName>
- <displayName count="other">Iisländischi Chroone</displayName>
- </currency>
- <currency type="ITL">
- <displayName>Italiänischi Lira</displayName>
- <displayName count="one">Italienischi Lire</displayName>
- <displayName count="other">Italienischi Lire</displayName>
- </currency>
- <currency type="JMD">
- <displayName>Jamaika-Dollar</displayName>
- <displayName count="one">Jamaika-Dollar</displayName>
- <displayName count="other">Jamaika-Dollar</displayName>
- </currency>
- <currency type="JOD">
- <displayName>Jordaanische Dinar</displayName>
- <displayName count="one">Jordaanische Dinar</displayName>
- <displayName count="other">Jordaanischi Dinar</displayName>
- </currency>
- <currency type="JPY">
- <displayName>Yen</displayName>
- <displayName count="one">Yen</displayName>
- <displayName count="other">Yen</displayName>
- <symbol>¥</symbol>
- </currency>
- <currency type="KES">
- <displayName>Kenia-Schilling</displayName>
- <displayName count="one">Kenia-Schilling</displayName>
- <displayName count="other">Kenia-Schilling</displayName>
- </currency>
- <currency type="KGS">
- <displayName>Som</displayName>
- <displayName count="one">Som</displayName>
- <displayName count="other">Som</displayName>
- </currency>
- <currency type="KHR">
- <displayName>Riel</displayName>
- <displayName count="one">Riel</displayName>
- <displayName count="other">Riel</displayName>
- </currency>
- <currency type="KMF">
- <displayName>Komore-Franc</displayName>
- <displayName count="one">Komore-Franc</displayName>
- <displayName count="other">Komore-Franc</displayName>
- </currency>
- <currency type="KPW">
- <displayName>Nordkoreanische Won</displayName>
- <displayName count="one">Nordkoreanische Won</displayName>
- <displayName count="other">Nordkoreanischi Won</displayName>
- </currency>
- <currency type="KRW">
- <displayName>Süüdkoreanische Won</displayName>
- <displayName count="one">Süüdkoreanische Won</displayName>
- <displayName count="other">Süüdkoreanischi Won</displayName>
- </currency>
- <currency type="KWD">
- <displayName>Kuwait-Dinar</displayName>
- <displayName count="one">Kuwait-Dinar</displayName>
- <displayName count="other">Kuwait-Dinar</displayName>
- </currency>
- <currency type="KYD">
- <displayName>Kaiman-Dollar</displayName>
- <displayName count="one">Kaiman-Dollar</displayName>
- <displayName count="other">Kaiman-Dollar</displayName>
- </currency>
- <currency type="KZT">
- <displayName>Tenge</displayName>
- <displayName count="one">Tenge</displayName>
- <displayName count="other">Tenge</displayName>
- </currency>
- <currency type="LAK">
- <displayName>Kip</displayName>
- <displayName count="one">Kip</displayName>
- <displayName count="other">Kip</displayName>
- </currency>
- <currency type="LBP">
- <displayName>Libaneesischs Pfund</displayName>
- <displayName count="one">Libaneesischs Pfund</displayName>
- <displayName count="other">Libaneesischi Pfund</displayName>
- </currency>
- <currency type="LKR">
- <displayName>Sri-Lanka-Rupie</displayName>
- <displayName count="one">Sri-Lanka-Rupie</displayName>
- <displayName count="other">Sri-Lanka-Rupie</displayName>
- </currency>
- <currency type="LRD">
- <displayName>Liberiaanische Dollar</displayName>
- <displayName count="one">Liberiaanische Dollar</displayName>
- <displayName count="other">Liberiaanischi Dollar</displayName>
- </currency>
- <currency type="LSL">
- <displayName>Loti</displayName>
- <displayName count="one">Loti</displayName>
- <displayName count="other">Loti</displayName>
- </currency>
- <currency type="LTL">
- <displayName>Litauische Litas</displayName>
- <displayName count="one">Litauische Litas</displayName>
- <displayName count="other">Litauischi Litas</displayName>
- </currency>
- <currency type="LTT">
- <displayName>Litauische Talonas</displayName>
- <displayName count="one">Litauischi Talonas</displayName>
- <displayName count="other">Litauischi Talonas</displayName>
- </currency>
- <currency type="LUC">
- <displayName>Luxemburgische Franc (konvertibel)</displayName>
- <displayName count="one">Luxemburgischi Franc (konvertibel)</displayName>
- <displayName count="other">Luxemburgischi Franc (konvertibel)</displayName>
- </currency>
- <currency type="LUF">
- <displayName>Luxemburgische Franc</displayName>
- <displayName count="one">Luxemburgischi Franc</displayName>
- <displayName count="other">Luxemburgischi Franc</displayName>
- </currency>
- <currency type="LUL">
- <displayName>Luxemburgischer Finanz-Franc</displayName>
- <displayName count="one">Luxemburgischi Finanz-Franc</displayName>
- <displayName count="other">Luxemburgischi Finanz-Franc</displayName>
- </currency>
- <currency type="LVL">
- <displayName>Lettische Lats</displayName>
- <displayName count="one">Lettische Lats</displayName>
- <displayName count="other">Lettischi Lats</displayName>
- </currency>
- <currency type="LVR">
- <displayName>Lettische Rubel</displayName>
- <displayName count="one">Lettischi Rubel</displayName>
- <displayName count="other">Lettischi Rubel</displayName>
- </currency>
- <currency type="LYD">
- <displayName>Lüübische Dinar</displayName>
- <displayName count="one">Lüübische Dinar</displayName>
- <displayName count="other">Lüübischi Dinar</displayName>
- </currency>
- <currency type="MAD">
- <displayName>Marokkanische Dirham</displayName>
- <displayName count="one">Marokkanische Dirham</displayName>
- <displayName count="other">Marokkanischi Dirham</displayName>
- </currency>
- <currency type="MAF">
- <displayName>Marokkanischer Franc</displayName>
- <displayName count="one">Marokkanische Franc</displayName>
- <displayName count="other">Marokkanische Franc</displayName>
- </currency>
- <currency type="MDL">
- <displayName>Moldau-Löi</displayName>
- <displayName count="one">Moldau-Löi</displayName>
- <displayName count="other">Moldau-Löi</displayName>
- </currency>
- <currency type="MGA">
- <displayName>Madagaschkar-Ariary</displayName>
- <displayName count="one">Madagaschkar-Ariary</displayName>
- <displayName count="other">Madagaschkar-Ariary</displayName>
- </currency>
- <currency type="MGF">
- <displayName>Madagaschkar-Franc</displayName>
- <displayName count="one">Madagaschkar-Franc</displayName>
- <displayName count="other">Madagaschkar-Franc</displayName>
- </currency>
- <currency type="MKD">
- <displayName>Denar</displayName>
- <displayName count="one">Denar</displayName>
- <displayName count="other">Denar</displayName>
- </currency>
- <currency type="MLF">
- <displayName>Malische Franc</displayName>
- <displayName count="one">Malischi Franc</displayName>
- <displayName count="other">Malischi Franc</displayName>
- </currency>
- <currency type="MMK">
- <displayName>Kyat</displayName>
- <displayName count="one">Kyat</displayName>
- <displayName count="other">Kyat</displayName>
- </currency>
- <currency type="MNT">
- <displayName>Tugrik</displayName>
- <displayName count="one">Tugrik</displayName>
- <displayName count="other">Tugrik</displayName>
- </currency>
- <currency type="MOP">
- <displayName>Pataca</displayName>
- <displayName count="one">Pataca</displayName>
- <displayName count="other">Pataca</displayName>
- </currency>
- <currency type="MRO">
- <displayName>Ouguiya</displayName>
- <displayName count="one">Ouguiya</displayName>
- <displayName count="other">Ouguiya</displayName>
- </currency>
- <currency type="MTL">
- <displayName>Malteesischi Lira</displayName>
- <displayName count="one">Malteesischi Lira</displayName>
- <displayName count="other">Malteesischi Lira</displayName>
- </currency>
- <currency type="MTP">
- <displayName>Malteesischs Pfund</displayName>
- <displayName count="one">Malteesischi Pfund</displayName>
- <displayName count="other">Malteesischi Pfund</displayName>
- </currency>
- <currency type="MUR">
- <displayName>Maurizius-Rupie</displayName>
- <displayName count="one">Maurizius-Rupie</displayName>
- <displayName count="other">Maurizius-Rupie</displayName>
- </currency>
- <currency type="MVR">
- <displayName>Rufiyaa</displayName>
- <displayName count="one">Rufiyaa</displayName>
- <displayName count="other">Rufiyaa</displayName>
- </currency>
- <currency type="MWK">
- <displayName>Malawi-Kwacha</displayName>
- <displayName count="one">Malawi-Kwacha</displayName>
- <displayName count="other">Malawi-Kwacha</displayName>
- </currency>
- <currency type="MXN">
- <displayName>Mexikanische Peso</displayName>
- <displayName count="one">Mexikanische Peso</displayName>
- <displayName count="other">Mexikanischi Pesos</displayName>
- </currency>
- <currency type="MXP">
- <displayName>Mexikanische Silber-Peso (1861-1992)</displayName>
- <displayName count="one">Mexikanischi Silber-Pesos (MXP)</displayName>
- <displayName count="other">Mexikanischi Silber-Pesos (MXP)</displayName>
- </currency>
- <currency type="MXV">
- <displayName>Mexikanische Unidad de Inversion (UDI)</displayName>
- <displayName count="one">Mexikanischi Unidad de Inversion (UDI)</displayName>
- <displayName count="other">Mexikanischi Unidad de Inversion (UDI)</displayName>
- </currency>
- <currency type="MYR">
- <displayName>Malaysische Ringgit</displayName>
- <displayName count="one">Malaysische Ringgit</displayName>
- <displayName count="other">Malaysischi Ringgit</displayName>
- </currency>
- <currency type="MZE">
- <displayName>Mosambikanische Escudo</displayName>
- <displayName count="one">Mozambikanischi Escudo</displayName>
- <displayName count="other">Mozambikanischi Escudo</displayName>
- </currency>
- <currency type="MZM">
- <displayName>Alte Metical</displayName>
- <displayName count="one">Alti Metical</displayName>
- <displayName count="other">Alti Metical</displayName>
- </currency>
- <currency type="MZN">
- <displayName>Metical</displayName>
- <displayName count="one">Metical</displayName>
- <displayName count="other">Metical</displayName>
- </currency>
- <currency type="NAD">
- <displayName>Namibia-Dollar</displayName>
- <displayName count="one">Namibia-Dollar</displayName>
- <displayName count="other">Namibia-Dollar</displayName>
- </currency>
- <currency type="NGN">
- <displayName>Naira</displayName>
- <displayName count="one">Naira</displayName>
- <displayName count="other">Naira</displayName>
- </currency>
- <currency type="NIC">
- <displayName>Cordoba</displayName>
- <displayName count="one">Cordoba</displayName>
- <displayName count="other">Cordoba</displayName>
- </currency>
- <currency type="NIO">
- <displayName>Nicaragua-Córdoba</displayName>
- <displayName count="one">Nicaragua-Córdoba</displayName>
- <displayName count="other">Nicaragua-Córdoba</displayName>
- </currency>
- <currency type="NLG">
- <displayName>Holländische Gulde</displayName>
- <displayName count="one">Holländischi Gulde</displayName>
- <displayName count="other">Holländischi Gulde</displayName>
- </currency>
- <currency type="NOK">
- <displayName>Norweegischi Chroone</displayName>
- <displayName count="one">Norweegischi Chroone</displayName>
- <displayName count="other">Norweegischi Chroone</displayName>
- </currency>
- <currency type="NPR">
- <displayName>Nepaleesischi Rupie</displayName>
- <displayName count="one">Nepalesischi Rupie</displayName>
- <displayName count="other">Nepalesischi Rupie</displayName>
- </currency>
- <currency type="NZD">
- <displayName>Neuseeland-Dollar</displayName>
- <displayName count="one">Neuseeland-Dollar</displayName>
- <displayName count="other">Neuseeland-Dollar</displayName>
- </currency>
- <currency type="OMR">
- <displayName>Rial Omani</displayName>
- <displayName count="one">Rial Omani</displayName>
- <displayName count="other">Rial Omani</displayName>
- </currency>
- <currency type="PAB">
- <displayName>Balboa</displayName>
- <displayName count="one">Balboa</displayName>
- <displayName count="other">Balboa</displayName>
- </currency>
- <currency type="PEI">
- <displayName>Peruanische Inti</displayName>
- <displayName count="one">Peruanischi Inti</displayName>
- <displayName count="other">Peruanischi Inti</displayName>
- </currency>
- <currency type="PEN">
- <displayName>Nöie Sol</displayName>
- <displayName count="one">Nöie Sol</displayName>
- <displayName count="other">Nöii Sol</displayName>
- </currency>
- <currency type="PES">
- <displayName>Sol</displayName>
- <displayName count="one">Sol</displayName>
- <displayName count="other">Sol</displayName>
- </currency>
- <currency type="PGK">
- <displayName>Kina</displayName>
- <displayName count="one">Kina</displayName>
- <displayName count="other">Kina</displayName>
- </currency>
- <currency type="PHP">
- <displayName>Philippiinische Peso</displayName>
- <displayName count="one">Philippiinische Peso</displayName>
- <displayName count="other">Philippiinischi Pesos</displayName>
- </currency>
- <currency type="PKR">
- <displayName>Pakischtanischi Rupie</displayName>
- <displayName count="one">Pakischtanischi Rupie</displayName>
- <displayName count="other">Pakischtanischi Rupie</displayName>
- </currency>
- <currency type="PLN">
- <displayName>Zloty</displayName>
- <displayName count="one">Zloty</displayName>
- <displayName count="other">Zloty</displayName>
- </currency>
- <currency type="PLZ">
- <displayName>Zloty (1950-1995)</displayName>
- <displayName count="one">Zloty (1950-1995)</displayName>
- <displayName count="other">Zloty (1950-1995)</displayName>
- </currency>
- <currency type="PTE">
- <displayName>Portugiisische Escudo</displayName>
- <displayName count="one">Portugiisischi Escudo</displayName>
- <displayName count="other">Portugiisischi Escudo</displayName>
- </currency>
- <currency type="PYG">
- <displayName>Guarani</displayName>
- <displayName count="one">Guarani</displayName>
- <displayName count="other">Guarani</displayName>
- </currency>
- <currency type="QAR">
- <displayName>Katar-Riyal</displayName>
- <displayName count="one">Katar-Riyal</displayName>
- <displayName count="other">Katar-Riyal</displayName>
- </currency>
- <currency type="RHD">
- <displayName>Rhodesische Dollar</displayName>
- <displayName count="one">Rhodesischi Dollar</displayName>
- <displayName count="other">Rhodesischi Dollar</displayName>
- </currency>
- <currency type="ROL">
- <displayName>Löi</displayName>
- <displayName count="one">Löi</displayName>
- <displayName count="other">Löi</displayName>
- </currency>
- <currency type="RON">
- <displayName>Rumäänische Löi</displayName>
- <displayName count="one">Rumäänische Löi</displayName>
- <displayName count="other">Rumäänischi Löi</displayName>
- </currency>
- <currency type="RSD">
- <displayName>Serbische Dinar</displayName>
- <displayName count="one">Serbische Dinar</displayName>
- <displayName count="other">Serbischi Dinar</displayName>
- </currency>
- <currency type="RUB">
- <displayName>Russische Rubel</displayName>
- <displayName count="one">Russische Rubel</displayName>
- <displayName count="other">Russischi Rubel</displayName>
- </currency>
- <currency type="RUR">
- <displayName>Russische Rubel (alt)</displayName>
- <displayName count="one">Russischi Rubel (alt)</displayName>
- <displayName count="other">Russischi Rubel (alt)</displayName>
- </currency>
- <currency type="RWF">
- <displayName>Ruanda-Franc</displayName>
- <displayName count="one">Ruanda-Franc</displayName>
- <displayName count="other">Ruanda-Franc</displayName>
- </currency>
- <currency type="SAR">
- <displayName>Saudi-Riyal</displayName>
- <displayName count="one">Saudi-Riyal</displayName>
- <displayName count="other">Saudi-Riyal</displayName>
- </currency>
- <currency type="SBD">
- <displayName>Salomone-Dollar</displayName>
- <displayName count="one">Salomone-Dollar</displayName>
- <displayName count="other">Salomone-Dollar</displayName>
- </currency>
- <currency type="SCR">
- <displayName>Seyschelle-Rupie</displayName>
- <displayName count="one">Seyschelle-Rupie</displayName>
- <displayName count="other">Seyschelle-Rupien</displayName>
- </currency>
- <currency type="SDD">
- <displayName>Sudaneesische Dinar</displayName>
- <displayName count="one">Sudaneesischi Dinar</displayName>
- <displayName count="other">Sudaneesischi Dinar</displayName>
- </currency>
- <currency type="SDG">
- <displayName>Sudaneesischs Pfund</displayName>
- <displayName count="one">Sudaneesische Pfund</displayName>
- <displayName count="other">Sudaneesischi Pfund</displayName>
- </currency>
- <currency type="SDP">
- <displayName>Sudaneesischs Pfund (alt)</displayName>
- <displayName count="one">Sudaneesischi Pfund (alt)</displayName>
- <displayName count="other">Sudaneesischi Pfund (alt)</displayName>
- </currency>
- <currency type="SEK">
- <displayName>Schweedischi Chroone</displayName>
- <displayName count="one">Schwedischi Chroone</displayName>
- <displayName count="other">Schwedischi Chroone</displayName>
- </currency>
- <currency type="SGD">
- <displayName>Singapur-Dollar</displayName>
- <displayName count="one">Singapur-Dollar</displayName>
- <displayName count="other">Singapur-Dollar</displayName>
- </currency>
- <currency type="SHP">
- <displayName>St.-Helena-Pfund</displayName>
- <displayName count="one">St.-Helena-Pfund</displayName>
- <displayName count="other">St.-Helena-Pfund</displayName>
- </currency>
- <currency type="SIT">
- <displayName>Tolar</displayName>
- <displayName count="one">Tolar</displayName>
- <displayName count="other">Tolar</displayName>
- </currency>
- <currency type="SKK">
- <displayName>Slowakischi Chroone</displayName>
- <displayName count="one">Slowakischi Chroone</displayName>
- <displayName count="other">Slowakischi Chroone</displayName>
- </currency>
- <currency type="SLL">
- <displayName>Leone</displayName>
- <displayName count="one">Leone</displayName>
- <displayName count="other">Leone</displayName>
- </currency>
- <currency type="SOS">
- <displayName>Somalia-Schilling</displayName>
- <displayName count="one">Somalia-Schilling</displayName>
- <displayName count="other">Somalia-Schilling</displayName>
- </currency>
- <currency type="SRD">
- <displayName>Surinamische Dollar</displayName>
- <displayName count="one">Surinamische Dollar</displayName>
- <displayName count="other">Surinamischi Dollar</displayName>
- </currency>
- <currency type="SRG">
- <displayName>Surinamische Gulde</displayName>
- <displayName count="one">Surinamischi Gulde</displayName>
- <displayName count="other">Surinamischi Gulde</displayName>
- </currency>
- <currency type="SSP">
- <displayName>Süüdsudaneesischs Pfund</displayName>
- <displayName count="one">Süüdsudaneesische Pfund</displayName>
- <displayName count="other">Süüdsudaneesischi Pfund</displayName>
- </currency>
- <currency type="STD">
- <displayName>Dobra</displayName>
- <displayName count="one">Dobra</displayName>
- <displayName count="other">Dobra</displayName>
- </currency>
- <currency type="SUR">
- <displayName>Sowjetische Rubel</displayName>
- <displayName count="one">Sowjetischi Rubel</displayName>
- <displayName count="other">Sowjetischi Rubel</displayName>
- </currency>
- <currency type="SVC">
- <displayName>El-Salvador-Colon</displayName>
- <displayName count="one">El-Salvador-Colon</displayName>
- <displayName count="other">El-Salvador-Colon</displayName>
- </currency>
- <currency type="SYP">
- <displayName>Süürischs Pfund</displayName>
- <displayName count="one">Süürischs Pfund</displayName>
- <displayName count="other">Süürischi Pfund</displayName>
- </currency>
- <currency type="SZL">
- <displayName>Lilangeni</displayName>
- <displayName count="one">Lilangeni</displayName>
- <displayName count="other">Lilangeni</displayName>
- </currency>
- <currency type="THB">
- <displayName>Baht</displayName>
- <displayName count="one">Baht</displayName>
- <displayName count="other">Baht</displayName>
- </currency>
- <currency type="TJR">
- <displayName>Tadschikischtan-Rubel</displayName>
- <displayName count="one">Tadschikischtan-Rubel</displayName>
- <displayName count="other">Tadschikischtan-Rubel</displayName>
- </currency>
- <currency type="TJS">
- <displayName>Tadschikischtan-Somoni</displayName>
- <displayName count="one">Tadschikischtan-Somoni</displayName>
- <displayName count="other">Tadschikischtan-Somoni</displayName>
- </currency>
- <currency type="TMM">
- <displayName>Turkmeenischtan-Manat</displayName>
- <displayName count="one">Turkmeenischtan-Manat</displayName>
- <displayName count="other">Turkmeenischtan-Manat</displayName>
- </currency>
- <currency type="TND">
- <displayName>Tuneesische Dinar</displayName>
- <displayName count="one">Tuneesische Dinar</displayName>
- <displayName count="other">Tuneesischi Dinar</displayName>
- </currency>
- <currency type="TOP">
- <displayName>Paʻanga</displayName>
- <displayName count="one">Paʻanga</displayName>
- <displayName count="other">Paʻanga</displayName>
- </currency>
- <currency type="TPE">
- <displayName>Timor-Escudo</displayName>
- <displayName count="one">Timor-Escudo</displayName>
- <displayName count="other">Timor-Escudo</displayName>
- </currency>
- <currency type="TRL">
- <displayName>Türkischi Liire</displayName>
- <displayName count="one">Türkischi Liira (1922-2005)</displayName>
- <displayName count="other">Türkischi Liire (1922-2005)</displayName>
- </currency>
- <currency type="TRY">
- <displayName>Nöii Türkischi Liire</displayName>
- <displayName count="one">Nöii Türkischi Liira</displayName>
- <displayName count="other">Nöii Türkischi Liire</displayName>
- </currency>
- <currency type="TTD">
- <displayName>Trinidad-und-Tobago-Dollar</displayName>
- <displayName count="one">Trinidad-und-Tobago-Dollar</displayName>
- <displayName count="other">Trinidad-und-Tobago-Dollar</displayName>
- </currency>
- <currency type="TWD">
- <displayName>Nöii Taiwan-Dollar</displayName>
- <displayName count="one">Nöie Taiwan-Dollar</displayName>
- <displayName count="other">Nöii Taiwan-Dollar</displayName>
- </currency>
- <currency type="TZS">
- <displayName>Tansania-Schilling</displayName>
- <displayName count="one">Tansania-Schilling</displayName>
- <displayName count="other">Tansania-Schilling</displayName>
- </currency>
- <currency type="UAH">
- <displayName>Hryvnia</displayName>
- <displayName count="one">Hryvnia</displayName>
- <displayName count="other">Hryvnia</displayName>
- </currency>
- <currency type="UAK">
- <displayName>Ukraiinische Karbovanetz</displayName>
- <displayName count="one">Ukraiinischi Karbovanetz</displayName>
- <displayName count="other">Ukraiinischi Karbovanetz</displayName>
- </currency>
- <currency type="UGS">
- <displayName>Uganda-Schilling (1966-1987)</displayName>
- <displayName count="one">Uganda-Schilling (1966-1987)</displayName>
- <displayName count="other">Uganda-Schilling (1966-1987)</displayName>
- </currency>
- <currency type="UGX">
- <displayName>Uganda-Schilling</displayName>
- <displayName count="one">Uganda-Schilling</displayName>
- <displayName count="other">Uganda-Schilling</displayName>
- </currency>
- <currency type="USD">
- <displayName>US-Dollar</displayName>
- <displayName count="one">US-Dollar</displayName>
- <displayName count="other">US-Dollar</displayName>
- <symbol>$</symbol>
- </currency>
- <currency type="USN">
- <displayName>US Dollar (Nöchschte Taag)</displayName>
- <displayName count="one">US-Dollar (Nöchschte Taag)</displayName>
- <displayName count="other">US-Dollar (Nöchschte Taag)</displayName>
- </currency>
- <currency type="USS">
- <displayName>US Dollar (Gliiche Taag)</displayName>
- <displayName count="one">US-Dollar (Gliiche Taag)</displayName>
- <displayName count="other">US-Dollar (Gliiche Taag)</displayName>
- </currency>
- <currency type="UYP">
- <displayName>Uruguayische Nöie Peso (1975-1993)</displayName>
- <displayName count="one">Uruguayischi Nöii Pesos (1975-1993)</displayName>
- <displayName count="other">Uruguayischi Nöii Pesos (1975-1993)</displayName>
- </currency>
- <currency type="UYU">
- <displayName>Uruguayische Peso</displayName>
- <displayName count="one">Uruguayische Peso</displayName>
- <displayName count="other">Uruguayischi Pesos</displayName>
- </currency>
- <currency type="UZS">
- <displayName>Usbeekischtan-Sum</displayName>
- <displayName count="one">Usbeekischtan-Sum</displayName>
- <displayName count="other">Usbeekischtan-Sum</displayName>
- </currency>
- <currency type="VEB">
- <displayName>Bolivar (1871-2008)</displayName>
- <displayName count="one">Bolivar (1871-2008)</displayName>
- <displayName count="other">Bolivar (1871-2008)</displayName>
- </currency>
- <currency type="VEF">
- <displayName>Bolivar</displayName>
- <displayName count="one">Bolivar</displayName>
- <displayName count="other">Bolivar</displayName>
- </currency>
- <currency type="VND">
- <displayName>Dong</displayName>
- </currency>
- <currency type="VUV">
- <displayName>Vatu</displayName>
- <displayName count="one">Vatu</displayName>
- <displayName count="other">Vatu</displayName>
- </currency>
- <currency type="WST">
- <displayName>Tala</displayName>
- <displayName count="one">Tala</displayName>
- <displayName count="other">Tala</displayName>
- </currency>
- <currency type="XAF">
- <displayName>CFA-Franc (Äquatoriaal)</displayName>
- <displayName count="one">CFA-Franc (Äquatoriaal)</displayName>
- <displayName count="other">CFA-Franc (Äquatoriaal)</displayName>
- </currency>
- <currency type="XAG">
- <displayName>Silber</displayName>
- <displayName count="one">Silber</displayName>
- <displayName count="other">Silber</displayName>
- </currency>
- <currency type="XAU">
- <displayName>Gold</displayName>
- <displayName count="one">Gold</displayName>
- <displayName count="other">Gold</displayName>
- </currency>
- <currency type="XBA">
- <displayName>Europääischi Rächnigseinheit</displayName>
- <displayName count="one">Europääischi Rächnigseinheite</displayName>
- <displayName count="other">Europääischi Rächnigseinheite</displayName>
- </currency>
- <currency type="XBB">
- <displayName>Europääischi Währigseinheit (XBB)</displayName>
- <displayName count="one">Europääischi Währigseinheite (XBB)</displayName>
- <displayName count="other">Europääischi Währigseinheite (XBB)</displayName>
- </currency>
- <currency type="XBC">
- <displayName>Europääischi Rächnigseinheit (XBC)</displayName>
- <displayName count="one">Europääischi Rächnigseinheite (XBC)</displayName>
- <displayName count="other">Europääischi Rächnigseinheite (XBC)</displayName>
- </currency>
- <currency type="XBD">
- <displayName>Europääischi Rächnigseinheit (XBD)</displayName>
- <displayName count="one">Europääischi Rächnigseinheite (XBD)</displayName>
- <displayName count="other">Europääischi Rächnigseinheite (XBD)</displayName>
- </currency>
- <currency type="XCD">
- <displayName>Oschtkaribische Dollar</displayName>
- <displayName count="one">Oschtkaribische Dollar</displayName>
- <displayName count="other">Oschtkaribischi Dollar</displayName>
- </currency>
- <currency type="XDR">
- <displayName>Sunderziäigsrächt</displayName>
- <displayName count="one">Sunderziäigsrächt</displayName>
- <displayName count="other">Sunderziäigsrächt</displayName>
- </currency>
- <currency type="XEU">
- <displayName>Europääischi Währigseinheit (XEU)</displayName>
- <displayName count="one">Europääischi Währigseinheite (XEU)</displayName>
- <displayName count="other">Europääischi Währigseinheite (XEU)</displayName>
- </currency>
- <currency type="XFO">
- <displayName>Französische Gold-Franc</displayName>
- <displayName count="one">Französischi Gold-Franc</displayName>
- <displayName count="other">Französischi Gold-Franc</displayName>
- </currency>
- <currency type="XFU">
- <displayName>Französische UIC-Franc</displayName>
- <displayName count="one">Französischi UIC-Franc</displayName>
- <displayName count="other">Französischi UIC-Franc</displayName>
- </currency>
- <currency type="XOF">
- <displayName>CFA-Franc (Wescht)</displayName>
- <displayName count="one">CFA-Franc (Wescht)</displayName>
- <displayName count="other">CFA-Franc (Wescht)</displayName>
- </currency>
- <currency type="XPD">
- <displayName>Palladium</displayName>
- <displayName count="one">Palladium</displayName>
- <displayName count="other">Palladium</displayName>
- </currency>
- <currency type="XPF">
- <displayName>CFP-Franc</displayName>
- <displayName count="one">CFP-Franc</displayName>
- <displayName count="other">CFP-Franc</displayName>
- </currency>
- <currency type="XPT">
- <displayName>Platin</displayName>
- <displayName count="one">Platin</displayName>
- <displayName count="other">Platin</displayName>
- </currency>
- <currency type="XRE">
- <displayName>RINET-Funds</displayName>
- <displayName count="one">RINET-Funds</displayName>
- <displayName count="other">RINET-Funds</displayName>
- </currency>
- <currency type="XTS">
- <displayName>Teschtwährig</displayName>
- <displayName count="one">Teschtwährig</displayName>
- <displayName count="other">Teschtwährig</displayName>
- </currency>
- <currency type="XXX">
- <displayName>Unbekannti Währig</displayName>
- <displayName count="one">Unbekannti Währig</displayName>
- <displayName count="other">Unbekannti Währig</displayName>
- </currency>
- <currency type="YDD">
- <displayName>Jeme-Dinar</displayName>
- <displayName count="one">Jeme-Dinar</displayName>
- <displayName count="other">Jeme-Dinar</displayName>
- </currency>
- <currency type="YER">
- <displayName>Jeme-Rial</displayName>
- <displayName count="one">Jeme-Rial</displayName>
- <displayName count="other">Jeme-Rial</displayName>
- </currency>
- <currency type="YUD">
- <displayName>Jugoslawische Dinar (1966-1990)</displayName>
- <displayName count="one">Jugoslawischi Dinar (1966-1990)</displayName>
- <displayName count="other">Jugoslawischi Dinar (1966-1990)</displayName>
- </currency>
- <currency type="YUM">
- <displayName>Nöii Dinar</displayName>
- <displayName count="one">Nöie Dinar</displayName>
- <displayName count="other">Nöii Dinar</displayName>
- </currency>
- <currency type="YUN">
- <displayName>Jugoslawische Dinar (konvertibel)</displayName>
- <displayName count="one">Jugoslawischi Dinar (konvertibel)</displayName>
- <displayName count="other">Jugoslawischi Dinar (konvertibel)</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>Rand</displayName>
- <displayName count="one">Rand</displayName>
- <displayName count="other">Rand</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>Kwacha (1968-2012)</displayName>
- <displayName count="one">Kwacha (1968-2012)</displayName>
- <displayName count="other">Kwacha (1968-2012)</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>Kwacha</displayName>
- <displayName count="one">Kwacha</displayName>
- <displayName count="other">Kwacha</displayName>
- </currency>
- <currency type="ZRN">
- <displayName>Nöie Zaire</displayName>
- <displayName count="one">Nöii Zaire</displayName>
- <displayName count="other">Nöii Zaire</displayName>
- </currency>
- <currency type="ZRZ">
- <displayName>Zaire</displayName>
- <displayName count="one">Zaire</displayName>
- <displayName count="other">Zaire</displayName>
- </currency>
- <currency type="ZWD">
- <displayName>Simbabwe-Dollar</displayName>
- <displayName count="one">Simbabwe-Dollar</displayName>
- <displayName count="other">Simbabwe-Dollar</displayName>
- </currency>
- </currencies>
- </numbers>
- <units>
- <unit type="day">
- <unitPattern count="one">{0} Taag</unitPattern>
- <unitPattern count="other">{0} Tääg</unitPattern>
- </unit>
- <unit type="hour">
- <unitPattern count="one">{0} Schtund</unitPattern>
- <unitPattern count="other">{0} Schtunde</unitPattern>
- </unit>
- <unit type="minute">
- <unitPattern count="one">{0} Minuute</unitPattern>
- <unitPattern count="other">{0} Minuute</unitPattern>
- </unit>
- <unit type="month">
- <unitPattern count="one">{0} Monet</unitPattern>
- <unitPattern count="other">{0} Mönet</unitPattern>
- </unit>
- <unit type="second">
- <unitPattern count="one">{0} Sekunde</unitPattern>
- <unitPattern count="other">{0} Sekunde</unitPattern>
- </unit>
- <unit type="week">
- <unitPattern count="one">{0} Wuche</unitPattern>
- <unitPattern count="other">{0} Wuche</unitPattern>
- </unit>
- <unit type="year">
- <unitPattern count="one">{0} Jahr</unitPattern>
- <unitPattern count="other">{0} Jahr</unitPattern>
- </unit>
- </units>
- <listPatterns>
- <listPattern>
- <listPatternPart type="2" draft="contributed">{0} und {1}</listPatternPart>
- <listPatternPart type="end" draft="contributed">{0} und {1}</listPatternPart>
- </listPattern>
- </listPatterns>
- <posix>
- <messages>
- <yesstr>ja:j</yesstr>
- <nostr>näi:n</nostr>
- </messages>
- </posix>
- </ldml>
|