| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <ldml>
- <identity>
- <version number="$Revision: 1.116 $"/>
- <generation date="$Date: 2009/06/15 03:46:25 $"/>
- <language type="ro"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>, </localeSeparator>
- </localeDisplayPattern>
- <languages>
- <language type="ab">abhază</language>
- <language type="af">afrikaans</language>
- <language type="afa">limbă afro-asiatică</language>
- <language type="ain">ainu</language>
- <language type="akk">akkadiană</language>
- <language type="ale">aleută</language>
- <language type="alt">altaică meridională</language>
- <language type="am">amharică</language>
- <language type="an">aragoneză</language>
- <language type="ang">engleză veche</language>
- <language type="apa">limbă apașă</language>
- <language type="ar">arabă</language>
- <language type="arc">aramaică</language>
- <language type="art">limbă artificială</language>
- <language type="as">asameză</language>
- <language type="ast">asturiană</language>
- <language type="aus">limbă australiană</language>
- <language type="av">avară</language>
- <language type="ay">aymara</language>
- <language type="az">azeră</language>
- <language type="ba">bașkiră</language>
- <language type="bat">limbă baltică</language>
- <language type="be">bielorusă</language>
- <language type="ber">berberă</language>
- <language type="bg">bulgară</language>
- <language type="bh">bihari</language>
- <language type="bn">bengaleză</language>
- <language type="bnt">bantu</language>
- <language type="bo">tibetană</language>
- <language type="br">bretonă</language>
- <language type="bs">bosniacă</language>
- <language type="ca">catalană</language>
- <language type="cai">limbă central-amerindiană</language>
- <language type="cau">limbă caucaziană</language>
- <language type="ce">cecenă</language>
- <language type="cel">limbă celtică</language>
- <language type="co">corsicană</language>
- <language type="cop">coptă</language>
- <language type="cs">cehă</language>
- <language type="cu">slavonă</language>
- <language type="cv">ciuvașă</language>
- <language type="cy">velșă</language>
- <language type="da">daneză</language>
- <language type="de">germană</language>
- <language type="de_AT">germană austriacă</language>
- <language type="de_CH">germană standard elvețiană</language>
- <language type="dra">limbă dravidiană</language>
- <language type="egy">egipteană veche</language>
- <language type="el">greacă</language>
- <language type="elx">elamită</language>
- <language type="en">engleză</language>
- <language type="en_AU">engleză australiană</language>
- <language type="en_CA">engleză canadiană</language>
- <language type="en_GB">engleză britanică</language>
- <language type="en_US">engleză americană</language>
- <language type="eo">esperanto</language>
- <language type="es">spaniolă</language>
- <language type="es_419">spaniolă latino-americană</language>
- <language type="es_ES">spaniolă iberică</language>
- <language type="et">estoniană</language>
- <language type="eu">bască</language>
- <language type="fa">persană</language>
- <language type="fi">finlandeză</language>
- <language type="fil">filipineză</language>
- <language type="fiu">limbă fino-ugrică</language>
- <language type="fj">fijiană</language>
- <language type="fo">faroeză</language>
- <language type="fr">franceză</language>
- <language type="fr_CA">franceză canadiană</language>
- <language type="fr_CH">franceză elvețiană</language>
- <language type="fro">franceză veche</language>
- <language type="frs">frizonă orientală</language>
- <language type="fy">frizonă occidentală</language>
- <language type="ga">irlandeză</language>
- <language type="gd">gaelică scoțiană</language>
- <language type="gem">limbă germanică</language>
- <language type="gl">galiciană</language>
- <language type="gn">guarani</language>
- <language type="got">gotică</language>
- <language type="grc">greacă veche</language>
- <language type="gsw">germană elvețiană</language>
- <language type="gu">gujarati</language>
- <language type="haw">hawaiană</language>
- <language type="he">ebraică</language>
- <language type="hi">hindi</language>
- <language type="hit">hitită</language>
- <language type="hr">croată</language>
- <language type="ht">haitiană</language>
- <language type="hu">maghiară</language>
- <language type="hy">armeană</language>
- <language type="ia">interlingua</language>
- <language type="id">indoneziană</language>
- <language type="ie">interlingue</language>
- <language type="ik">inupiak</language>
- <language type="inc">limbă indiană</language>
- <language type="ine">limbă indo-europeană</language>
- <language type="ira">limbă iraniană</language>
- <language type="is">islandeză</language>
- <language type="it">italiană</language>
- <language type="ja">japoneză</language>
- <language type="jpr">iudeo-persană</language>
- <language type="jrb">iudeo-arabă</language>
- <language type="jv">javaneză</language>
- <language type="ka">georgiană</language>
- <language type="kg">congoleză</language>
- <language type="kk">kazahă</language>
- <language type="kl">kalaallisut</language>
- <language type="km">khmeră</language>
- <language type="kn">kannada</language>
- <language type="ko">coreeană</language>
- <language type="ks">cașmireză</language>
- <language type="ku">kurdă</language>
- <language type="ky">kîrgîză</language>
- <language type="la">latină</language>
- <language type="lb">luxemburgheză</language>
- <language type="ln">lingala</language>
- <language type="lo">laoțiană</language>
- <language type="lt">lituaniană</language>
- <language type="lv">letonă</language>
- <language type="map">austroneziană</language>
- <language type="mg">malgașă</language>
- <language type="mi">maori</language>
- <language type="mis">limbi diverse</language>
- <language type="mk">macedoneană</language>
- <language type="ml">malayalam</language>
- <language type="mn">mongolă</language>
- <language type="mnc">manciuriană</language>
- <language type="mo">moldovenească</language>
- <language type="mr">marathi</language>
- <language type="ms">malay</language>
- <language type="mt">malteză</language>
- <language type="mul">limbi multiple</language>
- <language type="mun">limbă munda</language>
- <language type="mwl">mirandeză</language>
- <language type="my">birmaneză</language>
- <language type="myn">limbă mayașă</language>
- <language type="nai">limbă nord-amerindiană</language>
- <language type="nap">napolitană</language>
- <language type="ne">nepaleză</language>
- <language type="nl">olandeză</language>
- <language type="nl_BE">flamandă</language>
- <language type="nn">norvegiană nynorsk</language>
- <language type="no">norvegiană</language>
- <language type="nub">limbă nubiană</language>
- <language type="nv">navajo</language>
- <language type="oc">occitană</language>
- <language type="om">oromo</language>
- <language type="or">oriya</language>
- <language type="ota">turcă otomană</language>
- <language type="oto">limbă otomi</language>
- <language type="pa">punjabi</language>
- <language type="paa">limbă papuașă</language>
- <language type="peo">persană veche</language>
- <language type="phi">limbă filipineză</language>
- <language type="phn">feniciană</language>
- <language type="pi">pali</language>
- <language type="pl">poloneză</language>
- <language type="pro">provensală veche</language>
- <language type="ps">pașto</language>
- <language type="pt">portugheză</language>
- <language type="pt_BR">portugheză braziliană</language>
- <language type="pt_PT">portugheză iberică</language>
- <language type="qu">quechua</language>
- <language type="rm">retoromană</language>
- <language type="ro">română</language>
- <language type="roa">limbă romanică</language>
- <language type="ru">rusă</language>
- <language type="rup">aromână</language>
- <language type="sa">sanscrită</language>
- <language type="sai">limbă sud-amerindiană</language>
- <language type="sam">aramaică samariteană</language>
- <language type="sc">sardiniană</language>
- <language type="scn">siciliană</language>
- <language type="sco">scots</language>
- <language type="sd">sindhi</language>
- <language type="sem">limbă semitică</language>
- <language type="sga">irlandeză veche</language>
- <language type="sgn">limbaj mimico-gestual</language>
- <language type="sh">sârbo-croată</language>
- <language type="si">singaleză</language>
- <language type="sit">limbă sino-tibetană</language>
- <language type="sk">slovacă</language>
- <language type="sl">slovenă</language>
- <language type="sla">limbă slavă</language>
- <language type="sm">samoană</language>
- <language type="so">somaleză</language>
- <language type="sq">albaneză</language>
- <language type="sr">sârbă</language>
- <language type="st">sesotho</language>
- <language type="su">sundaneză</language>
- <language type="sux">sumeriană</language>
- <language type="sv">suedeză</language>
- <language type="sw">swahili</language>
- <language type="syr">siriacă</language>
- <language type="ta">tamilă</language>
- <language type="tai">limbă thai</language>
- <language type="te">telugu</language>
- <language type="tg">tadjică</language>
- <language type="th">thailandeză</language>
- <language type="ti">tigrinya</language>
- <language type="tk">turkmenă</language>
- <language type="tl">tagalog</language>
- <language type="tlh">klingoniană</language>
- <language type="tn">setswana</language>
- <language type="tr">turcă</language>
- <language type="tt">tătară</language>
- <language type="tut">limbă altaică</language>
- <language type="tw">twi</language>
- <language type="ty">tahitiană</language>
- <language type="ug">uigură</language>
- <language type="uk">ucraineană</language>
- <language type="und">limbă necunoscută sau nevalidă</language>
- <language type="ur">urdu</language>
- <language type="uz">uzbecă</language>
- <language type="vi">vietnameză</language>
- <language type="vo">volapuk</language>
- <language type="wa">valonă</language>
- <language type="wo">wolof</language>
- <language type="xal">calmucă</language>
- <language type="xh">xhosa</language>
- <language type="yi">idiș</language>
- <language type="yo">yoruba</language>
- <language type="zap">zapotecă</language>
- <language type="zh">chineză</language>
- <language type="zh_Hans">chineză simplificată</language>
- <language type="zh_Hant">chineză tradițională</language>
- <language type="zu">zulu</language>
- <language type="zxx">fară conținut lingvistic</language>
- </languages>
- <scripts>
- <script type="Arab">arabă</script>
- <script type="Armn">armeană</script>
- <script type="Bali">balineză</script>
- <script type="Beng">bengali</script>
- <script type="Bopo">bopomofo</script>
- <script type="Brai">braille</script>
- <script type="Cans">silabică aborigenă canadiană unificată</script>
- <script type="Copt">coptă</script>
- <script type="Cprt">cipriotă</script>
- <script type="Cyrl">chirilică</script>
- <script type="Cyrs">chirilică slavonă bisericească veche</script>
- <script type="Deva">devanagari</script>
- <script type="Dsrt">mormonă</script>
- <script type="Egyd">demotică egipteană</script>
- <script type="Egyh">hieratică egipteană</script>
- <script type="Egyp">hieroglife egiptene</script>
- <script type="Ethi">etiopiană</script>
- <script type="Geok">georgiană bisericească</script>
- <script type="Geor">georgiană</script>
- <script type="Glag">glagolitică</script>
- <script type="Goth">gotică</script>
- <script type="Grek">greacă</script>
- <script type="Hang">coreeană</script>
- <script type="Hani">ideografică</script>
- <script type="Hans">ideografică simplificată</script>
- <script type="Hant">ideografică tradițională</script>
- <script type="Hebr">ebraică</script>
- <script type="Hira">hiragana</script>
- <script type="Hrkt">katakana sau hiragana</script>
- <script type="Hung">maghiară veche</script>
- <script type="Inds">Indus</script>
- <script type="Ital">italică veche</script>
- <script type="Java">javaneză</script>
- <script type="Jpan">japoneză</script>
- <script type="Kana">katakana</script>
- <script type="Khmr">khmeră</script>
- <script type="Laoo">laoțiană</script>
- <script type="Latf">latină Fraktur</script>
- <script type="Latg">latină gaelică</script>
- <script type="Latn">latină</script>
- <script type="Lina">lineară A</script>
- <script type="Linb">lineară B</script>
- <script type="Lydi">lidiană</script>
- <script type="Maya">hieroglife maya</script>
- <script type="Mong">mongolă</script>
- <script type="Mymr">birmană</script>
- <script type="Phnx">feniciană</script>
- <script type="Qaai">moștenită</script>
- <script type="Runr">runică</script>
- <script type="Sinh">singaleză</script>
- <script type="Syrc">siriacă</script>
- <script type="Syrj">siriacă occidentală</script>
- <script type="Syrn">siriacă orientală</script>
- <script type="Tfng">berberă</script>
- <script type="Thai">Thai</script>
- <script type="Tibt">tibetană</script>
- <script type="Xpeo">persană veche</script>
- <script type="Xsux">cuneiformă sumero-akkadiană</script>
- <script type="Zxxx">nescrisă</script>
- <script type="Zyyy">comună</script>
- <script type="Zzzz">scriere necunoscută sau nevalidă</script>
- </scripts>
- <territories>
- <territory type="001">Lume</territory>
- <territory type="002">Africa</territory>
- <territory type="003">America de Nord</territory>
- <territory type="005">America de Sud</territory>
- <territory type="009">Oceania</territory>
- <territory type="011">Africa Occidentală</territory>
- <territory type="013">America Centrală</territory>
- <territory type="014">Africa Orientală</territory>
- <territory type="015">Africa Septentrională</territory>
- <territory type="017">Africa Centrală</territory>
- <territory type="018">Africa Meridională</territory>
- <territory type="019">Americi</territory>
- <territory type="021">America Septentrională</territory>
- <territory type="029">Caraibe</territory>
- <territory type="030">Asia Orientală</territory>
- <territory type="034">Asia Meridională</territory>
- <territory type="035">Asia de Sud-Est</territory>
- <territory type="039">Europa Meridională</territory>
- <territory type="053">Australia și Noua Zeelandă</territory>
- <territory type="054">Melanezia</territory>
- <territory type="057">Regiunea Micronezia</territory>
- <territory type="061">Polinezia</territory>
- <territory type="062">Asia Centrală de Sud</territory>
- <territory type="142">Asia</territory>
- <territory type="143">Asia Centrală</territory>
- <territory type="145">Asia Occidentală</territory>
- <territory type="150">Europa</territory>
- <territory type="151">Europa Orientală</territory>
- <territory type="154">Europa Septentrională</territory>
- <territory type="155">Europa Occidentală</territory>
- <territory type="172">Comunitatea Statelor Independente</territory>
- <territory type="419">America Latină și Caraibe</territory>
- <territory type="830">Insulele Anglo-Normande</territory>
- <territory type="AD">Andorra</territory>
- <territory type="AE">Emiratele Arabe Unite</territory>
- <territory type="AF">Afganistan</territory>
- <territory type="AG">Antigua și Barbuda</territory>
- <territory type="AI">Anguilla</territory>
- <territory type="AL">Albania</territory>
- <territory type="AM">Armenia</territory>
- <territory type="AN">Antilele Olandeze</territory>
- <territory type="AO">Angola</territory>
- <territory type="AQ">Antarctica</territory>
- <territory type="AR">Argentina</territory>
- <territory type="AS">Samoa Americană</territory>
- <territory type="AT">Austria</territory>
- <territory type="AU">Australia</territory>
- <territory type="AW">Aruba</territory>
- <territory type="AX">Insulele Aland</territory>
- <territory type="AZ">Azerbaidjan</territory>
- <territory type="BA">Bosnia și Herțegovina</territory>
- <territory type="BB">Barbados</territory>
- <territory type="BD">Bangladesh</territory>
- <territory type="BE">Belgia</territory>
- <territory type="BF">Burkina Faso</territory>
- <territory type="BG">Bulgaria</territory>
- <territory type="BH">Bahrain</territory>
- <territory type="BI">Burundi</territory>
- <territory type="BJ">Benin</territory>
- <territory type="BL">Sfântul Bartolomeu</territory>
- <territory type="BM">Bermuda</territory>
- <territory type="BN">Brunei</territory>
- <territory type="BO">Bolivia</territory>
- <territory type="BR">Brazilia</territory>
- <territory type="BS">Bahamas</territory>
- <territory type="BT">Bhutan</territory>
- <territory type="BV">Insula Bouvet</territory>
- <territory type="BW">Botswana</territory>
- <territory type="BY">Bielorusia</territory>
- <territory type="BZ">Belize</territory>
- <territory type="CA">Canada</territory>
- <territory type="CC">Insulele Cocos</territory>
- <territory type="CD">Republica Democrată Congo</territory>
- <territory type="CF">Republica Centrafricană</territory>
- <territory type="CG">Congo</territory>
- <territory type="CH">Eleveția</territory>
- <territory type="CI">Coasta de Fildeș</territory>
- <territory type="CK">Insulele Cook</territory>
- <territory type="CL">Chile</territory>
- <territory type="CM">Camerun</territory>
- <territory type="CN">China</territory>
- <territory type="CO">Columbia</territory>
- <territory type="CR">Costa Rica</territory>
- <territory type="CS">Serbia și Muntenegru</territory>
- <territory type="CU">Cuba</territory>
- <territory type="CV">Capul Verde</territory>
- <territory type="CX">Insula Christmas</territory>
- <territory type="CY">Cipru</territory>
- <territory type="CZ">Republica Cehă</territory>
- <territory type="DE">Germania</territory>
- <territory type="DJ">Djibouti</territory>
- <territory type="DK">Danemarca</territory>
- <territory type="DM">Dominica</territory>
- <territory type="DO">Republica Dominicană</territory>
- <territory type="DZ">Algeria</territory>
- <territory type="EC">Ecuador</territory>
- <territory type="EE">Estonia</territory>
- <territory type="EG">Egipt</territory>
- <territory type="EH">Sahara Occidentală</territory>
- <territory type="ER">Eritreea</territory>
- <territory type="ES">Spania</territory>
- <territory type="ET">Etiopia</territory>
- <territory type="FI">Finlanda</territory>
- <territory type="FJ">Fiji</territory>
- <territory type="FK">Insulele Falkland</territory>
- <territory type="FM">Micronezia</territory>
- <territory type="FO">Insulele Feroe</territory>
- <territory type="FR">Franța</territory>
- <territory type="GA">Gabon</territory>
- <territory type="GB">Marea Britanie</territory>
- <territory type="GD">Grenada</territory>
- <territory type="GE">Georgia</territory>
- <territory type="GF">Guyana Franceză</territory>
- <territory type="GG">Guernsey</territory>
- <territory type="GH">Ghana</territory>
- <territory type="GI">Gibraltar</territory>
- <territory type="GL">Groenlanda</territory>
- <territory type="GM">Gambia</territory>
- <territory type="GN">Guineea</territory>
- <territory type="GP">Guadelupa</territory>
- <territory type="GQ">Guineea Ecuatorială</territory>
- <territory type="GR">Grecia</territory>
- <territory type="GS">Insulele Georgia de Sud și Sandwich de Sud</territory>
- <territory type="GT">Guatemala</territory>
- <territory type="GU">Guam</territory>
- <territory type="GW">Guineea-Bissau</territory>
- <territory type="GY">Guyana</territory>
- <territory type="HK">R.A.S. Hong Kong a Chinei</territory>
- <territory type="HM">Insula Heard și Insulele McDonald</territory>
- <territory type="HN">Honduras</territory>
- <territory type="HR">Croația</territory>
- <territory type="HT">Haiti</territory>
- <territory type="HU">Ungaria</territory>
- <territory type="ID">Indonezia</territory>
- <territory type="IE">Irlanda</territory>
- <territory type="IL">Israel</territory>
- <territory type="IM">Insula Man</territory>
- <territory type="IN">India</territory>
- <territory type="IO">Teritoriul Britanic din Oceanul Indian</territory>
- <territory type="IQ">Irak</territory>
- <territory type="IR">Iran</territory>
- <territory type="IS">Islanda</territory>
- <territory type="IT">Italia</territory>
- <territory type="JE">Jersey</territory>
- <territory type="JM">Jamaica</territory>
- <territory type="JO">Iordania</territory>
- <territory type="JP">Japonia</territory>
- <territory type="KE">Kenya</territory>
- <territory type="KG">Kârgâzstan</territory>
- <territory type="KH">Cambodgia</territory>
- <territory type="KI">Kiribati</territory>
- <territory type="KM">Comore</territory>
- <territory type="KN">Sfântul Kitts și Nevis</territory>
- <territory type="KP">Coreea de Nord</territory>
- <territory type="KR">Coreea de Sud</territory>
- <territory type="KW">Kuweit</territory>
- <territory type="KY">Insulele Cayman</territory>
- <territory type="KZ">Kazahstan</territory>
- <territory type="LA">Laos</territory>
- <territory type="LB">Liban</territory>
- <territory type="LC">Sfânta Lucia</territory>
- <territory type="LI">Liechtenstein</territory>
- <territory type="LK">Sri Lanka</territory>
- <territory type="LR">Liberia</territory>
- <territory type="LS">Lesotho</territory>
- <territory type="LT">Lituania</territory>
- <territory type="LU">Luxemburg</territory>
- <territory type="LV">Letonia</territory>
- <territory type="LY">Libia</territory>
- <territory type="MA">Maroc</territory>
- <territory type="MC">Monaco</territory>
- <territory type="MD">Republica Moldova</territory>
- <territory type="ME">Muntenegru</territory>
- <territory type="MF">Sfântul Martin</territory>
- <territory type="MG">Madagascar</territory>
- <territory type="MH">Insulele Marshall</territory>
- <territory type="MK">Macedonia</territory>
- <territory type="ML">Mali</territory>
- <territory type="MM">Myanmar</territory>
- <territory type="MN">Mongolia</territory>
- <territory type="MO">R.A.S. Macao a Chinei</territory>
- <territory type="MP">Insulele Mariane de Nord</territory>
- <territory type="MQ">Martinica</territory>
- <territory type="MR">Mauritania</territory>
- <territory type="MS">Montserrat</territory>
- <territory type="MT">Malta</territory>
- <territory type="MU">Mauritius</territory>
- <territory type="MV">Maldive</territory>
- <territory type="MW">Malawi</territory>
- <territory type="MX">Mexic</territory>
- <territory type="MY">Malaezia</territory>
- <territory type="MZ">Mozambic</territory>
- <territory type="NA">Namibia</territory>
- <territory type="NC">Noua Caledonie</territory>
- <territory type="NE">Niger</territory>
- <territory type="NF">Insulele Norfolk</territory>
- <territory type="NG">Nigeria</territory>
- <territory type="NI">Nicaragua</territory>
- <territory type="NL">Olanda</territory>
- <territory type="NO">Norvegia</territory>
- <territory type="NP">Nepal</territory>
- <territory type="NR">Nauru</territory>
- <territory type="NU">Niue</territory>
- <territory type="NZ">Noua Zeelandă</territory>
- <territory type="OM">Oman</territory>
- <territory type="PA">Panama</territory>
- <territory type="PE">Peru</territory>
- <territory type="PF">Polinezia Franceză</territory>
- <territory type="PG">Papua Noua Guinee</territory>
- <territory type="PH">Filipine</territory>
- <territory type="PK">Pakistan</territory>
- <territory type="PL">Polonia</territory>
- <territory type="PM">Sfântul Pierre și Miquelon</territory>
- <territory type="PN">Pitcairn</territory>
- <territory type="PR">Porto Rico</territory>
- <territory type="PS">Teritoriul Palestinian</territory>
- <territory type="PT">Portugalia</territory>
- <territory type="PW">Palau</territory>
- <territory type="PY">Paraguay</territory>
- <territory type="QA">Qatar</territory>
- <territory type="QO">Oceania Periferică</territory>
- <territory type="QU">Uniunea Europeană</territory>
- <territory type="RE">Reunion</territory>
- <territory type="RO">România</territory>
- <territory type="RS">Serbia</territory>
- <territory type="RU">Rusia</territory>
- <territory type="RW">Rwanda</territory>
- <territory type="SA">Arabia Saudită</territory>
- <territory type="SB">Insulele Solomon</territory>
- <territory type="SC">Seychelles</territory>
- <territory type="SD">Sudan</territory>
- <territory type="SE">Suedia</territory>
- <territory type="SG">Singapore</territory>
- <territory type="SH">Sfânta Elena</territory>
- <territory type="SI">Slovenia</territory>
- <territory type="SJ">Svalbard și Jan Mayen</territory>
- <territory type="SK">Slovacia</territory>
- <territory type="SL">Sierra Leone</territory>
- <territory type="SM">San Marino</territory>
- <territory type="SN">Senegal</territory>
- <territory type="SO">Somalia</territory>
- <territory type="SR">Surinam</territory>
- <territory type="ST">Sao Tome și Principe</territory>
- <territory type="SV">El Salvador</territory>
- <territory type="SY">Siria</territory>
- <territory type="SZ">Swaziland</territory>
- <territory type="TC">Insulele Turks și Caicos</territory>
- <territory type="TD">Ciad</territory>
- <territory type="TF">Teritoriile Australe și Antarctice Franceze</territory>
- <territory type="TG">Togo</territory>
- <territory type="TH">Thailanda</territory>
- <territory type="TJ">Tadjikistan</territory>
- <territory type="TK">Tokelau</territory>
- <territory type="TL">Timorul de Est</territory>
- <territory type="TM">Turkmenistan</territory>
- <territory type="TN">Tunisia</territory>
- <territory type="TO">Tonga</territory>
- <territory type="TR">Turcia</territory>
- <territory type="TT">Trinidad-Tobago</territory>
- <territory type="TV">Tuvalu</territory>
- <territory type="TW">Taiwan</territory>
- <territory type="TZ">Tanzania</territory>
- <territory type="UA">Ucraina</territory>
- <territory type="UG">Uganda</territory>
- <territory type="UM">Insulele mici îndepărtate ale Statelor Unite ale Americii</territory>
- <territory type="US">Statele Unite ale Americii</territory>
- <territory type="UY">Uruguay</territory>
- <territory type="UZ">Uzbekistan</territory>
- <territory type="VA">Vatican</territory>
- <territory type="VC">Sfântul Vincent și Grenadine</territory>
- <territory type="VE">Venezuela</territory>
- <territory type="VG">Insulele Virgine Britanice</territory>
- <territory type="VI">Insulele Virgine S.U.A.</territory>
- <territory type="VN">Vietnam</territory>
- <territory type="VU">Vanuatu</territory>
- <territory type="WF">Wallis și Futuna</territory>
- <territory type="WS">Samoa</territory>
- <territory type="YE">Yemen</territory>
- <territory type="YT">Mayotte</territory>
- <territory type="ZA">Africa de Sud</territory>
- <territory type="ZM">Zambia</territory>
- <territory type="ZW">Zimbabwe</territory>
- <territory type="ZZ">Regiune necunoscută sau nevalidă</territory>
- </territories>
- <keys>
- <key type="collation">ordine de sortare</key>
- <key type="currency">monedă</key>
- </keys>
- <types>
- <type type="big5han" key="collation">sortare pentru chineza tradițională - Big5</type>
- <type type="buddhist" key="calendar">calendar budist</type>
- <type type="chinese" key="calendar">calendar chinezesc</type>
- <type type="direct" key="collation">sortare directă</type>
- <type type="gb2312han" key="collation">sortare pentru chineza simplificată - GB2312</type>
- <type type="gregorian" key="calendar">calendar gregorian</type>
- <type type="hebrew" key="calendar">calendar ebraic</type>
- <type type="indian" key="calendar">calendar național indian</type>
- <type type="islamic" key="calendar">calendar islamic</type>
- <type type="islamic-civil" key="calendar">calendar islamic civil</type>
- <type type="japanese" key="calendar">calendar japonez</type>
- <type type="phonebook" key="collation">sortare după cartea de telefon</type>
- <type type="pinyin" key="collation">sortare pinyin</type>
- <type type="roc" key="calendar">calendar al Republicii Chineze</type>
- <type type="stroke" key="collation">ordine de sortare după trasare</type>
- <type type="traditional" key="collation">sortare tradițională</type>
- </types>
- <measurementSystemNames>
- <measurementSystemName type="metric">metric</measurementSystemName>
- <measurementSystemName type="US">american</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">Limbă: {0}</codePattern>
- <codePattern type="script">Scriere: {0}</codePattern>
- <codePattern type="territory">Regiune: {0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <layout>
- <inList>titlecase-firstword</inList>
- <inText type="keys">lowercase-words</inText>
- <inText type="languages">lowercase-words</inText>
- <inText type="measurementSystemNames">lowercase-words</inText>
- <inText type="territories">titlecase-firstword</inText>
- </layout>
- <characters>
- <exemplarCharacters>[a ă â b-i î j-p r s ș t ț u v x z]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[á à å ä ç é è ê ë ñ ö q ş ţ ü w y]</exemplarCharacters>
- <exemplarCharacters type="currencySymbol">[a ă â b-i î j-s ș t ț u-z]</exemplarCharacters>
- </characters>
- <delimiters>
- <quotationStart>„</quotationStart>
- <quotationEnd>”</quotationEnd>
- <alternateQuotationStart>«</alternateQuotationStart>
- <alternateQuotationEnd>»</alternateQuotationEnd>
- </delimiters>
- <dates>
- <dateRangePattern>{0} – {1}</dateRangePattern>
- <calendars>
- <calendar type="buddhist">
- <eras>
- <eraNames>
- <era type="0">era budistă</era>
- </eraNames>
- <eraAbbr>
- <era type="0">e.b.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, d MMMM, y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d MMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>d/M/yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <availableFormats>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
- <dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
- <dateFormatItem id="MMMMEd">E d MMMM</dateFormatItem>
- <dateFormatItem id="yMEd">EEE, d/M/y</dateFormatItem>
- <dateFormatItem id="yMMMEd">EEE, d MMM Y</dateFormatItem>
- <dateFormatItem id="yQ">'T'Q y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
- </availableFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">ian.</month>
- <month type="2">feb.</month>
- <month type="3">mar.</month>
- <month type="4">apr.</month>
- <month type="5">mai</month>
- <month type="6">iun.</month>
- <month type="7">iul.</month>
- <month type="8">aug.</month>
- <month type="9">sept.</month>
- <month type="10">oct.</month>
- <month type="11">nov.</month>
- <month type="12">dec.</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">ianuarie</month>
- <month type="2">februarie</month>
- <month type="3">martie</month>
- <month type="4">aprilie</month>
- <month type="5">mai</month>
- <month type="6">iunie</month>
- <month type="7">iulie</month>
- <month type="8">august</month>
- <month type="9">septembrie</month>
- <month type="10">octombrie</month>
- <month type="11">noiembrie</month>
- <month type="12">decembrie</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="narrow">
- <month type="1">I</month>
- <month type="2">F</month>
- <month type="3">M</month>
- <month type="4">A</month>
- <month type="5">M</month>
- <month type="6">I</month>
- <month type="7">I</month>
- <month type="8">A</month>
- <month type="9">S</month>
- <month type="10">O</month>
- <month type="11">N</month>
- <month type="12">D</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">Du</day>
- <day type="mon">Lu</day>
- <day type="tue">Ma</day>
- <day type="wed">Mi</day>
- <day type="thu">Jo</day>
- <day type="fri">Vi</day>
- <day type="sat">Sâ</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">duminică</day>
- <day type="mon">luni</day>
- <day type="tue">marți</day>
- <day type="wed">miercuri</day>
- <day type="thu">joi</day>
- <day type="fri">vineri</day>
- <day type="sat">sâmbătă</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="abbreviated">
- <day type="sun">Du</day>
- <day type="mon">Lu</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">D</day>
- <day type="mon">L</day>
- <day type="tue">M</day>
- <day type="wed">M</day>
- <day type="thu">J</day>
- <day type="fri">V</day>
- <day type="sat">S</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sat">sâmbătă</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">trim. I</quarter>
- <quarter type="2">trim. II</quarter>
- <quarter type="3">trim. III</quarter>
- <quarter type="4">trim. IV</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">T1</quarter>
- <quarter type="2">T2</quarter>
- <quarter type="3">T3</quarter>
- <quarter type="4">T4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">trimestrul I</quarter>
- <quarter type="2">trimestrul al II-lea</quarter>
- <quarter type="3">trimestrul al III-lea</quarter>
- <quarter type="4">trimestrul al IV-lea</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="narrow">
- <quarter type="1">T1</quarter>
- <quarter type="2">T2</quarter>
- <quarter type="3">T3</quarter>
- <quarter type="4">T4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">trimestrul I</quarter>
- <quarter type="2">trimestrul al II-lea</quarter>
- <quarter type="3">trimestrul al III-lea</quarter>
- <quarter type="4">trimestrul al IV-lea</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <am>AM</am>
- <pm>PM</pm>
- <eras>
- <eraNames>
- <era type="0">înainte de Hristos</era>
- <era type="1">după Hristos</era>
- </eraNames>
- <eraAbbr>
- <era type="0">î.Hr.</era>
- <era type="1">d.Hr.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, d MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>dd.MM.yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>dd.MM.yyyy</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>HH:mm:ss zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>HH:mm:ss z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>HH:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>HH:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1}, {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d</dateFormatItem>
- <dateFormatItem id="EEEd">EEE d</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="M">L</dateFormatItem>
- <dateFormatItem id="Md">d.M</dateFormatItem>
- <dateFormatItem id="MEd">E, d MMM</dateFormatItem>
- <dateFormatItem id="MMdd">dd.MM</dateFormatItem>
- <dateFormatItem id="MMM">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d MMM</dateFormatItem>
- <dateFormatItem id="MMMEd">E, d MMM</dateFormatItem>
- <dateFormatItem id="MMMEEEd">EEE, d MMM</dateFormatItem>
- <dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
- <dateFormatItem id="MMMMEd">E, d MMMM</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">M.yyyy</dateFormatItem>
- <dateFormatItem id="yMEd">EEE, d/M/yyyy</dateFormatItem>
- <dateFormatItem id="yMMM">MMM y</dateFormatItem>
- <dateFormatItem id="yMMMEd">EEE, d MMM y</dateFormatItem>
- <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
- <dateFormatItem id="yQ">'trimestrul' Q y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
- <dateFormatItem id="yyMM">MM.yy</dateFormatItem>
- <dateFormatItem id="yyMMM">MMM yy</dateFormatItem>
- <dateFormatItem id="yyQ">Q yy</dateFormatItem>
- <dateFormatItem id="yyyyMM">MM.yyyy</dateFormatItem>
- <dateFormatItem id="yyyyMMMM">MMMM y</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d-d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">HH-HH</greatestDifference>
- <greatestDifference id="h">HH-HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">HH:mm-HH:mm</greatestDifference>
- <greatestDifference id="h">HH:mm-HH:mm</greatestDifference>
- <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">HH:mm-HH:mm v</greatestDifference>
- <greatestDifference id="h">HH:mm-HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a">HH-HH v</greatestDifference>
- <greatestDifference id="h">HH-HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M-M</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">dd.MM - dd.MM</greatestDifference>
- <greatestDifference id="M">dd.MM - dd.MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E, dd.MM - E, dd.MM</greatestDifference>
- <greatestDifference id="M">E, dd.MM - E, dd.MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM-MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d-d MMM</greatestDifference>
- <greatestDifference id="M">d MMM - d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E, d MMM - E, d MMM</greatestDifference>
- <greatestDifference id="M">E, d MMM - E, d MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMM">
- <greatestDifference id="M">LLLL-LLLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y-y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">MM.yyyy - MM.yyyy</greatestDifference>
- <greatestDifference id="y">MM.yyyy - MM.yyyy</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">dd.MM.yyyy - dd.MM.yyyy</greatestDifference>
- <greatestDifference id="M">dd.MM.yyyy - dd.MM.yyyy</greatestDifference>
- <greatestDifference id="y">dd.MM.yyyy - dd.MM.yyyy</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E, dd.MM.yyyy - E, dd.MM.yyyy</greatestDifference>
- <greatestDifference id="M">E, dd.MM.yyyy - E, dd.MM.yyyy</greatestDifference>
- <greatestDifference id="y">E, dd.MM.yyyy - E, dd.MM.yyyy</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">MMM-MMM y</greatestDifference>
- <greatestDifference id="y">MMM y - MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d-d MMM y</greatestDifference>
- <greatestDifference id="M">d MMM - d MMM y</greatestDifference>
- <greatestDifference id="y">d MMM y - d MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E, d MMM - E, d MMM y</greatestDifference>
- <greatestDifference id="M">E, d MMM - E, d MMM y</greatestDifference>
- <greatestDifference id="y">E, d MMM y - E, d MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">MMMM-MMMM y</greatestDifference>
- <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- <fields>
- <field type="era">
- <displayName>eră</displayName>
- </field>
- <field type="year">
- <displayName>an</displayName>
- </field>
- <field type="month">
- <displayName>lună</displayName>
- </field>
- <field type="week">
- <displayName>săptămână</displayName>
- </field>
- <field type="day">
- <displayName>zi</displayName>
- <relative type="-3">răsalaltăieri</relative>
- <relative type="-2">alaltăieri</relative>
- <relative type="-1">ieri</relative>
- <relative type="0">azi</relative>
- <relative type="1">mâine</relative>
- <relative type="2">poimâine</relative>
- <relative type="3">răspoimâine</relative>
- </field>
- <field type="weekday">
- <displayName>zi a săptămânii</displayName>
- </field>
- <field type="dayperiod">
- <displayName>perioada zilei</displayName>
- </field>
- <field type="hour">
- <displayName>oră</displayName>
- </field>
- <field type="minute">
- <displayName>minut</displayName>
- </field>
- <field type="second">
- <displayName>secundă</displayName>
- </field>
- <field type="zone">
- <displayName>zonă</displayName>
- </field>
- </fields>
- </calendar>
- </calendars>
- <timeZoneNames>
- <hourFormat>+HH:mm;−HH:mm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <regionFormat>{0}</regionFormat>
- <fallbackFormat>{1} ({0})</fallbackFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>Necunoscut</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>Tirana</exemplarCity>
- </zone>
- <zone type="Asia/Yerevan">
- <exemplarCity>Erevan</exemplarCity>
- </zone>
- <zone type="Antarctica/South_Pole">
- <exemplarCity>Polul Sud</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity>Dumont D'Urville</exemplarCity>
- </zone>
- <zone type="Europe/Vienna">
- <exemplarCity>Viena</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>Bruxelles</exemplarCity>
- </zone>
- <zone type="Pacific/Easter">
- <exemplarCity>Insula Paștelui</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity>Capul Verde</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>Copenhaga</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity>Alger</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>Insulele Canare</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>Addis Abeba</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <exemplarCity>Londra</exemplarCity>
- </zone>
- <zone type="America/Guadeloupe">
- <exemplarCity>Guadalupe</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>Atena</exemplarCity>
- </zone>
- <zone type="Atlantic/South_Georgia">
- <exemplarCity>Georgia de Sud</exemplarCity>
- </zone>
- <zone type="Europe/Budapest">
- <exemplarCity>Budapesta</exemplarCity>
- </zone>
- <zone type="Asia/Jerusalem">
- <exemplarCity>Ierusalim</exemplarCity>
- </zone>
- <zone type="Asia/Baghdad">
- <exemplarCity>Bagdad</exemplarCity>
- </zone>
- <zone type="Asia/Tehran">
- <exemplarCity>Teheran</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>Roma</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>St. Kitts</exemplarCity>
- </zone>
- <zone type="Asia/Seoul">
- <exemplarCity>Seul</exemplarCity>
- </zone>
- <zone type="Asia/Kuwait">
- <exemplarCity>Kuweit</exemplarCity>
- </zone>
- <zone type="Asia/Qyzylorda">
- <exemplarCity>Kyzylorda</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>St. Lucia</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>Luxemburg</exemplarCity>
- </zone>
- <zone type="Europe/Chisinau">
- <exemplarCity>Chișinău</exemplarCity>
- </zone>
- <zone type="Asia/Ulaanbaatar">
- <exemplarCity>Ulan Bator</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity>Martinica</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>Maldive</exemplarCity>
- </zone>
- <zone type="Pacific/Marquesas">
- <exemplarCity>Marchize</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>Varșovia</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>Azore</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>Lisabona</exemplarCity>
- </zone>
- <zone type="Asia/Qatar">
- <exemplarCity>Quatar</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>București</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>Moscova</exemplarCity>
- </zone>
- <zone type="Asia/Yekaterinburg">
- <exemplarCity>Ekaterinburg</exemplarCity>
- </zone>
- <zone type="Asia/Krasnoyarsk">
- <exemplarCity>Krasnoiarsk</exemplarCity>
- </zone>
- <zone type="Asia/Irkutsk">
- <exemplarCity>Irkuțk</exemplarCity>
- </zone>
- <zone type="Asia/Yakutsk">
- <exemplarCity>Yakuțk</exemplarCity>
- </zone>
- <zone type="Asia/Sakhalin">
- <exemplarCity>Sahalin</exemplarCity>
- </zone>
- <zone type="Asia/Kamchatka">
- <exemplarCity>Kamciatka</exemplarCity>
- </zone>
- <zone type="Asia/Riyadh">
- <exemplarCity>Riyad</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>Sf. Elena</exemplarCity>
- </zone>
- <zone type="America/El_Salvador">
- <exemplarCity>Salvador</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>Damasc</exemplarCity>
- </zone>
- <zone type="Europe/Zaporozhye">
- <exemplarCity>Zaporoje</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/New_Salem">
- <exemplarCity>New Salem, Dakota de Nord</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Center">
- <exemplarCity>Centru, Dakota de Nord</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>Saint Vincent și Grenadines</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>St. Thomas</exemplarCity>
- </zone>
- <metazone type="Acre">
- <long>
- <standard>Ora Acre</standard>
- <daylight>Ora de vară Acre</daylight>
- </long>
- </metazone>
- <metazone type="Africa_Central">
- <long>
- <standard>Ora Africii Centrale</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>Ora Africii Orientale</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <generic>Ora Africii Meridionale</generic>
- <standard>Ora Standard a Africii Meridionale</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <standard>Ora Africii Occidentale</standard>
- <daylight>Ora de vară a Africii Occidentale</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>Ora zonei Alaska</generic>
- <standard>Ora standard în zona Alaska</standard>
- <daylight>Ora de vară în zona Alaska</daylight>
- </long>
- </metazone>
- <metazone type="Alaska_Hawaii">
- <long>
- <generic>Ora zonei Alaska-Hawaii</generic>
- <standard>Ora standard în zona Alaska-Hawaii</standard>
- <daylight>Ora de vară în zona Alaska-Hawaii</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <standard>Ora Amazon</standard>
- <daylight>Ora de vară Amazon</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic>Ora Centrală</generic>
- <standard>Ora standard centrală</standard>
- <daylight>Ora de vară centrală</daylight>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic>Ora orientală</generic>
- <standard>Ora standard orientală</standard>
- <daylight>Ora de vară orientală</daylight>
- </long>
- </metazone>
- <metazone type="America_Mountain">
- <long>
- <generic>Ora zonei montane</generic>
- <standard>Ora standard în zona montană</standard>
- <daylight>Ora de vară în zona montană</daylight>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic>Ora zonei Pacific</generic>
- <standard>Ora standard în zona Pacific</standard>
- <daylight>Ora de vară în zona Pacific</daylight>
- </long>
- </metazone>
- <metazone type="Argentina">
- <long>
- <standard>Ora Argentinei</standard>
- <daylight>Ora de vară a Argentinei</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <standard>Ora Argentinei Occidentale</standard>
- </long>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>Ora zonei Atlantic</generic>
- <standard>Ora standard în zona Atlantic</standard>
- <daylight>Ora de vară în zona Atlantic</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Central">
- <long>
- <generic>Ora Australiei Centrale</generic>
- <daylight>Ora de vară a Australiei Centrale</daylight>
- </long>
- </metazone>
- <metazone type="Australia_CentralWestern">
- <long>
- <generic>Ora Australiei Central Occidentale</generic>
- <standard>Ora standard a Australiei Central Occidentale</standard>
- <daylight>Ora de vară a Australiei Central Occidentale</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Eastern">
- <long>
- <generic>Ora Australiei Orientale</generic>
- <standard>Ora standard a Australiei Orientale</standard>
- <daylight>Ora de vară a Australiei Orientale</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Western">
- <long>
- <generic>Ora Australiei Occidentale</generic>
- <daylight>Ora de vară a Australiei Occidentale</daylight>
- </long>
- </metazone>
- <metazone type="Bering">
- <long>
- <generic>Ora Bering</generic>
- <standard>Ora standard Bering</standard>
- <daylight>Ora de vară Bering</daylight>
- </long>
- </metazone>
- <metazone type="Bolivia">
- <long>
- <standard>Ora Boliviei</standard>
- </long>
- </metazone>
- <metazone type="Davis">
- <long>
- <standard>Ora Davis</standard>
- </long>
- </metazone>
- <metazone type="DumontDUrville">
- <long>
- <standard>Ora Dumont-d'Urville</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <standard>Ora Europei Centrale</standard>
- <daylight>Ora de vară a Europei Centrale</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <standard>Ora Europei de Est</standard>
- <daylight>Ora de vară a Europei de Est</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <standard>Ora Europei Occidentale</standard>
- <daylight>Ora de vară a Europei Occidentale</daylight>
- </long>
- <short>
- <standard>WET</standard>
- <daylight>WEST</daylight>
- </short>
- </metazone>
- <metazone type="GMT">
- <long>
- <standard>Greenwich Mean Time</standard>
- </long>
- <short>
- <standard>GMT</standard>
- </short>
- <commonlyUsed>true</commonlyUsed>
- </metazone>
- <metazone type="Lord_Howe">
- <long>
- <generic>Ora Lord Howe</generic>
- <standard>Ora standard Lord Howe</standard>
- <daylight>Ora de vară Lord Howe</daylight>
- </long>
- </metazone>
- <metazone type="Mawson">
- <long>
- <standard>Ora Mawson</standard>
- </long>
- </metazone>
- <metazone type="Rothera">
- <long>
- <standard>Ora Rothera</standard>
- </long>
- </metazone>
- <metazone type="Syowa">
- <long>
- <standard>Ora Syowa</standard>
- </long>
- </metazone>
- <metazone type="Vostok">
- <long>
- <standard>Ora Vostok</standard>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <symbols>
- <decimal>,</decimal>
- <group>.</group>
- <list>;</list>
- <percentSign>%</percentSign>
- <nativeZeroDigit>0</nativeZeroDigit>
- <patternDigit>#</patternDigit>
- <plusSign>+</plusSign>
- <minusSign>-</minusSign>
- <exponential>E</exponential>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>NaN</nan>
- </symbols>
- <decimalFormats>
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats>
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats>
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0%</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats>
- <currencyFormatLength>
- <currencyFormat>
- <pattern>#,##0.00 ¤</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="few">{0} {1}</unitPattern>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="ADP">
- <displayName>pesetă andorrană</displayName>
- <displayName count="few">pesete andorrane</displayName>
- <displayName count="other">pesete andorrane</displayName>
- </currency>
- <currency type="AED">
- <displayName>dirham Emiratele Arabe Unite</displayName>
- <displayName count="few">dirhami Emiratele Arabe Unite</displayName>
- <displayName count="other">dirhami Emiratele Arabe Unite</displayName>
- </currency>
- <currency type="ALL">
- <displayName>leka albanez</displayName>
- <displayName count="few">leka albanezi</displayName>
- <displayName count="one">leka albanez</displayName>
- <displayName count="other">leka albanezi</displayName>
- </currency>
- <currency type="AMD">
- <displayName>dram armenesc</displayName>
- <displayName count="few">drami armenești</displayName>
- <displayName count="one">dram armenesc</displayName>
- <displayName count="other">drami armenești</displayName>
- </currency>
- <currency type="ANG">
- <displayName>gulden Antilele Olandeze</displayName>
- <displayName count="few">guldeni Antilele Olandeze</displayName>
- <displayName count="other">guldeni Antilele Olandeze</displayName>
- </currency>
- <currency type="ARP">
- <displayName>peso argentinian (1983–1985)</displayName>
- <displayName count="few">pesos argentinieni (ARP)</displayName>
- <displayName count="one">peso argentinian (ARP)</displayName>
- <displayName count="other">pesos argentinieni (ARP)</displayName>
- </currency>
- <currency type="ARS">
- <displayName>peso argentinian</displayName>
- <displayName count="few">pesos argentinieni</displayName>
- <displayName count="other">pesos argentinieni</displayName>
- </currency>
- <currency type="ATS">
- <displayName>șiling austriac</displayName>
- <displayName count="few">șilingi austrieci</displayName>
- <displayName count="other">șilingi austrieci</displayName>
- </currency>
- <currency type="AUD">
- <displayName>dolar australian</displayName>
- <displayName count="few">dolari australieni</displayName>
- <displayName count="other">dolari australieni</displayName>
- </currency>
- <currency type="AZN">
- <displayName>manat Azerbaidjan</displayName>
- <displayName count="few">manați Azerbaidjan</displayName>
- <displayName count="other">manați Azerbaidjan</displayName>
- </currency>
- <currency type="BAD">
- <displayName>dinar Bosnia-Herțegovina</displayName>
- <displayName count="few">dinari Bosnia-Herțegovina</displayName>
- <displayName count="other">dinari Bosnia-Herțegovina</displayName>
- </currency>
- <currency type="BAM">
- <displayName>marcă convertibilă bosniacă</displayName>
- <displayName count="few">mărci convertibile bosniace</displayName>
- <displayName count="other">mărci convertibile bosniace</displayName>
- </currency>
- <currency type="BBD">
- <displayName>dolar Barbados</displayName>
- <displayName count="few">dolari Barbados</displayName>
- <displayName count="other">dolari Barbados</displayName>
- </currency>
- <currency type="BDT">
- <displayName>taka Bangladeș</displayName>
- </currency>
- <currency type="BEC">
- <displayName>franc belgian (convertibil)</displayName>
- <displayName count="few">franci belgieni (convertibili)</displayName>
- <displayName count="other">franci belgieni (convertibili)</displayName>
- </currency>
- <currency type="BEF">
- <displayName>franc belgian</displayName>
- <displayName count="few">franci belgieni</displayName>
- <displayName count="other">franci belgieni</displayName>
- </currency>
- <currency type="BEL">
- <displayName>franc belgian (financiar)</displayName>
- <displayName count="few">franci belgieni (financiari)</displayName>
- <displayName count="other">franci belgieni (financiari)</displayName>
- </currency>
- <currency type="BGN">
- <displayName>leva bulgărească nouă</displayName>
- <displayName count="few">leva bulgărești noi</displayName>
- <displayName count="other">leva bulgărești noi</displayName>
- </currency>
- <currency type="BIF">
- <displayName>franc Burundi</displayName>
- <displayName count="few">franci Burundi</displayName>
- <displayName count="other">franci Burundi</displayName>
- </currency>
- <currency type="BMD">
- <displayName>dolar Bermude</displayName>
- <displayName count="few">dolari Bermude</displayName>
- <displayName count="other">dolari Bermude</displayName>
- </currency>
- <currency type="BND">
- <displayName>dolar Brunei</displayName>
- <displayName count="few">dolari Brunei</displayName>
- <displayName count="other">dolari Brunei</displayName>
- </currency>
- <currency type="BOB">
- <displayName>bolivian bolivian</displayName>
- <displayName count="few">bolivieni bolivieni</displayName>
- <displayName count="other">bolivieni bolivieni</displayName>
- </currency>
- <currency type="BOP">
- <displayName>peso bolivian</displayName>
- <displayName count="few">pesos bolivieni</displayName>
- <displayName count="other">pesos bolivieni</displayName>
- </currency>
- <currency type="BOV">
- <displayName>mvdol bolivian</displayName>
- </currency>
- <currency type="BRE">
- <displayName>cruzeiro brazilian (1990–1993)</displayName>
- </currency>
- <currency type="BRL">
- <displayName>real brazilian</displayName>
- <displayName count="few">reali brazilieni</displayName>
- <displayName count="other">reali brazilieni</displayName>
- </currency>
- <currency type="BRR">
- <displayName>cruzeiro brazilian</displayName>
- </currency>
- <currency type="BSD">
- <displayName>dolar Bahamas</displayName>
- <displayName count="few">dolari Bahamas</displayName>
- <displayName count="other">dolari Bahamas</displayName>
- </currency>
- <currency type="BTN">
- <displayName>ngultrum Bhutan</displayName>
- </currency>
- <currency type="BUK">
- <displayName>kyat birman</displayName>
- </currency>
- <currency type="BYR">
- <displayName>rublă bielorusă</displayName>
- <displayName count="few">ruble bieloruse</displayName>
- <displayName count="other">ruble bieloruse</displayName>
- </currency>
- <currency type="BZD">
- <displayName>dolar Belize</displayName>
- <displayName count="few">dolari Belize</displayName>
- <displayName count="other">dolari Belize</displayName>
- </currency>
- <currency type="CAD">
- <displayName>dolar canadian</displayName>
- <displayName count="few">dolari canadieni</displayName>
- <displayName count="other">dolari canadieni</displayName>
- </currency>
- <currency type="CDF">
- <displayName>franc congolez</displayName>
- <displayName count="few">franci congolezi</displayName>
- <displayName count="other">franci congolezi</displayName>
- </currency>
- <currency type="CHF">
- <displayName>franc elvețian</displayName>
- <displayName count="few">franci elvețieni</displayName>
- <displayName count="other">franci elvețieni</displayName>
- </currency>
- <currency type="CLP">
- <displayName>peso chilian</displayName>
- <displayName count="few">pesos chilieni</displayName>
- <displayName count="other">pesos chilieni</displayName>
- </currency>
- <currency type="CNY">
- <displayName>yuan renminbi chinezesc</displayName>
- <displayName count="few">yuani renminbi chinezești</displayName>
- <displayName count="other">yuani renminbi chinezești</displayName>
- </currency>
- <currency type="COP">
- <displayName>peso columbian</displayName>
- <displayName count="few">pesos columbieni</displayName>
- <displayName count="other">pesos columbieni</displayName>
- </currency>
- <currency type="CRC">
- <displayName>colon costarican</displayName>
- <displayName count="few">coloni costaricani</displayName>
- <displayName count="other">coloni costaricani</displayName>
- </currency>
- <currency type="CSD">
- <displayName>dinar vechi Serbia și Muntenegru</displayName>
- <displayName count="few">dinari vechi Serbia și Muntenegru</displayName>
- <displayName count="other">dinari vechi Serbia și Muntenegru</displayName>
- </currency>
- <currency type="CUP">
- <displayName>peso cubanez</displayName>
- <displayName count="few">pesos cubanezi</displayName>
- <displayName count="other">pesos cubanezi</displayName>
- </currency>
- <currency type="CVE">
- <displayName>escudo Capul Verde</displayName>
- <displayName count="few">escudo Capul Verde</displayName>
- <displayName count="one">escudo Capul Verde</displayName>
- <displayName count="other">escudo Capul Verde</displayName>
- </currency>
- <currency type="CYP">
- <displayName>liră cipriotă</displayName>
- <displayName count="few">lire cipriote</displayName>
- <displayName count="other">lire cipriote</displayName>
- </currency>
- <currency type="CZK">
- <displayName>coroană cehă</displayName>
- <displayName count="few">coroane cehe</displayName>
- <displayName count="other">coroane cehe</displayName>
- </currency>
- <currency type="DDM">
- <displayName>marcă est-germană</displayName>
- <displayName count="few">mărci est-germane</displayName>
- <displayName count="other">mărci est-germane</displayName>
- </currency>
- <currency type="DEM">
- <displayName>marcă germană</displayName>
- <displayName count="few">mărci germane</displayName>
- <displayName count="other">mărci germane</displayName>
- </currency>
- <currency type="DJF">
- <displayName>franc Djibouti</displayName>
- <displayName count="few">franci Djibouti</displayName>
- <displayName count="other">franci Djibouti</displayName>
- </currency>
- <currency type="DKK">
- <displayName>coroană daneză</displayName>
- <displayName count="few">coroane daneze</displayName>
- <displayName count="other">coroane daneze</displayName>
- </currency>
- <currency type="DOP">
- <displayName>peso dominican</displayName>
- <displayName count="few">pesos dominicani</displayName>
- <displayName count="other">pesos dominicani</displayName>
- </currency>
- <currency type="DZD">
- <displayName>dinar algerian</displayName>
- <displayName count="few">dinari algerieni</displayName>
- <displayName count="other">dinari algerieni</displayName>
- </currency>
- <currency type="ECS">
- <displayName>sucre Ecuador</displayName>
- </currency>
- <currency type="EEK">
- <displayName>coroană estoniană</displayName>
- <displayName count="few">coroane estoniene</displayName>
- <displayName count="other">coroane estoniene</displayName>
- </currency>
- <currency type="EGP">
- <displayName>liră egipteană</displayName>
- <displayName count="few">lire egiptene</displayName>
- <displayName count="other">lire egiptene</displayName>
- </currency>
- <currency type="ESA">
- <displayName>peseta spaniolă (cont A)</displayName>
- </currency>
- <currency type="ESB">
- <displayName>peseta spaniolă (cont convertibil)</displayName>
- </currency>
- <currency type="ESP">
- <displayName>pesetă spaniolă</displayName>
- <displayName count="few">pesete spaniole</displayName>
- <displayName count="other">pesete spaniole</displayName>
- </currency>
- <currency type="ETB">
- <displayName>birr Etiopia</displayName>
- <displayName count="few">birr Etiopia</displayName>
- <displayName count="one">birr Etiopia</displayName>
- <displayName count="other">birr Etiopia</displayName>
- </currency>
- <currency type="EUR">
- <displayName>euro</displayName>
- </currency>
- <currency type="FIM">
- <displayName>marcă finlandeză</displayName>
- <displayName count="few">mărci finlandeze</displayName>
- <displayName count="one">mărci finlandeze</displayName>
- <displayName count="other">mărci finlandeze</displayName>
- </currency>
- <currency type="FJD">
- <displayName>dolar Fiji</displayName>
- <displayName count="few">dolari Fiji</displayName>
- <displayName count="other">dolari Fiji</displayName>
- </currency>
- <currency type="FKP">
- <displayName>liră Insulele Falkland</displayName>
- <displayName count="few">lire Insulele Falkland</displayName>
- <displayName count="other">lire Insulele Falkland</displayName>
- </currency>
- <currency type="FRF">
- <displayName>franc francez</displayName>
- <displayName count="few">franci francezi</displayName>
- <displayName count="other">franci francezi</displayName>
- </currency>
- <currency type="GBP">
- <displayName>liră sterlină</displayName>
- <displayName count="few">lire sterline</displayName>
- <displayName count="other">lire sterline</displayName>
- </currency>
- <currency type="GEL">
- <displayName>lari Georgia</displayName>
- <displayName count="few">lari Georgia</displayName>
- <displayName count="one">lari Georgia</displayName>
- <displayName count="other">lari Georgia</displayName>
- </currency>
- <currency type="GHC">
- <displayName>cedi Ghana</displayName>
- </currency>
- <currency type="GIP">
- <displayName>liră Gibraltar</displayName>
- <displayName count="few">lire Gibraltar</displayName>
- <displayName count="other">lire Gibraltar</displayName>
- </currency>
- <currency type="GMD">
- <displayName>dalasi Gambia</displayName>
- </currency>
- <currency type="GNF">
- <displayName>franc Guineea</displayName>
- <displayName count="few">franci Guineea</displayName>
- <displayName count="other">franci Guineea</displayName>
- </currency>
- <currency type="GRD">
- <displayName>drahmă grecească</displayName>
- <displayName count="few">drahme grecești</displayName>
- <displayName count="other">drahme grecești</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>quetzal Guatemala</displayName>
- </currency>
- <currency type="GWP">
- <displayName>peso Guineea-Bissau</displayName>
- <displayName count="few">pesos Guineea-Bissau</displayName>
- <displayName count="other">pesos Guineea-Bissau</displayName>
- </currency>
- <currency type="GYD">
- <displayName>dolar Guyana</displayName>
- <displayName count="few">dolari Guyana</displayName>
- <displayName count="other">dolari Guyana</displayName>
- </currency>
- <currency type="HKD">
- <displayName>dolar Hong Kong</displayName>
- <displayName count="few">dolari Hong Kong</displayName>
- <displayName count="other">dolari Hong Kong</displayName>
- </currency>
- <currency type="HNL">
- <displayName>lempira Honduras</displayName>
- </currency>
- <currency type="HRD">
- <displayName>dinar croat</displayName>
- <displayName count="few">dinari croați</displayName>
- <displayName count="other">dinari croați</displayName>
- </currency>
- <currency type="HRK">
- <displayName>kuna croată</displayName>
- <displayName count="few">kune croate</displayName>
- <displayName count="other">kune croate</displayName>
- </currency>
- <currency type="HTG">
- <displayName>gourde Haiti</displayName>
- </currency>
- <currency type="HUF">
- <displayName>forint maghiar</displayName>
- <displayName count="few">forinți maghiari</displayName>
- <displayName count="other">forinți maghiari</displayName>
- </currency>
- <currency type="IDR">
- <displayName>rupie indoneziană</displayName>
- <displayName count="few">rupii indoneziene</displayName>
- <displayName count="other">rupii indoneziene</displayName>
- </currency>
- <currency type="IEP">
- <displayName>liră irlandeză</displayName>
- <displayName count="few">lire irlandeze</displayName>
- <displayName count="other">lire irlandeze</displayName>
- </currency>
- <currency type="ILP">
- <displayName>liră israeliană</displayName>
- <displayName count="few">lire israeliene</displayName>
- <displayName count="other">lire israeliene</displayName>
- </currency>
- <currency type="ILS">
- <displayName>șechel israelian nou</displayName>
- <displayName count="few">șecheli israelieni noi</displayName>
- <displayName count="other">șecheli israelieni noi</displayName>
- </currency>
- <currency type="INR">
- <displayName>rupie indiană</displayName>
- <displayName count="few">rupii indiene</displayName>
- <displayName count="other">rupii indiene</displayName>
- </currency>
- <currency type="IQD">
- <displayName>dinar irakian</displayName>
- <displayName count="few">dinari irakieni</displayName>
- <displayName count="other">dinari irakieni</displayName>
- </currency>
- <currency type="IRR">
- <displayName>rial iranian</displayName>
- <displayName count="few">riali iranieni</displayName>
- <displayName count="other">riali iranieni</displayName>
- </currency>
- <currency type="ISK">
- <displayName>coroană islandeză</displayName>
- <displayName count="few">coroane islandeze</displayName>
- <displayName count="other">coroane islandeze</displayName>
- </currency>
- <currency type="ITL">
- <displayName>liră italiană</displayName>
- <displayName count="few">lire italiene</displayName>
- <displayName count="other">lire italiene</displayName>
- </currency>
- <currency type="JMD">
- <displayName>dolar jamaican</displayName>
- <displayName count="few">dolari jamaicani</displayName>
- <displayName count="other">dolari jamaicani</displayName>
- </currency>
- <currency type="JOD">
- <displayName>dinar iordanian</displayName>
- <displayName count="few">dinari iordanieni</displayName>
- <displayName count="other">dinari iordanieni</displayName>
- </currency>
- <currency type="JPY">
- <displayName>yen japonez</displayName>
- <displayName count="few">yeni japonezi</displayName>
- <displayName count="other">yeni japonezi</displayName>
- </currency>
- <currency type="KES">
- <displayName>șiling kenyan</displayName>
- <displayName count="few">șilingi kenyeni</displayName>
- <displayName count="other">șilingi kenyeni</displayName>
- </currency>
- <currency type="KGS">
- <displayName>som Kirghizstan</displayName>
- </currency>
- <currency type="KHR">
- <displayName>riel cambodgian</displayName>
- <displayName count="few">rieli cambodgieni</displayName>
- <displayName count="other">rieli cambodgieni</displayName>
- </currency>
- <currency type="KMF">
- <displayName>franc comorian</displayName>
- <displayName count="few">franci comorieni</displayName>
- <displayName count="other">franci comorieni</displayName>
- </currency>
- <currency type="KPW">
- <displayName>won nord-coreean</displayName>
- <displayName count="few">woni nord-coreeni</displayName>
- <displayName count="other">woni nord-coreeni</displayName>
- </currency>
- <currency type="KRW">
- <displayName>won sud-coreean</displayName>
- <displayName count="few">woni sud-coreeni</displayName>
- <displayName count="other">woni sud-coreeni</displayName>
- </currency>
- <currency type="KWD">
- <displayName>dinar kuweitian</displayName>
- <displayName count="few">dinari kuweitieni</displayName>
- <displayName count="other">dinari kuweitieni</displayName>
- </currency>
- <currency type="KYD">
- <displayName>dolar Insulele Cayman</displayName>
- <displayName count="few">dolari Insulele Cayman</displayName>
- <displayName count="other">dolari Insulele Cayman</displayName>
- </currency>
- <currency type="LAK">
- <displayName>kip Laos</displayName>
- </currency>
- <currency type="LBP">
- <displayName>liră libaneză</displayName>
- <displayName count="few">lire libaneze</displayName>
- <displayName count="other">lire libaneze</displayName>
- </currency>
- <currency type="LKR">
- <displayName>rupie Sri Lanka</displayName>
- <displayName count="few">rupii Sri Lanka</displayName>
- <displayName count="other">rupii Sri Lanka</displayName>
- </currency>
- <currency type="LRD">
- <displayName>dolar liberian</displayName>
- <displayName count="few">dolari liberieni</displayName>
- <displayName count="other">dolari liberieni</displayName>
- </currency>
- <currency type="LTL">
- <displayName>litu lituanian</displayName>
- <displayName count="few">lite lituaniene</displayName>
- <displayName count="other">lite lituaniene</displayName>
- </currency>
- <currency type="LUC">
- <displayName>franc convertibil luxemburghez</displayName>
- <displayName count="few">franci convertibili luxemburghezi</displayName>
- <displayName count="other">franci convertibili luxemburghezi</displayName>
- </currency>
- <currency type="LUF">
- <displayName>franc luxemburghez</displayName>
- <displayName count="few">franci luxemburghezi</displayName>
- <displayName count="other">franci luxemburghezi</displayName>
- </currency>
- <currency type="LUL">
- <displayName>franc financiar luxemburghez</displayName>
- <displayName count="few">franci financiari luxemburghezi</displayName>
- <displayName count="other">franci financiari luxemburghezi</displayName>
- </currency>
- <currency type="LVL">
- <displayName>lats Letonia</displayName>
- </currency>
- <currency type="LVR">
- <displayName>rublă Letonia</displayName>
- <displayName count="few">ruble Letonia</displayName>
- <displayName count="other">ruble Letonia</displayName>
- </currency>
- <currency type="LYD">
- <displayName>dinar libian</displayName>
- <displayName count="few">dinari libieni</displayName>
- <displayName count="other">dinari libieni</displayName>
- </currency>
- <currency type="MAD">
- <displayName>dirham marocan</displayName>
- <displayName count="few">dirhami marocani</displayName>
- <displayName count="other">dirhami marocani</displayName>
- </currency>
- <currency type="MAF">
- <displayName>franc marocan</displayName>
- <displayName count="few">franci marocani</displayName>
- <displayName count="other">franci marocani</displayName>
- </currency>
- <currency type="MDL">
- <displayName>leu moldovenesc</displayName>
- <displayName count="few">lei moldovenești</displayName>
- <displayName count="other">lei moldovenești</displayName>
- </currency>
- <currency type="MGF">
- <displayName>franc Madagascar</displayName>
- <displayName count="few">franci Madagascar</displayName>
- <displayName count="other">franci Madagascar</displayName>
- </currency>
- <currency type="MKD">
- <displayName>dinar macedonean</displayName>
- <displayName count="few">dinari macedoneni</displayName>
- <displayName count="other">dinari macedoneni</displayName>
- </currency>
- <currency type="MLF">
- <displayName>franc Mali</displayName>
- <displayName count="few">franci Mali</displayName>
- <displayName count="other">franci Mali</displayName>
- </currency>
- <currency type="MMK">
- <displayName>kyat Myanmar</displayName>
- </currency>
- <currency type="MNT">
- <displayName>tugrik mongol</displayName>
- </currency>
- <currency type="MTL">
- <displayName>liră malteză</displayName>
- <displayName count="few">lire malteze</displayName>
- <displayName count="other">lire malteze</displayName>
- </currency>
- <currency type="MXN">
- <displayName>peso mexican</displayName>
- <displayName count="few">pesos mexicani</displayName>
- <displayName count="other">pesos mexicani</displayName>
- </currency>
- <currency type="MXP">
- <displayName>peso mexican de argint (1861–1992)</displayName>
- <displayName count="few">pesos mexicani de argint (1861–1992</displayName>
- <displayName count="other">pesos mexicani de argint (1861–1992</displayName>
- </currency>
- <currency type="MYR">
- <displayName>ringgit malaiezian</displayName>
- </currency>
- <currency type="MZE">
- <displayName>escudo Mozambic</displayName>
- </currency>
- <currency type="MZM">
- <displayName>metical Mozambic vechi</displayName>
- </currency>
- <currency type="MZN">
- <displayName>metical Mozambic</displayName>
- </currency>
- <currency type="NAD">
- <displayName>dolar namibian</displayName>
- <displayName count="few">dolari namibieni</displayName>
- <displayName count="other">dolari namibieni</displayName>
- </currency>
- <currency type="NIC">
- <displayName>cordoba Nicaragua</displayName>
- </currency>
- <currency type="NLG">
- <displayName>gulden olandez</displayName>
- <displayName count="few">guldeni olandezi</displayName>
- <displayName count="other">guldeni olandezi</displayName>
- </currency>
- <currency type="NOK">
- <displayName>coroană norvegiană</displayName>
- <displayName count="few">coroane norvegiene</displayName>
- <displayName count="other">coroane norvegiene</displayName>
- </currency>
- <currency type="NPR">
- <displayName>rupie nepaleză</displayName>
- <displayName count="few">rupii nepaleze</displayName>
- <displayName count="other">rupii nepaleze</displayName>
- </currency>
- <currency type="NZD">
- <displayName>dolar neozeelandez</displayName>
- <displayName count="few">dolari neozeelandezi</displayName>
- <displayName count="other">dolari neozeelandezi</displayName>
- </currency>
- <currency type="OMR">
- <displayName>riyal Oman</displayName>
- <displayName count="few">riyali Oman</displayName>
- <displayName count="other">riyali Oman</displayName>
- </currency>
- <currency type="PAB">
- <displayName>balboa panameză</displayName>
- <displayName count="few">balboa panameze</displayName>
- <displayName count="other">balboa panameze</displayName>
- </currency>
- <currency type="PEI">
- <displayName>inti peruvian</displayName>
- </currency>
- <currency type="PEN">
- <displayName>sol nou peruvian</displayName>
- <displayName count="few">soli noi Peru</displayName>
- <displayName count="other">soli noi Peru</displayName>
- </currency>
- <currency type="PES">
- <displayName>sol peruvian</displayName>
- <displayName count="few">soli Peru</displayName>
- <displayName count="other">soli Peru</displayName>
- </currency>
- <currency type="PGK">
- <displayName>kina Papua-Noua Guinee</displayName>
- </currency>
- <currency type="PHP">
- <displayName>peso filipinez</displayName>
- <displayName count="few">pesos filipinezi</displayName>
- <displayName count="other">pesos filipinezi</displayName>
- </currency>
- <currency type="PKR">
- <displayName>rupie pakistaneză</displayName>
- <displayName count="few">rupii pakistaneze</displayName>
- <displayName count="other">rupii pakistaneze</displayName>
- </currency>
- <currency type="PLN">
- <displayName>zlot nou polonez</displayName>
- <displayName count="few">zloți noi polonezi</displayName>
- <displayName count="other">zloți noi polonezi</displayName>
- </currency>
- <currency type="PLZ">
- <displayName>zlot polonez (1950–1995)</displayName>
- <displayName count="few">zloți polonezi (1950–1995)</displayName>
- <displayName count="other">zloți polonezi (1950–1995)</displayName>
- </currency>
- <currency type="PYG">
- <displayName>guarani Paraguay</displayName>
- </currency>
- <currency type="QAR">
- <displayName>riyal Qatar</displayName>
- <displayName count="few">riyali Qatar</displayName>
- <displayName count="other">riyali Qatar</displayName>
- </currency>
- <currency type="RHD">
- <displayName>dolar rhodesian</displayName>
- <displayName count="few">dolari rhodesieni</displayName>
- <displayName count="other">dolari rhodesieni</displayName>
- </currency>
- <currency type="ROL">
- <displayName>leu vechi</displayName>
- <displayName count="few">lei vechi</displayName>
- <displayName count="other">lei vechi</displayName>
- </currency>
- <currency type="RON">
- <displayName>leu</displayName>
- <displayName count="few">lei</displayName>
- <displayName count="other">lei</displayName>
- </currency>
- <currency type="RSD">
- <displayName>dinar sârbesc</displayName>
- <displayName count="few">dinari sârbești</displayName>
- <displayName count="other">dinari sârbești</displayName>
- </currency>
- <currency type="RUB">
- <displayName>rublă rusească</displayName>
- <displayName count="few">ruble rusești</displayName>
- <displayName count="other">ruble rusești</displayName>
- </currency>
- <currency type="RWF">
- <displayName>franc Rwanda</displayName>
- <displayName count="few">franci Rwanda</displayName>
- <displayName count="other">franci Rwanda</displayName>
- </currency>
- <currency type="SAR">
- <displayName>riyal Arabia Saudită</displayName>
- <displayName count="few">riyali Arabia Saudită</displayName>
- <displayName count="other">riyali Arabia Saudită</displayName>
- </currency>
- <currency type="SBD">
- <displayName>dolar Insulele Solomon</displayName>
- <displayName count="few">dolari Insulele Solomon</displayName>
- <displayName count="other">dolari Insulele Solomon</displayName>
- </currency>
- <currency type="SCR">
- <displayName>rupie Seychelles</displayName>
- <displayName count="few">rupii Seychelles</displayName>
- <displayName count="other">rupii Seychelles</displayName>
- </currency>
- <currency type="SDD">
- <displayName>dinar sudanez</displayName>
- <displayName count="few">dinari sudanezi</displayName>
- <displayName count="other">dinari sudanezi</displayName>
- </currency>
- <currency type="SDP">
- <displayName>liră sudaneză</displayName>
- <displayName count="few">lire sudaneze</displayName>
- <displayName count="other">lire sudaneze</displayName>
- </currency>
- <currency type="SEK">
- <displayName>coroană suedeză</displayName>
- <displayName count="few">coroane suedeze</displayName>
- <displayName count="other">coroane suedeze</displayName>
- </currency>
- <currency type="SGD">
- <displayName>dolar Singapore</displayName>
- <displayName count="few">dolari Singapore</displayName>
- <displayName count="other">dolari Singapore</displayName>
- </currency>
- <currency type="SHP">
- <displayName>liră Insula Sf. Elena</displayName>
- <displayName count="few">lire Insula Sf. Elena</displayName>
- <displayName count="other">lire Insula Sf. Elena</displayName>
- </currency>
- <currency type="SIT">
- <displayName>tolar sloven</displayName>
- <displayName count="few">tolari sloveni</displayName>
- <displayName count="other">tolari sloveni</displayName>
- </currency>
- <currency type="SKK">
- <displayName>coroană slovacă</displayName>
- <displayName count="few">coroane slovace</displayName>
- <displayName count="other">coroane slovace</displayName>
- </currency>
- <currency type="SLL">
- <displayName>leu Sierra Leone</displayName>
- <displayName count="few">lei Sierra Leone</displayName>
- <displayName count="other">lei Sierra Leone</displayName>
- </currency>
- <currency type="SOS">
- <displayName>șiling somalez</displayName>
- <displayName count="few">șilingi somalezi</displayName>
- <displayName count="other">șilingi somalezi</displayName>
- </currency>
- <currency type="SRD">
- <displayName>dolar Surinam</displayName>
- <displayName count="few">dolari Surinam</displayName>
- <displayName count="other">dolari Surinam</displayName>
- </currency>
- <currency type="SRG">
- <displayName>gulden Surinam</displayName>
- <displayName count="few">guldeni Surinam</displayName>
- <displayName count="other">guldeni Surinam</displayName>
- </currency>
- <currency type="STD">
- <displayName>dobra Sao Tome și Principe</displayName>
- </currency>
- <currency type="SUR">
- <displayName>rublă sovietică</displayName>
- <displayName count="few">ruble sovietice</displayName>
- <displayName count="other">ruble sovietice</displayName>
- </currency>
- <currency type="SVC">
- <displayName>colon El Salvador</displayName>
- <displayName count="few">coloni El Salvador</displayName>
- <displayName count="other">coloni El Salvador</displayName>
- </currency>
- <currency type="SYP">
- <displayName>liră siriană</displayName>
- <displayName count="few">lire siriene</displayName>
- <displayName count="other">lire siriene</displayName>
- </currency>
- <currency type="THB">
- <displayName>baht thailandez</displayName>
- </currency>
- <currency type="TJR">
- <displayName>rublă Tadjikistan</displayName>
- <displayName count="few">ruble Tadjikistan</displayName>
- <displayName count="other">ruble Tadjikistan</displayName>
- </currency>
- <currency type="TND">
- <displayName>dinar tunisian</displayName>
- <displayName count="few">dinari tunisieni</displayName>
- <displayName count="other">dinari tunisieni</displayName>
- </currency>
- <currency type="TRL">
- <displayName>liră turcească</displayName>
- <displayName count="other">lire turcești</displayName>
- </currency>
- <currency type="TRY">
- <displayName>liră turcească nouă</displayName>
- <displayName count="other">lire turcești noi</displayName>
- </currency>
- <currency type="TTD">
- <displayName>dolar Trinidad-Tobago</displayName>
- <displayName count="few">dolari Trinidad-Tobago</displayName>
- <displayName count="other">dolari Trinidad-Tobago</displayName>
- </currency>
- <currency type="TWD">
- <displayName>dolar nou Taiwan</displayName>
- <displayName count="few">dolari noi Taiwan</displayName>
- <displayName count="other">dolari noi Taiwan</displayName>
- </currency>
- <currency type="TZS">
- <displayName>șiling tanzanian</displayName>
- <displayName count="few">șilingi tanzanieni</displayName>
- <displayName count="other">șilingi tanzanieni</displayName>
- </currency>
- <currency type="UAH">
- <displayName>hryvna ucraineană</displayName>
- <displayName count="few">hryvna ucrainiene</displayName>
- <displayName count="other">hryvna ucrainiene</displayName>
- </currency>
- <currency type="UAK">
- <displayName>carboavă ucraineană</displayName>
- <displayName count="few">carboave ucrainiene</displayName>
- <displayName count="other">carboave ucrainiene</displayName>
- </currency>
- <currency type="UGS">
- <displayName>șiling ugandez (1966–1987)</displayName>
- <displayName count="few">șilingi ugandezi (1966–1987)</displayName>
- <displayName count="other">șilingi ugandezi (1966–1987)</displayName>
- </currency>
- <currency type="UGX">
- <displayName>șiling ugandez</displayName>
- <displayName count="few">șilingi ugandezi</displayName>
- <displayName count="other">șilingi ugandezi</displayName>
- </currency>
- <currency type="USD">
- <displayName>dolar american</displayName>
- <displayName count="few">dolari americani</displayName>
- <displayName count="other">dolari americani</displayName>
- </currency>
- <currency type="USN">
- <displayName>dolar american (ziua următoare)</displayName>
- <displayName count="few">dolari americani (ziua următoare)</displayName>
- <displayName count="other">dolari americani (ziua următoare)</displayName>
- </currency>
- <currency type="USS">
- <displayName>dolar american (aceeași zi)</displayName>
- <displayName count="few">dolari americani (aceeași zi)</displayName>
- <displayName count="other">dolari americani (aceeași zi)</displayName>
- </currency>
- <currency type="UYP">
- <displayName>peso Uruguay (1975–1993)</displayName>
- <displayName count="few">pesos Uruguay (1975–1993)</displayName>
- <displayName count="other">pesos Uruguay (1975–1993)</displayName>
- </currency>
- <currency type="UYU">
- <displayName>peso nou Uruguay</displayName>
- <displayName count="few">pesos noi Uruguay</displayName>
- <displayName count="other">pesos noi Uruguay</displayName>
- </currency>
- <currency type="UZS">
- <displayName>sum Uzbekistan</displayName>
- </currency>
- <currency type="VEB">
- <displayName>bolivar Venezuela</displayName>
- <displayName count="few">bolivari Venezuela</displayName>
- <displayName count="other">bolivari Venezuela</displayName>
- </currency>
- <currency type="VND">
- <displayName>dong vietnamez</displayName>
- </currency>
- <currency type="XAF">
- <displayName>franc Comunitatea Financiară</displayName>
- <displayName count="few">franci Comunitatea Financiară</displayName>
- <displayName count="other">franci Comunitatea Financiară</displayName>
- </currency>
- <currency type="XAG">
- <displayName>argint</displayName>
- </currency>
- <currency type="XAU">
- <displayName>aur</displayName>
- </currency>
- <currency type="XBA">
- <displayName>unitate compusă europeană</displayName>
- </currency>
- <currency type="XBB">
- <displayName>unitate monetară europeană</displayName>
- </currency>
- <currency type="XBC">
- <displayName>unitate de cont europeană (XBC)</displayName>
- </currency>
- <currency type="XBD">
- <displayName>unitate de cont europeană (XBD)</displayName>
- </currency>
- <currency type="XCD">
- <displayName>dolar Caraibele de Est</displayName>
- <displayName count="few">dolari Caraibele de Est</displayName>
- <displayName count="other">dolari Caraibele de Est</displayName>
- </currency>
- <currency type="XDR">
- <displayName>drepturi speciale de tragere</displayName>
- </currency>
- <currency type="XEU">
- <displayName>unitate de monedă europeană</displayName>
- </currency>
- <currency type="XFO">
- <displayName>franc francez de aur</displayName>
- <displayName count="few">franci francezi de aur</displayName>
- <displayName count="other">franci francezi de aur</displayName>
- </currency>
- <currency type="XFU">
- <displayName>franc UIC francez</displayName>
- </currency>
- <currency type="XPD">
- <displayName>paladiu</displayName>
- </currency>
- <currency type="XPT">
- <displayName>platină</displayName>
- </currency>
- <currency type="XTS">
- <displayName>cod monetar de test</displayName>
- </currency>
- <currency type="XXX">
- <displayName>monedă necunoscută sau nevalidă</displayName>
- <displayName count="few">monede necunoscute sau nevalide</displayName>
- <displayName count="other">monede necunoscute sau nevalide</displayName>
- </currency>
- <currency type="YDD">
- <displayName>dinar Yemen</displayName>
- <displayName count="few">dinari Yemen</displayName>
- <displayName count="other">dinari Yemen</displayName>
- </currency>
- <currency type="YER">
- <displayName>riyal Yemen</displayName>
- <displayName count="few">riyali Yemen</displayName>
- <displayName count="other">riyali Yemen</displayName>
- </currency>
- <currency type="YUD">
- <displayName>dinar iugoslav greu</displayName>
- <displayName count="few">dinari iugoslavi grei</displayName>
- <displayName count="other">dinari iugoslavi grei</displayName>
- </currency>
- <currency type="YUM">
- <displayName>dinar iugoslav nou</displayName>
- <displayName count="few">dinari iugoslavi noi</displayName>
- <displayName count="other">dinari iugoslavi noi</displayName>
- </currency>
- <currency type="YUN">
- <displayName>dinar iugoslav convertibil</displayName>
- <displayName count="few">dinari iugoslavi convertibili</displayName>
- <displayName count="other">dinari iugoslavi convertibili</displayName>
- </currency>
- <currency type="ZAL">
- <displayName>rand sud-african (financiar)</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>rand sud-african</displayName>
- </currency>
- <currency type="ZRN">
- <displayName>zair nou</displayName>
- <displayName count="few">zairi noi</displayName>
- <displayName count="other">zairi noi</displayName>
- </currency>
- <currency type="ZWD">
- <displayName>dolar Zimbabwe</displayName>
- <displayName count="few">dolari Zimbabwe</displayName>
- <displayName count="other">dolari Zimbabwe</displayName>
- </currency>
- </currencies>
- </numbers>
- <units>
- <unit type="day">
- <unitPattern count="few">{0} zile</unitPattern>
- <unitPattern count="one">{0} zi</unitPattern>
- <unitPattern count="other">{0} de zile</unitPattern>
- </unit>
- <unit type="hour">
- <unitPattern count="few">{0} ore</unitPattern>
- <unitPattern count="one">{0} oră</unitPattern>
- <unitPattern count="other">{0} de ore</unitPattern>
- </unit>
- <unit type="minute">
- <unitPattern count="few">{0} minute</unitPattern>
- <unitPattern count="one">{0} minut</unitPattern>
- <unitPattern count="other">{0} de minute</unitPattern>
- </unit>
- <unit type="month">
- <unitPattern count="few">{0} luni</unitPattern>
- <unitPattern count="one">{0} lună</unitPattern>
- <unitPattern count="other">{0} de luni</unitPattern>
- </unit>
- <unit type="second">
- <unitPattern count="few">{0} secunde</unitPattern>
- <unitPattern count="one">{0} secundă</unitPattern>
- <unitPattern count="other">{0} de secunde</unitPattern>
- </unit>
- <unit type="week">
- <unitPattern count="few">{0} săptămâni</unitPattern>
- <unitPattern count="one">{0} săptămână</unitPattern>
- <unitPattern count="other">{0} de săptămâni</unitPattern>
- </unit>
- <unit type="year">
- <unitPattern count="few">{0} ani</unitPattern>
- <unitPattern count="one">{0} an</unitPattern>
- <unitPattern count="other">{0} de ani</unitPattern>
- </unit>
- </units>
- <posix>
- <messages>
- <yesstr>da:d</yesstr>
- <nostr>nu:n</nostr>
- </messages>
- </posix>
- </ldml>
|