| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229 |
- <?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: 9287 $"/>
- <generation date="$Date: 2013-08-28 21:32:04 -0500 (Wed, 28 Aug 2013) $"/>
- <language type="it"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>{0}, {1}</localeSeparator>
- <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
- </localeDisplayPattern>
- <languages>
- <language type="aa">afar</language>
- <language type="ab">abcaso</language>
- <language type="ace">accinese</language>
- <language type="ach">acioli</language>
- <language type="ada">adangme</language>
- <language type="ady">adyghe</language>
- <language type="ae">avestan</language>
- <language type="af">afrikaans</language>
- <language type="afa">lingua afroasiatica</language>
- <language type="afh">afrihili</language>
- <language type="agq" draft="contributed">aghem</language>
- <language type="ain">ainu</language>
- <language type="ak">akan</language>
- <language type="akk">accado</language>
- <language type="ale">aleuto</language>
- <language type="alg">lingue algonchine</language>
- <language type="alt">altai meridionale</language>
- <language type="am">amarico</language>
- <language type="an">aragonese</language>
- <language type="ang">inglese antico</language>
- <language type="anp" draft="contributed">angika</language>
- <language type="apa">lingue apache</language>
- <language type="ar">arabo</language>
- <language type="ar_001">arabo moderno standard</language>
- <language type="arc">aramaico</language>
- <language type="arn">araucano</language>
- <language type="arp">arapaho</language>
- <language type="art">lingua artificiale</language>
- <language type="arw">aruaco</language>
- <language type="as">assamese</language>
- <language type="asa" draft="contributed">asu</language>
- <language type="ast">asturiano</language>
- <language type="ath">lingue athabaska</language>
- <language type="aus">lingue australiane</language>
- <language type="av">avaro</language>
- <language type="awa">awadhi</language>
- <language type="ay">aymara</language>
- <language type="az">azerbaigiano</language>
- <language type="az" alt="short">azero</language>
- <language type="ba">baschiro</language>
- <language type="bad">banda</language>
- <language type="bai">lingue bamileke</language>
- <language type="bal">beluci</language>
- <language type="ban">balinese</language>
- <language type="bas">basa</language>
- <language type="bat">lingua baltica</language>
- <language type="bax" draft="contributed">bamun</language>
- <language type="bbj" draft="contributed">ghomala</language>
- <language type="be">bielorusso</language>
- <language type="bej">begia</language>
- <language type="bem">wemba</language>
- <language type="ber">berbero</language>
- <language type="bez" draft="contributed">bena</language>
- <language type="bfd" draft="contributed">bafut</language>
- <language type="bg">bulgaro</language>
- <language type="bh">bihari</language>
- <language type="bho">bhojpuri</language>
- <language type="bi">bislama</language>
- <language type="bik">bicol</language>
- <language type="bin">bini</language>
- <language type="bkm" draft="contributed">kom</language>
- <language type="bla">siksika</language>
- <language type="bm">bambara</language>
- <language type="bn">bengalese</language>
- <language type="bnt">bantu</language>
- <language type="bo">tibetano</language>
- <language type="br">bretone</language>
- <language type="bra">braj</language>
- <language type="brx" draft="contributed">bodo</language>
- <language type="bs">bosniaco</language>
- <language type="bss" draft="contributed">akoose</language>
- <language type="btk">batak</language>
- <language type="bua">buriat</language>
- <language type="bug">bugi</language>
- <language type="bum" draft="contributed">bulu</language>
- <language type="byn">blin</language>
- <language type="byv" draft="contributed">medumba</language>
- <language type="ca">catalano</language>
- <language type="cad">caddo</language>
- <language type="cai">lingua indiana dell'America Centrale</language>
- <language type="car">caribico</language>
- <language type="cau">lingua caucasica</language>
- <language type="cay" draft="contributed">cayuga</language>
- <language type="cch" draft="contributed">atsam</language>
- <language type="ce">ceceno</language>
- <language type="ceb">cebuano</language>
- <language type="cel">celtica altra lingua</language>
- <language type="cgg" draft="contributed">chiga</language>
- <language type="ch">chamorro</language>
- <language type="chb">chibcha</language>
- <language type="chg">ciagataico</language>
- <language type="chk">chuukese</language>
- <language type="chm">mari</language>
- <language type="chn">gergo chinook</language>
- <language type="cho">choctaw</language>
- <language type="chp">chipewyan</language>
- <language type="chr">cherokee</language>
- <language type="chy">cheyenne</language>
- <language type="ckb" draft="contributed">curdo sorani</language>
- <language type="cmc">lingue chamic</language>
- <language type="co">corso</language>
- <language type="cop">copto</language>
- <language type="cpe">creolo o pidgin basati sull'inglese</language>
- <language type="cpf">creolo o pidgin basati sul francese</language>
- <language type="cpp">creolo o pidgin basati sul portoghese</language>
- <language type="cr">cree</language>
- <language type="crh">turco crimeo</language>
- <language type="crp">creolo o pidgin</language>
- <language type="cs">ceco</language>
- <language type="csb">kashubian</language>
- <language type="cu">slavo della Chiesa</language>
- <language type="cus">lingua cuscitica</language>
- <language type="cv">chuvash</language>
- <language type="cy">gallese</language>
- <language type="da">danese</language>
- <language type="dak">dakota</language>
- <language type="dar">dargwa</language>
- <language type="dav" draft="contributed">taita</language>
- <language type="day">dayak</language>
- <language type="de">tedesco</language>
- <language type="de_AT">tedesco austriaco</language>
- <language type="de_CH">alto tedesco svizzero</language>
- <language type="del">delaware</language>
- <language type="den">slave</language>
- <language type="dgr">dogrib</language>
- <language type="din">dinca</language>
- <language type="dje" draft="contributed">zarma</language>
- <language type="doi">dogri</language>
- <language type="dra">lingua dravidica</language>
- <language type="dsb">basso sorabo</language>
- <language type="dua">duala</language>
- <language type="dum">olandese medio</language>
- <language type="dv">divehi</language>
- <language type="dyo" draft="contributed">jola-fony</language>
- <language type="dyu">diula</language>
- <language type="dz">dzongkha</language>
- <language type="dzg" draft="contributed">dazaga</language>
- <language type="ebu" draft="contributed">embu</language>
- <language type="ee">ewe</language>
- <language type="efi">efik</language>
- <language type="egy">egiziano antico</language>
- <language type="eka">ekajuka</language>
- <language type="el">greco</language>
- <language type="elx">elamitico</language>
- <language type="en">inglese</language>
- <language type="en_AU">inglese australiano</language>
- <language type="en_CA">inglese canadese</language>
- <language type="en_GB">inglese britannico</language>
- <language type="en_GB" alt="short">inglese (GB)</language>
- <language type="en_US">inglese americano</language>
- <language type="en_US" alt="short">inglese (USA)</language>
- <language type="enm">inglese medio</language>
- <language type="eo">esperanto</language>
- <language type="es">spagnolo</language>
- <language type="es_419">spagnolo latinoamericano</language>
- <language type="es_ES">spagnolo europeo</language>
- <language type="es_MX">spagnolo messicano</language>
- <language type="et">estone</language>
- <language type="eu">basco</language>
- <language type="ewo">ewondo</language>
- <language type="fa">persiano</language>
- <language type="fan">fang</language>
- <language type="fat">fanti</language>
- <language type="ff">fulah</language>
- <language type="fi">finlandese</language>
- <language type="fil">filippino</language>
- <language type="fiu">lingua ungrofinnica</language>
- <language type="fj">figiano</language>
- <language type="fo">faroese</language>
- <language type="fon" draft="contributed">fon</language>
- <language type="fr">francese</language>
- <language type="fr_CA">francese canadese</language>
- <language type="fr_CH">francese svizzero</language>
- <language type="frm">francese medio</language>
- <language type="fro">francese antico</language>
- <language type="frr">frisone settentrionale</language>
- <language type="frs" draft="contributed">frisone orientale</language>
- <language type="fur">friulano</language>
- <language type="fy">frisone occidentale</language>
- <language type="ga">irlandese</language>
- <language type="gaa">ga</language>
- <language type="gay">gayo</language>
- <language type="gba">gbaya</language>
- <language type="gd">gaelico scozzese</language>
- <language type="gem">lingua germanica</language>
- <language type="gez">geez</language>
- <language type="gil">gilbertese</language>
- <language type="gl">galiziano</language>
- <language type="gmh">tedesco medio alto</language>
- <language type="gn">guarana</language>
- <language type="goh">tedesco antico alto</language>
- <language type="gon">gondi</language>
- <language type="gor">gorontalo</language>
- <language type="got">gotico</language>
- <language type="grb">gerbo</language>
- <language type="grc">greco antico</language>
- <language type="gsw">tedesco svizzero</language>
- <language type="gu">gujarati</language>
- <language type="guz" draft="contributed">gusii</language>
- <language type="gv">manx</language>
- <language type="gwi">gwichʼin</language>
- <language type="ha">haussa</language>
- <language type="hai">haida</language>
- <language type="haw">hawaiano</language>
- <language type="he">ebraico</language>
- <language type="hi">hindi</language>
- <language type="hil">hiligayna</language>
- <language type="him">himachali</language>
- <language type="hit">hittite</language>
- <language type="hmn">hmong</language>
- <language type="ho">hiri motu</language>
- <language type="hr">croato</language>
- <language type="hsb">alto sorabo</language>
- <language type="ht">haitiano</language>
- <language type="hu">ungherese</language>
- <language type="hup">hupa</language>
- <language type="hy">armeno</language>
- <language type="hz">herero</language>
- <language type="ia">interlingua</language>
- <language type="iba">iban</language>
- <language type="ibb" draft="contributed">ibibio</language>
- <language type="id">indonesiano</language>
- <language type="ie">interlingue</language>
- <language type="ig">igbo</language>
- <language type="ii">sichuan yi</language>
- <language type="ijo" draft="contributed">ijo</language>
- <language type="ik">inupiak</language>
- <language type="ilo">ilocano</language>
- <language type="inc">lingua indiana</language>
- <language type="ine">lingua indoeuropea</language>
- <language type="inh">ingush</language>
- <language type="io">ido</language>
- <language type="ira">iraniana</language>
- <language type="iro">lingue irochesi</language>
- <language type="is">islandese</language>
- <language type="it">italiano</language>
- <language type="iu">inuktitut</language>
- <language type="ja">giapponese</language>
- <language type="jbo">lojban</language>
- <language type="jgo" draft="contributed">Ngamambo</language>
- <language type="jmc" draft="contributed">machame</language>
- <language type="jpr">giudeo persiano</language>
- <language type="jrb">giudeo arabo</language>
- <language type="jv">giavanese</language>
- <language type="ka">georgiano</language>
- <language type="kaa">kara-kalpak</language>
- <language type="kab">kabyle</language>
- <language type="kac">kachin</language>
- <language type="kaj" draft="contributed">kai</language>
- <language type="kam">kamba</language>
- <language type="kar">karen</language>
- <language type="kaw">kawi</language>
- <language type="kbd">kabardia</language>
- <language type="kbl" draft="contributed">kanembu</language>
- <language type="kcg" draft="contributed">tyap</language>
- <language type="kde" draft="contributed">makonde</language>
- <language type="kea" draft="contributed">capoverdiano</language>
- <language type="kfo" draft="contributed">koro</language>
- <language type="kg">kongo</language>
- <language type="kha">khasi</language>
- <language type="khi">lingua khoisan</language>
- <language type="kho">khotanese</language>
- <language type="khq" draft="contributed">koyra chiini</language>
- <language type="ki">kikuyu</language>
- <language type="kj">kuanyama</language>
- <language type="kk">kazako</language>
- <language type="kkj" draft="contributed">kako</language>
- <language type="kl">kalaallisut</language>
- <language type="kln" draft="contributed">kalenjin</language>
- <language type="km">khmer</language>
- <language type="kmb">kimbundu</language>
- <language type="kn">kannada</language>
- <language type="ko">coreano</language>
- <language type="kok">konkani</language>
- <language type="kos">kosraean</language>
- <language type="kpe">kpelle</language>
- <language type="kr">kanuri</language>
- <language type="krc">karachay-Balkar</language>
- <language type="krl">careliano</language>
- <language type="kro">kru</language>
- <language type="kru">kurukh</language>
- <language type="ks">kashmiri</language>
- <language type="ksb" draft="contributed">shambala</language>
- <language type="ksf" draft="contributed">bafia</language>
- <language type="ksh" draft="contributed">coloniese</language>
- <language type="ku">curdo</language>
- <language type="kum">kumyk</language>
- <language type="kut">kutenai</language>
- <language type="kv">komi</language>
- <language type="kw">cornico</language>
- <language type="ky">kirghiso</language>
- <language type="la">latino</language>
- <language type="lad">ladino</language>
- <language type="lag" draft="contributed">langi</language>
- <language type="lah">lahnda</language>
- <language type="lam">lamba</language>
- <language type="lb">lussemburghese</language>
- <language type="lez">lezghian</language>
- <language type="lg">ganda</language>
- <language type="li">limburgese</language>
- <language type="ln">lingala</language>
- <language type="lo">lao</language>
- <language type="lol">lolo bantu</language>
- <language type="loz">lozi</language>
- <language type="lt">lituano</language>
- <language type="lu">luba-katanga</language>
- <language type="lua">luba-lulua</language>
- <language type="lui">luiseno</language>
- <language type="lun">lunda</language>
- <language type="luo">luo</language>
- <language type="lus">lushai</language>
- <language type="luy" draft="contributed">luyia</language>
- <language type="lv">lettone</language>
- <language type="mad">madurese</language>
- <language type="maf" draft="contributed">mafa</language>
- <language type="mag">magahi</language>
- <language type="mai">maithili</language>
- <language type="mak">makasar</language>
- <language type="man">mandingo</language>
- <language type="map">austronesiano</language>
- <language type="mas">masai</language>
- <language type="mde" draft="contributed">maba</language>
- <language type="mdf">moksha</language>
- <language type="mdr">mandar</language>
- <language type="men">mende</language>
- <language type="mer" draft="contributed">meru</language>
- <language type="mfe" draft="contributed">creolo mauriziano</language>
- <language type="mg">malgascio</language>
- <language type="mga">irlandese medio</language>
- <language type="mgh" draft="contributed">makhuwa-meetto</language>
- <language type="mgo" draft="contributed">Meta'</language>
- <language type="mh">marshallese</language>
- <language type="mi">maori</language>
- <language type="mic">micmac</language>
- <language type="min">menangkabau</language>
- <language type="mis">lingue diverse</language>
- <language type="mk">macedone</language>
- <language type="mkh">lingua mon-khmer</language>
- <language type="ml">malayalam</language>
- <language type="mn">mongolo</language>
- <language type="mnc">manchu</language>
- <language type="mni">manipuri</language>
- <language type="mno">manobo</language>
- <language type="mo">moldavo</language>
- <language type="moh">mohawk</language>
- <language type="mos">mossi</language>
- <language type="mr">marathi</language>
- <language type="ms">malese</language>
- <language type="mt">maltese</language>
- <language type="mua" draft="contributed">mundang</language>
- <language type="mul">multilingua</language>
- <language type="mun">lingua munda</language>
- <language type="mus">creek</language>
- <language type="mwl">mirandese</language>
- <language type="mwr">marwari</language>
- <language type="my">birmano</language>
- <language type="mye" draft="contributed">myene</language>
- <language type="myn">lingue maya</language>
- <language type="myv">erzya</language>
- <language type="na">nauru</language>
- <language type="nah">nahuatl</language>
- <language type="nai">lingua indiana del Nord America</language>
- <language type="nap">napoletano</language>
- <language type="naq" draft="contributed">nama</language>
- <language type="nb">norvegese bokmal</language>
- <language type="nd">ndebele del nord</language>
- <language type="nds">basso tedesco</language>
- <language type="ne">nepalese</language>
- <language type="new">newari</language>
- <language type="ng">ndonga</language>
- <language type="nia">nias</language>
- <language type="nic">lingua niger-cordofan</language>
- <language type="niu">niue</language>
- <language type="nl">olandese</language>
- <language type="nl_BE">fiammingo</language>
- <language type="nmg" draft="contributed">kwasio</language>
- <language type="nn">norvegese nynorsk</language>
- <language type="nnh" draft="contributed">ngiemboon</language>
- <language type="no">norvegese</language>
- <language type="nog">nogai</language>
- <language type="non">norse antico</language>
- <language type="nqo">n'ko</language>
- <language type="nr">ndebele del sud</language>
- <language type="nso">sotho del nord</language>
- <language type="nub">nubiano</language>
- <language type="nus" draft="contributed">nuer</language>
- <language type="nv">navajo</language>
- <language type="nwc">newari classico</language>
- <language type="ny">nyanja</language>
- <language type="nym">nyamwezi</language>
- <language type="nyn">nyankole</language>
- <language type="nyo">nyoro</language>
- <language type="nzi">nzima</language>
- <language type="oc">occitano</language>
- <language type="oj">ojibwa</language>
- <language type="om">oromo</language>
- <language type="or">oriya</language>
- <language type="os">ossetico</language>
- <language type="osa">osage</language>
- <language type="ota">turco ottomano</language>
- <language type="oto">lingue otomi</language>
- <language type="pa">punjabi</language>
- <language type="paa">lingua papuana</language>
- <language type="pag">pangasinan</language>
- <language type="pal">pahlavi</language>
- <language type="pam">pampanga</language>
- <language type="pap">papiamento</language>
- <language type="pau">palau</language>
- <language type="peo">persiano antico</language>
- <language type="phi">lingua filippina</language>
- <language type="phn">fenicio</language>
- <language type="pi">pali</language>
- <language type="pl">polacco</language>
- <language type="pon">ponape</language>
- <language type="pra">pracrito</language>
- <language type="pro">provenzale antico</language>
- <language type="ps">pashto</language>
- <language type="pt">portoghese</language>
- <language type="pt_BR">portoghese brasiliano</language>
- <language type="pt_PT">portoghese europeo</language>
- <language type="qu">quechua</language>
- <language type="raj">rajasthani</language>
- <language type="rap">rapanui</language>
- <language type="rar">rarotonga</language>
- <language type="rm">romancio</language>
- <language type="rn">rundi</language>
- <language type="ro">rumeno</language>
- <language type="roa">lingua romanza</language>
- <language type="rof" draft="contributed">rombo</language>
- <language type="rom">romani</language>
- <language type="root" draft="contributed">root</language>
- <language type="ru">russo</language>
- <language type="rup">arumeno</language>
- <language type="rw">kinyarwanda</language>
- <language type="rwk" draft="contributed">rwa</language>
- <language type="sa">sanscrito</language>
- <language type="sad">sandawe</language>
- <language type="sah">yakut</language>
- <language type="sai">lingua indiana del Sud America</language>
- <language type="sal">lingue salish</language>
- <language type="sam">aramaico samaritano</language>
- <language type="saq" draft="contributed">samburu</language>
- <language type="sas">sasak</language>
- <language type="sat">santali</language>
- <language type="sba" draft="contributed">ngambay</language>
- <language type="sbp" draft="contributed">sangu</language>
- <language type="sc">sardo</language>
- <language type="scn">siciliano</language>
- <language type="sco">scozzese</language>
- <language type="sd">sindhi</language>
- <language type="se">sami del nord</language>
- <language type="see" draft="contributed">seneca</language>
- <language type="seh" draft="contributed">sena</language>
- <language type="sel">selkup</language>
- <language type="sem">lingua semitica</language>
- <language type="ses" draft="contributed">koyraboro senni</language>
- <language type="sg">sango</language>
- <language type="sga">irlandese antico</language>
- <language type="sgn">lingue sign</language>
- <language type="sh">serbo-croato</language>
- <language type="shi" draft="contributed">tachelhit</language>
- <language type="shn">shan</language>
- <language type="shu" draft="contributed">chadian arabic</language>
- <language type="si">singalese</language>
- <language type="sid">sidamo</language>
- <language type="sio">lingue sioux</language>
- <language type="sit">lingua sino-tibetana</language>
- <language type="sk">slovacco</language>
- <language type="sl">sloveno</language>
- <language type="sla">lingua slava</language>
- <language type="sm">samoano</language>
- <language type="sma">sami del sud</language>
- <language type="smi">lingua sami</language>
- <language type="smj">sami lule</language>
- <language type="smn">sami inari</language>
- <language type="sms">sami skolt</language>
- <language type="sn">shona</language>
- <language type="snk">soninke</language>
- <language type="so">somalo</language>
- <language type="sog">sogdiano</language>
- <language type="son">songhai</language>
- <language type="sq">albanese</language>
- <language type="sr">serbo</language>
- <language type="srn">sranan tongo</language>
- <language type="srr">serer</language>
- <language type="ss">swati</language>
- <language type="ssa">lingua nilo-sahariana</language>
- <language type="ssy" draft="contributed">saho</language>
- <language type="st">sotho del sud</language>
- <language type="su">sundanese</language>
- <language type="suk">sukuma</language>
- <language type="sus">susu</language>
- <language type="sux">sumero</language>
- <language type="sv">svedese</language>
- <language type="sw">swahili</language>
- <language type="swb">comoriano</language>
- <language type="swc" draft="contributed">congo swahili</language>
- <language type="syc" draft="contributed">siriaco classico</language>
- <language type="syr">siriaco</language>
- <language type="ta">tamil</language>
- <language type="tai">lingua tailandese</language>
- <language type="te">telugu</language>
- <language type="tem">temne</language>
- <language type="teo" draft="contributed">teso</language>
- <language type="ter">tereno</language>
- <language type="tet">tetum</language>
- <language type="tg">tagicco</language>
- <language type="th">thai</language>
- <language type="ti">tigrino</language>
- <language type="tig">tigre</language>
- <language type="tiv" draft="contributed">tiv</language>
- <language type="tk">turcomanno</language>
- <language type="tkl">tokelau</language>
- <language type="tl">tagalog</language>
- <language type="tlh">klingon</language>
- <language type="tli">tlingit</language>
- <language type="tmh">tamashek</language>
- <language type="tn">tswana</language>
- <language type="to">tongano</language>
- <language type="tog">nyasa del Tonga</language>
- <language type="tpi">tok pisin</language>
- <language type="tr">turco</language>
- <language type="trv" draft="contributed">taroko</language>
- <language type="ts">tsonga</language>
- <language type="tsi">tsimshian</language>
- <language type="tt">tatarico</language>
- <language type="tum">tumbuka</language>
- <language type="tup">lingue tupi</language>
- <language type="tut">lingua altaica</language>
- <language type="tvl">tuvalu</language>
- <language type="tw">ci</language>
- <language type="twq" draft="contributed">tasawaq</language>
- <language type="ty">taitiano</language>
- <language type="tyv">tuvinian</language>
- <language type="tzm" draft="contributed">tamazight</language>
- <language type="udm">udmurt</language>
- <language type="ug">uigurico</language>
- <language type="ug" alt="variant">uiguro</language>
- <language type="uga">ugaritico</language>
- <language type="uk">ucraino</language>
- <language type="umb">mbundu</language>
- <language type="und">lingua imprecisata</language>
- <language type="ur">urdu</language>
- <language type="uz">usbeco</language>
- <language type="vai" draft="contributed">vai</language>
- <language type="ve">venda</language>
- <language type="vi">vietnamita</language>
- <language type="vo">volapük</language>
- <language type="vot">voto</language>
- <language type="vun" draft="contributed">vunjo</language>
- <language type="wa">vallone</language>
- <language type="wae" draft="contributed">walser</language>
- <language type="wak">lingue wakash</language>
- <language type="wal">walamo</language>
- <language type="war">waray</language>
- <language type="was">washo</language>
- <language type="wen">sorabo</language>
- <language type="wo">wolof</language>
- <language type="xal">kalmyk</language>
- <language type="xh">xhosa</language>
- <language type="xog" draft="contributed">soga</language>
- <language type="yao">yao (bantu)</language>
- <language type="yap">yapese</language>
- <language type="yav" draft="contributed">yangben</language>
- <language type="ybb" draft="contributed">yemba</language>
- <language type="yi">yiddish</language>
- <language type="yo">yoruba</language>
- <language type="ypk">lingue yupik</language>
- <language type="yue">cantonese</language>
- <language type="za">zhuang</language>
- <language type="zap">zapotec</language>
- <language type="zbl" draft="contributed">blissymbol</language>
- <language type="zen">zenaga</language>
- <language type="zgh">tamazight del Marocco standard</language>
- <language type="zh">cinese</language>
- <language type="zh_Hans">cinese semplificato</language>
- <language type="zh_Hant">cinese tradizionale</language>
- <language type="znd">zande</language>
- <language type="zu">zulu</language>
- <language type="zun">zuni</language>
- <language type="zxx">nessun contenuto linguistico</language>
- <language type="zza" draft="contributed">zaza</language>
- </languages>
- <scripts>
- <script type="Afak" draft="contributed">afaka</script>
- <script type="Arab">arabo</script>
- <script type="Arab" alt="variant">arabo-persiano</script>
- <script type="Armi" draft="contributed">aramaico imperiale</script>
- <script type="Armn">armeno</script>
- <script type="Avst" draft="contributed">avestico</script>
- <script type="Bali">balinese</script>
- <script type="Bamu" draft="contributed">bamum</script>
- <script type="Bass" draft="contributed">Bassa Vah</script>
- <script type="Batk">batak</script>
- <script type="Beng">bengali</script>
- <script type="Blis">simboli bliss</script>
- <script type="Bopo">bopomofo</script>
- <script type="Brah">brahmi</script>
- <script type="Brai">braille</script>
- <script type="Bugi">buginese</script>
- <script type="Buhd">buhid</script>
- <script type="Cakm" draft="contributed">chakma</script>
- <script type="Cans">simboli aborigeni canadesi unificati</script>
- <script type="Cari" draft="contributed">carian</script>
- <script type="Cham">cham</script>
- <script type="Cher">cherokee</script>
- <script type="Cirt">cirth</script>
- <script type="Copt">copto</script>
- <script type="Cprt">cipriota</script>
- <script type="Cyrl">cirillico</script>
- <script type="Cyrs">cirillico antica chiesa slavonica</script>
- <script type="Deva">devanagari</script>
- <script type="Dsrt">deseret</script>
- <script type="Dupl" draft="contributed">stenografia duployan</script>
- <script type="Egyd">egiziano demotico</script>
- <script type="Egyh">ieratico egiziano</script>
- <script type="Egyp">geroglifici egiziani</script>
- <script type="Ethi">etiope</script>
- <script type="Geok">kutsuri</script>
- <script type="Geor">georgiano</script>
- <script type="Glag">glagolitico</script>
- <script type="Goth">gotico</script>
- <script type="Gran" draft="contributed">grantha</script>
- <script type="Grek">greco</script>
- <script type="Gujr">gujarati</script>
- <script type="Guru">gurmukhi</script>
- <script type="Hang">hangul</script>
- <script type="Hani">han</script>
- <script type="Hano">hanunoo</script>
- <script type="Hans">semplificato</script>
- <script type="Hans" alt="stand-alone">han semplificato</script>
- <script type="Hant">han tradizionale</script>
- <script type="Hant" alt="stand-alone">han tradizionale</script>
- <script type="Hebr">ebraico</script>
- <script type="Hira">hiragana</script>
- <script type="Hluw" draft="contributed">geroglifici anatolici</script>
- <script type="Hmng">pahawn hmong</script>
- <script type="Hrkt">katanaka o hiragana</script>
- <script type="Hung">antico ungherese</script>
- <script type="Inds">indu</script>
- <script type="Ital">italico antico</script>
- <script type="Java">javanese</script>
- <script type="Jpan">giapponese</script>
- <script type="Jurc" draft="contributed">jurchen</script>
- <script type="Kali" draft="contributed">kayah li</script>
- <script type="Kana">katakana</script>
- <script type="Khar" draft="contributed">kharoshthi</script>
- <script type="Khmr">khmer</script>
- <script type="Khoj" draft="contributed">khojki</script>
- <script type="Knda">kannada</script>
- <script type="Kore">coreano</script>
- <script type="Kpel" draft="contributed">Kpelle</script>
- <script type="Kthi" draft="contributed">kaithi</script>
- <script type="Lana" draft="contributed">lanna</script>
- <script type="Laoo">lao</script>
- <script type="Latf">variante fraktur del latino</script>
- <script type="Latg">variante gaelica del latino</script>
- <script type="Latn">latino</script>
- <script type="Lepc" draft="contributed">lepcha</script>
- <script type="Limb">limbu</script>
- <script type="Lina">lineare A</script>
- <script type="Linb">lineare B</script>
- <script type="Lisu" draft="contributed">lisu</script>
- <script type="Loma" draft="contributed">loma</script>
- <script type="Lyci" draft="contributed">lyci</script>
- <script type="Lydi" draft="contributed">lydi</script>
- <script type="Mand" draft="contributed">mandaico</script>
- <script type="Mani" draft="contributed">manicheo</script>
- <script type="Maya" draft="contributed">geroglifici maya</script>
- <script type="Mend" draft="contributed">mende</script>
- <script type="Merc" draft="contributed">corsivo meroitico</script>
- <script type="Mero" draft="contributed">meroitico</script>
- <script type="Mlym">malayalam</script>
- <script type="Mong">mongolo</script>
- <script type="Moon" draft="contributed">moon</script>
- <script type="Mroo" draft="contributed">mro</script>
- <script type="Mtei" draft="contributed">meetei mayek</script>
- <script type="Mymr">myanmar</script>
- <script type="Narb" draft="contributed">arabo settentrionale antico</script>
- <script type="Nbat" draft="contributed">nabateo</script>
- <script type="Nkgb" draft="contributed">geba naxi</script>
- <script type="Nkoo" draft="contributed">n'ko</script>
- <script type="Nshu" draft="contributed">nushu</script>
- <script type="Ogam">ogham</script>
- <script type="Olck" draft="contributed">ol chiki</script>
- <script type="Orkh" draft="contributed">orkhon</script>
- <script type="Orya">oriya</script>
- <script type="Osma">osmanya</script>
- <script type="Palm" draft="contributed">palmireno</script>
- <script type="Perm" draft="contributed">permico antico</script>
- <script type="Phag" draft="contributed">phags-pa</script>
- <script type="Phli" draft="contributed">pahlavi delle iscrizioni</script>
- <script type="Phlp" draft="contributed">pahlavi psalter</script>
- <script type="Phlv" draft="contributed">pahlavi book</script>
- <script type="Phnx" draft="contributed">fenicio</script>
- <script type="Plrd" draft="contributed">fonetica di pollard</script>
- <script type="Prti" draft="contributed">partico delle iscrizioni</script>
- <script type="Rjng" draft="contributed">rejang</script>
- <script type="Roro" draft="contributed">rongorongo</script>
- <script type="Runr">runico</script>
- <script type="Samr" draft="contributed">samaritano</script>
- <script type="Sara" draft="contributed">sarati</script>
- <script type="Sarb" draft="contributed">arabo meridionale antico</script>
- <script type="Saur" draft="contributed">saurashtra</script>
- <script type="Sgnw" draft="contributed">linguaggio dei segni</script>
- <script type="Shaw">shaviano</script>
- <script type="Shrd" draft="contributed">sharada</script>
- <script type="Sind" draft="contributed">khudawadi</script>
- <script type="Sinh">singalese</script>
- <script type="Sora" draft="contributed">sora sompeng</script>
- <script type="Sund" draft="contributed">sundanese</script>
- <script type="Sylo" draft="contributed">syloti nagri</script>
- <script type="Syrc">siriano</script>
- <script type="Syre" draft="contributed">siriaco estrangelo</script>
- <script type="Syrj" draft="contributed">siriaco occidentale</script>
- <script type="Syrn" draft="contributed">siriaco orientale</script>
- <script type="Tagb">tagbanwa</script>
- <script type="Takr" draft="contributed">takri</script>
- <script type="Tale">tai le</script>
- <script type="Talu" draft="contributed">tai lue</script>
- <script type="Taml">tamil</script>
- <script type="Tang" draft="contributed">tangut</script>
- <script type="Tavt" draft="contributed">tai viet</script>
- <script type="Telu">telugu</script>
- <script type="Teng" draft="contributed">tengwar</script>
- <script type="Tfng" draft="contributed">tifinagh</script>
- <script type="Tglg">tagalog</script>
- <script type="Thaa">thaana</script>
- <script type="Thai">tailandese</script>
- <script type="Tibt">tibetano</script>
- <script type="Tirh" draft="contributed">tirhuta</script>
- <script type="Ugar">ugarita</script>
- <script type="Vaii" draft="contributed">vaii</script>
- <script type="Visp" draft="contributed">alfabeto visivo</script>
- <script type="Wara" draft="contributed">varang kshiti</script>
- <script type="Wole" draft="contributed">woleai</script>
- <script type="Xpeo" draft="contributed">persiano antico</script>
- <script type="Xsux" draft="contributed">sumero-accadiano cuneiforme</script>
- <script type="Yiii">yi</script>
- <script type="Zinh">ereditato</script>
- <script type="Zmth" draft="contributed">notazione matematica</script>
- <script type="Zsym">simboli</script>
- <script type="Zxxx">non scritto</script>
- <script type="Zyyy">comune</script>
- <script type="Zzzz">ignoto o non valido</script>
- </scripts>
- <territories>
- <territory type="001">Mondo</territory>
- <territory type="002">Africa</territory>
- <territory type="003">Nord America</territory>
- <territory type="005">America del Sud</territory>
- <territory type="009">Oceania</territory>
- <territory type="011">Africa occidentale</territory>
- <territory type="013">America centrale</territory>
- <territory type="014">Africa orientale</territory>
- <territory type="015">Africa del Nord</territory>
- <territory type="017">Africa centrale</territory>
- <territory type="018">Africa del Sud</territory>
- <territory type="019">Americhe</territory>
- <territory type="021">America del Nord</territory>
- <territory type="029">Caraibi</territory>
- <territory type="030">Asia orientale</territory>
- <territory type="034">Asia del Sud</territory>
- <territory type="035">Asia sudorientale</territory>
- <territory type="039">Europa del Sud</territory>
- <territory type="053">Australasia</territory>
- <territory type="054">Melanesia</territory>
- <territory type="057">Regione Micronesiana</territory>
- <territory type="061">Polinesia</territory>
- <territory type="142">Asia</territory>
- <territory type="143">Asia centrale</territory>
- <territory type="145">Asia occidentale</territory>
- <territory type="150">Europa</territory>
- <territory type="151">Europa orientale</territory>
- <territory type="154">Europa del Nord</territory>
- <territory type="155">Europa occidentale</territory>
- <territory type="419">America Latina</territory>
- <territory type="AC">Isola di Ascensione</territory>
- <territory type="AD">Andorra</territory>
- <territory type="AE">Emirati Arabi Uniti</territory>
- <territory type="AF">Afghanistan</territory>
- <territory type="AG">Antigua e Barbuda</territory>
- <territory type="AI">Anguilla</territory>
- <territory type="AL">Albania</territory>
- <territory type="AM">Armenia</territory>
- <territory type="AN">Antille Olandesi</territory>
- <territory type="AO">Angola</territory>
- <territory type="AQ">Antartide</territory>
- <territory type="AR">Argentina</territory>
- <territory type="AS">Samoa Americane</territory>
- <territory type="AT">Austria</territory>
- <territory type="AU">Australia</territory>
- <territory type="AW">Aruba</territory>
- <territory type="AX">Isole Aland</territory>
- <territory type="AZ">Azerbaigian</territory>
- <territory type="BA">Bosnia Erzegovina</territory>
- <territory type="BB">Barbados</territory>
- <territory type="BD">Bangladesh</territory>
- <territory type="BE">Belgio</territory>
- <territory type="BF">Burkina Faso</territory>
- <territory type="BG">Bulgaria</territory>
- <territory type="BH">Bahrein</territory>
- <territory type="BI">Burundi</territory>
- <territory type="BJ">Benin</territory>
- <territory type="BL">San Bartolomeo</territory>
- <territory type="BM">Bermuda</territory>
- <territory type="BN">Brunei</territory>
- <territory type="BO">Bolivia</territory>
- <territory type="BQ">Caraibi Olandesi</territory>
- <territory type="BR">Brasile</territory>
- <territory type="BS">Bahamas</territory>
- <territory type="BT">Bhutan</territory>
- <territory type="BV">Isola Bouvet</territory>
- <territory type="BW">Botswana</territory>
- <territory type="BY">Bielorussia</territory>
- <territory type="BZ">Belize</territory>
- <territory type="CA">Canada</territory>
- <territory type="CC">Isole Cocos</territory>
- <territory type="CD">Congo - Kinshasa</territory>
- <territory type="CD" alt="variant">Congo - RDC</territory>
- <territory type="CF">Repubblica Centrafricana</territory>
- <territory type="CG">Congo</territory>
- <territory type="CG" alt="variant">Repubblica del Congo</territory>
- <territory type="CH">Svizzera</territory>
- <territory type="CI">Costa d’Avorio</territory>
- <territory type="CI" alt="variant">Costa d'Avorio</territory>
- <territory type="CK">Isole Cook</territory>
- <territory type="CL">Cile</territory>
- <territory type="CM">Camerun</territory>
- <territory type="CN">Cina</territory>
- <territory type="CO">Colombia</territory>
- <territory type="CP">Isola di Clipperton</territory>
- <territory type="CR">Costa Rica</territory>
- <territory type="CU">Cuba</territory>
- <territory type="CV">Capo Verde</territory>
- <territory type="CW">Curaçao</territory>
- <territory type="CX">Isola di Christmas</territory>
- <territory type="CY">Cipro</territory>
- <territory type="CZ">Repubblica Ceca</territory>
- <territory type="DE">Germania</territory>
- <territory type="DG">Diego Garcia</territory>
- <territory type="DJ">Gibuti</territory>
- <territory type="DK">Danimarca</territory>
- <territory type="DM">Dominica</territory>
- <territory type="DO">Repubblica Dominicana</territory>
- <territory type="DZ">Algeria</territory>
- <territory type="EA">Ceuta e Melilla</territory>
- <territory type="EC">Ecuador</territory>
- <territory type="EE">Estonia</territory>
- <territory type="EG">Egitto</territory>
- <territory type="EH">Sahara Occidentale</territory>
- <territory type="ER">Eritrea</territory>
- <territory type="ES">Spagna</territory>
- <territory type="ET">Etiopia</territory>
- <territory type="EU">Unione Europea</territory>
- <territory type="FI">Finlandia</territory>
- <territory type="FJ">Figi</territory>
- <territory type="FK">Isole Falkland</territory>
- <territory type="FK" alt="variant">Isole Falkland (isole Malvine)</territory>
- <territory type="FM">Micronesia</territory>
- <territory type="FO">Isole Faroe</territory>
- <territory type="FR">Francia</territory>
- <territory type="GA">Gabon</territory>
- <territory type="GB">Regno Unito</territory>
- <territory type="GB" alt="short">GB</territory>
- <territory type="GD">Grenada</territory>
- <territory type="GE">Georgia</territory>
- <territory type="GF">Guiana Francese</territory>
- <territory type="GG">Guernsey</territory>
- <territory type="GH">Ghana</territory>
- <territory type="GI">Gibilterra</territory>
- <territory type="GL">Groenlandia</territory>
- <territory type="GM">Gambia</territory>
- <territory type="GN">Guinea</territory>
- <territory type="GP">Guadalupa</territory>
- <territory type="GQ">Guinea Equatoriale</territory>
- <territory type="GR">Grecia</territory>
- <territory type="GS">Georgia del Sud e Isole Sandwich del Sud</territory>
- <territory type="GT">Guatemala</territory>
- <territory type="GU">Guam</territory>
- <territory type="GW">Guinea-Bissau</territory>
- <territory type="GY">Guyana</territory>
- <territory type="HK">RAS di Hong Kong</territory>
- <territory type="HK" alt="short">Hong-Kong</territory>
- <territory type="HM">Isole Heard ed Isole McDonald</territory>
- <territory type="HN">Honduras</territory>
- <territory type="HR">Croazia</territory>
- <territory type="HT">Haiti</territory>
- <territory type="HU">Ungheria</territory>
- <territory type="IC">Isole Canarie</territory>
- <territory type="ID">Indonesia</territory>
- <territory type="IE">Irlanda</territory>
- <territory type="IL">Israele</territory>
- <territory type="IM">Isola di Man</territory>
- <territory type="IN">India</territory>
- <territory type="IO">Territorio Britannico dell’Oceano Indiano</territory>
- <territory type="IQ">Iraq</territory>
- <territory type="IR">Iran</territory>
- <territory type="IS">Islanda</territory>
- <territory type="IT">Italia</territory>
- <territory type="JE">Jersey</territory>
- <territory type="JM">Giamaica</territory>
- <territory type="JO">Giordania</territory>
- <territory type="JP">Giappone</territory>
- <territory type="KE">Kenya</territory>
- <territory type="KG">Kirghizistan</territory>
- <territory type="KH">Cambogia</territory>
- <territory type="KI">Kiribati</territory>
- <territory type="KM">Comore</territory>
- <territory type="KN">Saint Kitts e Nevis</territory>
- <territory type="KP">Corea del Nord</territory>
- <territory type="KR">Corea del Sud</territory>
- <territory type="KW">Kuwait</territory>
- <territory type="KY">Isole Cayman</territory>
- <territory type="KZ">Kazakistan</territory>
- <territory type="LA">Laos</territory>
- <territory type="LB">Libano</territory>
- <territory type="LC">Saint Lucia</territory>
- <territory type="LI">Liechtenstein</territory>
- <territory type="LK">Sri Lanka</territory>
- <territory type="LR">Liberia</territory>
- <territory type="LS">Lesotho</territory>
- <territory type="LT">Lituania</territory>
- <territory type="LU">Lussemburgo</territory>
- <territory type="LV">Lettonia</territory>
- <territory type="LY">Libia</territory>
- <territory type="MA">Marocco</territory>
- <territory type="MC">Monaco</territory>
- <territory type="MD">Moldavia</territory>
- <territory type="ME">Montenegro</territory>
- <territory type="MF">Saint Martin</territory>
- <territory type="MG">Madagascar</territory>
- <territory type="MH">Isole Marshall</territory>
- <territory type="MK">Repubblica di Macedonia</territory>
- <territory type="MK" alt="variant">Repubblica ex Jugoslava di Macedonia</territory>
- <territory type="ML">Mali</territory>
- <territory type="MM">Myanmar</territory>
- <territory type="MN">Mongolia</territory>
- <territory type="MO">RAS di Macao</territory>
- <territory type="MO" alt="short">Macao</territory>
- <territory type="MP">Isole Marianne Settentrionali</territory>
- <territory type="MQ">Martinica</territory>
- <territory type="MR">Mauritania</territory>
- <territory type="MS">Montserrat</territory>
- <territory type="MT">Malta</territory>
- <territory type="MU">Mauritius</territory>
- <territory type="MV">Maldive</territory>
- <territory type="MW">Malawi</territory>
- <territory type="MX">Messico</territory>
- <territory type="MY">Malesia</territory>
- <territory type="MZ">Mozambico</territory>
- <territory type="NA">Namibia</territory>
- <territory type="NC">Nuova Caledonia</territory>
- <territory type="NE">Niger</territory>
- <territory type="NF">Isola Norfolk</territory>
- <territory type="NG">Nigeria</territory>
- <territory type="NI">Nicaragua</territory>
- <territory type="NL">Paesi Bassi</territory>
- <territory type="NO">Norvegia</territory>
- <territory type="NP">Nepal</territory>
- <territory type="NR">Nauru</territory>
- <territory type="NU">Niue</territory>
- <territory type="NZ">Nuova Zelanda</territory>
- <territory type="OM">Oman</territory>
- <territory type="PA">Panama</territory>
- <territory type="PE">Perù</territory>
- <territory type="PF">Polinesia Francese</territory>
- <territory type="PG">Papua Nuova Guinea</territory>
- <territory type="PH">Filippine</territory>
- <territory type="PK">Pakistan</territory>
- <territory type="PL">Polonia</territory>
- <territory type="PM">Saint Pierre e Miquelon</territory>
- <territory type="PN">Isole Pitcairn</territory>
- <territory type="PR">Portorico</territory>
- <territory type="PS">Territori palestinesi</territory>
- <territory type="PS" alt="short">Palestina</territory>
- <territory type="PT">Portogallo</territory>
- <territory type="PW">Palau</territory>
- <territory type="PY">Paraguay</territory>
- <territory type="QA">Qatar</territory>
- <territory type="QO">Oceania lontana</territory>
- <territory type="RE">Réunion</territory>
- <territory type="RO">Romania</territory>
- <territory type="RS">Serbia</territory>
- <territory type="RU">Federazione Russa</territory>
- <territory type="RW">Ruanda</territory>
- <territory type="SA">Arabia Saudita</territory>
- <territory type="SB">Isole Solomon</territory>
- <territory type="SC">Seychelles</territory>
- <territory type="SD">Sudan</territory>
- <territory type="SE">Svezia</territory>
- <territory type="SG">Singapore</territory>
- <territory type="SH">Sant’Elena</territory>
- <territory type="SI">Slovenia</territory>
- <territory type="SJ">Svalbard e Jan Mayen</territory>
- <territory type="SK">Slovacchia</territory>
- <territory type="SL">Sierra Leone</territory>
- <territory type="SM">San Marino</territory>
- <territory type="SN">Senegal</territory>
- <territory type="SO">Somalia</territory>
- <territory type="SR">Suriname</territory>
- <territory type="SS">Sudan del Sud</territory>
- <territory type="ST">Sao Tomé e Príncipe</territory>
- <territory type="SV">El Salvador</territory>
- <territory type="SX">Sint Maarten</territory>
- <territory type="SY">Siria</territory>
- <territory type="SZ">Swaziland</territory>
- <territory type="TA">Tristan da Cunha</territory>
- <territory type="TC">Isole Turks e Caicos</territory>
- <territory type="TD">Ciad</territory>
- <territory type="TF">Territori australi francesi</territory>
- <territory type="TG">Togo</territory>
- <territory type="TH">Tailandia</territory>
- <territory type="TJ">Tagikistan</territory>
- <territory type="TK">Tokelau</territory>
- <territory type="TL">Timor Est</territory>
- <territory type="TM">Turkmenistan</territory>
- <territory type="TN">Tunisia</territory>
- <territory type="TO">Tonga</territory>
- <territory type="TR">Turchia</territory>
- <territory type="TT">Trinidad e Tobago</territory>
- <territory type="TV">Tuvalu</territory>
- <territory type="TW">Taiwan</territory>
- <territory type="TZ">Tanzania</territory>
- <territory type="UA">Ucraina</territory>
- <territory type="UG">Uganda</territory>
- <territory type="UM">Isole minori lontane dagli USA</territory>
- <territory type="US">Stati Uniti</territory>
- <territory type="US" alt="short" draft="contributed">USA</territory>
- <territory type="UY">Uruguay</territory>
- <territory type="UZ">Uzbekistan</territory>
- <territory type="VA">Città del Vaticano</territory>
- <territory type="VC">Saint Vincent e Grenadines</territory>
- <territory type="VE">Venezuela</territory>
- <territory type="VG">Isole Vergini Britanniche</territory>
- <territory type="VI">Isole Vergini Americane</territory>
- <territory type="VN">Vietnam</territory>
- <territory type="VU">Vanuatu</territory>
- <territory type="WF">Wallis e Futuna</territory>
- <territory type="WS">Samoa</territory>
- <territory type="XK">Kosovo</territory>
- <territory type="YE">Yemen</territory>
- <territory type="YT">Mayotte</territory>
- <territory type="ZA">Sudafrica</territory>
- <territory type="ZM">Zambia</territory>
- <territory type="ZW">Zimbabwe</territory>
- <territory type="ZZ">Regione non valida o sconosciuta</territory>
- </territories>
- <variants>
- <variant type="1901">ortografia tradizionale tedesca</variant>
- <variant type="1994" draft="contributed">ortografia resiana standard</variant>
- <variant type="1996">ortografia tedesca del 1996</variant>
- <variant type="1606NICT" draft="contributed">francese medio-tardo fino al 1606</variant>
- <variant type="1694ACAD" draft="contributed">primo francese moderno</variant>
- <variant type="1959ACAD" draft="contributed">accademico</variant>
- <variant type="ALALC97" draft="contributed">romanizzazione di ALA-LC, versione 1997</variant>
- <variant type="ALUKU" draft="contributed">dialetto aluku</variant>
- <variant type="AREVELA">armeno orientale</variant>
- <variant type="AREVMDA">armeno occidentale</variant>
- <variant type="BAKU1926" draft="contributed">alfabeto latino altaico unificato</variant>
- <variant type="BISKE" draft="contributed">dialetto San Giorgio/Bila</variant>
- <variant type="BOHORIC" draft="contributed">alfabeto bohorič</variant>
- <variant type="BOONT">boontling</variant>
- <variant type="DAJNKO" draft="contributed">alfabeto Dajnko</variant>
- <variant type="EMODENG" draft="contributed">primo inglese moderno</variant>
- <variant type="FONIPA">alfabeto fonetico internazionale IPA</variant>
- <variant type="FONUPA">alfabeto fonetico uralico UPA</variant>
- <variant type="HEPBURN" draft="contributed">romanizzazione Hepburn</variant>
- <variant type="KKCOR" draft="contributed">ortografia comune</variant>
- <variant type="KSCOR" draft="contributed">ortografia standard</variant>
- <variant type="LIPAW" draft="contributed">dialetto resiano di Lipovaz</variant>
- <variant type="METELKO" draft="contributed">alfabeto Metelko</variant>
- <variant type="MONOTON">monotonico</variant>
- <variant type="NDYUKA" draft="contributed">dialetto Ndyuka</variant>
- <variant type="NEDIS">dialetto del Natisone</variant>
- <variant type="NJIVA" draft="contributed">dialetto Gniva/Njiva</variant>
- <variant type="NULIK" draft="contributed">volapük moderno</variant>
- <variant type="OSOJS" draft="contributed">dialetto Oseacco/Osojane</variant>
- <variant type="PAMAKA" draft="contributed">dialetto Pamaka</variant>
- <variant type="PINYIN" draft="contributed">romanizzazione Pinyin</variant>
- <variant type="POLYTON">politonico</variant>
- <variant type="POSIX">computer</variant>
- <variant type="REVISED">ortografia revisionata</variant>
- <variant type="RIGIK" draft="contributed">Volapük classico</variant>
- <variant type="ROZAJ">resiano</variant>
- <variant type="SAAHO">saho</variant>
- <variant type="SCOTLAND" draft="contributed">inglese scozzese standard</variant>
- <variant type="SCOUSE" draft="contributed">scouse</variant>
- <variant type="SOLBA" draft="contributed">dialetto Stolvizza/Solbica</variant>
- <variant type="TARASK" draft="contributed">ortografia taraskievica</variant>
- <variant type="UCCOR" draft="contributed">ortografia unificata</variant>
- <variant type="UCRCOR" draft="contributed">ortografia rivista unificata</variant>
- <variant type="VALENCIA" draft="contributed">valenziano</variant>
- <variant type="WADEGILE" draft="contributed">romanizzazione Wade-Giles</variant>
- </variants>
- <keys>
- <key type="calendar">Calendario</key>
- <key type="colAlternate">Ordinamento Ignora simboli</key>
- <key type="colBackwards">Ordinamento Accento capovolto</key>
- <key type="colCaseFirst">Ordinamento Maiuscole/Minuscole</key>
- <key type="colCaseLevel">Ordinamento Distinzione fra maiuscole e minuscole</key>
- <key type="colHiraganaQuaternary">Ordinamento Kana</key>
- <key type="collation">Ordinamento</key>
- <key type="colNormalization">Ordinamento normalizzato</key>
- <key type="colNumeric">Ordinamento numerico</key>
- <key type="colStrength">Sicurezza ordinamento</key>
- <key type="currency">Valuta</key>
- <key type="numbers">Numeri</key>
- <key type="timezone">Fuso orario</key>
- <key type="va">Variante lingua</key>
- <key type="variableTop">Ordina come simboli</key>
- <key type="x">Uso privato</key>
- </keys>
- <types>
- <type type="arab" key="numbers">Cifre indo-arabe</type>
- <type type="arabext" key="numbers">Cifre indo-arabe estese</type>
- <type type="armn" key="numbers">Numeri armeni</type>
- <type type="armnlow" key="numbers">Numeri armeni minuscoli</type>
- <type type="bali" key="numbers">Cifre balinesi</type>
- <type type="beng" key="numbers">Cifre bengalesi</type>
- <type type="big5han" key="collation">cinese tradizionale</type>
- <type type="brah" key="numbers">Cifre brahmi</type>
- <type type="buddhist" key="calendar">calendario buddista</type>
- <type type="cakm" key="numbers">Cifre chakma</type>
- <type type="cham" key="numbers">Cifre cham</type>
- <type type="chinese" key="calendar">calendario cinese</type>
- <type type="coptic" key="calendar" draft="contributed">Calendario copto</type>
- <type type="dangi" key="calendar">Calendario Dangi</type>
- <type type="deva" key="numbers">Cifre devanagari</type>
- <type type="dictionary" key="collation">Ordinamento dizionario</type>
- <type type="ducet" key="collation">Ordinamento Unicode predefinito</type>
- <type type="ethi" key="numbers">Numeri etiopi</type>
- <type type="ethiopic" key="calendar">Calendario etiope</type>
- <type type="ethiopic-amete-alem" key="calendar">Calendario etiope Amete Alem</type>
- <type type="finance" key="numbers">Numeri finanziari</type>
- <type type="fullwide" key="numbers">Cifre a larghezza intera</type>
- <type type="gb2312han" key="collation">cinese semplificato</type>
- <type type="geor" key="numbers">Numeri georgiani</type>
- <type type="gregorian" key="calendar">Calendario gregoriano</type>
- <type type="grek" key="numbers">Numeri greci</type>
- <type type="greklow" key="numbers">Numeri greci minuscoli</type>
- <type type="gujr" key="numbers">Cifre gujarati</type>
- <type type="guru" key="numbers">Cifre gurmukhi</type>
- <type type="hanidec" key="numbers">Numeri decimali cinesi</type>
- <type type="hans" key="numbers">Numeri in cinese semplificato</type>
- <type type="hansfin" key="numbers">Numeri finanziari in cinese semplificato</type>
- <type type="hant" key="numbers">Numeri in cinese tradizionale</type>
- <type type="hantfin" key="numbers">Numeri finanziari in cinese tradizionale</type>
- <type type="hebr" key="numbers">Numeri ebraici</type>
- <type type="hebrew" key="calendar">calendario ebraico</type>
- <type type="identical" key="colStrength">Ordina tutto</type>
- <type type="indian" key="calendar">calendario nazionale indiano</type>
- <type type="islamic" key="calendar">calendario islamico</type>
- <type type="islamic-civil" key="calendar">calendario civile islamico</type>
- <type type="islamic-rgsa" key="calendar">Calendario islamico (Arabia Saudita, osservazione)</type>
- <type type="islamic-tbla" key="calendar">Calendario islamico (tabulare, era astronomica)</type>
- <type type="islamic-umalqura" key="calendar">Calendario islamico (Umm al-Qura)</type>
- <type type="iso8601" key="calendar">Calendario ISO-8601</type>
- <type type="japanese" key="calendar">calendario giapponese</type>
- <type type="java" key="numbers">Cifre giavanesi</type>
- <type type="jpan" key="numbers">Numeri giapponesi</type>
- <type type="jpanfin" key="numbers">Numeri finanziari giapponesi</type>
- <type type="kali" key="numbers">Cifre Kayah Li</type>
- <type type="khmr" key="numbers">Cifre khmer</type>
- <type type="knda" key="numbers">Cifre kannada</type>
- <type type="lana" key="numbers">Cifre tai tham hora</type>
- <type type="lanatham" key="numbers">Cifre tai tham tham</type>
- <type type="laoo" key="numbers">Cifre lao</type>
- <type type="latn" key="numbers">Cifre occidentali</type>
- <type type="lepc" key="numbers">Cifre lepcha</type>
- <type type="limb" key="numbers">Cifre limbu</type>
- <type type="lower" key="colCaseFirst">Ordina prima lettere minuscole</type>
- <type type="mlym" key="numbers">Cifre malayalam</type>
- <type type="mong" key="numbers" draft="contributed">Numeri mongoli</type>
- <type type="mtei" key="numbers">Cifre Meetei Mayek</type>
- <type type="mymr" key="numbers">Cifre birmane</type>
- <type type="mymrshan" key="numbers">Cifre shan birmane</type>
- <type type="native" key="numbers" draft="contributed">Cifre native</type>
- <type type="nkoo" key="numbers">Cifre N'Ko</type>
- <type type="no" key="colBackwards">Ordina accenti normalmente</type>
- <type type="no" key="colCaseFirst">Ordina lettere maiuscole/minuscole normalmente</type>
- <type type="no" key="colCaseLevel">Ordina senza distinzione tra maiuscole e minuscole</type>
- <type type="no" key="colHiraganaQuaternary">Ordina Kana separatamente</type>
- <type type="no" key="colNormalization">Ordina senza normalizzazione</type>
- <type type="no" key="colNumeric">Ordina cifre individualmente</type>
- <type type="non-ignorable" key="colAlternate">Ordina simboli</type>
- <type type="olck" key="numbers">Cifre Ol Chiki</type>
- <type type="orya" key="numbers">Cifre oriya</type>
- <type type="osma" key="numbers">Cifre osmanya</type>
- <type type="persian" key="calendar">Calendario persiano</type>
- <type type="phonebook" key="collation">ordine elenco telefonico</type>
- <type type="phonetic" key="collation">Ordinamento fonetico</type>
- <type type="pinyin" key="collation">ordine pinyin</type>
- <type type="primary" key="colStrength">Ordina solo lettere di base</type>
- <type type="quaternary" key="colStrength">Ordina accenti/lettere/larghezza/Kana</type>
- <type type="reformed" key="collation">Ordinamento riformato</type>
- <type type="roc" key="calendar">Calendario Minguo</type>
- <type type="roman" key="numbers">Numeri romani</type>
- <type type="romanlow" key="numbers">Numeri romani minuscoli</type>
- <type type="saur" key="numbers">Cifre saurashtra</type>
- <type type="search" key="collation">Ricerca generica</type>
- <type type="searchjl" key="collation">Cerca per consonante hangul iniziale</type>
- <type type="secondary" key="colStrength">Ordina accenti</type>
- <type type="shifted" key="colAlternate">Ordina ignorando i simboli</type>
- <type type="shrd" key="numbers">Cifre sharada</type>
- <type type="sora" key="numbers">Cifre Sora Sompeng</type>
- <type type="standard" key="collation">Ordinamento standard</type>
- <type type="stroke" key="collation">ordine segni</type>
- <type type="sund" key="numbers">Cifre sundanesi</type>
- <type type="takr" key="numbers">Cifre takri</type>
- <type type="talu" key="numbers">Cifre nuovo Tai Lue</type>
- <type type="taml" key="numbers">Numeri tamil tradizionali</type>
- <type type="tamldec" key="numbers">Cifre tamil</type>
- <type type="telu" key="numbers">Cifre telugu</type>
- <type type="tertiary" key="colStrength">Ordina accenti/lettere/larghezza</type>
- <type type="thai" key="numbers">Cifre thailandesi</type>
- <type type="tibt" key="numbers">Cifre tibetane</type>
- <type type="traditional" key="collation">ordine tradizionale</type>
- <type type="traditional" key="numbers">Numeri tradizionali</type>
- <type type="unihan" key="collation">Ordinamento in base ai radicali</type>
- <type type="upper" key="colCaseFirst" draft="contributed">Ordina prima lettere minuscole</type>
- <type type="vaii" key="numbers">Cifre Vai</type>
- <type type="yes" key="colBackwards">Ordina accenti capovolti</type>
- <type type="yes" key="colCaseLevel" draft="contributed">Ordina distinzione tra maiuscole e minuscole</type>
- <type type="yes" key="colHiraganaQuaternary">Ordina Kana diversamente</type>
- <type type="yes" key="colNormalization">Ordina Unicode normalizzato</type>
- <type type="yes" key="colNumeric">Ordina cifre numericamente</type>
- <type type="zhuyin" key="collation">Ordinamento Zhuyin</type>
- </types>
- <transformNames>
- <transformName type="BGN" draft="contributed">BGN</transformName>
- <transformName type="Numeric" draft="contributed">Numerica</transformName>
- <transformName type="Tone" draft="contributed">Tono</transformName>
- <transformName type="UNGEGN" draft="contributed">UNGEGN</transformName>
- <transformName type="x-Accents" draft="contributed">Accenti</transformName>
- <transformName type="x-Fullwidth" draft="contributed">Larghezza intera</transformName>
- <transformName type="x-Halfwidth" draft="contributed">Metà larghezza</transformName>
- <transformName type="x-Jamo" draft="contributed">Jamo</transformName>
- <transformName type="x-Pinyin" draft="contributed">Pinyin</transformName>
- <transformName type="x-Publishing" draft="contributed">Pubblicazione</transformName>
- </transformNames>
- <measurementSystemNames>
- <measurementSystemName type="metric">metrico</measurementSystemName>
- <measurementSystemName type="UK">britannico</measurementSystemName>
- <measurementSystemName type="US">USA</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">Lingua: {0}</codePattern>
- <codePattern type="script">Scrittura: {0}</codePattern>
- <codePattern type="territory">Regione: {0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <contextTransforms>
- <contextTransformUsage type="day-format-except-narrow">
- <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- <contextTransformUsage type="day-standalone-except-narrow">
- <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- <contextTransformUsage type="languages">
- <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- <contextTransformUsage type="month-format-except-narrow">
- <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- <contextTransformUsage type="month-standalone-except-narrow">
- <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- </contextTransforms>
- <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">[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="punctuation">[\- — , ; \: ! ? . … “ ” ( ) \[ \] \{ \} @ /]</exemplarCharacters>
- <ellipsis type="final" draft="contributed">{0}…</ellipsis>
- <ellipsis type="initial" draft="contributed">…{0}</ellipsis>
- <ellipsis type="medial" draft="contributed">{0}…{1}</ellipsis>
- <ellipsis type="word-final" draft="contributed">{0} …</ellipsis>
- <ellipsis type="word-initial" draft="contributed">… {0}</ellipsis>
- <ellipsis type="word-medial" draft="contributed">{0} … {1}</ellipsis>
- <moreInformation draft="contributed">?</moreInformation>
- </characters>
- <delimiters>
- <quotationStart>«</quotationStart>
- <quotationEnd>»</quotationEnd>
- <alternateQuotationStart>“</alternateQuotationStart>
- <alternateQuotationEnd>”</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="buddhist">
- <eras>
- <eraAbbr>
- <era type="0" draft="contributed">EB</era>
- </eraAbbr>
- </eras>
- </calendar>
- <calendar type="chinese">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE d MMMM U</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>dd MMMM U</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd/MMM U</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd/MM/yy</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>dd MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd/MMM/y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd/MM/yy GGGGG</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern draft="contributed">{1} 'alle' {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern draft="contributed">{1} 'alle' {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern draft="contributed">{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern draft="contributed">{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">E d</dateFormatItem>
- <dateFormatItem id="Gy">y G</dateFormatItem>
- <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMd">d MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMEd">E d MMM y G</dateFormatItem>
- <dateFormatItem id="h">hh a</dateFormatItem>
- <dateFormatItem id="H" draft="contributed">HH</dateFormatItem>
- <dateFormatItem id="hm">hh:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">hh:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">d/M</dateFormatItem>
- <dateFormatItem id="MEd">E d/M</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y G</dateFormatItem>
- <dateFormatItem id="yyyy">y G</dateFormatItem>
- <dateFormatItem id="yyyyM">M/y GGGGG</dateFormatItem>
- <dateFormatItem id="yyyyMd">d/M/y GGGGG</dateFormatItem>
- <dateFormatItem id="yyyyMEd">E d/M/y GGGGG</dateFormatItem>
- <dateFormatItem id="yyyyMMM">MMM y G</dateFormatItem>
- <dateFormatItem id="yyyyMMMd">d MMM y G</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">E d MMM y G</dateFormatItem>
- <dateFormatItem id="yyyyMMMM">MMMM y G</dateFormatItem>
- <dateFormatItem id="yyyyQQQ">QQQ y G</dateFormatItem>
- <dateFormatItem id="yyyyQQQQ">QQQQ y G</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">dd-dd MMM</greatestDifference>
- <greatestDifference id="M">dd MMM - dd MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E dd - E dd MMM</greatestDifference>
- <greatestDifference id="M">E dd MMM - E dd MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y-y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">MM/y - MM/y G</greatestDifference>
- <greatestDifference id="y">MM/y - MM/y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">dd/MM/y - dd/MM/y G</greatestDifference>
- <greatestDifference id="M">dd/MM/y - dd/MM/y G</greatestDifference>
- <greatestDifference id="y">dd/MM/y - dd/MM/y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E dd/MM/y - E dd/MM/y G</greatestDifference>
- <greatestDifference id="M">E dd/MM/y - E dd/MM/y G</greatestDifference>
- <greatestDifference id="y">E dd/MM/y - E dd/MM/y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">MMM-MMM y G</greatestDifference>
- <greatestDifference id="y">MMM y - MMM y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">dd-dd MMM y G</greatestDifference>
- <greatestDifference id="M">dd MMM - dd MMM y G</greatestDifference>
- <greatestDifference id="y">dd MMM y - dd MMM y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E d - E d MMM y G</greatestDifference>
- <greatestDifference id="M">E d MMM - E d MMM y G</greatestDifference>
- <greatestDifference id="y">E d MMM y - E d MMM y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">MMMM-MMMM y G</greatestDifference>
- <greatestDifference id="y">MMMM y - MMMM y G</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">gen</month>
- <month type="2">feb</month>
- <month type="3">mar</month>
- <month type="4">apr</month>
- <month type="5">mag</month>
- <month type="6">giu</month>
- <month type="7">lug</month>
- <month type="8">ago</month>
- <month type="9">set</month>
- <month type="10">ott</month>
- <month type="11">nov</month>
- <month type="12">dic</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">G</month>
- <month type="2">F</month>
- <month type="3">M</month>
- <month type="4">A</month>
- <month type="5">M</month>
- <month type="6">G</month>
- <month type="7">L</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>
- <monthWidth type="wide">
- <month type="1">gennaio</month>
- <month type="2">febbraio</month>
- <month type="3">marzo</month>
- <month type="4">aprile</month>
- <month type="5">maggio</month>
- <month type="6">giugno</month>
- <month type="7">luglio</month>
- <month type="8">agosto</month>
- <month type="9">settembre</month>
- <month type="10">ottobre</month>
- <month type="11">novembre</month>
- <month type="12">dicembre</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="abbreviated">
- <month type="1">gen</month>
- <month type="2">feb</month>
- <month type="3">mar</month>
- <month type="4">apr</month>
- <month type="5">mag</month>
- <month type="6">giu</month>
- <month type="7">lug</month>
- <month type="8">ago</month>
- <month type="9">set</month>
- <month type="10">ott</month>
- <month type="11">nov</month>
- <month type="12">dic</month>
- </monthWidth>
- <monthWidth type="narrow">
- <month type="1">G</month>
- <month type="2">F</month>
- <month type="3">M</month>
- <month type="4">A</month>
- <month type="5">M</month>
- <month type="6">G</month>
- <month type="7">L</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>
- <monthWidth type="wide">
- <month type="1">Gennaio</month>
- <month type="2">Febbraio</month>
- <month type="3">Marzo</month>
- <month type="4">Aprile</month>
- <month type="5">Maggio</month>
- <month type="6">Giugno</month>
- <month type="7">Luglio</month>
- <month type="8">Agosto</month>
- <month type="9">Settembre</month>
- <month type="10">Ottobre</month>
- <month type="11">Novembre</month>
- <month type="12">Dicembre</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">dom</day>
- <day type="mon">lun</day>
- <day type="tue">mar</day>
- <day type="wed">mer</day>
- <day type="thu">gio</day>
- <day type="fri">ven</day>
- <day type="sat">sab</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">D</day>
- <day type="mon">L</day>
- <day type="tue">M</day>
- <day type="wed">M</day>
- <day type="thu">G</day>
- <day type="fri">V</day>
- <day type="sat">S</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">dom</day>
- <day type="mon">lun</day>
- <day type="tue">mar</day>
- <day type="wed">mer</day>
- <day type="thu">gio</day>
- <day type="fri">ven</day>
- <day type="sat">sab</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">domenica</day>
- <day type="mon">lunedì</day>
- <day type="tue">martedì</day>
- <day type="wed">mercoledì</day>
- <day type="thu">giovedì</day>
- <day type="fri">venerdì</day>
- <day type="sat">sabato</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="abbreviated">
- <day type="sun">dom</day>
- <day type="mon">lun</day>
- <day type="tue">mar</day>
- <day type="wed">mer</day>
- <day type="thu">gio</day>
- <day type="fri">ven</day>
- <day type="sat">sab</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">D</day>
- <day type="mon">L</day>
- <day type="tue">M</day>
- <day type="wed">M</day>
- <day type="thu">G</day>
- <day type="fri">V</day>
- <day type="sat">S</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">dom</day>
- <day type="mon">lun</day>
- <day type="tue">mar</day>
- <day type="wed">mer</day>
- <day type="thu">gio</day>
- <day type="fri">ven</day>
- <day type="sat">sab</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">Domenica</day>
- <day type="mon">Lunedì</day>
- <day type="tue">Martedì</day>
- <day type="wed">Mercoledì</day>
- <day type="thu">Giovedì</day>
- <day type="fri">Venerdì</day>
- <day type="sat">Sabato</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">T1</quarter>
- <quarter type="2">T2</quarter>
- <quarter type="3">T3</quarter>
- <quarter type="4">T4</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1º trimestre</quarter>
- <quarter type="2">2º trimestre</quarter>
- <quarter type="3">3º trimestre</quarter>
- <quarter type="4">4º trimestre</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="abbreviated">
- <quarter type="1">T1</quarter>
- <quarter type="2">T2</quarter>
- <quarter type="3">T3</quarter>
- <quarter type="4">T4</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">Primo trimestre</quarter>
- <quarter type="2">Secondo trimestre</quarter>
- <quarter type="3">Terzo trimestre</quarter>
- <quarter type="4">Quarto trimestre</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="narrow">
- <dayPeriod type="am">m.</dayPeriod>
- <dayPeriod type="pm">p.</dayPeriod>
- </dayPeriodWidth>
- <dayPeriodWidth type="wide">
- <dayPeriod type="am">AM</dayPeriod>
- <dayPeriod type="pm">PM</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraNames>
- <era type="0">a.C.</era>
- <era type="0" alt="variant" draft="contributed">BCE</era>
- <era type="1">d.C.</era>
- <era type="1" alt="variant" draft="contributed">CE</era>
- </eraNames>
- <eraAbbr>
- <era type="0">aC</era>
- <era type="0" alt="variant" draft="contributed">BCE</era>
- <era type="1">dC</era>
- <era type="1" alt="variant" draft="contributed">CE</era>
- </eraAbbr>
- <eraNarrow>
- <era type="0">aC</era>
- <era type="0" alt="variant" draft="contributed">BCE</era>
- <era type="1">dC</era>
- <era type="1" alt="variant" draft="contributed">CE</era>
- </eraNarrow>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE d MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>dd MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd/MMM/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>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern draft="contributed">{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern draft="contributed">{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern draft="contributed">{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern draft="contributed">{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="Ed">E d</dateFormatItem>
- <dateFormatItem id="Ehm">E h.mm a</dateFormatItem>
- <dateFormatItem id="EHm">E HH.mm</dateFormatItem>
- <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
- <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
- <dateFormatItem id="Gy">y G</dateFormatItem>
- <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMd">d MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMEd">E d MMM y G</dateFormatItem>
- <dateFormatItem id="h">hh a</dateFormatItem>
- <dateFormatItem id="H">HH</dateFormatItem>
- <dateFormatItem id="hm">hh:mm a</dateFormatItem>
- <dateFormatItem id="Hm">HH:mm</dateFormatItem>
- <dateFormatItem id="hms">hh:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">d/M</dateFormatItem>
- <dateFormatItem id="MEd">E d/M</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">M/y</dateFormatItem>
- <dateFormatItem id="yMd">d/M/y</dateFormatItem>
- <dateFormatItem id="yMEd">E d/M/y</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMd">d 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>
- <appendItems>
- <appendItem request="Timezone">{0} {1}</appendItem>
- </appendItems>
- <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">dd-dd MMM</greatestDifference>
- <greatestDifference id="M">dd MMM - dd MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E dd - E dd MMM</greatestDifference>
- <greatestDifference id="M">E dd MMM - E dd MMM</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">dd-dd MMM y</greatestDifference>
- <greatestDifference id="M">dd MMM - dd MMM y</greatestDifference>
- <greatestDifference id="y">dd MMM y - dd 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">MMMM-MMMM y</greatestDifference>
- <greatestDifference id="y">MMMM y - MMMM y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="hebrew">
- <eras>
- <eraAbbr>
- <era type="0">AM</era>
- </eraAbbr>
- </eras>
- </calendar>
- <calendar type="islamic">
- <eras>
- <eraAbbr>
- <era type="0">AH</era>
- </eraAbbr>
- </eras>
- </calendar>
- <calendar type="japanese">
- <!-- need some non-empty element here to make inheritance work,
- this copy of generic dateFormats above is smaller than root japanese eras
- -->
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE d MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>dd MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd/MMM/y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd/MM/yy GGGGG</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- </calendar>
- <calendar type="roc">
- <eras>
- <eraAbbr>
- <era type="0">Prima della R.O.C.</era>
- <era type="1">Minguo</era>
- </eraAbbr>
- </eras>
- </calendar>
- </calendars>
- <fields>
- <field type="era">
- <displayName>era</displayName>
- </field>
- <field type="year">
- <displayName>anno</displayName>
- <relative type="-1">anno scorso</relative>
- <relative type="0">quest'anno</relative>
- <relative type="1">anno prossimo</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">tra {0} anno</relativeTimePattern>
- <relativeTimePattern count="other">tra {0} anni</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} anno fa</relativeTimePattern>
- <relativeTimePattern count="other">{0} anni fa</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="month">
- <displayName>mese</displayName>
- <relative type="-1">mese scorso</relative>
- <relative type="0">questo mese</relative>
- <relative type="1">mese prossimo</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">tra {0} mese</relativeTimePattern>
- <relativeTimePattern count="other">tra {0} mesi</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} mese fa</relativeTimePattern>
- <relativeTimePattern count="other">{0} mesi fa</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="week">
- <displayName>settimana</displayName>
- <relative type="-1">settimana scorsa</relative>
- <relative type="0">questa settimana</relative>
- <relative type="1">settimana prossima</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">tra {0} settimana</relativeTimePattern>
- <relativeTimePattern count="other">tra {0} settimane</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} settimana fa</relativeTimePattern>
- <relativeTimePattern count="other">{0} settimane fa</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="day">
- <displayName>giorno</displayName>
- <relative type="-2">l'altro ieri</relative>
- <relative type="-1">ieri</relative>
- <relative type="0">oggi</relative>
- <relative type="1">domani</relative>
- <relative type="2">dopodomani</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">tra {0} giorno</relativeTimePattern>
- <relativeTimePattern count="other">tra {0} giorni</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} giorno fa</relativeTimePattern>
- <relativeTimePattern count="other">{0} giorni fa</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="weekday">
- <displayName>giorno della settimana</displayName>
- </field>
- <field type="sun">
- <relative type="-1">domenica scorsa</relative>
- <relative type="0">questa domenica</relative>
- <relative type="1">domenica prossima</relative>
- </field>
- <field type="mon">
- <relative type="-1">lunedì scorso</relative>
- <relative type="0">questo lunedì</relative>
- <relative type="1">lunedì prossimo</relative>
- </field>
- <field type="tue">
- <relative type="-1">martedì scorso</relative>
- <relative type="0">questo martedì</relative>
- <relative type="1">martedì prossimo</relative>
- </field>
- <field type="wed">
- <relative type="-1">mercoledì scorso</relative>
- <relative type="0">questo mercoledì</relative>
- <relative type="1">mercoledì prossimo</relative>
- </field>
- <field type="thu">
- <relative type="-1">giovedì scorso</relative>
- <relative type="0">questo giovedì</relative>
- <relative type="1">giovedì prossimo</relative>
- </field>
- <field type="fri">
- <relative type="-1">venerdì scorso</relative>
- <relative type="0">questo venerdì</relative>
- <relative type="1">venerdì prossimo</relative>
- </field>
- <field type="sat">
- <relative type="-1">sabato scorso</relative>
- <relative type="0">questo sabato</relative>
- <relative type="1">sabato prossimo</relative>
- </field>
- <field type="dayperiod">
- <displayName>periodo del giorno</displayName>
- </field>
- <field type="hour">
- <displayName>ora</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">tra {0} ora</relativeTimePattern>
- <relativeTimePattern count="other">tra {0} ore</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} ora fa</relativeTimePattern>
- <relativeTimePattern count="other">{0} ore fa</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="minute">
- <displayName>minuto</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">tra {0} minuto</relativeTimePattern>
- <relativeTimePattern count="other">tra {0} minuti</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} minuto fa</relativeTimePattern>
- <relativeTimePattern count="other">{0} minuti fa</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="second">
- <displayName>secondo</displayName>
- <relative type="0">ora</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">tra {0} secondo</relativeTimePattern>
- <relativeTimePattern count="other">tra {0} secondi</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">{0} secondo fa</relativeTimePattern>
- <relativeTimePattern count="other">{0} secondi fa</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="zone">
- <displayName>fuso orario</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <hourFormat>+HH:mm;-HH:mm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <gmtZeroFormat>GMT</gmtZeroFormat>
- <regionFormat>Ora {0}</regionFormat>
- <regionFormat type="daylight">Ora legale: {0}</regionFormat>
- <regionFormat type="standard">Ora standard: {0}</regionFormat>
- <fallbackFormat>{1} ({0})</fallbackFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>Città sconosciuta</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>Tirana</exemplarCity>
- </zone>
- <zone type="Antarctica/South_Pole">
- <exemplarCity>Polo Sud</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity>Dumont D'Urville</exemplarCity>
- </zone>
- <zone type="America/Argentina/Tucuman">
- <exemplarCity>Tucumán</exemplarCity>
- </zone>
- <zone type="America/Cordoba">
- <exemplarCity>Cordova</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>Bruxelles</exemplarCity>
- </zone>
- <zone type="Asia/Bahrain">
- <exemplarCity>Bahrein</exemplarCity>
- </zone>
- <zone type="America/St_Barthelemy">
- <exemplarCity>Saint-Barthélemy</exemplarCity>
- </zone>
- <zone type="America/Santarem">
- <exemplarCity>Santarém</exemplarCity>
- </zone>
- <zone type="America/Sao_Paulo">
- <exemplarCity>San Paolo</exemplarCity>
- </zone>
- <zone type="America/Coral_Harbour">
- <exemplarCity>Atikokan</exemplarCity>
- </zone>
- <zone type="America/St_Johns">
- <exemplarCity>St. John’s</exemplarCity>
- </zone>
- <zone type="Europe/Zurich">
- <exemplarCity>Zurigo</exemplarCity>
- </zone>
- <zone type="Pacific/Easter">
- <exemplarCity>Pasqua</exemplarCity>
- </zone>
- <zone type="America/Bogota">
- <exemplarCity>Bogotá</exemplarCity>
- </zone>
- <zone type="America/Havana">
- <exemplarCity>L'Avana</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity>Capo Verde</exemplarCity>
- </zone>
- <zone type="America/Curacao">
- <exemplarCity>Curaçao</exemplarCity>
- </zone>
- <zone type="Indian/Christmas">
- <exemplarCity>Natale</exemplarCity>
- </zone>
- <zone type="Europe/Prague">
- <exemplarCity>Praga</exemplarCity>
- </zone>
- <zone type="Europe/Berlin">
- <exemplarCity>Berlino</exemplarCity>
- </zone>
- <zone type="Africa/Djibouti">
- <exemplarCity>Gibuti</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>Copenaghen</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity>Algeri</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity>Il Cairo</exemplarCity>
- </zone>
- <zone type="Africa/Asmera">
- <exemplarCity>Asmara</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>Canarie</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>Addis Abeba</exemplarCity>
- </zone>
- <zone type="Pacific/Fiji">
- <exemplarCity>Figi</exemplarCity>
- </zone>
- <zone type="Pacific/Truk">
- <exemplarCity>Chuuk</exemplarCity>
- </zone>
- <zone type="Pacific/Ponape">
- <exemplarCity>Pohnpei</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity>Isole Faeroe</exemplarCity>
- </zone>
- <zone type="Europe/Paris">
- <exemplarCity>Parigi</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <long>
- <daylight>Ora legale Regno Unito</daylight>
- </long>
- <exemplarCity>Londra</exemplarCity>
- </zone>
- <zone type="America/Cayenne">
- <exemplarCity>Caienna</exemplarCity>
- </zone>
- <zone type="Europe/Gibraltar">
- <exemplarCity>Gibilterra</exemplarCity>
- </zone>
- <zone type="America/Godthab">
- <exemplarCity>Nuuk</exemplarCity>
- </zone>
- <zone type="America/Scoresbysund">
- <exemplarCity>Ittoqqortoormiit</exemplarCity>
- </zone>
- <zone type="America/Guadeloupe">
- <exemplarCity>Guadalupa</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>Atene</exemplarCity>
- </zone>
- <zone type="Atlantic/South_Georgia">
- <exemplarCity>Georgia meridionale</exemplarCity>
- </zone>
- <zone type="America/Guyana">
- <exemplarCity>Guiana</exemplarCity>
- </zone>
- <zone type="Europe/Zagreb">
- <exemplarCity>Zagabria</exemplarCity>
- </zone>
- <zone type="Asia/Jakarta">
- <exemplarCity>Giacarta</exemplarCity>
- </zone>
- <zone type="Europe/Dublin">
- <long>
- <daylight>Ora legale Irlanda</daylight>
- </long>
- <exemplarCity>Dublino</exemplarCity>
- </zone>
- <zone type="Asia/Jerusalem">
- <exemplarCity>Gerusalemme</exemplarCity>
- </zone>
- <zone type="Europe/Isle_of_Man">
- <exemplarCity>Isola di Man</exemplarCity>
- </zone>
- <zone type="Asia/Calcutta">
- <exemplarCity>Kolkata</exemplarCity>
- </zone>
- <zone type="Asia/Tehran">
- <exemplarCity>Teheran</exemplarCity>
- </zone>
- <zone type="Atlantic/Reykjavik">
- <exemplarCity>Reykjavík</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>Roma</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity>Giamaica</exemplarCity>
- </zone>
- <zone type="Indian/Comoro">
- <exemplarCity>Comore</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>St. Kitts</exemplarCity>
- </zone>
- <zone type="Asia/Seoul">
- <exemplarCity>Seul</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>Santa Lucia</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>Lussemburgo</exemplarCity>
- </zone>
- <zone type="Asia/Macau">
- <exemplarCity>Macao</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity>Martinica</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>Maldive</exemplarCity>
- </zone>
- <zone type="America/Bahia_Banderas">
- <exemplarCity>Bahía de Banderas</exemplarCity>
- </zone>
- <zone type="America/Mexico_City">
- <exemplarCity>Città del Messico</exemplarCity>
- </zone>
- <zone type="America/Merida">
- <exemplarCity>Mérida</exemplarCity>
- </zone>
- <zone type="America/Cancun">
- <exemplarCity>Cancún</exemplarCity>
- </zone>
- <zone type="Asia/Katmandu">
- <exemplarCity>Kathmandu</exemplarCity>
- </zone>
- <zone type="Pacific/Marquesas">
- <exemplarCity draft="contributed">Marchesi</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>Varsavia</exemplarCity>
- </zone>
- <zone type="Pacific/Pitcairn">
- <exemplarCity>Pitcairn, isole</exemplarCity>
- </zone>
- <zone type="America/Puerto_Rico">
- <exemplarCity>Portorico</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>Azzorre</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>Lisbona</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity>Asunción</exemplarCity>
- </zone>
- <zone type="Indian/Reunion">
- <exemplarCity>La Riunione</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>Bucarest</exemplarCity>
- </zone>
- <zone type="Europe/Belgrade">
- <exemplarCity>Belgrado</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>Mosca</exemplarCity>
- </zone>
- <zone type="Europe/Stockholm">
- <exemplarCity>Stoccolma</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>Sant'Elena</exemplarCity>
- </zone>
- <zone type="Europe/Ljubljana">
- <exemplarCity>Lubiana</exemplarCity>
- </zone>
- <zone type="Africa/Mogadishu">
- <exemplarCity>Mogadiscio</exemplarCity>
- </zone>
- <zone type="Africa/Sao_Tome">
- <exemplarCity>São Tomé</exemplarCity>
- </zone>
- <zone type="America/Lower_Princes">
- <exemplarCity>Lower Prince's Quarter</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>Damasco</exemplarCity>
- </zone>
- <zone type="Africa/Ndjamena">
- <exemplarCity>N'Djamena</exemplarCity>
- </zone>
- <zone type="Africa/Tunis">
- <exemplarCity>Tunisi</exemplarCity>
- </zone>
- <zone type="America/Anchorage">
- <exemplarCity>Fuso orario Alaska</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Beulah">
- <exemplarCity draft="contributed">Beulah, Dakota del nord</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/New_Salem">
- <exemplarCity draft="contributed">New Salem, Dakota del nord</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Center">
- <exemplarCity>Center, Dakota del nord</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vincennes">
- <exemplarCity>Vincennes, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Petersburg">
- <exemplarCity>Petersburg, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Tell_City">
- <exemplarCity>Tell City, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Knox">
- <exemplarCity>Knox, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Winamac">
- <exemplarCity>Winamac, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Marengo">
- <exemplarCity>Marengo, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vevay">
- <exemplarCity>Vevay, Indiana</exemplarCity>
- </zone>
- <zone type="America/Kentucky/Monticello">
- <exemplarCity>Monticello, Kentucky</exemplarCity>
- </zone>
- <zone type="Asia/Samarkand">
- <exemplarCity>Samarcanda</exemplarCity>
- </zone>
- <zone type="Europe/Vatican">
- <exemplarCity>Città del Vaticano</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>Saint Vincent</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>Saint Thomas</exemplarCity>
- </zone>
- <zone type="Asia/Saigon">
- <exemplarCity>Ho Chi Minh</exemplarCity>
- </zone>
- <metazone type="Afghanistan">
- <long>
- <standard>Ora dell'Afghanistan</standard>
- </long>
- </metazone>
- <metazone type="Africa_Central">
- <long>
- <standard>Ora dell'Africa centrale</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>Ora dell'Africa orientale</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <standard>Ora dell'Africa meridionale</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <generic>Ora dell'Africa occidentale</generic>
- <standard>Ora standard dell'Africa occidentale</standard>
- <daylight>Ora legale dell'Africa occidentale</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>Ora dell'Alaska</generic>
- <standard>Ora standard Alaska</standard>
- <daylight>Ora legale Alaska</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <generic>Ora dell'Amazzonia</generic>
- <standard>Ora standard dell'Amazzonia</standard>
- <daylight>Ora legale dell'Amazzonia</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic>Ora centrale USA</generic>
- <standard>Ora standard centrale USA</standard>
- <daylight>Ora legale centrale USA</daylight>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic>Ora orientale USA</generic>
- <standard>Ora standard orientale USA</standard>
- <daylight>Ora legale orientale USA</daylight>
- </long>
- </metazone>
- <metazone type="America_Mountain">
- <long>
- <generic>Ora Montagne Rocciose USA</generic>
- <standard>Ora standard Montagne Rocciose USA</standard>
- <daylight>Ora legale Montagne Rocciose USA</daylight>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic>Ora del Pacifico USA</generic>
- <standard>Ora standard del Pacifico USA</standard>
- <daylight>Ora legale del Pacifico USA</daylight>
- </long>
- </metazone>
- <metazone type="Anadyr">
- <long>
- <generic draft="contributed">Ora di Anadyr</generic>
- <standard draft="contributed">Ora standard di Anadyr</standard>
- <daylight draft="contributed">Ora legale di Anadyr</daylight>
- </long>
- </metazone>
- <metazone type="Arabian">
- <long>
- <generic>Ora araba</generic>
- <standard>Ora standard araba</standard>
- <daylight>Ora legale araba</daylight>
- </long>
- </metazone>
- <metazone type="Argentina">
- <long>
- <generic>Ora dell'Argentina</generic>
- <standard>Ora standard dell'Argentina</standard>
- <daylight>Ora legale dell'Argentina</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <generic>Ora dell'Argentina occidentale</generic>
- <standard>Ora standard dell'Argentina occidentale</standard>
- <daylight>Ora legale dell'Argentina occidentale</daylight>
- </long>
- </metazone>
- <metazone type="Armenia">
- <long>
- <generic>Ora dell'Armenia</generic>
- <standard>Ora standard dell'Armenia</standard>
- <daylight>Ora legale dell'Armenia</daylight>
- </long>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>Ora dell'Atlantico</generic>
- <standard>Ora standard dell'Atlantico</standard>
- <daylight>Ora legale dell'Atlantico</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Central">
- <long>
- <generic>Ora dell'Australia centrale</generic>
- <standard>Ora standard dell'Australia centrale</standard>
- <daylight>Ora legale dell'Australia centrale</daylight>
- </long>
- </metazone>
- <metazone type="Australia_CentralWestern">
- <long>
- <generic>Ora dell'Australia centroccidentale</generic>
- <standard>Ora standard dell'Australia centroccidentale</standard>
- <daylight>Ora legale dell'Australia centroccidentale</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Eastern">
- <long>
- <generic>Ora dell'Australia orientale</generic>
- <standard>Ora standard dell'Australia orientale</standard>
- <daylight>Ora legale dell'Australia orientale</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Western">
- <long>
- <generic>Ora dell'Australia occidentale</generic>
- <standard>Ora standard dell'Australia occidentale</standard>
- <daylight>Ora legale dell'Australia occidentale</daylight>
- </long>
- </metazone>
- <metazone type="Azerbaijan">
- <long>
- <generic>Ora dell'Azerbaigian</generic>
- <standard>Ora standard dell'Azerbaigian</standard>
- <daylight>Ora legale dell'Azerbaigian</daylight>
- </long>
- </metazone>
- <metazone type="Azores">
- <long>
- <generic>Ora delle Azzorre</generic>
- <standard>Ora standard delle Azzorre</standard>
- <daylight>Ora legale delle Azzorre</daylight>
- </long>
- </metazone>
- <metazone type="Bangladesh">
- <long>
- <generic>Ora del Bangladesh</generic>
- <standard>Ora standard del Bangladesh</standard>
- <daylight>Ora legale del Bangladesh</daylight>
- </long>
- </metazone>
- <metazone type="Bhutan">
- <long>
- <standard>Ora del Bhutan</standard>
- </long>
- </metazone>
- <metazone type="Bolivia">
- <long>
- <standard>Ora della Bolivia</standard>
- </long>
- </metazone>
- <metazone type="Brasilia">
- <long>
- <generic>Ora di Brasilia</generic>
- <standard>Ora standard di Brasilia</standard>
- <daylight>Ora legale di Brasilia</daylight>
- </long>
- </metazone>
- <metazone type="Brunei">
- <long>
- <standard>Ora del Brunei Darussalam</standard>
- </long>
- </metazone>
- <metazone type="Cape_Verde">
- <long>
- <generic>Ora di Capo Verde</generic>
- <standard>Ora standard di Capo Verde</standard>
- <daylight>Ora legale di Capo Verde</daylight>
- </long>
- </metazone>
- <metazone type="Chamorro">
- <long>
- <standard>Ora Chamorro</standard>
- </long>
- </metazone>
- <metazone type="Chatham">
- <long>
- <generic>Ora delle Chatham</generic>
- <standard>Ora standard delle Chatham</standard>
- <daylight>Ora legale delle Chatham</daylight>
- </long>
- </metazone>
- <metazone type="Chile">
- <long>
- <generic>Ora del Cile</generic>
- <standard>Ora standard del Cile</standard>
- <daylight>Ora legale del Cile</daylight>
- </long>
- </metazone>
- <metazone type="China">
- <long>
- <generic>Ora della Cina</generic>
- <standard>Ora standard della Cina</standard>
- <daylight>Ora legale della Cina</daylight>
- </long>
- </metazone>
- <metazone type="Choibalsan">
- <long>
- <generic>Ora di Choibalsan</generic>
- <standard>Ora standard di Choibalsan</standard>
- <daylight>Ora legale di Choibalsan</daylight>
- </long>
- </metazone>
- <metazone type="Christmas">
- <long>
- <standard>Ora dell'Isola di Natale</standard>
- </long>
- </metazone>
- <metazone type="Cocos">
- <long>
- <standard>Ora delle Isole Cocos</standard>
- </long>
- </metazone>
- <metazone type="Colombia">
- <long>
- <generic>Ora della Colombia</generic>
- <standard>Ora standard della Colombia</standard>
- <daylight>Ora legale della Colombia</daylight>
- </long>
- </metazone>
- <metazone type="Cook">
- <long>
- <generic>Ora delle Isole Cook</generic>
- <standard>Ora standard delle Isole Cook</standard>
- <daylight>Ora legale media delle Isole Cook</daylight>
- </long>
- </metazone>
- <metazone type="Cuba">
- <long>
- <generic>Ora di Cuba</generic>
- <standard>Ora standard di Cuba</standard>
- <daylight>Ora legale di Cuba</daylight>
- </long>
- </metazone>
- <metazone type="Davis">
- <long>
- <standard>Ora di Davis</standard>
- </long>
- </metazone>
- <metazone type="DumontDUrville">
- <long>
- <standard>Ora di Dumont-d'Urville</standard>
- </long>
- </metazone>
- <metazone type="East_Timor">
- <long>
- <standard>Ora di Timor Est</standard>
- </long>
- </metazone>
- <metazone type="Easter">
- <long>
- <generic>Ora dell'Isola di Pasqua</generic>
- <standard>Ora standard dell'Isola di Pasqua</standard>
- <daylight>Ora legale dell'Isola di Pasqua</daylight>
- </long>
- </metazone>
- <metazone type="Ecuador">
- <long>
- <standard>Ora dell'Ecuador</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <generic>Ora dell'Europa centrale</generic>
- <standard>Ora standard dell'Europa centrale</standard>
- <daylight>Ora legale dell'Europa centrale</daylight>
- </long>
- <short>
- <generic>CET</generic>
- <standard>CET</standard>
- <daylight>CEST</daylight>
- </short>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <generic>Ora dell'Europa orientale</generic>
- <standard>Ora standard dell'Europa orientale</standard>
- <daylight>Ora legale dell'Europa orientale</daylight>
- </long>
- <short>
- <generic>EET</generic>
- <standard>EET</standard>
- <daylight>EEST</daylight>
- </short>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <generic>Ora dell'Europa occidentale</generic>
- <standard>Ora standard dell'Europa occidentale</standard>
- <daylight>Ora legale dell'Europa occidentale</daylight>
- </long>
- <short>
- <generic>WET</generic>
- <standard>WET</standard>
- <daylight>WEST</daylight>
- </short>
- </metazone>
- <metazone type="Falkland">
- <long>
- <generic>Ora delle Isole Falkland</generic>
- <standard>Ora standard delle Isole Falkland</standard>
- <daylight>Ora legale delle Isole Falkland</daylight>
- </long>
- </metazone>
- <metazone type="Fiji">
- <long>
- <generic>Ora delle Fiji</generic>
- <standard>Ora standard delle Fiji</standard>
- <daylight>Ora legale delle Fiji</daylight>
- </long>
- </metazone>
- <metazone type="French_Guiana">
- <long>
- <standard>Ora della Guiana francese</standard>
- </long>
- </metazone>
- <metazone type="French_Southern">
- <long>
- <standard>Ora delle Terre australi e antartiche francesi</standard>
- </long>
- </metazone>
- <metazone type="Galapagos">
- <long>
- <standard>Ora delle Galapagos</standard>
- </long>
- </metazone>
- <metazone type="Gambier">
- <long>
- <standard>Ora di Gambier</standard>
- </long>
- </metazone>
- <metazone type="Georgia">
- <long>
- <generic>Ora della Georgia</generic>
- <standard>Ora standard della Georgia</standard>
- <daylight>Ora legale della Georgia</daylight>
- </long>
- </metazone>
- <metazone type="Gilbert_Islands">
- <long>
- <standard>Ora delle Isole Gilbert</standard>
- </long>
- </metazone>
- <metazone type="GMT">
- <long>
- <standard>Ora del meridiano di Greenwich</standard>
- </long>
- </metazone>
- <metazone type="Greenland_Eastern">
- <long>
- <generic>Ora della Groenlandia orientale</generic>
- <standard>Ora standard della Groenlandia orientale</standard>
- <daylight>Ora legale della Groenlandia orientale</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Western">
- <long>
- <generic>Ora della Groenlandia occidentale</generic>
- <standard>Ora standard della Groenlandia occidentale</standard>
- <daylight>Ora legale della Groenlandia occidentale</daylight>
- </long>
- </metazone>
- <metazone type="Gulf">
- <long>
- <standard>Ora del Golfo</standard>
- </long>
- </metazone>
- <metazone type="Guyana">
- <long>
- <standard>Ora della Guyana</standard>
- </long>
- </metazone>
- <metazone type="Hawaii_Aleutian">
- <long>
- <generic>Ora delle isole Hawaii-Aleutine</generic>
- <standard>Ora standard delle Isole Hawaii-Aleutine</standard>
- <daylight>Ora legale delle Isole Hawaii-Aleutine</daylight>
- </long>
- </metazone>
- <metazone type="Hong_Kong">
- <long>
- <generic>Ora di Hong Kong</generic>
- <standard>Ora standard di Hong Kong</standard>
- <daylight>Ora legale di Hong Kong</daylight>
- </long>
- </metazone>
- <metazone type="Hovd">
- <long>
- <generic>Ora di Hovd</generic>
- <standard>Ora standard di Hovd</standard>
- <daylight>Ora legale di Hovd</daylight>
- </long>
- </metazone>
- <metazone type="India">
- <long>
- <standard>Ora standard dell'India</standard>
- </long>
- </metazone>
- <metazone type="Indian_Ocean">
- <long>
- <standard>Ora dell'Oceano Indiano</standard>
- </long>
- </metazone>
- <metazone type="Indochina">
- <long>
- <standard>Ora dell'Indocina</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Central">
- <long>
- <standard>Ora dell'Indonesia centrale</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Eastern">
- <long>
- <standard>Ora dell'Indonesia orientale</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Western">
- <long>
- <standard>Ora dell'Indonesia occidentale</standard>
- </long>
- </metazone>
- <metazone type="Iran">
- <long>
- <generic>Ora dell'Iran</generic>
- <standard>Ora standard dell'Iran</standard>
- <daylight>Ora legale dell'Iran</daylight>
- </long>
- </metazone>
- <metazone type="Irkutsk">
- <long>
- <generic>Ora di Irkutsk</generic>
- <standard>Ora standard di Irkutsk</standard>
- <daylight>Ora legale di Irkutsk</daylight>
- </long>
- </metazone>
- <metazone type="Israel">
- <long>
- <generic>Ora di Israele</generic>
- <standard>Ora standard di Israele</standard>
- <daylight>Ora legale di Israele</daylight>
- </long>
- </metazone>
- <metazone type="Japan">
- <long>
- <generic>Ora del Giappone</generic>
- <standard>Ora standard del Giappone</standard>
- <daylight>Ora legale del Giappone</daylight>
- </long>
- </metazone>
- <metazone type="Kamchatka">
- <long>
- <generic draft="contributed">Ora di Petropavlovsk-Kamchatski</generic>
- <standard draft="contributed">Ora standard di Petropavlovsk-Kamchatski</standard>
- <daylight draft="contributed">Ora legale di Petropavlovsk-Kamchatski</daylight>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Eastern">
- <long>
- <standard>Ora del Kazakistan orientale</standard>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Western">
- <long>
- <standard>Ora del Kazakistan occidentale</standard>
- </long>
- </metazone>
- <metazone type="Korea">
- <long>
- <generic>Ora coreana</generic>
- <standard>Ora standard coreana</standard>
- <daylight>Ora legale coreana</daylight>
- </long>
- </metazone>
- <metazone type="Kosrae">
- <long>
- <standard>Ora del Kosrae</standard>
- </long>
- </metazone>
- <metazone type="Krasnoyarsk">
- <long>
- <generic>Ora di Krasnoyarsk</generic>
- <standard>Ora standard di Krasnoyarsk</standard>
- <daylight>Ora legale di Krasnoyarsk</daylight>
- </long>
- </metazone>
- <metazone type="Kyrgystan">
- <long>
- <standard>Ora del Kirghizistan</standard>
- </long>
- </metazone>
- <metazone type="Line_Islands">
- <long>
- <standard>Ora delle Sporadi equatoriali</standard>
- </long>
- </metazone>
- <metazone type="Lord_Howe">
- <long>
- <generic>Ora di Lord Howe</generic>
- <standard>Ora standard di Lord Howe</standard>
- <daylight>Ora legale di Lord Howe</daylight>
- </long>
- </metazone>
- <metazone type="Macquarie">
- <long>
- <standard>Ora dell'Isola Macquarie</standard>
- </long>
- </metazone>
- <metazone type="Magadan">
- <long>
- <generic>Ora di Magadan</generic>
- <standard>Ora standard di Magadan</standard>
- <daylight>Ora legale di Magadan</daylight>
- </long>
- </metazone>
- <metazone type="Malaysia">
- <long>
- <standard>Ora della Malesia</standard>
- </long>
- </metazone>
- <metazone type="Maldives">
- <long>
- <standard>Ora delle Maldive</standard>
- </long>
- </metazone>
- <metazone type="Marquesas">
- <long>
- <standard>Ora delle Marchesi</standard>
- </long>
- </metazone>
- <metazone type="Marshall_Islands">
- <long>
- <standard>Ora delle Isole Marshall</standard>
- </long>
- </metazone>
- <metazone type="Mauritius">
- <long>
- <generic>Ora delle Mauritius</generic>
- <standard>Ora standard delle Mauritius</standard>
- <daylight>Ora legale delle Mauritius</daylight>
- </long>
- </metazone>
- <metazone type="Mawson">
- <long>
- <standard>Ora di Mawson</standard>
- </long>
- </metazone>
- <metazone type="Mongolia">
- <long>
- <generic>Ora di Ulan Bator</generic>
- <standard>Ora standard di Ulan Bator</standard>
- <daylight>Ora legale di Ulan Bator</daylight>
- </long>
- </metazone>
- <metazone type="Moscow">
- <long>
- <generic>Ora di Mosca</generic>
- <standard>Ora standard di Mosca</standard>
- <daylight>Ora legale di Mosca</daylight>
- </long>
- </metazone>
- <metazone type="Myanmar">
- <long>
- <standard>Ora della Birmania</standard>
- </long>
- </metazone>
- <metazone type="Nauru">
- <long>
- <standard>Ora di Nauru</standard>
- </long>
- </metazone>
- <metazone type="Nepal">
- <long>
- <standard>Ora del Nepal</standard>
- </long>
- </metazone>
- <metazone type="New_Caledonia">
- <long>
- <generic>Ora della Nuova Caledonia</generic>
- <standard>Ora standard della Nuova Caledonia</standard>
- <daylight>Ora legale della Nuova Caledonia</daylight>
- </long>
- </metazone>
- <metazone type="New_Zealand">
- <long>
- <generic>Ora della Nuova Zelanda</generic>
- <standard>Ora standard della Nuova Zelanda</standard>
- <daylight>Ora legale della Nuova Zelanda</daylight>
- </long>
- </metazone>
- <metazone type="Newfoundland">
- <long>
- <generic>Ora di Terranova</generic>
- <standard>Ora standard di Terranova</standard>
- <daylight>Ora legale di Terranova</daylight>
- </long>
- </metazone>
- <metazone type="Niue">
- <long>
- <standard>Ora di Niue</standard>
- </long>
- </metazone>
- <metazone type="Norfolk">
- <long>
- <standard>Ora delle Isole Norfolk</standard>
- </long>
- </metazone>
- <metazone type="Noronha">
- <long>
- <generic>Ora di Fernando de Noronha</generic>
- <standard>Ora standard di Fernando de Noronha</standard>
- <daylight>Ora legale di Fernando de Noronha</daylight>
- </long>
- </metazone>
- <metazone type="Novosibirsk">
- <long>
- <generic>Ora di Novosibirsk</generic>
- <standard>Ora standard di Novosibirsk</standard>
- <daylight>Ora legale di Novosibirsk</daylight>
- </long>
- </metazone>
- <metazone type="Omsk">
- <long>
- <generic>Ora di Omsk</generic>
- <standard>Ora standard di Omsk</standard>
- <daylight>Ora legale di Omsk</daylight>
- </long>
- </metazone>
- <metazone type="Pakistan">
- <long>
- <generic>Ora del Pakistan</generic>
- <standard>Ora standard del Pakistan</standard>
- <daylight>Ora legale del Pakistan</daylight>
- </long>
- </metazone>
- <metazone type="Palau">
- <long>
- <standard>Ora di Palau</standard>
- </long>
- </metazone>
- <metazone type="Papua_New_Guinea">
- <long>
- <standard>Ora della Papua Nuova Guinea</standard>
- </long>
- </metazone>
- <metazone type="Paraguay">
- <long>
- <generic>Ora del Paraguay</generic>
- <standard>Ora standard del Paraguay</standard>
- <daylight>Ora legale del Paraguay</daylight>
- </long>
- </metazone>
- <metazone type="Peru">
- <long>
- <generic>Ora del Perù</generic>
- <standard>Ora standard del Perù</standard>
- <daylight>Ora legale del Perù</daylight>
- </long>
- </metazone>
- <metazone type="Philippines">
- <long>
- <generic>Ora delle Filippine</generic>
- <standard>Ora standard delle Filippine</standard>
- <daylight>Ora legale delle Filippine</daylight>
- </long>
- </metazone>
- <metazone type="Phoenix_Islands">
- <long>
- <standard>Ora delle Isole della Fenice</standard>
- </long>
- </metazone>
- <metazone type="Pierre_Miquelon">
- <long>
- <generic>Ora di Saint-Pierre e Miquelon</generic>
- <standard>Ora standard di Saint-Pierre e Miquelon</standard>
- <daylight>Ora legale di Saint-Pierre e Miquelon</daylight>
- </long>
- </metazone>
- <metazone type="Pitcairn">
- <long>
- <standard>Ora delle Pitcairn</standard>
- </long>
- </metazone>
- <metazone type="Ponape">
- <long>
- <standard>Ora di Pohnpei</standard>
- </long>
- </metazone>
- <metazone type="Reunion">
- <long>
- <standard>Ora di Riunione</standard>
- </long>
- </metazone>
- <metazone type="Rothera">
- <long>
- <standard>Ora di Rothera</standard>
- </long>
- </metazone>
- <metazone type="Sakhalin">
- <long>
- <generic>Ora di Sakhalin</generic>
- <standard>Ora standard di Sakhalin</standard>
- <daylight>Ora legale di Sakhalin</daylight>
- </long>
- </metazone>
- <metazone type="Samara">
- <long>
- <generic draft="contributed">Ora di Samara</generic>
- <standard draft="contributed">Ora standard di Samara</standard>
- <daylight draft="contributed">Ora legale di Samara</daylight>
- </long>
- </metazone>
- <metazone type="Samoa">
- <long>
- <generic>Ora di Samoa</generic>
- <standard>Ora standard di Samoa</standard>
- <daylight>Ora legale di Samoa</daylight>
- </long>
- </metazone>
- <metazone type="Seychelles">
- <long>
- <standard>Ora delle Seychelles</standard>
- </long>
- </metazone>
- <metazone type="Singapore">
- <long>
- <standard>Ora Singapore</standard>
- </long>
- </metazone>
- <metazone type="Solomon">
- <long>
- <standard>Ora delle Isole Salomone</standard>
- </long>
- </metazone>
- <metazone type="South_Georgia">
- <long>
- <standard>Ora della Georgia del Sud</standard>
- </long>
- </metazone>
- <metazone type="Suriname">
- <long>
- <standard>Ora del Suriname</standard>
- </long>
- </metazone>
- <metazone type="Syowa">
- <long>
- <standard>Ora di Syowa</standard>
- </long>
- </metazone>
- <metazone type="Tahiti">
- <long>
- <standard>Ora di Tahiti</standard>
- </long>
- </metazone>
- <metazone type="Taipei">
- <long>
- <generic>Ora di Taipei</generic>
- <standard>Ora standard di Taipei</standard>
- <daylight>Ora legale di Taipei</daylight>
- </long>
- </metazone>
- <metazone type="Tajikistan">
- <long>
- <standard>Ora del Tagikistan</standard>
- </long>
- </metazone>
- <metazone type="Tokelau">
- <long>
- <standard>Ora di Tokelau</standard>
- </long>
- </metazone>
- <metazone type="Tonga">
- <long>
- <generic>Ora di Tonga</generic>
- <standard>Ora standard di Tonga</standard>
- <daylight>Ora legale di Tonga</daylight>
- </long>
- </metazone>
- <metazone type="Truk">
- <long>
- <standard>Ora del Chuuk</standard>
- </long>
- </metazone>
- <metazone type="Turkmenistan">
- <long>
- <generic>Ora del Turkmenistan</generic>
- <standard>Ora standard del Turkmenistan</standard>
- <daylight>Ora legale del Turkmenistan</daylight>
- </long>
- </metazone>
- <metazone type="Tuvalu">
- <long>
- <standard>Ora di Tuvalu</standard>
- </long>
- </metazone>
- <metazone type="Uruguay">
- <long>
- <generic>Ora dell'Uruguay</generic>
- <standard>Ora standard dell'Uruguay</standard>
- <daylight>Ora legale dell'Uruguay</daylight>
- </long>
- </metazone>
- <metazone type="Uzbekistan">
- <long>
- <generic>Ora dell'Uzbekistan</generic>
- <standard>Ora standard dell'Uzbekistan</standard>
- <daylight>Ora legale dell'Uzbekistan</daylight>
- </long>
- </metazone>
- <metazone type="Vanuatu">
- <long>
- <generic>Ora del Vanuatu</generic>
- <standard>Ora standard del Vanuatu</standard>
- <daylight>Ora legale del Vanuatu</daylight>
- </long>
- </metazone>
- <metazone type="Venezuela">
- <long>
- <standard>Ora del Venezuela</standard>
- </long>
- </metazone>
- <metazone type="Vladivostok">
- <long>
- <generic>Ora di Vladivostok</generic>
- <standard>Ora standard di Vladivostok</standard>
- <daylight>Ora legale di Vladivostok</daylight>
- </long>
- </metazone>
- <metazone type="Volgograd">
- <long>
- <generic>Ora di Volgograd</generic>
- <standard>Ora standard di Volgograd</standard>
- <daylight>Ora legale di Volgograd</daylight>
- </long>
- </metazone>
- <metazone type="Vostok">
- <long>
- <standard>Ora di Vostok</standard>
- </long>
- </metazone>
- <metazone type="Wake">
- <long>
- <standard>Ora dell'Isola di Wake</standard>
- </long>
- </metazone>
- <metazone type="Wallis">
- <long>
- <standard>Ora di Wallis e Futuna</standard>
- </long>
- </metazone>
- <metazone type="Yakutsk">
- <long>
- <generic>Ora di Yakutsk</generic>
- <standard>Ora standard di Yakutsk</standard>
- <daylight>Ora legale di Yakutsk</daylight>
- </long>
- </metazone>
- <metazone type="Yekaterinburg">
- <long>
- <generic>Ora di Ekaterinburg</generic>
- <standard>Ora standard di Ekaterinburg</standard>
- <daylight>Ora legale di Ekaterinburg</daylight>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <symbols numberSystem="latn">
- <decimal>,</decimal>
- <group>.</group>
- <list draft="contributed">;</list>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign>
- <minusSign>-</minusSign>
- <exponential>E</exponential>
- <superscriptingExponent>×</superscriptingExponent>
- <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">0 migliaio</pattern>
- <pattern type="1000" count="other">0 migliaia</pattern>
- <pattern type="10000" count="one">00 migliaia</pattern>
- <pattern type="10000" count="other">00 migliaia</pattern>
- <pattern type="100000" count="one">000 migliaia</pattern>
- <pattern type="100000" count="other">000 migliaia</pattern>
- <pattern type="1000000" count="one">0 milione</pattern>
- <pattern type="1000000" count="other">0 milioni</pattern>
- <pattern type="10000000" count="one">00 milioni</pattern>
- <pattern type="10000000" count="other">00 milioni</pattern>
- <pattern type="100000000" count="one">000 milioni</pattern>
- <pattern type="100000000" count="other">000 milioni</pattern>
- <pattern type="1000000000" count="one">0 miliardi</pattern>
- <pattern type="1000000000" count="other">0 miliardi</pattern>
- <pattern type="10000000000" count="one">00 miliardi</pattern>
- <pattern type="10000000000" count="other">00 miliardi</pattern>
- <pattern type="100000000000" count="one">000 miliardi</pattern>
- <pattern type="100000000000" count="other">000 miliardi</pattern>
- <pattern type="1000000000000" count="one">0 bilione</pattern>
- <pattern type="1000000000000" count="other">0 bilioni</pattern>
- <pattern type="10000000000000" count="one">00 bilioni</pattern>
- <pattern type="10000000000000" count="other">00 bilioni</pattern>
- <pattern type="100000000000000" count="one">000 bilioni</pattern>
- <pattern type="100000000000000" count="other">000 bilioni</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="one">0</pattern>
- <pattern type="1000" count="other">0</pattern>
- <pattern type="10000" count="one">0</pattern>
- <pattern type="10000" count="other">0</pattern>
- <pattern type="100000" count="one">0</pattern>
- <pattern type="100000" count="other">0</pattern>
- <pattern type="1000000" count="one">0 Mln</pattern>
- <pattern type="1000000" count="other">0 Mln</pattern>
- <pattern type="10000000" count="one">00 Mln</pattern>
- <pattern type="10000000" count="other">00 Mln</pattern>
- <pattern type="100000000" count="one">000 Mln</pattern>
- <pattern type="100000000" count="other">000 Mln</pattern>
- <pattern type="1000000000" count="one">0 Mld</pattern>
- <pattern type="1000000000" count="other">0 Mld</pattern>
- <pattern type="10000000000" count="one">00 Mld</pattern>
- <pattern type="10000000000" count="other">00 Mld</pattern>
- <pattern type="100000000000" count="one">000 Mld</pattern>
- <pattern type="100000000000" count="other">000 Mld</pattern>
- <pattern type="1000000000000" count="one">0 Bln</pattern>
- <pattern type="1000000000000" count="other">0 Bln</pattern>
- <pattern type="10000000000000" count="one">00 Bln</pattern>
- <pattern type="10000000000000" count="other">00 Bln</pattern>
- <pattern type="100000000000000" count="one">000 Bln</pattern>
- <pattern type="100000000000000" count="other">000 Bln</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 type="standard">
- <pattern>#,##0.00 ¤</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="ADP">
- <displayName>Peseta Andorrana</displayName>
- </currency>
- <currency type="AED">
- <displayName>Dirham degli Emirati Arabi Uniti</displayName>
- <displayName count="one" draft="contributed">dirham degli EAU</displayName>
- <displayName count="other" draft="contributed">dirham degli EAU</displayName>
- </currency>
- <currency type="AFA">
- <displayName>Afgani (1927–2002)</displayName>
- </currency>
- <currency type="AFN">
- <displayName>Afghani</displayName>
- <displayName count="one" draft="contributed">afghani</displayName>
- <displayName count="other" draft="contributed">afghani</displayName>
- </currency>
- <currency type="ALL">
- <displayName>Lek Albanese</displayName>
- <displayName count="one" draft="contributed">lek albanese</displayName>
- <displayName count="other" draft="contributed">lek albanese</displayName>
- </currency>
- <currency type="AMD">
- <displayName>Dram Armeno</displayName>
- <displayName count="one" draft="contributed">dram</displayName>
- <displayName count="other" draft="contributed">dram</displayName>
- </currency>
- <currency type="ANG">
- <displayName>Fiorino delle Antille Olandesi</displayName>
- <displayName count="one" draft="contributed">fiorino delle Antille Olandesi</displayName>
- <displayName count="other" draft="contributed">fiorini delle Antille Olandesi</displayName>
- </currency>
- <currency type="AOA">
- <displayName>Kwanza Angolano</displayName>
- <displayName count="one" draft="contributed">kwanza angolano</displayName>
- <displayName count="other" draft="contributed">kwanza angolani</displayName>
- </currency>
- <currency type="AOK">
- <displayName>Kwanza Angolano (1977–1990)</displayName>
- </currency>
- <currency type="AON">
- <displayName>Nuovo Kwanza Angolano (1990–2000)</displayName>
- </currency>
- <currency type="AOR">
- <displayName>Kwanza Reajustado Angolano (1995–1999)</displayName>
- </currency>
- <currency type="ARA">
- <displayName>Austral Argentino</displayName>
- </currency>
- <currency type="ARP">
- <displayName>Peso Argentino (vecchio Cod.)</displayName>
- </currency>
- <currency type="ARS">
- <displayName>Peso Argentino</displayName>
- <displayName count="one" draft="contributed">peso argentino</displayName>
- <displayName count="other" draft="contributed">pesos argentini</displayName>
- </currency>
- <currency type="ATS">
- <displayName>Scellino Austriaco</displayName>
- </currency>
- <currency type="AUD">
- <displayName>Dollaro Australiano</displayName>
- <displayName count="one" draft="contributed">dollaro australiano</displayName>
- <displayName count="other" draft="contributed">dollari australiani</displayName>
- <symbol draft="contributed">A$</symbol>
- </currency>
- <currency type="AWG">
- <displayName>Fiorino di Aruba</displayName>
- <displayName count="one" draft="contributed">fiorino di Aruba</displayName>
- <displayName count="other" draft="contributed">fiorini di Aruba</displayName>
- </currency>
- <currency type="AZM">
- <displayName>Manat Azero (1993–2006)</displayName>
- </currency>
- <currency type="AZN">
- <displayName draft="contributed">Manat Azero</displayName>
- <displayName count="one" draft="contributed">manat azero</displayName>
- <displayName count="other" draft="contributed">manat azeri</displayName>
- </currency>
- <currency type="BAD">
- <displayName>Dinar Bosnia-Herzegovina</displayName>
- </currency>
- <currency type="BAM">
- <displayName>Marco Conv. Bosnia-Erzegovina</displayName>
- <displayName count="one" draft="contributed">marco bosniaco</displayName>
- <displayName count="other" draft="contributed">marchi bosniaci</displayName>
- </currency>
- <currency type="BBD">
- <displayName>Dollaro di Barbados</displayName>
- <displayName count="one" draft="contributed">dollaro di Barbados</displayName>
- <displayName count="other" draft="contributed">dollari di Barbados</displayName>
- </currency>
- <currency type="BDT">
- <displayName>Taka Bangladese</displayName>
- <displayName count="one" draft="contributed">taka bengalese</displayName>
- <displayName count="other" draft="contributed">taka bengalesi</displayName>
- </currency>
- <currency type="BEC">
- <displayName>Franco Belga (convertibile)</displayName>
- </currency>
- <currency type="BEF">
- <displayName>Franco Belga</displayName>
- </currency>
- <currency type="BEL">
- <displayName>Franco Belga (finanziario)</displayName>
- </currency>
- <currency type="BGL">
- <displayName>Lev Bulgaro</displayName>
- </currency>
- <currency type="BGN">
- <displayName>Nuovo Lev Bulgaro</displayName>
- <displayName count="one" draft="contributed">nuovo lev bulgaro</displayName>
- <displayName count="other" draft="contributed">nuovi lev bulgari</displayName>
- </currency>
- <currency type="BHD">
- <displayName>Dinaro del Bahraini</displayName>
- <displayName count="one" draft="contributed">dinaro del Bahrain</displayName>
- <displayName count="other" draft="contributed">dinari del Bahrain</displayName>
- </currency>
- <currency type="BIF">
- <displayName>Franco del Burundi</displayName>
- <displayName count="one" draft="contributed">franco del Burundi</displayName>
- <displayName count="other" draft="contributed">franchi del Burundi</displayName>
- </currency>
- <currency type="BMD">
- <displayName>Dollaro delle Bermuda</displayName>
- <displayName count="one">dollaro delle Bermuda</displayName>
- <displayName count="other">dollari delle Bermuda</displayName>
- </currency>
- <currency type="BND">
- <displayName>Dollaro del Brunei</displayName>
- <displayName count="one" draft="contributed">dollaro del Brunei</displayName>
- <displayName count="other" draft="contributed">dollari del Brunei</displayName>
- </currency>
- <currency type="BOB">
- <displayName>Boliviano</displayName>
- <displayName count="one" draft="contributed">boliviano</displayName>
- <displayName count="other" draft="contributed">boliviani</displayName>
- </currency>
- <currency type="BOP">
- <displayName>Peso Boliviano</displayName>
- </currency>
- <currency type="BOV">
- <displayName>Mvdol Boliviano</displayName>
- </currency>
- <currency type="BRB">
- <displayName>Cruzeiro Novo Brasiliano (1967–1986)</displayName>
- </currency>
- <currency type="BRC">
- <displayName>Cruzado Brasiliano</displayName>
- </currency>
- <currency type="BRE">
- <displayName>Cruzeiro Brasiliano (1990–1993)</displayName>
- </currency>
- <currency type="BRL">
- <displayName>Real Brasiliano</displayName>
- <displayName count="one" draft="contributed">real brasiliano</displayName>
- <displayName count="other" draft="contributed">real brasiliani</displayName>
- <symbol draft="contributed">R$</symbol>
- </currency>
- <currency type="BRN">
- <displayName>Cruzado Novo Brasiliano</displayName>
- </currency>
- <currency type="BRR">
- <displayName>Cruzeiro Brasiliano</displayName>
- </currency>
- <currency type="BSD">
- <displayName>Dollaro delle Bahamas</displayName>
- <displayName count="one" draft="contributed">dollaro delle Bahamas</displayName>
- <displayName count="other" draft="contributed">dollari delle Bahamas</displayName>
- </currency>
- <currency type="BTN">
- <displayName>Ngultrum Butanese</displayName>
- <displayName count="one" draft="contributed">ngultrum del Bhutan</displayName>
- <displayName count="other" draft="contributed">ngultrum del Bhutan</displayName>
- </currency>
- <currency type="BUK">
- <displayName>Kyat Birmano</displayName>
- </currency>
- <currency type="BWP">
- <displayName>Pula del Botswana</displayName>
- <displayName count="one" draft="contributed">pula del Botswana</displayName>
- <displayName count="other" draft="contributed">pula del Botswana</displayName>
- </currency>
- <currency type="BYB">
- <displayName>Nuovo Rublo Bielorussia (1994–1999)</displayName>
- </currency>
- <currency type="BYR">
- <displayName>Rublo Bielorussia</displayName>
- <displayName count="one" draft="contributed">rublo bielorusso</displayName>
- <displayName count="other" draft="contributed">rubli bielorussi</displayName>
- </currency>
- <currency type="BZD">
- <displayName>Dollaro del Belize</displayName>
- <displayName count="one">dollaro del Belize</displayName>
- <displayName count="other">dollari del Belize</displayName>
- </currency>
- <currency type="CAD">
- <displayName>Dollaro Canadese</displayName>
- <displayName count="one">dollaro canadese</displayName>
- <displayName count="other">dollari canadesi</displayName>
- <symbol>CA$</symbol>
- </currency>
- <currency type="CDF">
- <displayName>Franco Congolese</displayName>
- <displayName count="one" draft="contributed">franco congolese</displayName>
- <displayName count="other" draft="contributed">franchi congolesi</displayName>
- </currency>
- <currency type="CHF">
- <displayName>Franco Svizzero</displayName>
- <displayName count="one" draft="contributed">franco svizzero</displayName>
- <displayName count="other" draft="contributed">franchi svizzeri</displayName>
- </currency>
- <currency type="CLF">
- <displayName>Unidades de Fomento Chilene</displayName>
- </currency>
- <currency type="CLP">
- <displayName>Peso Cileno</displayName>
- <displayName count="one" draft="contributed">peso cileno</displayName>
- <displayName count="other" draft="contributed">pesos cileni</displayName>
- </currency>
- <currency type="CNY">
- <displayName>Renmimbi Cinese</displayName>
- <displayName count="one" draft="contributed">renmimbi cinese</displayName>
- <displayName count="other" draft="contributed">renmimbi cinesi</displayName>
- <symbol draft="contributed">CN¥</symbol>
- </currency>
- <currency type="COP">
- <displayName>Peso Colombiano</displayName>
- <displayName count="one" draft="contributed">peso colombiano</displayName>
- <displayName count="other" draft="contributed">pesos colombiani</displayName>
- </currency>
- <currency type="CRC">
- <displayName>Colón Costaricano</displayName>
- <displayName count="one">colón costaricano</displayName>
- <displayName count="other">colón costaricani</displayName>
- </currency>
- <currency type="CSD">
- <displayName draft="contributed">Antico Dinaro Serbo</displayName>
- </currency>
- <currency type="CSK">
- <displayName>Corona forte cecoslovacca</displayName>
- </currency>
- <currency type="CUC">
- <displayName draft="contributed">Peso Cubano Convertibile</displayName>
- <displayName count="one" draft="contributed">peso cubano convertibile</displayName>
- <displayName count="other" draft="contributed">pesos cubani convertibili</displayName>
- </currency>
- <currency type="CUP">
- <displayName>Peso Cubano</displayName>
- <displayName count="one" draft="contributed">peso cubano</displayName>
- <displayName count="other" draft="contributed">pesos cubani</displayName>
- </currency>
- <currency type="CVE">
- <displayName>Escudo del Capo Verde</displayName>
- <displayName count="one">escudo del Capo Verde</displayName>
- <displayName count="other">escudo del Capo Verde</displayName>
- </currency>
- <currency type="CYP">
- <displayName>Sterlina Cipriota</displayName>
- </currency>
- <currency type="CZK">
- <displayName>Corona Ceca</displayName>
- <displayName count="one" draft="contributed">corona ceca</displayName>
- <displayName count="other" draft="contributed">corone ceche</displayName>
- </currency>
- <currency type="DDM">
- <displayName>Ostmark della Germania Orientale</displayName>
- </currency>
- <currency type="DEM">
- <displayName>Marco Tedesco</displayName>
- </currency>
- <currency type="DJF">
- <displayName>Franco Gibutiano</displayName>
- <displayName count="one">Franco Gibutiano</displayName>
- <displayName count="other">Franco Gibutiano</displayName>
- </currency>
- <currency type="DKK">
- <displayName>Corona Danese</displayName>
- <displayName count="one" draft="contributed">corona danese</displayName>
- <displayName count="other" draft="contributed">corone danesi</displayName>
- </currency>
- <currency type="DOP">
- <displayName>Peso Dominicano</displayName>
- <displayName count="one" draft="contributed">peso dominicano</displayName>
- <displayName count="other" draft="contributed">pesos dominicani</displayName>
- </currency>
- <currency type="DZD">
- <displayName>Dinaro Algerino</displayName>
- <displayName count="one" draft="contributed">dinaro algerino</displayName>
- <displayName count="other" draft="contributed">dinari algerini</displayName>
- </currency>
- <currency type="ECS">
- <displayName>Sucre dell’Ecuador</displayName>
- </currency>
- <currency type="ECV">
- <displayName>Unidad de Valor Constante (UVC) dell’Ecuador</displayName>
- </currency>
- <currency type="EEK">
- <displayName>Corona dell’Estonia</displayName>
- </currency>
- <currency type="EGP">
- <displayName>Sterlina Egiziana</displayName>
- <displayName count="one" draft="contributed">sterlina egiziana</displayName>
- <displayName count="other" draft="contributed">sterline egiziane</displayName>
- </currency>
- <currency type="ERN">
- <displayName>Nakfa Eritreo</displayName>
- <displayName count="one" draft="contributed">nakfa eritreo</displayName>
- <displayName count="other" draft="contributed">nakfa eritrei</displayName>
- </currency>
- <currency type="ESA">
- <displayName draft="contributed">Peseta Spagnola Account</displayName>
- </currency>
- <currency type="ESB">
- <displayName draft="contributed">Peseta Spagnola Account Convertibile</displayName>
- </currency>
- <currency type="ESP">
- <displayName>Peseta Spagnola</displayName>
- </currency>
- <currency type="ETB">
- <displayName>Birr Etiopico</displayName>
- <displayName count="one" draft="contributed">birr etiopico</displayName>
- <displayName count="other" draft="contributed">birr etiopici</displayName>
- </currency>
- <currency type="EUR">
- <displayName>Euro</displayName>
- <displayName count="one" draft="contributed">euro</displayName>
- <displayName count="other" draft="contributed">euro</displayName>
- </currency>
- <currency type="FIM">
- <displayName>Markka Finlandese</displayName>
- </currency>
- <currency type="FJD">
- <displayName>Dollaro delle Figi</displayName>
- <displayName count="one" draft="contributed">dollaro delle Figi</displayName>
- <displayName count="other" draft="contributed">dollari delle Figi</displayName>
- </currency>
- <currency type="FKP">
- <displayName>Sterlina delle Falkland</displayName>
- <displayName count="one" draft="contributed">sterlina delle Falkland</displayName>
- <displayName count="other" draft="contributed">sterline delle Falkland</displayName>
- </currency>
- <currency type="FRF">
- <displayName>Franco Francese</displayName>
- </currency>
- <currency type="GBP">
- <displayName>Sterlina Inglese</displayName>
- <displayName count="one" draft="contributed">sterlina inglese</displayName>
- <displayName count="other" draft="contributed">sterline inglesi</displayName>
- <symbol draft="contributed">£</symbol>
- </currency>
- <currency type="GEK">
- <displayName>Kupon Larit Georgiano</displayName>
- </currency>
- <currency type="GEL">
- <displayName>Lari Georgiano</displayName>
- <displayName count="one" draft="contributed">lari georgiano</displayName>
- <displayName count="other" draft="contributed">lari georgiani</displayName>
- </currency>
- <currency type="GHC">
- <displayName>Cedi del Ghana</displayName>
- </currency>
- <currency type="GHS">
- <displayName>Cedi ghanese</displayName>
- <displayName count="one" draft="contributed">cedi ghanese</displayName>
- <displayName count="other" draft="contributed">cedi ghanesi</displayName>
- </currency>
- <currency type="GIP">
- <displayName>Sterlina di Gibilterra</displayName>
- <displayName count="one" draft="contributed">sterlina di Gibilterra</displayName>
- <displayName count="other" draft="contributed">sterline di Gibilterra</displayName>
- </currency>
- <currency type="GMD">
- <displayName>Dalasi del Gambia</displayName>
- <displayName count="one" draft="contributed">dalasi del Gambia</displayName>
- <displayName count="other" draft="contributed">dalasi del Gambia</displayName>
- </currency>
- <currency type="GNF">
- <displayName>Franco della Guinea</displayName>
- <displayName count="one" draft="contributed">franco della Guinea</displayName>
- <displayName count="other" draft="contributed">franchi della Guinea</displayName>
- </currency>
- <currency type="GNS">
- <displayName>Syli della Guinea</displayName>
- </currency>
- <currency type="GQE">
- <displayName>Ekwele della Guinea Equatoriale</displayName>
- </currency>
- <currency type="GRD">
- <displayName>Dracma Greca</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>Quetzal Guatemalteco</displayName>
- <displayName count="one" draft="contributed">quetzal guatemalteco</displayName>
- <displayName count="other" draft="contributed">quetzal guatemaltechi</displayName>
- </currency>
- <currency type="GWE">
- <displayName>Escudo della Guinea portoghese</displayName>
- </currency>
- <currency type="GWP">
- <displayName>Peso della Guinea-Bissau</displayName>
- </currency>
- <currency type="GYD">
- <displayName>Dollaro della Guyana</displayName>
- <displayName count="one" draft="contributed">dollaro della Guyana</displayName>
- <displayName count="other" draft="contributed">dollari della Guyana</displayName>
- </currency>
- <currency type="HKD">
- <displayName>Dollaro di Hong Kong</displayName>
- <displayName count="one" draft="contributed">dollaro di Hong Kong</displayName>
- <displayName count="other" draft="contributed">dollari di Hong Kong</displayName>
- <symbol draft="contributed">HK$</symbol>
- </currency>
- <currency type="HNL">
- <displayName>Lempira Honduregna</displayName>
- <displayName count="one" draft="contributed">lempira honduregna</displayName>
- <displayName count="other" draft="contributed">lempire honduregne</displayName>
- </currency>
- <currency type="HRD">
- <displayName>Dinaro Croato</displayName>
- </currency>
- <currency type="HRK">
- <displayName>Kuna Croata</displayName>
- <displayName count="one" draft="contributed">kuna croata</displayName>
- <displayName count="other" draft="contributed">kuna croate</displayName>
- </currency>
- <currency type="HTG">
- <displayName>Gourde Haitiano</displayName>
- <displayName count="one" draft="contributed">gourde haitiano</displayName>
- <displayName count="other" draft="contributed">gourde haitiani</displayName>
- </currency>
- <currency type="HUF">
- <displayName>Fiorino Ungherese</displayName>
- <displayName count="one" draft="contributed">fiorino ungherese</displayName>
- <displayName count="other" draft="contributed">fiorini ungheresi</displayName>
- </currency>
- <currency type="IDR">
- <displayName>Rupia Indonesiana</displayName>
- <displayName count="one" draft="contributed">rupia indonesiana</displayName>
- <displayName count="other" draft="contributed">rupie indonesiane</displayName>
- </currency>
- <currency type="IEP">
- <displayName>Sterlina irlandese</displayName>
- </currency>
- <currency type="ILP">
- <displayName>Sterlina Israeliana</displayName>
- </currency>
- <currency type="ILS">
- <displayName>Nuovo Shequel Israeliano</displayName>
- <displayName count="one" draft="contributed">nuovo shekel israeliano</displayName>
- <displayName count="other" draft="contributed">Nuovi shekel israeliani</displayName>
- <symbol draft="contributed">₪</symbol>
- </currency>
- <currency type="INR">
- <displayName>Rupia Indiana</displayName>
- <displayName count="one" draft="contributed">rupia indiana</displayName>
- <displayName count="other" draft="contributed">rupie indiane</displayName>
- <symbol draft="contributed">₹</symbol>
- </currency>
- <currency type="IQD">
- <displayName>Dinaro Iracheno</displayName>
- <displayName count="one" draft="contributed">dinaro iracheno</displayName>
- <displayName count="other" draft="contributed">dinari iracheni</displayName>
- </currency>
- <currency type="IRR">
- <displayName>Rial Iraniano</displayName>
- <displayName count="one" draft="contributed">rial iraniano</displayName>
- <displayName count="other" draft="contributed">rial iraniani</displayName>
- </currency>
- <currency type="ISK">
- <displayName>Corona Islandese</displayName>
- <displayName count="one" draft="contributed">corona islandese</displayName>
- <displayName count="other" draft="contributed">corone islandesi</displayName>
- </currency>
- <currency type="ITL">
- <pattern>¤ #,##0.00</pattern>
- <displayName>Lira Italiana</displayName>
- <decimal>,</decimal>
- <group>.</group>
- </currency>
- <currency type="JMD">
- <displayName>Dollaro Giamaicano</displayName>
- <displayName count="one" draft="contributed">dollaro giamaicano</displayName>
- <displayName count="other" draft="contributed">dollari giamaicani</displayName>
- </currency>
- <currency type="JOD">
- <displayName>Dinaro Giordano</displayName>
- <displayName count="one" draft="contributed">dinaro giordano</displayName>
- <displayName count="other" draft="contributed">dinari giordani</displayName>
- </currency>
- <currency type="JPY">
- <displayName>Yen Giapponese</displayName>
- <displayName count="one" draft="contributed">yen giapponese</displayName>
- <displayName count="other" draft="contributed">yen giapponesi</displayName>
- <symbol draft="contributed">JP¥</symbol>
- </currency>
- <currency type="KES">
- <displayName>Scellino Keniota</displayName>
- <displayName count="one" draft="contributed">scellino keniota</displayName>
- <displayName count="other" draft="contributed">scellini keniota</displayName>
- </currency>
- <currency type="KGS">
- <displayName>Som Kirghiso</displayName>
- <displayName count="one" draft="contributed">som Kirghiso</displayName>
- <displayName count="other" draft="contributed">som Kirghisi</displayName>
- </currency>
- <currency type="KHR">
- <displayName>Riel Cambogiano</displayName>
- <displayName count="one" draft="contributed">riel cambogiano</displayName>
- <displayName count="other" draft="contributed">riel cambogiani</displayName>
- </currency>
- <currency type="KMF">
- <displayName>Franco Comoriano</displayName>
- <displayName count="one" draft="contributed">franco Comoriano</displayName>
- <displayName count="other" draft="contributed">franchi Comoriani</displayName>
- </currency>
- <currency type="KPW">
- <displayName>Won Nordcoreano</displayName>
- <displayName count="one" draft="contributed">won nordcoreano</displayName>
- <displayName count="other" draft="contributed">word nordcoreani</displayName>
- </currency>
- <currency type="KRW">
- <displayName>Won Sudcoreano</displayName>
- <displayName count="one" draft="contributed">won sudcoreano</displayName>
- <displayName count="other" draft="contributed">won sudcoreani</displayName>
- <symbol draft="contributed">₩</symbol>
- </currency>
- <currency type="KWD">
- <displayName>Dinaro Kuwaitiano</displayName>
- <displayName count="one" draft="contributed">dinaro kuwaitiano</displayName>
- <displayName count="other" draft="contributed">dinari kuwaitiani</displayName>
- </currency>
- <currency type="KYD">
- <displayName>Dollaro delle Isole Cayman</displayName>
- <displayName count="one" draft="contributed">dollaro delle Isole Cayman</displayName>
- <displayName count="other" draft="contributed">dollari delle Isole Cayman</displayName>
- </currency>
- <currency type="KZT">
- <displayName>Tenge Kazaco</displayName>
- <displayName count="one" draft="contributed">tenge kazaco</displayName>
- <displayName count="other" draft="contributed">tenge kazaco</displayName>
- </currency>
- <currency type="LAK">
- <displayName>Kip Laotiano</displayName>
- <displayName count="one" draft="contributed">kip laotiano</displayName>
- <displayName count="other" draft="contributed">kip laotiani</displayName>
- </currency>
- <currency type="LBP">
- <displayName>Sterlina Libanese</displayName>
- <displayName count="one" draft="contributed">sterlina libanese</displayName>
- <displayName count="other" draft="contributed">sterline libanesi</displayName>
- </currency>
- <currency type="LKR">
- <displayName>Rupia di Sri Lanka</displayName>
- <displayName count="one" draft="contributed">rupia dello Sri Lanka</displayName>
- <displayName count="other" draft="contributed">rupie dello Sri Lanka</displayName>
- </currency>
- <currency type="LRD">
- <displayName>Dollaro Liberiano</displayName>
- <displayName count="one" draft="contributed">dollaro liberiano</displayName>
- <displayName count="other" draft="contributed">dollari liberiani</displayName>
- </currency>
- <currency type="LSL">
- <displayName>Loti del Lesotho</displayName>
- </currency>
- <currency type="LTL">
- <displayName>Litas Lituano</displayName>
- <displayName count="one" draft="contributed">litas lituano</displayName>
- <displayName count="other" draft="contributed">litas lituani</displayName>
- </currency>
- <currency type="LTT">
- <displayName>Talonas Lituani</displayName>
- </currency>
- <currency type="LUC">
- <displayName draft="contributed">Franco Convertibile del Lussemburgo</displayName>
- </currency>
- <currency type="LUF">
- <displayName>Franco del Lussemburgo</displayName>
- </currency>
- <currency type="LUL">
- <displayName draft="contributed">Franco Finanziario del Lussemburgo</displayName>
- </currency>
- <currency type="LVL">
- <displayName>Lats Lettone</displayName>
- <displayName count="one" draft="contributed">lats lettone</displayName>
- <displayName count="other" draft="contributed">lati lettoni</displayName>
- </currency>
- <currency type="LVR">
- <displayName>Rublo Lettone</displayName>
- </currency>
- <currency type="LYD">
- <displayName>Dinaro Libico</displayName>
- <displayName count="one" draft="contributed">dinaro libico</displayName>
- <displayName count="other" draft="contributed">dinari libici</displayName>
- </currency>
- <currency type="MAD">
- <displayName>Dirham Marocchino</displayName>
- <displayName count="one" draft="contributed">dirham marocchino</displayName>
- <displayName count="other" draft="contributed">Dirham marocchini</displayName>
- </currency>
- <currency type="MAF">
- <displayName>Franco Marocchino</displayName>
- </currency>
- <currency type="MDL">
- <displayName>Leu Moldavo</displayName>
- <displayName count="one" draft="contributed">leu moldavo</displayName>
- <displayName count="other" draft="contributed">leu moldavi</displayName>
- </currency>
- <currency type="MGA">
- <displayName>Ariary Malgascio</displayName>
- <displayName count="one" draft="contributed">ariary malgascio</displayName>
- <displayName count="other" draft="contributed">ariary malgasci</displayName>
- </currency>
- <currency type="MGF">
- <displayName>Franco Malgascio</displayName>
- </currency>
- <currency type="MKD">
- <displayName>Dinaro Macedone</displayName>
- <displayName count="one" draft="contributed">denaro macedone</displayName>
- <displayName count="other" draft="contributed">denari macedoni</displayName>
- </currency>
- <currency type="MLF">
- <displayName>Franco di Mali</displayName>
- </currency>
- <currency type="MMK">
- <displayName>Kyat di Myanmar</displayName>
- <displayName count="one" draft="contributed">kyat di Myanmar</displayName>
- <displayName count="other" draft="contributed">kyat di Myanmar</displayName>
- </currency>
- <currency type="MNT">
- <displayName>Tugrik Mongolo</displayName>
- <displayName count="one" draft="contributed">tugrik mongolo</displayName>
- <displayName count="other" draft="contributed">tugrik mongoli</displayName>
- </currency>
- <currency type="MOP">
- <displayName>Pataca di Macao</displayName>
- <displayName count="one" draft="contributed">pataca di Macao</displayName>
- <displayName count="other" draft="contributed">patacas di Macao</displayName>
- </currency>
- <currency type="MRO">
- <displayName>Ouguiya della Mauritania</displayName>
- <displayName count="one" draft="contributed">ouguiya della Mauritania</displayName>
- <displayName count="other" draft="contributed">ouguiya della Mauritania</displayName>
- </currency>
- <currency type="MTL">
- <displayName>Lira Maltese</displayName>
- </currency>
- <currency type="MTP">
- <displayName>Sterlina Maltese</displayName>
- </currency>
- <currency type="MUR">
- <displayName>Rupia Mauriziana</displayName>
- <displayName count="one" draft="contributed">rupia mauriziana</displayName>
- <displayName count="other" draft="contributed">rupie mauriziane</displayName>
- </currency>
- <currency type="MVR">
- <displayName>Rufiyaa delle Maldive</displayName>
- <displayName count="one">rufiyaa delle Maldive</displayName>
- <displayName count="other">rufiyaa delle Maldive</displayName>
- </currency>
- <currency type="MWK">
- <displayName>Kwacha Malawiano</displayName>
- <displayName count="one" draft="contributed">kwacha malawiano</displayName>
- <displayName count="other" draft="contributed">kwacha malawiani</displayName>
- </currency>
- <currency type="MXN">
- <displayName>Peso Messicano</displayName>
- <displayName count="one" draft="contributed">peso messicano</displayName>
- <displayName count="other" draft="contributed">pesos messicani</displayName>
- <symbol draft="contributed">MX$</symbol>
- </currency>
- <currency type="MXP">
- <displayName>Peso messicano d’argento (1861–1992)</displayName>
- </currency>
- <currency type="MXV">
- <displayName>Unidad de Inversion (UDI) Messicana</displayName>
- </currency>
- <currency type="MYR">
- <displayName>Ringgit della Malesia</displayName>
- <displayName count="one" draft="contributed">ringgit malese</displayName>
- <displayName count="other" draft="contributed">ringgit malesi</displayName>
- </currency>
- <currency type="MZE">
- <displayName>Escudo del Mozambico</displayName>
- </currency>
- <currency type="MZN">
- <displayName>Metical mozambicano</displayName>
- <displayName count="one">metical mozambicano</displayName>
- <displayName count="other">metical mozambicani</displayName>
- </currency>
- <currency type="NAD">
- <displayName>Dollaro Namibiano</displayName>
- <displayName count="one" draft="contributed">dollaro namibiano</displayName>
- <displayName count="other" draft="contributed">dollari namibiani</displayName>
- </currency>
- <currency type="NGN">
- <displayName>Naira Nigeriana</displayName>
- <displayName count="one" draft="contributed">naira nigeriana</displayName>
- <displayName count="other" draft="contributed">naire nigeriane</displayName>
- </currency>
- <currency type="NIC">
- <displayName>Cordoba Nicaraguense</displayName>
- <displayName count="one">Cordoba Nicaraguense</displayName>
- <displayName count="other">Cordoba Nicaraguense</displayName>
- </currency>
- <currency type="NIO">
- <displayName>Córdoba Nicaraguense</displayName>
- <displayName count="one" draft="contributed">córdoba nicaraguense</displayName>
- <displayName count="other" draft="contributed">córdoba nicaraguensi</displayName>
- </currency>
- <currency type="NLG">
- <displayName>Fiorino Olandese</displayName>
- </currency>
- <currency type="NOK">
- <displayName>Corona Norvegese</displayName>
- <displayName count="one" draft="contributed">corona norvegese</displayName>
- <displayName count="other" draft="contributed">corone norvegesi</displayName>
- </currency>
- <currency type="NPR">
- <displayName>Rupia Nepalese</displayName>
- <displayName count="one" draft="contributed">rupia nepalese</displayName>
- <displayName count="other" draft="contributed">rupie nepalesi</displayName>
- </currency>
- <currency type="NZD">
- <displayName>Dollaro Neozelandese</displayName>
- <displayName count="one" draft="contributed">dollaro neozelandese</displayName>
- <displayName count="other" draft="contributed">dollari neozelandesi</displayName>
- <symbol draft="contributed">NZ$</symbol>
- </currency>
- <currency type="OMR">
- <displayName>Rial dell'Oman</displayName>
- <displayName count="one" draft="contributed">rial dell'Oman</displayName>
- <displayName count="other" draft="contributed">rial dell'Oman</displayName>
- </currency>
- <currency type="PAB">
- <displayName>Balboa di Panama</displayName>
- <displayName count="one" draft="contributed">balboa panamense</displayName>
- <displayName count="other" draft="contributed">balboa panamensi</displayName>
- </currency>
- <currency type="PEI">
- <displayName>Inti Peruviano</displayName>
- </currency>
- <currency type="PEN">
- <displayName>Sol Nuevo Peruviano</displayName>
- <displayName count="one" draft="contributed">nuevo sol peruviano</displayName>
- <displayName count="other" draft="contributed">nuevos soles peruviani</displayName>
- </currency>
- <currency type="PES">
- <displayName>Sol Peruviano</displayName>
- </currency>
- <currency type="PGK">
- <displayName>Kina della Papua Nuova Guinea</displayName>
- <displayName count="one" draft="contributed">kina papuana</displayName>
- <displayName count="other" draft="contributed">kina papuane</displayName>
- </currency>
- <currency type="PHP">
- <displayName>Peso delle Filippine</displayName>
- <displayName count="one" draft="contributed">peso filippino</displayName>
- <displayName count="other" draft="contributed">pesos filippini</displayName>
- </currency>
- <currency type="PKR">
- <displayName>Rupia del Pakistan</displayName>
- <displayName count="one" draft="contributed">rupia pakistana</displayName>
- <displayName count="other" draft="contributed">rupie pakistane</displayName>
- </currency>
- <currency type="PLN">
- <displayName>Zloty Polacco</displayName>
- <displayName count="one" draft="contributed">zloty polacco</displayName>
- <displayName count="other" draft="contributed">zloty polacchi</displayName>
- </currency>
- <currency type="PLZ">
- <displayName>Zloty Polacco (1950–1995)</displayName>
- </currency>
- <currency type="PTE">
- <displayName>Escudo Portoghese</displayName>
- </currency>
- <currency type="PYG">
- <displayName>Guaraní del Paraguay</displayName>
- <displayName count="one" draft="contributed">guaraní paraguaiano</displayName>
- <displayName count="other" draft="contributed">guaraní paraguaiani</displayName>
- </currency>
- <currency type="QAR">
- <displayName>Rial del Qatar</displayName>
- <displayName count="one" draft="contributed">rial del Qatar</displayName>
- <displayName count="other" draft="contributed">rial del Qatar</displayName>
- </currency>
- <currency type="RHD">
- <displayName draft="contributed">Dollaro della Rhodesia</displayName>
- </currency>
- <currency type="ROL">
- <displayName>Leu della Romania</displayName>
- </currency>
- <currency type="RON">
- <displayName draft="contributed">Leu Rumeno</displayName>
- <displayName count="one" draft="contributed">leu rumeno</displayName>
- <displayName count="other" draft="contributed">lei rumeni</displayName>
- </currency>
- <currency type="RSD">
- <displayName>Dinaro Serbo</displayName>
- <displayName count="one" draft="contributed">dinaro serbo</displayName>
- <displayName count="other" draft="contributed">dinara serbi</displayName>
- </currency>
- <currency type="RUB">
- <displayName>Rublo Russo</displayName>
- <displayName count="one" draft="contributed">rublo russo</displayName>
- <displayName count="other" draft="contributed">rubli russi</displayName>
- </currency>
- <currency type="RUR">
- <displayName>Rublo della CSI</displayName>
- </currency>
- <currency type="RWF">
- <displayName>Franco Ruandese</displayName>
- <displayName count="one" draft="contributed">franco ruandese</displayName>
- <displayName count="other" draft="contributed">franchi ruandesi</displayName>
- </currency>
- <currency type="SAR">
- <displayName>Ryal Saudita</displayName>
- <displayName count="one">riyal saudita</displayName>
- <displayName count="other">riyal sauditi</displayName>
- </currency>
- <currency type="SBD">
- <displayName>Dollaro delle Isole Solomon</displayName>
- <displayName count="one" draft="contributed">dollaro delle Isole Solomon</displayName>
- <displayName count="other" draft="contributed">dollari delle Isole Solomon</displayName>
- </currency>
- <currency type="SCR">
- <displayName>Rupia delle Seychelles</displayName>
- <displayName count="one" draft="contributed">rupia delle Seychelles</displayName>
- <displayName count="other" draft="contributed">rupie delle Seychelles</displayName>
- </currency>
- <currency type="SDD">
- <displayName>Dinaro Sudanese</displayName>
- </currency>
- <currency type="SDG">
- <displayName>Sterlina Sudanese</displayName>
- <displayName count="one" draft="contributed">sterlina sudanese</displayName>
- <displayName count="other" draft="contributed">sterline sudanesi</displayName>
- </currency>
- <currency type="SEK">
- <displayName>Corona Svedese</displayName>
- <displayName count="one" draft="contributed">corona svedese</displayName>
- <displayName count="other" draft="contributed">corone svedesi</displayName>
- </currency>
- <currency type="SGD">
- <displayName>Dollaro di Singapore</displayName>
- <displayName count="one" draft="contributed">dollaro di Singapore</displayName>
- <displayName count="other" draft="contributed">dollari di Singapore</displayName>
- </currency>
- <currency type="SHP">
- <displayName>Sterlina di Sant’Elena</displayName>
- <displayName count="one" draft="contributed">sterlina di Sant’Elena</displayName>
- <displayName count="other" draft="contributed">sterline di Sant’Elena</displayName>
- </currency>
- <currency type="SIT">
- <displayName>Tallero Sloveno</displayName>
- </currency>
- <currency type="SKK">
- <displayName>Corona Slovacca</displayName>
- </currency>
- <currency type="SLL">
- <displayName>Leone della Sierra Leone</displayName>
- <displayName count="one" draft="contributed">leone della Sierra Leone</displayName>
- <displayName count="other" draft="contributed">leoni della Sierra Leone</displayName>
- </currency>
- <currency type="SOS">
- <displayName>Scellino Somalo</displayName>
- <displayName count="one" draft="contributed">scellino somalo</displayName>
- <displayName count="other" draft="contributed">scellini somali</displayName>
- </currency>
- <currency type="SRD">
- <displayName>Dollaro Surinamese</displayName>
- <displayName count="one" draft="contributed">dollaro surinamese</displayName>
- <displayName count="other" draft="contributed">dollari surinamesi</displayName>
- </currency>
- <currency type="SRG">
- <displayName>Fiorino del Suriname</displayName>
- </currency>
- <currency type="SSP">
- <displayName draft="contributed">Sterlina sudsudanese</displayName>
- <displayName count="one">sterlina sudsudanese</displayName>
- <displayName count="other">sterline sudsudanesi</displayName>
- </currency>
- <currency type="STD">
- <displayName>Dobra di Sao Tomé e Principe</displayName>
- <displayName count="one" draft="contributed">dobra di Sao Tomé e Principe</displayName>
- <displayName count="other" draft="contributed">dobra di Sao Tomé e Principe</displayName>
- </currency>
- <currency type="SUR">
- <displayName>Rublo Sovietico</displayName>
- </currency>
- <currency type="SVC">
- <displayName>Colón Salvadoregno</displayName>
- </currency>
- <currency type="SYP">
- <displayName>Sterlina Siriana</displayName>
- <displayName count="one" draft="contributed">sterlina siriana</displayName>
- <displayName count="other" draft="contributed">sterline siriane</displayName>
- </currency>
- <currency type="SZL">
- <displayName>Lilangeni dello Swaziland</displayName>
- <displayName count="one" draft="contributed">lilangeni dello Swaziland</displayName>
- <displayName count="other" draft="contributed">lilangeni dello Swaziland</displayName>
- </currency>
- <currency type="THB">
- <displayName>Baht Tailandese</displayName>
- <displayName count="one" draft="contributed">baht tailandese</displayName>
- <displayName count="other" draft="contributed">baht tailandesi</displayName>
- <symbol draft="contributed">฿</symbol>
- </currency>
- <currency type="TJR">
- <displayName>Rublo del Tajikistan</displayName>
- </currency>
- <currency type="TJS">
- <displayName>Somoni del Tajikistan</displayName>
- <displayName count="one" draft="contributed">somoni del Tajikistan</displayName>
- <displayName count="other" draft="contributed">somoni del Tajikistan</displayName>
- </currency>
- <currency type="TMM">
- <displayName>Manat Turkmeno (1993–2009)</displayName>
- </currency>
- <currency type="TMT">
- <displayName>Manat Turkmeno</displayName>
- <displayName count="one" draft="contributed">manat turkmeno</displayName>
- <displayName count="other" draft="contributed">manat turkmeni</displayName>
- </currency>
- <currency type="TND">
- <displayName>Dinaro Tunisino</displayName>
- <displayName count="one" draft="contributed">dinaro tunisino</displayName>
- <displayName count="other" draft="contributed">dinari tunisini</displayName>
- </currency>
- <currency type="TOP">
- <displayName>Paʻanga di Tonga</displayName>
- <displayName count="one" draft="contributed">paʻanga di Tonga</displayName>
- <displayName count="other" draft="contributed">paʻanga di Tonga</displayName>
- </currency>
- <currency type="TPE">
- <displayName>Escudo di Timor</displayName>
- </currency>
- <currency type="TRL">
- <displayName>Lira Turca</displayName>
- <displayName count="one" draft="contributed">lira turca</displayName>
- <displayName count="other" draft="contributed">lire turche</displayName>
- </currency>
- <currency type="TRY">
- <displayName draft="contributed">Nuova Lira Turca</displayName>
- <displayName count="one" draft="contributed">nuova lira turca</displayName>
- <displayName count="other" draft="contributed">nuove lire turche</displayName>
- </currency>
- <currency type="TTD">
- <displayName>Dollaro di Trinidad e Tobago</displayName>
- <displayName count="one" draft="contributed">dollaro di Trinidad e Tobago</displayName>
- <displayName count="other" draft="contributed">dollari di Trinidad e Tobago</displayName>
- </currency>
- <currency type="TWD">
- <displayName>Nuovo dollaro taiwanese</displayName>
- <displayName count="one" draft="contributed">nuovo dollaro taiwanese</displayName>
- <displayName count="other" draft="contributed">nuovi dollari taiwanesi</displayName>
- <symbol draft="contributed">NT$</symbol>
- </currency>
- <currency type="TZS">
- <displayName>Scellino della Tanzania</displayName>
- <displayName count="one" draft="contributed">scellino della Tanzania</displayName>
- <displayName count="other" draft="contributed">scellini della Tanzania</displayName>
- </currency>
- <currency type="UAH">
- <displayName>Grivnia Ucraina</displayName>
- <displayName count="one" draft="contributed">grivnia ucraina</displayName>
- <displayName count="other" draft="contributed">grivnie ucraine</displayName>
- </currency>
- <currency type="UAK">
- <displayName>Karbovanetz Ucraino</displayName>
- </currency>
- <currency type="UGS">
- <displayName>Scellino Ugandese (1966–1987)</displayName>
- </currency>
- <currency type="UGX">
- <displayName>Scellino Ugandese</displayName>
- <displayName count="one" draft="contributed">scellino ugandese</displayName>
- <displayName count="other" draft="contributed">scellini ugandesi</displayName>
- </currency>
- <currency type="USD">
- <displayName>Dollaro Statunitense</displayName>
- <displayName count="one">dollaro statunitense</displayName>
- <displayName count="other">dollari statunitensi</displayName>
- <symbol>US$</symbol>
- </currency>
- <currency type="USN">
- <displayName>Dollaro Statunitense (Next day)</displayName>
- </currency>
- <currency type="USS">
- <displayName>Dollaro Statunitense (Same day)</displayName>
- </currency>
- <currency type="UYI">
- <displayName>Peso uruguaiano in unità indicizzate</displayName>
- </currency>
- <currency type="UYP">
- <displayName>Peso Uruguaiano (1975–1993)</displayName>
- </currency>
- <currency type="UYU">
- <displayName>Peso Uruguaiano</displayName>
- <displayName count="one" draft="contributed">peso uruguaiano</displayName>
- <displayName count="other" draft="contributed">pesos uruguaiani</displayName>
- </currency>
- <currency type="UZS">
- <displayName>Sum dell’Uzbekistan</displayName>
- <displayName count="one" draft="contributed">sum dell’Uzbekistan</displayName>
- <displayName count="other" draft="contributed">sum dell’Uzbekistan</displayName>
- </currency>
- <currency type="VEB">
- <displayName>Bolivar Venezuelano (1871–2008)</displayName>
- <displayName count="one">bolivar Venezuelano (1871–2008)</displayName>
- <displayName count="other">bolivares venezuelani (1871–2008)</displayName>
- </currency>
- <currency type="VEF">
- <displayName>Bolívar Venezuelano</displayName>
- <displayName count="one" draft="contributed">bolívar venezuelano</displayName>
- <displayName count="other" draft="contributed">bolívares venezuelani</displayName>
- </currency>
- <currency type="VND">
- <displayName>Dong Vietnamita</displayName>
- <displayName count="one" draft="contributed">dong vietnamita</displayName>
- <displayName count="other" draft="contributed">dong vietnamiti</displayName>
- <symbol draft="contributed">₫</symbol>
- </currency>
- <currency type="VUV">
- <displayName>Vatu di Vanuatu</displayName>
- <displayName count="one" draft="contributed">vatu di Vanuatu</displayName>
- <displayName count="other" draft="contributed">vatu di Vanuatu</displayName>
- </currency>
- <currency type="WST">
- <displayName>Tala della Samoa Occidentale</displayName>
- <displayName count="one" draft="contributed">tala samoano</displayName>
- <displayName count="other" draft="contributed">tala samoani</displayName>
- </currency>
- <currency type="XAF">
- <displayName>Franco CFA BEAC</displayName>
- <displayName count="one" draft="contributed">franco CFA BEAC</displayName>
- <displayName count="other" draft="contributed">franchi CFA BEAC</displayName>
- <symbol draft="contributed">FCFA</symbol>
- </currency>
- <currency type="XAG">
- <displayName>Argento</displayName>
- </currency>
- <currency type="XAU">
- <displayName>Oro</displayName>
- </currency>
- <currency type="XBA">
- <displayName>Unità composita europea</displayName>
- </currency>
- <currency type="XBB">
- <displayName>Unità monetaria europea</displayName>
- </currency>
- <currency type="XBC">
- <displayName>Unità di acconto europea (XBC)</displayName>
- </currency>
- <currency type="XBD">
- <displayName>Unità di acconto europea (XBD)</displayName>
- </currency>
- <currency type="XCD">
- <displayName>Dollaro dei Caraibi Orientali</displayName>
- <displayName count="one" draft="contributed">dollaro dei Caraibi orientali</displayName>
- <displayName count="other" draft="contributed">dollari dei Caraibi orientali</displayName>
- <symbol draft="contributed">EC$</symbol>
- </currency>
- <currency type="XDR">
- <displayName>Diritti Speciali di Incasso</displayName>
- </currency>
- <currency type="XFO">
- <displayName>Franco Oro Francese</displayName>
- </currency>
- <currency type="XFU">
- <displayName>Franco UIC Francese</displayName>
- </currency>
- <currency type="XOF">
- <displayName>Franco CFA BCEAO</displayName>
- <displayName count="one" draft="contributed">franco CFA BCEAO</displayName>
- <displayName count="other" draft="contributed">franchi CFA BCEAO</displayName>
- <symbol draft="contributed">CFA</symbol>
- </currency>
- <currency type="XPD">
- <displayName>Palladio</displayName>
- </currency>
- <currency type="XPF">
- <displayName>Franco CFP</displayName>
- <displayName count="one" draft="contributed">franco CFP</displayName>
- <displayName count="other" draft="contributed">franchi CFP</displayName>
- <symbol draft="contributed">CFPF</symbol>
- </currency>
- <currency type="XPT">
- <displayName draft="contributed">Platino</displayName>
- </currency>
- <currency type="XRE">
- <displayName draft="contributed">Fondi RINET</displayName>
- </currency>
- <currency type="XTS">
- <displayName draft="contributed">Codice di verifica della valuta</displayName>
- </currency>
- <currency type="XXX">
- <displayName>Valuta sconosciuta</displayName>
- <displayName count="one" draft="contributed">valuta sconosciuta/non valida</displayName>
- <displayName count="other" draft="contributed">valuta sconosciuta</displayName>
- </currency>
- <currency type="YDD">
- <displayName>Dinaro dello Yemen</displayName>
- </currency>
- <currency type="YER">
- <displayName>Rial dello Yemen</displayName>
- <displayName count="one" draft="contributed">rial yemenita</displayName>
- <displayName count="other" draft="contributed">rial yemeniti</displayName>
- </currency>
- <currency type="YUD">
- <displayName>Dinaro Forte Yugoslavo</displayName>
- </currency>
- <currency type="YUM">
- <displayName>Dinaro Noviy Yugoslavo</displayName>
- </currency>
- <currency type="YUN">
- <displayName>Dinaro Convertibile Yugoslavo</displayName>
- </currency>
- <currency type="ZAL">
- <displayName>Rand Sudafricano (finanziario)</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>Rand Sudafricano</displayName>
- <displayName count="one" draft="contributed">rand sudafricano</displayName>
- <displayName count="other" draft="contributed">rand sudafricani</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>Kwacha dello Zambia (1968–2012)</displayName>
- <displayName count="one" draft="contributed">kwacha zambiano (1968–2012)</displayName>
- <displayName count="other" draft="contributed">kwacha zambiani (1968–2012)</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>Kwacha dello Zambia</displayName>
- <displayName count="one" draft="contributed">kwacha zambiano</displayName>
- <displayName count="other" draft="contributed">kwacha zambiani</displayName>
- </currency>
- <currency type="ZRN">
- <displayName>Nuovo Zaire dello Zaire</displayName>
- </currency>
- <currency type="ZRZ">
- <displayName>Zaire dello Zaire</displayName>
- </currency>
- <currency type="ZWD">
- <displayName>Dollaro dello Zimbabwe</displayName>
- </currency>
- <currency type="ZWL">
- <displayName draft="contributed">Dollaro Zimbabwiano (2009)</displayName>
- </currency>
- </currencies>
- <miscPatterns numberSystem="latn">
- <pattern type="atLeast" draft="contributed">{0}+</pattern>
- <pattern type="range" draft="contributed">{0}-{1}</pattern>
- </miscPatterns>
- </numbers>
- <units>
- <unitLength type="long">
- <compoundUnit type="per">
- <compoundUnitPattern draft="contributed">{0} al {1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one" draft="contributed">{0} forza g</unitPattern>
- <unitPattern count="other" draft="contributed">{0} forza g</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one" draft="contributed">{0} minuto</unitPattern>
- <unitPattern count="other" draft="contributed">{0} minuti</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one" draft="contributed">{0} secondo</unitPattern>
- <unitPattern count="other" draft="contributed">{0} secondi</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one" draft="contributed">{0} grado</unitPattern>
- <unitPattern count="other" draft="contributed">{0} gradi</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one" draft="contributed">{0} acro</unitPattern>
- <unitPattern count="other" draft="contributed">{0} acri</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one" draft="contributed">{0} ettaro</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ettari</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one" draft="contributed">{0} piede quadrato</unitPattern>
- <unitPattern count="other" draft="contributed">{0} piedi quadrati</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one" draft="contributed">{0} chilometro quadrato</unitPattern>
- <unitPattern count="other" draft="contributed">{0} chilometri quadrati</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one" draft="contributed">{0} metro quadrato</unitPattern>
- <unitPattern count="other" draft="contributed">{0} metri quadrati</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one" draft="contributed">{0} miglio quadrato</unitPattern>
- <unitPattern count="other" draft="contributed">{0} miglia quadrate</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one" draft="contributed">{0} giorno</unitPattern>
- <unitPattern count="other" draft="contributed">{0} giorni</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one" draft="contributed">{0} ora</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ore</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one" draft="contributed">{0} millisecondo</unitPattern>
- <unitPattern count="other" draft="contributed">{0} millisecondi</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one" draft="contributed">{0} minuto</unitPattern>
- <unitPattern count="other" draft="contributed">{0} minuti</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one" draft="contributed">{0} mese</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mesi</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one" draft="contributed">{0} secondo</unitPattern>
- <unitPattern count="other" draft="contributed">{0} secondi</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one" draft="contributed">{0} settimana</unitPattern>
- <unitPattern count="other" draft="contributed">{0} settimane</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one" draft="contributed">{0} anno</unitPattern>
- <unitPattern count="other" draft="contributed">{0} anni</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one" draft="contributed">{0} centimetro</unitPattern>
- <unitPattern count="other" draft="contributed">{0} centimetri</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one" draft="contributed">{0} piede</unitPattern>
- <unitPattern count="other" draft="contributed">{0} piedi</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one" draft="contributed">{0} pollice</unitPattern>
- <unitPattern count="other" draft="contributed">{0} pollici</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one" draft="contributed">{0} chilometro</unitPattern>
- <unitPattern count="other" draft="contributed">{0} chilometri</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one" draft="contributed">{0} anno luce</unitPattern>
- <unitPattern count="other" draft="contributed">{0} anni luce</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one" draft="contributed">{0} metro</unitPattern>
- <unitPattern count="other" draft="contributed">{0} metri</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one" draft="contributed">{0} miglio</unitPattern>
- <unitPattern count="other" draft="contributed">{0} miglia</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one" draft="contributed">{0} millimetro</unitPattern>
- <unitPattern count="other" draft="contributed">{0} millimetri</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one" draft="contributed">{0} picometro</unitPattern>
- <unitPattern count="other" draft="contributed">{0} picometri</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one" draft="contributed">{0} yarda</unitPattern>
- <unitPattern count="other" draft="contributed">{0} yarde</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one" draft="contributed">{0} grammo</unitPattern>
- <unitPattern count="other" draft="contributed">{0} grammi</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one" draft="contributed">{0} chilogrammo</unitPattern>
- <unitPattern count="other" draft="contributed">{0} chilogrammi</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one" draft="contributed">{0} oncia</unitPattern>
- <unitPattern count="other" draft="contributed">{0} once</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one" draft="contributed">{0} libbra</unitPattern>
- <unitPattern count="other" draft="contributed">{0} libbre</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one" draft="contributed">{0} cavallo vapore</unitPattern>
- <unitPattern count="other" draft="contributed">{0} cavalli vapore</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one" draft="contributed">{0} kilowatt</unitPattern>
- <unitPattern count="other" draft="contributed">{0} kilowatt</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one" draft="contributed">{0} watt</unitPattern>
- <unitPattern count="other" draft="contributed">{0} watt</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one" draft="contributed">{0} ettopascal</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ettopascal</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one" draft="contributed">{0} pollice di mercurio</unitPattern>
- <unitPattern count="other" draft="contributed">{0} pollici di mercurio</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one" draft="contributed">{0} millibar</unitPattern>
- <unitPattern count="other" draft="contributed">{0} millibar</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one" draft="contributed">{0} chilometro orario</unitPattern>
- <unitPattern count="other" draft="contributed">{0} chilometri orari</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one" draft="contributed">{0} metro al secondo</unitPattern>
- <unitPattern count="other" draft="contributed">{0} metri al secondo</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one" draft="contributed">{0} miglio orario</unitPattern>
- <unitPattern count="other" draft="contributed">{0} miglia orarie</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one" draft="contributed">{0} grado Celsius</unitPattern>
- <unitPattern count="other" draft="contributed">{0} gradi Celsius</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one" draft="contributed">{0} grado Fahrenheit</unitPattern>
- <unitPattern count="other" draft="contributed">{0} gradi Fahrenheit</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one" draft="contributed">{0} chilometro cubo</unitPattern>
- <unitPattern count="other" draft="contributed">{0} chilometri cubi</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one" draft="contributed">{0} miglio cubo</unitPattern>
- <unitPattern count="other" draft="contributed">{0} miglia cube</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one" draft="contributed">{0} litro</unitPattern>
- <unitPattern count="other" draft="contributed">{0} litri</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="short">
- <compoundUnit type="per">
- <compoundUnitPattern draft="contributed">{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one" draft="contributed">{0} G</unitPattern>
- <unitPattern count="other" draft="contributed">{0} G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one" draft="contributed">{0} min</unitPattern>
- <unitPattern count="other" draft="contributed">{0} min</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one" draft="contributed">{0} s</unitPattern>
- <unitPattern count="other" draft="contributed">{0} s</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one" draft="contributed">{0}°</unitPattern>
- <unitPattern count="other" draft="contributed">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one" draft="contributed">{0} ac</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ac</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one" draft="contributed">{0} ha</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ha</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one" draft="contributed">{0} ft²</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ft²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one" draft="contributed">{0} km²</unitPattern>
- <unitPattern count="other" draft="contributed">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one" draft="contributed">{0} m²</unitPattern>
- <unitPattern count="other" draft="contributed">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one" draft="contributed">{0} mi²</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mi²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one" draft="contributed">{0} giorno</unitPattern>
- <unitPattern count="other" draft="contributed">{0} giorni</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one" draft="contributed">{0} h</unitPattern>
- <unitPattern count="other" draft="contributed">{0} h</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one" draft="contributed">{0} ms</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ms</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one" draft="contributed">{0} min</unitPattern>
- <unitPattern count="other" draft="contributed">{0} min</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one" draft="contributed">{0} mese</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mesi</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one" draft="contributed">{0} s</unitPattern>
- <unitPattern count="other" draft="contributed">{0} s</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one" draft="contributed">{0} settimana</unitPattern>
- <unitPattern count="other" draft="contributed">{0} settimane</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one" draft="contributed">{0} anno</unitPattern>
- <unitPattern count="other" draft="contributed">{0} anni</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one" draft="contributed">{0} cm</unitPattern>
- <unitPattern count="other" draft="contributed">{0} cm</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one" draft="contributed">{0} ft</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ft</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one" draft="contributed">{0} in</unitPattern>
- <unitPattern count="other" draft="contributed">{0} in</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one" draft="contributed">{0} km</unitPattern>
- <unitPattern count="other" draft="contributed">{0} km</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one" draft="contributed">{0} anno luce</unitPattern>
- <unitPattern count="other" draft="contributed">{0} anni luce</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one" draft="contributed">{0} m</unitPattern>
- <unitPattern count="other" draft="contributed">{0} m</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one" draft="contributed">{0} mi</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mi</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one" draft="contributed">{0} mm</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mm</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one" draft="contributed">{0} pm</unitPattern>
- <unitPattern count="other" draft="contributed">{0} pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one" draft="contributed">{0} yd</unitPattern>
- <unitPattern count="other" draft="contributed">{0} yd</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one" draft="contributed">{0} g</unitPattern>
- <unitPattern count="other" draft="contributed">{0} g</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one" draft="contributed">{0} kg</unitPattern>
- <unitPattern count="other" draft="contributed">{0} kg</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one" draft="contributed">{0} oz</unitPattern>
- <unitPattern count="other" draft="contributed">{0} oz</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one" draft="contributed">{0} lb</unitPattern>
- <unitPattern count="other" draft="contributed">{0} lb</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one" draft="contributed">{0} hp</unitPattern>
- <unitPattern count="other" draft="contributed">{0} hp</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one" draft="contributed">{0} kW</unitPattern>
- <unitPattern count="other" draft="contributed">{0} kW</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one" draft="contributed">{0} W</unitPattern>
- <unitPattern count="other" draft="contributed">{0} W</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one" draft="contributed">{0} hPa</unitPattern>
- <unitPattern count="other" draft="contributed">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one" draft="contributed">{0} inHg</unitPattern>
- <unitPattern count="other" draft="contributed">{0} inHg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one" draft="contributed">{0} mbar</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mbar</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one" draft="contributed">{0} km/h</unitPattern>
- <unitPattern count="other" draft="contributed">{0} km/h</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one" draft="contributed">{0} m/s</unitPattern>
- <unitPattern count="other" draft="contributed">{0} m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one" draft="contributed">{0} mi/h</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mi/h</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one" draft="contributed">{0}°C</unitPattern>
- <unitPattern count="other" draft="contributed">{0}°C</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one" draft="contributed">{0}°F</unitPattern>
- <unitPattern count="other" draft="contributed">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one" draft="contributed">{0} km³</unitPattern>
- <unitPattern count="other" draft="contributed">{0} km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one" draft="contributed">{0} mi³</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mi³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one" draft="contributed">{0} l</unitPattern>
- <unitPattern count="other" draft="contributed">{0} l</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="narrow">
- <compoundUnit type="per">
- <compoundUnitPattern draft="contributed">{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one" draft="contributed">{0} G</unitPattern>
- <unitPattern count="other" draft="contributed">{0} G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one" draft="contributed">{0} min</unitPattern>
- <unitPattern count="other" draft="contributed">{0} min</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one" draft="contributed">{0} s</unitPattern>
- <unitPattern count="other" draft="contributed">{0} s</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one" draft="contributed">{0}°</unitPattern>
- <unitPattern count="other" draft="contributed">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one" draft="contributed">{0} ac</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ac</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one" draft="contributed">{0} ha</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ha</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one" draft="contributed">{0} ft²</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ft²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one" draft="contributed">{0} km²</unitPattern>
- <unitPattern count="other" draft="contributed">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one" draft="contributed">{0} m²</unitPattern>
- <unitPattern count="other" draft="contributed">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one" draft="contributed">{0} mi²</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mi²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} gg</unitPattern>
- <unitPattern count="other">{0} gg</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one" draft="contributed">{0} h</unitPattern>
- <unitPattern count="other" draft="contributed">{0} h</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one" draft="contributed">{0} ms</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ms</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one" draft="contributed">{0} m</unitPattern>
- <unitPattern count="other" draft="contributed">{0} m</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one" draft="contributed">{0} mesi</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mesi</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one" draft="contributed">{0} s</unitPattern>
- <unitPattern count="other" draft="contributed">{0} s</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one" draft="contributed">{0} sett.</unitPattern>
- <unitPattern count="other" draft="contributed">{0} sett.</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one" draft="contributed">{0} anno</unitPattern>
- <unitPattern count="other" draft="contributed">{0} anni</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one" draft="contributed">{0} cm</unitPattern>
- <unitPattern count="other" draft="contributed">{0} cm</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one" draft="contributed">{0} ft</unitPattern>
- <unitPattern count="other" draft="contributed">{0} ft</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one" draft="contributed">{0}″</unitPattern>
- <unitPattern count="other" draft="contributed">{0}″</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one" draft="contributed">{0} km</unitPattern>
- <unitPattern count="other" draft="contributed">{0} km</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one" draft="contributed">{0} al</unitPattern>
- <unitPattern count="other" draft="contributed">{0} al</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one" draft="contributed">{0} m</unitPattern>
- <unitPattern count="other" draft="contributed">{0} m</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one" draft="contributed">{0} mi</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mi</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one" draft="contributed">{0} mm</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mm</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one" draft="contributed">{0} pm</unitPattern>
- <unitPattern count="other" draft="contributed">{0} pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one" draft="contributed">{0} yd</unitPattern>
- <unitPattern count="other" draft="contributed">{0} yd</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one" draft="contributed">{0} g</unitPattern>
- <unitPattern count="other" draft="contributed">{0} g</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one" draft="contributed">{0} kg</unitPattern>
- <unitPattern count="other" draft="contributed">{0} kg</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one" draft="contributed">{0} oz</unitPattern>
- <unitPattern count="other" draft="contributed">{0} oz</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one" draft="contributed">{0} lb</unitPattern>
- <unitPattern count="other" draft="contributed">{0} lb</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one" draft="contributed">{0} hp</unitPattern>
- <unitPattern count="other" draft="contributed">{0} hp</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one" draft="contributed">{0} kW</unitPattern>
- <unitPattern count="other" draft="contributed">{0} kW</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one" draft="contributed">{0} W</unitPattern>
- <unitPattern count="other" draft="contributed">{0} W</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one" draft="contributed">{0} hPa</unitPattern>
- <unitPattern count="other" draft="contributed">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one" draft="contributed">{0} inHg</unitPattern>
- <unitPattern count="other" draft="contributed">{0} inHg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one" draft="contributed">{0} mbar</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mbar</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one" draft="contributed">{0} km/h</unitPattern>
- <unitPattern count="other" draft="contributed">{0} km/h</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one" draft="contributed">{0} m/s</unitPattern>
- <unitPattern count="other" draft="contributed">{0} m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one" draft="contributed">{0} mi/h</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mi/h</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one" draft="contributed">{0}°</unitPattern>
- <unitPattern count="other" draft="contributed">{0}°</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one" draft="contributed">{0}°F</unitPattern>
- <unitPattern count="other" draft="contributed">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one" draft="contributed">{0} km³</unitPattern>
- <unitPattern count="other" draft="contributed">{0} km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one" draft="contributed">{0} mi³</unitPattern>
- <unitPattern count="other" draft="contributed">{0} mi³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one" draft="contributed">{0} l</unitPattern>
- <unitPattern count="other" draft="contributed">{0} l</unitPattern>
- </unit>
- </unitLength>
- <durationUnit type="hm">
- <durationUnitPattern>h:mm</durationUnitPattern>
- </durationUnit>
- <durationUnit type="hms">
- <durationUnitPattern>h:mm:ss</durationUnitPattern>
- </durationUnit>
- <durationUnit type="ms">
- <durationUnitPattern>m:ss</durationUnitPattern>
- </durationUnit>
- </units>
- <listPatterns>
- <listPattern>
- <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="end">{0}, e {1}</listPatternPart>
- <listPatternPart type="2">{0} e {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit">
- <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="end" draft="contributed">{0}, e {1}</listPatternPart>
- <listPatternPart type="2" draft="contributed">{0} e {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit-narrow">
- <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="end" draft="contributed">{0}, e {1}</listPatternPart>
- <listPatternPart type="2" draft="contributed">{0}, {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit-short">
- <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="end" draft="contributed">{0}, e {1}</listPatternPart>
- <listPatternPart type="2" draft="contributed">{0}, {1}</listPatternPart>
- </listPattern>
- </listPatterns>
- <posix>
- <messages>
- <yesstr>sì:si:s</yesstr>
- <nostr>no:n</nostr>
- </messages>
- </posix>
- </ldml>
|