2
0

ro.xml 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <ldml>
  3. <identity>
  4. <version number="$Revision: 1.116 $"/>
  5. <generation date="$Date: 2009/06/15 03:46:25 $"/>
  6. <language type="ro"/>
  7. </identity>
  8. <localeDisplayNames>
  9. <localeDisplayPattern>
  10. <localePattern>{0} ({1})</localePattern>
  11. <localeSeparator>, </localeSeparator>
  12. </localeDisplayPattern>
  13. <languages>
  14. <language type="ab">abhază</language>
  15. <language type="af">afrikaans</language>
  16. <language type="afa">limbă afro-asiatică</language>
  17. <language type="ain">ainu</language>
  18. <language type="akk">akkadiană</language>
  19. <language type="ale">aleută</language>
  20. <language type="alt">altaică meridională</language>
  21. <language type="am">amharică</language>
  22. <language type="an">aragoneză</language>
  23. <language type="ang">engleză veche</language>
  24. <language type="apa">limbă apașă</language>
  25. <language type="ar">arabă</language>
  26. <language type="arc">aramaică</language>
  27. <language type="art">limbă artificială</language>
  28. <language type="as">asameză</language>
  29. <language type="ast">asturiană</language>
  30. <language type="aus">limbă australiană</language>
  31. <language type="av">avară</language>
  32. <language type="ay">aymara</language>
  33. <language type="az">azeră</language>
  34. <language type="ba">bașkiră</language>
  35. <language type="bat">limbă baltică</language>
  36. <language type="be">bielorusă</language>
  37. <language type="ber">berberă</language>
  38. <language type="bg">bulgară</language>
  39. <language type="bh">bihari</language>
  40. <language type="bn">bengaleză</language>
  41. <language type="bnt">bantu</language>
  42. <language type="bo">tibetană</language>
  43. <language type="br">bretonă</language>
  44. <language type="bs">bosniacă</language>
  45. <language type="ca">catalană</language>
  46. <language type="cai">limbă central-amerindiană</language>
  47. <language type="cau">limbă caucaziană</language>
  48. <language type="ce">cecenă</language>
  49. <language type="cel">limbă celtică</language>
  50. <language type="co">corsicană</language>
  51. <language type="cop">coptă</language>
  52. <language type="cs">cehă</language>
  53. <language type="cu">slavonă</language>
  54. <language type="cv">ciuvașă</language>
  55. <language type="cy">velșă</language>
  56. <language type="da">daneză</language>
  57. <language type="de">germană</language>
  58. <language type="de_AT">germană austriacă</language>
  59. <language type="de_CH">germană standard elvețiană</language>
  60. <language type="dra">limbă dravidiană</language>
  61. <language type="egy">egipteană veche</language>
  62. <language type="el">greacă</language>
  63. <language type="elx">elamită</language>
  64. <language type="en">engleză</language>
  65. <language type="en_AU">engleză australiană</language>
  66. <language type="en_CA">engleză canadiană</language>
  67. <language type="en_GB">engleză britanică</language>
  68. <language type="en_US">engleză americană</language>
  69. <language type="eo">esperanto</language>
  70. <language type="es">spaniolă</language>
  71. <language type="es_419">spaniolă latino-americană</language>
  72. <language type="es_ES">spaniolă iberică</language>
  73. <language type="et">estoniană</language>
  74. <language type="eu">bască</language>
  75. <language type="fa">persană</language>
  76. <language type="fi">finlandeză</language>
  77. <language type="fil">filipineză</language>
  78. <language type="fiu">limbă fino-ugrică</language>
  79. <language type="fj">fijiană</language>
  80. <language type="fo">faroeză</language>
  81. <language type="fr">franceză</language>
  82. <language type="fr_CA">franceză canadiană</language>
  83. <language type="fr_CH">franceză elvețiană</language>
  84. <language type="fro">franceză veche</language>
  85. <language type="frs">frizonă orientală</language>
  86. <language type="fy">frizonă occidentală</language>
  87. <language type="ga">irlandeză</language>
  88. <language type="gd">gaelică scoțiană</language>
  89. <language type="gem">limbă germanică</language>
  90. <language type="gl">galiciană</language>
  91. <language type="gn">guarani</language>
  92. <language type="got">gotică</language>
  93. <language type="grc">greacă veche</language>
  94. <language type="gsw">germană elvețiană</language>
  95. <language type="gu">gujarati</language>
  96. <language type="haw">hawaiană</language>
  97. <language type="he">ebraică</language>
  98. <language type="hi">hindi</language>
  99. <language type="hit">hitită</language>
  100. <language type="hr">croată</language>
  101. <language type="ht">haitiană</language>
  102. <language type="hu">maghiară</language>
  103. <language type="hy">armeană</language>
  104. <language type="ia">interlingua</language>
  105. <language type="id">indoneziană</language>
  106. <language type="ie">interlingue</language>
  107. <language type="ik">inupiak</language>
  108. <language type="inc">limbă indiană</language>
  109. <language type="ine">limbă indo-europeană</language>
  110. <language type="ira">limbă iraniană</language>
  111. <language type="is">islandeză</language>
  112. <language type="it">italiană</language>
  113. <language type="ja">japoneză</language>
  114. <language type="jpr">iudeo-persană</language>
  115. <language type="jrb">iudeo-arabă</language>
  116. <language type="jv">javaneză</language>
  117. <language type="ka">georgiană</language>
  118. <language type="kg">congoleză</language>
  119. <language type="kk">kazahă</language>
  120. <language type="kl">kalaallisut</language>
  121. <language type="km">khmeră</language>
  122. <language type="kn">kannada</language>
  123. <language type="ko">coreeană</language>
  124. <language type="ks">cașmireză</language>
  125. <language type="ku">kurdă</language>
  126. <language type="ky">kîrgîză</language>
  127. <language type="la">latină</language>
  128. <language type="lb">luxemburgheză</language>
  129. <language type="ln">lingala</language>
  130. <language type="lo">laoțiană</language>
  131. <language type="lt">lituaniană</language>
  132. <language type="lv">letonă</language>
  133. <language type="map">austroneziană</language>
  134. <language type="mg">malgașă</language>
  135. <language type="mi">maori</language>
  136. <language type="mis">limbi diverse</language>
  137. <language type="mk">macedoneană</language>
  138. <language type="ml">malayalam</language>
  139. <language type="mn">mongolă</language>
  140. <language type="mnc">manciuriană</language>
  141. <language type="mo">moldovenească</language>
  142. <language type="mr">marathi</language>
  143. <language type="ms">malay</language>
  144. <language type="mt">malteză</language>
  145. <language type="mul">limbi multiple</language>
  146. <language type="mun">limbă munda</language>
  147. <language type="mwl">mirandeză</language>
  148. <language type="my">birmaneză</language>
  149. <language type="myn">limbă mayașă</language>
  150. <language type="nai">limbă nord-amerindiană</language>
  151. <language type="nap">napolitană</language>
  152. <language type="ne">nepaleză</language>
  153. <language type="nl">olandeză</language>
  154. <language type="nl_BE">flamandă</language>
  155. <language type="nn">norvegiană nynorsk</language>
  156. <language type="no">norvegiană</language>
  157. <language type="nub">limbă nubiană</language>
  158. <language type="nv">navajo</language>
  159. <language type="oc">occitană</language>
  160. <language type="om">oromo</language>
  161. <language type="or">oriya</language>
  162. <language type="ota">turcă otomană</language>
  163. <language type="oto">limbă otomi</language>
  164. <language type="pa">punjabi</language>
  165. <language type="paa">limbă papuașă</language>
  166. <language type="peo">persană veche</language>
  167. <language type="phi">limbă filipineză</language>
  168. <language type="phn">feniciană</language>
  169. <language type="pi">pali</language>
  170. <language type="pl">poloneză</language>
  171. <language type="pro">provensală veche</language>
  172. <language type="ps">pașto</language>
  173. <language type="pt">portugheză</language>
  174. <language type="pt_BR">portugheză braziliană</language>
  175. <language type="pt_PT">portugheză iberică</language>
  176. <language type="qu">quechua</language>
  177. <language type="rm">retoromană</language>
  178. <language type="ro">română</language>
  179. <language type="roa">limbă romanică</language>
  180. <language type="ru">rusă</language>
  181. <language type="rup">aromână</language>
  182. <language type="sa">sanscrită</language>
  183. <language type="sai">limbă sud-amerindiană</language>
  184. <language type="sam">aramaică samariteană</language>
  185. <language type="sc">sardiniană</language>
  186. <language type="scn">siciliană</language>
  187. <language type="sco">scots</language>
  188. <language type="sd">sindhi</language>
  189. <language type="sem">limbă semitică</language>
  190. <language type="sga">irlandeză veche</language>
  191. <language type="sgn">limbaj mimico-gestual</language>
  192. <language type="sh">sârbo-croată</language>
  193. <language type="si">singaleză</language>
  194. <language type="sit">limbă sino-tibetană</language>
  195. <language type="sk">slovacă</language>
  196. <language type="sl">slovenă</language>
  197. <language type="sla">limbă slavă</language>
  198. <language type="sm">samoană</language>
  199. <language type="so">somaleză</language>
  200. <language type="sq">albaneză</language>
  201. <language type="sr">sârbă</language>
  202. <language type="st">sesotho</language>
  203. <language type="su">sundaneză</language>
  204. <language type="sux">sumeriană</language>
  205. <language type="sv">suedeză</language>
  206. <language type="sw">swahili</language>
  207. <language type="syr">siriacă</language>
  208. <language type="ta">tamilă</language>
  209. <language type="tai">limbă thai</language>
  210. <language type="te">telugu</language>
  211. <language type="tg">tadjică</language>
  212. <language type="th">thailandeză</language>
  213. <language type="ti">tigrinya</language>
  214. <language type="tk">turkmenă</language>
  215. <language type="tl">tagalog</language>
  216. <language type="tlh">klingoniană</language>
  217. <language type="tn">setswana</language>
  218. <language type="tr">turcă</language>
  219. <language type="tt">tătară</language>
  220. <language type="tut">limbă altaică</language>
  221. <language type="tw">twi</language>
  222. <language type="ty">tahitiană</language>
  223. <language type="ug">uigură</language>
  224. <language type="uk">ucraineană</language>
  225. <language type="und">limbă necunoscută sau nevalidă</language>
  226. <language type="ur">urdu</language>
  227. <language type="uz">uzbecă</language>
  228. <language type="vi">vietnameză</language>
  229. <language type="vo">volapuk</language>
  230. <language type="wa">valonă</language>
  231. <language type="wo">wolof</language>
  232. <language type="xal">calmucă</language>
  233. <language type="xh">xhosa</language>
  234. <language type="yi">idiș</language>
  235. <language type="yo">yoruba</language>
  236. <language type="zap">zapotecă</language>
  237. <language type="zh">chineză</language>
  238. <language type="zh_Hans">chineză simplificată</language>
  239. <language type="zh_Hant">chineză tradițională</language>
  240. <language type="zu">zulu</language>
  241. <language type="zxx">fară conținut lingvistic</language>
  242. </languages>
  243. <scripts>
  244. <script type="Arab">arabă</script>
  245. <script type="Armn">armeană</script>
  246. <script type="Bali">balineză</script>
  247. <script type="Beng">bengali</script>
  248. <script type="Bopo">bopomofo</script>
  249. <script type="Brai">braille</script>
  250. <script type="Cans">silabică aborigenă canadiană unificată</script>
  251. <script type="Copt">coptă</script>
  252. <script type="Cprt">cipriotă</script>
  253. <script type="Cyrl">chirilică</script>
  254. <script type="Cyrs">chirilică slavonă bisericească veche</script>
  255. <script type="Deva">devanagari</script>
  256. <script type="Dsrt">mormonă</script>
  257. <script type="Egyd">demotică egipteană</script>
  258. <script type="Egyh">hieratică egipteană</script>
  259. <script type="Egyp">hieroglife egiptene</script>
  260. <script type="Ethi">etiopiană</script>
  261. <script type="Geok">georgiană bisericească</script>
  262. <script type="Geor">georgiană</script>
  263. <script type="Glag">glagolitică</script>
  264. <script type="Goth">gotică</script>
  265. <script type="Grek">greacă</script>
  266. <script type="Hang">coreeană</script>
  267. <script type="Hani">ideografică</script>
  268. <script type="Hans">ideografică simplificată</script>
  269. <script type="Hant">ideografică tradițională</script>
  270. <script type="Hebr">ebraică</script>
  271. <script type="Hira">hiragana</script>
  272. <script type="Hrkt">katakana sau hiragana</script>
  273. <script type="Hung">maghiară veche</script>
  274. <script type="Inds">Indus</script>
  275. <script type="Ital">italică veche</script>
  276. <script type="Java">javaneză</script>
  277. <script type="Jpan">japoneză</script>
  278. <script type="Kana">katakana</script>
  279. <script type="Khmr">khmeră</script>
  280. <script type="Laoo">laoțiană</script>
  281. <script type="Latf">latină Fraktur</script>
  282. <script type="Latg">latină gaelică</script>
  283. <script type="Latn">latină</script>
  284. <script type="Lina">lineară A</script>
  285. <script type="Linb">lineară B</script>
  286. <script type="Lydi">lidiană</script>
  287. <script type="Maya">hieroglife maya</script>
  288. <script type="Mong">mongolă</script>
  289. <script type="Mymr">birmană</script>
  290. <script type="Phnx">feniciană</script>
  291. <script type="Qaai">moștenită</script>
  292. <script type="Runr">runică</script>
  293. <script type="Sinh">singaleză</script>
  294. <script type="Syrc">siriacă</script>
  295. <script type="Syrj">siriacă occidentală</script>
  296. <script type="Syrn">siriacă orientală</script>
  297. <script type="Tfng">berberă</script>
  298. <script type="Thai">Thai</script>
  299. <script type="Tibt">tibetană</script>
  300. <script type="Xpeo">persană veche</script>
  301. <script type="Xsux">cuneiformă sumero-akkadiană</script>
  302. <script type="Zxxx">nescrisă</script>
  303. <script type="Zyyy">comună</script>
  304. <script type="Zzzz">scriere necunoscută sau nevalidă</script>
  305. </scripts>
  306. <territories>
  307. <territory type="001">Lume</territory>
  308. <territory type="002">Africa</territory>
  309. <territory type="003">America de Nord</territory>
  310. <territory type="005">America de Sud</territory>
  311. <territory type="009">Oceania</territory>
  312. <territory type="011">Africa Occidentală</territory>
  313. <territory type="013">America Centrală</territory>
  314. <territory type="014">Africa Orientală</territory>
  315. <territory type="015">Africa Septentrională</territory>
  316. <territory type="017">Africa Centrală</territory>
  317. <territory type="018">Africa Meridională</territory>
  318. <territory type="019">Americi</territory>
  319. <territory type="021">America Septentrională</territory>
  320. <territory type="029">Caraibe</territory>
  321. <territory type="030">Asia Orientală</territory>
  322. <territory type="034">Asia Meridională</territory>
  323. <territory type="035">Asia de Sud-Est</territory>
  324. <territory type="039">Europa Meridională</territory>
  325. <territory type="053">Australia și Noua Zeelandă</territory>
  326. <territory type="054">Melanezia</territory>
  327. <territory type="057">Regiunea Micronezia</territory>
  328. <territory type="061">Polinezia</territory>
  329. <territory type="062">Asia Centrală de Sud</territory>
  330. <territory type="142">Asia</territory>
  331. <territory type="143">Asia Centrală</territory>
  332. <territory type="145">Asia Occidentală</territory>
  333. <territory type="150">Europa</territory>
  334. <territory type="151">Europa Orientală</territory>
  335. <territory type="154">Europa Septentrională</territory>
  336. <territory type="155">Europa Occidentală</territory>
  337. <territory type="172">Comunitatea Statelor Independente</territory>
  338. <territory type="419">America Latină și Caraibe</territory>
  339. <territory type="830">Insulele Anglo-Normande</territory>
  340. <territory type="AD">Andorra</territory>
  341. <territory type="AE">Emiratele Arabe Unite</territory>
  342. <territory type="AF">Afganistan</territory>
  343. <territory type="AG">Antigua și Barbuda</territory>
  344. <territory type="AI">Anguilla</territory>
  345. <territory type="AL">Albania</territory>
  346. <territory type="AM">Armenia</territory>
  347. <territory type="AN">Antilele Olandeze</territory>
  348. <territory type="AO">Angola</territory>
  349. <territory type="AQ">Antarctica</territory>
  350. <territory type="AR">Argentina</territory>
  351. <territory type="AS">Samoa Americană</territory>
  352. <territory type="AT">Austria</territory>
  353. <territory type="AU">Australia</territory>
  354. <territory type="AW">Aruba</territory>
  355. <territory type="AX">Insulele Aland</territory>
  356. <territory type="AZ">Azerbaidjan</territory>
  357. <territory type="BA">Bosnia și Herțegovina</territory>
  358. <territory type="BB">Barbados</territory>
  359. <territory type="BD">Bangladesh</territory>
  360. <territory type="BE">Belgia</territory>
  361. <territory type="BF">Burkina Faso</territory>
  362. <territory type="BG">Bulgaria</territory>
  363. <territory type="BH">Bahrain</territory>
  364. <territory type="BI">Burundi</territory>
  365. <territory type="BJ">Benin</territory>
  366. <territory type="BL">Sfântul Bartolomeu</territory>
  367. <territory type="BM">Bermuda</territory>
  368. <territory type="BN">Brunei</territory>
  369. <territory type="BO">Bolivia</territory>
  370. <territory type="BR">Brazilia</territory>
  371. <territory type="BS">Bahamas</territory>
  372. <territory type="BT">Bhutan</territory>
  373. <territory type="BV">Insula Bouvet</territory>
  374. <territory type="BW">Botswana</territory>
  375. <territory type="BY">Bielorusia</territory>
  376. <territory type="BZ">Belize</territory>
  377. <territory type="CA">Canada</territory>
  378. <territory type="CC">Insulele Cocos</territory>
  379. <territory type="CD">Republica Democrată Congo</territory>
  380. <territory type="CF">Republica Centrafricană</territory>
  381. <territory type="CG">Congo</territory>
  382. <territory type="CH">Eleveția</territory>
  383. <territory type="CI">Coasta de Fildeș</territory>
  384. <territory type="CK">Insulele Cook</territory>
  385. <territory type="CL">Chile</territory>
  386. <territory type="CM">Camerun</territory>
  387. <territory type="CN">China</territory>
  388. <territory type="CO">Columbia</territory>
  389. <territory type="CR">Costa Rica</territory>
  390. <territory type="CS">Serbia și Muntenegru</territory>
  391. <territory type="CU">Cuba</territory>
  392. <territory type="CV">Capul Verde</territory>
  393. <territory type="CX">Insula Christmas</territory>
  394. <territory type="CY">Cipru</territory>
  395. <territory type="CZ">Republica Cehă</territory>
  396. <territory type="DE">Germania</territory>
  397. <territory type="DJ">Djibouti</territory>
  398. <territory type="DK">Danemarca</territory>
  399. <territory type="DM">Dominica</territory>
  400. <territory type="DO">Republica Dominicană</territory>
  401. <territory type="DZ">Algeria</territory>
  402. <territory type="EC">Ecuador</territory>
  403. <territory type="EE">Estonia</territory>
  404. <territory type="EG">Egipt</territory>
  405. <territory type="EH">Sahara Occidentală</territory>
  406. <territory type="ER">Eritreea</territory>
  407. <territory type="ES">Spania</territory>
  408. <territory type="ET">Etiopia</territory>
  409. <territory type="FI">Finlanda</territory>
  410. <territory type="FJ">Fiji</territory>
  411. <territory type="FK">Insulele Falkland</territory>
  412. <territory type="FM">Micronezia</territory>
  413. <territory type="FO">Insulele Feroe</territory>
  414. <territory type="FR">Franța</territory>
  415. <territory type="GA">Gabon</territory>
  416. <territory type="GB">Marea Britanie</territory>
  417. <territory type="GD">Grenada</territory>
  418. <territory type="GE">Georgia</territory>
  419. <territory type="GF">Guyana Franceză</territory>
  420. <territory type="GG">Guernsey</territory>
  421. <territory type="GH">Ghana</territory>
  422. <territory type="GI">Gibraltar</territory>
  423. <territory type="GL">Groenlanda</territory>
  424. <territory type="GM">Gambia</territory>
  425. <territory type="GN">Guineea</territory>
  426. <territory type="GP">Guadelupa</territory>
  427. <territory type="GQ">Guineea Ecuatorială</territory>
  428. <territory type="GR">Grecia</territory>
  429. <territory type="GS">Insulele Georgia de Sud și Sandwich de Sud</territory>
  430. <territory type="GT">Guatemala</territory>
  431. <territory type="GU">Guam</territory>
  432. <territory type="GW">Guineea-Bissau</territory>
  433. <territory type="GY">Guyana</territory>
  434. <territory type="HK">R.A.S. Hong Kong a Chinei</territory>
  435. <territory type="HM">Insula Heard și Insulele McDonald</territory>
  436. <territory type="HN">Honduras</territory>
  437. <territory type="HR">Croația</territory>
  438. <territory type="HT">Haiti</territory>
  439. <territory type="HU">Ungaria</territory>
  440. <territory type="ID">Indonezia</territory>
  441. <territory type="IE">Irlanda</territory>
  442. <territory type="IL">Israel</territory>
  443. <territory type="IM">Insula Man</territory>
  444. <territory type="IN">India</territory>
  445. <territory type="IO">Teritoriul Britanic din Oceanul Indian</territory>
  446. <territory type="IQ">Irak</territory>
  447. <territory type="IR">Iran</territory>
  448. <territory type="IS">Islanda</territory>
  449. <territory type="IT">Italia</territory>
  450. <territory type="JE">Jersey</territory>
  451. <territory type="JM">Jamaica</territory>
  452. <territory type="JO">Iordania</territory>
  453. <territory type="JP">Japonia</territory>
  454. <territory type="KE">Kenya</territory>
  455. <territory type="KG">Kârgâzstan</territory>
  456. <territory type="KH">Cambodgia</territory>
  457. <territory type="KI">Kiribati</territory>
  458. <territory type="KM">Comore</territory>
  459. <territory type="KN">Sfântul Kitts și Nevis</territory>
  460. <territory type="KP">Coreea de Nord</territory>
  461. <territory type="KR">Coreea de Sud</territory>
  462. <territory type="KW">Kuweit</territory>
  463. <territory type="KY">Insulele Cayman</territory>
  464. <territory type="KZ">Kazahstan</territory>
  465. <territory type="LA">Laos</territory>
  466. <territory type="LB">Liban</territory>
  467. <territory type="LC">Sfânta Lucia</territory>
  468. <territory type="LI">Liechtenstein</territory>
  469. <territory type="LK">Sri Lanka</territory>
  470. <territory type="LR">Liberia</territory>
  471. <territory type="LS">Lesotho</territory>
  472. <territory type="LT">Lituania</territory>
  473. <territory type="LU">Luxemburg</territory>
  474. <territory type="LV">Letonia</territory>
  475. <territory type="LY">Libia</territory>
  476. <territory type="MA">Maroc</territory>
  477. <territory type="MC">Monaco</territory>
  478. <territory type="MD">Republica Moldova</territory>
  479. <territory type="ME">Muntenegru</territory>
  480. <territory type="MF">Sfântul Martin</territory>
  481. <territory type="MG">Madagascar</territory>
  482. <territory type="MH">Insulele Marshall</territory>
  483. <territory type="MK">Macedonia</territory>
  484. <territory type="ML">Mali</territory>
  485. <territory type="MM">Myanmar</territory>
  486. <territory type="MN">Mongolia</territory>
  487. <territory type="MO">R.A.S. Macao a Chinei</territory>
  488. <territory type="MP">Insulele Mariane de Nord</territory>
  489. <territory type="MQ">Martinica</territory>
  490. <territory type="MR">Mauritania</territory>
  491. <territory type="MS">Montserrat</territory>
  492. <territory type="MT">Malta</territory>
  493. <territory type="MU">Mauritius</territory>
  494. <territory type="MV">Maldive</territory>
  495. <territory type="MW">Malawi</territory>
  496. <territory type="MX">Mexic</territory>
  497. <territory type="MY">Malaezia</territory>
  498. <territory type="MZ">Mozambic</territory>
  499. <territory type="NA">Namibia</territory>
  500. <territory type="NC">Noua Caledonie</territory>
  501. <territory type="NE">Niger</territory>
  502. <territory type="NF">Insulele Norfolk</territory>
  503. <territory type="NG">Nigeria</territory>
  504. <territory type="NI">Nicaragua</territory>
  505. <territory type="NL">Olanda</territory>
  506. <territory type="NO">Norvegia</territory>
  507. <territory type="NP">Nepal</territory>
  508. <territory type="NR">Nauru</territory>
  509. <territory type="NU">Niue</territory>
  510. <territory type="NZ">Noua Zeelandă</territory>
  511. <territory type="OM">Oman</territory>
  512. <territory type="PA">Panama</territory>
  513. <territory type="PE">Peru</territory>
  514. <territory type="PF">Polinezia Franceză</territory>
  515. <territory type="PG">Papua Noua Guinee</territory>
  516. <territory type="PH">Filipine</territory>
  517. <territory type="PK">Pakistan</territory>
  518. <territory type="PL">Polonia</territory>
  519. <territory type="PM">Sfântul Pierre și Miquelon</territory>
  520. <territory type="PN">Pitcairn</territory>
  521. <territory type="PR">Porto Rico</territory>
  522. <territory type="PS">Teritoriul Palestinian</territory>
  523. <territory type="PT">Portugalia</territory>
  524. <territory type="PW">Palau</territory>
  525. <territory type="PY">Paraguay</territory>
  526. <territory type="QA">Qatar</territory>
  527. <territory type="QO">Oceania Periferică</territory>
  528. <territory type="QU">Uniunea Europeană</territory>
  529. <territory type="RE">Reunion</territory>
  530. <territory type="RO">România</territory>
  531. <territory type="RS">Serbia</territory>
  532. <territory type="RU">Rusia</territory>
  533. <territory type="RW">Rwanda</territory>
  534. <territory type="SA">Arabia Saudită</territory>
  535. <territory type="SB">Insulele Solomon</territory>
  536. <territory type="SC">Seychelles</territory>
  537. <territory type="SD">Sudan</territory>
  538. <territory type="SE">Suedia</territory>
  539. <territory type="SG">Singapore</territory>
  540. <territory type="SH">Sfânta Elena</territory>
  541. <territory type="SI">Slovenia</territory>
  542. <territory type="SJ">Svalbard și Jan Mayen</territory>
  543. <territory type="SK">Slovacia</territory>
  544. <territory type="SL">Sierra Leone</territory>
  545. <territory type="SM">San Marino</territory>
  546. <territory type="SN">Senegal</territory>
  547. <territory type="SO">Somalia</territory>
  548. <territory type="SR">Surinam</territory>
  549. <territory type="ST">Sao Tome și Principe</territory>
  550. <territory type="SV">El Salvador</territory>
  551. <territory type="SY">Siria</territory>
  552. <territory type="SZ">Swaziland</territory>
  553. <territory type="TC">Insulele Turks și Caicos</territory>
  554. <territory type="TD">Ciad</territory>
  555. <territory type="TF">Teritoriile Australe și Antarctice Franceze</territory>
  556. <territory type="TG">Togo</territory>
  557. <territory type="TH">Thailanda</territory>
  558. <territory type="TJ">Tadjikistan</territory>
  559. <territory type="TK">Tokelau</territory>
  560. <territory type="TL">Timorul de Est</territory>
  561. <territory type="TM">Turkmenistan</territory>
  562. <territory type="TN">Tunisia</territory>
  563. <territory type="TO">Tonga</territory>
  564. <territory type="TR">Turcia</territory>
  565. <territory type="TT">Trinidad-Tobago</territory>
  566. <territory type="TV">Tuvalu</territory>
  567. <territory type="TW">Taiwan</territory>
  568. <territory type="TZ">Tanzania</territory>
  569. <territory type="UA">Ucraina</territory>
  570. <territory type="UG">Uganda</territory>
  571. <territory type="UM">Insulele mici îndepărtate ale Statelor Unite ale Americii</territory>
  572. <territory type="US">Statele Unite ale Americii</territory>
  573. <territory type="UY">Uruguay</territory>
  574. <territory type="UZ">Uzbekistan</territory>
  575. <territory type="VA">Vatican</territory>
  576. <territory type="VC">Sfântul Vincent și Grenadine</territory>
  577. <territory type="VE">Venezuela</territory>
  578. <territory type="VG">Insulele Virgine Britanice</territory>
  579. <territory type="VI">Insulele Virgine S.U.A.</territory>
  580. <territory type="VN">Vietnam</territory>
  581. <territory type="VU">Vanuatu</territory>
  582. <territory type="WF">Wallis și Futuna</territory>
  583. <territory type="WS">Samoa</territory>
  584. <territory type="YE">Yemen</territory>
  585. <territory type="YT">Mayotte</territory>
  586. <territory type="ZA">Africa de Sud</territory>
  587. <territory type="ZM">Zambia</territory>
  588. <territory type="ZW">Zimbabwe</territory>
  589. <territory type="ZZ">Regiune necunoscută sau nevalidă</territory>
  590. </territories>
  591. <keys>
  592. <key type="collation">ordine de sortare</key>
  593. <key type="currency">monedă</key>
  594. </keys>
  595. <types>
  596. <type type="big5han" key="collation">sortare pentru chineza tradițională - Big5</type>
  597. <type type="buddhist" key="calendar">calendar budist</type>
  598. <type type="chinese" key="calendar">calendar chinezesc</type>
  599. <type type="direct" key="collation">sortare directă</type>
  600. <type type="gb2312han" key="collation">sortare pentru chineza simplificată - GB2312</type>
  601. <type type="gregorian" key="calendar">calendar gregorian</type>
  602. <type type="hebrew" key="calendar">calendar ebraic</type>
  603. <type type="indian" key="calendar">calendar național indian</type>
  604. <type type="islamic" key="calendar">calendar islamic</type>
  605. <type type="islamic-civil" key="calendar">calendar islamic civil</type>
  606. <type type="japanese" key="calendar">calendar japonez</type>
  607. <type type="phonebook" key="collation">sortare după cartea de telefon</type>
  608. <type type="pinyin" key="collation">sortare pinyin</type>
  609. <type type="roc" key="calendar">calendar al Republicii Chineze</type>
  610. <type type="stroke" key="collation">ordine de sortare după trasare</type>
  611. <type type="traditional" key="collation">sortare tradițională</type>
  612. </types>
  613. <measurementSystemNames>
  614. <measurementSystemName type="metric">metric</measurementSystemName>
  615. <measurementSystemName type="US">american</measurementSystemName>
  616. </measurementSystemNames>
  617. <codePatterns>
  618. <codePattern type="language">Limbă: {0}</codePattern>
  619. <codePattern type="script">Scriere: {0}</codePattern>
  620. <codePattern type="territory">Regiune: {0}</codePattern>
  621. </codePatterns>
  622. </localeDisplayNames>
  623. <layout>
  624. <inList>titlecase-firstword</inList>
  625. <inText type="keys">lowercase-words</inText>
  626. <inText type="languages">lowercase-words</inText>
  627. <inText type="measurementSystemNames">lowercase-words</inText>
  628. <inText type="territories">titlecase-firstword</inText>
  629. </layout>
  630. <characters>
  631. <exemplarCharacters>[a ă â b-i î j-p r s ș t ț u v x z]</exemplarCharacters>
  632. <exemplarCharacters type="auxiliary">[á à å ä ç é è ê ë ñ ö q ş ţ ü w y]</exemplarCharacters>
  633. <exemplarCharacters type="currencySymbol">[a ă â b-i î j-s ș t ț u-z]</exemplarCharacters>
  634. </characters>
  635. <delimiters>
  636. <quotationStart>„</quotationStart>
  637. <quotationEnd>”</quotationEnd>
  638. <alternateQuotationStart>«</alternateQuotationStart>
  639. <alternateQuotationEnd>»</alternateQuotationEnd>
  640. </delimiters>
  641. <dates>
  642. <dateRangePattern>{0} – {1}</dateRangePattern>
  643. <calendars>
  644. <calendar type="buddhist">
  645. <eras>
  646. <eraNames>
  647. <era type="0">era budistă</era>
  648. </eraNames>
  649. <eraAbbr>
  650. <era type="0">e.b.</era>
  651. </eraAbbr>
  652. </eras>
  653. <dateFormats>
  654. <dateFormatLength type="full">
  655. <dateFormat>
  656. <pattern>EEEE, d MMMM, y G</pattern>
  657. </dateFormat>
  658. </dateFormatLength>
  659. <dateFormatLength type="long">
  660. <dateFormat>
  661. <pattern>d MMMM y G</pattern>
  662. </dateFormat>
  663. </dateFormatLength>
  664. <dateFormatLength type="medium">
  665. <dateFormat>
  666. <pattern>d MMM y G</pattern>
  667. </dateFormat>
  668. </dateFormatLength>
  669. <dateFormatLength type="short">
  670. <dateFormat>
  671. <pattern>d/M/yyyy</pattern>
  672. </dateFormat>
  673. </dateFormatLength>
  674. </dateFormats>
  675. <dateTimeFormats>
  676. <availableFormats>
  677. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  678. <dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
  679. <dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
  680. <dateFormatItem id="MMMMEd">E d MMMM</dateFormatItem>
  681. <dateFormatItem id="yMEd">EEE, d/M/y</dateFormatItem>
  682. <dateFormatItem id="yMMMEd">EEE, d MMM Y</dateFormatItem>
  683. <dateFormatItem id="yQ">'T'Q y</dateFormatItem>
  684. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  685. </availableFormats>
  686. </dateTimeFormats>
  687. </calendar>
  688. <calendar type="gregorian">
  689. <months>
  690. <monthContext type="format">
  691. <monthWidth type="abbreviated">
  692. <month type="1">ian.</month>
  693. <month type="2">feb.</month>
  694. <month type="3">mar.</month>
  695. <month type="4">apr.</month>
  696. <month type="5">mai</month>
  697. <month type="6">iun.</month>
  698. <month type="7">iul.</month>
  699. <month type="8">aug.</month>
  700. <month type="9">sept.</month>
  701. <month type="10">oct.</month>
  702. <month type="11">nov.</month>
  703. <month type="12">dec.</month>
  704. </monthWidth>
  705. <monthWidth type="wide">
  706. <month type="1">ianuarie</month>
  707. <month type="2">februarie</month>
  708. <month type="3">martie</month>
  709. <month type="4">aprilie</month>
  710. <month type="5">mai</month>
  711. <month type="6">iunie</month>
  712. <month type="7">iulie</month>
  713. <month type="8">august</month>
  714. <month type="9">septembrie</month>
  715. <month type="10">octombrie</month>
  716. <month type="11">noiembrie</month>
  717. <month type="12">decembrie</month>
  718. </monthWidth>
  719. </monthContext>
  720. <monthContext type="stand-alone">
  721. <monthWidth type="narrow">
  722. <month type="1">I</month>
  723. <month type="2">F</month>
  724. <month type="3">M</month>
  725. <month type="4">A</month>
  726. <month type="5">M</month>
  727. <month type="6">I</month>
  728. <month type="7">I</month>
  729. <month type="8">A</month>
  730. <month type="9">S</month>
  731. <month type="10">O</month>
  732. <month type="11">N</month>
  733. <month type="12">D</month>
  734. </monthWidth>
  735. </monthContext>
  736. </months>
  737. <days>
  738. <dayContext type="format">
  739. <dayWidth type="abbreviated">
  740. <day type="sun">Du</day>
  741. <day type="mon">Lu</day>
  742. <day type="tue">Ma</day>
  743. <day type="wed">Mi</day>
  744. <day type="thu">Jo</day>
  745. <day type="fri">Vi</day>
  746. <day type="sat">Sâ</day>
  747. </dayWidth>
  748. <dayWidth type="wide">
  749. <day type="sun">duminică</day>
  750. <day type="mon">luni</day>
  751. <day type="tue">marți</day>
  752. <day type="wed">miercuri</day>
  753. <day type="thu">joi</day>
  754. <day type="fri">vineri</day>
  755. <day type="sat">sâmbătă</day>
  756. </dayWidth>
  757. </dayContext>
  758. <dayContext type="stand-alone">
  759. <dayWidth type="abbreviated">
  760. <day type="sun">Du</day>
  761. <day type="mon">Lu</day>
  762. </dayWidth>
  763. <dayWidth type="narrow">
  764. <day type="sun">D</day>
  765. <day type="mon">L</day>
  766. <day type="tue">M</day>
  767. <day type="wed">M</day>
  768. <day type="thu">J</day>
  769. <day type="fri">V</day>
  770. <day type="sat">S</day>
  771. </dayWidth>
  772. <dayWidth type="wide">
  773. <day type="sat">sâmbătă</day>
  774. </dayWidth>
  775. </dayContext>
  776. </days>
  777. <quarters>
  778. <quarterContext type="format">
  779. <quarterWidth type="abbreviated">
  780. <quarter type="1">trim. I</quarter>
  781. <quarter type="2">trim. II</quarter>
  782. <quarter type="3">trim. III</quarter>
  783. <quarter type="4">trim. IV</quarter>
  784. </quarterWidth>
  785. <quarterWidth type="narrow">
  786. <quarter type="1">T1</quarter>
  787. <quarter type="2">T2</quarter>
  788. <quarter type="3">T3</quarter>
  789. <quarter type="4">T4</quarter>
  790. </quarterWidth>
  791. <quarterWidth type="wide">
  792. <quarter type="1">trimestrul I</quarter>
  793. <quarter type="2">trimestrul al II-lea</quarter>
  794. <quarter type="3">trimestrul al III-lea</quarter>
  795. <quarter type="4">trimestrul al IV-lea</quarter>
  796. </quarterWidth>
  797. </quarterContext>
  798. <quarterContext type="stand-alone">
  799. <quarterWidth type="narrow">
  800. <quarter type="1">T1</quarter>
  801. <quarter type="2">T2</quarter>
  802. <quarter type="3">T3</quarter>
  803. <quarter type="4">T4</quarter>
  804. </quarterWidth>
  805. <quarterWidth type="wide">
  806. <quarter type="1">trimestrul I</quarter>
  807. <quarter type="2">trimestrul al II-lea</quarter>
  808. <quarter type="3">trimestrul al III-lea</quarter>
  809. <quarter type="4">trimestrul al IV-lea</quarter>
  810. </quarterWidth>
  811. </quarterContext>
  812. </quarters>
  813. <am>AM</am>
  814. <pm>PM</pm>
  815. <eras>
  816. <eraNames>
  817. <era type="0">înainte de Hristos</era>
  818. <era type="1">după Hristos</era>
  819. </eraNames>
  820. <eraAbbr>
  821. <era type="0">î.Hr.</era>
  822. <era type="1">d.Hr.</era>
  823. </eraAbbr>
  824. </eras>
  825. <dateFormats>
  826. <dateFormatLength type="full">
  827. <dateFormat>
  828. <pattern>EEEE, d MMMM y</pattern>
  829. </dateFormat>
  830. </dateFormatLength>
  831. <dateFormatLength type="long">
  832. <dateFormat>
  833. <pattern>d MMMM y</pattern>
  834. </dateFormat>
  835. </dateFormatLength>
  836. <dateFormatLength type="medium">
  837. <dateFormat>
  838. <pattern>dd.MM.yyyy</pattern>
  839. </dateFormat>
  840. </dateFormatLength>
  841. <dateFormatLength type="short">
  842. <dateFormat>
  843. <pattern>dd.MM.yyyy</pattern>
  844. </dateFormat>
  845. </dateFormatLength>
  846. </dateFormats>
  847. <timeFormats>
  848. <timeFormatLength type="full">
  849. <timeFormat>
  850. <pattern>HH:mm:ss zzzz</pattern>
  851. </timeFormat>
  852. </timeFormatLength>
  853. <timeFormatLength type="long">
  854. <timeFormat>
  855. <pattern>HH:mm:ss z</pattern>
  856. </timeFormat>
  857. </timeFormatLength>
  858. <timeFormatLength type="medium">
  859. <timeFormat>
  860. <pattern>HH:mm:ss</pattern>
  861. </timeFormat>
  862. </timeFormatLength>
  863. <timeFormatLength type="short">
  864. <timeFormat>
  865. <pattern>HH:mm</pattern>
  866. </timeFormat>
  867. </timeFormatLength>
  868. </timeFormats>
  869. <dateTimeFormats>
  870. <dateTimeFormatLength type="full">
  871. <dateTimeFormat>
  872. <pattern>{1}, {0}</pattern>
  873. </dateTimeFormat>
  874. </dateTimeFormatLength>
  875. <dateTimeFormatLength type="long">
  876. <dateTimeFormat>
  877. <pattern>{1}, {0}</pattern>
  878. </dateTimeFormat>
  879. </dateTimeFormatLength>
  880. <dateTimeFormatLength type="medium">
  881. <dateTimeFormat>
  882. <pattern>{1}, {0}</pattern>
  883. </dateTimeFormat>
  884. </dateTimeFormatLength>
  885. <dateTimeFormatLength type="short">
  886. <dateTimeFormat>
  887. <pattern>{1}, {0}</pattern>
  888. </dateTimeFormat>
  889. </dateTimeFormatLength>
  890. <availableFormats>
  891. <dateFormatItem id="d">d</dateFormatItem>
  892. <dateFormatItem id="EEEd">EEE d</dateFormatItem>
  893. <dateFormatItem id="Hm">H:mm</dateFormatItem>
  894. <dateFormatItem id="M">L</dateFormatItem>
  895. <dateFormatItem id="Md">d.M</dateFormatItem>
  896. <dateFormatItem id="MEd">E, d MMM</dateFormatItem>
  897. <dateFormatItem id="MMdd">dd.MM</dateFormatItem>
  898. <dateFormatItem id="MMM">LLL</dateFormatItem>
  899. <dateFormatItem id="MMMd">d MMM</dateFormatItem>
  900. <dateFormatItem id="MMMEd">E, d MMM</dateFormatItem>
  901. <dateFormatItem id="MMMEEEd">EEE, d MMM</dateFormatItem>
  902. <dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
  903. <dateFormatItem id="MMMMEd">E, d MMMM</dateFormatItem>
  904. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  905. <dateFormatItem id="y">y</dateFormatItem>
  906. <dateFormatItem id="yM">M.yyyy</dateFormatItem>
  907. <dateFormatItem id="yMEd">EEE, d/M/yyyy</dateFormatItem>
  908. <dateFormatItem id="yMMM">MMM y</dateFormatItem>
  909. <dateFormatItem id="yMMMEd">EEE, d MMM y</dateFormatItem>
  910. <dateFormatItem id="yMMMM">MMMM y</dateFormatItem>
  911. <dateFormatItem id="yQ">'trimestrul' Q y</dateFormatItem>
  912. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  913. <dateFormatItem id="yyMM">MM.yy</dateFormatItem>
  914. <dateFormatItem id="yyMMM">MMM yy</dateFormatItem>
  915. <dateFormatItem id="yyQ">Q yy</dateFormatItem>
  916. <dateFormatItem id="yyyyMM">MM.yyyy</dateFormatItem>
  917. <dateFormatItem id="yyyyMMMM">MMMM y</dateFormatItem>
  918. </availableFormats>
  919. <intervalFormats>
  920. <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
  921. <intervalFormatItem id="d">
  922. <greatestDifference id="d">d-d</greatestDifference>
  923. </intervalFormatItem>
  924. <intervalFormatItem id="h">
  925. <greatestDifference id="a">HH-HH</greatestDifference>
  926. <greatestDifference id="h">HH-HH</greatestDifference>
  927. </intervalFormatItem>
  928. <intervalFormatItem id="hm">
  929. <greatestDifference id="a">HH:mm-HH:mm</greatestDifference>
  930. <greatestDifference id="h">HH:mm-HH:mm</greatestDifference>
  931. <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
  932. </intervalFormatItem>
  933. <intervalFormatItem id="hmv">
  934. <greatestDifference id="a">HH:mm-HH:mm v</greatestDifference>
  935. <greatestDifference id="h">HH:mm-HH:mm v</greatestDifference>
  936. <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
  937. </intervalFormatItem>
  938. <intervalFormatItem id="hv">
  939. <greatestDifference id="a">HH-HH v</greatestDifference>
  940. <greatestDifference id="h">HH-HH v</greatestDifference>
  941. </intervalFormatItem>
  942. <intervalFormatItem id="M">
  943. <greatestDifference id="M">M-M</greatestDifference>
  944. </intervalFormatItem>
  945. <intervalFormatItem id="Md">
  946. <greatestDifference id="d">dd.MM - dd.MM</greatestDifference>
  947. <greatestDifference id="M">dd.MM - dd.MM</greatestDifference>
  948. </intervalFormatItem>
  949. <intervalFormatItem id="MEd">
  950. <greatestDifference id="d">E, dd.MM - E, dd.MM</greatestDifference>
  951. <greatestDifference id="M">E, dd.MM - E, dd.MM</greatestDifference>
  952. </intervalFormatItem>
  953. <intervalFormatItem id="MMM">
  954. <greatestDifference id="M">MMM-MMM</greatestDifference>
  955. </intervalFormatItem>
  956. <intervalFormatItem id="MMMd">
  957. <greatestDifference id="d">d-d MMM</greatestDifference>
  958. <greatestDifference id="M">d MMM - d MMM</greatestDifference>
  959. </intervalFormatItem>
  960. <intervalFormatItem id="MMMEd">
  961. <greatestDifference id="d">E, d MMM - E, d MMM</greatestDifference>
  962. <greatestDifference id="M">E, d MMM - E, d MMM</greatestDifference>
  963. </intervalFormatItem>
  964. <intervalFormatItem id="MMMM">
  965. <greatestDifference id="M">LLLL-LLLL</greatestDifference>
  966. </intervalFormatItem>
  967. <intervalFormatItem id="y">
  968. <greatestDifference id="y">y-y</greatestDifference>
  969. </intervalFormatItem>
  970. <intervalFormatItem id="yM">
  971. <greatestDifference id="M">MM.yyyy - MM.yyyy</greatestDifference>
  972. <greatestDifference id="y">MM.yyyy - MM.yyyy</greatestDifference>
  973. </intervalFormatItem>
  974. <intervalFormatItem id="yMd">
  975. <greatestDifference id="d">dd.MM.yyyy - dd.MM.yyyy</greatestDifference>
  976. <greatestDifference id="M">dd.MM.yyyy - dd.MM.yyyy</greatestDifference>
  977. <greatestDifference id="y">dd.MM.yyyy - dd.MM.yyyy</greatestDifference>
  978. </intervalFormatItem>
  979. <intervalFormatItem id="yMEd">
  980. <greatestDifference id="d">E, dd.MM.yyyy - E, dd.MM.yyyy</greatestDifference>
  981. <greatestDifference id="M">E, dd.MM.yyyy - E, dd.MM.yyyy</greatestDifference>
  982. <greatestDifference id="y">E, dd.MM.yyyy - E, dd.MM.yyyy</greatestDifference>
  983. </intervalFormatItem>
  984. <intervalFormatItem id="yMMM">
  985. <greatestDifference id="M">MMM-MMM y</greatestDifference>
  986. <greatestDifference id="y">MMM y - MMM y</greatestDifference>
  987. </intervalFormatItem>
  988. <intervalFormatItem id="yMMMd">
  989. <greatestDifference id="d">d-d MMM y</greatestDifference>
  990. <greatestDifference id="M">d MMM - d MMM y</greatestDifference>
  991. <greatestDifference id="y">d MMM y - d MMM y</greatestDifference>
  992. </intervalFormatItem>
  993. <intervalFormatItem id="yMMMEd">
  994. <greatestDifference id="d">E, d MMM - E, d MMM y</greatestDifference>
  995. <greatestDifference id="M">E, d MMM - E, d MMM y</greatestDifference>
  996. <greatestDifference id="y">E, d MMM y - E, d MMM y</greatestDifference>
  997. </intervalFormatItem>
  998. <intervalFormatItem id="yMMMM">
  999. <greatestDifference id="M">MMMM-MMMM y</greatestDifference>
  1000. <greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
  1001. </intervalFormatItem>
  1002. </intervalFormats>
  1003. </dateTimeFormats>
  1004. <fields>
  1005. <field type="era">
  1006. <displayName>eră</displayName>
  1007. </field>
  1008. <field type="year">
  1009. <displayName>an</displayName>
  1010. </field>
  1011. <field type="month">
  1012. <displayName>lună</displayName>
  1013. </field>
  1014. <field type="week">
  1015. <displayName>săptămână</displayName>
  1016. </field>
  1017. <field type="day">
  1018. <displayName>zi</displayName>
  1019. <relative type="-3">răsalaltăieri</relative>
  1020. <relative type="-2">alaltăieri</relative>
  1021. <relative type="-1">ieri</relative>
  1022. <relative type="0">azi</relative>
  1023. <relative type="1">mâine</relative>
  1024. <relative type="2">poimâine</relative>
  1025. <relative type="3">răspoimâine</relative>
  1026. </field>
  1027. <field type="weekday">
  1028. <displayName>zi a săptămânii</displayName>
  1029. </field>
  1030. <field type="dayperiod">
  1031. <displayName>perioada zilei</displayName>
  1032. </field>
  1033. <field type="hour">
  1034. <displayName>oră</displayName>
  1035. </field>
  1036. <field type="minute">
  1037. <displayName>minut</displayName>
  1038. </field>
  1039. <field type="second">
  1040. <displayName>secundă</displayName>
  1041. </field>
  1042. <field type="zone">
  1043. <displayName>zonă</displayName>
  1044. </field>
  1045. </fields>
  1046. </calendar>
  1047. </calendars>
  1048. <timeZoneNames>
  1049. <hourFormat>+HH:mm;−HH:mm</hourFormat>
  1050. <gmtFormat>GMT{0}</gmtFormat>
  1051. <regionFormat>{0}</regionFormat>
  1052. <fallbackFormat>{1} ({0})</fallbackFormat>
  1053. <zone type="Etc/Unknown">
  1054. <exemplarCity>Necunoscut</exemplarCity>
  1055. </zone>
  1056. <zone type="Europe/Tirane">
  1057. <exemplarCity>Tirana</exemplarCity>
  1058. </zone>
  1059. <zone type="Asia/Yerevan">
  1060. <exemplarCity>Erevan</exemplarCity>
  1061. </zone>
  1062. <zone type="Antarctica/South_Pole">
  1063. <exemplarCity>Polul Sud</exemplarCity>
  1064. </zone>
  1065. <zone type="Antarctica/DumontDUrville">
  1066. <exemplarCity>Dumont D'Urville</exemplarCity>
  1067. </zone>
  1068. <zone type="Europe/Vienna">
  1069. <exemplarCity>Viena</exemplarCity>
  1070. </zone>
  1071. <zone type="Europe/Brussels">
  1072. <exemplarCity>Bruxelles</exemplarCity>
  1073. </zone>
  1074. <zone type="Pacific/Easter">
  1075. <exemplarCity>Insula Paștelui</exemplarCity>
  1076. </zone>
  1077. <zone type="Atlantic/Cape_Verde">
  1078. <exemplarCity>Capul Verde</exemplarCity>
  1079. </zone>
  1080. <zone type="Europe/Copenhagen">
  1081. <exemplarCity>Copenhaga</exemplarCity>
  1082. </zone>
  1083. <zone type="Africa/Algiers">
  1084. <exemplarCity>Alger</exemplarCity>
  1085. </zone>
  1086. <zone type="Atlantic/Canary">
  1087. <exemplarCity>Insulele Canare</exemplarCity>
  1088. </zone>
  1089. <zone type="Africa/Addis_Ababa">
  1090. <exemplarCity>Addis Abeba</exemplarCity>
  1091. </zone>
  1092. <zone type="Europe/London">
  1093. <exemplarCity>Londra</exemplarCity>
  1094. </zone>
  1095. <zone type="America/Guadeloupe">
  1096. <exemplarCity>Guadalupe</exemplarCity>
  1097. </zone>
  1098. <zone type="Europe/Athens">
  1099. <exemplarCity>Atena</exemplarCity>
  1100. </zone>
  1101. <zone type="Atlantic/South_Georgia">
  1102. <exemplarCity>Georgia de Sud</exemplarCity>
  1103. </zone>
  1104. <zone type="Europe/Budapest">
  1105. <exemplarCity>Budapesta</exemplarCity>
  1106. </zone>
  1107. <zone type="Asia/Jerusalem">
  1108. <exemplarCity>Ierusalim</exemplarCity>
  1109. </zone>
  1110. <zone type="Asia/Baghdad">
  1111. <exemplarCity>Bagdad</exemplarCity>
  1112. </zone>
  1113. <zone type="Asia/Tehran">
  1114. <exemplarCity>Teheran</exemplarCity>
  1115. </zone>
  1116. <zone type="Europe/Rome">
  1117. <exemplarCity>Roma</exemplarCity>
  1118. </zone>
  1119. <zone type="America/St_Kitts">
  1120. <exemplarCity>St. Kitts</exemplarCity>
  1121. </zone>
  1122. <zone type="Asia/Seoul">
  1123. <exemplarCity>Seul</exemplarCity>
  1124. </zone>
  1125. <zone type="Asia/Kuwait">
  1126. <exemplarCity>Kuweit</exemplarCity>
  1127. </zone>
  1128. <zone type="Asia/Qyzylorda">
  1129. <exemplarCity>Kyzylorda</exemplarCity>
  1130. </zone>
  1131. <zone type="America/St_Lucia">
  1132. <exemplarCity>St. Lucia</exemplarCity>
  1133. </zone>
  1134. <zone type="Europe/Luxembourg">
  1135. <exemplarCity>Luxemburg</exemplarCity>
  1136. </zone>
  1137. <zone type="Europe/Chisinau">
  1138. <exemplarCity>Chișinău</exemplarCity>
  1139. </zone>
  1140. <zone type="Asia/Ulaanbaatar">
  1141. <exemplarCity>Ulan Bator</exemplarCity>
  1142. </zone>
  1143. <zone type="America/Martinique">
  1144. <exemplarCity>Martinica</exemplarCity>
  1145. </zone>
  1146. <zone type="Indian/Maldives">
  1147. <exemplarCity>Maldive</exemplarCity>
  1148. </zone>
  1149. <zone type="Pacific/Marquesas">
  1150. <exemplarCity>Marchize</exemplarCity>
  1151. </zone>
  1152. <zone type="Europe/Warsaw">
  1153. <exemplarCity>Varșovia</exemplarCity>
  1154. </zone>
  1155. <zone type="Atlantic/Azores">
  1156. <exemplarCity>Azore</exemplarCity>
  1157. </zone>
  1158. <zone type="Europe/Lisbon">
  1159. <exemplarCity>Lisabona</exemplarCity>
  1160. </zone>
  1161. <zone type="Asia/Qatar">
  1162. <exemplarCity>Quatar</exemplarCity>
  1163. </zone>
  1164. <zone type="Europe/Bucharest">
  1165. <exemplarCity>București</exemplarCity>
  1166. </zone>
  1167. <zone type="Europe/Moscow">
  1168. <exemplarCity>Moscova</exemplarCity>
  1169. </zone>
  1170. <zone type="Asia/Yekaterinburg">
  1171. <exemplarCity>Ekaterinburg</exemplarCity>
  1172. </zone>
  1173. <zone type="Asia/Krasnoyarsk">
  1174. <exemplarCity>Krasnoiarsk</exemplarCity>
  1175. </zone>
  1176. <zone type="Asia/Irkutsk">
  1177. <exemplarCity>Irkuțk</exemplarCity>
  1178. </zone>
  1179. <zone type="Asia/Yakutsk">
  1180. <exemplarCity>Yakuțk</exemplarCity>
  1181. </zone>
  1182. <zone type="Asia/Sakhalin">
  1183. <exemplarCity>Sahalin</exemplarCity>
  1184. </zone>
  1185. <zone type="Asia/Kamchatka">
  1186. <exemplarCity>Kamciatka</exemplarCity>
  1187. </zone>
  1188. <zone type="Asia/Riyadh">
  1189. <exemplarCity>Riyad</exemplarCity>
  1190. </zone>
  1191. <zone type="Atlantic/St_Helena">
  1192. <exemplarCity>Sf. Elena</exemplarCity>
  1193. </zone>
  1194. <zone type="America/El_Salvador">
  1195. <exemplarCity>Salvador</exemplarCity>
  1196. </zone>
  1197. <zone type="Asia/Damascus">
  1198. <exemplarCity>Damasc</exemplarCity>
  1199. </zone>
  1200. <zone type="Europe/Zaporozhye">
  1201. <exemplarCity>Zaporoje</exemplarCity>
  1202. </zone>
  1203. <zone type="America/North_Dakota/New_Salem">
  1204. <exemplarCity>New Salem, Dakota de Nord</exemplarCity>
  1205. </zone>
  1206. <zone type="America/North_Dakota/Center">
  1207. <exemplarCity>Centru, Dakota de Nord</exemplarCity>
  1208. </zone>
  1209. <zone type="America/St_Vincent">
  1210. <exemplarCity>Saint Vincent și Grenadines</exemplarCity>
  1211. </zone>
  1212. <zone type="America/St_Thomas">
  1213. <exemplarCity>St. Thomas</exemplarCity>
  1214. </zone>
  1215. <metazone type="Acre">
  1216. <long>
  1217. <standard>Ora Acre</standard>
  1218. <daylight>Ora de vară Acre</daylight>
  1219. </long>
  1220. </metazone>
  1221. <metazone type="Africa_Central">
  1222. <long>
  1223. <standard>Ora Africii Centrale</standard>
  1224. </long>
  1225. </metazone>
  1226. <metazone type="Africa_Eastern">
  1227. <long>
  1228. <standard>Ora Africii Orientale</standard>
  1229. </long>
  1230. </metazone>
  1231. <metazone type="Africa_Southern">
  1232. <long>
  1233. <generic>Ora Africii Meridionale</generic>
  1234. <standard>Ora Standard a Africii Meridionale</standard>
  1235. </long>
  1236. </metazone>
  1237. <metazone type="Africa_Western">
  1238. <long>
  1239. <standard>Ora Africii Occidentale</standard>
  1240. <daylight>Ora de vară a Africii Occidentale</daylight>
  1241. </long>
  1242. </metazone>
  1243. <metazone type="Alaska">
  1244. <long>
  1245. <generic>Ora zonei Alaska</generic>
  1246. <standard>Ora standard în zona Alaska</standard>
  1247. <daylight>Ora de vară în zona Alaska</daylight>
  1248. </long>
  1249. </metazone>
  1250. <metazone type="Alaska_Hawaii">
  1251. <long>
  1252. <generic>Ora zonei Alaska-Hawaii</generic>
  1253. <standard>Ora standard în zona Alaska-Hawaii</standard>
  1254. <daylight>Ora de vară în zona Alaska-Hawaii</daylight>
  1255. </long>
  1256. </metazone>
  1257. <metazone type="Amazon">
  1258. <long>
  1259. <standard>Ora Amazon</standard>
  1260. <daylight>Ora de vară Amazon</daylight>
  1261. </long>
  1262. </metazone>
  1263. <metazone type="America_Central">
  1264. <long>
  1265. <generic>Ora Centrală</generic>
  1266. <standard>Ora standard centrală</standard>
  1267. <daylight>Ora de vară centrală</daylight>
  1268. </long>
  1269. </metazone>
  1270. <metazone type="America_Eastern">
  1271. <long>
  1272. <generic>Ora orientală</generic>
  1273. <standard>Ora standard orientală</standard>
  1274. <daylight>Ora de vară orientală</daylight>
  1275. </long>
  1276. </metazone>
  1277. <metazone type="America_Mountain">
  1278. <long>
  1279. <generic>Ora zonei montane</generic>
  1280. <standard>Ora standard în zona montană</standard>
  1281. <daylight>Ora de vară în zona montană</daylight>
  1282. </long>
  1283. </metazone>
  1284. <metazone type="America_Pacific">
  1285. <long>
  1286. <generic>Ora zonei Pacific</generic>
  1287. <standard>Ora standard în zona Pacific</standard>
  1288. <daylight>Ora de vară în zona Pacific</daylight>
  1289. </long>
  1290. </metazone>
  1291. <metazone type="Argentina">
  1292. <long>
  1293. <standard>Ora Argentinei</standard>
  1294. <daylight>Ora de vară a Argentinei</daylight>
  1295. </long>
  1296. </metazone>
  1297. <metazone type="Argentina_Western">
  1298. <long>
  1299. <standard>Ora Argentinei Occidentale</standard>
  1300. </long>
  1301. </metazone>
  1302. <metazone type="Atlantic">
  1303. <long>
  1304. <generic>Ora zonei Atlantic</generic>
  1305. <standard>Ora standard în zona Atlantic</standard>
  1306. <daylight>Ora de vară în zona Atlantic</daylight>
  1307. </long>
  1308. </metazone>
  1309. <metazone type="Australia_Central">
  1310. <long>
  1311. <generic>Ora Australiei Centrale</generic>
  1312. <daylight>Ora de vară a Australiei Centrale</daylight>
  1313. </long>
  1314. </metazone>
  1315. <metazone type="Australia_CentralWestern">
  1316. <long>
  1317. <generic>Ora Australiei Central Occidentale</generic>
  1318. <standard>Ora standard a Australiei Central Occidentale</standard>
  1319. <daylight>Ora de vară a Australiei Central Occidentale</daylight>
  1320. </long>
  1321. </metazone>
  1322. <metazone type="Australia_Eastern">
  1323. <long>
  1324. <generic>Ora Australiei Orientale</generic>
  1325. <standard>Ora standard a Australiei Orientale</standard>
  1326. <daylight>Ora de vară a Australiei Orientale</daylight>
  1327. </long>
  1328. </metazone>
  1329. <metazone type="Australia_Western">
  1330. <long>
  1331. <generic>Ora Australiei Occidentale</generic>
  1332. <daylight>Ora de vară a Australiei Occidentale</daylight>
  1333. </long>
  1334. </metazone>
  1335. <metazone type="Bering">
  1336. <long>
  1337. <generic>Ora Bering</generic>
  1338. <standard>Ora standard Bering</standard>
  1339. <daylight>Ora de vară Bering</daylight>
  1340. </long>
  1341. </metazone>
  1342. <metazone type="Bolivia">
  1343. <long>
  1344. <standard>Ora Boliviei</standard>
  1345. </long>
  1346. </metazone>
  1347. <metazone type="Davis">
  1348. <long>
  1349. <standard>Ora Davis</standard>
  1350. </long>
  1351. </metazone>
  1352. <metazone type="DumontDUrville">
  1353. <long>
  1354. <standard>Ora Dumont-d'Urville</standard>
  1355. </long>
  1356. </metazone>
  1357. <metazone type="Europe_Central">
  1358. <long>
  1359. <standard>Ora Europei Centrale</standard>
  1360. <daylight>Ora de vară a Europei Centrale</daylight>
  1361. </long>
  1362. </metazone>
  1363. <metazone type="Europe_Eastern">
  1364. <long>
  1365. <standard>Ora Europei de Est</standard>
  1366. <daylight>Ora de vară a Europei de Est</daylight>
  1367. </long>
  1368. </metazone>
  1369. <metazone type="Europe_Western">
  1370. <long>
  1371. <standard>Ora Europei Occidentale</standard>
  1372. <daylight>Ora de vară a Europei Occidentale</daylight>
  1373. </long>
  1374. <short>
  1375. <standard>WET</standard>
  1376. <daylight>WEST</daylight>
  1377. </short>
  1378. </metazone>
  1379. <metazone type="GMT">
  1380. <long>
  1381. <standard>Greenwich Mean Time</standard>
  1382. </long>
  1383. <short>
  1384. <standard>GMT</standard>
  1385. </short>
  1386. <commonlyUsed>true</commonlyUsed>
  1387. </metazone>
  1388. <metazone type="Lord_Howe">
  1389. <long>
  1390. <generic>Ora Lord Howe</generic>
  1391. <standard>Ora standard Lord Howe</standard>
  1392. <daylight>Ora de vară Lord Howe</daylight>
  1393. </long>
  1394. </metazone>
  1395. <metazone type="Mawson">
  1396. <long>
  1397. <standard>Ora Mawson</standard>
  1398. </long>
  1399. </metazone>
  1400. <metazone type="Rothera">
  1401. <long>
  1402. <standard>Ora Rothera</standard>
  1403. </long>
  1404. </metazone>
  1405. <metazone type="Syowa">
  1406. <long>
  1407. <standard>Ora Syowa</standard>
  1408. </long>
  1409. </metazone>
  1410. <metazone type="Vostok">
  1411. <long>
  1412. <standard>Ora Vostok</standard>
  1413. </long>
  1414. </metazone>
  1415. </timeZoneNames>
  1416. </dates>
  1417. <numbers>
  1418. <symbols>
  1419. <decimal>,</decimal>
  1420. <group>.</group>
  1421. <list>;</list>
  1422. <percentSign>%</percentSign>
  1423. <nativeZeroDigit>0</nativeZeroDigit>
  1424. <patternDigit>#</patternDigit>
  1425. <plusSign>+</plusSign>
  1426. <minusSign>-</minusSign>
  1427. <exponential>E</exponential>
  1428. <perMille>‰</perMille>
  1429. <infinity>∞</infinity>
  1430. <nan>NaN</nan>
  1431. </symbols>
  1432. <decimalFormats>
  1433. <decimalFormatLength>
  1434. <decimalFormat>
  1435. <pattern>#,##0.###</pattern>
  1436. </decimalFormat>
  1437. </decimalFormatLength>
  1438. </decimalFormats>
  1439. <scientificFormats>
  1440. <scientificFormatLength>
  1441. <scientificFormat>
  1442. <pattern>#E0</pattern>
  1443. </scientificFormat>
  1444. </scientificFormatLength>
  1445. </scientificFormats>
  1446. <percentFormats>
  1447. <percentFormatLength>
  1448. <percentFormat>
  1449. <pattern>#,##0%</pattern>
  1450. </percentFormat>
  1451. </percentFormatLength>
  1452. </percentFormats>
  1453. <currencyFormats>
  1454. <currencyFormatLength>
  1455. <currencyFormat>
  1456. <pattern>#,##0.00 ¤</pattern>
  1457. </currencyFormat>
  1458. </currencyFormatLength>
  1459. <unitPattern count="few">{0} {1}</unitPattern>
  1460. <unitPattern count="one">{0} {1}</unitPattern>
  1461. <unitPattern count="other">{0} {1}</unitPattern>
  1462. </currencyFormats>
  1463. <currencies>
  1464. <currency type="ADP">
  1465. <displayName>pesetă andorrană</displayName>
  1466. <displayName count="few">pesete andorrane</displayName>
  1467. <displayName count="other">pesete andorrane</displayName>
  1468. </currency>
  1469. <currency type="AED">
  1470. <displayName>dirham Emiratele Arabe Unite</displayName>
  1471. <displayName count="few">dirhami Emiratele Arabe Unite</displayName>
  1472. <displayName count="other">dirhami Emiratele Arabe Unite</displayName>
  1473. </currency>
  1474. <currency type="ALL">
  1475. <displayName>leka albanez</displayName>
  1476. <displayName count="few">leka albanezi</displayName>
  1477. <displayName count="one">leka albanez</displayName>
  1478. <displayName count="other">leka albanezi</displayName>
  1479. </currency>
  1480. <currency type="AMD">
  1481. <displayName>dram armenesc</displayName>
  1482. <displayName count="few">drami armenești</displayName>
  1483. <displayName count="one">dram armenesc</displayName>
  1484. <displayName count="other">drami armenești</displayName>
  1485. </currency>
  1486. <currency type="ANG">
  1487. <displayName>gulden Antilele Olandeze</displayName>
  1488. <displayName count="few">guldeni Antilele Olandeze</displayName>
  1489. <displayName count="other">guldeni Antilele Olandeze</displayName>
  1490. </currency>
  1491. <currency type="ARP">
  1492. <displayName>peso argentinian (1983–1985)</displayName>
  1493. <displayName count="few">pesos argentinieni (ARP)</displayName>
  1494. <displayName count="one">peso argentinian (ARP)</displayName>
  1495. <displayName count="other">pesos argentinieni (ARP)</displayName>
  1496. </currency>
  1497. <currency type="ARS">
  1498. <displayName>peso argentinian</displayName>
  1499. <displayName count="few">pesos argentinieni</displayName>
  1500. <displayName count="other">pesos argentinieni</displayName>
  1501. </currency>
  1502. <currency type="ATS">
  1503. <displayName>șiling austriac</displayName>
  1504. <displayName count="few">șilingi austrieci</displayName>
  1505. <displayName count="other">șilingi austrieci</displayName>
  1506. </currency>
  1507. <currency type="AUD">
  1508. <displayName>dolar australian</displayName>
  1509. <displayName count="few">dolari australieni</displayName>
  1510. <displayName count="other">dolari australieni</displayName>
  1511. </currency>
  1512. <currency type="AZN">
  1513. <displayName>manat Azerbaidjan</displayName>
  1514. <displayName count="few">manați Azerbaidjan</displayName>
  1515. <displayName count="other">manați Azerbaidjan</displayName>
  1516. </currency>
  1517. <currency type="BAD">
  1518. <displayName>dinar Bosnia-Herțegovina</displayName>
  1519. <displayName count="few">dinari Bosnia-Herțegovina</displayName>
  1520. <displayName count="other">dinari Bosnia-Herțegovina</displayName>
  1521. </currency>
  1522. <currency type="BAM">
  1523. <displayName>marcă convertibilă bosniacă</displayName>
  1524. <displayName count="few">mărci convertibile bosniace</displayName>
  1525. <displayName count="other">mărci convertibile bosniace</displayName>
  1526. </currency>
  1527. <currency type="BBD">
  1528. <displayName>dolar Barbados</displayName>
  1529. <displayName count="few">dolari Barbados</displayName>
  1530. <displayName count="other">dolari Barbados</displayName>
  1531. </currency>
  1532. <currency type="BDT">
  1533. <displayName>taka Bangladeș</displayName>
  1534. </currency>
  1535. <currency type="BEC">
  1536. <displayName>franc belgian (convertibil)</displayName>
  1537. <displayName count="few">franci belgieni (convertibili)</displayName>
  1538. <displayName count="other">franci belgieni (convertibili)</displayName>
  1539. </currency>
  1540. <currency type="BEF">
  1541. <displayName>franc belgian</displayName>
  1542. <displayName count="few">franci belgieni</displayName>
  1543. <displayName count="other">franci belgieni</displayName>
  1544. </currency>
  1545. <currency type="BEL">
  1546. <displayName>franc belgian (financiar)</displayName>
  1547. <displayName count="few">franci belgieni (financiari)</displayName>
  1548. <displayName count="other">franci belgieni (financiari)</displayName>
  1549. </currency>
  1550. <currency type="BGN">
  1551. <displayName>leva bulgărească nouă</displayName>
  1552. <displayName count="few">leva bulgărești noi</displayName>
  1553. <displayName count="other">leva bulgărești noi</displayName>
  1554. </currency>
  1555. <currency type="BIF">
  1556. <displayName>franc Burundi</displayName>
  1557. <displayName count="few">franci Burundi</displayName>
  1558. <displayName count="other">franci Burundi</displayName>
  1559. </currency>
  1560. <currency type="BMD">
  1561. <displayName>dolar Bermude</displayName>
  1562. <displayName count="few">dolari Bermude</displayName>
  1563. <displayName count="other">dolari Bermude</displayName>
  1564. </currency>
  1565. <currency type="BND">
  1566. <displayName>dolar Brunei</displayName>
  1567. <displayName count="few">dolari Brunei</displayName>
  1568. <displayName count="other">dolari Brunei</displayName>
  1569. </currency>
  1570. <currency type="BOB">
  1571. <displayName>bolivian bolivian</displayName>
  1572. <displayName count="few">bolivieni bolivieni</displayName>
  1573. <displayName count="other">bolivieni bolivieni</displayName>
  1574. </currency>
  1575. <currency type="BOP">
  1576. <displayName>peso bolivian</displayName>
  1577. <displayName count="few">pesos bolivieni</displayName>
  1578. <displayName count="other">pesos bolivieni</displayName>
  1579. </currency>
  1580. <currency type="BOV">
  1581. <displayName>mvdol bolivian</displayName>
  1582. </currency>
  1583. <currency type="BRE">
  1584. <displayName>cruzeiro brazilian (1990–1993)</displayName>
  1585. </currency>
  1586. <currency type="BRL">
  1587. <displayName>real brazilian</displayName>
  1588. <displayName count="few">reali brazilieni</displayName>
  1589. <displayName count="other">reali brazilieni</displayName>
  1590. </currency>
  1591. <currency type="BRR">
  1592. <displayName>cruzeiro brazilian</displayName>
  1593. </currency>
  1594. <currency type="BSD">
  1595. <displayName>dolar Bahamas</displayName>
  1596. <displayName count="few">dolari Bahamas</displayName>
  1597. <displayName count="other">dolari Bahamas</displayName>
  1598. </currency>
  1599. <currency type="BTN">
  1600. <displayName>ngultrum Bhutan</displayName>
  1601. </currency>
  1602. <currency type="BUK">
  1603. <displayName>kyat birman</displayName>
  1604. </currency>
  1605. <currency type="BYR">
  1606. <displayName>rublă bielorusă</displayName>
  1607. <displayName count="few">ruble bieloruse</displayName>
  1608. <displayName count="other">ruble bieloruse</displayName>
  1609. </currency>
  1610. <currency type="BZD">
  1611. <displayName>dolar Belize</displayName>
  1612. <displayName count="few">dolari Belize</displayName>
  1613. <displayName count="other">dolari Belize</displayName>
  1614. </currency>
  1615. <currency type="CAD">
  1616. <displayName>dolar canadian</displayName>
  1617. <displayName count="few">dolari canadieni</displayName>
  1618. <displayName count="other">dolari canadieni</displayName>
  1619. </currency>
  1620. <currency type="CDF">
  1621. <displayName>franc congolez</displayName>
  1622. <displayName count="few">franci congolezi</displayName>
  1623. <displayName count="other">franci congolezi</displayName>
  1624. </currency>
  1625. <currency type="CHF">
  1626. <displayName>franc elvețian</displayName>
  1627. <displayName count="few">franci elvețieni</displayName>
  1628. <displayName count="other">franci elvețieni</displayName>
  1629. </currency>
  1630. <currency type="CLP">
  1631. <displayName>peso chilian</displayName>
  1632. <displayName count="few">pesos chilieni</displayName>
  1633. <displayName count="other">pesos chilieni</displayName>
  1634. </currency>
  1635. <currency type="CNY">
  1636. <displayName>yuan renminbi chinezesc</displayName>
  1637. <displayName count="few">yuani renminbi chinezești</displayName>
  1638. <displayName count="other">yuani renminbi chinezești</displayName>
  1639. </currency>
  1640. <currency type="COP">
  1641. <displayName>peso columbian</displayName>
  1642. <displayName count="few">pesos columbieni</displayName>
  1643. <displayName count="other">pesos columbieni</displayName>
  1644. </currency>
  1645. <currency type="CRC">
  1646. <displayName>colon costarican</displayName>
  1647. <displayName count="few">coloni costaricani</displayName>
  1648. <displayName count="other">coloni costaricani</displayName>
  1649. </currency>
  1650. <currency type="CSD">
  1651. <displayName>dinar vechi Serbia și Muntenegru</displayName>
  1652. <displayName count="few">dinari vechi Serbia și Muntenegru</displayName>
  1653. <displayName count="other">dinari vechi Serbia și Muntenegru</displayName>
  1654. </currency>
  1655. <currency type="CUP">
  1656. <displayName>peso cubanez</displayName>
  1657. <displayName count="few">pesos cubanezi</displayName>
  1658. <displayName count="other">pesos cubanezi</displayName>
  1659. </currency>
  1660. <currency type="CVE">
  1661. <displayName>escudo Capul Verde</displayName>
  1662. <displayName count="few">escudo Capul Verde</displayName>
  1663. <displayName count="one">escudo Capul Verde</displayName>
  1664. <displayName count="other">escudo Capul Verde</displayName>
  1665. </currency>
  1666. <currency type="CYP">
  1667. <displayName>liră cipriotă</displayName>
  1668. <displayName count="few">lire cipriote</displayName>
  1669. <displayName count="other">lire cipriote</displayName>
  1670. </currency>
  1671. <currency type="CZK">
  1672. <displayName>coroană cehă</displayName>
  1673. <displayName count="few">coroane cehe</displayName>
  1674. <displayName count="other">coroane cehe</displayName>
  1675. </currency>
  1676. <currency type="DDM">
  1677. <displayName>marcă est-germană</displayName>
  1678. <displayName count="few">mărci est-germane</displayName>
  1679. <displayName count="other">mărci est-germane</displayName>
  1680. </currency>
  1681. <currency type="DEM">
  1682. <displayName>marcă germană</displayName>
  1683. <displayName count="few">mărci germane</displayName>
  1684. <displayName count="other">mărci germane</displayName>
  1685. </currency>
  1686. <currency type="DJF">
  1687. <displayName>franc Djibouti</displayName>
  1688. <displayName count="few">franci Djibouti</displayName>
  1689. <displayName count="other">franci Djibouti</displayName>
  1690. </currency>
  1691. <currency type="DKK">
  1692. <displayName>coroană daneză</displayName>
  1693. <displayName count="few">coroane daneze</displayName>
  1694. <displayName count="other">coroane daneze</displayName>
  1695. </currency>
  1696. <currency type="DOP">
  1697. <displayName>peso dominican</displayName>
  1698. <displayName count="few">pesos dominicani</displayName>
  1699. <displayName count="other">pesos dominicani</displayName>
  1700. </currency>
  1701. <currency type="DZD">
  1702. <displayName>dinar algerian</displayName>
  1703. <displayName count="few">dinari algerieni</displayName>
  1704. <displayName count="other">dinari algerieni</displayName>
  1705. </currency>
  1706. <currency type="ECS">
  1707. <displayName>sucre Ecuador</displayName>
  1708. </currency>
  1709. <currency type="EEK">
  1710. <displayName>coroană estoniană</displayName>
  1711. <displayName count="few">coroane estoniene</displayName>
  1712. <displayName count="other">coroane estoniene</displayName>
  1713. </currency>
  1714. <currency type="EGP">
  1715. <displayName>liră egipteană</displayName>
  1716. <displayName count="few">lire egiptene</displayName>
  1717. <displayName count="other">lire egiptene</displayName>
  1718. </currency>
  1719. <currency type="ESA">
  1720. <displayName>peseta spaniolă (cont A)</displayName>
  1721. </currency>
  1722. <currency type="ESB">
  1723. <displayName>peseta spaniolă (cont convertibil)</displayName>
  1724. </currency>
  1725. <currency type="ESP">
  1726. <displayName>pesetă spaniolă</displayName>
  1727. <displayName count="few">pesete spaniole</displayName>
  1728. <displayName count="other">pesete spaniole</displayName>
  1729. </currency>
  1730. <currency type="ETB">
  1731. <displayName>birr Etiopia</displayName>
  1732. <displayName count="few">birr Etiopia</displayName>
  1733. <displayName count="one">birr Etiopia</displayName>
  1734. <displayName count="other">birr Etiopia</displayName>
  1735. </currency>
  1736. <currency type="EUR">
  1737. <displayName>euro</displayName>
  1738. </currency>
  1739. <currency type="FIM">
  1740. <displayName>marcă finlandeză</displayName>
  1741. <displayName count="few">mărci finlandeze</displayName>
  1742. <displayName count="one">mărci finlandeze</displayName>
  1743. <displayName count="other">mărci finlandeze</displayName>
  1744. </currency>
  1745. <currency type="FJD">
  1746. <displayName>dolar Fiji</displayName>
  1747. <displayName count="few">dolari Fiji</displayName>
  1748. <displayName count="other">dolari Fiji</displayName>
  1749. </currency>
  1750. <currency type="FKP">
  1751. <displayName>liră Insulele Falkland</displayName>
  1752. <displayName count="few">lire Insulele Falkland</displayName>
  1753. <displayName count="other">lire Insulele Falkland</displayName>
  1754. </currency>
  1755. <currency type="FRF">
  1756. <displayName>franc francez</displayName>
  1757. <displayName count="few">franci francezi</displayName>
  1758. <displayName count="other">franci francezi</displayName>
  1759. </currency>
  1760. <currency type="GBP">
  1761. <displayName>liră sterlină</displayName>
  1762. <displayName count="few">lire sterline</displayName>
  1763. <displayName count="other">lire sterline</displayName>
  1764. </currency>
  1765. <currency type="GEL">
  1766. <displayName>lari Georgia</displayName>
  1767. <displayName count="few">lari Georgia</displayName>
  1768. <displayName count="one">lari Georgia</displayName>
  1769. <displayName count="other">lari Georgia</displayName>
  1770. </currency>
  1771. <currency type="GHC">
  1772. <displayName>cedi Ghana</displayName>
  1773. </currency>
  1774. <currency type="GIP">
  1775. <displayName>liră Gibraltar</displayName>
  1776. <displayName count="few">lire Gibraltar</displayName>
  1777. <displayName count="other">lire Gibraltar</displayName>
  1778. </currency>
  1779. <currency type="GMD">
  1780. <displayName>dalasi Gambia</displayName>
  1781. </currency>
  1782. <currency type="GNF">
  1783. <displayName>franc Guineea</displayName>
  1784. <displayName count="few">franci Guineea</displayName>
  1785. <displayName count="other">franci Guineea</displayName>
  1786. </currency>
  1787. <currency type="GRD">
  1788. <displayName>drahmă grecească</displayName>
  1789. <displayName count="few">drahme grecești</displayName>
  1790. <displayName count="other">drahme grecești</displayName>
  1791. </currency>
  1792. <currency type="GTQ">
  1793. <displayName>quetzal Guatemala</displayName>
  1794. </currency>
  1795. <currency type="GWP">
  1796. <displayName>peso Guineea-Bissau</displayName>
  1797. <displayName count="few">pesos Guineea-Bissau</displayName>
  1798. <displayName count="other">pesos Guineea-Bissau</displayName>
  1799. </currency>
  1800. <currency type="GYD">
  1801. <displayName>dolar Guyana</displayName>
  1802. <displayName count="few">dolari Guyana</displayName>
  1803. <displayName count="other">dolari Guyana</displayName>
  1804. </currency>
  1805. <currency type="HKD">
  1806. <displayName>dolar Hong Kong</displayName>
  1807. <displayName count="few">dolari Hong Kong</displayName>
  1808. <displayName count="other">dolari Hong Kong</displayName>
  1809. </currency>
  1810. <currency type="HNL">
  1811. <displayName>lempira Honduras</displayName>
  1812. </currency>
  1813. <currency type="HRD">
  1814. <displayName>dinar croat</displayName>
  1815. <displayName count="few">dinari croați</displayName>
  1816. <displayName count="other">dinari croați</displayName>
  1817. </currency>
  1818. <currency type="HRK">
  1819. <displayName>kuna croată</displayName>
  1820. <displayName count="few">kune croate</displayName>
  1821. <displayName count="other">kune croate</displayName>
  1822. </currency>
  1823. <currency type="HTG">
  1824. <displayName>gourde Haiti</displayName>
  1825. </currency>
  1826. <currency type="HUF">
  1827. <displayName>forint maghiar</displayName>
  1828. <displayName count="few">forinți maghiari</displayName>
  1829. <displayName count="other">forinți maghiari</displayName>
  1830. </currency>
  1831. <currency type="IDR">
  1832. <displayName>rupie indoneziană</displayName>
  1833. <displayName count="few">rupii indoneziene</displayName>
  1834. <displayName count="other">rupii indoneziene</displayName>
  1835. </currency>
  1836. <currency type="IEP">
  1837. <displayName>liră irlandeză</displayName>
  1838. <displayName count="few">lire irlandeze</displayName>
  1839. <displayName count="other">lire irlandeze</displayName>
  1840. </currency>
  1841. <currency type="ILP">
  1842. <displayName>liră israeliană</displayName>
  1843. <displayName count="few">lire israeliene</displayName>
  1844. <displayName count="other">lire israeliene</displayName>
  1845. </currency>
  1846. <currency type="ILS">
  1847. <displayName>șechel israelian nou</displayName>
  1848. <displayName count="few">șecheli israelieni noi</displayName>
  1849. <displayName count="other">șecheli israelieni noi</displayName>
  1850. </currency>
  1851. <currency type="INR">
  1852. <displayName>rupie indiană</displayName>
  1853. <displayName count="few">rupii indiene</displayName>
  1854. <displayName count="other">rupii indiene</displayName>
  1855. </currency>
  1856. <currency type="IQD">
  1857. <displayName>dinar irakian</displayName>
  1858. <displayName count="few">dinari irakieni</displayName>
  1859. <displayName count="other">dinari irakieni</displayName>
  1860. </currency>
  1861. <currency type="IRR">
  1862. <displayName>rial iranian</displayName>
  1863. <displayName count="few">riali iranieni</displayName>
  1864. <displayName count="other">riali iranieni</displayName>
  1865. </currency>
  1866. <currency type="ISK">
  1867. <displayName>coroană islandeză</displayName>
  1868. <displayName count="few">coroane islandeze</displayName>
  1869. <displayName count="other">coroane islandeze</displayName>
  1870. </currency>
  1871. <currency type="ITL">
  1872. <displayName>liră italiană</displayName>
  1873. <displayName count="few">lire italiene</displayName>
  1874. <displayName count="other">lire italiene</displayName>
  1875. </currency>
  1876. <currency type="JMD">
  1877. <displayName>dolar jamaican</displayName>
  1878. <displayName count="few">dolari jamaicani</displayName>
  1879. <displayName count="other">dolari jamaicani</displayName>
  1880. </currency>
  1881. <currency type="JOD">
  1882. <displayName>dinar iordanian</displayName>
  1883. <displayName count="few">dinari iordanieni</displayName>
  1884. <displayName count="other">dinari iordanieni</displayName>
  1885. </currency>
  1886. <currency type="JPY">
  1887. <displayName>yen japonez</displayName>
  1888. <displayName count="few">yeni japonezi</displayName>
  1889. <displayName count="other">yeni japonezi</displayName>
  1890. </currency>
  1891. <currency type="KES">
  1892. <displayName>șiling kenyan</displayName>
  1893. <displayName count="few">șilingi kenyeni</displayName>
  1894. <displayName count="other">șilingi kenyeni</displayName>
  1895. </currency>
  1896. <currency type="KGS">
  1897. <displayName>som Kirghizstan</displayName>
  1898. </currency>
  1899. <currency type="KHR">
  1900. <displayName>riel cambodgian</displayName>
  1901. <displayName count="few">rieli cambodgieni</displayName>
  1902. <displayName count="other">rieli cambodgieni</displayName>
  1903. </currency>
  1904. <currency type="KMF">
  1905. <displayName>franc comorian</displayName>
  1906. <displayName count="few">franci comorieni</displayName>
  1907. <displayName count="other">franci comorieni</displayName>
  1908. </currency>
  1909. <currency type="KPW">
  1910. <displayName>won nord-coreean</displayName>
  1911. <displayName count="few">woni nord-coreeni</displayName>
  1912. <displayName count="other">woni nord-coreeni</displayName>
  1913. </currency>
  1914. <currency type="KRW">
  1915. <displayName>won sud-coreean</displayName>
  1916. <displayName count="few">woni sud-coreeni</displayName>
  1917. <displayName count="other">woni sud-coreeni</displayName>
  1918. </currency>
  1919. <currency type="KWD">
  1920. <displayName>dinar kuweitian</displayName>
  1921. <displayName count="few">dinari kuweitieni</displayName>
  1922. <displayName count="other">dinari kuweitieni</displayName>
  1923. </currency>
  1924. <currency type="KYD">
  1925. <displayName>dolar Insulele Cayman</displayName>
  1926. <displayName count="few">dolari Insulele Cayman</displayName>
  1927. <displayName count="other">dolari Insulele Cayman</displayName>
  1928. </currency>
  1929. <currency type="LAK">
  1930. <displayName>kip Laos</displayName>
  1931. </currency>
  1932. <currency type="LBP">
  1933. <displayName>liră libaneză</displayName>
  1934. <displayName count="few">lire libaneze</displayName>
  1935. <displayName count="other">lire libaneze</displayName>
  1936. </currency>
  1937. <currency type="LKR">
  1938. <displayName>rupie Sri Lanka</displayName>
  1939. <displayName count="few">rupii Sri Lanka</displayName>
  1940. <displayName count="other">rupii Sri Lanka</displayName>
  1941. </currency>
  1942. <currency type="LRD">
  1943. <displayName>dolar liberian</displayName>
  1944. <displayName count="few">dolari liberieni</displayName>
  1945. <displayName count="other">dolari liberieni</displayName>
  1946. </currency>
  1947. <currency type="LTL">
  1948. <displayName>litu lituanian</displayName>
  1949. <displayName count="few">lite lituaniene</displayName>
  1950. <displayName count="other">lite lituaniene</displayName>
  1951. </currency>
  1952. <currency type="LUC">
  1953. <displayName>franc convertibil luxemburghez</displayName>
  1954. <displayName count="few">franci convertibili luxemburghezi</displayName>
  1955. <displayName count="other">franci convertibili luxemburghezi</displayName>
  1956. </currency>
  1957. <currency type="LUF">
  1958. <displayName>franc luxemburghez</displayName>
  1959. <displayName count="few">franci luxemburghezi</displayName>
  1960. <displayName count="other">franci luxemburghezi</displayName>
  1961. </currency>
  1962. <currency type="LUL">
  1963. <displayName>franc financiar luxemburghez</displayName>
  1964. <displayName count="few">franci financiari luxemburghezi</displayName>
  1965. <displayName count="other">franci financiari luxemburghezi</displayName>
  1966. </currency>
  1967. <currency type="LVL">
  1968. <displayName>lats Letonia</displayName>
  1969. </currency>
  1970. <currency type="LVR">
  1971. <displayName>rublă Letonia</displayName>
  1972. <displayName count="few">ruble Letonia</displayName>
  1973. <displayName count="other">ruble Letonia</displayName>
  1974. </currency>
  1975. <currency type="LYD">
  1976. <displayName>dinar libian</displayName>
  1977. <displayName count="few">dinari libieni</displayName>
  1978. <displayName count="other">dinari libieni</displayName>
  1979. </currency>
  1980. <currency type="MAD">
  1981. <displayName>dirham marocan</displayName>
  1982. <displayName count="few">dirhami marocani</displayName>
  1983. <displayName count="other">dirhami marocani</displayName>
  1984. </currency>
  1985. <currency type="MAF">
  1986. <displayName>franc marocan</displayName>
  1987. <displayName count="few">franci marocani</displayName>
  1988. <displayName count="other">franci marocani</displayName>
  1989. </currency>
  1990. <currency type="MDL">
  1991. <displayName>leu moldovenesc</displayName>
  1992. <displayName count="few">lei moldovenești</displayName>
  1993. <displayName count="other">lei moldovenești</displayName>
  1994. </currency>
  1995. <currency type="MGF">
  1996. <displayName>franc Madagascar</displayName>
  1997. <displayName count="few">franci Madagascar</displayName>
  1998. <displayName count="other">franci Madagascar</displayName>
  1999. </currency>
  2000. <currency type="MKD">
  2001. <displayName>dinar macedonean</displayName>
  2002. <displayName count="few">dinari macedoneni</displayName>
  2003. <displayName count="other">dinari macedoneni</displayName>
  2004. </currency>
  2005. <currency type="MLF">
  2006. <displayName>franc Mali</displayName>
  2007. <displayName count="few">franci Mali</displayName>
  2008. <displayName count="other">franci Mali</displayName>
  2009. </currency>
  2010. <currency type="MMK">
  2011. <displayName>kyat Myanmar</displayName>
  2012. </currency>
  2013. <currency type="MNT">
  2014. <displayName>tugrik mongol</displayName>
  2015. </currency>
  2016. <currency type="MTL">
  2017. <displayName>liră malteză</displayName>
  2018. <displayName count="few">lire malteze</displayName>
  2019. <displayName count="other">lire malteze</displayName>
  2020. </currency>
  2021. <currency type="MXN">
  2022. <displayName>peso mexican</displayName>
  2023. <displayName count="few">pesos mexicani</displayName>
  2024. <displayName count="other">pesos mexicani</displayName>
  2025. </currency>
  2026. <currency type="MXP">
  2027. <displayName>peso mexican de argint (1861–1992)</displayName>
  2028. <displayName count="few">pesos mexicani de argint (1861–1992</displayName>
  2029. <displayName count="other">pesos mexicani de argint (1861–1992</displayName>
  2030. </currency>
  2031. <currency type="MYR">
  2032. <displayName>ringgit malaiezian</displayName>
  2033. </currency>
  2034. <currency type="MZE">
  2035. <displayName>escudo Mozambic</displayName>
  2036. </currency>
  2037. <currency type="MZM">
  2038. <displayName>metical Mozambic vechi</displayName>
  2039. </currency>
  2040. <currency type="MZN">
  2041. <displayName>metical Mozambic</displayName>
  2042. </currency>
  2043. <currency type="NAD">
  2044. <displayName>dolar namibian</displayName>
  2045. <displayName count="few">dolari namibieni</displayName>
  2046. <displayName count="other">dolari namibieni</displayName>
  2047. </currency>
  2048. <currency type="NIC">
  2049. <displayName>cordoba Nicaragua</displayName>
  2050. </currency>
  2051. <currency type="NLG">
  2052. <displayName>gulden olandez</displayName>
  2053. <displayName count="few">guldeni olandezi</displayName>
  2054. <displayName count="other">guldeni olandezi</displayName>
  2055. </currency>
  2056. <currency type="NOK">
  2057. <displayName>coroană norvegiană</displayName>
  2058. <displayName count="few">coroane norvegiene</displayName>
  2059. <displayName count="other">coroane norvegiene</displayName>
  2060. </currency>
  2061. <currency type="NPR">
  2062. <displayName>rupie nepaleză</displayName>
  2063. <displayName count="few">rupii nepaleze</displayName>
  2064. <displayName count="other">rupii nepaleze</displayName>
  2065. </currency>
  2066. <currency type="NZD">
  2067. <displayName>dolar neozeelandez</displayName>
  2068. <displayName count="few">dolari neozeelandezi</displayName>
  2069. <displayName count="other">dolari neozeelandezi</displayName>
  2070. </currency>
  2071. <currency type="OMR">
  2072. <displayName>riyal Oman</displayName>
  2073. <displayName count="few">riyali Oman</displayName>
  2074. <displayName count="other">riyali Oman</displayName>
  2075. </currency>
  2076. <currency type="PAB">
  2077. <displayName>balboa panameză</displayName>
  2078. <displayName count="few">balboa panameze</displayName>
  2079. <displayName count="other">balboa panameze</displayName>
  2080. </currency>
  2081. <currency type="PEI">
  2082. <displayName>inti peruvian</displayName>
  2083. </currency>
  2084. <currency type="PEN">
  2085. <displayName>sol nou peruvian</displayName>
  2086. <displayName count="few">soli noi Peru</displayName>
  2087. <displayName count="other">soli noi Peru</displayName>
  2088. </currency>
  2089. <currency type="PES">
  2090. <displayName>sol peruvian</displayName>
  2091. <displayName count="few">soli Peru</displayName>
  2092. <displayName count="other">soli Peru</displayName>
  2093. </currency>
  2094. <currency type="PGK">
  2095. <displayName>kina Papua-Noua Guinee</displayName>
  2096. </currency>
  2097. <currency type="PHP">
  2098. <displayName>peso filipinez</displayName>
  2099. <displayName count="few">pesos filipinezi</displayName>
  2100. <displayName count="other">pesos filipinezi</displayName>
  2101. </currency>
  2102. <currency type="PKR">
  2103. <displayName>rupie pakistaneză</displayName>
  2104. <displayName count="few">rupii pakistaneze</displayName>
  2105. <displayName count="other">rupii pakistaneze</displayName>
  2106. </currency>
  2107. <currency type="PLN">
  2108. <displayName>zlot nou polonez</displayName>
  2109. <displayName count="few">zloți noi polonezi</displayName>
  2110. <displayName count="other">zloți noi polonezi</displayName>
  2111. </currency>
  2112. <currency type="PLZ">
  2113. <displayName>zlot polonez (1950–1995)</displayName>
  2114. <displayName count="few">zloți polonezi (1950–1995)</displayName>
  2115. <displayName count="other">zloți polonezi (1950–1995)</displayName>
  2116. </currency>
  2117. <currency type="PYG">
  2118. <displayName>guarani Paraguay</displayName>
  2119. </currency>
  2120. <currency type="QAR">
  2121. <displayName>riyal Qatar</displayName>
  2122. <displayName count="few">riyali Qatar</displayName>
  2123. <displayName count="other">riyali Qatar</displayName>
  2124. </currency>
  2125. <currency type="RHD">
  2126. <displayName>dolar rhodesian</displayName>
  2127. <displayName count="few">dolari rhodesieni</displayName>
  2128. <displayName count="other">dolari rhodesieni</displayName>
  2129. </currency>
  2130. <currency type="ROL">
  2131. <displayName>leu vechi</displayName>
  2132. <displayName count="few">lei vechi</displayName>
  2133. <displayName count="other">lei vechi</displayName>
  2134. </currency>
  2135. <currency type="RON">
  2136. <displayName>leu</displayName>
  2137. <displayName count="few">lei</displayName>
  2138. <displayName count="other">lei</displayName>
  2139. </currency>
  2140. <currency type="RSD">
  2141. <displayName>dinar sârbesc</displayName>
  2142. <displayName count="few">dinari sârbești</displayName>
  2143. <displayName count="other">dinari sârbești</displayName>
  2144. </currency>
  2145. <currency type="RUB">
  2146. <displayName>rublă rusească</displayName>
  2147. <displayName count="few">ruble rusești</displayName>
  2148. <displayName count="other">ruble rusești</displayName>
  2149. </currency>
  2150. <currency type="RWF">
  2151. <displayName>franc Rwanda</displayName>
  2152. <displayName count="few">franci Rwanda</displayName>
  2153. <displayName count="other">franci Rwanda</displayName>
  2154. </currency>
  2155. <currency type="SAR">
  2156. <displayName>riyal Arabia Saudită</displayName>
  2157. <displayName count="few">riyali Arabia Saudită</displayName>
  2158. <displayName count="other">riyali Arabia Saudită</displayName>
  2159. </currency>
  2160. <currency type="SBD">
  2161. <displayName>dolar Insulele Solomon</displayName>
  2162. <displayName count="few">dolari Insulele Solomon</displayName>
  2163. <displayName count="other">dolari Insulele Solomon</displayName>
  2164. </currency>
  2165. <currency type="SCR">
  2166. <displayName>rupie Seychelles</displayName>
  2167. <displayName count="few">rupii Seychelles</displayName>
  2168. <displayName count="other">rupii Seychelles</displayName>
  2169. </currency>
  2170. <currency type="SDD">
  2171. <displayName>dinar sudanez</displayName>
  2172. <displayName count="few">dinari sudanezi</displayName>
  2173. <displayName count="other">dinari sudanezi</displayName>
  2174. </currency>
  2175. <currency type="SDP">
  2176. <displayName>liră sudaneză</displayName>
  2177. <displayName count="few">lire sudaneze</displayName>
  2178. <displayName count="other">lire sudaneze</displayName>
  2179. </currency>
  2180. <currency type="SEK">
  2181. <displayName>coroană suedeză</displayName>
  2182. <displayName count="few">coroane suedeze</displayName>
  2183. <displayName count="other">coroane suedeze</displayName>
  2184. </currency>
  2185. <currency type="SGD">
  2186. <displayName>dolar Singapore</displayName>
  2187. <displayName count="few">dolari Singapore</displayName>
  2188. <displayName count="other">dolari Singapore</displayName>
  2189. </currency>
  2190. <currency type="SHP">
  2191. <displayName>liră Insula Sf. Elena</displayName>
  2192. <displayName count="few">lire Insula Sf. Elena</displayName>
  2193. <displayName count="other">lire Insula Sf. Elena</displayName>
  2194. </currency>
  2195. <currency type="SIT">
  2196. <displayName>tolar sloven</displayName>
  2197. <displayName count="few">tolari sloveni</displayName>
  2198. <displayName count="other">tolari sloveni</displayName>
  2199. </currency>
  2200. <currency type="SKK">
  2201. <displayName>coroană slovacă</displayName>
  2202. <displayName count="few">coroane slovace</displayName>
  2203. <displayName count="other">coroane slovace</displayName>
  2204. </currency>
  2205. <currency type="SLL">
  2206. <displayName>leu Sierra Leone</displayName>
  2207. <displayName count="few">lei Sierra Leone</displayName>
  2208. <displayName count="other">lei Sierra Leone</displayName>
  2209. </currency>
  2210. <currency type="SOS">
  2211. <displayName>șiling somalez</displayName>
  2212. <displayName count="few">șilingi somalezi</displayName>
  2213. <displayName count="other">șilingi somalezi</displayName>
  2214. </currency>
  2215. <currency type="SRD">
  2216. <displayName>dolar Surinam</displayName>
  2217. <displayName count="few">dolari Surinam</displayName>
  2218. <displayName count="other">dolari Surinam</displayName>
  2219. </currency>
  2220. <currency type="SRG">
  2221. <displayName>gulden Surinam</displayName>
  2222. <displayName count="few">guldeni Surinam</displayName>
  2223. <displayName count="other">guldeni Surinam</displayName>
  2224. </currency>
  2225. <currency type="STD">
  2226. <displayName>dobra Sao Tome și Principe</displayName>
  2227. </currency>
  2228. <currency type="SUR">
  2229. <displayName>rublă sovietică</displayName>
  2230. <displayName count="few">ruble sovietice</displayName>
  2231. <displayName count="other">ruble sovietice</displayName>
  2232. </currency>
  2233. <currency type="SVC">
  2234. <displayName>colon El Salvador</displayName>
  2235. <displayName count="few">coloni El Salvador</displayName>
  2236. <displayName count="other">coloni El Salvador</displayName>
  2237. </currency>
  2238. <currency type="SYP">
  2239. <displayName>liră siriană</displayName>
  2240. <displayName count="few">lire siriene</displayName>
  2241. <displayName count="other">lire siriene</displayName>
  2242. </currency>
  2243. <currency type="THB">
  2244. <displayName>baht thailandez</displayName>
  2245. </currency>
  2246. <currency type="TJR">
  2247. <displayName>rublă Tadjikistan</displayName>
  2248. <displayName count="few">ruble Tadjikistan</displayName>
  2249. <displayName count="other">ruble Tadjikistan</displayName>
  2250. </currency>
  2251. <currency type="TND">
  2252. <displayName>dinar tunisian</displayName>
  2253. <displayName count="few">dinari tunisieni</displayName>
  2254. <displayName count="other">dinari tunisieni</displayName>
  2255. </currency>
  2256. <currency type="TRL">
  2257. <displayName>liră turcească</displayName>
  2258. <displayName count="other">lire turcești</displayName>
  2259. </currency>
  2260. <currency type="TRY">
  2261. <displayName>liră turcească nouă</displayName>
  2262. <displayName count="other">lire turcești noi</displayName>
  2263. </currency>
  2264. <currency type="TTD">
  2265. <displayName>dolar Trinidad-Tobago</displayName>
  2266. <displayName count="few">dolari Trinidad-Tobago</displayName>
  2267. <displayName count="other">dolari Trinidad-Tobago</displayName>
  2268. </currency>
  2269. <currency type="TWD">
  2270. <displayName>dolar nou Taiwan</displayName>
  2271. <displayName count="few">dolari noi Taiwan</displayName>
  2272. <displayName count="other">dolari noi Taiwan</displayName>
  2273. </currency>
  2274. <currency type="TZS">
  2275. <displayName>șiling tanzanian</displayName>
  2276. <displayName count="few">șilingi tanzanieni</displayName>
  2277. <displayName count="other">șilingi tanzanieni</displayName>
  2278. </currency>
  2279. <currency type="UAH">
  2280. <displayName>hryvna ucraineană</displayName>
  2281. <displayName count="few">hryvna ucrainiene</displayName>
  2282. <displayName count="other">hryvna ucrainiene</displayName>
  2283. </currency>
  2284. <currency type="UAK">
  2285. <displayName>carboavă ucraineană</displayName>
  2286. <displayName count="few">carboave ucrainiene</displayName>
  2287. <displayName count="other">carboave ucrainiene</displayName>
  2288. </currency>
  2289. <currency type="UGS">
  2290. <displayName>șiling ugandez (1966–1987)</displayName>
  2291. <displayName count="few">șilingi ugandezi (1966–1987)</displayName>
  2292. <displayName count="other">șilingi ugandezi (1966–1987)</displayName>
  2293. </currency>
  2294. <currency type="UGX">
  2295. <displayName>șiling ugandez</displayName>
  2296. <displayName count="few">șilingi ugandezi</displayName>
  2297. <displayName count="other">șilingi ugandezi</displayName>
  2298. </currency>
  2299. <currency type="USD">
  2300. <displayName>dolar american</displayName>
  2301. <displayName count="few">dolari americani</displayName>
  2302. <displayName count="other">dolari americani</displayName>
  2303. </currency>
  2304. <currency type="USN">
  2305. <displayName>dolar american (ziua următoare)</displayName>
  2306. <displayName count="few">dolari americani (ziua următoare)</displayName>
  2307. <displayName count="other">dolari americani (ziua următoare)</displayName>
  2308. </currency>
  2309. <currency type="USS">
  2310. <displayName>dolar american (aceeași zi)</displayName>
  2311. <displayName count="few">dolari americani (aceeași zi)</displayName>
  2312. <displayName count="other">dolari americani (aceeași zi)</displayName>
  2313. </currency>
  2314. <currency type="UYP">
  2315. <displayName>peso Uruguay (1975–1993)</displayName>
  2316. <displayName count="few">pesos Uruguay (1975–1993)</displayName>
  2317. <displayName count="other">pesos Uruguay (1975–1993)</displayName>
  2318. </currency>
  2319. <currency type="UYU">
  2320. <displayName>peso nou Uruguay</displayName>
  2321. <displayName count="few">pesos noi Uruguay</displayName>
  2322. <displayName count="other">pesos noi Uruguay</displayName>
  2323. </currency>
  2324. <currency type="UZS">
  2325. <displayName>sum Uzbekistan</displayName>
  2326. </currency>
  2327. <currency type="VEB">
  2328. <displayName>bolivar Venezuela</displayName>
  2329. <displayName count="few">bolivari Venezuela</displayName>
  2330. <displayName count="other">bolivari Venezuela</displayName>
  2331. </currency>
  2332. <currency type="VND">
  2333. <displayName>dong vietnamez</displayName>
  2334. </currency>
  2335. <currency type="XAF">
  2336. <displayName>franc Comunitatea Financiară</displayName>
  2337. <displayName count="few">franci Comunitatea Financiară</displayName>
  2338. <displayName count="other">franci Comunitatea Financiară</displayName>
  2339. </currency>
  2340. <currency type="XAG">
  2341. <displayName>argint</displayName>
  2342. </currency>
  2343. <currency type="XAU">
  2344. <displayName>aur</displayName>
  2345. </currency>
  2346. <currency type="XBA">
  2347. <displayName>unitate compusă europeană</displayName>
  2348. </currency>
  2349. <currency type="XBB">
  2350. <displayName>unitate monetară europeană</displayName>
  2351. </currency>
  2352. <currency type="XBC">
  2353. <displayName>unitate de cont europeană (XBC)</displayName>
  2354. </currency>
  2355. <currency type="XBD">
  2356. <displayName>unitate de cont europeană (XBD)</displayName>
  2357. </currency>
  2358. <currency type="XCD">
  2359. <displayName>dolar Caraibele de Est</displayName>
  2360. <displayName count="few">dolari Caraibele de Est</displayName>
  2361. <displayName count="other">dolari Caraibele de Est</displayName>
  2362. </currency>
  2363. <currency type="XDR">
  2364. <displayName>drepturi speciale de tragere</displayName>
  2365. </currency>
  2366. <currency type="XEU">
  2367. <displayName>unitate de monedă europeană</displayName>
  2368. </currency>
  2369. <currency type="XFO">
  2370. <displayName>franc francez de aur</displayName>
  2371. <displayName count="few">franci francezi de aur</displayName>
  2372. <displayName count="other">franci francezi de aur</displayName>
  2373. </currency>
  2374. <currency type="XFU">
  2375. <displayName>franc UIC francez</displayName>
  2376. </currency>
  2377. <currency type="XPD">
  2378. <displayName>paladiu</displayName>
  2379. </currency>
  2380. <currency type="XPT">
  2381. <displayName>platină</displayName>
  2382. </currency>
  2383. <currency type="XTS">
  2384. <displayName>cod monetar de test</displayName>
  2385. </currency>
  2386. <currency type="XXX">
  2387. <displayName>monedă necunoscută sau nevalidă</displayName>
  2388. <displayName count="few">monede necunoscute sau nevalide</displayName>
  2389. <displayName count="other">monede necunoscute sau nevalide</displayName>
  2390. </currency>
  2391. <currency type="YDD">
  2392. <displayName>dinar Yemen</displayName>
  2393. <displayName count="few">dinari Yemen</displayName>
  2394. <displayName count="other">dinari Yemen</displayName>
  2395. </currency>
  2396. <currency type="YER">
  2397. <displayName>riyal Yemen</displayName>
  2398. <displayName count="few">riyali Yemen</displayName>
  2399. <displayName count="other">riyali Yemen</displayName>
  2400. </currency>
  2401. <currency type="YUD">
  2402. <displayName>dinar iugoslav greu</displayName>
  2403. <displayName count="few">dinari iugoslavi grei</displayName>
  2404. <displayName count="other">dinari iugoslavi grei</displayName>
  2405. </currency>
  2406. <currency type="YUM">
  2407. <displayName>dinar iugoslav nou</displayName>
  2408. <displayName count="few">dinari iugoslavi noi</displayName>
  2409. <displayName count="other">dinari iugoslavi noi</displayName>
  2410. </currency>
  2411. <currency type="YUN">
  2412. <displayName>dinar iugoslav convertibil</displayName>
  2413. <displayName count="few">dinari iugoslavi convertibili</displayName>
  2414. <displayName count="other">dinari iugoslavi convertibili</displayName>
  2415. </currency>
  2416. <currency type="ZAL">
  2417. <displayName>rand sud-african (financiar)</displayName>
  2418. </currency>
  2419. <currency type="ZAR">
  2420. <displayName>rand sud-african</displayName>
  2421. </currency>
  2422. <currency type="ZRN">
  2423. <displayName>zair nou</displayName>
  2424. <displayName count="few">zairi noi</displayName>
  2425. <displayName count="other">zairi noi</displayName>
  2426. </currency>
  2427. <currency type="ZWD">
  2428. <displayName>dolar Zimbabwe</displayName>
  2429. <displayName count="few">dolari Zimbabwe</displayName>
  2430. <displayName count="other">dolari Zimbabwe</displayName>
  2431. </currency>
  2432. </currencies>
  2433. </numbers>
  2434. <units>
  2435. <unit type="day">
  2436. <unitPattern count="few">{0} zile</unitPattern>
  2437. <unitPattern count="one">{0} zi</unitPattern>
  2438. <unitPattern count="other">{0} de zile</unitPattern>
  2439. </unit>
  2440. <unit type="hour">
  2441. <unitPattern count="few">{0} ore</unitPattern>
  2442. <unitPattern count="one">{0} oră</unitPattern>
  2443. <unitPattern count="other">{0} de ore</unitPattern>
  2444. </unit>
  2445. <unit type="minute">
  2446. <unitPattern count="few">{0} minute</unitPattern>
  2447. <unitPattern count="one">{0} minut</unitPattern>
  2448. <unitPattern count="other">{0} de minute</unitPattern>
  2449. </unit>
  2450. <unit type="month">
  2451. <unitPattern count="few">{0} luni</unitPattern>
  2452. <unitPattern count="one">{0} lună</unitPattern>
  2453. <unitPattern count="other">{0} de luni</unitPattern>
  2454. </unit>
  2455. <unit type="second">
  2456. <unitPattern count="few">{0} secunde</unitPattern>
  2457. <unitPattern count="one">{0} secundă</unitPattern>
  2458. <unitPattern count="other">{0} de secunde</unitPattern>
  2459. </unit>
  2460. <unit type="week">
  2461. <unitPattern count="few">{0} săptămâni</unitPattern>
  2462. <unitPattern count="one">{0} săptămână</unitPattern>
  2463. <unitPattern count="other">{0} de săptămâni</unitPattern>
  2464. </unit>
  2465. <unit type="year">
  2466. <unitPattern count="few">{0} ani</unitPattern>
  2467. <unitPattern count="one">{0} an</unitPattern>
  2468. <unitPattern count="other">{0} de ani</unitPattern>
  2469. </unit>
  2470. </units>
  2471. <posix>
  2472. <messages>
  2473. <yesstr>da:d</yesstr>
  2474. <nostr>nu:n</nostr>
  2475. </messages>
  2476. </posix>
  2477. </ldml>