it.xml 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
  3. <!-- Copyright © 1991-2013 Unicode, Inc.
  4. CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
  5. For terms of use, see http://www.unicode.org/copyright.html
  6. -->
  7. <ldml>
  8. <identity>
  9. <version number="$Revision: 9287 $"/>
  10. <generation date="$Date: 2013-08-28 21:32:04 -0500 (Wed, 28 Aug 2013) $"/>
  11. <language type="it"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <localeDisplayPattern>
  15. <localePattern>{0} ({1})</localePattern>
  16. <localeSeparator>{0}, {1}</localeSeparator>
  17. <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
  18. </localeDisplayPattern>
  19. <languages>
  20. <language type="aa">afar</language>
  21. <language type="ab">abcaso</language>
  22. <language type="ace">accinese</language>
  23. <language type="ach">acioli</language>
  24. <language type="ada">adangme</language>
  25. <language type="ady">adyghe</language>
  26. <language type="ae">avestan</language>
  27. <language type="af">afrikaans</language>
  28. <language type="afa">lingua afroasiatica</language>
  29. <language type="afh">afrihili</language>
  30. <language type="agq" draft="contributed">aghem</language>
  31. <language type="ain">ainu</language>
  32. <language type="ak">akan</language>
  33. <language type="akk">accado</language>
  34. <language type="ale">aleuto</language>
  35. <language type="alg">lingue algonchine</language>
  36. <language type="alt">altai meridionale</language>
  37. <language type="am">amarico</language>
  38. <language type="an">aragonese</language>
  39. <language type="ang">inglese antico</language>
  40. <language type="anp" draft="contributed">angika</language>
  41. <language type="apa">lingue apache</language>
  42. <language type="ar">arabo</language>
  43. <language type="ar_001">arabo moderno standard</language>
  44. <language type="arc">aramaico</language>
  45. <language type="arn">araucano</language>
  46. <language type="arp">arapaho</language>
  47. <language type="art">lingua artificiale</language>
  48. <language type="arw">aruaco</language>
  49. <language type="as">assamese</language>
  50. <language type="asa" draft="contributed">asu</language>
  51. <language type="ast">asturiano</language>
  52. <language type="ath">lingue athabaska</language>
  53. <language type="aus">lingue australiane</language>
  54. <language type="av">avaro</language>
  55. <language type="awa">awadhi</language>
  56. <language type="ay">aymara</language>
  57. <language type="az">azerbaigiano</language>
  58. <language type="az" alt="short">azero</language>
  59. <language type="ba">baschiro</language>
  60. <language type="bad">banda</language>
  61. <language type="bai">lingue bamileke</language>
  62. <language type="bal">beluci</language>
  63. <language type="ban">balinese</language>
  64. <language type="bas">basa</language>
  65. <language type="bat">lingua baltica</language>
  66. <language type="bax" draft="contributed">bamun</language>
  67. <language type="bbj" draft="contributed">ghomala</language>
  68. <language type="be">bielorusso</language>
  69. <language type="bej">begia</language>
  70. <language type="bem">wemba</language>
  71. <language type="ber">berbero</language>
  72. <language type="bez" draft="contributed">bena</language>
  73. <language type="bfd" draft="contributed">bafut</language>
  74. <language type="bg">bulgaro</language>
  75. <language type="bh">bihari</language>
  76. <language type="bho">bhojpuri</language>
  77. <language type="bi">bislama</language>
  78. <language type="bik">bicol</language>
  79. <language type="bin">bini</language>
  80. <language type="bkm" draft="contributed">kom</language>
  81. <language type="bla">siksika</language>
  82. <language type="bm">bambara</language>
  83. <language type="bn">bengalese</language>
  84. <language type="bnt">bantu</language>
  85. <language type="bo">tibetano</language>
  86. <language type="br">bretone</language>
  87. <language type="bra">braj</language>
  88. <language type="brx" draft="contributed">bodo</language>
  89. <language type="bs">bosniaco</language>
  90. <language type="bss" draft="contributed">akoose</language>
  91. <language type="btk">batak</language>
  92. <language type="bua">buriat</language>
  93. <language type="bug">bugi</language>
  94. <language type="bum" draft="contributed">bulu</language>
  95. <language type="byn">blin</language>
  96. <language type="byv" draft="contributed">medumba</language>
  97. <language type="ca">catalano</language>
  98. <language type="cad">caddo</language>
  99. <language type="cai">lingua indiana dell'America Centrale</language>
  100. <language type="car">caribico</language>
  101. <language type="cau">lingua caucasica</language>
  102. <language type="cay" draft="contributed">cayuga</language>
  103. <language type="cch" draft="contributed">atsam</language>
  104. <language type="ce">ceceno</language>
  105. <language type="ceb">cebuano</language>
  106. <language type="cel">celtica altra lingua</language>
  107. <language type="cgg" draft="contributed">chiga</language>
  108. <language type="ch">chamorro</language>
  109. <language type="chb">chibcha</language>
  110. <language type="chg">ciagataico</language>
  111. <language type="chk">chuukese</language>
  112. <language type="chm">mari</language>
  113. <language type="chn">gergo chinook</language>
  114. <language type="cho">choctaw</language>
  115. <language type="chp">chipewyan</language>
  116. <language type="chr">cherokee</language>
  117. <language type="chy">cheyenne</language>
  118. <language type="ckb" draft="contributed">curdo sorani</language>
  119. <language type="cmc">lingue chamic</language>
  120. <language type="co">corso</language>
  121. <language type="cop">copto</language>
  122. <language type="cpe">creolo o pidgin basati sull'inglese</language>
  123. <language type="cpf">creolo o pidgin basati sul francese</language>
  124. <language type="cpp">creolo o pidgin basati sul portoghese</language>
  125. <language type="cr">cree</language>
  126. <language type="crh">turco crimeo</language>
  127. <language type="crp">creolo o pidgin</language>
  128. <language type="cs">ceco</language>
  129. <language type="csb">kashubian</language>
  130. <language type="cu">slavo della Chiesa</language>
  131. <language type="cus">lingua cuscitica</language>
  132. <language type="cv">chuvash</language>
  133. <language type="cy">gallese</language>
  134. <language type="da">danese</language>
  135. <language type="dak">dakota</language>
  136. <language type="dar">dargwa</language>
  137. <language type="dav" draft="contributed">taita</language>
  138. <language type="day">dayak</language>
  139. <language type="de">tedesco</language>
  140. <language type="de_AT">tedesco austriaco</language>
  141. <language type="de_CH">alto tedesco svizzero</language>
  142. <language type="del">delaware</language>
  143. <language type="den">slave</language>
  144. <language type="dgr">dogrib</language>
  145. <language type="din">dinca</language>
  146. <language type="dje" draft="contributed">zarma</language>
  147. <language type="doi">dogri</language>
  148. <language type="dra">lingua dravidica</language>
  149. <language type="dsb">basso sorabo</language>
  150. <language type="dua">duala</language>
  151. <language type="dum">olandese medio</language>
  152. <language type="dv">divehi</language>
  153. <language type="dyo" draft="contributed">jola-fony</language>
  154. <language type="dyu">diula</language>
  155. <language type="dz">dzongkha</language>
  156. <language type="dzg" draft="contributed">dazaga</language>
  157. <language type="ebu" draft="contributed">embu</language>
  158. <language type="ee">ewe</language>
  159. <language type="efi">efik</language>
  160. <language type="egy">egiziano antico</language>
  161. <language type="eka">ekajuka</language>
  162. <language type="el">greco</language>
  163. <language type="elx">elamitico</language>
  164. <language type="en">inglese</language>
  165. <language type="en_AU">inglese australiano</language>
  166. <language type="en_CA">inglese canadese</language>
  167. <language type="en_GB">inglese britannico</language>
  168. <language type="en_GB" alt="short">inglese (GB)</language>
  169. <language type="en_US">inglese americano</language>
  170. <language type="en_US" alt="short">inglese (USA)</language>
  171. <language type="enm">inglese medio</language>
  172. <language type="eo">esperanto</language>
  173. <language type="es">spagnolo</language>
  174. <language type="es_419">spagnolo latinoamericano</language>
  175. <language type="es_ES">spagnolo europeo</language>
  176. <language type="es_MX">spagnolo messicano</language>
  177. <language type="et">estone</language>
  178. <language type="eu">basco</language>
  179. <language type="ewo">ewondo</language>
  180. <language type="fa">persiano</language>
  181. <language type="fan">fang</language>
  182. <language type="fat">fanti</language>
  183. <language type="ff">fulah</language>
  184. <language type="fi">finlandese</language>
  185. <language type="fil">filippino</language>
  186. <language type="fiu">lingua ungrofinnica</language>
  187. <language type="fj">figiano</language>
  188. <language type="fo">faroese</language>
  189. <language type="fon" draft="contributed">fon</language>
  190. <language type="fr">francese</language>
  191. <language type="fr_CA">francese canadese</language>
  192. <language type="fr_CH">francese svizzero</language>
  193. <language type="frm">francese medio</language>
  194. <language type="fro">francese antico</language>
  195. <language type="frr">frisone settentrionale</language>
  196. <language type="frs" draft="contributed">frisone orientale</language>
  197. <language type="fur">friulano</language>
  198. <language type="fy">frisone occidentale</language>
  199. <language type="ga">irlandese</language>
  200. <language type="gaa">ga</language>
  201. <language type="gay">gayo</language>
  202. <language type="gba">gbaya</language>
  203. <language type="gd">gaelico scozzese</language>
  204. <language type="gem">lingua germanica</language>
  205. <language type="gez">geez</language>
  206. <language type="gil">gilbertese</language>
  207. <language type="gl">galiziano</language>
  208. <language type="gmh">tedesco medio alto</language>
  209. <language type="gn">guarana</language>
  210. <language type="goh">tedesco antico alto</language>
  211. <language type="gon">gondi</language>
  212. <language type="gor">gorontalo</language>
  213. <language type="got">gotico</language>
  214. <language type="grb">gerbo</language>
  215. <language type="grc">greco antico</language>
  216. <language type="gsw">tedesco svizzero</language>
  217. <language type="gu">gujarati</language>
  218. <language type="guz" draft="contributed">gusii</language>
  219. <language type="gv">manx</language>
  220. <language type="gwi">gwichʼin</language>
  221. <language type="ha">haussa</language>
  222. <language type="hai">haida</language>
  223. <language type="haw">hawaiano</language>
  224. <language type="he">ebraico</language>
  225. <language type="hi">hindi</language>
  226. <language type="hil">hiligayna</language>
  227. <language type="him">himachali</language>
  228. <language type="hit">hittite</language>
  229. <language type="hmn">hmong</language>
  230. <language type="ho">hiri motu</language>
  231. <language type="hr">croato</language>
  232. <language type="hsb">alto sorabo</language>
  233. <language type="ht">haitiano</language>
  234. <language type="hu">ungherese</language>
  235. <language type="hup">hupa</language>
  236. <language type="hy">armeno</language>
  237. <language type="hz">herero</language>
  238. <language type="ia">interlingua</language>
  239. <language type="iba">iban</language>
  240. <language type="ibb" draft="contributed">ibibio</language>
  241. <language type="id">indonesiano</language>
  242. <language type="ie">interlingue</language>
  243. <language type="ig">igbo</language>
  244. <language type="ii">sichuan yi</language>
  245. <language type="ijo" draft="contributed">ijo</language>
  246. <language type="ik">inupiak</language>
  247. <language type="ilo">ilocano</language>
  248. <language type="inc">lingua indiana</language>
  249. <language type="ine">lingua indoeuropea</language>
  250. <language type="inh">ingush</language>
  251. <language type="io">ido</language>
  252. <language type="ira">iraniana</language>
  253. <language type="iro">lingue irochesi</language>
  254. <language type="is">islandese</language>
  255. <language type="it">italiano</language>
  256. <language type="iu">inuktitut</language>
  257. <language type="ja">giapponese</language>
  258. <language type="jbo">lojban</language>
  259. <language type="jgo" draft="contributed">Ngamambo</language>
  260. <language type="jmc" draft="contributed">machame</language>
  261. <language type="jpr">giudeo persiano</language>
  262. <language type="jrb">giudeo arabo</language>
  263. <language type="jv">giavanese</language>
  264. <language type="ka">georgiano</language>
  265. <language type="kaa">kara-kalpak</language>
  266. <language type="kab">kabyle</language>
  267. <language type="kac">kachin</language>
  268. <language type="kaj" draft="contributed">kai</language>
  269. <language type="kam">kamba</language>
  270. <language type="kar">karen</language>
  271. <language type="kaw">kawi</language>
  272. <language type="kbd">kabardia</language>
  273. <language type="kbl" draft="contributed">kanembu</language>
  274. <language type="kcg" draft="contributed">tyap</language>
  275. <language type="kde" draft="contributed">makonde</language>
  276. <language type="kea" draft="contributed">capoverdiano</language>
  277. <language type="kfo" draft="contributed">koro</language>
  278. <language type="kg">kongo</language>
  279. <language type="kha">khasi</language>
  280. <language type="khi">lingua khoisan</language>
  281. <language type="kho">khotanese</language>
  282. <language type="khq" draft="contributed">koyra chiini</language>
  283. <language type="ki">kikuyu</language>
  284. <language type="kj">kuanyama</language>
  285. <language type="kk">kazako</language>
  286. <language type="kkj" draft="contributed">kako</language>
  287. <language type="kl">kalaallisut</language>
  288. <language type="kln" draft="contributed">kalenjin</language>
  289. <language type="km">khmer</language>
  290. <language type="kmb">kimbundu</language>
  291. <language type="kn">kannada</language>
  292. <language type="ko">coreano</language>
  293. <language type="kok">konkani</language>
  294. <language type="kos">kosraean</language>
  295. <language type="kpe">kpelle</language>
  296. <language type="kr">kanuri</language>
  297. <language type="krc">karachay-Balkar</language>
  298. <language type="krl">careliano</language>
  299. <language type="kro">kru</language>
  300. <language type="kru">kurukh</language>
  301. <language type="ks">kashmiri</language>
  302. <language type="ksb" draft="contributed">shambala</language>
  303. <language type="ksf" draft="contributed">bafia</language>
  304. <language type="ksh" draft="contributed">coloniese</language>
  305. <language type="ku">curdo</language>
  306. <language type="kum">kumyk</language>
  307. <language type="kut">kutenai</language>
  308. <language type="kv">komi</language>
  309. <language type="kw">cornico</language>
  310. <language type="ky">kirghiso</language>
  311. <language type="la">latino</language>
  312. <language type="lad">ladino</language>
  313. <language type="lag" draft="contributed">langi</language>
  314. <language type="lah">lahnda</language>
  315. <language type="lam">lamba</language>
  316. <language type="lb">lussemburghese</language>
  317. <language type="lez">lezghian</language>
  318. <language type="lg">ganda</language>
  319. <language type="li">limburgese</language>
  320. <language type="ln">lingala</language>
  321. <language type="lo">lao</language>
  322. <language type="lol">lolo bantu</language>
  323. <language type="loz">lozi</language>
  324. <language type="lt">lituano</language>
  325. <language type="lu">luba-katanga</language>
  326. <language type="lua">luba-lulua</language>
  327. <language type="lui">luiseno</language>
  328. <language type="lun">lunda</language>
  329. <language type="luo">luo</language>
  330. <language type="lus">lushai</language>
  331. <language type="luy" draft="contributed">luyia</language>
  332. <language type="lv">lettone</language>
  333. <language type="mad">madurese</language>
  334. <language type="maf" draft="contributed">mafa</language>
  335. <language type="mag">magahi</language>
  336. <language type="mai">maithili</language>
  337. <language type="mak">makasar</language>
  338. <language type="man">mandingo</language>
  339. <language type="map">austronesiano</language>
  340. <language type="mas">masai</language>
  341. <language type="mde" draft="contributed">maba</language>
  342. <language type="mdf">moksha</language>
  343. <language type="mdr">mandar</language>
  344. <language type="men">mende</language>
  345. <language type="mer" draft="contributed">meru</language>
  346. <language type="mfe" draft="contributed">creolo mauriziano</language>
  347. <language type="mg">malgascio</language>
  348. <language type="mga">irlandese medio</language>
  349. <language type="mgh" draft="contributed">makhuwa-meetto</language>
  350. <language type="mgo" draft="contributed">Meta'</language>
  351. <language type="mh">marshallese</language>
  352. <language type="mi">maori</language>
  353. <language type="mic">micmac</language>
  354. <language type="min">menangkabau</language>
  355. <language type="mis">lingue diverse</language>
  356. <language type="mk">macedone</language>
  357. <language type="mkh">lingua mon-khmer</language>
  358. <language type="ml">malayalam</language>
  359. <language type="mn">mongolo</language>
  360. <language type="mnc">manchu</language>
  361. <language type="mni">manipuri</language>
  362. <language type="mno">manobo</language>
  363. <language type="mo">moldavo</language>
  364. <language type="moh">mohawk</language>
  365. <language type="mos">mossi</language>
  366. <language type="mr">marathi</language>
  367. <language type="ms">malese</language>
  368. <language type="mt">maltese</language>
  369. <language type="mua" draft="contributed">mundang</language>
  370. <language type="mul">multilingua</language>
  371. <language type="mun">lingua munda</language>
  372. <language type="mus">creek</language>
  373. <language type="mwl">mirandese</language>
  374. <language type="mwr">marwari</language>
  375. <language type="my">birmano</language>
  376. <language type="mye" draft="contributed">myene</language>
  377. <language type="myn">lingue maya</language>
  378. <language type="myv">erzya</language>
  379. <language type="na">nauru</language>
  380. <language type="nah">nahuatl</language>
  381. <language type="nai">lingua indiana del Nord America</language>
  382. <language type="nap">napoletano</language>
  383. <language type="naq" draft="contributed">nama</language>
  384. <language type="nb">norvegese bokmal</language>
  385. <language type="nd">ndebele del nord</language>
  386. <language type="nds">basso tedesco</language>
  387. <language type="ne">nepalese</language>
  388. <language type="new">newari</language>
  389. <language type="ng">ndonga</language>
  390. <language type="nia">nias</language>
  391. <language type="nic">lingua niger-cordofan</language>
  392. <language type="niu">niue</language>
  393. <language type="nl">olandese</language>
  394. <language type="nl_BE">fiammingo</language>
  395. <language type="nmg" draft="contributed">kwasio</language>
  396. <language type="nn">norvegese nynorsk</language>
  397. <language type="nnh" draft="contributed">ngiemboon</language>
  398. <language type="no">norvegese</language>
  399. <language type="nog">nogai</language>
  400. <language type="non">norse antico</language>
  401. <language type="nqo">n'ko</language>
  402. <language type="nr">ndebele del sud</language>
  403. <language type="nso">sotho del nord</language>
  404. <language type="nub">nubiano</language>
  405. <language type="nus" draft="contributed">nuer</language>
  406. <language type="nv">navajo</language>
  407. <language type="nwc">newari classico</language>
  408. <language type="ny">nyanja</language>
  409. <language type="nym">nyamwezi</language>
  410. <language type="nyn">nyankole</language>
  411. <language type="nyo">nyoro</language>
  412. <language type="nzi">nzima</language>
  413. <language type="oc">occitano</language>
  414. <language type="oj">ojibwa</language>
  415. <language type="om">oromo</language>
  416. <language type="or">oriya</language>
  417. <language type="os">ossetico</language>
  418. <language type="osa">osage</language>
  419. <language type="ota">turco ottomano</language>
  420. <language type="oto">lingue otomi</language>
  421. <language type="pa">punjabi</language>
  422. <language type="paa">lingua papuana</language>
  423. <language type="pag">pangasinan</language>
  424. <language type="pal">pahlavi</language>
  425. <language type="pam">pampanga</language>
  426. <language type="pap">papiamento</language>
  427. <language type="pau">palau</language>
  428. <language type="peo">persiano antico</language>
  429. <language type="phi">lingua filippina</language>
  430. <language type="phn">fenicio</language>
  431. <language type="pi">pali</language>
  432. <language type="pl">polacco</language>
  433. <language type="pon">ponape</language>
  434. <language type="pra">pracrito</language>
  435. <language type="pro">provenzale antico</language>
  436. <language type="ps">pashto</language>
  437. <language type="pt">portoghese</language>
  438. <language type="pt_BR">portoghese brasiliano</language>
  439. <language type="pt_PT">portoghese europeo</language>
  440. <language type="qu">quechua</language>
  441. <language type="raj">rajasthani</language>
  442. <language type="rap">rapanui</language>
  443. <language type="rar">rarotonga</language>
  444. <language type="rm">romancio</language>
  445. <language type="rn">rundi</language>
  446. <language type="ro">rumeno</language>
  447. <language type="roa">lingua romanza</language>
  448. <language type="rof" draft="contributed">rombo</language>
  449. <language type="rom">romani</language>
  450. <language type="root" draft="contributed">root</language>
  451. <language type="ru">russo</language>
  452. <language type="rup">arumeno</language>
  453. <language type="rw">kinyarwanda</language>
  454. <language type="rwk" draft="contributed">rwa</language>
  455. <language type="sa">sanscrito</language>
  456. <language type="sad">sandawe</language>
  457. <language type="sah">yakut</language>
  458. <language type="sai">lingua indiana del Sud America</language>
  459. <language type="sal">lingue salish</language>
  460. <language type="sam">aramaico samaritano</language>
  461. <language type="saq" draft="contributed">samburu</language>
  462. <language type="sas">sasak</language>
  463. <language type="sat">santali</language>
  464. <language type="sba" draft="contributed">ngambay</language>
  465. <language type="sbp" draft="contributed">sangu</language>
  466. <language type="sc">sardo</language>
  467. <language type="scn">siciliano</language>
  468. <language type="sco">scozzese</language>
  469. <language type="sd">sindhi</language>
  470. <language type="se">sami del nord</language>
  471. <language type="see" draft="contributed">seneca</language>
  472. <language type="seh" draft="contributed">sena</language>
  473. <language type="sel">selkup</language>
  474. <language type="sem">lingua semitica</language>
  475. <language type="ses" draft="contributed">koyraboro senni</language>
  476. <language type="sg">sango</language>
  477. <language type="sga">irlandese antico</language>
  478. <language type="sgn">lingue sign</language>
  479. <language type="sh">serbo-croato</language>
  480. <language type="shi" draft="contributed">tachelhit</language>
  481. <language type="shn">shan</language>
  482. <language type="shu" draft="contributed">chadian arabic</language>
  483. <language type="si">singalese</language>
  484. <language type="sid">sidamo</language>
  485. <language type="sio">lingue sioux</language>
  486. <language type="sit">lingua sino-tibetana</language>
  487. <language type="sk">slovacco</language>
  488. <language type="sl">sloveno</language>
  489. <language type="sla">lingua slava</language>
  490. <language type="sm">samoano</language>
  491. <language type="sma">sami del sud</language>
  492. <language type="smi">lingua sami</language>
  493. <language type="smj">sami lule</language>
  494. <language type="smn">sami inari</language>
  495. <language type="sms">sami skolt</language>
  496. <language type="sn">shona</language>
  497. <language type="snk">soninke</language>
  498. <language type="so">somalo</language>
  499. <language type="sog">sogdiano</language>
  500. <language type="son">songhai</language>
  501. <language type="sq">albanese</language>
  502. <language type="sr">serbo</language>
  503. <language type="srn">sranan tongo</language>
  504. <language type="srr">serer</language>
  505. <language type="ss">swati</language>
  506. <language type="ssa">lingua nilo-sahariana</language>
  507. <language type="ssy" draft="contributed">saho</language>
  508. <language type="st">sotho del sud</language>
  509. <language type="su">sundanese</language>
  510. <language type="suk">sukuma</language>
  511. <language type="sus">susu</language>
  512. <language type="sux">sumero</language>
  513. <language type="sv">svedese</language>
  514. <language type="sw">swahili</language>
  515. <language type="swb">comoriano</language>
  516. <language type="swc" draft="contributed">congo swahili</language>
  517. <language type="syc" draft="contributed">siriaco classico</language>
  518. <language type="syr">siriaco</language>
  519. <language type="ta">tamil</language>
  520. <language type="tai">lingua tailandese</language>
  521. <language type="te">telugu</language>
  522. <language type="tem">temne</language>
  523. <language type="teo" draft="contributed">teso</language>
  524. <language type="ter">tereno</language>
  525. <language type="tet">tetum</language>
  526. <language type="tg">tagicco</language>
  527. <language type="th">thai</language>
  528. <language type="ti">tigrino</language>
  529. <language type="tig">tigre</language>
  530. <language type="tiv" draft="contributed">tiv</language>
  531. <language type="tk">turcomanno</language>
  532. <language type="tkl">tokelau</language>
  533. <language type="tl">tagalog</language>
  534. <language type="tlh">klingon</language>
  535. <language type="tli">tlingit</language>
  536. <language type="tmh">tamashek</language>
  537. <language type="tn">tswana</language>
  538. <language type="to">tongano</language>
  539. <language type="tog">nyasa del Tonga</language>
  540. <language type="tpi">tok pisin</language>
  541. <language type="tr">turco</language>
  542. <language type="trv" draft="contributed">taroko</language>
  543. <language type="ts">tsonga</language>
  544. <language type="tsi">tsimshian</language>
  545. <language type="tt">tatarico</language>
  546. <language type="tum">tumbuka</language>
  547. <language type="tup">lingue tupi</language>
  548. <language type="tut">lingua altaica</language>
  549. <language type="tvl">tuvalu</language>
  550. <language type="tw">ci</language>
  551. <language type="twq" draft="contributed">tasawaq</language>
  552. <language type="ty">taitiano</language>
  553. <language type="tyv">tuvinian</language>
  554. <language type="tzm" draft="contributed">tamazight</language>
  555. <language type="udm">udmurt</language>
  556. <language type="ug">uigurico</language>
  557. <language type="ug" alt="variant">uiguro</language>
  558. <language type="uga">ugaritico</language>
  559. <language type="uk">ucraino</language>
  560. <language type="umb">mbundu</language>
  561. <language type="und">lingua imprecisata</language>
  562. <language type="ur">urdu</language>
  563. <language type="uz">usbeco</language>
  564. <language type="vai" draft="contributed">vai</language>
  565. <language type="ve">venda</language>
  566. <language type="vi">vietnamita</language>
  567. <language type="vo">volapük</language>
  568. <language type="vot">voto</language>
  569. <language type="vun" draft="contributed">vunjo</language>
  570. <language type="wa">vallone</language>
  571. <language type="wae" draft="contributed">walser</language>
  572. <language type="wak">lingue wakash</language>
  573. <language type="wal">walamo</language>
  574. <language type="war">waray</language>
  575. <language type="was">washo</language>
  576. <language type="wen">sorabo</language>
  577. <language type="wo">wolof</language>
  578. <language type="xal">kalmyk</language>
  579. <language type="xh">xhosa</language>
  580. <language type="xog" draft="contributed">soga</language>
  581. <language type="yao">yao (bantu)</language>
  582. <language type="yap">yapese</language>
  583. <language type="yav" draft="contributed">yangben</language>
  584. <language type="ybb" draft="contributed">yemba</language>
  585. <language type="yi">yiddish</language>
  586. <language type="yo">yoruba</language>
  587. <language type="ypk">lingue yupik</language>
  588. <language type="yue">cantonese</language>
  589. <language type="za">zhuang</language>
  590. <language type="zap">zapotec</language>
  591. <language type="zbl" draft="contributed">blissymbol</language>
  592. <language type="zen">zenaga</language>
  593. <language type="zgh">tamazight del Marocco standard</language>
  594. <language type="zh">cinese</language>
  595. <language type="zh_Hans">cinese semplificato</language>
  596. <language type="zh_Hant">cinese tradizionale</language>
  597. <language type="znd">zande</language>
  598. <language type="zu">zulu</language>
  599. <language type="zun">zuni</language>
  600. <language type="zxx">nessun contenuto linguistico</language>
  601. <language type="zza" draft="contributed">zaza</language>
  602. </languages>
  603. <scripts>
  604. <script type="Afak" draft="contributed">afaka</script>
  605. <script type="Arab">arabo</script>
  606. <script type="Arab" alt="variant">arabo-persiano</script>
  607. <script type="Armi" draft="contributed">aramaico imperiale</script>
  608. <script type="Armn">armeno</script>
  609. <script type="Avst" draft="contributed">avestico</script>
  610. <script type="Bali">balinese</script>
  611. <script type="Bamu" draft="contributed">bamum</script>
  612. <script type="Bass" draft="contributed">Bassa Vah</script>
  613. <script type="Batk">batak</script>
  614. <script type="Beng">bengali</script>
  615. <script type="Blis">simboli bliss</script>
  616. <script type="Bopo">bopomofo</script>
  617. <script type="Brah">brahmi</script>
  618. <script type="Brai">braille</script>
  619. <script type="Bugi">buginese</script>
  620. <script type="Buhd">buhid</script>
  621. <script type="Cakm" draft="contributed">chakma</script>
  622. <script type="Cans">simboli aborigeni canadesi unificati</script>
  623. <script type="Cari" draft="contributed">carian</script>
  624. <script type="Cham">cham</script>
  625. <script type="Cher">cherokee</script>
  626. <script type="Cirt">cirth</script>
  627. <script type="Copt">copto</script>
  628. <script type="Cprt">cipriota</script>
  629. <script type="Cyrl">cirillico</script>
  630. <script type="Cyrs">cirillico antica chiesa slavonica</script>
  631. <script type="Deva">devanagari</script>
  632. <script type="Dsrt">deseret</script>
  633. <script type="Dupl" draft="contributed">stenografia duployan</script>
  634. <script type="Egyd">egiziano demotico</script>
  635. <script type="Egyh">ieratico egiziano</script>
  636. <script type="Egyp">geroglifici egiziani</script>
  637. <script type="Ethi">etiope</script>
  638. <script type="Geok">kutsuri</script>
  639. <script type="Geor">georgiano</script>
  640. <script type="Glag">glagolitico</script>
  641. <script type="Goth">gotico</script>
  642. <script type="Gran" draft="contributed">grantha</script>
  643. <script type="Grek">greco</script>
  644. <script type="Gujr">gujarati</script>
  645. <script type="Guru">gurmukhi</script>
  646. <script type="Hang">hangul</script>
  647. <script type="Hani">han</script>
  648. <script type="Hano">hanunoo</script>
  649. <script type="Hans">semplificato</script>
  650. <script type="Hans" alt="stand-alone">han semplificato</script>
  651. <script type="Hant">han tradizionale</script>
  652. <script type="Hant" alt="stand-alone">han tradizionale</script>
  653. <script type="Hebr">ebraico</script>
  654. <script type="Hira">hiragana</script>
  655. <script type="Hluw" draft="contributed">geroglifici anatolici</script>
  656. <script type="Hmng">pahawn hmong</script>
  657. <script type="Hrkt">katanaka o hiragana</script>
  658. <script type="Hung">antico ungherese</script>
  659. <script type="Inds">indu</script>
  660. <script type="Ital">italico antico</script>
  661. <script type="Java">javanese</script>
  662. <script type="Jpan">giapponese</script>
  663. <script type="Jurc" draft="contributed">jurchen</script>
  664. <script type="Kali" draft="contributed">kayah li</script>
  665. <script type="Kana">katakana</script>
  666. <script type="Khar" draft="contributed">kharoshthi</script>
  667. <script type="Khmr">khmer</script>
  668. <script type="Khoj" draft="contributed">khojki</script>
  669. <script type="Knda">kannada</script>
  670. <script type="Kore">coreano</script>
  671. <script type="Kpel" draft="contributed">Kpelle</script>
  672. <script type="Kthi" draft="contributed">kaithi</script>
  673. <script type="Lana" draft="contributed">lanna</script>
  674. <script type="Laoo">lao</script>
  675. <script type="Latf">variante fraktur del latino</script>
  676. <script type="Latg">variante gaelica del latino</script>
  677. <script type="Latn">latino</script>
  678. <script type="Lepc" draft="contributed">lepcha</script>
  679. <script type="Limb">limbu</script>
  680. <script type="Lina">lineare A</script>
  681. <script type="Linb">lineare B</script>
  682. <script type="Lisu" draft="contributed">lisu</script>
  683. <script type="Loma" draft="contributed">loma</script>
  684. <script type="Lyci" draft="contributed">lyci</script>
  685. <script type="Lydi" draft="contributed">lydi</script>
  686. <script type="Mand" draft="contributed">mandaico</script>
  687. <script type="Mani" draft="contributed">manicheo</script>
  688. <script type="Maya" draft="contributed">geroglifici maya</script>
  689. <script type="Mend" draft="contributed">mende</script>
  690. <script type="Merc" draft="contributed">corsivo meroitico</script>
  691. <script type="Mero" draft="contributed">meroitico</script>
  692. <script type="Mlym">malayalam</script>
  693. <script type="Mong">mongolo</script>
  694. <script type="Moon" draft="contributed">moon</script>
  695. <script type="Mroo" draft="contributed">mro</script>
  696. <script type="Mtei" draft="contributed">meetei mayek</script>
  697. <script type="Mymr">myanmar</script>
  698. <script type="Narb" draft="contributed">arabo settentrionale antico</script>
  699. <script type="Nbat" draft="contributed">nabateo</script>
  700. <script type="Nkgb" draft="contributed">geba naxi</script>
  701. <script type="Nkoo" draft="contributed">n'ko</script>
  702. <script type="Nshu" draft="contributed">nushu</script>
  703. <script type="Ogam">ogham</script>
  704. <script type="Olck" draft="contributed">ol chiki</script>
  705. <script type="Orkh" draft="contributed">orkhon</script>
  706. <script type="Orya">oriya</script>
  707. <script type="Osma">osmanya</script>
  708. <script type="Palm" draft="contributed">palmireno</script>
  709. <script type="Perm" draft="contributed">permico antico</script>
  710. <script type="Phag" draft="contributed">phags-pa</script>
  711. <script type="Phli" draft="contributed">pahlavi delle iscrizioni</script>
  712. <script type="Phlp" draft="contributed">pahlavi psalter</script>
  713. <script type="Phlv" draft="contributed">pahlavi book</script>
  714. <script type="Phnx" draft="contributed">fenicio</script>
  715. <script type="Plrd" draft="contributed">fonetica di pollard</script>
  716. <script type="Prti" draft="contributed">partico delle iscrizioni</script>
  717. <script type="Rjng" draft="contributed">rejang</script>
  718. <script type="Roro" draft="contributed">rongorongo</script>
  719. <script type="Runr">runico</script>
  720. <script type="Samr" draft="contributed">samaritano</script>
  721. <script type="Sara" draft="contributed">sarati</script>
  722. <script type="Sarb" draft="contributed">arabo meridionale antico</script>
  723. <script type="Saur" draft="contributed">saurashtra</script>
  724. <script type="Sgnw" draft="contributed">linguaggio dei segni</script>
  725. <script type="Shaw">shaviano</script>
  726. <script type="Shrd" draft="contributed">sharada</script>
  727. <script type="Sind" draft="contributed">khudawadi</script>
  728. <script type="Sinh">singalese</script>
  729. <script type="Sora" draft="contributed">sora sompeng</script>
  730. <script type="Sund" draft="contributed">sundanese</script>
  731. <script type="Sylo" draft="contributed">syloti nagri</script>
  732. <script type="Syrc">siriano</script>
  733. <script type="Syre" draft="contributed">siriaco estrangelo</script>
  734. <script type="Syrj" draft="contributed">siriaco occidentale</script>
  735. <script type="Syrn" draft="contributed">siriaco orientale</script>
  736. <script type="Tagb">tagbanwa</script>
  737. <script type="Takr" draft="contributed">takri</script>
  738. <script type="Tale">tai le</script>
  739. <script type="Talu" draft="contributed">tai lue</script>
  740. <script type="Taml">tamil</script>
  741. <script type="Tang" draft="contributed">tangut</script>
  742. <script type="Tavt" draft="contributed">tai viet</script>
  743. <script type="Telu">telugu</script>
  744. <script type="Teng" draft="contributed">tengwar</script>
  745. <script type="Tfng" draft="contributed">tifinagh</script>
  746. <script type="Tglg">tagalog</script>
  747. <script type="Thaa">thaana</script>
  748. <script type="Thai">tailandese</script>
  749. <script type="Tibt">tibetano</script>
  750. <script type="Tirh" draft="contributed">tirhuta</script>
  751. <script type="Ugar">ugarita</script>
  752. <script type="Vaii" draft="contributed">vaii</script>
  753. <script type="Visp" draft="contributed">alfabeto visivo</script>
  754. <script type="Wara" draft="contributed">varang kshiti</script>
  755. <script type="Wole" draft="contributed">woleai</script>
  756. <script type="Xpeo" draft="contributed">persiano antico</script>
  757. <script type="Xsux" draft="contributed">sumero-accadiano cuneiforme</script>
  758. <script type="Yiii">yi</script>
  759. <script type="Zinh">ereditato</script>
  760. <script type="Zmth" draft="contributed">notazione matematica</script>
  761. <script type="Zsym">simboli</script>
  762. <script type="Zxxx">non scritto</script>
  763. <script type="Zyyy">comune</script>
  764. <script type="Zzzz">ignoto o non valido</script>
  765. </scripts>
  766. <territories>
  767. <territory type="001">Mondo</territory>
  768. <territory type="002">Africa</territory>
  769. <territory type="003">Nord America</territory>
  770. <territory type="005">America del Sud</territory>
  771. <territory type="009">Oceania</territory>
  772. <territory type="011">Africa occidentale</territory>
  773. <territory type="013">America centrale</territory>
  774. <territory type="014">Africa orientale</territory>
  775. <territory type="015">Africa del Nord</territory>
  776. <territory type="017">Africa centrale</territory>
  777. <territory type="018">Africa del Sud</territory>
  778. <territory type="019">Americhe</territory>
  779. <territory type="021">America del Nord</territory>
  780. <territory type="029">Caraibi</territory>
  781. <territory type="030">Asia orientale</territory>
  782. <territory type="034">Asia del Sud</territory>
  783. <territory type="035">Asia sudorientale</territory>
  784. <territory type="039">Europa del Sud</territory>
  785. <territory type="053">Australasia</territory>
  786. <territory type="054">Melanesia</territory>
  787. <territory type="057">Regione Micronesiana</territory>
  788. <territory type="061">Polinesia</territory>
  789. <territory type="142">Asia</territory>
  790. <territory type="143">Asia centrale</territory>
  791. <territory type="145">Asia occidentale</territory>
  792. <territory type="150">Europa</territory>
  793. <territory type="151">Europa orientale</territory>
  794. <territory type="154">Europa del Nord</territory>
  795. <territory type="155">Europa occidentale</territory>
  796. <territory type="419">America Latina</territory>
  797. <territory type="AC">Isola di Ascensione</territory>
  798. <territory type="AD">Andorra</territory>
  799. <territory type="AE">Emirati Arabi Uniti</territory>
  800. <territory type="AF">Afghanistan</territory>
  801. <territory type="AG">Antigua e Barbuda</territory>
  802. <territory type="AI">Anguilla</territory>
  803. <territory type="AL">Albania</territory>
  804. <territory type="AM">Armenia</territory>
  805. <territory type="AN">Antille Olandesi</territory>
  806. <territory type="AO">Angola</territory>
  807. <territory type="AQ">Antartide</territory>
  808. <territory type="AR">Argentina</territory>
  809. <territory type="AS">Samoa Americane</territory>
  810. <territory type="AT">Austria</territory>
  811. <territory type="AU">Australia</territory>
  812. <territory type="AW">Aruba</territory>
  813. <territory type="AX">Isole Aland</territory>
  814. <territory type="AZ">Azerbaigian</territory>
  815. <territory type="BA">Bosnia Erzegovina</territory>
  816. <territory type="BB">Barbados</territory>
  817. <territory type="BD">Bangladesh</territory>
  818. <territory type="BE">Belgio</territory>
  819. <territory type="BF">Burkina Faso</territory>
  820. <territory type="BG">Bulgaria</territory>
  821. <territory type="BH">Bahrein</territory>
  822. <territory type="BI">Burundi</territory>
  823. <territory type="BJ">Benin</territory>
  824. <territory type="BL">San Bartolomeo</territory>
  825. <territory type="BM">Bermuda</territory>
  826. <territory type="BN">Brunei</territory>
  827. <territory type="BO">Bolivia</territory>
  828. <territory type="BQ">Caraibi Olandesi</territory>
  829. <territory type="BR">Brasile</territory>
  830. <territory type="BS">Bahamas</territory>
  831. <territory type="BT">Bhutan</territory>
  832. <territory type="BV">Isola Bouvet</territory>
  833. <territory type="BW">Botswana</territory>
  834. <territory type="BY">Bielorussia</territory>
  835. <territory type="BZ">Belize</territory>
  836. <territory type="CA">Canada</territory>
  837. <territory type="CC">Isole Cocos</territory>
  838. <territory type="CD">Congo - Kinshasa</territory>
  839. <territory type="CD" alt="variant">Congo - RDC</territory>
  840. <territory type="CF">Repubblica Centrafricana</territory>
  841. <territory type="CG">Congo</territory>
  842. <territory type="CG" alt="variant">Repubblica del Congo</territory>
  843. <territory type="CH">Svizzera</territory>
  844. <territory type="CI">Costa d’Avorio</territory>
  845. <territory type="CI" alt="variant">Costa d'Avorio</territory>
  846. <territory type="CK">Isole Cook</territory>
  847. <territory type="CL">Cile</territory>
  848. <territory type="CM">Camerun</territory>
  849. <territory type="CN">Cina</territory>
  850. <territory type="CO">Colombia</territory>
  851. <territory type="CP">Isola di Clipperton</territory>
  852. <territory type="CR">Costa Rica</territory>
  853. <territory type="CU">Cuba</territory>
  854. <territory type="CV">Capo Verde</territory>
  855. <territory type="CW">Curaçao</territory>
  856. <territory type="CX">Isola di Christmas</territory>
  857. <territory type="CY">Cipro</territory>
  858. <territory type="CZ">Repubblica Ceca</territory>
  859. <territory type="DE">Germania</territory>
  860. <territory type="DG">Diego Garcia</territory>
  861. <territory type="DJ">Gibuti</territory>
  862. <territory type="DK">Danimarca</territory>
  863. <territory type="DM">Dominica</territory>
  864. <territory type="DO">Repubblica Dominicana</territory>
  865. <territory type="DZ">Algeria</territory>
  866. <territory type="EA">Ceuta e Melilla</territory>
  867. <territory type="EC">Ecuador</territory>
  868. <territory type="EE">Estonia</territory>
  869. <territory type="EG">Egitto</territory>
  870. <territory type="EH">Sahara Occidentale</territory>
  871. <territory type="ER">Eritrea</territory>
  872. <territory type="ES">Spagna</territory>
  873. <territory type="ET">Etiopia</territory>
  874. <territory type="EU">Unione Europea</territory>
  875. <territory type="FI">Finlandia</territory>
  876. <territory type="FJ">Figi</territory>
  877. <territory type="FK">Isole Falkland</territory>
  878. <territory type="FK" alt="variant">Isole Falkland (isole Malvine)</territory>
  879. <territory type="FM">Micronesia</territory>
  880. <territory type="FO">Isole Faroe</territory>
  881. <territory type="FR">Francia</territory>
  882. <territory type="GA">Gabon</territory>
  883. <territory type="GB">Regno Unito</territory>
  884. <territory type="GB" alt="short">GB</territory>
  885. <territory type="GD">Grenada</territory>
  886. <territory type="GE">Georgia</territory>
  887. <territory type="GF">Guiana Francese</territory>
  888. <territory type="GG">Guernsey</territory>
  889. <territory type="GH">Ghana</territory>
  890. <territory type="GI">Gibilterra</territory>
  891. <territory type="GL">Groenlandia</territory>
  892. <territory type="GM">Gambia</territory>
  893. <territory type="GN">Guinea</territory>
  894. <territory type="GP">Guadalupa</territory>
  895. <territory type="GQ">Guinea Equatoriale</territory>
  896. <territory type="GR">Grecia</territory>
  897. <territory type="GS">Georgia del Sud e Isole Sandwich del Sud</territory>
  898. <territory type="GT">Guatemala</territory>
  899. <territory type="GU">Guam</territory>
  900. <territory type="GW">Guinea-Bissau</territory>
  901. <territory type="GY">Guyana</territory>
  902. <territory type="HK">RAS di Hong Kong</territory>
  903. <territory type="HK" alt="short">Hong-Kong</territory>
  904. <territory type="HM">Isole Heard ed Isole McDonald</territory>
  905. <territory type="HN">Honduras</territory>
  906. <territory type="HR">Croazia</territory>
  907. <territory type="HT">Haiti</territory>
  908. <territory type="HU">Ungheria</territory>
  909. <territory type="IC">Isole Canarie</territory>
  910. <territory type="ID">Indonesia</territory>
  911. <territory type="IE">Irlanda</territory>
  912. <territory type="IL">Israele</territory>
  913. <territory type="IM">Isola di Man</territory>
  914. <territory type="IN">India</territory>
  915. <territory type="IO">Territorio Britannico dell’Oceano Indiano</territory>
  916. <territory type="IQ">Iraq</territory>
  917. <territory type="IR">Iran</territory>
  918. <territory type="IS">Islanda</territory>
  919. <territory type="IT">Italia</territory>
  920. <territory type="JE">Jersey</territory>
  921. <territory type="JM">Giamaica</territory>
  922. <territory type="JO">Giordania</territory>
  923. <territory type="JP">Giappone</territory>
  924. <territory type="KE">Kenya</territory>
  925. <territory type="KG">Kirghizistan</territory>
  926. <territory type="KH">Cambogia</territory>
  927. <territory type="KI">Kiribati</territory>
  928. <territory type="KM">Comore</territory>
  929. <territory type="KN">Saint Kitts e Nevis</territory>
  930. <territory type="KP">Corea del Nord</territory>
  931. <territory type="KR">Corea del Sud</territory>
  932. <territory type="KW">Kuwait</territory>
  933. <territory type="KY">Isole Cayman</territory>
  934. <territory type="KZ">Kazakistan</territory>
  935. <territory type="LA">Laos</territory>
  936. <territory type="LB">Libano</territory>
  937. <territory type="LC">Saint Lucia</territory>
  938. <territory type="LI">Liechtenstein</territory>
  939. <territory type="LK">Sri Lanka</territory>
  940. <territory type="LR">Liberia</territory>
  941. <territory type="LS">Lesotho</territory>
  942. <territory type="LT">Lituania</territory>
  943. <territory type="LU">Lussemburgo</territory>
  944. <territory type="LV">Lettonia</territory>
  945. <territory type="LY">Libia</territory>
  946. <territory type="MA">Marocco</territory>
  947. <territory type="MC">Monaco</territory>
  948. <territory type="MD">Moldavia</territory>
  949. <territory type="ME">Montenegro</territory>
  950. <territory type="MF">Saint Martin</territory>
  951. <territory type="MG">Madagascar</territory>
  952. <territory type="MH">Isole Marshall</territory>
  953. <territory type="MK">Repubblica di Macedonia</territory>
  954. <territory type="MK" alt="variant">Repubblica ex Jugoslava di Macedonia</territory>
  955. <territory type="ML">Mali</territory>
  956. <territory type="MM">Myanmar</territory>
  957. <territory type="MN">Mongolia</territory>
  958. <territory type="MO">RAS di Macao</territory>
  959. <territory type="MO" alt="short">Macao</territory>
  960. <territory type="MP">Isole Marianne Settentrionali</territory>
  961. <territory type="MQ">Martinica</territory>
  962. <territory type="MR">Mauritania</territory>
  963. <territory type="MS">Montserrat</territory>
  964. <territory type="MT">Malta</territory>
  965. <territory type="MU">Mauritius</territory>
  966. <territory type="MV">Maldive</territory>
  967. <territory type="MW">Malawi</territory>
  968. <territory type="MX">Messico</territory>
  969. <territory type="MY">Malesia</territory>
  970. <territory type="MZ">Mozambico</territory>
  971. <territory type="NA">Namibia</territory>
  972. <territory type="NC">Nuova Caledonia</territory>
  973. <territory type="NE">Niger</territory>
  974. <territory type="NF">Isola Norfolk</territory>
  975. <territory type="NG">Nigeria</territory>
  976. <territory type="NI">Nicaragua</territory>
  977. <territory type="NL">Paesi Bassi</territory>
  978. <territory type="NO">Norvegia</territory>
  979. <territory type="NP">Nepal</territory>
  980. <territory type="NR">Nauru</territory>
  981. <territory type="NU">Niue</territory>
  982. <territory type="NZ">Nuova Zelanda</territory>
  983. <territory type="OM">Oman</territory>
  984. <territory type="PA">Panama</territory>
  985. <territory type="PE">Perù</territory>
  986. <territory type="PF">Polinesia Francese</territory>
  987. <territory type="PG">Papua Nuova Guinea</territory>
  988. <territory type="PH">Filippine</territory>
  989. <territory type="PK">Pakistan</territory>
  990. <territory type="PL">Polonia</territory>
  991. <territory type="PM">Saint Pierre e Miquelon</territory>
  992. <territory type="PN">Isole Pitcairn</territory>
  993. <territory type="PR">Portorico</territory>
  994. <territory type="PS">Territori palestinesi</territory>
  995. <territory type="PS" alt="short">Palestina</territory>
  996. <territory type="PT">Portogallo</territory>
  997. <territory type="PW">Palau</territory>
  998. <territory type="PY">Paraguay</territory>
  999. <territory type="QA">Qatar</territory>
  1000. <territory type="QO">Oceania lontana</territory>
  1001. <territory type="RE">Réunion</territory>
  1002. <territory type="RO">Romania</territory>
  1003. <territory type="RS">Serbia</territory>
  1004. <territory type="RU">Federazione Russa</territory>
  1005. <territory type="RW">Ruanda</territory>
  1006. <territory type="SA">Arabia Saudita</territory>
  1007. <territory type="SB">Isole Solomon</territory>
  1008. <territory type="SC">Seychelles</territory>
  1009. <territory type="SD">Sudan</territory>
  1010. <territory type="SE">Svezia</territory>
  1011. <territory type="SG">Singapore</territory>
  1012. <territory type="SH">Sant’Elena</territory>
  1013. <territory type="SI">Slovenia</territory>
  1014. <territory type="SJ">Svalbard e Jan Mayen</territory>
  1015. <territory type="SK">Slovacchia</territory>
  1016. <territory type="SL">Sierra Leone</territory>
  1017. <territory type="SM">San Marino</territory>
  1018. <territory type="SN">Senegal</territory>
  1019. <territory type="SO">Somalia</territory>
  1020. <territory type="SR">Suriname</territory>
  1021. <territory type="SS">Sudan del Sud</territory>
  1022. <territory type="ST">Sao Tomé e Príncipe</territory>
  1023. <territory type="SV">El Salvador</territory>
  1024. <territory type="SX">Sint Maarten</territory>
  1025. <territory type="SY">Siria</territory>
  1026. <territory type="SZ">Swaziland</territory>
  1027. <territory type="TA">Tristan da Cunha</territory>
  1028. <territory type="TC">Isole Turks e Caicos</territory>
  1029. <territory type="TD">Ciad</territory>
  1030. <territory type="TF">Territori australi francesi</territory>
  1031. <territory type="TG">Togo</territory>
  1032. <territory type="TH">Tailandia</territory>
  1033. <territory type="TJ">Tagikistan</territory>
  1034. <territory type="TK">Tokelau</territory>
  1035. <territory type="TL">Timor Est</territory>
  1036. <territory type="TM">Turkmenistan</territory>
  1037. <territory type="TN">Tunisia</territory>
  1038. <territory type="TO">Tonga</territory>
  1039. <territory type="TR">Turchia</territory>
  1040. <territory type="TT">Trinidad e Tobago</territory>
  1041. <territory type="TV">Tuvalu</territory>
  1042. <territory type="TW">Taiwan</territory>
  1043. <territory type="TZ">Tanzania</territory>
  1044. <territory type="UA">Ucraina</territory>
  1045. <territory type="UG">Uganda</territory>
  1046. <territory type="UM">Isole minori lontane dagli USA</territory>
  1047. <territory type="US">Stati Uniti</territory>
  1048. <territory type="US" alt="short" draft="contributed">USA</territory>
  1049. <territory type="UY">Uruguay</territory>
  1050. <territory type="UZ">Uzbekistan</territory>
  1051. <territory type="VA">Città del Vaticano</territory>
  1052. <territory type="VC">Saint Vincent e Grenadines</territory>
  1053. <territory type="VE">Venezuela</territory>
  1054. <territory type="VG">Isole Vergini Britanniche</territory>
  1055. <territory type="VI">Isole Vergini Americane</territory>
  1056. <territory type="VN">Vietnam</territory>
  1057. <territory type="VU">Vanuatu</territory>
  1058. <territory type="WF">Wallis e Futuna</territory>
  1059. <territory type="WS">Samoa</territory>
  1060. <territory type="XK">Kosovo</territory>
  1061. <territory type="YE">Yemen</territory>
  1062. <territory type="YT">Mayotte</territory>
  1063. <territory type="ZA">Sudafrica</territory>
  1064. <territory type="ZM">Zambia</territory>
  1065. <territory type="ZW">Zimbabwe</territory>
  1066. <territory type="ZZ">Regione non valida o sconosciuta</territory>
  1067. </territories>
  1068. <variants>
  1069. <variant type="1901">ortografia tradizionale tedesca</variant>
  1070. <variant type="1994" draft="contributed">ortografia resiana standard</variant>
  1071. <variant type="1996">ortografia tedesca del 1996</variant>
  1072. <variant type="1606NICT" draft="contributed">francese medio-tardo fino al 1606</variant>
  1073. <variant type="1694ACAD" draft="contributed">primo francese moderno</variant>
  1074. <variant type="1959ACAD" draft="contributed">accademico</variant>
  1075. <variant type="ALALC97" draft="contributed">romanizzazione di ALA-LC, versione 1997</variant>
  1076. <variant type="ALUKU" draft="contributed">dialetto aluku</variant>
  1077. <variant type="AREVELA">armeno orientale</variant>
  1078. <variant type="AREVMDA">armeno occidentale</variant>
  1079. <variant type="BAKU1926" draft="contributed">alfabeto latino altaico unificato</variant>
  1080. <variant type="BISKE" draft="contributed">dialetto San Giorgio/Bila</variant>
  1081. <variant type="BOHORIC" draft="contributed">alfabeto bohorič</variant>
  1082. <variant type="BOONT">boontling</variant>
  1083. <variant type="DAJNKO" draft="contributed">alfabeto Dajnko</variant>
  1084. <variant type="EMODENG" draft="contributed">primo inglese moderno</variant>
  1085. <variant type="FONIPA">alfabeto fonetico internazionale IPA</variant>
  1086. <variant type="FONUPA">alfabeto fonetico uralico UPA</variant>
  1087. <variant type="HEPBURN" draft="contributed">romanizzazione Hepburn</variant>
  1088. <variant type="KKCOR" draft="contributed">ortografia comune</variant>
  1089. <variant type="KSCOR" draft="contributed">ortografia standard</variant>
  1090. <variant type="LIPAW" draft="contributed">dialetto resiano di Lipovaz</variant>
  1091. <variant type="METELKO" draft="contributed">alfabeto Metelko</variant>
  1092. <variant type="MONOTON">monotonico</variant>
  1093. <variant type="NDYUKA" draft="contributed">dialetto Ndyuka</variant>
  1094. <variant type="NEDIS">dialetto del Natisone</variant>
  1095. <variant type="NJIVA" draft="contributed">dialetto Gniva/Njiva</variant>
  1096. <variant type="NULIK" draft="contributed">volapük moderno</variant>
  1097. <variant type="OSOJS" draft="contributed">dialetto Oseacco/Osojane</variant>
  1098. <variant type="PAMAKA" draft="contributed">dialetto Pamaka</variant>
  1099. <variant type="PINYIN" draft="contributed">romanizzazione Pinyin</variant>
  1100. <variant type="POLYTON">politonico</variant>
  1101. <variant type="POSIX">computer</variant>
  1102. <variant type="REVISED">ortografia revisionata</variant>
  1103. <variant type="RIGIK" draft="contributed">Volapük classico</variant>
  1104. <variant type="ROZAJ">resiano</variant>
  1105. <variant type="SAAHO">saho</variant>
  1106. <variant type="SCOTLAND" draft="contributed">inglese scozzese standard</variant>
  1107. <variant type="SCOUSE" draft="contributed">scouse</variant>
  1108. <variant type="SOLBA" draft="contributed">dialetto Stolvizza/Solbica</variant>
  1109. <variant type="TARASK" draft="contributed">ortografia taraskievica</variant>
  1110. <variant type="UCCOR" draft="contributed">ortografia unificata</variant>
  1111. <variant type="UCRCOR" draft="contributed">ortografia rivista unificata</variant>
  1112. <variant type="VALENCIA" draft="contributed">valenziano</variant>
  1113. <variant type="WADEGILE" draft="contributed">romanizzazione Wade-Giles</variant>
  1114. </variants>
  1115. <keys>
  1116. <key type="calendar">Calendario</key>
  1117. <key type="colAlternate">Ordinamento Ignora simboli</key>
  1118. <key type="colBackwards">Ordinamento Accento capovolto</key>
  1119. <key type="colCaseFirst">Ordinamento Maiuscole/Minuscole</key>
  1120. <key type="colCaseLevel">Ordinamento Distinzione fra maiuscole e minuscole</key>
  1121. <key type="colHiraganaQuaternary">Ordinamento Kana</key>
  1122. <key type="collation">Ordinamento</key>
  1123. <key type="colNormalization">Ordinamento normalizzato</key>
  1124. <key type="colNumeric">Ordinamento numerico</key>
  1125. <key type="colStrength">Sicurezza ordinamento</key>
  1126. <key type="currency">Valuta</key>
  1127. <key type="numbers">Numeri</key>
  1128. <key type="timezone">Fuso orario</key>
  1129. <key type="va">Variante lingua</key>
  1130. <key type="variableTop">Ordina come simboli</key>
  1131. <key type="x">Uso privato</key>
  1132. </keys>
  1133. <types>
  1134. <type type="arab" key="numbers">Cifre indo-arabe</type>
  1135. <type type="arabext" key="numbers">Cifre indo-arabe estese</type>
  1136. <type type="armn" key="numbers">Numeri armeni</type>
  1137. <type type="armnlow" key="numbers">Numeri armeni minuscoli</type>
  1138. <type type="bali" key="numbers">Cifre balinesi</type>
  1139. <type type="beng" key="numbers">Cifre bengalesi</type>
  1140. <type type="big5han" key="collation">cinese tradizionale</type>
  1141. <type type="brah" key="numbers">Cifre brahmi</type>
  1142. <type type="buddhist" key="calendar">calendario buddista</type>
  1143. <type type="cakm" key="numbers">Cifre chakma</type>
  1144. <type type="cham" key="numbers">Cifre cham</type>
  1145. <type type="chinese" key="calendar">calendario cinese</type>
  1146. <type type="coptic" key="calendar" draft="contributed">Calendario copto</type>
  1147. <type type="dangi" key="calendar">Calendario Dangi</type>
  1148. <type type="deva" key="numbers">Cifre devanagari</type>
  1149. <type type="dictionary" key="collation">Ordinamento dizionario</type>
  1150. <type type="ducet" key="collation">Ordinamento Unicode predefinito</type>
  1151. <type type="ethi" key="numbers">Numeri etiopi</type>
  1152. <type type="ethiopic" key="calendar">Calendario etiope</type>
  1153. <type type="ethiopic-amete-alem" key="calendar">Calendario etiope Amete Alem</type>
  1154. <type type="finance" key="numbers">Numeri finanziari</type>
  1155. <type type="fullwide" key="numbers">Cifre a larghezza intera</type>
  1156. <type type="gb2312han" key="collation">cinese semplificato</type>
  1157. <type type="geor" key="numbers">Numeri georgiani</type>
  1158. <type type="gregorian" key="calendar">Calendario gregoriano</type>
  1159. <type type="grek" key="numbers">Numeri greci</type>
  1160. <type type="greklow" key="numbers">Numeri greci minuscoli</type>
  1161. <type type="gujr" key="numbers">Cifre gujarati</type>
  1162. <type type="guru" key="numbers">Cifre gurmukhi</type>
  1163. <type type="hanidec" key="numbers">Numeri decimali cinesi</type>
  1164. <type type="hans" key="numbers">Numeri in cinese semplificato</type>
  1165. <type type="hansfin" key="numbers">Numeri finanziari in cinese semplificato</type>
  1166. <type type="hant" key="numbers">Numeri in cinese tradizionale</type>
  1167. <type type="hantfin" key="numbers">Numeri finanziari in cinese tradizionale</type>
  1168. <type type="hebr" key="numbers">Numeri ebraici</type>
  1169. <type type="hebrew" key="calendar">calendario ebraico</type>
  1170. <type type="identical" key="colStrength">Ordina tutto</type>
  1171. <type type="indian" key="calendar">calendario nazionale indiano</type>
  1172. <type type="islamic" key="calendar">calendario islamico</type>
  1173. <type type="islamic-civil" key="calendar">calendario civile islamico</type>
  1174. <type type="islamic-rgsa" key="calendar">Calendario islamico (Arabia Saudita, osservazione)</type>
  1175. <type type="islamic-tbla" key="calendar">Calendario islamico (tabulare, era astronomica)</type>
  1176. <type type="islamic-umalqura" key="calendar">Calendario islamico (Umm al-Qura)</type>
  1177. <type type="iso8601" key="calendar">Calendario ISO-8601</type>
  1178. <type type="japanese" key="calendar">calendario giapponese</type>
  1179. <type type="java" key="numbers">Cifre giavanesi</type>
  1180. <type type="jpan" key="numbers">Numeri giapponesi</type>
  1181. <type type="jpanfin" key="numbers">Numeri finanziari giapponesi</type>
  1182. <type type="kali" key="numbers">Cifre Kayah Li</type>
  1183. <type type="khmr" key="numbers">Cifre khmer</type>
  1184. <type type="knda" key="numbers">Cifre kannada</type>
  1185. <type type="lana" key="numbers">Cifre tai tham hora</type>
  1186. <type type="lanatham" key="numbers">Cifre tai tham tham</type>
  1187. <type type="laoo" key="numbers">Cifre lao</type>
  1188. <type type="latn" key="numbers">Cifre occidentali</type>
  1189. <type type="lepc" key="numbers">Cifre lepcha</type>
  1190. <type type="limb" key="numbers">Cifre limbu</type>
  1191. <type type="lower" key="colCaseFirst">Ordina prima lettere minuscole</type>
  1192. <type type="mlym" key="numbers">Cifre malayalam</type>
  1193. <type type="mong" key="numbers" draft="contributed">Numeri mongoli</type>
  1194. <type type="mtei" key="numbers">Cifre Meetei Mayek</type>
  1195. <type type="mymr" key="numbers">Cifre birmane</type>
  1196. <type type="mymrshan" key="numbers">Cifre shan birmane</type>
  1197. <type type="native" key="numbers" draft="contributed">Cifre native</type>
  1198. <type type="nkoo" key="numbers">Cifre N'Ko</type>
  1199. <type type="no" key="colBackwards">Ordina accenti normalmente</type>
  1200. <type type="no" key="colCaseFirst">Ordina lettere maiuscole/minuscole normalmente</type>
  1201. <type type="no" key="colCaseLevel">Ordina senza distinzione tra maiuscole e minuscole</type>
  1202. <type type="no" key="colHiraganaQuaternary">Ordina Kana separatamente</type>
  1203. <type type="no" key="colNormalization">Ordina senza normalizzazione</type>
  1204. <type type="no" key="colNumeric">Ordina cifre individualmente</type>
  1205. <type type="non-ignorable" key="colAlternate">Ordina simboli</type>
  1206. <type type="olck" key="numbers">Cifre Ol Chiki</type>
  1207. <type type="orya" key="numbers">Cifre oriya</type>
  1208. <type type="osma" key="numbers">Cifre osmanya</type>
  1209. <type type="persian" key="calendar">Calendario persiano</type>
  1210. <type type="phonebook" key="collation">ordine elenco telefonico</type>
  1211. <type type="phonetic" key="collation">Ordinamento fonetico</type>
  1212. <type type="pinyin" key="collation">ordine pinyin</type>
  1213. <type type="primary" key="colStrength">Ordina solo lettere di base</type>
  1214. <type type="quaternary" key="colStrength">Ordina accenti/lettere/larghezza/Kana</type>
  1215. <type type="reformed" key="collation">Ordinamento riformato</type>
  1216. <type type="roc" key="calendar">Calendario Minguo</type>
  1217. <type type="roman" key="numbers">Numeri romani</type>
  1218. <type type="romanlow" key="numbers">Numeri romani minuscoli</type>
  1219. <type type="saur" key="numbers">Cifre saurashtra</type>
  1220. <type type="search" key="collation">Ricerca generica</type>
  1221. <type type="searchjl" key="collation">Cerca per consonante hangul iniziale</type>
  1222. <type type="secondary" key="colStrength">Ordina accenti</type>
  1223. <type type="shifted" key="colAlternate">Ordina ignorando i simboli</type>
  1224. <type type="shrd" key="numbers">Cifre sharada</type>
  1225. <type type="sora" key="numbers">Cifre Sora Sompeng</type>
  1226. <type type="standard" key="collation">Ordinamento standard</type>
  1227. <type type="stroke" key="collation">ordine segni</type>
  1228. <type type="sund" key="numbers">Cifre sundanesi</type>
  1229. <type type="takr" key="numbers">Cifre takri</type>
  1230. <type type="talu" key="numbers">Cifre nuovo Tai Lue</type>
  1231. <type type="taml" key="numbers">Numeri tamil tradizionali</type>
  1232. <type type="tamldec" key="numbers">Cifre tamil</type>
  1233. <type type="telu" key="numbers">Cifre telugu</type>
  1234. <type type="tertiary" key="colStrength">Ordina accenti/lettere/larghezza</type>
  1235. <type type="thai" key="numbers">Cifre thailandesi</type>
  1236. <type type="tibt" key="numbers">Cifre tibetane</type>
  1237. <type type="traditional" key="collation">ordine tradizionale</type>
  1238. <type type="traditional" key="numbers">Numeri tradizionali</type>
  1239. <type type="unihan" key="collation">Ordinamento in base ai radicali</type>
  1240. <type type="upper" key="colCaseFirst" draft="contributed">Ordina prima lettere minuscole</type>
  1241. <type type="vaii" key="numbers">Cifre Vai</type>
  1242. <type type="yes" key="colBackwards">Ordina accenti capovolti</type>
  1243. <type type="yes" key="colCaseLevel" draft="contributed">Ordina distinzione tra maiuscole e minuscole</type>
  1244. <type type="yes" key="colHiraganaQuaternary">Ordina Kana diversamente</type>
  1245. <type type="yes" key="colNormalization">Ordina Unicode normalizzato</type>
  1246. <type type="yes" key="colNumeric">Ordina cifre numericamente</type>
  1247. <type type="zhuyin" key="collation">Ordinamento Zhuyin</type>
  1248. </types>
  1249. <transformNames>
  1250. <transformName type="BGN" draft="contributed">BGN</transformName>
  1251. <transformName type="Numeric" draft="contributed">Numerica</transformName>
  1252. <transformName type="Tone" draft="contributed">Tono</transformName>
  1253. <transformName type="UNGEGN" draft="contributed">UNGEGN</transformName>
  1254. <transformName type="x-Accents" draft="contributed">Accenti</transformName>
  1255. <transformName type="x-Fullwidth" draft="contributed">Larghezza intera</transformName>
  1256. <transformName type="x-Halfwidth" draft="contributed">Metà larghezza</transformName>
  1257. <transformName type="x-Jamo" draft="contributed">Jamo</transformName>
  1258. <transformName type="x-Pinyin" draft="contributed">Pinyin</transformName>
  1259. <transformName type="x-Publishing" draft="contributed">Pubblicazione</transformName>
  1260. </transformNames>
  1261. <measurementSystemNames>
  1262. <measurementSystemName type="metric">metrico</measurementSystemName>
  1263. <measurementSystemName type="UK">britannico</measurementSystemName>
  1264. <measurementSystemName type="US">USA</measurementSystemName>
  1265. </measurementSystemNames>
  1266. <codePatterns>
  1267. <codePattern type="language">Lingua: {0}</codePattern>
  1268. <codePattern type="script">Scrittura: {0}</codePattern>
  1269. <codePattern type="territory">Regione: {0}</codePattern>
  1270. </codePatterns>
  1271. </localeDisplayNames>
  1272. <contextTransforms>
  1273. <contextTransformUsage type="day-format-except-narrow">
  1274. <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
  1275. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1276. </contextTransformUsage>
  1277. <contextTransformUsage type="day-standalone-except-narrow">
  1278. <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
  1279. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1280. </contextTransformUsage>
  1281. <contextTransformUsage type="languages">
  1282. <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
  1283. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1284. </contextTransformUsage>
  1285. <contextTransformUsage type="month-format-except-narrow">
  1286. <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
  1287. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1288. </contextTransformUsage>
  1289. <contextTransformUsage type="month-standalone-except-narrow">
  1290. <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
  1291. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1292. </contextTransformUsage>
  1293. </contextTransforms>
  1294. <characters>
  1295. <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>
  1296. <exemplarCharacters type="auxiliary">[á â å ä ã æ ç ê ë í î ï ñ ô ö õ ø œ ß ú û ü ÿ]</exemplarCharacters>
  1297. <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>
  1298. <exemplarCharacters type="punctuation">[\- — , ; \: ! ? . … “ ” ( ) \[ \] \{ \} @ /]</exemplarCharacters>
  1299. <ellipsis type="final" draft="contributed">{0}…</ellipsis>
  1300. <ellipsis type="initial" draft="contributed">…{0}</ellipsis>
  1301. <ellipsis type="medial" draft="contributed">{0}…{1}</ellipsis>
  1302. <ellipsis type="word-final" draft="contributed">{0} …</ellipsis>
  1303. <ellipsis type="word-initial" draft="contributed">… {0}</ellipsis>
  1304. <ellipsis type="word-medial" draft="contributed">{0} … {1}</ellipsis>
  1305. <moreInformation draft="contributed">?</moreInformation>
  1306. </characters>
  1307. <delimiters>
  1308. <quotationStart>«</quotationStart>
  1309. <quotationEnd>»</quotationEnd>
  1310. <alternateQuotationStart>“</alternateQuotationStart>
  1311. <alternateQuotationEnd>”</alternateQuotationEnd>
  1312. </delimiters>
  1313. <dates>
  1314. <calendars>
  1315. <calendar type="buddhist">
  1316. <eras>
  1317. <eraAbbr>
  1318. <era type="0" draft="contributed">EB</era>
  1319. </eraAbbr>
  1320. </eras>
  1321. </calendar>
  1322. <calendar type="chinese">
  1323. <dateFormats>
  1324. <dateFormatLength type="full">
  1325. <dateFormat>
  1326. <pattern>EEEE d MMMM U</pattern>
  1327. </dateFormat>
  1328. </dateFormatLength>
  1329. <dateFormatLength type="long">
  1330. <dateFormat>
  1331. <pattern>dd MMMM U</pattern>
  1332. </dateFormat>
  1333. </dateFormatLength>
  1334. <dateFormatLength type="medium">
  1335. <dateFormat>
  1336. <pattern>dd/MMM U</pattern>
  1337. </dateFormat>
  1338. </dateFormatLength>
  1339. <dateFormatLength type="short">
  1340. <dateFormat>
  1341. <pattern>dd/MM/yy</pattern>
  1342. </dateFormat>
  1343. </dateFormatLength>
  1344. </dateFormats>
  1345. </calendar>
  1346. <calendar type="generic">
  1347. <dateFormats>
  1348. <dateFormatLength type="full">
  1349. <dateFormat>
  1350. <pattern>EEEE d MMMM y G</pattern>
  1351. </dateFormat>
  1352. </dateFormatLength>
  1353. <dateFormatLength type="long">
  1354. <dateFormat>
  1355. <pattern>dd MMMM y G</pattern>
  1356. </dateFormat>
  1357. </dateFormatLength>
  1358. <dateFormatLength type="medium">
  1359. <dateFormat>
  1360. <pattern>dd/MMM/y G</pattern>
  1361. </dateFormat>
  1362. </dateFormatLength>
  1363. <dateFormatLength type="short">
  1364. <dateFormat>
  1365. <pattern>dd/MM/yy GGGGG</pattern>
  1366. </dateFormat>
  1367. </dateFormatLength>
  1368. </dateFormats>
  1369. <dateTimeFormats>
  1370. <dateTimeFormatLength type="full">
  1371. <dateTimeFormat>
  1372. <pattern draft="contributed">{1} 'alle' {0}</pattern>
  1373. </dateTimeFormat>
  1374. </dateTimeFormatLength>
  1375. <dateTimeFormatLength type="long">
  1376. <dateTimeFormat>
  1377. <pattern draft="contributed">{1} 'alle' {0}</pattern>
  1378. </dateTimeFormat>
  1379. </dateTimeFormatLength>
  1380. <dateTimeFormatLength type="medium">
  1381. <dateTimeFormat>
  1382. <pattern draft="contributed">{1}, {0}</pattern>
  1383. </dateTimeFormat>
  1384. </dateTimeFormatLength>
  1385. <dateTimeFormatLength type="short">
  1386. <dateTimeFormat>
  1387. <pattern draft="contributed">{1}, {0}</pattern>
  1388. </dateTimeFormat>
  1389. </dateTimeFormatLength>
  1390. <availableFormats>
  1391. <dateFormatItem id="d">d</dateFormatItem>
  1392. <dateFormatItem id="Ed">E d</dateFormatItem>
  1393. <dateFormatItem id="Gy">y G</dateFormatItem>
  1394. <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
  1395. <dateFormatItem id="GyMMMd">d MMM y G</dateFormatItem>
  1396. <dateFormatItem id="GyMMMEd">E d MMM y G</dateFormatItem>
  1397. <dateFormatItem id="h">hh a</dateFormatItem>
  1398. <dateFormatItem id="H" draft="contributed">HH</dateFormatItem>
  1399. <dateFormatItem id="hm">hh:mm a</dateFormatItem>
  1400. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  1401. <dateFormatItem id="hms">hh:mm:ss a</dateFormatItem>
  1402. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  1403. <dateFormatItem id="M">L</dateFormatItem>
  1404. <dateFormatItem id="Md">d/M</dateFormatItem>
  1405. <dateFormatItem id="MEd">E d/M</dateFormatItem>
  1406. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1407. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  1408. <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
  1409. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1410. <dateFormatItem id="y">y G</dateFormatItem>
  1411. <dateFormatItem id="yyyy">y G</dateFormatItem>
  1412. <dateFormatItem id="yyyyM">M/y GGGGG</dateFormatItem>
  1413. <dateFormatItem id="yyyyMd">d/M/y GGGGG</dateFormatItem>
  1414. <dateFormatItem id="yyyyMEd">E d/M/y GGGGG</dateFormatItem>
  1415. <dateFormatItem id="yyyyMMM">MMM y G</dateFormatItem>
  1416. <dateFormatItem id="yyyyMMMd">d MMM y G</dateFormatItem>
  1417. <dateFormatItem id="yyyyMMMEd">E d MMM y G</dateFormatItem>
  1418. <dateFormatItem id="yyyyMMMM">MMMM y G</dateFormatItem>
  1419. <dateFormatItem id="yyyyQQQ">QQQ y G</dateFormatItem>
  1420. <dateFormatItem id="yyyyQQQQ">QQQQ y G</dateFormatItem>
  1421. </availableFormats>
  1422. <intervalFormats>
  1423. <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
  1424. <intervalFormatItem id="d">
  1425. <greatestDifference id="d">d-d</greatestDifference>
  1426. </intervalFormatItem>
  1427. <intervalFormatItem id="h">
  1428. <greatestDifference id="a">h a - h a</greatestDifference>
  1429. <greatestDifference id="h">h-h a</greatestDifference>
  1430. </intervalFormatItem>
  1431. <intervalFormatItem id="H">
  1432. <greatestDifference id="H">HH-HH</greatestDifference>
  1433. </intervalFormatItem>
  1434. <intervalFormatItem id="hm">
  1435. <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
  1436. <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
  1437. <greatestDifference id="m">h:mm-h:mm a</greatestDifference>
  1438. </intervalFormatItem>
  1439. <intervalFormatItem id="Hm">
  1440. <greatestDifference id="H">HH:mm-HH:mm</greatestDifference>
  1441. <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
  1442. </intervalFormatItem>
  1443. <intervalFormatItem id="hmv">
  1444. <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
  1445. <greatestDifference id="h">h:mm-h:mm a v</greatestDifference>
  1446. <greatestDifference id="m">h:mm-h:mm a v</greatestDifference>
  1447. </intervalFormatItem>
  1448. <intervalFormatItem id="Hmv">
  1449. <greatestDifference id="H">HH:mm-HH:mm v</greatestDifference>
  1450. <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
  1451. </intervalFormatItem>
  1452. <intervalFormatItem id="hv">
  1453. <greatestDifference id="a">h a - h a v</greatestDifference>
  1454. <greatestDifference id="h">h-h a v</greatestDifference>
  1455. </intervalFormatItem>
  1456. <intervalFormatItem id="Hv">
  1457. <greatestDifference id="H">HH-HH v</greatestDifference>
  1458. </intervalFormatItem>
  1459. <intervalFormatItem id="M">
  1460. <greatestDifference id="M">M-M</greatestDifference>
  1461. </intervalFormatItem>
  1462. <intervalFormatItem id="Md">
  1463. <greatestDifference id="d">dd/MM - dd/MM</greatestDifference>
  1464. <greatestDifference id="M">dd/MM - dd/MM</greatestDifference>
  1465. </intervalFormatItem>
  1466. <intervalFormatItem id="MEd">
  1467. <greatestDifference id="d">E dd/MM - E dd/MM</greatestDifference>
  1468. <greatestDifference id="M">E dd/MM - E dd/MM</greatestDifference>
  1469. </intervalFormatItem>
  1470. <intervalFormatItem id="MMM">
  1471. <greatestDifference id="M">MMM-MMM</greatestDifference>
  1472. </intervalFormatItem>
  1473. <intervalFormatItem id="MMMd">
  1474. <greatestDifference id="d">dd-dd MMM</greatestDifference>
  1475. <greatestDifference id="M">dd MMM - dd MMM</greatestDifference>
  1476. </intervalFormatItem>
  1477. <intervalFormatItem id="MMMEd">
  1478. <greatestDifference id="d">E dd - E dd MMM</greatestDifference>
  1479. <greatestDifference id="M">E dd MMM - E dd MMM</greatestDifference>
  1480. </intervalFormatItem>
  1481. <intervalFormatItem id="y">
  1482. <greatestDifference id="y">y-y G</greatestDifference>
  1483. </intervalFormatItem>
  1484. <intervalFormatItem id="yM">
  1485. <greatestDifference id="M">MM/y - MM/y G</greatestDifference>
  1486. <greatestDifference id="y">MM/y - MM/y G</greatestDifference>
  1487. </intervalFormatItem>
  1488. <intervalFormatItem id="yMd">
  1489. <greatestDifference id="d">dd/MM/y - dd/MM/y G</greatestDifference>
  1490. <greatestDifference id="M">dd/MM/y - dd/MM/y G</greatestDifference>
  1491. <greatestDifference id="y">dd/MM/y - dd/MM/y G</greatestDifference>
  1492. </intervalFormatItem>
  1493. <intervalFormatItem id="yMEd">
  1494. <greatestDifference id="d">E dd/MM/y - E dd/MM/y G</greatestDifference>
  1495. <greatestDifference id="M">E dd/MM/y - E dd/MM/y G</greatestDifference>
  1496. <greatestDifference id="y">E dd/MM/y - E dd/MM/y G</greatestDifference>
  1497. </intervalFormatItem>
  1498. <intervalFormatItem id="yMMM">
  1499. <greatestDifference id="M">MMM-MMM y G</greatestDifference>
  1500. <greatestDifference id="y">MMM y - MMM y G</greatestDifference>
  1501. </intervalFormatItem>
  1502. <intervalFormatItem id="yMMMd">
  1503. <greatestDifference id="d">dd-dd MMM y G</greatestDifference>
  1504. <greatestDifference id="M">dd MMM - dd MMM y G</greatestDifference>
  1505. <greatestDifference id="y">dd MMM y - dd MMM y G</greatestDifference>
  1506. </intervalFormatItem>
  1507. <intervalFormatItem id="yMMMEd">
  1508. <greatestDifference id="d">E d - E d MMM y G</greatestDifference>
  1509. <greatestDifference id="M">E d MMM - E d MMM y G</greatestDifference>
  1510. <greatestDifference id="y">E d MMM y - E d MMM y G</greatestDifference>
  1511. </intervalFormatItem>
  1512. <intervalFormatItem id="yMMMM">
  1513. <greatestDifference id="M">MMMM-MMMM y G</greatestDifference>
  1514. <greatestDifference id="y">MMMM y - MMMM y G</greatestDifference>
  1515. </intervalFormatItem>
  1516. </intervalFormats>
  1517. </dateTimeFormats>
  1518. </calendar>
  1519. <calendar type="gregorian">
  1520. <months>
  1521. <monthContext type="format">
  1522. <monthWidth type="abbreviated">
  1523. <month type="1">gen</month>
  1524. <month type="2">feb</month>
  1525. <month type="3">mar</month>
  1526. <month type="4">apr</month>
  1527. <month type="5">mag</month>
  1528. <month type="6">giu</month>
  1529. <month type="7">lug</month>
  1530. <month type="8">ago</month>
  1531. <month type="9">set</month>
  1532. <month type="10">ott</month>
  1533. <month type="11">nov</month>
  1534. <month type="12">dic</month>
  1535. </monthWidth>
  1536. <monthWidth type="narrow">
  1537. <month type="1">G</month>
  1538. <month type="2">F</month>
  1539. <month type="3">M</month>
  1540. <month type="4">A</month>
  1541. <month type="5">M</month>
  1542. <month type="6">G</month>
  1543. <month type="7">L</month>
  1544. <month type="8">A</month>
  1545. <month type="9">S</month>
  1546. <month type="10">O</month>
  1547. <month type="11">N</month>
  1548. <month type="12">D</month>
  1549. </monthWidth>
  1550. <monthWidth type="wide">
  1551. <month type="1">gennaio</month>
  1552. <month type="2">febbraio</month>
  1553. <month type="3">marzo</month>
  1554. <month type="4">aprile</month>
  1555. <month type="5">maggio</month>
  1556. <month type="6">giugno</month>
  1557. <month type="7">luglio</month>
  1558. <month type="8">agosto</month>
  1559. <month type="9">settembre</month>
  1560. <month type="10">ottobre</month>
  1561. <month type="11">novembre</month>
  1562. <month type="12">dicembre</month>
  1563. </monthWidth>
  1564. </monthContext>
  1565. <monthContext type="stand-alone">
  1566. <monthWidth type="abbreviated">
  1567. <month type="1">gen</month>
  1568. <month type="2">feb</month>
  1569. <month type="3">mar</month>
  1570. <month type="4">apr</month>
  1571. <month type="5">mag</month>
  1572. <month type="6">giu</month>
  1573. <month type="7">lug</month>
  1574. <month type="8">ago</month>
  1575. <month type="9">set</month>
  1576. <month type="10">ott</month>
  1577. <month type="11">nov</month>
  1578. <month type="12">dic</month>
  1579. </monthWidth>
  1580. <monthWidth type="narrow">
  1581. <month type="1">G</month>
  1582. <month type="2">F</month>
  1583. <month type="3">M</month>
  1584. <month type="4">A</month>
  1585. <month type="5">M</month>
  1586. <month type="6">G</month>
  1587. <month type="7">L</month>
  1588. <month type="8">A</month>
  1589. <month type="9">S</month>
  1590. <month type="10">O</month>
  1591. <month type="11">N</month>
  1592. <month type="12">D</month>
  1593. </monthWidth>
  1594. <monthWidth type="wide">
  1595. <month type="1">Gennaio</month>
  1596. <month type="2">Febbraio</month>
  1597. <month type="3">Marzo</month>
  1598. <month type="4">Aprile</month>
  1599. <month type="5">Maggio</month>
  1600. <month type="6">Giugno</month>
  1601. <month type="7">Luglio</month>
  1602. <month type="8">Agosto</month>
  1603. <month type="9">Settembre</month>
  1604. <month type="10">Ottobre</month>
  1605. <month type="11">Novembre</month>
  1606. <month type="12">Dicembre</month>
  1607. </monthWidth>
  1608. </monthContext>
  1609. </months>
  1610. <days>
  1611. <dayContext type="format">
  1612. <dayWidth type="abbreviated">
  1613. <day type="sun">dom</day>
  1614. <day type="mon">lun</day>
  1615. <day type="tue">mar</day>
  1616. <day type="wed">mer</day>
  1617. <day type="thu">gio</day>
  1618. <day type="fri">ven</day>
  1619. <day type="sat">sab</day>
  1620. </dayWidth>
  1621. <dayWidth type="narrow">
  1622. <day type="sun">D</day>
  1623. <day type="mon">L</day>
  1624. <day type="tue">M</day>
  1625. <day type="wed">M</day>
  1626. <day type="thu">G</day>
  1627. <day type="fri">V</day>
  1628. <day type="sat">S</day>
  1629. </dayWidth>
  1630. <dayWidth type="short">
  1631. <day type="sun">dom</day>
  1632. <day type="mon">lun</day>
  1633. <day type="tue">mar</day>
  1634. <day type="wed">mer</day>
  1635. <day type="thu">gio</day>
  1636. <day type="fri">ven</day>
  1637. <day type="sat">sab</day>
  1638. </dayWidth>
  1639. <dayWidth type="wide">
  1640. <day type="sun">domenica</day>
  1641. <day type="mon">lunedì</day>
  1642. <day type="tue">martedì</day>
  1643. <day type="wed">mercoledì</day>
  1644. <day type="thu">giovedì</day>
  1645. <day type="fri">venerdì</day>
  1646. <day type="sat">sabato</day>
  1647. </dayWidth>
  1648. </dayContext>
  1649. <dayContext type="stand-alone">
  1650. <dayWidth type="abbreviated">
  1651. <day type="sun">dom</day>
  1652. <day type="mon">lun</day>
  1653. <day type="tue">mar</day>
  1654. <day type="wed">mer</day>
  1655. <day type="thu">gio</day>
  1656. <day type="fri">ven</day>
  1657. <day type="sat">sab</day>
  1658. </dayWidth>
  1659. <dayWidth type="narrow">
  1660. <day type="sun">D</day>
  1661. <day type="mon">L</day>
  1662. <day type="tue">M</day>
  1663. <day type="wed">M</day>
  1664. <day type="thu">G</day>
  1665. <day type="fri">V</day>
  1666. <day type="sat">S</day>
  1667. </dayWidth>
  1668. <dayWidth type="short">
  1669. <day type="sun">dom</day>
  1670. <day type="mon">lun</day>
  1671. <day type="tue">mar</day>
  1672. <day type="wed">mer</day>
  1673. <day type="thu">gio</day>
  1674. <day type="fri">ven</day>
  1675. <day type="sat">sab</day>
  1676. </dayWidth>
  1677. <dayWidth type="wide">
  1678. <day type="sun">Domenica</day>
  1679. <day type="mon">Lunedì</day>
  1680. <day type="tue">Martedì</day>
  1681. <day type="wed">Mercoledì</day>
  1682. <day type="thu">Giovedì</day>
  1683. <day type="fri">Venerdì</day>
  1684. <day type="sat">Sabato</day>
  1685. </dayWidth>
  1686. </dayContext>
  1687. </days>
  1688. <quarters>
  1689. <quarterContext type="format">
  1690. <quarterWidth type="abbreviated">
  1691. <quarter type="1">T1</quarter>
  1692. <quarter type="2">T2</quarter>
  1693. <quarter type="3">T3</quarter>
  1694. <quarter type="4">T4</quarter>
  1695. </quarterWidth>
  1696. <quarterWidth type="narrow">
  1697. <quarter type="1">1</quarter>
  1698. <quarter type="2">2</quarter>
  1699. <quarter type="3">3</quarter>
  1700. <quarter type="4">4</quarter>
  1701. </quarterWidth>
  1702. <quarterWidth type="wide">
  1703. <quarter type="1">1º trimestre</quarter>
  1704. <quarter type="2">2º trimestre</quarter>
  1705. <quarter type="3">3º trimestre</quarter>
  1706. <quarter type="4">4º trimestre</quarter>
  1707. </quarterWidth>
  1708. </quarterContext>
  1709. <quarterContext type="stand-alone">
  1710. <quarterWidth type="abbreviated">
  1711. <quarter type="1">T1</quarter>
  1712. <quarter type="2">T2</quarter>
  1713. <quarter type="3">T3</quarter>
  1714. <quarter type="4">T4</quarter>
  1715. </quarterWidth>
  1716. <quarterWidth type="narrow">
  1717. <quarter type="1">1</quarter>
  1718. <quarter type="2">2</quarter>
  1719. <quarter type="3">3</quarter>
  1720. <quarter type="4">4</quarter>
  1721. </quarterWidth>
  1722. <quarterWidth type="wide">
  1723. <quarter type="1">Primo trimestre</quarter>
  1724. <quarter type="2">Secondo trimestre</quarter>
  1725. <quarter type="3">Terzo trimestre</quarter>
  1726. <quarter type="4">Quarto trimestre</quarter>
  1727. </quarterWidth>
  1728. </quarterContext>
  1729. </quarters>
  1730. <dayPeriods>
  1731. <dayPeriodContext type="format">
  1732. <dayPeriodWidth type="narrow">
  1733. <dayPeriod type="am">m.</dayPeriod>
  1734. <dayPeriod type="pm">p.</dayPeriod>
  1735. </dayPeriodWidth>
  1736. <dayPeriodWidth type="wide">
  1737. <dayPeriod type="am">AM</dayPeriod>
  1738. <dayPeriod type="pm">PM</dayPeriod>
  1739. </dayPeriodWidth>
  1740. </dayPeriodContext>
  1741. </dayPeriods>
  1742. <eras>
  1743. <eraNames>
  1744. <era type="0">a.C.</era>
  1745. <era type="0" alt="variant" draft="contributed">BCE</era>
  1746. <era type="1">d.C.</era>
  1747. <era type="1" alt="variant" draft="contributed">CE</era>
  1748. </eraNames>
  1749. <eraAbbr>
  1750. <era type="0">aC</era>
  1751. <era type="0" alt="variant" draft="contributed">BCE</era>
  1752. <era type="1">dC</era>
  1753. <era type="1" alt="variant" draft="contributed">CE</era>
  1754. </eraAbbr>
  1755. <eraNarrow>
  1756. <era type="0">aC</era>
  1757. <era type="0" alt="variant" draft="contributed">BCE</era>
  1758. <era type="1">dC</era>
  1759. <era type="1" alt="variant" draft="contributed">CE</era>
  1760. </eraNarrow>
  1761. </eras>
  1762. <dateFormats>
  1763. <dateFormatLength type="full">
  1764. <dateFormat>
  1765. <pattern>EEEE d MMMM y</pattern>
  1766. </dateFormat>
  1767. </dateFormatLength>
  1768. <dateFormatLength type="long">
  1769. <dateFormat>
  1770. <pattern>dd MMMM y</pattern>
  1771. </dateFormat>
  1772. </dateFormatLength>
  1773. <dateFormatLength type="medium">
  1774. <dateFormat>
  1775. <pattern>dd/MMM/y</pattern>
  1776. </dateFormat>
  1777. </dateFormatLength>
  1778. <dateFormatLength type="short">
  1779. <dateFormat>
  1780. <pattern>dd/MM/yy</pattern>
  1781. </dateFormat>
  1782. </dateFormatLength>
  1783. </dateFormats>
  1784. <timeFormats>
  1785. <timeFormatLength type="full">
  1786. <timeFormat>
  1787. <pattern>HH:mm:ss zzzz</pattern>
  1788. </timeFormat>
  1789. </timeFormatLength>
  1790. <timeFormatLength type="long">
  1791. <timeFormat>
  1792. <pattern>HH:mm:ss z</pattern>
  1793. </timeFormat>
  1794. </timeFormatLength>
  1795. <timeFormatLength type="medium">
  1796. <timeFormat>
  1797. <pattern>HH:mm:ss</pattern>
  1798. </timeFormat>
  1799. </timeFormatLength>
  1800. <timeFormatLength type="short">
  1801. <timeFormat>
  1802. <pattern>HH:mm</pattern>
  1803. </timeFormat>
  1804. </timeFormatLength>
  1805. </timeFormats>
  1806. <dateTimeFormats>
  1807. <dateTimeFormatLength type="full">
  1808. <dateTimeFormat>
  1809. <pattern draft="contributed">{1} {0}</pattern>
  1810. </dateTimeFormat>
  1811. </dateTimeFormatLength>
  1812. <dateTimeFormatLength type="long">
  1813. <dateTimeFormat>
  1814. <pattern draft="contributed">{1} {0}</pattern>
  1815. </dateTimeFormat>
  1816. </dateTimeFormatLength>
  1817. <dateTimeFormatLength type="medium">
  1818. <dateTimeFormat>
  1819. <pattern draft="contributed">{1} {0}</pattern>
  1820. </dateTimeFormat>
  1821. </dateTimeFormatLength>
  1822. <dateTimeFormatLength type="short">
  1823. <dateTimeFormat>
  1824. <pattern draft="contributed">{1} {0}</pattern>
  1825. </dateTimeFormat>
  1826. </dateTimeFormatLength>
  1827. <availableFormats>
  1828. <dateFormatItem id="d">d</dateFormatItem>
  1829. <dateFormatItem id="Ed">E d</dateFormatItem>
  1830. <dateFormatItem id="Ehm">E h.mm a</dateFormatItem>
  1831. <dateFormatItem id="EHm">E HH.mm</dateFormatItem>
  1832. <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
  1833. <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
  1834. <dateFormatItem id="Gy">y G</dateFormatItem>
  1835. <dateFormatItem id="GyMMM">MMM y G</dateFormatItem>
  1836. <dateFormatItem id="GyMMMd">d MMM y G</dateFormatItem>
  1837. <dateFormatItem id="GyMMMEd">E d MMM y G</dateFormatItem>
  1838. <dateFormatItem id="h">hh a</dateFormatItem>
  1839. <dateFormatItem id="H">HH</dateFormatItem>
  1840. <dateFormatItem id="hm">hh:mm a</dateFormatItem>
  1841. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  1842. <dateFormatItem id="hms">hh:mm:ss a</dateFormatItem>
  1843. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  1844. <dateFormatItem id="M">L</dateFormatItem>
  1845. <dateFormatItem id="Md">d/M</dateFormatItem>
  1846. <dateFormatItem id="MEd">E d/M</dateFormatItem>
  1847. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1848. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  1849. <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
  1850. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1851. <dateFormatItem id="y">y</dateFormatItem>
  1852. <dateFormatItem id="yM">M/y</dateFormatItem>
  1853. <dateFormatItem id="yMd">d/M/y</dateFormatItem>
  1854. <dateFormatItem id="yMEd">E d/M/y</dateFormatItem>
  1855. <dateFormatItem id="yMMM">MMM y</dateFormatItem>
  1856. <dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
  1857. <dateFormatItem id="yMMMEd">E d MMM y</dateFormatItem>
  1858. <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
  1859. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  1860. <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
  1861. </availableFormats>
  1862. <appendItems>
  1863. <appendItem request="Timezone">{0} {1}</appendItem>
  1864. </appendItems>
  1865. <intervalFormats>
  1866. <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
  1867. <intervalFormatItem id="d">
  1868. <greatestDifference id="d">d-d</greatestDifference>
  1869. </intervalFormatItem>
  1870. <intervalFormatItem id="h">
  1871. <greatestDifference id="a">h a - h a</greatestDifference>
  1872. <greatestDifference id="h">h-h a</greatestDifference>
  1873. </intervalFormatItem>
  1874. <intervalFormatItem id="H">
  1875. <greatestDifference id="H">HH-HH</greatestDifference>
  1876. </intervalFormatItem>
  1877. <intervalFormatItem id="hm">
  1878. <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
  1879. <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
  1880. <greatestDifference id="m">h:mm-h:mm a</greatestDifference>
  1881. </intervalFormatItem>
  1882. <intervalFormatItem id="Hm">
  1883. <greatestDifference id="H">HH:mm-HH:mm</greatestDifference>
  1884. <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
  1885. </intervalFormatItem>
  1886. <intervalFormatItem id="hmv">
  1887. <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
  1888. <greatestDifference id="h">h:mm-h:mm a v</greatestDifference>
  1889. <greatestDifference id="m">h:mm-h:mm a v</greatestDifference>
  1890. </intervalFormatItem>
  1891. <intervalFormatItem id="Hmv">
  1892. <greatestDifference id="H">HH:mm-HH:mm v</greatestDifference>
  1893. <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
  1894. </intervalFormatItem>
  1895. <intervalFormatItem id="hv">
  1896. <greatestDifference id="a">h a - h a v</greatestDifference>
  1897. <greatestDifference id="h">h-h a v</greatestDifference>
  1898. </intervalFormatItem>
  1899. <intervalFormatItem id="Hv">
  1900. <greatestDifference id="H">HH-HH v</greatestDifference>
  1901. </intervalFormatItem>
  1902. <intervalFormatItem id="M">
  1903. <greatestDifference id="M">M-M</greatestDifference>
  1904. </intervalFormatItem>
  1905. <intervalFormatItem id="Md">
  1906. <greatestDifference id="d">dd/MM - dd/MM</greatestDifference>
  1907. <greatestDifference id="M">dd/MM - dd/MM</greatestDifference>
  1908. </intervalFormatItem>
  1909. <intervalFormatItem id="MEd">
  1910. <greatestDifference id="d">E dd/MM - E dd/MM</greatestDifference>
  1911. <greatestDifference id="M">E dd/MM - E dd/MM</greatestDifference>
  1912. </intervalFormatItem>
  1913. <intervalFormatItem id="MMM">
  1914. <greatestDifference id="M">MMM-MMM</greatestDifference>
  1915. </intervalFormatItem>
  1916. <intervalFormatItem id="MMMd">
  1917. <greatestDifference id="d">dd-dd MMM</greatestDifference>
  1918. <greatestDifference id="M">dd MMM - dd MMM</greatestDifference>
  1919. </intervalFormatItem>
  1920. <intervalFormatItem id="MMMEd">
  1921. <greatestDifference id="d">E dd - E dd MMM</greatestDifference>
  1922. <greatestDifference id="M">E dd MMM - E dd MMM</greatestDifference>
  1923. </intervalFormatItem>
  1924. <intervalFormatItem id="y">
  1925. <greatestDifference id="y">y-y</greatestDifference>
  1926. </intervalFormatItem>
  1927. <intervalFormatItem id="yM">
  1928. <greatestDifference id="M">MM/y - MM/y</greatestDifference>
  1929. <greatestDifference id="y">MM/y - MM/y</greatestDifference>
  1930. </intervalFormatItem>
  1931. <intervalFormatItem id="yMd">
  1932. <greatestDifference id="d">dd/MM/y - dd/MM/y</greatestDifference>
  1933. <greatestDifference id="M">dd/MM/y - dd/MM/y</greatestDifference>
  1934. <greatestDifference id="y">dd/MM/y - dd/MM/y</greatestDifference>
  1935. </intervalFormatItem>
  1936. <intervalFormatItem id="yMEd">
  1937. <greatestDifference id="d">E dd/MM/y - E dd/MM/y</greatestDifference>
  1938. <greatestDifference id="M">E dd/MM/y - E dd/MM/y</greatestDifference>
  1939. <greatestDifference id="y">E dd/MM/y - E dd/MM/y</greatestDifference>
  1940. </intervalFormatItem>
  1941. <intervalFormatItem id="yMMM">
  1942. <greatestDifference id="M">MMM-MMM y</greatestDifference>
  1943. <greatestDifference id="y">MMM y - MMM y</greatestDifference>
  1944. </intervalFormatItem>
  1945. <intervalFormatItem id="yMMMd">
  1946. <greatestDifference id="d">dd-dd MMM y</greatestDifference>
  1947. <greatestDifference id="M">dd MMM - dd MMM y</greatestDifference>
  1948. <greatestDifference id="y">dd MMM y - dd MMM y</greatestDifference>
  1949. </intervalFormatItem>
  1950. <intervalFormatItem id="yMMMEd">
  1951. <greatestDifference id="d">E d - E d MMM y</greatestDifference>
  1952. <greatestDifference id="M">E d MMM - E d MMM y</greatestDifference>
  1953. <greatestDifference id="y">E d MMM y - E d MMM y</greatestDifference>
  1954. </intervalFormatItem>
  1955. <intervalFormatItem id="yMMMM">
  1956. <greatestDifference id="M">MMMM-MMMM y</greatestDifference>
  1957. <greatestDifference id="y">MMMM y - MMMM y</greatestDifference>
  1958. </intervalFormatItem>
  1959. </intervalFormats>
  1960. </dateTimeFormats>
  1961. </calendar>
  1962. <calendar type="hebrew">
  1963. <eras>
  1964. <eraAbbr>
  1965. <era type="0">AM</era>
  1966. </eraAbbr>
  1967. </eras>
  1968. </calendar>
  1969. <calendar type="islamic">
  1970. <eras>
  1971. <eraAbbr>
  1972. <era type="0">AH</era>
  1973. </eraAbbr>
  1974. </eras>
  1975. </calendar>
  1976. <calendar type="japanese">
  1977. <!-- need some non-empty element here to make inheritance work,
  1978. this copy of generic dateFormats above is smaller than root japanese eras
  1979. -->
  1980. <dateFormats>
  1981. <dateFormatLength type="full">
  1982. <dateFormat>
  1983. <pattern>EEEE d MMMM y G</pattern>
  1984. </dateFormat>
  1985. </dateFormatLength>
  1986. <dateFormatLength type="long">
  1987. <dateFormat>
  1988. <pattern>dd MMMM y G</pattern>
  1989. </dateFormat>
  1990. </dateFormatLength>
  1991. <dateFormatLength type="medium">
  1992. <dateFormat>
  1993. <pattern>dd/MMM/y G</pattern>
  1994. </dateFormat>
  1995. </dateFormatLength>
  1996. <dateFormatLength type="short">
  1997. <dateFormat>
  1998. <pattern>dd/MM/yy GGGGG</pattern>
  1999. </dateFormat>
  2000. </dateFormatLength>
  2001. </dateFormats>
  2002. </calendar>
  2003. <calendar type="roc">
  2004. <eras>
  2005. <eraAbbr>
  2006. <era type="0">Prima della R.O.C.</era>
  2007. <era type="1">Minguo</era>
  2008. </eraAbbr>
  2009. </eras>
  2010. </calendar>
  2011. </calendars>
  2012. <fields>
  2013. <field type="era">
  2014. <displayName>era</displayName>
  2015. </field>
  2016. <field type="year">
  2017. <displayName>anno</displayName>
  2018. <relative type="-1">anno scorso</relative>
  2019. <relative type="0">quest'anno</relative>
  2020. <relative type="1">anno prossimo</relative>
  2021. <relativeTime type="future">
  2022. <relativeTimePattern count="one">tra {0} anno</relativeTimePattern>
  2023. <relativeTimePattern count="other">tra {0} anni</relativeTimePattern>
  2024. </relativeTime>
  2025. <relativeTime type="past">
  2026. <relativeTimePattern count="one">{0} anno fa</relativeTimePattern>
  2027. <relativeTimePattern count="other">{0} anni fa</relativeTimePattern>
  2028. </relativeTime>
  2029. </field>
  2030. <field type="month">
  2031. <displayName>mese</displayName>
  2032. <relative type="-1">mese scorso</relative>
  2033. <relative type="0">questo mese</relative>
  2034. <relative type="1">mese prossimo</relative>
  2035. <relativeTime type="future">
  2036. <relativeTimePattern count="one">tra {0} mese</relativeTimePattern>
  2037. <relativeTimePattern count="other">tra {0} mesi</relativeTimePattern>
  2038. </relativeTime>
  2039. <relativeTime type="past">
  2040. <relativeTimePattern count="one">{0} mese fa</relativeTimePattern>
  2041. <relativeTimePattern count="other">{0} mesi fa</relativeTimePattern>
  2042. </relativeTime>
  2043. </field>
  2044. <field type="week">
  2045. <displayName>settimana</displayName>
  2046. <relative type="-1">settimana scorsa</relative>
  2047. <relative type="0">questa settimana</relative>
  2048. <relative type="1">settimana prossima</relative>
  2049. <relativeTime type="future">
  2050. <relativeTimePattern count="one">tra {0} settimana</relativeTimePattern>
  2051. <relativeTimePattern count="other">tra {0} settimane</relativeTimePattern>
  2052. </relativeTime>
  2053. <relativeTime type="past">
  2054. <relativeTimePattern count="one">{0} settimana fa</relativeTimePattern>
  2055. <relativeTimePattern count="other">{0} settimane fa</relativeTimePattern>
  2056. </relativeTime>
  2057. </field>
  2058. <field type="day">
  2059. <displayName>giorno</displayName>
  2060. <relative type="-2">l'altro ieri</relative>
  2061. <relative type="-1">ieri</relative>
  2062. <relative type="0">oggi</relative>
  2063. <relative type="1">domani</relative>
  2064. <relative type="2">dopodomani</relative>
  2065. <relativeTime type="future">
  2066. <relativeTimePattern count="one">tra {0} giorno</relativeTimePattern>
  2067. <relativeTimePattern count="other">tra {0} giorni</relativeTimePattern>
  2068. </relativeTime>
  2069. <relativeTime type="past">
  2070. <relativeTimePattern count="one">{0} giorno fa</relativeTimePattern>
  2071. <relativeTimePattern count="other">{0} giorni fa</relativeTimePattern>
  2072. </relativeTime>
  2073. </field>
  2074. <field type="weekday">
  2075. <displayName>giorno della settimana</displayName>
  2076. </field>
  2077. <field type="sun">
  2078. <relative type="-1">domenica scorsa</relative>
  2079. <relative type="0">questa domenica</relative>
  2080. <relative type="1">domenica prossima</relative>
  2081. </field>
  2082. <field type="mon">
  2083. <relative type="-1">lunedì scorso</relative>
  2084. <relative type="0">questo lunedì</relative>
  2085. <relative type="1">lunedì prossimo</relative>
  2086. </field>
  2087. <field type="tue">
  2088. <relative type="-1">martedì scorso</relative>
  2089. <relative type="0">questo martedì</relative>
  2090. <relative type="1">martedì prossimo</relative>
  2091. </field>
  2092. <field type="wed">
  2093. <relative type="-1">mercoledì scorso</relative>
  2094. <relative type="0">questo mercoledì</relative>
  2095. <relative type="1">mercoledì prossimo</relative>
  2096. </field>
  2097. <field type="thu">
  2098. <relative type="-1">giovedì scorso</relative>
  2099. <relative type="0">questo giovedì</relative>
  2100. <relative type="1">giovedì prossimo</relative>
  2101. </field>
  2102. <field type="fri">
  2103. <relative type="-1">venerdì scorso</relative>
  2104. <relative type="0">questo venerdì</relative>
  2105. <relative type="1">venerdì prossimo</relative>
  2106. </field>
  2107. <field type="sat">
  2108. <relative type="-1">sabato scorso</relative>
  2109. <relative type="0">questo sabato</relative>
  2110. <relative type="1">sabato prossimo</relative>
  2111. </field>
  2112. <field type="dayperiod">
  2113. <displayName>periodo del giorno</displayName>
  2114. </field>
  2115. <field type="hour">
  2116. <displayName>ora</displayName>
  2117. <relativeTime type="future">
  2118. <relativeTimePattern count="one">tra {0} ora</relativeTimePattern>
  2119. <relativeTimePattern count="other">tra {0} ore</relativeTimePattern>
  2120. </relativeTime>
  2121. <relativeTime type="past">
  2122. <relativeTimePattern count="one">{0} ora fa</relativeTimePattern>
  2123. <relativeTimePattern count="other">{0} ore fa</relativeTimePattern>
  2124. </relativeTime>
  2125. </field>
  2126. <field type="minute">
  2127. <displayName>minuto</displayName>
  2128. <relativeTime type="future">
  2129. <relativeTimePattern count="one">tra {0} minuto</relativeTimePattern>
  2130. <relativeTimePattern count="other">tra {0} minuti</relativeTimePattern>
  2131. </relativeTime>
  2132. <relativeTime type="past">
  2133. <relativeTimePattern count="one">{0} minuto fa</relativeTimePattern>
  2134. <relativeTimePattern count="other">{0} minuti fa</relativeTimePattern>
  2135. </relativeTime>
  2136. </field>
  2137. <field type="second">
  2138. <displayName>secondo</displayName>
  2139. <relative type="0">ora</relative>
  2140. <relativeTime type="future">
  2141. <relativeTimePattern count="one">tra {0} secondo</relativeTimePattern>
  2142. <relativeTimePattern count="other">tra {0} secondi</relativeTimePattern>
  2143. </relativeTime>
  2144. <relativeTime type="past">
  2145. <relativeTimePattern count="one">{0} secondo fa</relativeTimePattern>
  2146. <relativeTimePattern count="other">{0} secondi fa</relativeTimePattern>
  2147. </relativeTime>
  2148. </field>
  2149. <field type="zone">
  2150. <displayName>fuso orario</displayName>
  2151. </field>
  2152. </fields>
  2153. <timeZoneNames>
  2154. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  2155. <gmtFormat>GMT{0}</gmtFormat>
  2156. <gmtZeroFormat>GMT</gmtZeroFormat>
  2157. <regionFormat>Ora {0}</regionFormat>
  2158. <regionFormat type="daylight">Ora legale: {0}</regionFormat>
  2159. <regionFormat type="standard">Ora standard: {0}</regionFormat>
  2160. <fallbackFormat>{1} ({0})</fallbackFormat>
  2161. <zone type="Etc/Unknown">
  2162. <exemplarCity>Città sconosciuta</exemplarCity>
  2163. </zone>
  2164. <zone type="Europe/Tirane">
  2165. <exemplarCity>Tirana</exemplarCity>
  2166. </zone>
  2167. <zone type="Antarctica/South_Pole">
  2168. <exemplarCity>Polo Sud</exemplarCity>
  2169. </zone>
  2170. <zone type="Antarctica/DumontDUrville">
  2171. <exemplarCity>Dumont D'Urville</exemplarCity>
  2172. </zone>
  2173. <zone type="America/Argentina/Tucuman">
  2174. <exemplarCity>Tucumán</exemplarCity>
  2175. </zone>
  2176. <zone type="America/Cordoba">
  2177. <exemplarCity>Cordova</exemplarCity>
  2178. </zone>
  2179. <zone type="Europe/Brussels">
  2180. <exemplarCity>Bruxelles</exemplarCity>
  2181. </zone>
  2182. <zone type="Asia/Bahrain">
  2183. <exemplarCity>Bahrein</exemplarCity>
  2184. </zone>
  2185. <zone type="America/St_Barthelemy">
  2186. <exemplarCity>Saint-Barthélemy</exemplarCity>
  2187. </zone>
  2188. <zone type="America/Santarem">
  2189. <exemplarCity>Santarém</exemplarCity>
  2190. </zone>
  2191. <zone type="America/Sao_Paulo">
  2192. <exemplarCity>San Paolo</exemplarCity>
  2193. </zone>
  2194. <zone type="America/Coral_Harbour">
  2195. <exemplarCity>Atikokan</exemplarCity>
  2196. </zone>
  2197. <zone type="America/St_Johns">
  2198. <exemplarCity>St. John’s</exemplarCity>
  2199. </zone>
  2200. <zone type="Europe/Zurich">
  2201. <exemplarCity>Zurigo</exemplarCity>
  2202. </zone>
  2203. <zone type="Pacific/Easter">
  2204. <exemplarCity>Pasqua</exemplarCity>
  2205. </zone>
  2206. <zone type="America/Bogota">
  2207. <exemplarCity>Bogotá</exemplarCity>
  2208. </zone>
  2209. <zone type="America/Havana">
  2210. <exemplarCity>L'Avana</exemplarCity>
  2211. </zone>
  2212. <zone type="Atlantic/Cape_Verde">
  2213. <exemplarCity>Capo Verde</exemplarCity>
  2214. </zone>
  2215. <zone type="America/Curacao">
  2216. <exemplarCity>Curaçao</exemplarCity>
  2217. </zone>
  2218. <zone type="Indian/Christmas">
  2219. <exemplarCity>Natale</exemplarCity>
  2220. </zone>
  2221. <zone type="Europe/Prague">
  2222. <exemplarCity>Praga</exemplarCity>
  2223. </zone>
  2224. <zone type="Europe/Berlin">
  2225. <exemplarCity>Berlino</exemplarCity>
  2226. </zone>
  2227. <zone type="Africa/Djibouti">
  2228. <exemplarCity>Gibuti</exemplarCity>
  2229. </zone>
  2230. <zone type="Europe/Copenhagen">
  2231. <exemplarCity>Copenaghen</exemplarCity>
  2232. </zone>
  2233. <zone type="Africa/Algiers">
  2234. <exemplarCity>Algeri</exemplarCity>
  2235. </zone>
  2236. <zone type="Africa/Cairo">
  2237. <exemplarCity>Il Cairo</exemplarCity>
  2238. </zone>
  2239. <zone type="Africa/Asmera">
  2240. <exemplarCity>Asmara</exemplarCity>
  2241. </zone>
  2242. <zone type="Atlantic/Canary">
  2243. <exemplarCity>Canarie</exemplarCity>
  2244. </zone>
  2245. <zone type="Africa/Addis_Ababa">
  2246. <exemplarCity>Addis Abeba</exemplarCity>
  2247. </zone>
  2248. <zone type="Pacific/Fiji">
  2249. <exemplarCity>Figi</exemplarCity>
  2250. </zone>
  2251. <zone type="Pacific/Truk">
  2252. <exemplarCity>Chuuk</exemplarCity>
  2253. </zone>
  2254. <zone type="Pacific/Ponape">
  2255. <exemplarCity>Pohnpei</exemplarCity>
  2256. </zone>
  2257. <zone type="Atlantic/Faeroe">
  2258. <exemplarCity>Isole Faeroe</exemplarCity>
  2259. </zone>
  2260. <zone type="Europe/Paris">
  2261. <exemplarCity>Parigi</exemplarCity>
  2262. </zone>
  2263. <zone type="Europe/London">
  2264. <long>
  2265. <daylight>Ora legale Regno Unito</daylight>
  2266. </long>
  2267. <exemplarCity>Londra</exemplarCity>
  2268. </zone>
  2269. <zone type="America/Cayenne">
  2270. <exemplarCity>Caienna</exemplarCity>
  2271. </zone>
  2272. <zone type="Europe/Gibraltar">
  2273. <exemplarCity>Gibilterra</exemplarCity>
  2274. </zone>
  2275. <zone type="America/Godthab">
  2276. <exemplarCity>Nuuk</exemplarCity>
  2277. </zone>
  2278. <zone type="America/Scoresbysund">
  2279. <exemplarCity>Ittoqqortoormiit</exemplarCity>
  2280. </zone>
  2281. <zone type="America/Guadeloupe">
  2282. <exemplarCity>Guadalupa</exemplarCity>
  2283. </zone>
  2284. <zone type="Europe/Athens">
  2285. <exemplarCity>Atene</exemplarCity>
  2286. </zone>
  2287. <zone type="Atlantic/South_Georgia">
  2288. <exemplarCity>Georgia meridionale</exemplarCity>
  2289. </zone>
  2290. <zone type="America/Guyana">
  2291. <exemplarCity>Guiana</exemplarCity>
  2292. </zone>
  2293. <zone type="Europe/Zagreb">
  2294. <exemplarCity>Zagabria</exemplarCity>
  2295. </zone>
  2296. <zone type="Asia/Jakarta">
  2297. <exemplarCity>Giacarta</exemplarCity>
  2298. </zone>
  2299. <zone type="Europe/Dublin">
  2300. <long>
  2301. <daylight>Ora legale Irlanda</daylight>
  2302. </long>
  2303. <exemplarCity>Dublino</exemplarCity>
  2304. </zone>
  2305. <zone type="Asia/Jerusalem">
  2306. <exemplarCity>Gerusalemme</exemplarCity>
  2307. </zone>
  2308. <zone type="Europe/Isle_of_Man">
  2309. <exemplarCity>Isola di Man</exemplarCity>
  2310. </zone>
  2311. <zone type="Asia/Calcutta">
  2312. <exemplarCity>Kolkata</exemplarCity>
  2313. </zone>
  2314. <zone type="Asia/Tehran">
  2315. <exemplarCity>Teheran</exemplarCity>
  2316. </zone>
  2317. <zone type="Atlantic/Reykjavik">
  2318. <exemplarCity>Reykjavík</exemplarCity>
  2319. </zone>
  2320. <zone type="Europe/Rome">
  2321. <exemplarCity>Roma</exemplarCity>
  2322. </zone>
  2323. <zone type="America/Jamaica">
  2324. <exemplarCity>Giamaica</exemplarCity>
  2325. </zone>
  2326. <zone type="Indian/Comoro">
  2327. <exemplarCity>Comore</exemplarCity>
  2328. </zone>
  2329. <zone type="America/St_Kitts">
  2330. <exemplarCity>St. Kitts</exemplarCity>
  2331. </zone>
  2332. <zone type="Asia/Seoul">
  2333. <exemplarCity>Seul</exemplarCity>
  2334. </zone>
  2335. <zone type="America/St_Lucia">
  2336. <exemplarCity>Santa Lucia</exemplarCity>
  2337. </zone>
  2338. <zone type="Europe/Luxembourg">
  2339. <exemplarCity>Lussemburgo</exemplarCity>
  2340. </zone>
  2341. <zone type="Asia/Macau">
  2342. <exemplarCity>Macao</exemplarCity>
  2343. </zone>
  2344. <zone type="America/Martinique">
  2345. <exemplarCity>Martinica</exemplarCity>
  2346. </zone>
  2347. <zone type="Indian/Maldives">
  2348. <exemplarCity>Maldive</exemplarCity>
  2349. </zone>
  2350. <zone type="America/Bahia_Banderas">
  2351. <exemplarCity>Bahía de Banderas</exemplarCity>
  2352. </zone>
  2353. <zone type="America/Mexico_City">
  2354. <exemplarCity>Città del Messico</exemplarCity>
  2355. </zone>
  2356. <zone type="America/Merida">
  2357. <exemplarCity>Mérida</exemplarCity>
  2358. </zone>
  2359. <zone type="America/Cancun">
  2360. <exemplarCity>Cancún</exemplarCity>
  2361. </zone>
  2362. <zone type="Asia/Katmandu">
  2363. <exemplarCity>Kathmandu</exemplarCity>
  2364. </zone>
  2365. <zone type="Pacific/Marquesas">
  2366. <exemplarCity draft="contributed">Marchesi</exemplarCity>
  2367. </zone>
  2368. <zone type="Europe/Warsaw">
  2369. <exemplarCity>Varsavia</exemplarCity>
  2370. </zone>
  2371. <zone type="Pacific/Pitcairn">
  2372. <exemplarCity>Pitcairn, isole</exemplarCity>
  2373. </zone>
  2374. <zone type="America/Puerto_Rico">
  2375. <exemplarCity>Portorico</exemplarCity>
  2376. </zone>
  2377. <zone type="Atlantic/Azores">
  2378. <exemplarCity>Azzorre</exemplarCity>
  2379. </zone>
  2380. <zone type="Europe/Lisbon">
  2381. <exemplarCity>Lisbona</exemplarCity>
  2382. </zone>
  2383. <zone type="America/Asuncion">
  2384. <exemplarCity>Asunción</exemplarCity>
  2385. </zone>
  2386. <zone type="Indian/Reunion">
  2387. <exemplarCity>La Riunione</exemplarCity>
  2388. </zone>
  2389. <zone type="Europe/Bucharest">
  2390. <exemplarCity>Bucarest</exemplarCity>
  2391. </zone>
  2392. <zone type="Europe/Belgrade">
  2393. <exemplarCity>Belgrado</exemplarCity>
  2394. </zone>
  2395. <zone type="Europe/Moscow">
  2396. <exemplarCity>Mosca</exemplarCity>
  2397. </zone>
  2398. <zone type="Europe/Stockholm">
  2399. <exemplarCity>Stoccolma</exemplarCity>
  2400. </zone>
  2401. <zone type="Atlantic/St_Helena">
  2402. <exemplarCity>Sant'Elena</exemplarCity>
  2403. </zone>
  2404. <zone type="Europe/Ljubljana">
  2405. <exemplarCity>Lubiana</exemplarCity>
  2406. </zone>
  2407. <zone type="Africa/Mogadishu">
  2408. <exemplarCity>Mogadiscio</exemplarCity>
  2409. </zone>
  2410. <zone type="Africa/Sao_Tome">
  2411. <exemplarCity>São Tomé</exemplarCity>
  2412. </zone>
  2413. <zone type="America/Lower_Princes">
  2414. <exemplarCity>Lower Prince's Quarter</exemplarCity>
  2415. </zone>
  2416. <zone type="Asia/Damascus">
  2417. <exemplarCity>Damasco</exemplarCity>
  2418. </zone>
  2419. <zone type="Africa/Ndjamena">
  2420. <exemplarCity>N'Djamena</exemplarCity>
  2421. </zone>
  2422. <zone type="Africa/Tunis">
  2423. <exemplarCity>Tunisi</exemplarCity>
  2424. </zone>
  2425. <zone type="America/Anchorage">
  2426. <exemplarCity>Fuso orario Alaska</exemplarCity>
  2427. </zone>
  2428. <zone type="America/North_Dakota/Beulah">
  2429. <exemplarCity draft="contributed">Beulah, Dakota del nord</exemplarCity>
  2430. </zone>
  2431. <zone type="America/North_Dakota/New_Salem">
  2432. <exemplarCity draft="contributed">New Salem, Dakota del nord</exemplarCity>
  2433. </zone>
  2434. <zone type="America/North_Dakota/Center">
  2435. <exemplarCity>Center, Dakota del nord</exemplarCity>
  2436. </zone>
  2437. <zone type="America/Indiana/Vincennes">
  2438. <exemplarCity>Vincennes, Indiana</exemplarCity>
  2439. </zone>
  2440. <zone type="America/Indiana/Petersburg">
  2441. <exemplarCity>Petersburg, Indiana</exemplarCity>
  2442. </zone>
  2443. <zone type="America/Indiana/Tell_City">
  2444. <exemplarCity>Tell City, Indiana</exemplarCity>
  2445. </zone>
  2446. <zone type="America/Indiana/Knox">
  2447. <exemplarCity>Knox, Indiana</exemplarCity>
  2448. </zone>
  2449. <zone type="America/Indiana/Winamac">
  2450. <exemplarCity>Winamac, Indiana</exemplarCity>
  2451. </zone>
  2452. <zone type="America/Indiana/Marengo">
  2453. <exemplarCity>Marengo, Indiana</exemplarCity>
  2454. </zone>
  2455. <zone type="America/Indiana/Vevay">
  2456. <exemplarCity>Vevay, Indiana</exemplarCity>
  2457. </zone>
  2458. <zone type="America/Kentucky/Monticello">
  2459. <exemplarCity>Monticello, Kentucky</exemplarCity>
  2460. </zone>
  2461. <zone type="Asia/Samarkand">
  2462. <exemplarCity>Samarcanda</exemplarCity>
  2463. </zone>
  2464. <zone type="Europe/Vatican">
  2465. <exemplarCity>Città del Vaticano</exemplarCity>
  2466. </zone>
  2467. <zone type="America/St_Vincent">
  2468. <exemplarCity>Saint Vincent</exemplarCity>
  2469. </zone>
  2470. <zone type="America/St_Thomas">
  2471. <exemplarCity>Saint Thomas</exemplarCity>
  2472. </zone>
  2473. <zone type="Asia/Saigon">
  2474. <exemplarCity>Ho Chi Minh</exemplarCity>
  2475. </zone>
  2476. <metazone type="Afghanistan">
  2477. <long>
  2478. <standard>Ora dell'Afghanistan</standard>
  2479. </long>
  2480. </metazone>
  2481. <metazone type="Africa_Central">
  2482. <long>
  2483. <standard>Ora dell'Africa centrale</standard>
  2484. </long>
  2485. </metazone>
  2486. <metazone type="Africa_Eastern">
  2487. <long>
  2488. <standard>Ora dell'Africa orientale</standard>
  2489. </long>
  2490. </metazone>
  2491. <metazone type="Africa_Southern">
  2492. <long>
  2493. <standard>Ora dell'Africa meridionale</standard>
  2494. </long>
  2495. </metazone>
  2496. <metazone type="Africa_Western">
  2497. <long>
  2498. <generic>Ora dell'Africa occidentale</generic>
  2499. <standard>Ora standard dell'Africa occidentale</standard>
  2500. <daylight>Ora legale dell'Africa occidentale</daylight>
  2501. </long>
  2502. </metazone>
  2503. <metazone type="Alaska">
  2504. <long>
  2505. <generic>Ora dell'Alaska</generic>
  2506. <standard>Ora standard Alaska</standard>
  2507. <daylight>Ora legale Alaska</daylight>
  2508. </long>
  2509. </metazone>
  2510. <metazone type="Amazon">
  2511. <long>
  2512. <generic>Ora dell'Amazzonia</generic>
  2513. <standard>Ora standard dell'Amazzonia</standard>
  2514. <daylight>Ora legale dell'Amazzonia</daylight>
  2515. </long>
  2516. </metazone>
  2517. <metazone type="America_Central">
  2518. <long>
  2519. <generic>Ora centrale USA</generic>
  2520. <standard>Ora standard centrale USA</standard>
  2521. <daylight>Ora legale centrale USA</daylight>
  2522. </long>
  2523. </metazone>
  2524. <metazone type="America_Eastern">
  2525. <long>
  2526. <generic>Ora orientale USA</generic>
  2527. <standard>Ora standard orientale USA</standard>
  2528. <daylight>Ora legale orientale USA</daylight>
  2529. </long>
  2530. </metazone>
  2531. <metazone type="America_Mountain">
  2532. <long>
  2533. <generic>Ora Montagne Rocciose USA</generic>
  2534. <standard>Ora standard Montagne Rocciose USA</standard>
  2535. <daylight>Ora legale Montagne Rocciose USA</daylight>
  2536. </long>
  2537. </metazone>
  2538. <metazone type="America_Pacific">
  2539. <long>
  2540. <generic>Ora del Pacifico USA</generic>
  2541. <standard>Ora standard del Pacifico USA</standard>
  2542. <daylight>Ora legale del Pacifico USA</daylight>
  2543. </long>
  2544. </metazone>
  2545. <metazone type="Anadyr">
  2546. <long>
  2547. <generic draft="contributed">Ora di Anadyr</generic>
  2548. <standard draft="contributed">Ora standard di Anadyr</standard>
  2549. <daylight draft="contributed">Ora legale di Anadyr</daylight>
  2550. </long>
  2551. </metazone>
  2552. <metazone type="Arabian">
  2553. <long>
  2554. <generic>Ora araba</generic>
  2555. <standard>Ora standard araba</standard>
  2556. <daylight>Ora legale araba</daylight>
  2557. </long>
  2558. </metazone>
  2559. <metazone type="Argentina">
  2560. <long>
  2561. <generic>Ora dell'Argentina</generic>
  2562. <standard>Ora standard dell'Argentina</standard>
  2563. <daylight>Ora legale dell'Argentina</daylight>
  2564. </long>
  2565. </metazone>
  2566. <metazone type="Argentina_Western">
  2567. <long>
  2568. <generic>Ora dell'Argentina occidentale</generic>
  2569. <standard>Ora standard dell'Argentina occidentale</standard>
  2570. <daylight>Ora legale dell'Argentina occidentale</daylight>
  2571. </long>
  2572. </metazone>
  2573. <metazone type="Armenia">
  2574. <long>
  2575. <generic>Ora dell'Armenia</generic>
  2576. <standard>Ora standard dell'Armenia</standard>
  2577. <daylight>Ora legale dell'Armenia</daylight>
  2578. </long>
  2579. </metazone>
  2580. <metazone type="Atlantic">
  2581. <long>
  2582. <generic>Ora dell'Atlantico</generic>
  2583. <standard>Ora standard dell'Atlantico</standard>
  2584. <daylight>Ora legale dell'Atlantico</daylight>
  2585. </long>
  2586. </metazone>
  2587. <metazone type="Australia_Central">
  2588. <long>
  2589. <generic>Ora dell'Australia centrale</generic>
  2590. <standard>Ora standard dell'Australia centrale</standard>
  2591. <daylight>Ora legale dell'Australia centrale</daylight>
  2592. </long>
  2593. </metazone>
  2594. <metazone type="Australia_CentralWestern">
  2595. <long>
  2596. <generic>Ora dell'Australia centroccidentale</generic>
  2597. <standard>Ora standard dell'Australia centroccidentale</standard>
  2598. <daylight>Ora legale dell'Australia centroccidentale</daylight>
  2599. </long>
  2600. </metazone>
  2601. <metazone type="Australia_Eastern">
  2602. <long>
  2603. <generic>Ora dell'Australia orientale</generic>
  2604. <standard>Ora standard dell'Australia orientale</standard>
  2605. <daylight>Ora legale dell'Australia orientale</daylight>
  2606. </long>
  2607. </metazone>
  2608. <metazone type="Australia_Western">
  2609. <long>
  2610. <generic>Ora dell'Australia occidentale</generic>
  2611. <standard>Ora standard dell'Australia occidentale</standard>
  2612. <daylight>Ora legale dell'Australia occidentale</daylight>
  2613. </long>
  2614. </metazone>
  2615. <metazone type="Azerbaijan">
  2616. <long>
  2617. <generic>Ora dell'Azerbaigian</generic>
  2618. <standard>Ora standard dell'Azerbaigian</standard>
  2619. <daylight>Ora legale dell'Azerbaigian</daylight>
  2620. </long>
  2621. </metazone>
  2622. <metazone type="Azores">
  2623. <long>
  2624. <generic>Ora delle Azzorre</generic>
  2625. <standard>Ora standard delle Azzorre</standard>
  2626. <daylight>Ora legale delle Azzorre</daylight>
  2627. </long>
  2628. </metazone>
  2629. <metazone type="Bangladesh">
  2630. <long>
  2631. <generic>Ora del Bangladesh</generic>
  2632. <standard>Ora standard del Bangladesh</standard>
  2633. <daylight>Ora legale del Bangladesh</daylight>
  2634. </long>
  2635. </metazone>
  2636. <metazone type="Bhutan">
  2637. <long>
  2638. <standard>Ora del Bhutan</standard>
  2639. </long>
  2640. </metazone>
  2641. <metazone type="Bolivia">
  2642. <long>
  2643. <standard>Ora della Bolivia</standard>
  2644. </long>
  2645. </metazone>
  2646. <metazone type="Brasilia">
  2647. <long>
  2648. <generic>Ora di Brasilia</generic>
  2649. <standard>Ora standard di Brasilia</standard>
  2650. <daylight>Ora legale di Brasilia</daylight>
  2651. </long>
  2652. </metazone>
  2653. <metazone type="Brunei">
  2654. <long>
  2655. <standard>Ora del Brunei Darussalam</standard>
  2656. </long>
  2657. </metazone>
  2658. <metazone type="Cape_Verde">
  2659. <long>
  2660. <generic>Ora di Capo Verde</generic>
  2661. <standard>Ora standard di Capo Verde</standard>
  2662. <daylight>Ora legale di Capo Verde</daylight>
  2663. </long>
  2664. </metazone>
  2665. <metazone type="Chamorro">
  2666. <long>
  2667. <standard>Ora Chamorro</standard>
  2668. </long>
  2669. </metazone>
  2670. <metazone type="Chatham">
  2671. <long>
  2672. <generic>Ora delle Chatham</generic>
  2673. <standard>Ora standard delle Chatham</standard>
  2674. <daylight>Ora legale delle Chatham</daylight>
  2675. </long>
  2676. </metazone>
  2677. <metazone type="Chile">
  2678. <long>
  2679. <generic>Ora del Cile</generic>
  2680. <standard>Ora standard del Cile</standard>
  2681. <daylight>Ora legale del Cile</daylight>
  2682. </long>
  2683. </metazone>
  2684. <metazone type="China">
  2685. <long>
  2686. <generic>Ora della Cina</generic>
  2687. <standard>Ora standard della Cina</standard>
  2688. <daylight>Ora legale della Cina</daylight>
  2689. </long>
  2690. </metazone>
  2691. <metazone type="Choibalsan">
  2692. <long>
  2693. <generic>Ora di Choibalsan</generic>
  2694. <standard>Ora standard di Choibalsan</standard>
  2695. <daylight>Ora legale di Choibalsan</daylight>
  2696. </long>
  2697. </metazone>
  2698. <metazone type="Christmas">
  2699. <long>
  2700. <standard>Ora dell'Isola di Natale</standard>
  2701. </long>
  2702. </metazone>
  2703. <metazone type="Cocos">
  2704. <long>
  2705. <standard>Ora delle Isole Cocos</standard>
  2706. </long>
  2707. </metazone>
  2708. <metazone type="Colombia">
  2709. <long>
  2710. <generic>Ora della Colombia</generic>
  2711. <standard>Ora standard della Colombia</standard>
  2712. <daylight>Ora legale della Colombia</daylight>
  2713. </long>
  2714. </metazone>
  2715. <metazone type="Cook">
  2716. <long>
  2717. <generic>Ora delle Isole Cook</generic>
  2718. <standard>Ora standard delle Isole Cook</standard>
  2719. <daylight>Ora legale media delle Isole Cook</daylight>
  2720. </long>
  2721. </metazone>
  2722. <metazone type="Cuba">
  2723. <long>
  2724. <generic>Ora di Cuba</generic>
  2725. <standard>Ora standard di Cuba</standard>
  2726. <daylight>Ora legale di Cuba</daylight>
  2727. </long>
  2728. </metazone>
  2729. <metazone type="Davis">
  2730. <long>
  2731. <standard>Ora di Davis</standard>
  2732. </long>
  2733. </metazone>
  2734. <metazone type="DumontDUrville">
  2735. <long>
  2736. <standard>Ora di Dumont-d'Urville</standard>
  2737. </long>
  2738. </metazone>
  2739. <metazone type="East_Timor">
  2740. <long>
  2741. <standard>Ora di Timor Est</standard>
  2742. </long>
  2743. </metazone>
  2744. <metazone type="Easter">
  2745. <long>
  2746. <generic>Ora dell'Isola di Pasqua</generic>
  2747. <standard>Ora standard dell'Isola di Pasqua</standard>
  2748. <daylight>Ora legale dell'Isola di Pasqua</daylight>
  2749. </long>
  2750. </metazone>
  2751. <metazone type="Ecuador">
  2752. <long>
  2753. <standard>Ora dell'Ecuador</standard>
  2754. </long>
  2755. </metazone>
  2756. <metazone type="Europe_Central">
  2757. <long>
  2758. <generic>Ora dell'Europa centrale</generic>
  2759. <standard>Ora standard dell'Europa centrale</standard>
  2760. <daylight>Ora legale dell'Europa centrale</daylight>
  2761. </long>
  2762. <short>
  2763. <generic>CET</generic>
  2764. <standard>CET</standard>
  2765. <daylight>CEST</daylight>
  2766. </short>
  2767. </metazone>
  2768. <metazone type="Europe_Eastern">
  2769. <long>
  2770. <generic>Ora dell'Europa orientale</generic>
  2771. <standard>Ora standard dell'Europa orientale</standard>
  2772. <daylight>Ora legale dell'Europa orientale</daylight>
  2773. </long>
  2774. <short>
  2775. <generic>EET</generic>
  2776. <standard>EET</standard>
  2777. <daylight>EEST</daylight>
  2778. </short>
  2779. </metazone>
  2780. <metazone type="Europe_Western">
  2781. <long>
  2782. <generic>Ora dell'Europa occidentale</generic>
  2783. <standard>Ora standard dell'Europa occidentale</standard>
  2784. <daylight>Ora legale dell'Europa occidentale</daylight>
  2785. </long>
  2786. <short>
  2787. <generic>WET</generic>
  2788. <standard>WET</standard>
  2789. <daylight>WEST</daylight>
  2790. </short>
  2791. </metazone>
  2792. <metazone type="Falkland">
  2793. <long>
  2794. <generic>Ora delle Isole Falkland</generic>
  2795. <standard>Ora standard delle Isole Falkland</standard>
  2796. <daylight>Ora legale delle Isole Falkland</daylight>
  2797. </long>
  2798. </metazone>
  2799. <metazone type="Fiji">
  2800. <long>
  2801. <generic>Ora delle Fiji</generic>
  2802. <standard>Ora standard delle Fiji</standard>
  2803. <daylight>Ora legale delle Fiji</daylight>
  2804. </long>
  2805. </metazone>
  2806. <metazone type="French_Guiana">
  2807. <long>
  2808. <standard>Ora della Guiana francese</standard>
  2809. </long>
  2810. </metazone>
  2811. <metazone type="French_Southern">
  2812. <long>
  2813. <standard>Ora delle Terre australi e antartiche francesi</standard>
  2814. </long>
  2815. </metazone>
  2816. <metazone type="Galapagos">
  2817. <long>
  2818. <standard>Ora delle Galapagos</standard>
  2819. </long>
  2820. </metazone>
  2821. <metazone type="Gambier">
  2822. <long>
  2823. <standard>Ora di Gambier</standard>
  2824. </long>
  2825. </metazone>
  2826. <metazone type="Georgia">
  2827. <long>
  2828. <generic>Ora della Georgia</generic>
  2829. <standard>Ora standard della Georgia</standard>
  2830. <daylight>Ora legale della Georgia</daylight>
  2831. </long>
  2832. </metazone>
  2833. <metazone type="Gilbert_Islands">
  2834. <long>
  2835. <standard>Ora delle Isole Gilbert</standard>
  2836. </long>
  2837. </metazone>
  2838. <metazone type="GMT">
  2839. <long>
  2840. <standard>Ora del meridiano di Greenwich</standard>
  2841. </long>
  2842. </metazone>
  2843. <metazone type="Greenland_Eastern">
  2844. <long>
  2845. <generic>Ora della Groenlandia orientale</generic>
  2846. <standard>Ora standard della Groenlandia orientale</standard>
  2847. <daylight>Ora legale della Groenlandia orientale</daylight>
  2848. </long>
  2849. </metazone>
  2850. <metazone type="Greenland_Western">
  2851. <long>
  2852. <generic>Ora della Groenlandia occidentale</generic>
  2853. <standard>Ora standard della Groenlandia occidentale</standard>
  2854. <daylight>Ora legale della Groenlandia occidentale</daylight>
  2855. </long>
  2856. </metazone>
  2857. <metazone type="Gulf">
  2858. <long>
  2859. <standard>Ora del Golfo</standard>
  2860. </long>
  2861. </metazone>
  2862. <metazone type="Guyana">
  2863. <long>
  2864. <standard>Ora della Guyana</standard>
  2865. </long>
  2866. </metazone>
  2867. <metazone type="Hawaii_Aleutian">
  2868. <long>
  2869. <generic>Ora delle isole Hawaii-Aleutine</generic>
  2870. <standard>Ora standard delle Isole Hawaii-Aleutine</standard>
  2871. <daylight>Ora legale delle Isole Hawaii-Aleutine</daylight>
  2872. </long>
  2873. </metazone>
  2874. <metazone type="Hong_Kong">
  2875. <long>
  2876. <generic>Ora di Hong Kong</generic>
  2877. <standard>Ora standard di Hong Kong</standard>
  2878. <daylight>Ora legale di Hong Kong</daylight>
  2879. </long>
  2880. </metazone>
  2881. <metazone type="Hovd">
  2882. <long>
  2883. <generic>Ora di Hovd</generic>
  2884. <standard>Ora standard di Hovd</standard>
  2885. <daylight>Ora legale di Hovd</daylight>
  2886. </long>
  2887. </metazone>
  2888. <metazone type="India">
  2889. <long>
  2890. <standard>Ora standard dell'India</standard>
  2891. </long>
  2892. </metazone>
  2893. <metazone type="Indian_Ocean">
  2894. <long>
  2895. <standard>Ora dell'Oceano Indiano</standard>
  2896. </long>
  2897. </metazone>
  2898. <metazone type="Indochina">
  2899. <long>
  2900. <standard>Ora dell'Indocina</standard>
  2901. </long>
  2902. </metazone>
  2903. <metazone type="Indonesia_Central">
  2904. <long>
  2905. <standard>Ora dell'Indonesia centrale</standard>
  2906. </long>
  2907. </metazone>
  2908. <metazone type="Indonesia_Eastern">
  2909. <long>
  2910. <standard>Ora dell'Indonesia orientale</standard>
  2911. </long>
  2912. </metazone>
  2913. <metazone type="Indonesia_Western">
  2914. <long>
  2915. <standard>Ora dell'Indonesia occidentale</standard>
  2916. </long>
  2917. </metazone>
  2918. <metazone type="Iran">
  2919. <long>
  2920. <generic>Ora dell'Iran</generic>
  2921. <standard>Ora standard dell'Iran</standard>
  2922. <daylight>Ora legale dell'Iran</daylight>
  2923. </long>
  2924. </metazone>
  2925. <metazone type="Irkutsk">
  2926. <long>
  2927. <generic>Ora di Irkutsk</generic>
  2928. <standard>Ora standard di Irkutsk</standard>
  2929. <daylight>Ora legale di Irkutsk</daylight>
  2930. </long>
  2931. </metazone>
  2932. <metazone type="Israel">
  2933. <long>
  2934. <generic>Ora di Israele</generic>
  2935. <standard>Ora standard di Israele</standard>
  2936. <daylight>Ora legale di Israele</daylight>
  2937. </long>
  2938. </metazone>
  2939. <metazone type="Japan">
  2940. <long>
  2941. <generic>Ora del Giappone</generic>
  2942. <standard>Ora standard del Giappone</standard>
  2943. <daylight>Ora legale del Giappone</daylight>
  2944. </long>
  2945. </metazone>
  2946. <metazone type="Kamchatka">
  2947. <long>
  2948. <generic draft="contributed">Ora di Petropavlovsk-Kamchatski</generic>
  2949. <standard draft="contributed">Ora standard di Petropavlovsk-Kamchatski</standard>
  2950. <daylight draft="contributed">Ora legale di Petropavlovsk-Kamchatski</daylight>
  2951. </long>
  2952. </metazone>
  2953. <metazone type="Kazakhstan_Eastern">
  2954. <long>
  2955. <standard>Ora del Kazakistan orientale</standard>
  2956. </long>
  2957. </metazone>
  2958. <metazone type="Kazakhstan_Western">
  2959. <long>
  2960. <standard>Ora del Kazakistan occidentale</standard>
  2961. </long>
  2962. </metazone>
  2963. <metazone type="Korea">
  2964. <long>
  2965. <generic>Ora coreana</generic>
  2966. <standard>Ora standard coreana</standard>
  2967. <daylight>Ora legale coreana</daylight>
  2968. </long>
  2969. </metazone>
  2970. <metazone type="Kosrae">
  2971. <long>
  2972. <standard>Ora del Kosrae</standard>
  2973. </long>
  2974. </metazone>
  2975. <metazone type="Krasnoyarsk">
  2976. <long>
  2977. <generic>Ora di Krasnoyarsk</generic>
  2978. <standard>Ora standard di Krasnoyarsk</standard>
  2979. <daylight>Ora legale di Krasnoyarsk</daylight>
  2980. </long>
  2981. </metazone>
  2982. <metazone type="Kyrgystan">
  2983. <long>
  2984. <standard>Ora del Kirghizistan</standard>
  2985. </long>
  2986. </metazone>
  2987. <metazone type="Line_Islands">
  2988. <long>
  2989. <standard>Ora delle Sporadi equatoriali</standard>
  2990. </long>
  2991. </metazone>
  2992. <metazone type="Lord_Howe">
  2993. <long>
  2994. <generic>Ora di Lord Howe</generic>
  2995. <standard>Ora standard di Lord Howe</standard>
  2996. <daylight>Ora legale di Lord Howe</daylight>
  2997. </long>
  2998. </metazone>
  2999. <metazone type="Macquarie">
  3000. <long>
  3001. <standard>Ora dell'Isola Macquarie</standard>
  3002. </long>
  3003. </metazone>
  3004. <metazone type="Magadan">
  3005. <long>
  3006. <generic>Ora di Magadan</generic>
  3007. <standard>Ora standard di Magadan</standard>
  3008. <daylight>Ora legale di Magadan</daylight>
  3009. </long>
  3010. </metazone>
  3011. <metazone type="Malaysia">
  3012. <long>
  3013. <standard>Ora della Malesia</standard>
  3014. </long>
  3015. </metazone>
  3016. <metazone type="Maldives">
  3017. <long>
  3018. <standard>Ora delle Maldive</standard>
  3019. </long>
  3020. </metazone>
  3021. <metazone type="Marquesas">
  3022. <long>
  3023. <standard>Ora delle Marchesi</standard>
  3024. </long>
  3025. </metazone>
  3026. <metazone type="Marshall_Islands">
  3027. <long>
  3028. <standard>Ora delle Isole Marshall</standard>
  3029. </long>
  3030. </metazone>
  3031. <metazone type="Mauritius">
  3032. <long>
  3033. <generic>Ora delle Mauritius</generic>
  3034. <standard>Ora standard delle Mauritius</standard>
  3035. <daylight>Ora legale delle Mauritius</daylight>
  3036. </long>
  3037. </metazone>
  3038. <metazone type="Mawson">
  3039. <long>
  3040. <standard>Ora di Mawson</standard>
  3041. </long>
  3042. </metazone>
  3043. <metazone type="Mongolia">
  3044. <long>
  3045. <generic>Ora di Ulan Bator</generic>
  3046. <standard>Ora standard di Ulan Bator</standard>
  3047. <daylight>Ora legale di Ulan Bator</daylight>
  3048. </long>
  3049. </metazone>
  3050. <metazone type="Moscow">
  3051. <long>
  3052. <generic>Ora di Mosca</generic>
  3053. <standard>Ora standard di Mosca</standard>
  3054. <daylight>Ora legale di Mosca</daylight>
  3055. </long>
  3056. </metazone>
  3057. <metazone type="Myanmar">
  3058. <long>
  3059. <standard>Ora della Birmania</standard>
  3060. </long>
  3061. </metazone>
  3062. <metazone type="Nauru">
  3063. <long>
  3064. <standard>Ora di Nauru</standard>
  3065. </long>
  3066. </metazone>
  3067. <metazone type="Nepal">
  3068. <long>
  3069. <standard>Ora del Nepal</standard>
  3070. </long>
  3071. </metazone>
  3072. <metazone type="New_Caledonia">
  3073. <long>
  3074. <generic>Ora della Nuova Caledonia</generic>
  3075. <standard>Ora standard della Nuova Caledonia</standard>
  3076. <daylight>Ora legale della Nuova Caledonia</daylight>
  3077. </long>
  3078. </metazone>
  3079. <metazone type="New_Zealand">
  3080. <long>
  3081. <generic>Ora della Nuova Zelanda</generic>
  3082. <standard>Ora standard della Nuova Zelanda</standard>
  3083. <daylight>Ora legale della Nuova Zelanda</daylight>
  3084. </long>
  3085. </metazone>
  3086. <metazone type="Newfoundland">
  3087. <long>
  3088. <generic>Ora di Terranova</generic>
  3089. <standard>Ora standard di Terranova</standard>
  3090. <daylight>Ora legale di Terranova</daylight>
  3091. </long>
  3092. </metazone>
  3093. <metazone type="Niue">
  3094. <long>
  3095. <standard>Ora di Niue</standard>
  3096. </long>
  3097. </metazone>
  3098. <metazone type="Norfolk">
  3099. <long>
  3100. <standard>Ora delle Isole Norfolk</standard>
  3101. </long>
  3102. </metazone>
  3103. <metazone type="Noronha">
  3104. <long>
  3105. <generic>Ora di Fernando de Noronha</generic>
  3106. <standard>Ora standard di Fernando de Noronha</standard>
  3107. <daylight>Ora legale di Fernando de Noronha</daylight>
  3108. </long>
  3109. </metazone>
  3110. <metazone type="Novosibirsk">
  3111. <long>
  3112. <generic>Ora di Novosibirsk</generic>
  3113. <standard>Ora standard di Novosibirsk</standard>
  3114. <daylight>Ora legale di Novosibirsk</daylight>
  3115. </long>
  3116. </metazone>
  3117. <metazone type="Omsk">
  3118. <long>
  3119. <generic>Ora di Omsk</generic>
  3120. <standard>Ora standard di Omsk</standard>
  3121. <daylight>Ora legale di Omsk</daylight>
  3122. </long>
  3123. </metazone>
  3124. <metazone type="Pakistan">
  3125. <long>
  3126. <generic>Ora del Pakistan</generic>
  3127. <standard>Ora standard del Pakistan</standard>
  3128. <daylight>Ora legale del Pakistan</daylight>
  3129. </long>
  3130. </metazone>
  3131. <metazone type="Palau">
  3132. <long>
  3133. <standard>Ora di Palau</standard>
  3134. </long>
  3135. </metazone>
  3136. <metazone type="Papua_New_Guinea">
  3137. <long>
  3138. <standard>Ora della Papua Nuova Guinea</standard>
  3139. </long>
  3140. </metazone>
  3141. <metazone type="Paraguay">
  3142. <long>
  3143. <generic>Ora del Paraguay</generic>
  3144. <standard>Ora standard del Paraguay</standard>
  3145. <daylight>Ora legale del Paraguay</daylight>
  3146. </long>
  3147. </metazone>
  3148. <metazone type="Peru">
  3149. <long>
  3150. <generic>Ora del Perù</generic>
  3151. <standard>Ora standard del Perù</standard>
  3152. <daylight>Ora legale del Perù</daylight>
  3153. </long>
  3154. </metazone>
  3155. <metazone type="Philippines">
  3156. <long>
  3157. <generic>Ora delle Filippine</generic>
  3158. <standard>Ora standard delle Filippine</standard>
  3159. <daylight>Ora legale delle Filippine</daylight>
  3160. </long>
  3161. </metazone>
  3162. <metazone type="Phoenix_Islands">
  3163. <long>
  3164. <standard>Ora delle Isole della Fenice</standard>
  3165. </long>
  3166. </metazone>
  3167. <metazone type="Pierre_Miquelon">
  3168. <long>
  3169. <generic>Ora di Saint-Pierre e Miquelon</generic>
  3170. <standard>Ora standard di Saint-Pierre e Miquelon</standard>
  3171. <daylight>Ora legale di Saint-Pierre e Miquelon</daylight>
  3172. </long>
  3173. </metazone>
  3174. <metazone type="Pitcairn">
  3175. <long>
  3176. <standard>Ora delle Pitcairn</standard>
  3177. </long>
  3178. </metazone>
  3179. <metazone type="Ponape">
  3180. <long>
  3181. <standard>Ora di Pohnpei</standard>
  3182. </long>
  3183. </metazone>
  3184. <metazone type="Reunion">
  3185. <long>
  3186. <standard>Ora di Riunione</standard>
  3187. </long>
  3188. </metazone>
  3189. <metazone type="Rothera">
  3190. <long>
  3191. <standard>Ora di Rothera</standard>
  3192. </long>
  3193. </metazone>
  3194. <metazone type="Sakhalin">
  3195. <long>
  3196. <generic>Ora di Sakhalin</generic>
  3197. <standard>Ora standard di Sakhalin</standard>
  3198. <daylight>Ora legale di Sakhalin</daylight>
  3199. </long>
  3200. </metazone>
  3201. <metazone type="Samara">
  3202. <long>
  3203. <generic draft="contributed">Ora di Samara</generic>
  3204. <standard draft="contributed">Ora standard di Samara</standard>
  3205. <daylight draft="contributed">Ora legale di Samara</daylight>
  3206. </long>
  3207. </metazone>
  3208. <metazone type="Samoa">
  3209. <long>
  3210. <generic>Ora di Samoa</generic>
  3211. <standard>Ora standard di Samoa</standard>
  3212. <daylight>Ora legale di Samoa</daylight>
  3213. </long>
  3214. </metazone>
  3215. <metazone type="Seychelles">
  3216. <long>
  3217. <standard>Ora delle Seychelles</standard>
  3218. </long>
  3219. </metazone>
  3220. <metazone type="Singapore">
  3221. <long>
  3222. <standard>Ora Singapore</standard>
  3223. </long>
  3224. </metazone>
  3225. <metazone type="Solomon">
  3226. <long>
  3227. <standard>Ora delle Isole Salomone</standard>
  3228. </long>
  3229. </metazone>
  3230. <metazone type="South_Georgia">
  3231. <long>
  3232. <standard>Ora della Georgia del Sud</standard>
  3233. </long>
  3234. </metazone>
  3235. <metazone type="Suriname">
  3236. <long>
  3237. <standard>Ora del Suriname</standard>
  3238. </long>
  3239. </metazone>
  3240. <metazone type="Syowa">
  3241. <long>
  3242. <standard>Ora di Syowa</standard>
  3243. </long>
  3244. </metazone>
  3245. <metazone type="Tahiti">
  3246. <long>
  3247. <standard>Ora di Tahiti</standard>
  3248. </long>
  3249. </metazone>
  3250. <metazone type="Taipei">
  3251. <long>
  3252. <generic>Ora di Taipei</generic>
  3253. <standard>Ora standard di Taipei</standard>
  3254. <daylight>Ora legale di Taipei</daylight>
  3255. </long>
  3256. </metazone>
  3257. <metazone type="Tajikistan">
  3258. <long>
  3259. <standard>Ora del Tagikistan</standard>
  3260. </long>
  3261. </metazone>
  3262. <metazone type="Tokelau">
  3263. <long>
  3264. <standard>Ora di Tokelau</standard>
  3265. </long>
  3266. </metazone>
  3267. <metazone type="Tonga">
  3268. <long>
  3269. <generic>Ora di Tonga</generic>
  3270. <standard>Ora standard di Tonga</standard>
  3271. <daylight>Ora legale di Tonga</daylight>
  3272. </long>
  3273. </metazone>
  3274. <metazone type="Truk">
  3275. <long>
  3276. <standard>Ora del Chuuk</standard>
  3277. </long>
  3278. </metazone>
  3279. <metazone type="Turkmenistan">
  3280. <long>
  3281. <generic>Ora del Turkmenistan</generic>
  3282. <standard>Ora standard del Turkmenistan</standard>
  3283. <daylight>Ora legale del Turkmenistan</daylight>
  3284. </long>
  3285. </metazone>
  3286. <metazone type="Tuvalu">
  3287. <long>
  3288. <standard>Ora di Tuvalu</standard>
  3289. </long>
  3290. </metazone>
  3291. <metazone type="Uruguay">
  3292. <long>
  3293. <generic>Ora dell'Uruguay</generic>
  3294. <standard>Ora standard dell'Uruguay</standard>
  3295. <daylight>Ora legale dell'Uruguay</daylight>
  3296. </long>
  3297. </metazone>
  3298. <metazone type="Uzbekistan">
  3299. <long>
  3300. <generic>Ora dell'Uzbekistan</generic>
  3301. <standard>Ora standard dell'Uzbekistan</standard>
  3302. <daylight>Ora legale dell'Uzbekistan</daylight>
  3303. </long>
  3304. </metazone>
  3305. <metazone type="Vanuatu">
  3306. <long>
  3307. <generic>Ora del Vanuatu</generic>
  3308. <standard>Ora standard del Vanuatu</standard>
  3309. <daylight>Ora legale del Vanuatu</daylight>
  3310. </long>
  3311. </metazone>
  3312. <metazone type="Venezuela">
  3313. <long>
  3314. <standard>Ora del Venezuela</standard>
  3315. </long>
  3316. </metazone>
  3317. <metazone type="Vladivostok">
  3318. <long>
  3319. <generic>Ora di Vladivostok</generic>
  3320. <standard>Ora standard di Vladivostok</standard>
  3321. <daylight>Ora legale di Vladivostok</daylight>
  3322. </long>
  3323. </metazone>
  3324. <metazone type="Volgograd">
  3325. <long>
  3326. <generic>Ora di Volgograd</generic>
  3327. <standard>Ora standard di Volgograd</standard>
  3328. <daylight>Ora legale di Volgograd</daylight>
  3329. </long>
  3330. </metazone>
  3331. <metazone type="Vostok">
  3332. <long>
  3333. <standard>Ora di Vostok</standard>
  3334. </long>
  3335. </metazone>
  3336. <metazone type="Wake">
  3337. <long>
  3338. <standard>Ora dell'Isola di Wake</standard>
  3339. </long>
  3340. </metazone>
  3341. <metazone type="Wallis">
  3342. <long>
  3343. <standard>Ora di Wallis e Futuna</standard>
  3344. </long>
  3345. </metazone>
  3346. <metazone type="Yakutsk">
  3347. <long>
  3348. <generic>Ora di Yakutsk</generic>
  3349. <standard>Ora standard di Yakutsk</standard>
  3350. <daylight>Ora legale di Yakutsk</daylight>
  3351. </long>
  3352. </metazone>
  3353. <metazone type="Yekaterinburg">
  3354. <long>
  3355. <generic>Ora di Ekaterinburg</generic>
  3356. <standard>Ora standard di Ekaterinburg</standard>
  3357. <daylight>Ora legale di Ekaterinburg</daylight>
  3358. </long>
  3359. </metazone>
  3360. </timeZoneNames>
  3361. </dates>
  3362. <numbers>
  3363. <symbols numberSystem="latn">
  3364. <decimal>,</decimal>
  3365. <group>.</group>
  3366. <list draft="contributed">;</list>
  3367. <percentSign>%</percentSign>
  3368. <plusSign>+</plusSign>
  3369. <minusSign>-</minusSign>
  3370. <exponential>E</exponential>
  3371. <superscriptingExponent>×</superscriptingExponent>
  3372. <perMille>‰</perMille>
  3373. <infinity>∞</infinity>
  3374. <nan>NaN</nan>
  3375. </symbols>
  3376. <decimalFormats numberSystem="latn">
  3377. <decimalFormatLength>
  3378. <decimalFormat>
  3379. <pattern>#,##0.###</pattern>
  3380. </decimalFormat>
  3381. </decimalFormatLength>
  3382. <decimalFormatLength type="long">
  3383. <decimalFormat>
  3384. <pattern type="1000" count="one">0 migliaio</pattern>
  3385. <pattern type="1000" count="other">0 migliaia</pattern>
  3386. <pattern type="10000" count="one">00 migliaia</pattern>
  3387. <pattern type="10000" count="other">00 migliaia</pattern>
  3388. <pattern type="100000" count="one">000 migliaia</pattern>
  3389. <pattern type="100000" count="other">000 migliaia</pattern>
  3390. <pattern type="1000000" count="one">0 milione</pattern>
  3391. <pattern type="1000000" count="other">0 milioni</pattern>
  3392. <pattern type="10000000" count="one">00 milioni</pattern>
  3393. <pattern type="10000000" count="other">00 milioni</pattern>
  3394. <pattern type="100000000" count="one">000 milioni</pattern>
  3395. <pattern type="100000000" count="other">000 milioni</pattern>
  3396. <pattern type="1000000000" count="one">0 miliardi</pattern>
  3397. <pattern type="1000000000" count="other">0 miliardi</pattern>
  3398. <pattern type="10000000000" count="one">00 miliardi</pattern>
  3399. <pattern type="10000000000" count="other">00 miliardi</pattern>
  3400. <pattern type="100000000000" count="one">000 miliardi</pattern>
  3401. <pattern type="100000000000" count="other">000 miliardi</pattern>
  3402. <pattern type="1000000000000" count="one">0 bilione</pattern>
  3403. <pattern type="1000000000000" count="other">0 bilioni</pattern>
  3404. <pattern type="10000000000000" count="one">00 bilioni</pattern>
  3405. <pattern type="10000000000000" count="other">00 bilioni</pattern>
  3406. <pattern type="100000000000000" count="one">000 bilioni</pattern>
  3407. <pattern type="100000000000000" count="other">000 bilioni</pattern>
  3408. </decimalFormat>
  3409. </decimalFormatLength>
  3410. <decimalFormatLength type="short">
  3411. <decimalFormat>
  3412. <pattern type="1000" count="one">0</pattern>
  3413. <pattern type="1000" count="other">0</pattern>
  3414. <pattern type="10000" count="one">0</pattern>
  3415. <pattern type="10000" count="other">0</pattern>
  3416. <pattern type="100000" count="one">0</pattern>
  3417. <pattern type="100000" count="other">0</pattern>
  3418. <pattern type="1000000" count="one">0 Mln</pattern>
  3419. <pattern type="1000000" count="other">0 Mln</pattern>
  3420. <pattern type="10000000" count="one">00 Mln</pattern>
  3421. <pattern type="10000000" count="other">00 Mln</pattern>
  3422. <pattern type="100000000" count="one">000 Mln</pattern>
  3423. <pattern type="100000000" count="other">000 Mln</pattern>
  3424. <pattern type="1000000000" count="one">0 Mld</pattern>
  3425. <pattern type="1000000000" count="other">0 Mld</pattern>
  3426. <pattern type="10000000000" count="one">00 Mld</pattern>
  3427. <pattern type="10000000000" count="other">00 Mld</pattern>
  3428. <pattern type="100000000000" count="one">000 Mld</pattern>
  3429. <pattern type="100000000000" count="other">000 Mld</pattern>
  3430. <pattern type="1000000000000" count="one">0 Bln</pattern>
  3431. <pattern type="1000000000000" count="other">0 Bln</pattern>
  3432. <pattern type="10000000000000" count="one">00 Bln</pattern>
  3433. <pattern type="10000000000000" count="other">00 Bln</pattern>
  3434. <pattern type="100000000000000" count="one">000 Bln</pattern>
  3435. <pattern type="100000000000000" count="other">000 Bln</pattern>
  3436. </decimalFormat>
  3437. </decimalFormatLength>
  3438. </decimalFormats>
  3439. <scientificFormats numberSystem="latn">
  3440. <scientificFormatLength>
  3441. <scientificFormat>
  3442. <pattern>#E0</pattern>
  3443. </scientificFormat>
  3444. </scientificFormatLength>
  3445. </scientificFormats>
  3446. <percentFormats numberSystem="latn">
  3447. <percentFormatLength>
  3448. <percentFormat>
  3449. <pattern>#,##0%</pattern>
  3450. </percentFormat>
  3451. </percentFormatLength>
  3452. </percentFormats>
  3453. <currencyFormats numberSystem="latn">
  3454. <currencyFormatLength>
  3455. <currencyFormat type="standard">
  3456. <pattern>#,##0.00 ¤</pattern>
  3457. </currencyFormat>
  3458. </currencyFormatLength>
  3459. <unitPattern count="one">{0} {1}</unitPattern>
  3460. <unitPattern count="other">{0} {1}</unitPattern>
  3461. </currencyFormats>
  3462. <currencies>
  3463. <currency type="ADP">
  3464. <displayName>Peseta Andorrana</displayName>
  3465. </currency>
  3466. <currency type="AED">
  3467. <displayName>Dirham degli Emirati Arabi Uniti</displayName>
  3468. <displayName count="one" draft="contributed">dirham degli EAU</displayName>
  3469. <displayName count="other" draft="contributed">dirham degli EAU</displayName>
  3470. </currency>
  3471. <currency type="AFA">
  3472. <displayName>Afgani (1927–2002)</displayName>
  3473. </currency>
  3474. <currency type="AFN">
  3475. <displayName>Afghani</displayName>
  3476. <displayName count="one" draft="contributed">afghani</displayName>
  3477. <displayName count="other" draft="contributed">afghani</displayName>
  3478. </currency>
  3479. <currency type="ALL">
  3480. <displayName>Lek Albanese</displayName>
  3481. <displayName count="one" draft="contributed">lek albanese</displayName>
  3482. <displayName count="other" draft="contributed">lek albanese</displayName>
  3483. </currency>
  3484. <currency type="AMD">
  3485. <displayName>Dram Armeno</displayName>
  3486. <displayName count="one" draft="contributed">dram</displayName>
  3487. <displayName count="other" draft="contributed">dram</displayName>
  3488. </currency>
  3489. <currency type="ANG">
  3490. <displayName>Fiorino delle Antille Olandesi</displayName>
  3491. <displayName count="one" draft="contributed">fiorino delle Antille Olandesi</displayName>
  3492. <displayName count="other" draft="contributed">fiorini delle Antille Olandesi</displayName>
  3493. </currency>
  3494. <currency type="AOA">
  3495. <displayName>Kwanza Angolano</displayName>
  3496. <displayName count="one" draft="contributed">kwanza angolano</displayName>
  3497. <displayName count="other" draft="contributed">kwanza angolani</displayName>
  3498. </currency>
  3499. <currency type="AOK">
  3500. <displayName>Kwanza Angolano (1977–1990)</displayName>
  3501. </currency>
  3502. <currency type="AON">
  3503. <displayName>Nuovo Kwanza Angolano (1990–2000)</displayName>
  3504. </currency>
  3505. <currency type="AOR">
  3506. <displayName>Kwanza Reajustado Angolano (1995–1999)</displayName>
  3507. </currency>
  3508. <currency type="ARA">
  3509. <displayName>Austral Argentino</displayName>
  3510. </currency>
  3511. <currency type="ARP">
  3512. <displayName>Peso Argentino (vecchio Cod.)</displayName>
  3513. </currency>
  3514. <currency type="ARS">
  3515. <displayName>Peso Argentino</displayName>
  3516. <displayName count="one" draft="contributed">peso argentino</displayName>
  3517. <displayName count="other" draft="contributed">pesos argentini</displayName>
  3518. </currency>
  3519. <currency type="ATS">
  3520. <displayName>Scellino Austriaco</displayName>
  3521. </currency>
  3522. <currency type="AUD">
  3523. <displayName>Dollaro Australiano</displayName>
  3524. <displayName count="one" draft="contributed">dollaro australiano</displayName>
  3525. <displayName count="other" draft="contributed">dollari australiani</displayName>
  3526. <symbol draft="contributed">A$</symbol>
  3527. </currency>
  3528. <currency type="AWG">
  3529. <displayName>Fiorino di Aruba</displayName>
  3530. <displayName count="one" draft="contributed">fiorino di Aruba</displayName>
  3531. <displayName count="other" draft="contributed">fiorini di Aruba</displayName>
  3532. </currency>
  3533. <currency type="AZM">
  3534. <displayName>Manat Azero (1993–2006)</displayName>
  3535. </currency>
  3536. <currency type="AZN">
  3537. <displayName draft="contributed">Manat Azero</displayName>
  3538. <displayName count="one" draft="contributed">manat azero</displayName>
  3539. <displayName count="other" draft="contributed">manat azeri</displayName>
  3540. </currency>
  3541. <currency type="BAD">
  3542. <displayName>Dinar Bosnia-Herzegovina</displayName>
  3543. </currency>
  3544. <currency type="BAM">
  3545. <displayName>Marco Conv. Bosnia-Erzegovina</displayName>
  3546. <displayName count="one" draft="contributed">marco bosniaco</displayName>
  3547. <displayName count="other" draft="contributed">marchi bosniaci</displayName>
  3548. </currency>
  3549. <currency type="BBD">
  3550. <displayName>Dollaro di Barbados</displayName>
  3551. <displayName count="one" draft="contributed">dollaro di Barbados</displayName>
  3552. <displayName count="other" draft="contributed">dollari di Barbados</displayName>
  3553. </currency>
  3554. <currency type="BDT">
  3555. <displayName>Taka Bangladese</displayName>
  3556. <displayName count="one" draft="contributed">taka bengalese</displayName>
  3557. <displayName count="other" draft="contributed">taka bengalesi</displayName>
  3558. </currency>
  3559. <currency type="BEC">
  3560. <displayName>Franco Belga (convertibile)</displayName>
  3561. </currency>
  3562. <currency type="BEF">
  3563. <displayName>Franco Belga</displayName>
  3564. </currency>
  3565. <currency type="BEL">
  3566. <displayName>Franco Belga (finanziario)</displayName>
  3567. </currency>
  3568. <currency type="BGL">
  3569. <displayName>Lev Bulgaro</displayName>
  3570. </currency>
  3571. <currency type="BGN">
  3572. <displayName>Nuovo Lev Bulgaro</displayName>
  3573. <displayName count="one" draft="contributed">nuovo lev bulgaro</displayName>
  3574. <displayName count="other" draft="contributed">nuovi lev bulgari</displayName>
  3575. </currency>
  3576. <currency type="BHD">
  3577. <displayName>Dinaro del Bahraini</displayName>
  3578. <displayName count="one" draft="contributed">dinaro del Bahrain</displayName>
  3579. <displayName count="other" draft="contributed">dinari del Bahrain</displayName>
  3580. </currency>
  3581. <currency type="BIF">
  3582. <displayName>Franco del Burundi</displayName>
  3583. <displayName count="one" draft="contributed">franco del Burundi</displayName>
  3584. <displayName count="other" draft="contributed">franchi del Burundi</displayName>
  3585. </currency>
  3586. <currency type="BMD">
  3587. <displayName>Dollaro delle Bermuda</displayName>
  3588. <displayName count="one">dollaro delle Bermuda</displayName>
  3589. <displayName count="other">dollari delle Bermuda</displayName>
  3590. </currency>
  3591. <currency type="BND">
  3592. <displayName>Dollaro del Brunei</displayName>
  3593. <displayName count="one" draft="contributed">dollaro del Brunei</displayName>
  3594. <displayName count="other" draft="contributed">dollari del Brunei</displayName>
  3595. </currency>
  3596. <currency type="BOB">
  3597. <displayName>Boliviano</displayName>
  3598. <displayName count="one" draft="contributed">boliviano</displayName>
  3599. <displayName count="other" draft="contributed">boliviani</displayName>
  3600. </currency>
  3601. <currency type="BOP">
  3602. <displayName>Peso Boliviano</displayName>
  3603. </currency>
  3604. <currency type="BOV">
  3605. <displayName>Mvdol Boliviano</displayName>
  3606. </currency>
  3607. <currency type="BRB">
  3608. <displayName>Cruzeiro Novo Brasiliano (1967–1986)</displayName>
  3609. </currency>
  3610. <currency type="BRC">
  3611. <displayName>Cruzado Brasiliano</displayName>
  3612. </currency>
  3613. <currency type="BRE">
  3614. <displayName>Cruzeiro Brasiliano (1990–1993)</displayName>
  3615. </currency>
  3616. <currency type="BRL">
  3617. <displayName>Real Brasiliano</displayName>
  3618. <displayName count="one" draft="contributed">real brasiliano</displayName>
  3619. <displayName count="other" draft="contributed">real brasiliani</displayName>
  3620. <symbol draft="contributed">R$</symbol>
  3621. </currency>
  3622. <currency type="BRN">
  3623. <displayName>Cruzado Novo Brasiliano</displayName>
  3624. </currency>
  3625. <currency type="BRR">
  3626. <displayName>Cruzeiro Brasiliano</displayName>
  3627. </currency>
  3628. <currency type="BSD">
  3629. <displayName>Dollaro delle Bahamas</displayName>
  3630. <displayName count="one" draft="contributed">dollaro delle Bahamas</displayName>
  3631. <displayName count="other" draft="contributed">dollari delle Bahamas</displayName>
  3632. </currency>
  3633. <currency type="BTN">
  3634. <displayName>Ngultrum Butanese</displayName>
  3635. <displayName count="one" draft="contributed">ngultrum del Bhutan</displayName>
  3636. <displayName count="other" draft="contributed">ngultrum del Bhutan</displayName>
  3637. </currency>
  3638. <currency type="BUK">
  3639. <displayName>Kyat Birmano</displayName>
  3640. </currency>
  3641. <currency type="BWP">
  3642. <displayName>Pula del Botswana</displayName>
  3643. <displayName count="one" draft="contributed">pula del Botswana</displayName>
  3644. <displayName count="other" draft="contributed">pula del Botswana</displayName>
  3645. </currency>
  3646. <currency type="BYB">
  3647. <displayName>Nuovo Rublo Bielorussia (1994–1999)</displayName>
  3648. </currency>
  3649. <currency type="BYR">
  3650. <displayName>Rublo Bielorussia</displayName>
  3651. <displayName count="one" draft="contributed">rublo bielorusso</displayName>
  3652. <displayName count="other" draft="contributed">rubli bielorussi</displayName>
  3653. </currency>
  3654. <currency type="BZD">
  3655. <displayName>Dollaro del Belize</displayName>
  3656. <displayName count="one">dollaro del Belize</displayName>
  3657. <displayName count="other">dollari del Belize</displayName>
  3658. </currency>
  3659. <currency type="CAD">
  3660. <displayName>Dollaro Canadese</displayName>
  3661. <displayName count="one">dollaro canadese</displayName>
  3662. <displayName count="other">dollari canadesi</displayName>
  3663. <symbol>CA$</symbol>
  3664. </currency>
  3665. <currency type="CDF">
  3666. <displayName>Franco Congolese</displayName>
  3667. <displayName count="one" draft="contributed">franco congolese</displayName>
  3668. <displayName count="other" draft="contributed">franchi congolesi</displayName>
  3669. </currency>
  3670. <currency type="CHF">
  3671. <displayName>Franco Svizzero</displayName>
  3672. <displayName count="one" draft="contributed">franco svizzero</displayName>
  3673. <displayName count="other" draft="contributed">franchi svizzeri</displayName>
  3674. </currency>
  3675. <currency type="CLF">
  3676. <displayName>Unidades de Fomento Chilene</displayName>
  3677. </currency>
  3678. <currency type="CLP">
  3679. <displayName>Peso Cileno</displayName>
  3680. <displayName count="one" draft="contributed">peso cileno</displayName>
  3681. <displayName count="other" draft="contributed">pesos cileni</displayName>
  3682. </currency>
  3683. <currency type="CNY">
  3684. <displayName>Renmimbi Cinese</displayName>
  3685. <displayName count="one" draft="contributed">renmimbi cinese</displayName>
  3686. <displayName count="other" draft="contributed">renmimbi cinesi</displayName>
  3687. <symbol draft="contributed">CN¥</symbol>
  3688. </currency>
  3689. <currency type="COP">
  3690. <displayName>Peso Colombiano</displayName>
  3691. <displayName count="one" draft="contributed">peso colombiano</displayName>
  3692. <displayName count="other" draft="contributed">pesos colombiani</displayName>
  3693. </currency>
  3694. <currency type="CRC">
  3695. <displayName>Colón Costaricano</displayName>
  3696. <displayName count="one">colón costaricano</displayName>
  3697. <displayName count="other">colón costaricani</displayName>
  3698. </currency>
  3699. <currency type="CSD">
  3700. <displayName draft="contributed">Antico Dinaro Serbo</displayName>
  3701. </currency>
  3702. <currency type="CSK">
  3703. <displayName>Corona forte cecoslovacca</displayName>
  3704. </currency>
  3705. <currency type="CUC">
  3706. <displayName draft="contributed">Peso Cubano Convertibile</displayName>
  3707. <displayName count="one" draft="contributed">peso cubano convertibile</displayName>
  3708. <displayName count="other" draft="contributed">pesos cubani convertibili</displayName>
  3709. </currency>
  3710. <currency type="CUP">
  3711. <displayName>Peso Cubano</displayName>
  3712. <displayName count="one" draft="contributed">peso cubano</displayName>
  3713. <displayName count="other" draft="contributed">pesos cubani</displayName>
  3714. </currency>
  3715. <currency type="CVE">
  3716. <displayName>Escudo del Capo Verde</displayName>
  3717. <displayName count="one">escudo del Capo Verde</displayName>
  3718. <displayName count="other">escudo del Capo Verde</displayName>
  3719. </currency>
  3720. <currency type="CYP">
  3721. <displayName>Sterlina Cipriota</displayName>
  3722. </currency>
  3723. <currency type="CZK">
  3724. <displayName>Corona Ceca</displayName>
  3725. <displayName count="one" draft="contributed">corona ceca</displayName>
  3726. <displayName count="other" draft="contributed">corone ceche</displayName>
  3727. </currency>
  3728. <currency type="DDM">
  3729. <displayName>Ostmark della Germania Orientale</displayName>
  3730. </currency>
  3731. <currency type="DEM">
  3732. <displayName>Marco Tedesco</displayName>
  3733. </currency>
  3734. <currency type="DJF">
  3735. <displayName>Franco Gibutiano</displayName>
  3736. <displayName count="one">Franco Gibutiano</displayName>
  3737. <displayName count="other">Franco Gibutiano</displayName>
  3738. </currency>
  3739. <currency type="DKK">
  3740. <displayName>Corona Danese</displayName>
  3741. <displayName count="one" draft="contributed">corona danese</displayName>
  3742. <displayName count="other" draft="contributed">corone danesi</displayName>
  3743. </currency>
  3744. <currency type="DOP">
  3745. <displayName>Peso Dominicano</displayName>
  3746. <displayName count="one" draft="contributed">peso dominicano</displayName>
  3747. <displayName count="other" draft="contributed">pesos dominicani</displayName>
  3748. </currency>
  3749. <currency type="DZD">
  3750. <displayName>Dinaro Algerino</displayName>
  3751. <displayName count="one" draft="contributed">dinaro algerino</displayName>
  3752. <displayName count="other" draft="contributed">dinari algerini</displayName>
  3753. </currency>
  3754. <currency type="ECS">
  3755. <displayName>Sucre dell’Ecuador</displayName>
  3756. </currency>
  3757. <currency type="ECV">
  3758. <displayName>Unidad de Valor Constante (UVC) dell’Ecuador</displayName>
  3759. </currency>
  3760. <currency type="EEK">
  3761. <displayName>Corona dell’Estonia</displayName>
  3762. </currency>
  3763. <currency type="EGP">
  3764. <displayName>Sterlina Egiziana</displayName>
  3765. <displayName count="one" draft="contributed">sterlina egiziana</displayName>
  3766. <displayName count="other" draft="contributed">sterline egiziane</displayName>
  3767. </currency>
  3768. <currency type="ERN">
  3769. <displayName>Nakfa Eritreo</displayName>
  3770. <displayName count="one" draft="contributed">nakfa eritreo</displayName>
  3771. <displayName count="other" draft="contributed">nakfa eritrei</displayName>
  3772. </currency>
  3773. <currency type="ESA">
  3774. <displayName draft="contributed">Peseta Spagnola Account</displayName>
  3775. </currency>
  3776. <currency type="ESB">
  3777. <displayName draft="contributed">Peseta Spagnola Account Convertibile</displayName>
  3778. </currency>
  3779. <currency type="ESP">
  3780. <displayName>Peseta Spagnola</displayName>
  3781. </currency>
  3782. <currency type="ETB">
  3783. <displayName>Birr Etiopico</displayName>
  3784. <displayName count="one" draft="contributed">birr etiopico</displayName>
  3785. <displayName count="other" draft="contributed">birr etiopici</displayName>
  3786. </currency>
  3787. <currency type="EUR">
  3788. <displayName>Euro</displayName>
  3789. <displayName count="one" draft="contributed">euro</displayName>
  3790. <displayName count="other" draft="contributed">euro</displayName>
  3791. </currency>
  3792. <currency type="FIM">
  3793. <displayName>Markka Finlandese</displayName>
  3794. </currency>
  3795. <currency type="FJD">
  3796. <displayName>Dollaro delle Figi</displayName>
  3797. <displayName count="one" draft="contributed">dollaro delle Figi</displayName>
  3798. <displayName count="other" draft="contributed">dollari delle Figi</displayName>
  3799. </currency>
  3800. <currency type="FKP">
  3801. <displayName>Sterlina delle Falkland</displayName>
  3802. <displayName count="one" draft="contributed">sterlina delle Falkland</displayName>
  3803. <displayName count="other" draft="contributed">sterline delle Falkland</displayName>
  3804. </currency>
  3805. <currency type="FRF">
  3806. <displayName>Franco Francese</displayName>
  3807. </currency>
  3808. <currency type="GBP">
  3809. <displayName>Sterlina Inglese</displayName>
  3810. <displayName count="one" draft="contributed">sterlina inglese</displayName>
  3811. <displayName count="other" draft="contributed">sterline inglesi</displayName>
  3812. <symbol draft="contributed">£</symbol>
  3813. </currency>
  3814. <currency type="GEK">
  3815. <displayName>Kupon Larit Georgiano</displayName>
  3816. </currency>
  3817. <currency type="GEL">
  3818. <displayName>Lari Georgiano</displayName>
  3819. <displayName count="one" draft="contributed">lari georgiano</displayName>
  3820. <displayName count="other" draft="contributed">lari georgiani</displayName>
  3821. </currency>
  3822. <currency type="GHC">
  3823. <displayName>Cedi del Ghana</displayName>
  3824. </currency>
  3825. <currency type="GHS">
  3826. <displayName>Cedi ghanese</displayName>
  3827. <displayName count="one" draft="contributed">cedi ghanese</displayName>
  3828. <displayName count="other" draft="contributed">cedi ghanesi</displayName>
  3829. </currency>
  3830. <currency type="GIP">
  3831. <displayName>Sterlina di Gibilterra</displayName>
  3832. <displayName count="one" draft="contributed">sterlina di Gibilterra</displayName>
  3833. <displayName count="other" draft="contributed">sterline di Gibilterra</displayName>
  3834. </currency>
  3835. <currency type="GMD">
  3836. <displayName>Dalasi del Gambia</displayName>
  3837. <displayName count="one" draft="contributed">dalasi del Gambia</displayName>
  3838. <displayName count="other" draft="contributed">dalasi del Gambia</displayName>
  3839. </currency>
  3840. <currency type="GNF">
  3841. <displayName>Franco della Guinea</displayName>
  3842. <displayName count="one" draft="contributed">franco della Guinea</displayName>
  3843. <displayName count="other" draft="contributed">franchi della Guinea</displayName>
  3844. </currency>
  3845. <currency type="GNS">
  3846. <displayName>Syli della Guinea</displayName>
  3847. </currency>
  3848. <currency type="GQE">
  3849. <displayName>Ekwele della Guinea Equatoriale</displayName>
  3850. </currency>
  3851. <currency type="GRD">
  3852. <displayName>Dracma Greca</displayName>
  3853. </currency>
  3854. <currency type="GTQ">
  3855. <displayName>Quetzal Guatemalteco</displayName>
  3856. <displayName count="one" draft="contributed">quetzal guatemalteco</displayName>
  3857. <displayName count="other" draft="contributed">quetzal guatemaltechi</displayName>
  3858. </currency>
  3859. <currency type="GWE">
  3860. <displayName>Escudo della Guinea portoghese</displayName>
  3861. </currency>
  3862. <currency type="GWP">
  3863. <displayName>Peso della Guinea-Bissau</displayName>
  3864. </currency>
  3865. <currency type="GYD">
  3866. <displayName>Dollaro della Guyana</displayName>
  3867. <displayName count="one" draft="contributed">dollaro della Guyana</displayName>
  3868. <displayName count="other" draft="contributed">dollari della Guyana</displayName>
  3869. </currency>
  3870. <currency type="HKD">
  3871. <displayName>Dollaro di Hong Kong</displayName>
  3872. <displayName count="one" draft="contributed">dollaro di Hong Kong</displayName>
  3873. <displayName count="other" draft="contributed">dollari di Hong Kong</displayName>
  3874. <symbol draft="contributed">HK$</symbol>
  3875. </currency>
  3876. <currency type="HNL">
  3877. <displayName>Lempira Honduregna</displayName>
  3878. <displayName count="one" draft="contributed">lempira honduregna</displayName>
  3879. <displayName count="other" draft="contributed">lempire honduregne</displayName>
  3880. </currency>
  3881. <currency type="HRD">
  3882. <displayName>Dinaro Croato</displayName>
  3883. </currency>
  3884. <currency type="HRK">
  3885. <displayName>Kuna Croata</displayName>
  3886. <displayName count="one" draft="contributed">kuna croata</displayName>
  3887. <displayName count="other" draft="contributed">kuna croate</displayName>
  3888. </currency>
  3889. <currency type="HTG">
  3890. <displayName>Gourde Haitiano</displayName>
  3891. <displayName count="one" draft="contributed">gourde haitiano</displayName>
  3892. <displayName count="other" draft="contributed">gourde haitiani</displayName>
  3893. </currency>
  3894. <currency type="HUF">
  3895. <displayName>Fiorino Ungherese</displayName>
  3896. <displayName count="one" draft="contributed">fiorino ungherese</displayName>
  3897. <displayName count="other" draft="contributed">fiorini ungheresi</displayName>
  3898. </currency>
  3899. <currency type="IDR">
  3900. <displayName>Rupia Indonesiana</displayName>
  3901. <displayName count="one" draft="contributed">rupia indonesiana</displayName>
  3902. <displayName count="other" draft="contributed">rupie indonesiane</displayName>
  3903. </currency>
  3904. <currency type="IEP">
  3905. <displayName>Sterlina irlandese</displayName>
  3906. </currency>
  3907. <currency type="ILP">
  3908. <displayName>Sterlina Israeliana</displayName>
  3909. </currency>
  3910. <currency type="ILS">
  3911. <displayName>Nuovo Shequel Israeliano</displayName>
  3912. <displayName count="one" draft="contributed">nuovo shekel israeliano</displayName>
  3913. <displayName count="other" draft="contributed">Nuovi shekel israeliani</displayName>
  3914. <symbol draft="contributed">₪</symbol>
  3915. </currency>
  3916. <currency type="INR">
  3917. <displayName>Rupia Indiana</displayName>
  3918. <displayName count="one" draft="contributed">rupia indiana</displayName>
  3919. <displayName count="other" draft="contributed">rupie indiane</displayName>
  3920. <symbol draft="contributed">₹</symbol>
  3921. </currency>
  3922. <currency type="IQD">
  3923. <displayName>Dinaro Iracheno</displayName>
  3924. <displayName count="one" draft="contributed">dinaro iracheno</displayName>
  3925. <displayName count="other" draft="contributed">dinari iracheni</displayName>
  3926. </currency>
  3927. <currency type="IRR">
  3928. <displayName>Rial Iraniano</displayName>
  3929. <displayName count="one" draft="contributed">rial iraniano</displayName>
  3930. <displayName count="other" draft="contributed">rial iraniani</displayName>
  3931. </currency>
  3932. <currency type="ISK">
  3933. <displayName>Corona Islandese</displayName>
  3934. <displayName count="one" draft="contributed">corona islandese</displayName>
  3935. <displayName count="other" draft="contributed">corone islandesi</displayName>
  3936. </currency>
  3937. <currency type="ITL">
  3938. <pattern>¤ #,##0.00</pattern>
  3939. <displayName>Lira Italiana</displayName>
  3940. <decimal>,</decimal>
  3941. <group>.</group>
  3942. </currency>
  3943. <currency type="JMD">
  3944. <displayName>Dollaro Giamaicano</displayName>
  3945. <displayName count="one" draft="contributed">dollaro giamaicano</displayName>
  3946. <displayName count="other" draft="contributed">dollari giamaicani</displayName>
  3947. </currency>
  3948. <currency type="JOD">
  3949. <displayName>Dinaro Giordano</displayName>
  3950. <displayName count="one" draft="contributed">dinaro giordano</displayName>
  3951. <displayName count="other" draft="contributed">dinari giordani</displayName>
  3952. </currency>
  3953. <currency type="JPY">
  3954. <displayName>Yen Giapponese</displayName>
  3955. <displayName count="one" draft="contributed">yen giapponese</displayName>
  3956. <displayName count="other" draft="contributed">yen giapponesi</displayName>
  3957. <symbol draft="contributed">JP¥</symbol>
  3958. </currency>
  3959. <currency type="KES">
  3960. <displayName>Scellino Keniota</displayName>
  3961. <displayName count="one" draft="contributed">scellino keniota</displayName>
  3962. <displayName count="other" draft="contributed">scellini keniota</displayName>
  3963. </currency>
  3964. <currency type="KGS">
  3965. <displayName>Som Kirghiso</displayName>
  3966. <displayName count="one" draft="contributed">som Kirghiso</displayName>
  3967. <displayName count="other" draft="contributed">som Kirghisi</displayName>
  3968. </currency>
  3969. <currency type="KHR">
  3970. <displayName>Riel Cambogiano</displayName>
  3971. <displayName count="one" draft="contributed">riel cambogiano</displayName>
  3972. <displayName count="other" draft="contributed">riel cambogiani</displayName>
  3973. </currency>
  3974. <currency type="KMF">
  3975. <displayName>Franco Comoriano</displayName>
  3976. <displayName count="one" draft="contributed">franco Comoriano</displayName>
  3977. <displayName count="other" draft="contributed">franchi Comoriani</displayName>
  3978. </currency>
  3979. <currency type="KPW">
  3980. <displayName>Won Nordcoreano</displayName>
  3981. <displayName count="one" draft="contributed">won nordcoreano</displayName>
  3982. <displayName count="other" draft="contributed">word nordcoreani</displayName>
  3983. </currency>
  3984. <currency type="KRW">
  3985. <displayName>Won Sudcoreano</displayName>
  3986. <displayName count="one" draft="contributed">won sudcoreano</displayName>
  3987. <displayName count="other" draft="contributed">won sudcoreani</displayName>
  3988. <symbol draft="contributed">₩</symbol>
  3989. </currency>
  3990. <currency type="KWD">
  3991. <displayName>Dinaro Kuwaitiano</displayName>
  3992. <displayName count="one" draft="contributed">dinaro kuwaitiano</displayName>
  3993. <displayName count="other" draft="contributed">dinari kuwaitiani</displayName>
  3994. </currency>
  3995. <currency type="KYD">
  3996. <displayName>Dollaro delle Isole Cayman</displayName>
  3997. <displayName count="one" draft="contributed">dollaro delle Isole Cayman</displayName>
  3998. <displayName count="other" draft="contributed">dollari delle Isole Cayman</displayName>
  3999. </currency>
  4000. <currency type="KZT">
  4001. <displayName>Tenge Kazaco</displayName>
  4002. <displayName count="one" draft="contributed">tenge kazaco</displayName>
  4003. <displayName count="other" draft="contributed">tenge kazaco</displayName>
  4004. </currency>
  4005. <currency type="LAK">
  4006. <displayName>Kip Laotiano</displayName>
  4007. <displayName count="one" draft="contributed">kip laotiano</displayName>
  4008. <displayName count="other" draft="contributed">kip laotiani</displayName>
  4009. </currency>
  4010. <currency type="LBP">
  4011. <displayName>Sterlina Libanese</displayName>
  4012. <displayName count="one" draft="contributed">sterlina libanese</displayName>
  4013. <displayName count="other" draft="contributed">sterline libanesi</displayName>
  4014. </currency>
  4015. <currency type="LKR">
  4016. <displayName>Rupia di Sri Lanka</displayName>
  4017. <displayName count="one" draft="contributed">rupia dello Sri Lanka</displayName>
  4018. <displayName count="other" draft="contributed">rupie dello Sri Lanka</displayName>
  4019. </currency>
  4020. <currency type="LRD">
  4021. <displayName>Dollaro Liberiano</displayName>
  4022. <displayName count="one" draft="contributed">dollaro liberiano</displayName>
  4023. <displayName count="other" draft="contributed">dollari liberiani</displayName>
  4024. </currency>
  4025. <currency type="LSL">
  4026. <displayName>Loti del Lesotho</displayName>
  4027. </currency>
  4028. <currency type="LTL">
  4029. <displayName>Litas Lituano</displayName>
  4030. <displayName count="one" draft="contributed">litas lituano</displayName>
  4031. <displayName count="other" draft="contributed">litas lituani</displayName>
  4032. </currency>
  4033. <currency type="LTT">
  4034. <displayName>Talonas Lituani</displayName>
  4035. </currency>
  4036. <currency type="LUC">
  4037. <displayName draft="contributed">Franco Convertibile del Lussemburgo</displayName>
  4038. </currency>
  4039. <currency type="LUF">
  4040. <displayName>Franco del Lussemburgo</displayName>
  4041. </currency>
  4042. <currency type="LUL">
  4043. <displayName draft="contributed">Franco Finanziario del Lussemburgo</displayName>
  4044. </currency>
  4045. <currency type="LVL">
  4046. <displayName>Lats Lettone</displayName>
  4047. <displayName count="one" draft="contributed">lats lettone</displayName>
  4048. <displayName count="other" draft="contributed">lati lettoni</displayName>
  4049. </currency>
  4050. <currency type="LVR">
  4051. <displayName>Rublo Lettone</displayName>
  4052. </currency>
  4053. <currency type="LYD">
  4054. <displayName>Dinaro Libico</displayName>
  4055. <displayName count="one" draft="contributed">dinaro libico</displayName>
  4056. <displayName count="other" draft="contributed">dinari libici</displayName>
  4057. </currency>
  4058. <currency type="MAD">
  4059. <displayName>Dirham Marocchino</displayName>
  4060. <displayName count="one" draft="contributed">dirham marocchino</displayName>
  4061. <displayName count="other" draft="contributed">Dirham marocchini</displayName>
  4062. </currency>
  4063. <currency type="MAF">
  4064. <displayName>Franco Marocchino</displayName>
  4065. </currency>
  4066. <currency type="MDL">
  4067. <displayName>Leu Moldavo</displayName>
  4068. <displayName count="one" draft="contributed">leu moldavo</displayName>
  4069. <displayName count="other" draft="contributed">leu moldavi</displayName>
  4070. </currency>
  4071. <currency type="MGA">
  4072. <displayName>Ariary Malgascio</displayName>
  4073. <displayName count="one" draft="contributed">ariary malgascio</displayName>
  4074. <displayName count="other" draft="contributed">ariary malgasci</displayName>
  4075. </currency>
  4076. <currency type="MGF">
  4077. <displayName>Franco Malgascio</displayName>
  4078. </currency>
  4079. <currency type="MKD">
  4080. <displayName>Dinaro Macedone</displayName>
  4081. <displayName count="one" draft="contributed">denaro macedone</displayName>
  4082. <displayName count="other" draft="contributed">denari macedoni</displayName>
  4083. </currency>
  4084. <currency type="MLF">
  4085. <displayName>Franco di Mali</displayName>
  4086. </currency>
  4087. <currency type="MMK">
  4088. <displayName>Kyat di Myanmar</displayName>
  4089. <displayName count="one" draft="contributed">kyat di Myanmar</displayName>
  4090. <displayName count="other" draft="contributed">kyat di Myanmar</displayName>
  4091. </currency>
  4092. <currency type="MNT">
  4093. <displayName>Tugrik Mongolo</displayName>
  4094. <displayName count="one" draft="contributed">tugrik mongolo</displayName>
  4095. <displayName count="other" draft="contributed">tugrik mongoli</displayName>
  4096. </currency>
  4097. <currency type="MOP">
  4098. <displayName>Pataca di Macao</displayName>
  4099. <displayName count="one" draft="contributed">pataca di Macao</displayName>
  4100. <displayName count="other" draft="contributed">patacas di Macao</displayName>
  4101. </currency>
  4102. <currency type="MRO">
  4103. <displayName>Ouguiya della Mauritania</displayName>
  4104. <displayName count="one" draft="contributed">ouguiya della Mauritania</displayName>
  4105. <displayName count="other" draft="contributed">ouguiya della Mauritania</displayName>
  4106. </currency>
  4107. <currency type="MTL">
  4108. <displayName>Lira Maltese</displayName>
  4109. </currency>
  4110. <currency type="MTP">
  4111. <displayName>Sterlina Maltese</displayName>
  4112. </currency>
  4113. <currency type="MUR">
  4114. <displayName>Rupia Mauriziana</displayName>
  4115. <displayName count="one" draft="contributed">rupia mauriziana</displayName>
  4116. <displayName count="other" draft="contributed">rupie mauriziane</displayName>
  4117. </currency>
  4118. <currency type="MVR">
  4119. <displayName>Rufiyaa delle Maldive</displayName>
  4120. <displayName count="one">rufiyaa delle Maldive</displayName>
  4121. <displayName count="other">rufiyaa delle Maldive</displayName>
  4122. </currency>
  4123. <currency type="MWK">
  4124. <displayName>Kwacha Malawiano</displayName>
  4125. <displayName count="one" draft="contributed">kwacha malawiano</displayName>
  4126. <displayName count="other" draft="contributed">kwacha malawiani</displayName>
  4127. </currency>
  4128. <currency type="MXN">
  4129. <displayName>Peso Messicano</displayName>
  4130. <displayName count="one" draft="contributed">peso messicano</displayName>
  4131. <displayName count="other" draft="contributed">pesos messicani</displayName>
  4132. <symbol draft="contributed">MX$</symbol>
  4133. </currency>
  4134. <currency type="MXP">
  4135. <displayName>Peso messicano d’argento (1861–1992)</displayName>
  4136. </currency>
  4137. <currency type="MXV">
  4138. <displayName>Unidad de Inversion (UDI) Messicana</displayName>
  4139. </currency>
  4140. <currency type="MYR">
  4141. <displayName>Ringgit della Malesia</displayName>
  4142. <displayName count="one" draft="contributed">ringgit malese</displayName>
  4143. <displayName count="other" draft="contributed">ringgit malesi</displayName>
  4144. </currency>
  4145. <currency type="MZE">
  4146. <displayName>Escudo del Mozambico</displayName>
  4147. </currency>
  4148. <currency type="MZN">
  4149. <displayName>Metical mozambicano</displayName>
  4150. <displayName count="one">metical mozambicano</displayName>
  4151. <displayName count="other">metical mozambicani</displayName>
  4152. </currency>
  4153. <currency type="NAD">
  4154. <displayName>Dollaro Namibiano</displayName>
  4155. <displayName count="one" draft="contributed">dollaro namibiano</displayName>
  4156. <displayName count="other" draft="contributed">dollari namibiani</displayName>
  4157. </currency>
  4158. <currency type="NGN">
  4159. <displayName>Naira Nigeriana</displayName>
  4160. <displayName count="one" draft="contributed">naira nigeriana</displayName>
  4161. <displayName count="other" draft="contributed">naire nigeriane</displayName>
  4162. </currency>
  4163. <currency type="NIC">
  4164. <displayName>Cordoba Nicaraguense</displayName>
  4165. <displayName count="one">Cordoba Nicaraguense</displayName>
  4166. <displayName count="other">Cordoba Nicaraguense</displayName>
  4167. </currency>
  4168. <currency type="NIO">
  4169. <displayName>Córdoba Nicaraguense</displayName>
  4170. <displayName count="one" draft="contributed">córdoba nicaraguense</displayName>
  4171. <displayName count="other" draft="contributed">córdoba nicaraguensi</displayName>
  4172. </currency>
  4173. <currency type="NLG">
  4174. <displayName>Fiorino Olandese</displayName>
  4175. </currency>
  4176. <currency type="NOK">
  4177. <displayName>Corona Norvegese</displayName>
  4178. <displayName count="one" draft="contributed">corona norvegese</displayName>
  4179. <displayName count="other" draft="contributed">corone norvegesi</displayName>
  4180. </currency>
  4181. <currency type="NPR">
  4182. <displayName>Rupia Nepalese</displayName>
  4183. <displayName count="one" draft="contributed">rupia nepalese</displayName>
  4184. <displayName count="other" draft="contributed">rupie nepalesi</displayName>
  4185. </currency>
  4186. <currency type="NZD">
  4187. <displayName>Dollaro Neozelandese</displayName>
  4188. <displayName count="one" draft="contributed">dollaro neozelandese</displayName>
  4189. <displayName count="other" draft="contributed">dollari neozelandesi</displayName>
  4190. <symbol draft="contributed">NZ$</symbol>
  4191. </currency>
  4192. <currency type="OMR">
  4193. <displayName>Rial dell'Oman</displayName>
  4194. <displayName count="one" draft="contributed">rial dell'Oman</displayName>
  4195. <displayName count="other" draft="contributed">rial dell'Oman</displayName>
  4196. </currency>
  4197. <currency type="PAB">
  4198. <displayName>Balboa di Panama</displayName>
  4199. <displayName count="one" draft="contributed">balboa panamense</displayName>
  4200. <displayName count="other" draft="contributed">balboa panamensi</displayName>
  4201. </currency>
  4202. <currency type="PEI">
  4203. <displayName>Inti Peruviano</displayName>
  4204. </currency>
  4205. <currency type="PEN">
  4206. <displayName>Sol Nuevo Peruviano</displayName>
  4207. <displayName count="one" draft="contributed">nuevo sol peruviano</displayName>
  4208. <displayName count="other" draft="contributed">nuevos soles peruviani</displayName>
  4209. </currency>
  4210. <currency type="PES">
  4211. <displayName>Sol Peruviano</displayName>
  4212. </currency>
  4213. <currency type="PGK">
  4214. <displayName>Kina della Papua Nuova Guinea</displayName>
  4215. <displayName count="one" draft="contributed">kina papuana</displayName>
  4216. <displayName count="other" draft="contributed">kina papuane</displayName>
  4217. </currency>
  4218. <currency type="PHP">
  4219. <displayName>Peso delle Filippine</displayName>
  4220. <displayName count="one" draft="contributed">peso filippino</displayName>
  4221. <displayName count="other" draft="contributed">pesos filippini</displayName>
  4222. </currency>
  4223. <currency type="PKR">
  4224. <displayName>Rupia del Pakistan</displayName>
  4225. <displayName count="one" draft="contributed">rupia pakistana</displayName>
  4226. <displayName count="other" draft="contributed">rupie pakistane</displayName>
  4227. </currency>
  4228. <currency type="PLN">
  4229. <displayName>Zloty Polacco</displayName>
  4230. <displayName count="one" draft="contributed">zloty polacco</displayName>
  4231. <displayName count="other" draft="contributed">zloty polacchi</displayName>
  4232. </currency>
  4233. <currency type="PLZ">
  4234. <displayName>Zloty Polacco (1950–1995)</displayName>
  4235. </currency>
  4236. <currency type="PTE">
  4237. <displayName>Escudo Portoghese</displayName>
  4238. </currency>
  4239. <currency type="PYG">
  4240. <displayName>Guaraní del Paraguay</displayName>
  4241. <displayName count="one" draft="contributed">guaraní paraguaiano</displayName>
  4242. <displayName count="other" draft="contributed">guaraní paraguaiani</displayName>
  4243. </currency>
  4244. <currency type="QAR">
  4245. <displayName>Rial del Qatar</displayName>
  4246. <displayName count="one" draft="contributed">rial del Qatar</displayName>
  4247. <displayName count="other" draft="contributed">rial del Qatar</displayName>
  4248. </currency>
  4249. <currency type="RHD">
  4250. <displayName draft="contributed">Dollaro della Rhodesia</displayName>
  4251. </currency>
  4252. <currency type="ROL">
  4253. <displayName>Leu della Romania</displayName>
  4254. </currency>
  4255. <currency type="RON">
  4256. <displayName draft="contributed">Leu Rumeno</displayName>
  4257. <displayName count="one" draft="contributed">leu rumeno</displayName>
  4258. <displayName count="other" draft="contributed">lei rumeni</displayName>
  4259. </currency>
  4260. <currency type="RSD">
  4261. <displayName>Dinaro Serbo</displayName>
  4262. <displayName count="one" draft="contributed">dinaro serbo</displayName>
  4263. <displayName count="other" draft="contributed">dinara serbi</displayName>
  4264. </currency>
  4265. <currency type="RUB">
  4266. <displayName>Rublo Russo</displayName>
  4267. <displayName count="one" draft="contributed">rublo russo</displayName>
  4268. <displayName count="other" draft="contributed">rubli russi</displayName>
  4269. </currency>
  4270. <currency type="RUR">
  4271. <displayName>Rublo della CSI</displayName>
  4272. </currency>
  4273. <currency type="RWF">
  4274. <displayName>Franco Ruandese</displayName>
  4275. <displayName count="one" draft="contributed">franco ruandese</displayName>
  4276. <displayName count="other" draft="contributed">franchi ruandesi</displayName>
  4277. </currency>
  4278. <currency type="SAR">
  4279. <displayName>Ryal Saudita</displayName>
  4280. <displayName count="one">riyal saudita</displayName>
  4281. <displayName count="other">riyal sauditi</displayName>
  4282. </currency>
  4283. <currency type="SBD">
  4284. <displayName>Dollaro delle Isole Solomon</displayName>
  4285. <displayName count="one" draft="contributed">dollaro delle Isole Solomon</displayName>
  4286. <displayName count="other" draft="contributed">dollari delle Isole Solomon</displayName>
  4287. </currency>
  4288. <currency type="SCR">
  4289. <displayName>Rupia delle Seychelles</displayName>
  4290. <displayName count="one" draft="contributed">rupia delle Seychelles</displayName>
  4291. <displayName count="other" draft="contributed">rupie delle Seychelles</displayName>
  4292. </currency>
  4293. <currency type="SDD">
  4294. <displayName>Dinaro Sudanese</displayName>
  4295. </currency>
  4296. <currency type="SDG">
  4297. <displayName>Sterlina Sudanese</displayName>
  4298. <displayName count="one" draft="contributed">sterlina sudanese</displayName>
  4299. <displayName count="other" draft="contributed">sterline sudanesi</displayName>
  4300. </currency>
  4301. <currency type="SEK">
  4302. <displayName>Corona Svedese</displayName>
  4303. <displayName count="one" draft="contributed">corona svedese</displayName>
  4304. <displayName count="other" draft="contributed">corone svedesi</displayName>
  4305. </currency>
  4306. <currency type="SGD">
  4307. <displayName>Dollaro di Singapore</displayName>
  4308. <displayName count="one" draft="contributed">dollaro di Singapore</displayName>
  4309. <displayName count="other" draft="contributed">dollari di Singapore</displayName>
  4310. </currency>
  4311. <currency type="SHP">
  4312. <displayName>Sterlina di Sant’Elena</displayName>
  4313. <displayName count="one" draft="contributed">sterlina di Sant’Elena</displayName>
  4314. <displayName count="other" draft="contributed">sterline di Sant’Elena</displayName>
  4315. </currency>
  4316. <currency type="SIT">
  4317. <displayName>Tallero Sloveno</displayName>
  4318. </currency>
  4319. <currency type="SKK">
  4320. <displayName>Corona Slovacca</displayName>
  4321. </currency>
  4322. <currency type="SLL">
  4323. <displayName>Leone della Sierra Leone</displayName>
  4324. <displayName count="one" draft="contributed">leone della Sierra Leone</displayName>
  4325. <displayName count="other" draft="contributed">leoni della Sierra Leone</displayName>
  4326. </currency>
  4327. <currency type="SOS">
  4328. <displayName>Scellino Somalo</displayName>
  4329. <displayName count="one" draft="contributed">scellino somalo</displayName>
  4330. <displayName count="other" draft="contributed">scellini somali</displayName>
  4331. </currency>
  4332. <currency type="SRD">
  4333. <displayName>Dollaro Surinamese</displayName>
  4334. <displayName count="one" draft="contributed">dollaro surinamese</displayName>
  4335. <displayName count="other" draft="contributed">dollari surinamesi</displayName>
  4336. </currency>
  4337. <currency type="SRG">
  4338. <displayName>Fiorino del Suriname</displayName>
  4339. </currency>
  4340. <currency type="SSP">
  4341. <displayName draft="contributed">Sterlina sudsudanese</displayName>
  4342. <displayName count="one">sterlina sudsudanese</displayName>
  4343. <displayName count="other">sterline sudsudanesi</displayName>
  4344. </currency>
  4345. <currency type="STD">
  4346. <displayName>Dobra di Sao Tomé e Principe</displayName>
  4347. <displayName count="one" draft="contributed">dobra di Sao Tomé e Principe</displayName>
  4348. <displayName count="other" draft="contributed">dobra di Sao Tomé e Principe</displayName>
  4349. </currency>
  4350. <currency type="SUR">
  4351. <displayName>Rublo Sovietico</displayName>
  4352. </currency>
  4353. <currency type="SVC">
  4354. <displayName>Colón Salvadoregno</displayName>
  4355. </currency>
  4356. <currency type="SYP">
  4357. <displayName>Sterlina Siriana</displayName>
  4358. <displayName count="one" draft="contributed">sterlina siriana</displayName>
  4359. <displayName count="other" draft="contributed">sterline siriane</displayName>
  4360. </currency>
  4361. <currency type="SZL">
  4362. <displayName>Lilangeni dello Swaziland</displayName>
  4363. <displayName count="one" draft="contributed">lilangeni dello Swaziland</displayName>
  4364. <displayName count="other" draft="contributed">lilangeni dello Swaziland</displayName>
  4365. </currency>
  4366. <currency type="THB">
  4367. <displayName>Baht Tailandese</displayName>
  4368. <displayName count="one" draft="contributed">baht tailandese</displayName>
  4369. <displayName count="other" draft="contributed">baht tailandesi</displayName>
  4370. <symbol draft="contributed">฿</symbol>
  4371. </currency>
  4372. <currency type="TJR">
  4373. <displayName>Rublo del Tajikistan</displayName>
  4374. </currency>
  4375. <currency type="TJS">
  4376. <displayName>Somoni del Tajikistan</displayName>
  4377. <displayName count="one" draft="contributed">somoni del Tajikistan</displayName>
  4378. <displayName count="other" draft="contributed">somoni del Tajikistan</displayName>
  4379. </currency>
  4380. <currency type="TMM">
  4381. <displayName>Manat Turkmeno (1993–2009)</displayName>
  4382. </currency>
  4383. <currency type="TMT">
  4384. <displayName>Manat Turkmeno</displayName>
  4385. <displayName count="one" draft="contributed">manat turkmeno</displayName>
  4386. <displayName count="other" draft="contributed">manat turkmeni</displayName>
  4387. </currency>
  4388. <currency type="TND">
  4389. <displayName>Dinaro Tunisino</displayName>
  4390. <displayName count="one" draft="contributed">dinaro tunisino</displayName>
  4391. <displayName count="other" draft="contributed">dinari tunisini</displayName>
  4392. </currency>
  4393. <currency type="TOP">
  4394. <displayName>Paʻanga di Tonga</displayName>
  4395. <displayName count="one" draft="contributed">paʻanga di Tonga</displayName>
  4396. <displayName count="other" draft="contributed">paʻanga di Tonga</displayName>
  4397. </currency>
  4398. <currency type="TPE">
  4399. <displayName>Escudo di Timor</displayName>
  4400. </currency>
  4401. <currency type="TRL">
  4402. <displayName>Lira Turca</displayName>
  4403. <displayName count="one" draft="contributed">lira turca</displayName>
  4404. <displayName count="other" draft="contributed">lire turche</displayName>
  4405. </currency>
  4406. <currency type="TRY">
  4407. <displayName draft="contributed">Nuova Lira Turca</displayName>
  4408. <displayName count="one" draft="contributed">nuova lira turca</displayName>
  4409. <displayName count="other" draft="contributed">nuove lire turche</displayName>
  4410. </currency>
  4411. <currency type="TTD">
  4412. <displayName>Dollaro di Trinidad e Tobago</displayName>
  4413. <displayName count="one" draft="contributed">dollaro di Trinidad e Tobago</displayName>
  4414. <displayName count="other" draft="contributed">dollari di Trinidad e Tobago</displayName>
  4415. </currency>
  4416. <currency type="TWD">
  4417. <displayName>Nuovo dollaro taiwanese</displayName>
  4418. <displayName count="one" draft="contributed">nuovo dollaro taiwanese</displayName>
  4419. <displayName count="other" draft="contributed">nuovi dollari taiwanesi</displayName>
  4420. <symbol draft="contributed">NT$</symbol>
  4421. </currency>
  4422. <currency type="TZS">
  4423. <displayName>Scellino della Tanzania</displayName>
  4424. <displayName count="one" draft="contributed">scellino della Tanzania</displayName>
  4425. <displayName count="other" draft="contributed">scellini della Tanzania</displayName>
  4426. </currency>
  4427. <currency type="UAH">
  4428. <displayName>Grivnia Ucraina</displayName>
  4429. <displayName count="one" draft="contributed">grivnia ucraina</displayName>
  4430. <displayName count="other" draft="contributed">grivnie ucraine</displayName>
  4431. </currency>
  4432. <currency type="UAK">
  4433. <displayName>Karbovanetz Ucraino</displayName>
  4434. </currency>
  4435. <currency type="UGS">
  4436. <displayName>Scellino Ugandese (1966–1987)</displayName>
  4437. </currency>
  4438. <currency type="UGX">
  4439. <displayName>Scellino Ugandese</displayName>
  4440. <displayName count="one" draft="contributed">scellino ugandese</displayName>
  4441. <displayName count="other" draft="contributed">scellini ugandesi</displayName>
  4442. </currency>
  4443. <currency type="USD">
  4444. <displayName>Dollaro Statunitense</displayName>
  4445. <displayName count="one">dollaro statunitense</displayName>
  4446. <displayName count="other">dollari statunitensi</displayName>
  4447. <symbol>US$</symbol>
  4448. </currency>
  4449. <currency type="USN">
  4450. <displayName>Dollaro Statunitense (Next day)</displayName>
  4451. </currency>
  4452. <currency type="USS">
  4453. <displayName>Dollaro Statunitense (Same day)</displayName>
  4454. </currency>
  4455. <currency type="UYI">
  4456. <displayName>Peso uruguaiano in unità indicizzate</displayName>
  4457. </currency>
  4458. <currency type="UYP">
  4459. <displayName>Peso Uruguaiano (1975–1993)</displayName>
  4460. </currency>
  4461. <currency type="UYU">
  4462. <displayName>Peso Uruguaiano</displayName>
  4463. <displayName count="one" draft="contributed">peso uruguaiano</displayName>
  4464. <displayName count="other" draft="contributed">pesos uruguaiani</displayName>
  4465. </currency>
  4466. <currency type="UZS">
  4467. <displayName>Sum dell’Uzbekistan</displayName>
  4468. <displayName count="one" draft="contributed">sum dell’Uzbekistan</displayName>
  4469. <displayName count="other" draft="contributed">sum dell’Uzbekistan</displayName>
  4470. </currency>
  4471. <currency type="VEB">
  4472. <displayName>Bolivar Venezuelano (1871–2008)</displayName>
  4473. <displayName count="one">bolivar Venezuelano (1871–2008)</displayName>
  4474. <displayName count="other">bolivares venezuelani (1871–2008)</displayName>
  4475. </currency>
  4476. <currency type="VEF">
  4477. <displayName>Bolívar Venezuelano</displayName>
  4478. <displayName count="one" draft="contributed">bolívar venezuelano</displayName>
  4479. <displayName count="other" draft="contributed">bolívares venezuelani</displayName>
  4480. </currency>
  4481. <currency type="VND">
  4482. <displayName>Dong Vietnamita</displayName>
  4483. <displayName count="one" draft="contributed">dong vietnamita</displayName>
  4484. <displayName count="other" draft="contributed">dong vietnamiti</displayName>
  4485. <symbol draft="contributed">₫</symbol>
  4486. </currency>
  4487. <currency type="VUV">
  4488. <displayName>Vatu di Vanuatu</displayName>
  4489. <displayName count="one" draft="contributed">vatu di Vanuatu</displayName>
  4490. <displayName count="other" draft="contributed">vatu di Vanuatu</displayName>
  4491. </currency>
  4492. <currency type="WST">
  4493. <displayName>Tala della Samoa Occidentale</displayName>
  4494. <displayName count="one" draft="contributed">tala samoano</displayName>
  4495. <displayName count="other" draft="contributed">tala samoani</displayName>
  4496. </currency>
  4497. <currency type="XAF">
  4498. <displayName>Franco CFA BEAC</displayName>
  4499. <displayName count="one" draft="contributed">franco CFA BEAC</displayName>
  4500. <displayName count="other" draft="contributed">franchi CFA BEAC</displayName>
  4501. <symbol draft="contributed">FCFA</symbol>
  4502. </currency>
  4503. <currency type="XAG">
  4504. <displayName>Argento</displayName>
  4505. </currency>
  4506. <currency type="XAU">
  4507. <displayName>Oro</displayName>
  4508. </currency>
  4509. <currency type="XBA">
  4510. <displayName>Unità composita europea</displayName>
  4511. </currency>
  4512. <currency type="XBB">
  4513. <displayName>Unità monetaria europea</displayName>
  4514. </currency>
  4515. <currency type="XBC">
  4516. <displayName>Unità di acconto europea (XBC)</displayName>
  4517. </currency>
  4518. <currency type="XBD">
  4519. <displayName>Unità di acconto europea (XBD)</displayName>
  4520. </currency>
  4521. <currency type="XCD">
  4522. <displayName>Dollaro dei Caraibi Orientali</displayName>
  4523. <displayName count="one" draft="contributed">dollaro dei Caraibi orientali</displayName>
  4524. <displayName count="other" draft="contributed">dollari dei Caraibi orientali</displayName>
  4525. <symbol draft="contributed">EC$</symbol>
  4526. </currency>
  4527. <currency type="XDR">
  4528. <displayName>Diritti Speciali di Incasso</displayName>
  4529. </currency>
  4530. <currency type="XFO">
  4531. <displayName>Franco Oro Francese</displayName>
  4532. </currency>
  4533. <currency type="XFU">
  4534. <displayName>Franco UIC Francese</displayName>
  4535. </currency>
  4536. <currency type="XOF">
  4537. <displayName>Franco CFA BCEAO</displayName>
  4538. <displayName count="one" draft="contributed">franco CFA BCEAO</displayName>
  4539. <displayName count="other" draft="contributed">franchi CFA BCEAO</displayName>
  4540. <symbol draft="contributed">CFA</symbol>
  4541. </currency>
  4542. <currency type="XPD">
  4543. <displayName>Palladio</displayName>
  4544. </currency>
  4545. <currency type="XPF">
  4546. <displayName>Franco CFP</displayName>
  4547. <displayName count="one" draft="contributed">franco CFP</displayName>
  4548. <displayName count="other" draft="contributed">franchi CFP</displayName>
  4549. <symbol draft="contributed">CFPF</symbol>
  4550. </currency>
  4551. <currency type="XPT">
  4552. <displayName draft="contributed">Platino</displayName>
  4553. </currency>
  4554. <currency type="XRE">
  4555. <displayName draft="contributed">Fondi RINET</displayName>
  4556. </currency>
  4557. <currency type="XTS">
  4558. <displayName draft="contributed">Codice di verifica della valuta</displayName>
  4559. </currency>
  4560. <currency type="XXX">
  4561. <displayName>Valuta sconosciuta</displayName>
  4562. <displayName count="one" draft="contributed">valuta sconosciuta/non valida</displayName>
  4563. <displayName count="other" draft="contributed">valuta sconosciuta</displayName>
  4564. </currency>
  4565. <currency type="YDD">
  4566. <displayName>Dinaro dello Yemen</displayName>
  4567. </currency>
  4568. <currency type="YER">
  4569. <displayName>Rial dello Yemen</displayName>
  4570. <displayName count="one" draft="contributed">rial yemenita</displayName>
  4571. <displayName count="other" draft="contributed">rial yemeniti</displayName>
  4572. </currency>
  4573. <currency type="YUD">
  4574. <displayName>Dinaro Forte Yugoslavo</displayName>
  4575. </currency>
  4576. <currency type="YUM">
  4577. <displayName>Dinaro Noviy Yugoslavo</displayName>
  4578. </currency>
  4579. <currency type="YUN">
  4580. <displayName>Dinaro Convertibile Yugoslavo</displayName>
  4581. </currency>
  4582. <currency type="ZAL">
  4583. <displayName>Rand Sudafricano (finanziario)</displayName>
  4584. </currency>
  4585. <currency type="ZAR">
  4586. <displayName>Rand Sudafricano</displayName>
  4587. <displayName count="one" draft="contributed">rand sudafricano</displayName>
  4588. <displayName count="other" draft="contributed">rand sudafricani</displayName>
  4589. </currency>
  4590. <currency type="ZMK">
  4591. <displayName>Kwacha dello Zambia (1968–2012)</displayName>
  4592. <displayName count="one" draft="contributed">kwacha zambiano (1968–2012)</displayName>
  4593. <displayName count="other" draft="contributed">kwacha zambiani (1968–2012)</displayName>
  4594. </currency>
  4595. <currency type="ZMW">
  4596. <displayName>Kwacha dello Zambia</displayName>
  4597. <displayName count="one" draft="contributed">kwacha zambiano</displayName>
  4598. <displayName count="other" draft="contributed">kwacha zambiani</displayName>
  4599. </currency>
  4600. <currency type="ZRN">
  4601. <displayName>Nuovo Zaire dello Zaire</displayName>
  4602. </currency>
  4603. <currency type="ZRZ">
  4604. <displayName>Zaire dello Zaire</displayName>
  4605. </currency>
  4606. <currency type="ZWD">
  4607. <displayName>Dollaro dello Zimbabwe</displayName>
  4608. </currency>
  4609. <currency type="ZWL">
  4610. <displayName draft="contributed">Dollaro Zimbabwiano (2009)</displayName>
  4611. </currency>
  4612. </currencies>
  4613. <miscPatterns numberSystem="latn">
  4614. <pattern type="atLeast" draft="contributed">{0}+</pattern>
  4615. <pattern type="range" draft="contributed">{0}-{1}</pattern>
  4616. </miscPatterns>
  4617. </numbers>
  4618. <units>
  4619. <unitLength type="long">
  4620. <compoundUnit type="per">
  4621. <compoundUnitPattern draft="contributed">{0} al {1}</compoundUnitPattern>
  4622. </compoundUnit>
  4623. <unit type="acceleration-g-force">
  4624. <unitPattern count="one" draft="contributed">{0} forza g</unitPattern>
  4625. <unitPattern count="other" draft="contributed">{0} forza g</unitPattern>
  4626. </unit>
  4627. <unit type="angle-arc-minute">
  4628. <unitPattern count="one" draft="contributed">{0} minuto</unitPattern>
  4629. <unitPattern count="other" draft="contributed">{0} minuti</unitPattern>
  4630. </unit>
  4631. <unit type="angle-arc-second">
  4632. <unitPattern count="one" draft="contributed">{0} secondo</unitPattern>
  4633. <unitPattern count="other" draft="contributed">{0} secondi</unitPattern>
  4634. </unit>
  4635. <unit type="angle-degree">
  4636. <unitPattern count="one" draft="contributed">{0} grado</unitPattern>
  4637. <unitPattern count="other" draft="contributed">{0} gradi</unitPattern>
  4638. </unit>
  4639. <unit type="area-acre">
  4640. <unitPattern count="one" draft="contributed">{0} acro</unitPattern>
  4641. <unitPattern count="other" draft="contributed">{0} acri</unitPattern>
  4642. </unit>
  4643. <unit type="area-hectare">
  4644. <unitPattern count="one" draft="contributed">{0} ettaro</unitPattern>
  4645. <unitPattern count="other" draft="contributed">{0} ettari</unitPattern>
  4646. </unit>
  4647. <unit type="area-square-foot">
  4648. <unitPattern count="one" draft="contributed">{0} piede quadrato</unitPattern>
  4649. <unitPattern count="other" draft="contributed">{0} piedi quadrati</unitPattern>
  4650. </unit>
  4651. <unit type="area-square-kilometer">
  4652. <unitPattern count="one" draft="contributed">{0} chilometro quadrato</unitPattern>
  4653. <unitPattern count="other" draft="contributed">{0} chilometri quadrati</unitPattern>
  4654. </unit>
  4655. <unit type="area-square-meter">
  4656. <unitPattern count="one" draft="contributed">{0} metro quadrato</unitPattern>
  4657. <unitPattern count="other" draft="contributed">{0} metri quadrati</unitPattern>
  4658. </unit>
  4659. <unit type="area-square-mile">
  4660. <unitPattern count="one" draft="contributed">{0} miglio quadrato</unitPattern>
  4661. <unitPattern count="other" draft="contributed">{0} miglia quadrate</unitPattern>
  4662. </unit>
  4663. <unit type="duration-day">
  4664. <unitPattern count="one" draft="contributed">{0} giorno</unitPattern>
  4665. <unitPattern count="other" draft="contributed">{0} giorni</unitPattern>
  4666. </unit>
  4667. <unit type="duration-hour">
  4668. <unitPattern count="one" draft="contributed">{0} ora</unitPattern>
  4669. <unitPattern count="other" draft="contributed">{0} ore</unitPattern>
  4670. </unit>
  4671. <unit type="duration-millisecond">
  4672. <unitPattern count="one" draft="contributed">{0} millisecondo</unitPattern>
  4673. <unitPattern count="other" draft="contributed">{0} millisecondi</unitPattern>
  4674. </unit>
  4675. <unit type="duration-minute">
  4676. <unitPattern count="one" draft="contributed">{0} minuto</unitPattern>
  4677. <unitPattern count="other" draft="contributed">{0} minuti</unitPattern>
  4678. </unit>
  4679. <unit type="duration-month">
  4680. <unitPattern count="one" draft="contributed">{0} mese</unitPattern>
  4681. <unitPattern count="other" draft="contributed">{0} mesi</unitPattern>
  4682. </unit>
  4683. <unit type="duration-second">
  4684. <unitPattern count="one" draft="contributed">{0} secondo</unitPattern>
  4685. <unitPattern count="other" draft="contributed">{0} secondi</unitPattern>
  4686. </unit>
  4687. <unit type="duration-week">
  4688. <unitPattern count="one" draft="contributed">{0} settimana</unitPattern>
  4689. <unitPattern count="other" draft="contributed">{0} settimane</unitPattern>
  4690. </unit>
  4691. <unit type="duration-year">
  4692. <unitPattern count="one" draft="contributed">{0} anno</unitPattern>
  4693. <unitPattern count="other" draft="contributed">{0} anni</unitPattern>
  4694. </unit>
  4695. <unit type="length-centimeter">
  4696. <unitPattern count="one" draft="contributed">{0} centimetro</unitPattern>
  4697. <unitPattern count="other" draft="contributed">{0} centimetri</unitPattern>
  4698. </unit>
  4699. <unit type="length-foot">
  4700. <unitPattern count="one" draft="contributed">{0} piede</unitPattern>
  4701. <unitPattern count="other" draft="contributed">{0} piedi</unitPattern>
  4702. </unit>
  4703. <unit type="length-inch">
  4704. <unitPattern count="one" draft="contributed">{0} pollice</unitPattern>
  4705. <unitPattern count="other" draft="contributed">{0} pollici</unitPattern>
  4706. </unit>
  4707. <unit type="length-kilometer">
  4708. <unitPattern count="one" draft="contributed">{0} chilometro</unitPattern>
  4709. <unitPattern count="other" draft="contributed">{0} chilometri</unitPattern>
  4710. </unit>
  4711. <unit type="length-light-year">
  4712. <unitPattern count="one" draft="contributed">{0} anno luce</unitPattern>
  4713. <unitPattern count="other" draft="contributed">{0} anni luce</unitPattern>
  4714. </unit>
  4715. <unit type="length-meter">
  4716. <unitPattern count="one" draft="contributed">{0} metro</unitPattern>
  4717. <unitPattern count="other" draft="contributed">{0} metri</unitPattern>
  4718. </unit>
  4719. <unit type="length-mile">
  4720. <unitPattern count="one" draft="contributed">{0} miglio</unitPattern>
  4721. <unitPattern count="other" draft="contributed">{0} miglia</unitPattern>
  4722. </unit>
  4723. <unit type="length-millimeter">
  4724. <unitPattern count="one" draft="contributed">{0} millimetro</unitPattern>
  4725. <unitPattern count="other" draft="contributed">{0} millimetri</unitPattern>
  4726. </unit>
  4727. <unit type="length-picometer">
  4728. <unitPattern count="one" draft="contributed">{0} picometro</unitPattern>
  4729. <unitPattern count="other" draft="contributed">{0} picometri</unitPattern>
  4730. </unit>
  4731. <unit type="length-yard">
  4732. <unitPattern count="one" draft="contributed">{0} yarda</unitPattern>
  4733. <unitPattern count="other" draft="contributed">{0} yarde</unitPattern>
  4734. </unit>
  4735. <unit type="mass-gram">
  4736. <unitPattern count="one" draft="contributed">{0} grammo</unitPattern>
  4737. <unitPattern count="other" draft="contributed">{0} grammi</unitPattern>
  4738. </unit>
  4739. <unit type="mass-kilogram">
  4740. <unitPattern count="one" draft="contributed">{0} chilogrammo</unitPattern>
  4741. <unitPattern count="other" draft="contributed">{0} chilogrammi</unitPattern>
  4742. </unit>
  4743. <unit type="mass-ounce">
  4744. <unitPattern count="one" draft="contributed">{0} oncia</unitPattern>
  4745. <unitPattern count="other" draft="contributed">{0} once</unitPattern>
  4746. </unit>
  4747. <unit type="mass-pound">
  4748. <unitPattern count="one" draft="contributed">{0} libbra</unitPattern>
  4749. <unitPattern count="other" draft="contributed">{0} libbre</unitPattern>
  4750. </unit>
  4751. <unit type="power-horsepower">
  4752. <unitPattern count="one" draft="contributed">{0} cavallo vapore</unitPattern>
  4753. <unitPattern count="other" draft="contributed">{0} cavalli vapore</unitPattern>
  4754. </unit>
  4755. <unit type="power-kilowatt">
  4756. <unitPattern count="one" draft="contributed">{0} kilowatt</unitPattern>
  4757. <unitPattern count="other" draft="contributed">{0} kilowatt</unitPattern>
  4758. </unit>
  4759. <unit type="power-watt">
  4760. <unitPattern count="one" draft="contributed">{0} watt</unitPattern>
  4761. <unitPattern count="other" draft="contributed">{0} watt</unitPattern>
  4762. </unit>
  4763. <unit type="pressure-hectopascal">
  4764. <unitPattern count="one" draft="contributed">{0} ettopascal</unitPattern>
  4765. <unitPattern count="other" draft="contributed">{0} ettopascal</unitPattern>
  4766. </unit>
  4767. <unit type="pressure-inch-hg">
  4768. <unitPattern count="one" draft="contributed">{0} pollice di mercurio</unitPattern>
  4769. <unitPattern count="other" draft="contributed">{0} pollici di mercurio</unitPattern>
  4770. </unit>
  4771. <unit type="pressure-millibar">
  4772. <unitPattern count="one" draft="contributed">{0} millibar</unitPattern>
  4773. <unitPattern count="other" draft="contributed">{0} millibar</unitPattern>
  4774. </unit>
  4775. <unit type="speed-kilometer-per-hour">
  4776. <unitPattern count="one" draft="contributed">{0} chilometro orario</unitPattern>
  4777. <unitPattern count="other" draft="contributed">{0} chilometri orari</unitPattern>
  4778. </unit>
  4779. <unit type="speed-meter-per-second">
  4780. <unitPattern count="one" draft="contributed">{0} metro al secondo</unitPattern>
  4781. <unitPattern count="other" draft="contributed">{0} metri al secondo</unitPattern>
  4782. </unit>
  4783. <unit type="speed-mile-per-hour">
  4784. <unitPattern count="one" draft="contributed">{0} miglio orario</unitPattern>
  4785. <unitPattern count="other" draft="contributed">{0} miglia orarie</unitPattern>
  4786. </unit>
  4787. <unit type="temperature-celsius">
  4788. <unitPattern count="one" draft="contributed">{0} grado Celsius</unitPattern>
  4789. <unitPattern count="other" draft="contributed">{0} gradi Celsius</unitPattern>
  4790. </unit>
  4791. <unit type="temperature-fahrenheit">
  4792. <unitPattern count="one" draft="contributed">{0} grado Fahrenheit</unitPattern>
  4793. <unitPattern count="other" draft="contributed">{0} gradi Fahrenheit</unitPattern>
  4794. </unit>
  4795. <unit type="volume-cubic-kilometer">
  4796. <unitPattern count="one" draft="contributed">{0} chilometro cubo</unitPattern>
  4797. <unitPattern count="other" draft="contributed">{0} chilometri cubi</unitPattern>
  4798. </unit>
  4799. <unit type="volume-cubic-mile">
  4800. <unitPattern count="one" draft="contributed">{0} miglio cubo</unitPattern>
  4801. <unitPattern count="other" draft="contributed">{0} miglia cube</unitPattern>
  4802. </unit>
  4803. <unit type="volume-liter">
  4804. <unitPattern count="one" draft="contributed">{0} litro</unitPattern>
  4805. <unitPattern count="other" draft="contributed">{0} litri</unitPattern>
  4806. </unit>
  4807. </unitLength>
  4808. <unitLength type="short">
  4809. <compoundUnit type="per">
  4810. <compoundUnitPattern draft="contributed">{0}/{1}</compoundUnitPattern>
  4811. </compoundUnit>
  4812. <unit type="acceleration-g-force">
  4813. <unitPattern count="one" draft="contributed">{0} G</unitPattern>
  4814. <unitPattern count="other" draft="contributed">{0} G</unitPattern>
  4815. </unit>
  4816. <unit type="angle-arc-minute">
  4817. <unitPattern count="one" draft="contributed">{0} min</unitPattern>
  4818. <unitPattern count="other" draft="contributed">{0} min</unitPattern>
  4819. </unit>
  4820. <unit type="angle-arc-second">
  4821. <unitPattern count="one" draft="contributed">{0} s</unitPattern>
  4822. <unitPattern count="other" draft="contributed">{0} s</unitPattern>
  4823. </unit>
  4824. <unit type="angle-degree">
  4825. <unitPattern count="one" draft="contributed">{0}°</unitPattern>
  4826. <unitPattern count="other" draft="contributed">{0}°</unitPattern>
  4827. </unit>
  4828. <unit type="area-acre">
  4829. <unitPattern count="one" draft="contributed">{0} ac</unitPattern>
  4830. <unitPattern count="other" draft="contributed">{0} ac</unitPattern>
  4831. </unit>
  4832. <unit type="area-hectare">
  4833. <unitPattern count="one" draft="contributed">{0} ha</unitPattern>
  4834. <unitPattern count="other" draft="contributed">{0} ha</unitPattern>
  4835. </unit>
  4836. <unit type="area-square-foot">
  4837. <unitPattern count="one" draft="contributed">{0} ft²</unitPattern>
  4838. <unitPattern count="other" draft="contributed">{0} ft²</unitPattern>
  4839. </unit>
  4840. <unit type="area-square-kilometer">
  4841. <unitPattern count="one" draft="contributed">{0} km²</unitPattern>
  4842. <unitPattern count="other" draft="contributed">{0} km²</unitPattern>
  4843. </unit>
  4844. <unit type="area-square-meter">
  4845. <unitPattern count="one" draft="contributed">{0} m²</unitPattern>
  4846. <unitPattern count="other" draft="contributed">{0} m²</unitPattern>
  4847. </unit>
  4848. <unit type="area-square-mile">
  4849. <unitPattern count="one" draft="contributed">{0} mi²</unitPattern>
  4850. <unitPattern count="other" draft="contributed">{0} mi²</unitPattern>
  4851. </unit>
  4852. <unit type="duration-day">
  4853. <unitPattern count="one" draft="contributed">{0} giorno</unitPattern>
  4854. <unitPattern count="other" draft="contributed">{0} giorni</unitPattern>
  4855. </unit>
  4856. <unit type="duration-hour">
  4857. <unitPattern count="one" draft="contributed">{0} h</unitPattern>
  4858. <unitPattern count="other" draft="contributed">{0} h</unitPattern>
  4859. </unit>
  4860. <unit type="duration-millisecond">
  4861. <unitPattern count="one" draft="contributed">{0} ms</unitPattern>
  4862. <unitPattern count="other" draft="contributed">{0} ms</unitPattern>
  4863. </unit>
  4864. <unit type="duration-minute">
  4865. <unitPattern count="one" draft="contributed">{0} min</unitPattern>
  4866. <unitPattern count="other" draft="contributed">{0} min</unitPattern>
  4867. </unit>
  4868. <unit type="duration-month">
  4869. <unitPattern count="one" draft="contributed">{0} mese</unitPattern>
  4870. <unitPattern count="other" draft="contributed">{0} mesi</unitPattern>
  4871. </unit>
  4872. <unit type="duration-second">
  4873. <unitPattern count="one" draft="contributed">{0} s</unitPattern>
  4874. <unitPattern count="other" draft="contributed">{0} s</unitPattern>
  4875. </unit>
  4876. <unit type="duration-week">
  4877. <unitPattern count="one" draft="contributed">{0} settimana</unitPattern>
  4878. <unitPattern count="other" draft="contributed">{0} settimane</unitPattern>
  4879. </unit>
  4880. <unit type="duration-year">
  4881. <unitPattern count="one" draft="contributed">{0} anno</unitPattern>
  4882. <unitPattern count="other" draft="contributed">{0} anni</unitPattern>
  4883. </unit>
  4884. <unit type="length-centimeter">
  4885. <unitPattern count="one" draft="contributed">{0} cm</unitPattern>
  4886. <unitPattern count="other" draft="contributed">{0} cm</unitPattern>
  4887. </unit>
  4888. <unit type="length-foot">
  4889. <unitPattern count="one" draft="contributed">{0} ft</unitPattern>
  4890. <unitPattern count="other" draft="contributed">{0} ft</unitPattern>
  4891. </unit>
  4892. <unit type="length-inch">
  4893. <unitPattern count="one" draft="contributed">{0} in</unitPattern>
  4894. <unitPattern count="other" draft="contributed">{0} in</unitPattern>
  4895. </unit>
  4896. <unit type="length-kilometer">
  4897. <unitPattern count="one" draft="contributed">{0} km</unitPattern>
  4898. <unitPattern count="other" draft="contributed">{0} km</unitPattern>
  4899. </unit>
  4900. <unit type="length-light-year">
  4901. <unitPattern count="one" draft="contributed">{0} anno luce</unitPattern>
  4902. <unitPattern count="other" draft="contributed">{0} anni luce</unitPattern>
  4903. </unit>
  4904. <unit type="length-meter">
  4905. <unitPattern count="one" draft="contributed">{0} m</unitPattern>
  4906. <unitPattern count="other" draft="contributed">{0} m</unitPattern>
  4907. </unit>
  4908. <unit type="length-mile">
  4909. <unitPattern count="one" draft="contributed">{0} mi</unitPattern>
  4910. <unitPattern count="other" draft="contributed">{0} mi</unitPattern>
  4911. </unit>
  4912. <unit type="length-millimeter">
  4913. <unitPattern count="one" draft="contributed">{0} mm</unitPattern>
  4914. <unitPattern count="other" draft="contributed">{0} mm</unitPattern>
  4915. </unit>
  4916. <unit type="length-picometer">
  4917. <unitPattern count="one" draft="contributed">{0} pm</unitPattern>
  4918. <unitPattern count="other" draft="contributed">{0} pm</unitPattern>
  4919. </unit>
  4920. <unit type="length-yard">
  4921. <unitPattern count="one" draft="contributed">{0} yd</unitPattern>
  4922. <unitPattern count="other" draft="contributed">{0} yd</unitPattern>
  4923. </unit>
  4924. <unit type="mass-gram">
  4925. <unitPattern count="one" draft="contributed">{0} g</unitPattern>
  4926. <unitPattern count="other" draft="contributed">{0} g</unitPattern>
  4927. </unit>
  4928. <unit type="mass-kilogram">
  4929. <unitPattern count="one" draft="contributed">{0} kg</unitPattern>
  4930. <unitPattern count="other" draft="contributed">{0} kg</unitPattern>
  4931. </unit>
  4932. <unit type="mass-ounce">
  4933. <unitPattern count="one" draft="contributed">{0} oz</unitPattern>
  4934. <unitPattern count="other" draft="contributed">{0} oz</unitPattern>
  4935. </unit>
  4936. <unit type="mass-pound">
  4937. <unitPattern count="one" draft="contributed">{0} lb</unitPattern>
  4938. <unitPattern count="other" draft="contributed">{0} lb</unitPattern>
  4939. </unit>
  4940. <unit type="power-horsepower">
  4941. <unitPattern count="one" draft="contributed">{0} hp</unitPattern>
  4942. <unitPattern count="other" draft="contributed">{0} hp</unitPattern>
  4943. </unit>
  4944. <unit type="power-kilowatt">
  4945. <unitPattern count="one" draft="contributed">{0} kW</unitPattern>
  4946. <unitPattern count="other" draft="contributed">{0} kW</unitPattern>
  4947. </unit>
  4948. <unit type="power-watt">
  4949. <unitPattern count="one" draft="contributed">{0} W</unitPattern>
  4950. <unitPattern count="other" draft="contributed">{0} W</unitPattern>
  4951. </unit>
  4952. <unit type="pressure-hectopascal">
  4953. <unitPattern count="one" draft="contributed">{0} hPa</unitPattern>
  4954. <unitPattern count="other" draft="contributed">{0} hPa</unitPattern>
  4955. </unit>
  4956. <unit type="pressure-inch-hg">
  4957. <unitPattern count="one" draft="contributed">{0} inHg</unitPattern>
  4958. <unitPattern count="other" draft="contributed">{0} inHg</unitPattern>
  4959. </unit>
  4960. <unit type="pressure-millibar">
  4961. <unitPattern count="one" draft="contributed">{0} mbar</unitPattern>
  4962. <unitPattern count="other" draft="contributed">{0} mbar</unitPattern>
  4963. </unit>
  4964. <unit type="speed-kilometer-per-hour">
  4965. <unitPattern count="one" draft="contributed">{0} km/h</unitPattern>
  4966. <unitPattern count="other" draft="contributed">{0} km/h</unitPattern>
  4967. </unit>
  4968. <unit type="speed-meter-per-second">
  4969. <unitPattern count="one" draft="contributed">{0} m/s</unitPattern>
  4970. <unitPattern count="other" draft="contributed">{0} m/s</unitPattern>
  4971. </unit>
  4972. <unit type="speed-mile-per-hour">
  4973. <unitPattern count="one" draft="contributed">{0} mi/h</unitPattern>
  4974. <unitPattern count="other" draft="contributed">{0} mi/h</unitPattern>
  4975. </unit>
  4976. <unit type="temperature-celsius">
  4977. <unitPattern count="one" draft="contributed">{0}°C</unitPattern>
  4978. <unitPattern count="other" draft="contributed">{0}°C</unitPattern>
  4979. </unit>
  4980. <unit type="temperature-fahrenheit">
  4981. <unitPattern count="one" draft="contributed">{0}°F</unitPattern>
  4982. <unitPattern count="other" draft="contributed">{0}°F</unitPattern>
  4983. </unit>
  4984. <unit type="volume-cubic-kilometer">
  4985. <unitPattern count="one" draft="contributed">{0} km³</unitPattern>
  4986. <unitPattern count="other" draft="contributed">{0} km³</unitPattern>
  4987. </unit>
  4988. <unit type="volume-cubic-mile">
  4989. <unitPattern count="one" draft="contributed">{0} mi³</unitPattern>
  4990. <unitPattern count="other" draft="contributed">{0} mi³</unitPattern>
  4991. </unit>
  4992. <unit type="volume-liter">
  4993. <unitPattern count="one" draft="contributed">{0} l</unitPattern>
  4994. <unitPattern count="other" draft="contributed">{0} l</unitPattern>
  4995. </unit>
  4996. </unitLength>
  4997. <unitLength type="narrow">
  4998. <compoundUnit type="per">
  4999. <compoundUnitPattern draft="contributed">{0}/{1}</compoundUnitPattern>
  5000. </compoundUnit>
  5001. <unit type="acceleration-g-force">
  5002. <unitPattern count="one" draft="contributed">{0} G</unitPattern>
  5003. <unitPattern count="other" draft="contributed">{0} G</unitPattern>
  5004. </unit>
  5005. <unit type="angle-arc-minute">
  5006. <unitPattern count="one" draft="contributed">{0} min</unitPattern>
  5007. <unitPattern count="other" draft="contributed">{0} min</unitPattern>
  5008. </unit>
  5009. <unit type="angle-arc-second">
  5010. <unitPattern count="one" draft="contributed">{0} s</unitPattern>
  5011. <unitPattern count="other" draft="contributed">{0} s</unitPattern>
  5012. </unit>
  5013. <unit type="angle-degree">
  5014. <unitPattern count="one" draft="contributed">{0}°</unitPattern>
  5015. <unitPattern count="other" draft="contributed">{0}°</unitPattern>
  5016. </unit>
  5017. <unit type="area-acre">
  5018. <unitPattern count="one" draft="contributed">{0} ac</unitPattern>
  5019. <unitPattern count="other" draft="contributed">{0} ac</unitPattern>
  5020. </unit>
  5021. <unit type="area-hectare">
  5022. <unitPattern count="one" draft="contributed">{0} ha</unitPattern>
  5023. <unitPattern count="other" draft="contributed">{0} ha</unitPattern>
  5024. </unit>
  5025. <unit type="area-square-foot">
  5026. <unitPattern count="one" draft="contributed">{0} ft²</unitPattern>
  5027. <unitPattern count="other" draft="contributed">{0} ft²</unitPattern>
  5028. </unit>
  5029. <unit type="area-square-kilometer">
  5030. <unitPattern count="one" draft="contributed">{0} km²</unitPattern>
  5031. <unitPattern count="other" draft="contributed">{0} km²</unitPattern>
  5032. </unit>
  5033. <unit type="area-square-meter">
  5034. <unitPattern count="one" draft="contributed">{0} m²</unitPattern>
  5035. <unitPattern count="other" draft="contributed">{0} m²</unitPattern>
  5036. </unit>
  5037. <unit type="area-square-mile">
  5038. <unitPattern count="one" draft="contributed">{0} mi²</unitPattern>
  5039. <unitPattern count="other" draft="contributed">{0} mi²</unitPattern>
  5040. </unit>
  5041. <unit type="duration-day">
  5042. <unitPattern count="one">{0} gg</unitPattern>
  5043. <unitPattern count="other">{0} gg</unitPattern>
  5044. </unit>
  5045. <unit type="duration-hour">
  5046. <unitPattern count="one" draft="contributed">{0} h</unitPattern>
  5047. <unitPattern count="other" draft="contributed">{0} h</unitPattern>
  5048. </unit>
  5049. <unit type="duration-millisecond">
  5050. <unitPattern count="one" draft="contributed">{0} ms</unitPattern>
  5051. <unitPattern count="other" draft="contributed">{0} ms</unitPattern>
  5052. </unit>
  5053. <unit type="duration-minute">
  5054. <unitPattern count="one" draft="contributed">{0} m</unitPattern>
  5055. <unitPattern count="other" draft="contributed">{0} m</unitPattern>
  5056. </unit>
  5057. <unit type="duration-month">
  5058. <unitPattern count="one" draft="contributed">{0} mesi</unitPattern>
  5059. <unitPattern count="other" draft="contributed">{0} mesi</unitPattern>
  5060. </unit>
  5061. <unit type="duration-second">
  5062. <unitPattern count="one" draft="contributed">{0} s</unitPattern>
  5063. <unitPattern count="other" draft="contributed">{0} s</unitPattern>
  5064. </unit>
  5065. <unit type="duration-week">
  5066. <unitPattern count="one" draft="contributed">{0} sett.</unitPattern>
  5067. <unitPattern count="other" draft="contributed">{0} sett.</unitPattern>
  5068. </unit>
  5069. <unit type="duration-year">
  5070. <unitPattern count="one" draft="contributed">{0} anno</unitPattern>
  5071. <unitPattern count="other" draft="contributed">{0} anni</unitPattern>
  5072. </unit>
  5073. <unit type="length-centimeter">
  5074. <unitPattern count="one" draft="contributed">{0} cm</unitPattern>
  5075. <unitPattern count="other" draft="contributed">{0} cm</unitPattern>
  5076. </unit>
  5077. <unit type="length-foot">
  5078. <unitPattern count="one" draft="contributed">{0} ft</unitPattern>
  5079. <unitPattern count="other" draft="contributed">{0} ft</unitPattern>
  5080. </unit>
  5081. <unit type="length-inch">
  5082. <unitPattern count="one" draft="contributed">{0}″</unitPattern>
  5083. <unitPattern count="other" draft="contributed">{0}″</unitPattern>
  5084. </unit>
  5085. <unit type="length-kilometer">
  5086. <unitPattern count="one" draft="contributed">{0} km</unitPattern>
  5087. <unitPattern count="other" draft="contributed">{0} km</unitPattern>
  5088. </unit>
  5089. <unit type="length-light-year">
  5090. <unitPattern count="one" draft="contributed">{0} al</unitPattern>
  5091. <unitPattern count="other" draft="contributed">{0} al</unitPattern>
  5092. </unit>
  5093. <unit type="length-meter">
  5094. <unitPattern count="one" draft="contributed">{0} m</unitPattern>
  5095. <unitPattern count="other" draft="contributed">{0} m</unitPattern>
  5096. </unit>
  5097. <unit type="length-mile">
  5098. <unitPattern count="one" draft="contributed">{0} mi</unitPattern>
  5099. <unitPattern count="other" draft="contributed">{0} mi</unitPattern>
  5100. </unit>
  5101. <unit type="length-millimeter">
  5102. <unitPattern count="one" draft="contributed">{0} mm</unitPattern>
  5103. <unitPattern count="other" draft="contributed">{0} mm</unitPattern>
  5104. </unit>
  5105. <unit type="length-picometer">
  5106. <unitPattern count="one" draft="contributed">{0} pm</unitPattern>
  5107. <unitPattern count="other" draft="contributed">{0} pm</unitPattern>
  5108. </unit>
  5109. <unit type="length-yard">
  5110. <unitPattern count="one" draft="contributed">{0} yd</unitPattern>
  5111. <unitPattern count="other" draft="contributed">{0} yd</unitPattern>
  5112. </unit>
  5113. <unit type="mass-gram">
  5114. <unitPattern count="one" draft="contributed">{0} g</unitPattern>
  5115. <unitPattern count="other" draft="contributed">{0} g</unitPattern>
  5116. </unit>
  5117. <unit type="mass-kilogram">
  5118. <unitPattern count="one" draft="contributed">{0} kg</unitPattern>
  5119. <unitPattern count="other" draft="contributed">{0} kg</unitPattern>
  5120. </unit>
  5121. <unit type="mass-ounce">
  5122. <unitPattern count="one" draft="contributed">{0} oz</unitPattern>
  5123. <unitPattern count="other" draft="contributed">{0} oz</unitPattern>
  5124. </unit>
  5125. <unit type="mass-pound">
  5126. <unitPattern count="one" draft="contributed">{0} lb</unitPattern>
  5127. <unitPattern count="other" draft="contributed">{0} lb</unitPattern>
  5128. </unit>
  5129. <unit type="power-horsepower">
  5130. <unitPattern count="one" draft="contributed">{0} hp</unitPattern>
  5131. <unitPattern count="other" draft="contributed">{0} hp</unitPattern>
  5132. </unit>
  5133. <unit type="power-kilowatt">
  5134. <unitPattern count="one" draft="contributed">{0} kW</unitPattern>
  5135. <unitPattern count="other" draft="contributed">{0} kW</unitPattern>
  5136. </unit>
  5137. <unit type="power-watt">
  5138. <unitPattern count="one" draft="contributed">{0} W</unitPattern>
  5139. <unitPattern count="other" draft="contributed">{0} W</unitPattern>
  5140. </unit>
  5141. <unit type="pressure-hectopascal">
  5142. <unitPattern count="one" draft="contributed">{0} hPa</unitPattern>
  5143. <unitPattern count="other" draft="contributed">{0} hPa</unitPattern>
  5144. </unit>
  5145. <unit type="pressure-inch-hg">
  5146. <unitPattern count="one" draft="contributed">{0} inHg</unitPattern>
  5147. <unitPattern count="other" draft="contributed">{0} inHg</unitPattern>
  5148. </unit>
  5149. <unit type="pressure-millibar">
  5150. <unitPattern count="one" draft="contributed">{0} mbar</unitPattern>
  5151. <unitPattern count="other" draft="contributed">{0} mbar</unitPattern>
  5152. </unit>
  5153. <unit type="speed-kilometer-per-hour">
  5154. <unitPattern count="one" draft="contributed">{0} km/h</unitPattern>
  5155. <unitPattern count="other" draft="contributed">{0} km/h</unitPattern>
  5156. </unit>
  5157. <unit type="speed-meter-per-second">
  5158. <unitPattern count="one" draft="contributed">{0} m/s</unitPattern>
  5159. <unitPattern count="other" draft="contributed">{0} m/s</unitPattern>
  5160. </unit>
  5161. <unit type="speed-mile-per-hour">
  5162. <unitPattern count="one" draft="contributed">{0} mi/h</unitPattern>
  5163. <unitPattern count="other" draft="contributed">{0} mi/h</unitPattern>
  5164. </unit>
  5165. <unit type="temperature-celsius">
  5166. <unitPattern count="one" draft="contributed">{0}°</unitPattern>
  5167. <unitPattern count="other" draft="contributed">{0}°</unitPattern>
  5168. </unit>
  5169. <unit type="temperature-fahrenheit">
  5170. <unitPattern count="one" draft="contributed">{0}°F</unitPattern>
  5171. <unitPattern count="other" draft="contributed">{0}°F</unitPattern>
  5172. </unit>
  5173. <unit type="volume-cubic-kilometer">
  5174. <unitPattern count="one" draft="contributed">{0} km³</unitPattern>
  5175. <unitPattern count="other" draft="contributed">{0} km³</unitPattern>
  5176. </unit>
  5177. <unit type="volume-cubic-mile">
  5178. <unitPattern count="one" draft="contributed">{0} mi³</unitPattern>
  5179. <unitPattern count="other" draft="contributed">{0} mi³</unitPattern>
  5180. </unit>
  5181. <unit type="volume-liter">
  5182. <unitPattern count="one" draft="contributed">{0} l</unitPattern>
  5183. <unitPattern count="other" draft="contributed">{0} l</unitPattern>
  5184. </unit>
  5185. </unitLength>
  5186. <durationUnit type="hm">
  5187. <durationUnitPattern>h:mm</durationUnitPattern>
  5188. </durationUnit>
  5189. <durationUnit type="hms">
  5190. <durationUnitPattern>h:mm:ss</durationUnitPattern>
  5191. </durationUnit>
  5192. <durationUnit type="ms">
  5193. <durationUnitPattern>m:ss</durationUnitPattern>
  5194. </durationUnit>
  5195. </units>
  5196. <listPatterns>
  5197. <listPattern>
  5198. <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
  5199. <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
  5200. <listPatternPart type="end">{0}, e {1}</listPatternPart>
  5201. <listPatternPart type="2">{0} e {1}</listPatternPart>
  5202. </listPattern>
  5203. <listPattern type="unit">
  5204. <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
  5205. <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
  5206. <listPatternPart type="end" draft="contributed">{0}, e {1}</listPatternPart>
  5207. <listPatternPart type="2" draft="contributed">{0} e {1}</listPatternPart>
  5208. </listPattern>
  5209. <listPattern type="unit-narrow">
  5210. <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
  5211. <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
  5212. <listPatternPart type="end" draft="contributed">{0}, e {1}</listPatternPart>
  5213. <listPatternPart type="2" draft="contributed">{0}, {1}</listPatternPart>
  5214. </listPattern>
  5215. <listPattern type="unit-short">
  5216. <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
  5217. <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
  5218. <listPatternPart type="end" draft="contributed">{0}, e {1}</listPatternPart>
  5219. <listPatternPart type="2" draft="contributed">{0}, {1}</listPatternPart>
  5220. </listPattern>
  5221. </listPatterns>
  5222. <posix>
  5223. <messages>
  5224. <yesstr>sì:si:s</yesstr>
  5225. <nostr>no:n</nostr>
  5226. </messages>
  5227. </posix>
  5228. </ldml>