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