hr.xml
162 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
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
<?xml version="1.0" encoding="UTF-8" ?>
<ldml>
<identity>
<version number="$Revision: 1.111 $"/>
<generation date="$Date: 2009/06/15 03:46:23 $"/>
<language type="hr"/>
</identity>
<localeDisplayNames>
<localeDisplayPattern>
<localePattern>{0} ({1})</localePattern>
<localeSeparator>, </localeSeparator>
</localeDisplayPattern>
<languages>
<language type="aa">afarski</language>
<language type="ab">abhaski</language>
<language type="ace">achinese</language>
<language type="ach">acoli</language>
<language type="ada">adangme</language>
<language type="ady">adigejski</language>
<language type="ae">avestan</language>
<language type="af">afrikaans</language>
<language type="afa">ostali afričko-azijski</language>
<language type="afh">afrihili</language>
<language type="ain">ainu</language>
<language type="ak">akanski</language>
<language type="akk">akkadian</language>
<language type="ale">aleutski</language>
<language type="alg">algonquian</language>
<language type="alt">južni altai</language>
<language type="am">amharik</language>
<language type="an">aragonski</language>
<language type="ang">staroengleski</language>
<language type="anp">angika</language>
<language type="apa">apaški</language>
<language type="ar">arapski</language>
<language type="arc">aramejski</language>
<language type="arn">araukanski</language>
<language type="arp">arapaho</language>
<language type="art">umjetni jezik</language>
<language type="arw">arawak</language>
<language type="as">asamski</language>
<language type="ast">asturijski</language>
<language type="ath">athapascan</language>
<language type="aus">australski</language>
<language type="av">avarski</language>
<language type="awa">awadhi</language>
<language type="ay">aymara</language>
<language type="az">azerbajdžanski</language>
<language type="ba">baškirski</language>
<language type="bad">banda</language>
<language type="bai">bamileke</language>
<language type="bal">baluchi</language>
<language type="ban">balinezijski</language>
<language type="bas">basa</language>
<language type="bat">baltički</language>
<language type="be">bjeloruski</language>
<language type="bej">beja</language>
<language type="bem">bemba</language>
<language type="ber">berberski</language>
<language type="bg">bugarski</language>
<language type="bh">bihari</language>
<language type="bho">bhojpuri</language>
<language type="bi">bislama</language>
<language type="bik">bikol</language>
<language type="bin">bini</language>
<language type="bla">siksika</language>
<language type="bm">bambara</language>
<language type="bn">bengalski</language>
<language type="bnt">bantu</language>
<language type="bo">tibetanski</language>
<language type="br">bretonski</language>
<language type="bra">braj</language>
<language type="bs">bosanski</language>
<language type="btk">batak</language>
<language type="bua">buriat</language>
<language type="bug">buginski</language>
<language type="byn">blin</language>
<language type="ca">katalonski</language>
<language type="cad">caddo</language>
<language type="cai">jezik srednjoameričkih Indijanaca</language>
<language type="car">karipski</language>
<language type="cau">kavkaski</language>
<language type="cch">atsam</language>
<language type="ce">čečenski</language>
<language type="ceb">cebuano</language>
<language type="cel">keltski</language>
<language type="ch">chamorro</language>
<language type="chb">chibcha</language>
<language type="chg">chagatai</language>
<language type="chk">chuukese</language>
<language type="chm">mari</language>
<language type="chn">chinook žargon</language>
<language type="cho">choctaw</language>
<language type="chp">chipewyan</language>
<language type="chr">čeroki</language>
<language type="chy">čejenski</language>
<language type="cmc">chamic</language>
<language type="co">korzički</language>
<language type="cop">koptski</language>
<language type="cpe">engleski - na osnovi kreolskog ili pidgin</language>
<language type="cpf">francuski - na osnovi kreolskog ili pidgin</language>
<language type="cpp">kreolski ili pidgin na osnovi portugalskog</language>
<language type="cr">cree</language>
<language type="crh">krimski turski</language>
<language type="crp">kreolski ili pidgin</language>
<language type="cs">češki</language>
<language type="csb">kašupski</language>
<language type="cu">crkvenoslavenski</language>
<language type="cus">kušitski</language>
<language type="cv">chuvash</language>
<language type="cy">velški</language>
<language type="da">danski</language>
<language type="dak">dakota jezik</language>
<language type="dar">dargwa</language>
<language type="day">dayak</language>
<language type="de">njemački</language>
<language type="de_AT">austrijski njemački</language>
<language type="de_CH">gornjonjemački (švicarski)</language>
<language type="del">delavarski</language>
<language type="den">slave</language>
<language type="dgr">dogrib</language>
<language type="din">dinka</language>
<language type="doi">dogri</language>
<language type="dra">dravidski</language>
<language type="dsb">lužičkosrpski</language>
<language type="dua">duala</language>
<language type="dum">nizozemski, srednji</language>
<language type="dv">divehi</language>
<language type="dyu">dyula</language>
<language type="dz">dzongkha</language>
<language type="ee">ewe</language>
<language type="efi">efik</language>
<language type="egy">staroegipatski</language>
<language type="eka">ekajuk</language>
<language type="el">grčki</language>
<language type="elx">elamitski</language>
<language type="en">engleski</language>
<language type="en_AU">engleski (australski)</language>
<language type="en_CA">kanadski engleski</language>
<language type="en_GB">engleski (britanski)</language>
<language type="en_US">engleski (američki)</language>
<language type="enm">engleski, srednji</language>
<language type="eo">esperanto</language>
<language type="es">španjolski</language>
<language type="es_419">španjolski (latinoamerički)</language>
<language type="es_ES">iberski španjolski</language>
<language type="et">estonijski</language>
<language type="eu">baskijski</language>
<language type="ewo">ewondo</language>
<language type="fa">perzijski</language>
<language type="fan">fang</language>
<language type="fat">fanti</language>
<language type="ff">fulah</language>
<language type="fi">finski</language>
<language type="fil">filipino</language>
<language type="fiu">ugro-finski jezik</language>
<language type="fj">fidžijski</language>
<language type="fo">faroanski</language>
<language type="fon">fon</language>
<language type="fr">francuski</language>
<language type="fr_CA">kanadski francuski</language>
<language type="fr_CH">švicarski francuski</language>
<language type="frm">francuski, srednji</language>
<language type="fro">starofrancuski</language>
<language type="frr">sjevernofrizijski</language>
<language type="frs">istočnofrizijski</language>
<language type="fur">friulski</language>
<language type="fy">frizijski</language>
<language type="ga">irski</language>
<language type="gaa">ga</language>
<language type="gay">gayo</language>
<language type="gba">gbaya</language>
<language type="gd">škotski-galski</language>
<language type="gem">germanski</language>
<language type="gez">staroetiopski</language>
<language type="gil">gilbertski</language>
<language type="gl">galicijski</language>
<language type="gmh">njemački, srednji visoki</language>
<language type="gn">guarani</language>
<language type="goh">staronjemački, visoki</language>
<language type="gon">gondi</language>
<language type="gor">gorontalo</language>
<language type="got">gothic</language>
<language type="grb">grebo</language>
<language type="grc">starogrčki</language>
<language type="gsw">švicarski njemački</language>
<language type="gu">gujarati</language>
<language type="gv">manx</language>
<language type="gwi">gwich'in</language>
<language type="ha">hausa</language>
<language type="hai">haidi</language>
<language type="haw">havajski</language>
<language type="he">hebrejski</language>
<language type="hi">hindu</language>
<language type="hil">hiligaynon</language>
<language type="him">himachali</language>
<language type="hit">hetitski</language>
<language type="hmn">hmong</language>
<language type="ho">hiri motu</language>
<language type="hr">hrvatski</language>
<language type="hsb">gornjolužički</language>
<language type="ht">kreolski</language>
<language type="hu">mađarski</language>
<language type="hup">hupa</language>
<language type="hy">armenski</language>
<language type="hz">herero</language>
<language type="ia">interlingua</language>
<language type="iba">iban</language>
<language type="id">indonezijski</language>
<language type="ie">interligua</language>
<language type="ig">igbo</language>
<language type="ii">sichuan yi</language>
<language type="ijo">ijo</language>
<language type="ik">inupiaq</language>
<language type="ilo">iloko</language>
<language type="inc">indijski</language>
<language type="ine">indoeuropski</language>
<language type="inh">ingušetski</language>
<language type="io">ido</language>
<language type="ira">iranski</language>
<language type="iro">irokeški</language>
<language type="is">islandski</language>
<language type="it">talijanski</language>
<language type="iu">inuktitut</language>
<language type="ja">japanski</language>
<language type="jbo">lojban</language>
<language type="jpr">judejsko-perzijski</language>
<language type="jrb">judejsko-arapski</language>
<language type="jv">javanski</language>
<language type="ka">gruzijski</language>
<language type="kaa">kara-kalpak</language>
<language type="kab">kabyle</language>
<language type="kac">kachin</language>
<language type="kaj">kaje</language>
<language type="kam">kamba</language>
<language type="kar">karen</language>
<language type="kaw">kawi</language>
<language type="kbd">kabardian</language>
<language type="kcg">tyap</language>
<language type="kfo">koro</language>
<language type="kg">kongo</language>
<language type="kha">khasi</language>
<language type="khi">kojsanski</language>
<language type="kho">khotanese</language>
<language type="ki">kikuyu</language>
<language type="kj">kuanyama</language>
<language type="kk">kazaški</language>
<language type="kl">kalaallisut</language>
<language type="km">kmerski</language>
<language type="kmb">kimbundu</language>
<language type="kn">kannada</language>
<language type="ko">korejski</language>
<language type="kok">konkani</language>
<language type="kos">naurski</language>
<language type="kpe">kpelle</language>
<language type="kr">kanuri</language>
<language type="krc">karachay-balkar</language>
<language type="krl">karelijski</language>
<language type="kro">kru</language>
<language type="kru">kuruški</language>
<language type="ks">kašmirski</language>
<language type="ku">kurdski</language>
<language type="kum">kumyk</language>
<language type="kut">kutenai</language>
<language type="kv">komi</language>
<language type="kw">kornski</language>
<language type="ky">kirgiški</language>
<language type="la">latinski</language>
<language type="lad">ladino</language>
<language type="lah">lahnda</language>
<language type="lam">lamba</language>
<language type="lb">luksemburški</language>
<language type="lez">lezgiški</language>
<language type="lg">ganda</language>
<language type="li">limburgish</language>
<language type="ln">lingala</language>
<language type="lo">laoski</language>
<language type="lol">mongo</language>
<language type="loz">lozi</language>
<language type="lt">litvanski</language>
<language type="lu">luba-katanga</language>
<language type="lua">luba-lulua</language>
<language type="lui">luiseno</language>
<language type="lun">lunda</language>
<language type="luo">luo</language>
<language type="lus">lushai</language>
<language type="lv">latvijski</language>
<language type="mad">madurski</language>
<language type="mag">magahi</language>
<language type="mai">maithili</language>
<language type="mak">makasar</language>
<language type="man">mandingo</language>
<language type="map">austronezijski</language>
<language type="mas">masajski</language>
<language type="mdf">moksha</language>
<language type="mdr">mandar</language>
<language type="men">mende</language>
<language type="mg">malgaški</language>
<language type="mga">irski, srednji</language>
<language type="mh">maršalski</language>
<language type="mi">maorski</language>
<language type="mic">micmac</language>
<language type="min">minangkabau</language>
<language type="mis">ostali jezici</language>
<language type="mk">makedonski</language>
<language type="mkh">mkh</language>
<language type="ml">malayalam</language>
<language type="mn">mongolski</language>
<language type="mnc">mandžurski</language>
<language type="mni">manipurski</language>
<language type="mno">manobo</language>
<language type="mo">moldavski</language>
<language type="moh">mohawk</language>
<language type="mos">mossi</language>
<language type="mr">marathi</language>
<language type="ms">malajski</language>
<language type="mt">malteški</language>
<language type="mul">više jezika</language>
<language type="mun">munda</language>
<language type="mus">creek</language>
<language type="mwl">mirandski</language>
<language type="mwr">marwari</language>
<language type="my">burmanski</language>
<language type="myn">majanski</language>
<language type="myv">mordvinski</language>
<language type="na">nauru</language>
<language type="nah">nahuatl</language>
<language type="nai">jezik sjevernoameričkih Indijanaca</language>
<language type="nap">napolitanski</language>
<language type="nb">književni norveški</language>
<language type="nd">sjeverni ndebele</language>
<language type="nds">donjonjemački</language>
<language type="ne">nepalski</language>
<language type="new">newari</language>
<language type="ng">ndonga</language>
<language type="nia">nias</language>
<language type="nic">nigersko-kordofanski</language>
<language type="niu">niujski</language>
<language type="nl">nizozemski</language>
<language type="nl_BE">flamanski</language>
<language type="nn">novonorveški</language>
<language type="no">norveški</language>
<language type="nog">nogajski</language>
<language type="non">staronorveški</language>
<language type="nqo">n'ko</language>
<language type="nr">južni ndebele</language>
<language type="nso">sjeverni sotho</language>
<language type="nub">nubijski</language>
<language type="nv">navajo</language>
<language type="nwc">klasični newari</language>
<language type="ny">nyanja</language>
<language type="nym">nyamwezi</language>
<language type="nyn">nyankole</language>
<language type="nyo">nyoro</language>
<language type="nzi">nzima</language>
<language type="oc">okcitanski</language>
<language type="oj">ojibwa</language>
<language type="om">oromo</language>
<language type="or">orijski</language>
<language type="os">osetski</language>
<language type="osa">osage</language>
<language type="ota">turski - otomanski</language>
<language type="oto">otomijski</language>
<language type="pa">punjabi</language>
<language type="paa">papuanski</language>
<language type="pag">pangasinan</language>
<language type="pal">pahlavi</language>
<language type="pam">pampanga</language>
<language type="pap">papiamento</language>
<language type="pau">palauanski</language>
<language type="peo">staroperzijski</language>
<language type="phi">filipinski</language>
<language type="phn">fenički</language>
<language type="pi">pali</language>
<language type="pl">poljski</language>
<language type="pon">pohnpeian</language>
<language type="pra">prakrit</language>
<language type="pro">staroprovansalski</language>
<language type="ps">paštu</language>
<language type="pt">portugalski</language>
<language type="pt_BR">brazilski portugalski</language>
<language type="pt_PT">portugalski (iberijski)</language>
<language type="qu">quechua</language>
<language type="raj">rajasthani</language>
<language type="rap">rapa nui</language>
<language type="rar">rarotonški</language>
<language type="rm">retoromanski</language>
<language type="rn">rundi</language>
<language type="ro">rumunjski</language>
<language type="roa">romanski</language>
<language type="rom">romski</language>
<language type="root">korijenski</language>
<language type="ru">ruski</language>
<language type="rup">aromunski</language>
<language type="rw">kinyarwanda</language>
<language type="sa">sanskrtski</language>
<language type="sad">sandawe</language>
<language type="sah">jakutski</language>
<language type="sai">jezik južnoameričkih Indijanaca</language>
<language type="sal">salishan</language>
<language type="sam">samarijanski aramejski</language>
<language type="sas">sasak</language>
<language type="sat">santali</language>
<language type="sc">sardski</language>
<language type="scn">sicilijski</language>
<language type="sco">škotski</language>
<language type="sd">sindhi</language>
<language type="se">južni sami</language>
<language type="sel">selkupski</language>
<language type="sem">semitic</language>
<language type="sg">sango</language>
<language type="sga">staroirski</language>
<language type="sgn">znakovni jezik</language>
<language type="sh">srpsko-hrvatski</language>
<language type="shn">shan</language>
<language type="si">singaleški</language>
<language type="sid">sidamo</language>
<language type="sio">siouan</language>
<language type="sit">sino-tibetski</language>
<language type="sk">slovački</language>
<language type="sl">slovenski</language>
<language type="sla">slavenski</language>
<language type="sm">samoanski</language>
<language type="sma">sjeverni sami</language>
<language type="smi">sami</language>
<language type="smj">lule sami</language>
<language type="smn">inari sami</language>
<language type="sms">skolt sami</language>
<language type="sn">shona</language>
<language type="snk">soninke</language>
<language type="so">somalski</language>
<language type="sog">sogdien</language>
<language type="son">songhai</language>
<language type="sq">albanski</language>
<language type="sr">srpski</language>
<language type="srn">sranan tongo</language>
<language type="srr">serer</language>
<language type="ss">svati</language>
<language type="ssa">nilo-saharski</language>
<language type="st">sesotski</language>
<language type="su">sundanski</language>
<language type="suk">sukuma</language>
<language type="sus">susu</language>
<language type="sux">sumerski</language>
<language type="sv">švedski</language>
<language type="sw">svahili</language>
<language type="syc">klasični sirski</language>
<language type="syr">sirijski</language>
<language type="ta">tamilski</language>
<language type="tai">tajski</language>
<language type="te">telugu</language>
<language type="tem">temne</language>
<language type="ter">tereno</language>
<language type="tet">tetum</language>
<language type="tg">tajik</language>
<language type="th">tajlandski</language>
<language type="ti">tigrinya</language>
<language type="tig">tigriški</language>
<language type="tiv">tiv</language>
<language type="tk">turkmenski</language>
<language type="tkl">tokelaunski</language>
<language type="tl">tagalog</language>
<language type="tlh">klingonski</language>
<language type="tli">tlingit</language>
<language type="tmh">tamashek</language>
<language type="tn">cvana</language>
<language type="to">tonga</language>
<language type="tog">nyasa tonga</language>
<language type="tpi">tok pisin</language>
<language type="tr">turski</language>
<language type="ts">tsonga</language>
<language type="tsi">tsimshian</language>
<language type="tt">tatarski</language>
<language type="tum">tumbuka</language>
<language type="tup">tupi</language>
<language type="tut">altajski</language>
<language type="tvl">tuvaluanski</language>
<language type="tw">twi</language>
<language type="ty">tahićanski</language>
<language type="tyv">tuvinian</language>
<language type="udm">udmurtski</language>
<language type="ug">uighur</language>
<language type="uga">ugaritski</language>
<language type="uk">ukrajinski</language>
<language type="umb">umbundu</language>
<language type="und">nepoznati ili nevažeći jezik</language>
<language type="ur">urdu</language>
<language type="uz">uzbečki</language>
<language type="vai">vai</language>
<language type="ve">venda</language>
<language type="vi">vijetnamski</language>
<language type="vo">volapük</language>
<language type="vot">votic</language>
<language type="wa">valonski</language>
<language type="wak">wakashan</language>
<language type="wal">walamo</language>
<language type="war">waray</language>
<language type="was">washo</language>
<language type="wen">lužički</language>
<language type="wo">wolof</language>
<language type="xal">kalmyk</language>
<language type="xh">xhosa</language>
<language type="yao">yao</language>
<language type="yap">japski</language>
<language type="yi">jidiš</language>
<language type="yo">joruba</language>
<language type="ypk">yupik</language>
<language type="za">zhuang</language>
<language type="zap">zapotec</language>
<language type="zbl">blissymbols</language>
<language type="zen">zenaga</language>
<language type="zh">kineski</language>
<language type="zh_Hans">kineski (pojednostavljeni)</language>
<language type="zh_Hant">kineski (tradicionalni)</language>
<language type="znd">zande</language>
<language type="zu">zulu</language>
<language type="zun">zuni</language>
<language type="zxx">bez jezičnog sadržaja</language>
<language type="zza">zazaki</language>
</languages>
<scripts>
<script type="Arab">arapsko pismo</script>
<script type="Armi">aramejsko pismo</script>
<script type="Armn">armensko pismo</script>
<script type="Avst">avestansko pismo</script>
<script type="Bali">balijsko pismo</script>
<script type="Batk">batak pismo</script>
<script type="Beng">bengalsko pismo</script>
<script type="Blis">blissymbols</script>
<script type="Bopo">bopomofo pismo</script>
<script type="Brah">brahmi pismo</script>
<script type="Brai">Braillovo pismo</script>
<script type="Bugi">buginsko pismo</script>
<script type="Buhd">buhid pismo</script>
<script type="Cakm">chakma pismo</script>
<script type="Cans">unificirani kanadski aboriđinski slogovi</script>
<script type="Cari">karijsko pismo</script>
<script type="Cham">čamsko pismo</script>
<script type="Cher">čeroki pismo</script>
<script type="Cirt">cirth pismo</script>
<script type="Copt">koptsko pismo</script>
<script type="Cprt">cypriot pismo</script>
<script type="Cyrl">ćirilica</script>
<script type="Cyrs">staroslavenska crkvena čirilica</script>
<script type="Deva">devangari pismo</script>
<script type="Dsrt">deseret pismo</script>
<script type="Egyd">egipatsko narodno pismo</script>
<script type="Egyh">egipatsko hijeratsko pismo</script>
<script type="Egyp">egipatski hijeroglifi</script>
<script type="Ethi">etiopsko pimo</script>
<script type="Geok">gruzijsko khutsuri pismo</script>
<script type="Geor">gruzijsko pismo</script>
<script type="Glag">glagoljica</script>
<script type="Goth">gotičko pismo</script>
<script type="Grek">grčko pismo</script>
<script type="Gujr">gujarati pismo</script>
<script type="Guru">gurmukhi pismo</script>
<script type="Hang">hangul pismo</script>
<script type="Hani">han pismo</script>
<script type="Hano">hanunoo pismo</script>
<script type="Hans">pojednostavljeno han pismo</script>
<script type="Hant">tradicionalno han pismo</script>
<script type="Hebr">hebrejsko pismo</script>
<script type="Hira">hiragana pismo</script>
<script type="Hmng">pahawh hmong pismo</script>
<script type="Hrkt">katakana ili hiragana pismo</script>
<script type="Hung">staro mađarsko pismo</script>
<script type="Inds">indijsko pismo</script>
<script type="Ital">staro talijansko pismo</script>
<script type="Java">javansko pismo</script>
<script type="Jpan">japansko pismo</script>
<script type="Kali">kayah li pismo</script>
<script type="Kana">katakana pismo</script>
<script type="Khar">kharoshthi pismo</script>
<script type="Khmr">kmersko pismo</script>
<script type="Knda">kannada pismo</script>
<script type="Kore">korejsko pismo</script>
<script type="Kthi">kaithi pismo</script>
<script type="Lana">lanna pismo</script>
<script type="Laoo">laosko pismo</script>
<script type="Latf">fraktur latinica</script>
<script type="Latg">keltska latinica</script>
<script type="Latn">latinica</script>
<script type="Lepc">lepcha pismo</script>
<script type="Limb">limbu pismo</script>
<script type="Lina">linear A pismo</script>
<script type="Linb">linear B pismo</script>
<script type="Lyci">likijsko pismo</script>
<script type="Lydi">lidijsko pismo</script>
<script type="Mand">mandai pismo</script>
<script type="Mani">manihejsko pismo</script>
<script type="Maya">majanski hijeroglifi</script>
<script type="Mero">meroitic pismo</script>
<script type="Mlym">majalajam pismo</script>
<script type="Mong">mongolijsko pismo</script>
<script type="Moon">moon pismo</script>
<script type="Mtei">meitei mayek pismo</script>
<script type="Mymr">mianmarko pismo</script>
<script type="Nkoo">n'ko pismo</script>
<script type="Ogam">ogham pismo</script>
<script type="Olck">ol chiki pismo</script>
<script type="Orkh">orkhon pismo</script>
<script type="Orya">oriya pismo</script>
<script type="Osma">osmanya pismo</script>
<script type="Perm">staro permic pismo</script>
<script type="Phag">phags-pa pismo</script>
<script type="Phli">pisani pahlavi</script>
<script type="Phlp">psalter pahlavi</script>
<script type="Phlv">pahlavi pismo</script>
<script type="Phnx">feničko pismo</script>
<script type="Plrd">pollard fonetsko pismo</script>
<script type="Prti">pisani parthian</script>
<script type="Qaai">nasljedno pismo</script>
<script type="Rjng">rejang pismo</script>
<script type="Roro">rongorongo pismo</script>
<script type="Runr">runsko pismo</script>
<script type="Samr">samaritansko pismo</script>
<script type="Sara">sarati pismo</script>
<script type="Saur">saurashtra pismo</script>
<script type="Sgnw">znakovno pismo</script>
<script type="Shaw">shavian pismo</script>
<script type="Sinh">singaleško pismo</script>
<script type="Sund">sudansko pismo</script>
<script type="Sylo">syloti nagri pismo</script>
<script type="Syrc">sirijsko pismo</script>
<script type="Syre">sirijsko estrangelo pismo</script>
<script type="Syrj">pismo zapadne Sirije</script>
<script type="Syrn">pismo istočne Sirije</script>
<script type="Tagb">tagbanwa pismo</script>
<script type="Tale">tai le pismo</script>
<script type="Talu">novo tai lue pismo</script>
<script type="Taml">tamilsko pismo</script>
<script type="Tavt">tai viet pismo</script>
<script type="Telu">telugu pismo</script>
<script type="Teng">tengwar pismo</script>
<script type="Tfng">tifinar</script>
<script type="Tglg">tagalog pismo</script>
<script type="Thaa">thaana pismo</script>
<script type="Thai">tajlandsko pismo</script>
<script type="Tibt">tibetansko pismo</script>
<script type="Ugar">ugaritsko pismo</script>
<script type="Vaii">vai pismo</script>
<script type="Visp">Visible Speech</script>
<script type="Xpeo">staro perzijsko pismo</script>
<script type="Xsux">sumersko-akadsko cuneiform pismo</script>
<script type="Yiii">Yi pismo</script>
<script type="Zmth">matematičko znakovlje</script>
<script type="Zsym">simboli</script>
<script type="Zxxx">nepisani jezik</script>
<script type="Zyyy">zajedničko pismo</script>
<script type="Zzzz">nepoznato ili nevažeće pismo</script>
</scripts>
<territories>
<territory type="001">Svijet</territory>
<territory type="002">Afrika</territory>
<territory type="003">Sjevernoamerički kontinent</territory>
<territory type="005">Južna Amerika</territory>
<territory type="009">Oceanija</territory>
<territory type="011">Zapadna Afrika</territory>
<territory type="013">Centralna Amerika</territory>
<territory type="014">Istočna Afrika</territory>
<territory type="015">Sjeverna Afrika</territory>
<territory type="017">Središnja Afrika</territory>
<territory type="018">Južna Afrika</territory>
<territory type="019">Amerike</territory>
<territory type="021">Sjeverna Amerika</territory>
<territory type="029">Karibi</territory>
<territory type="030">Istočna Azija</territory>
<territory type="034">Južna Azija</territory>
<territory type="035">Jugoistočna Azija</territory>
<territory type="039">Južna Europa</territory>
<territory type="053">Australija i Novi Zeland</territory>
<territory type="054">Melanezija</territory>
<territory type="057">Mikronezki oblast</territory>
<territory type="061">Polinezija</territory>
<territory type="062">Južno-centralna Azija</territory>
<territory type="142">Azija</territory>
<territory type="143">Srednja Azija</territory>
<territory type="145">Zapadna Azija</territory>
<territory type="150">Europa</territory>
<territory type="151">Istočna Europa</territory>
<territory type="154">Sjeverna Europa</territory>
<territory type="155">Zapadna Europa</territory>
<territory type="172">Zajednica nezavisnih država</territory>
<territory type="419">Latinska Amerika i Karibi</territory>
<territory type="830">Kanalski otoci</territory>
<territory type="AD">Andora</territory>
<territory type="AE">Ujedinjeni Arapski Emirati</territory>
<territory type="AF">Afganistan</territory>
<territory type="AG">Antigua i Barbuda</territory>
<territory type="AI">Anguila</territory>
<territory type="AL">Albanija</territory>
<territory type="AM">Armenija</territory>
<territory type="AN">Nizozemski Antili</territory>
<territory type="AO">Angola</territory>
<territory type="AQ">Antarktik</territory>
<territory type="AR">Argentina</territory>
<territory type="AS">Američka Samoa</territory>
<territory type="AT">Austrija</territory>
<territory type="AU">Australija</territory>
<territory type="AW">Aruba</territory>
<territory type="AX">Alandski otoci</territory>
<territory type="AZ">Azerbajdžan</territory>
<territory type="BA">Bosna i Hercegovina</territory>
<territory type="BB">Barbados</territory>
<territory type="BD">Bangladeš</territory>
<territory type="BE">Belgija</territory>
<territory type="BF">Burkina Faso</territory>
<territory type="BG">Bugarska</territory>
<territory type="BH">Bahrein</territory>
<territory type="BI">Burundi</territory>
<territory type="BJ">Benin</territory>
<territory type="BL">Sveti Bartolomej</territory>
<territory type="BM">Bermuda</territory>
<territory type="BN">Brunej</territory>
<territory type="BO">Bolivija</territory>
<territory type="BR">Brazil</territory>
<territory type="BS">Bahami</territory>
<territory type="BT">Butan</territory>
<territory type="BV">Otok Bouvet</territory>
<territory type="BW">Bocvana</territory>
<territory type="BY">Bjelorusija</territory>
<territory type="BZ">Belize</territory>
<territory type="CA">Kanada</territory>
<territory type="CC">Kokosovi Otoci</territory>
<territory type="CD">Demokratska Republika Kongo</territory>
<territory type="CF">Srednjoafrička Republika</territory>
<territory type="CG">Kongo</territory>
<territory type="CH">Švicarska</territory>
<territory type="CI">Obala Bjelokosti</territory>
<territory type="CK">Kukovi Otoci</territory>
<territory type="CL">Čile</territory>
<territory type="CM">Kamerun</territory>
<territory type="CN">Kina</territory>
<territory type="CO">Kolumbija</territory>
<territory type="CR">Kostarika</territory>
<territory type="CS">Srbija i Crna Gora</territory>
<territory type="CU">Kuba</territory>
<territory type="CV">Zeleni Rt</territory>
<territory type="CX">Božićni Otok</territory>
<territory type="CY">Cipar</territory>
<territory type="CZ">Češka Republika</territory>
<territory type="DE">Njemačka</territory>
<territory type="DJ">Džibuti</territory>
<territory type="DK">Danska</territory>
<territory type="DM">Dominika</territory>
<territory type="DO">Dominikanska Republika</territory>
<territory type="DZ">Alžir</territory>
<territory type="EC">Ekvador</territory>
<territory type="EE">Estonija</territory>
<territory type="EG">Egipat</territory>
<territory type="EH">Zapadna Sahara</territory>
<territory type="ER">Eritreja</territory>
<territory type="ES">Španjolska</territory>
<territory type="ET">Etiopija</territory>
<territory type="FI">Finska</territory>
<territory type="FJ">Fidži</territory>
<territory type="FK">Falklandski Otoci</territory>
<territory type="FM">Mikronezija</territory>
<territory type="FO">Farski Otoci</territory>
<territory type="FR">Francuska</territory>
<territory type="GA">Gabon</territory>
<territory type="GB">Velika Britanija</territory>
<territory type="GD">Grenada</territory>
<territory type="GE">Gruzija</territory>
<territory type="GF">Francuska Gvajana</territory>
<territory type="GG">Guernsey</territory>
<territory type="GH">Gana</territory>
<territory type="GI">Gibraltar</territory>
<territory type="GL">Grenland</territory>
<territory type="GM">Gambija</territory>
<territory type="GN">Gvineja</territory>
<territory type="GP">Guadeloupe</territory>
<territory type="GQ">Ekvatorska Gvineja</territory>
<territory type="GR">Grčka</territory>
<territory type="GS">Južna Gruzija i Južni Sendvič Otoci</territory>
<territory type="GT">Gvatemala</territory>
<territory type="GU">Guam</territory>
<territory type="GW">Gvineja Bisau</territory>
<territory type="GY">Gvajana</territory>
<territory type="HK">Hong Kong S.A.R. Kine</territory>
<territory type="HM">Otok Heard i Otoci McDonald</territory>
<territory type="HN">Honduras</territory>
<territory type="HR">Hrvatska</territory>
<territory type="HT">Haiti</territory>
<territory type="HU">Mađarska</territory>
<territory type="ID">Indonezija</territory>
<territory type="IE">Irska</territory>
<territory type="IL">Izrael</territory>
<territory type="IM">Otok Man</territory>
<territory type="IN">Indija</territory>
<territory type="IO">Britanski Teritorij Indijskog Oceana</territory>
<territory type="IQ">Irak</territory>
<territory type="IR">Iran</territory>
<territory type="IS">Island</territory>
<territory type="IT">Italija</territory>
<territory type="JE">Jersey</territory>
<territory type="JM">Jamajka</territory>
<territory type="JO">Jordan</territory>
<territory type="JP">Japan</territory>
<territory type="KE">Kenija</territory>
<territory type="KG">Kirgistan</territory>
<territory type="KH">Kambodža</territory>
<territory type="KI">Kiribati</territory>
<territory type="KM">Komori</territory>
<territory type="KN">Sveti Kristofor i Nevis</territory>
<territory type="KP">Koreja, Sjeverna</territory>
<territory type="KR">Južna Koreja</territory>
<territory type="KW">Kuvajt</territory>
<territory type="KY">Kajmanski Otoci</territory>
<territory type="KZ">Kazakstan</territory>
<territory type="LA">Laos</territory>
<territory type="LB">Libanon</territory>
<territory type="LC">Sveta Lucija</territory>
<territory type="LI">Lihtenštajn</territory>
<territory type="LK">Šri Lanka</territory>
<territory type="LR">Liberija</territory>
<territory type="LS">Lesoto</territory>
<territory type="LT">Litva</territory>
<territory type="LU">Luksemburg</territory>
<territory type="LV">Latvija</territory>
<territory type="LY">Libijska Arapska Džamahirija</territory>
<territory type="MA">Maroko</territory>
<territory type="MC">Monako</territory>
<territory type="MD">Moldavija</territory>
<territory type="ME">Crna Gora</territory>
<territory type="MF">Sveti Martin</territory>
<territory type="MG">Madagaskar</territory>
<territory type="MH">Maršalovi Otoci</territory>
<territory type="MK">Bivša Jugoslavenska Republika Makedonija</territory>
<territory type="ML">Mali</territory>
<territory type="MM">Mijanma</territory>
<territory type="MN">Mongolija</territory>
<territory type="MO">Makao S.A.R. Kine</territory>
<territory type="MP">Sjeverni Marijanski Otoci</territory>
<territory type="MQ">Martinik</territory>
<territory type="MR">Mauritanija</territory>
<territory type="MS">Montserat</territory>
<territory type="MT">Malta</territory>
<territory type="MU">Mauricijus</territory>
<territory type="MV">Maldivi</territory>
<territory type="MW">Malavi</territory>
<territory type="MX">Meksiko</territory>
<territory type="MY">Malezija</territory>
<territory type="MZ">Mozambik</territory>
<territory type="NA">Namibija</territory>
<territory type="NC">Nova Kaledonija</territory>
<territory type="NE">Niger</territory>
<territory type="NF">Otok Norfolk</territory>
<territory type="NG">Nigerija</territory>
<territory type="NI">Nikaragva</territory>
<territory type="NL">Nizozemska</territory>
<territory type="NO">Norveška</territory>
<territory type="NP">Nepal</territory>
<territory type="NR">Nauru</territory>
<territory type="NU">Niue</territory>
<territory type="NZ">Novi Zeland</territory>
<territory type="OM">Oman</territory>
<territory type="PA">Panama</territory>
<territory type="PE">Peru</territory>
<territory type="PF">Francuska Polinezija</territory>
<territory type="PG">Papua Nova Gvineja</territory>
<territory type="PH">Filipini</territory>
<territory type="PK">Pakistan</territory>
<territory type="PL">Poljska</territory>
<territory type="PM">Sveti Petar i Miguel</territory>
<territory type="PN">Pitcairn</territory>
<territory type="PR">Portoriko</territory>
<territory type="PS">Palestinsko Područje</territory>
<territory type="PT">Portugal</territory>
<territory type="PW">Palau</territory>
<territory type="PY">Paragvaj</territory>
<territory type="QA">Katar</territory>
<territory type="QO">Ostala oceanija</territory>
<territory type="QU">Europska Unija</territory>
<territory type="RE">Reunion</territory>
<territory type="RO">Rumunjska</territory>
<territory type="RS">Srbija</territory>
<territory type="RU">Rusija</territory>
<territory type="RW">Ruanda</territory>
<territory type="SA">Saudijska Arabija</territory>
<territory type="SB">Solomonski Otoci</territory>
<territory type="SC">Sejšeli</territory>
<territory type="SD">Sudan</territory>
<territory type="SE">Švedska</territory>
<territory type="SG">Singapur</territory>
<territory type="SH">Sveta Helena</territory>
<territory type="SI">Slovenija</territory>
<territory type="SJ">Svalbard i Jan Mayen</territory>
<territory type="SK">Slovačka</territory>
<territory type="SL">Sijera Leone</territory>
<territory type="SM">San Marino</territory>
<territory type="SN">Senegal</territory>
<territory type="SO">Somalija</territory>
<territory type="SR">Surinam</territory>
<territory type="ST">Sveti Toma i Prinsipe</territory>
<territory type="SV">El Salvador</territory>
<territory type="SY">Sirija</territory>
<territory type="SZ">Svazi</territory>
<territory type="TC">Turkski i Kaikos Otoci</territory>
<territory type="TD">Čad</territory>
<territory type="TF">Francuski Južni Teritoriji</territory>
<territory type="TG">Togo</territory>
<territory type="TH">Tajland</territory>
<territory type="TJ">Tadžikistan</territory>
<territory type="TK">Tokelau</territory>
<territory type="TL">Istočni Timor</territory>
<territory type="TM">Turkmenistan</territory>
<territory type="TN">Tunis</territory>
<territory type="TO">Tonga</territory>
<territory type="TR">Turska</territory>
<territory type="TT">Trinidad i Tobago</territory>
<territory type="TV">Tuvalu</territory>
<territory type="TW">Tajvan</territory>
<territory type="TZ">Tanzanija</territory>
<territory type="UA">Ukrajina</territory>
<territory type="UG">Uganda</territory>
<territory type="UM">Ujedinjene Države Manjih Pacifičkih Otoka</territory>
<territory type="US">Sjedinjene Države</territory>
<territory type="UY">Urugvaj</territory>
<territory type="UZ">Uzbekistan</territory>
<territory type="VA">Grad Vatikan</territory>
<territory type="VC">Sveti Vincent i Grenadini</territory>
<territory type="VE">Venezuela</territory>
<territory type="VG">Britanski Djevičanski Otoci</territory>
<territory type="VI">Američki Djevičanski Otoci</territory>
<territory type="VN">Vijetnam</territory>
<territory type="VU">Vanuatu</territory>
<territory type="WF">Wallis i Futuna</territory>
<territory type="WS">Samoa</territory>
<territory type="YE">Jemen</territory>
<territory type="YT">Majote</territory>
<territory type="ZA">Južnoafrička Republika</territory>
<territory type="ZM">Zambija</territory>
<territory type="ZW">Zimbabve</territory>
<territory type="ZZ">nepoznata ili nevažeća oblast</territory>
</territories>
<variants>
<variant type="1901">tradicionalan njemački pravopis</variant>
<variant type="1994">standardizirani resian pravopis</variant>
<variant type="1996">njemačka ortografija iz 1996.</variant>
<variant type="1606NICT">kasni srednjofrancuski do 1606.</variant>
<variant type="1694ACAD">rani moderni francuski</variant>
<variant type="AREVELA">istočno-armenijski</variant>
<variant type="AREVMDA">zapadno-armenijski</variant>
<variant type="BAKU1926">unificirana turska abeceda</variant>
<variant type="BISKE">san giorgio/bila dijalekt</variant>
<variant type="BOONT">boontling</variant>
<variant type="FONIPA">IPA fonetika</variant>
<variant type="FONUPA">UPA fonetika</variant>
<variant type="LIPAW">lipovački dijalekt resian jezika</variant>
<variant type="MONOTON">monotono</variant>
<variant type="NEDIS">natisone dijalekt</variant>
<variant type="NJIVA">Gniva/Njiva dijalekt</variant>
<variant type="OSOJS">oseacco/osojane dijalekt</variant>
<variant type="POLYTON">politono</variant>
<variant type="POSIX">računalo</variant>
<variant type="REVISED">izmijenjen pravopis</variant>
<variant type="ROZAJ">resian</variant>
<variant type="SAAHO">saho</variant>
<variant type="SCOTLAND">škotski standardni engleski</variant>
<variant type="SCOUSE">scouse</variant>
<variant type="SOLBA">stolvizza/solbica dijalekt</variant>
<variant type="TARASK">taraskievica pravopis</variant>
<variant type="VALENCIA">valencijski</variant>
</variants>
<keys>
<key type="calendar">kalendar</key>
<key type="collation">poredavanje</key>
<key type="currency">valuta</key>
</keys>
<types>
<type type="big5han" key="collation">tradicionalno kinesko poredavanje - Big5</type>
<type type="buddhist" key="calendar">budistički kalendar</type>
<type type="chinese" key="calendar">kineski kalendar</type>
<type type="direct" key="collation">izravno poredavanje</type>
<type type="gb2312han" key="collation">pojednostavljeno kinesko poredavanje - GB2312</type>
<type type="gregorian" key="calendar">gregorijanski kalendar</type>
<type type="hebrew" key="calendar">hebrejski kalendar</type>
<type type="indian" key="calendar">indijski nacionalni kalendar</type>
<type type="islamic" key="calendar">islamski kalendar</type>
<type type="islamic-civil" key="calendar">islamski civilni kalendar</type>
<type type="japanese" key="calendar">japanski kalendar</type>
<type type="phonebook" key="collation">poredavanje po abecedi</type>
<type type="pinyin" key="collation">Pinyin poredavanje</type>
<type type="roc" key="calendar">kalendar Republike Kine</type>
<type type="stroke" key="collation">Stroke order poredavanje</type>
<type type="traditional" key="collation">tradicionalno predavanje</type>
</types>
<measurementSystemNames>
<measurementSystemName type="metric">metrički</measurementSystemName>
<measurementSystemName type="US">američki sustav</measurementSystemName>
</measurementSystemNames>
</localeDisplayNames>
<layout>
<inList>titlecase-firstword</inList>
<inText type="currency">titlecase-firstword</inText>
<inText type="fields">titlecase-firstword</inText>
<inText type="keys">titlecase-firstword</inText>
<inText type="languages">lowercase-words</inText>
<inText type="long">titlecase-firstword</inText>
<inText type="measurementSystemNames">titlecase-firstword</inText>
<inText type="quarterWidth">titlecase-firstword</inText>
<inText type="scripts">lowercase-words</inText>
<inText type="territories">titlecase-words</inText>
<inText type="types">titlecase-firstword</inText>
<inText type="variants">titlecase-firstword</inText>
</layout>
<characters>
<exemplarCharacters>[a-c č ć d đ {dž} e-l {lj} m n {nj} o p r s š t-v z ž]</exemplarCharacters>
<exemplarCharacters type="auxiliary">[q w-y]</exemplarCharacters>
<exemplarCharacters type="currencySymbol">[a-z]</exemplarCharacters>
</characters>
<delimiters>
<quotationStart>‘</quotationStart>
<quotationEnd>’</quotationEnd>
<alternateQuotationStart>“</alternateQuotationStart>
<alternateQuotationEnd>”</alternateQuotationEnd>
</delimiters>
<dates>
<calendars>
<calendar type="buddhist">
<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>
</calendar>
<calendar type="chinese">
<dateFormats>
<dateFormatLength type="full">
<dateFormat>
<pattern>EEE, d.Ml.y. G</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="long">
<dateFormat>
<pattern>d.Ml.y. G</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="medium">
<dateFormat>
<pattern>d.Ml.y. G</pattern>
</dateFormat>
</dateFormatLength>
<dateFormatLength type="short">
<dateFormat>
<pattern>d.Ml.y. G</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
</calendar>
<calendar type="gregorian">
<months>
<monthContext type="format">
<monthWidth type="abbreviated">
<month type="1">01.</month>
<month type="2">02.</month>
<month type="3">03.</month>
<month type="4">04.</month>
<month type="5">05.</month>
<month type="6">06.</month>
<month type="7">07.</month>
<month type="8">08.</month>
<month type="9">09.</month>
<month type="10">10.</month>
<month type="11">11.</month>
<month type="12">12.</month>
</monthWidth>
<monthWidth type="wide">
<month type="1">siječnja</month>
<month type="2">veljače</month>
<month type="3">ožujka</month>
<month type="4">travnja</month>
<month type="5">svibnja</month>
<month type="6">lipnja</month>
<month type="7">srpnja</month>
<month type="8">kolovoza</month>
<month type="9">rujna</month>
<month type="10">listopada</month>
<month type="11">studenoga</month>
<month type="12">prosinca</month>
</monthWidth>
</monthContext>
<monthContext type="stand-alone">
<monthWidth type="narrow">
<month type="1">1.</month>
<month type="2">2.</month>
<month type="3">3.</month>
<month type="4">4.</month>
<month type="5">5.</month>
<month type="6">6.</month>
<month type="7">7.</month>
<month type="8">8.</month>
<month type="9">9.</month>
<month type="10">10.</month>
<month type="11">11.</month>
<month type="12">12.</month>
</monthWidth>
<monthWidth type="wide">
<month type="1">siječanj</month>
<month type="2">veljača</month>
<month type="3">ožujak</month>
<month type="4">travanj</month>
<month type="5">svibanj</month>
<month type="6">lipanj</month>
<month type="7">srpanj</month>
<month type="8">kolovoz</month>
<month type="9">rujan</month>
<month type="10">listopad</month>
<month type="11">studeni</month>
<month type="12">prosinac</month>
</monthWidth>
</monthContext>
</months>
<days>
<dayContext type="format">
<dayWidth type="abbreviated">
<day type="sun">ned</day>
<day type="mon">pon</day>
<day type="tue">uto</day>
<day type="wed">sri</day>
<day type="thu">čet</day>
<day type="fri">pet</day>
<day type="sat">sub</day>
</dayWidth>
<dayWidth type="wide">
<day type="sun">nedjelja</day>
<day type="mon">ponedjeljak</day>
<day type="tue">utorak</day>
<day type="wed">srijeda</day>
<day type="thu">četvrtak</day>
<day type="fri">petak</day>
<day type="sat">subota</day>
</dayWidth>
</dayContext>
<dayContext type="stand-alone">
<dayWidth type="narrow">
<day type="sun">n</day>
<day type="mon">p</day>
<day type="tue">u</day>
<day type="wed">s</day>
<day type="thu">č</day>
<day type="fri">p</day>
<day type="sat">s</day>
</dayWidth>
</dayContext>
</days>
<quarters>
<quarterContext type="format">
<quarterWidth type="abbreviated">
<quarter type="1">1kv</quarter>
<quarter type="2">2kv</quarter>
<quarter type="3">3kv</quarter>
<quarter type="4">4kv</quarter>
</quarterWidth>
<quarterWidth type="wide">
<quarter type="1">1. kvartal</quarter>
<quarter type="2">2. kvartal</quarter>
<quarter type="3">3. kvartal</quarter>
<quarter type="4">4. kvartal</quarter>
</quarterWidth>
</quarterContext>
</quarters>
<eras>
<eraNames>
<era type="0">Prije Krista</era>
<era type="1">Poslije Krista</era>
</eraNames>
<eraAbbr>
<era type="0">pr.n.e.</era>
<era type="1">AD</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>d.M.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>
<availableFormats>
<dateFormatItem id="d">d.</dateFormatItem>
<dateFormatItem id="EEEd">EEE, d.</dateFormatItem>
<dateFormatItem id="hhmm">hh:mm a</dateFormatItem>
<dateFormatItem id="HHmm">HH:mm</dateFormatItem>
<dateFormatItem id="hhmmss">hh:mm:ss a</dateFormatItem>
<dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
<dateFormatItem id="Hm">H:mm</dateFormatItem>
<dateFormatItem id="M">L.</dateFormatItem>
<dateFormatItem id="Md">d.M.</dateFormatItem>
<dateFormatItem id="MEd">E, d.M.</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="MMMMd">d. MMMM</dateFormatItem>
<dateFormatItem id="MMMMdd">dd. 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.y.</dateFormatItem>
<dateFormatItem id="yMMM">MMM.y.</dateFormatItem>
<dateFormatItem id="yMMMEd">EEE, d.MMM.y.</dateFormatItem>
<dateFormatItem id="yMMMM">MMMM y.</dateFormatItem>
<dateFormatItem id="yQ">Q. yyyy.</dateFormatItem>
<dateFormatItem id="yQQQ">QQQ y.</dateFormatItem>
<dateFormatItem id="yyMMMEEEd">EEE, d.MMM.yy.</dateFormatItem>
<dateFormatItem id="yyQ">Q yy.</dateFormatItem>
<dateFormatItem id="yyQQQQ">QQQQ 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">dd. - dd.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="h">
<greatestDifference id="a">HH - HH'h'</greatestDifference>
<greatestDifference id="h">HH - HH'h'</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 'h' v</greatestDifference>
<greatestDifference id="h">HH - HH 'h' v</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="M">
<greatestDifference id="M">MM. - MM.</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">LLL.-LLL.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMd">
<greatestDifference id="d">dd. - dd.MMM.</greatestDifference>
<greatestDifference id="M">dd.MMM. - dd.MMM.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="MMMEd">
<greatestDifference id="d">E, dd. - E, dd. MMM.</greatestDifference>
<greatestDifference id="M">E, dd.MMM. - E, dd.MMM.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="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">LLL.-LLL.y.</greatestDifference>
<greatestDifference id="y">LLL.y. - LLL.y.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMd">
<greatestDifference id="d">dd. - dd.MMM.y.</greatestDifference>
<greatestDifference id="M">dd.MMM. - dd.MMM.y.</greatestDifference>
<greatestDifference id="y">dd.MMM.y. - dd.MMM.y.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMEd">
<greatestDifference id="d">E, dd. - E, dd.MMM.y.</greatestDifference>
<greatestDifference id="M">E, dd.MMM. - E, dd.MMM.y.</greatestDifference>
<greatestDifference id="y">E, dd.MMM.y. - E, dd.MMM.y.</greatestDifference>
</intervalFormatItem>
<intervalFormatItem id="yMMMM">
<greatestDifference id="M">MM. - MM.yyyy.</greatestDifference>
<greatestDifference id="y">MM.yyyy. - MM.yyyy.</greatestDifference>
</intervalFormatItem>
</intervalFormats>
</dateTimeFormats>
<fields>
<field type="era">
<displayName>era</displayName>
</field>
<field type="year">
<displayName>godina</displayName>
</field>
<field type="month">
<displayName>mjesec</displayName>
</field>
<field type="week">
<displayName>tjedan</displayName>
</field>
<field type="day">
<displayName>dan</displayName>
<relative type="-3">prije tri dana</relative>
<relative type="-2">prekjučer</relative>
<relative type="-1">jučer</relative>
<relative type="0">danas</relative>
<relative type="1">sutra</relative>
<relative type="2">prekosutra</relative>
<relative type="3">za tri dana</relative>
</field>
<field type="weekday">
<displayName>dan u tjednu</displayName>
</field>
<field type="dayperiod">
<displayName>dio dana</displayName>
</field>
<field type="hour">
<displayName>sat</displayName>
</field>
<field type="minute">
<displayName>minuta</displayName>
</field>
<field type="second">
<displayName>sekunda</displayName>
</field>
<field type="zone">
<displayName>zona</displayName>
</field>
</fields>
</calendar>
<calendar type="japanese">
<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.yy. G</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="Ed">E, d.</dateFormatItem>
<dateFormatItem id="Md">d.M.</dateFormatItem>
<dateFormatItem id="MMMEd">E, d.MMM.</dateFormatItem>
<dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
<dateFormatItem id="yyyy">yy. GGG</dateFormatItem>
<dateFormatItem id="yyyyM">MM.yy. GGGGG</dateFormatItem>
<dateFormatItem id="yyyyMMM">MMM.yy. GGGGG</dateFormatItem>
<dateFormatItem id="yyyyQ">Q. yy. GGGGG</dateFormatItem>
</availableFormats>
</dateTimeFormats>
</calendar>
<calendar type="roc">
<eras>
<eraAbbr>
<era type="0">prije R.O.C.</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.y.G</pattern>
</dateFormat>
</dateFormatLength>
</dateFormats>
<dateTimeFormats>
<availableFormats>
<dateFormatItem id="yyyy">y. G</dateFormatItem>
<dateFormatItem id="yyyyM">M.y. G</dateFormatItem>
<dateFormatItem id="yyyyMEd">EEE, d.M.y. G</dateFormatItem>
<dateFormatItem id="yyyyMMM">MMM.y. G</dateFormatItem>
<dateFormatItem id="yyyyMMMEd">EEE, d.MMM.y. G</dateFormatItem>
<dateFormatItem id="yyyyQ">Q. y. G</dateFormatItem>
<dateFormatItem id="yyyyQQQ">QQQ y. G</dateFormatItem>
</availableFormats>
</dateTimeFormats>
</calendar>
</calendars>
<timeZoneNames>
<hourFormat>+HHmm;-HHmm</hourFormat>
<gmtFormat>GMT{0}</gmtFormat>
<regionFormat>{0}</regionFormat>
<zone type="Etc/Unknown">
<exemplarCity>Nepoznat ili nevažeći grad</exemplarCity>
</zone>
<zone type="Europe/Andorra">
<exemplarCity>Andora</exemplarCity>
</zone>
<zone type="Antarctica/South_Pole">
<exemplarCity>Južni pol</exemplarCity>
</zone>
<zone type="Antarctica/DumontDUrville">
<exemplarCity>Dumont D'Urville</exemplarCity>
</zone>
<zone type="Europe/Vienna">
<exemplarCity>Beć</exemplarCity>
</zone>
<zone type="Europe/Sofia">
<exemplarCity>Sofija</exemplarCity>
</zone>
<zone type="Asia/Bahrain">
<exemplarCity>Bahrein</exemplarCity>
</zone>
<zone type="Africa/Kinshasa">
<exemplarCity>Kinšasa</exemplarCity>
</zone>
<zone type="Africa/Lubumbashi">
<exemplarCity>Lubumbaši</exemplarCity>
</zone>
<zone type="Pacific/Easter">
<exemplarCity>Uskrsni Otok</exemplarCity>
</zone>
<zone type="Asia/Shanghai">
<exemplarCity>Šangaj</exemplarCity>
</zone>
<zone type="America/Costa_Rica">
<exemplarCity>Kostarika</exemplarCity>
</zone>
<zone type="Atlantic/Cape_Verde">
<exemplarCity>Zelenortska Republika</exemplarCity>
</zone>
<zone type="Indian/Christmas">
<exemplarCity>Božić</exemplarCity>
</zone>
<zone type="Asia/Nicosia">
<exemplarCity>Nikozija</exemplarCity>
</zone>
<zone type="Africa/Djibouti">
<exemplarCity>Džibuti</exemplarCity>
</zone>
<zone type="America/Dominica">
<exemplarCity>Dominika</exemplarCity>
</zone>
<zone type="Africa/Algiers">
<exemplarCity>Alžir</exemplarCity>
</zone>
<zone type="Atlantic/Canary">
<exemplarCity>Kanarska Otočja</exemplarCity>
</zone>
<zone type="Pacific/Fiji">
<exemplarCity>Fidži</exemplarCity>
</zone>
<zone type="Europe/Paris">
<exemplarCity>Pariz</exemplarCity>
</zone>
<zone type="Europe/Athens">
<exemplarCity>Atena</exemplarCity>
</zone>
<zone type="Atlantic/South_Georgia">
<exemplarCity>Južna Georgia</exemplarCity>
</zone>
<zone type="America/Guatemala">
<exemplarCity>Gvatemala</exemplarCity>
</zone>
<zone type="America/Guyana">
<exemplarCity>Gvajana</exemplarCity>
</zone>
<zone type="Europe/Budapest">
<exemplarCity>Budimpešta</exemplarCity>
</zone>
<zone type="Europe/Rome">
<exemplarCity>Rim</exemplarCity>
</zone>
<zone type="America/Jamaica">
<exemplarCity>Jamajka</exemplarCity>
</zone>
<zone type="Asia/Tokyo">
<exemplarCity>Tokio</exemplarCity>
</zone>
<zone type="America/St_Kitts">
<exemplarCity>St. Kitts</exemplarCity>
</zone>
<zone type="Asia/Kuwait">
<exemplarCity>Kuvajt</exemplarCity>
</zone>
<zone type="America/St_Lucia">
<exemplarCity>Sveta Lucija</exemplarCity>
</zone>
<zone type="Europe/Luxembourg">
<exemplarCity>Luksemburg</exemplarCity>
</zone>
<zone type="Europe/Monaco">
<exemplarCity>Monako</exemplarCity>
</zone>
<zone type="Indian/Mauritius">
<exemplarCity>Mauricijus</exemplarCity>
</zone>
<zone type="Indian/Maldives">
<exemplarCity>Maldivi</exemplarCity>
</zone>
<zone type="Europe/Warsaw">
<exemplarCity>Varšava</exemplarCity>
</zone>
<zone type="America/Puerto_Rico">
<exemplarCity>Portoriko</exemplarCity>
</zone>
<zone type="Atlantic/Azores">
<exemplarCity>Azorski otoci</exemplarCity>
</zone>
<zone type="Europe/Lisbon">
<exemplarCity>Lisabon</exemplarCity>
</zone>
<zone type="Asia/Qatar">
<exemplarCity>Katar</exemplarCity>
</zone>
<zone type="Indian/Reunion">
<exemplarCity>Réunion</exemplarCity>
</zone>
<zone type="Europe/Bucharest">
<exemplarCity>Bukurešt</exemplarCity>
</zone>
<zone type="Europe/Kaliningrad">
<exemplarCity>Kalinjingrad</exemplarCity>
</zone>
<zone type="Europe/Moscow">
<exemplarCity>Moskva</exemplarCity>
</zone>
<zone type="Asia/Krasnoyarsk">
<exemplarCity>Krasnojarsk</exemplarCity>
</zone>
<zone type="Asia/Kamchatka">
<exemplarCity>Kamčatka</exemplarCity>
</zone>
<zone type="Asia/Anadyr">
<exemplarCity>Anadir</exemplarCity>
</zone>
<zone type="Asia/Singapore">
<exemplarCity>Singapur</exemplarCity>
</zone>
<zone type="Atlantic/St_Helena">
<exemplarCity>Sveta Helena</exemplarCity>
</zone>
<zone type="America/El_Salvador">
<exemplarCity>Salvador</exemplarCity>
</zone>
<zone type="Europe/Uzhgorod">
<exemplarCity>Uzgorod</exemplarCity>
</zone>
<zone type="Europe/Kiev">
<exemplarCity>Kijev</exemplarCity>
</zone>
<zone type="Europe/Zaporozhye">
<exemplarCity>Zaporožje</exemplarCity>
</zone>
<zone type="America/Anchorage">
<exemplarCity>Alaska vremenska zona</exemplarCity>
</zone>
<zone type="America/North_Dakota/New_Salem">
<exemplarCity>New Salem, Sjeverna Dakota</exemplarCity>
</zone>
<zone type="America/North_Dakota/Center">
<exemplarCity>Središnja, Sjeverna Dakota</exemplarCity>
</zone>
<zone type="Asia/Tashkent">
<exemplarCity>Taškent</exemplarCity>
</zone>
<zone type="America/St_Vincent">
<exemplarCity>Sveti Vincent</exemplarCity>
</zone>
<zone type="America/St_Thomas">
<exemplarCity>Sveti Thomas</exemplarCity>
</zone>
<metazone type="Acre">
<long>
<daylight>Acre ljetno vrijeme</daylight>
</long>
</metazone>
<metazone type="Africa_Central">
<long>
<standard>Središnja Afrika</standard>
</long>
</metazone>
<metazone type="Africa_Eastern">
<long>
<standard>Istočna Afrika</standard>
</long>
</metazone>
<metazone type="Africa_Southern">
<long>
<standard>Južna Afrika</standard>
</long>
</metazone>
<metazone type="Africa_Western">
<long>
<standard>Zapadna Afrika</standard>
<daylight>Zapadna Afrika, ljetno vrijeme</daylight>
</long>
</metazone>
<metazone type="America_Central">
<long>
<generic>središnje vrijeme</generic>
<standard>središnje standardno vrijeme</standard>
<daylight>središnje dnevno vrijeme</daylight>
</long>
<short>
<generic>CT</generic>
<standard>CST</standard>
<daylight>CDT</daylight>
</short>
</metazone>
<metazone type="America_Eastern">
<long>
<generic>istočno vrijeme</generic>
<standard>istočno standardno vrijeme</standard>
<daylight>istočno dnevno vrijeme</daylight>
</long>
<short>
<generic>ET</generic>
<standard>EST</standard>
<daylight>EDT</daylight>
</short>
</metazone>
<metazone type="America_Mountain">
<long>
<generic>planinsko vrijeme</generic>
<standard>planinsko standardno vrijeme</standard>
<daylight>planinsko dnevno vrijeme</daylight>
</long>
<short>
<generic>MT</generic>
<standard>MST</standard>
<daylight>MDT</daylight>
</short>
</metazone>
<metazone type="America_Pacific">
<long>
<generic>pacifičko vrijeme</generic>
<standard>pacifičko standardno vrijeme</standard>
<daylight>pacifičko dnevno vrijeme</daylight>
</long>
<short>
<generic>PT</generic>
<standard>PST</standard>
<daylight>PDT</daylight>
</short>
</metazone>
<metazone type="Atlantic">
<long>
<generic>atlantsko vrijeme</generic>
<standard>atlantsko standardno vrijeme</standard>
<daylight>atlantsko dnevno vrijeme</daylight>
</long>
<short>
<generic>AT</generic>
<standard>AST</standard>
<daylight>ADT</daylight>
</short>
</metazone>
</timeZoneNames>
</dates>
<numbers>
<symbols>
<decimal>,</decimal>
<group>.</group>
</symbols>
<currencyFormats>
<currencyFormatLength>
<currencyFormat>
<pattern>#,##0.00 ¤</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
<currencies>
<currency type="ADP">
<displayName>andorska pezeta</displayName>
<displayName count="many">andorskih pezeta</displayName>
<displayName count="other">andorskih pezeta</displayName>
</currency>
<currency type="AED">
<displayName>UAE dirham</displayName>
<displayName count="few">UAE dirhama</displayName>
<displayName count="many">UAE dirhama</displayName>
<displayName count="other">UAE dirhama</displayName>
</currency>
<currency type="AFA">
<displayName>afganistanski afgani (1927.-2002.)</displayName>
<displayName count="few">afganistanska afgana (AFA)</displayName>
<displayName count="many">afganistanskih afgana (AFA)</displayName>
<displayName count="one">afganistanski afgan (AFA)</displayName>
<displayName count="other">afganistanskih afgana (AFA)</displayName>
</currency>
<currency type="AFN">
<displayName>afganistanski afgani</displayName>
<displayName count="few">afganistanska afgana</displayName>
<displayName count="many">afganistanskih afgana</displayName>
<displayName count="one">afganistanski afgan</displayName>
<displayName count="other">afganistanskih afgana</displayName>
</currency>
<currency type="ALL">
<displayName>albanski lek</displayName>
<displayName count="few">albanska leka</displayName>
<displayName count="many">albanskih leka</displayName>
<displayName count="one">albanski lek</displayName>
<displayName count="other">albanskih leka</displayName>
</currency>
<currency type="AMD">
<displayName>armenski dram</displayName>
<displayName count="few">armenska drama</displayName>
<displayName count="many">armenskih drama</displayName>
<displayName count="one">armenski dram</displayName>
<displayName count="other">armenskih drama</displayName>
</currency>
<currency type="ANG">
<displayName>nizozemskoantilski gulden</displayName>
<displayName count="few">nizozemskoantilska guldena</displayName>
<displayName count="many">nizozemskoantilskih guldena</displayName>
<displayName count="one">nizozemskoantilski gulden</displayName>
<displayName count="other">nizozemskoantilskih guldena</displayName>
</currency>
<currency type="AOA">
<displayName>angolska kvanza</displayName>
<displayName count="few">angolske kvanze</displayName>
<displayName count="many">angolskih kvanzi</displayName>
<displayName count="one">angolska kvanza</displayName>
<displayName count="other">angolskih kvanzi</displayName>
</currency>
<currency type="AOK">
<displayName>angolska kvanza (1977-1990)</displayName>
<displayName count="few">angolske kvanze (AOK)</displayName>
<displayName count="many">angolskih kvanzi (AOK)</displayName>
<displayName count="one">angolska kvanza (AOK)</displayName>
<displayName count="other">angolskih kvanzi (AOK)</displayName>
</currency>
<currency type="AON">
<displayName>angolska nova kvanza (1990-2000)</displayName>
<displayName count="few">angolske nove kvanze (AON)</displayName>
<displayName count="many">angolskih novih kvanzi (AON)</displayName>
<displayName count="one">angolska nova kvanza (AON)</displayName>
<displayName count="other">angolskih novih kvanzi (AON)</displayName>
</currency>
<currency type="AOR">
<displayName>angolska kvanza (1995.-1999.)</displayName>
<displayName count="few">angolske kvanze reajustado</displayName>
<displayName count="many">angolskih kvanzi reajustado</displayName>
<displayName count="one">angolska kvanza reajustado</displayName>
<displayName count="other">angolskih kvanzi reajustado (AOR)</displayName>
</currency>
<currency type="ARA">
<displayName>argentinski austral</displayName>
<displayName count="few">argentinska australa</displayName>
<displayName count="many">argentinskih australa</displayName>
<displayName count="one">argentinski austral</displayName>
<displayName count="other">argentinskih australa</displayName>
</currency>
<currency type="ARP">
<displayName>argentinski pezo (1983-1985)</displayName>
<displayName count="few">argentinska peza (ARP)</displayName>
<displayName count="many">argentinskih peza (ARP)</displayName>
<displayName count="one">argentinski pezo (ARP)</displayName>
<displayName count="other">argentinskih peza (ARP)</displayName>
</currency>
<currency type="ARS">
<displayName>argentinski pezo</displayName>
<displayName count="few">argentinska pezosa</displayName>
<displayName count="many">argentinskih pezosa</displayName>
<displayName count="one">argentinski pezos</displayName>
<displayName count="other">argentinskih pezosa</displayName>
</currency>
<currency type="ATS">
<displayName>austrijski šiling</displayName>
<displayName count="few">austrijska šilinga</displayName>
<displayName count="many">austrijskih šilinga</displayName>
<displayName count="one">austrijski šiling</displayName>
<displayName count="other">austrijskih šilinga</displayName>
</currency>
<currency type="AUD">
<displayName>australski dolar</displayName>
<displayName count="few">australska dolara</displayName>
<displayName count="many">australskih dolara</displayName>
<displayName count="one">australski dolar</displayName>
<displayName count="other">australskih dolara</displayName>
</currency>
<currency type="AWG">
<displayName>arupski gulden</displayName>
<displayName count="few">arupska guldena</displayName>
<displayName count="many">arupskih guldena</displayName>
<displayName count="one">arupski gulden</displayName>
<displayName count="other">arupskih guldena</displayName>
</currency>
<currency type="AZM">
<displayName>azerbajdžanski manat (1993-2006)</displayName>
<displayName count="few">azerbajdžanska manata (AZM)</displayName>
<displayName count="many">azerbajdžanskih manata (AZM)</displayName>
<displayName count="one">azerbajdžanski manat (AZM)</displayName>
<displayName count="other">azerbajdžanskih manata (AZM)</displayName>
</currency>
<currency type="AZN">
<displayName>azerbajdžanski manat</displayName>
<displayName count="few">azerbajdžanska manata</displayName>
<displayName count="many">azerbajdžanskih manata</displayName>
<displayName count="one">azerbajdžanski manat</displayName>
<displayName count="other">azerbajdžanskih manata</displayName>
</currency>
<currency type="BAD">
<displayName>bosansko-hercegovački dinar</displayName>
<displayName count="few">bosansko-hercegovačka dinara</displayName>
<displayName count="many">bosansko-hercegovačkih dinara</displayName>
<displayName count="other">bosansko-hercegovačkih dinara</displayName>
</currency>
<currency type="BAM">
<displayName>konvertibilna marka</displayName>
<displayName count="few">konvertibilne marke</displayName>
<displayName count="many">konvertibilnih maraka</displayName>
<displayName count="one">konvertibilna marka</displayName>
<displayName count="other">konvertibilnih maraka</displayName>
</currency>
<currency type="BBD">
<displayName>barbadoski dolar</displayName>
<displayName count="few">barbadoska dolara</displayName>
<displayName count="many">barbadoskih dolara</displayName>
<displayName count="one">barbadoski dolar</displayName>
<displayName count="other">barbadoskih dolara</displayName>
</currency>
<currency type="BDT">
<displayName>taka</displayName>
<displayName count="few">bangladeške take</displayName>
<displayName count="many">bangladeških taka</displayName>
<displayName count="one">bangladeška taka</displayName>
<displayName count="other">bangladeških taka</displayName>
</currency>
<currency type="BEC">
<displayName>belgijski franak (konvertibilan)</displayName>
<displayName count="few">belgijska franka (konvertibilna)</displayName>
<displayName count="many">belgijskih franaka (konvertibilnih)</displayName>
<displayName count="one">belgijski franak (konvertibilan)</displayName>
<displayName count="other">belgijskih franaka (konvertibilnih)</displayName>
</currency>
<currency type="BEF">
<displayName>belgijski franak</displayName>
<displayName count="few">belgijska franka</displayName>
<displayName count="many">belgijskih franaka</displayName>
<displayName count="one">belgijski franak</displayName>
<displayName count="other">belgijskih franaka</displayName>
</currency>
<currency type="BEL">
<displayName>belgijski franak (financijski)</displayName>
<displayName count="few">belgijska franka (financijska)</displayName>
<displayName count="many">belgijskih franaka (financijskih)</displayName>
<displayName count="one">belgijski franak (financijski)</displayName>
<displayName count="other">belgijskih franaka (financijskih)</displayName>
</currency>
<currency type="BGL">
<displayName>bugarski čvrsti lev</displayName>
<displayName count="few">bugarska čvrsta leva</displayName>
<displayName count="many">bugarskih čvrstih leva</displayName>
<displayName count="one">bugarski čvrsti lev</displayName>
<displayName count="other">bugarskih čvrstih leva</displayName>
</currency>
<currency type="BGN">
<displayName>bugarski novi lev</displayName>
<displayName count="few">bugarska leva</displayName>
<displayName count="many">bugarskih leva</displayName>
<displayName count="one">bugarski lev</displayName>
<displayName count="other">bugarskih leva</displayName>
</currency>
<currency type="BHD">
<displayName>bahreinski dinar</displayName>
<displayName count="few">bahreinska dinara</displayName>
<displayName count="many">bahreinskih dinara</displayName>
<displayName count="one">bahreinski dinar</displayName>
<displayName count="other">bahreinskih dinara</displayName>
</currency>
<currency type="BIF">
<displayName>burundski franak</displayName>
<displayName count="few">burundska franka</displayName>
<displayName count="many">burundskih franaka</displayName>
<displayName count="one">burundski franak</displayName>
<displayName count="other">burundskih franaka</displayName>
</currency>
<currency type="BMD">
<displayName>bermudski dolar</displayName>
<displayName count="few">bermudska dolara</displayName>
<displayName count="many">bermudskih dolara</displayName>
<displayName count="one">bermudski dolar</displayName>
<displayName count="other">bermudskih dolara</displayName>
</currency>
<currency type="BND">
<displayName>brunejski dolar</displayName>
<displayName count="few">brunejska dolara</displayName>
<displayName count="many">brunejskih dolara</displayName>
<displayName count="one">brunejski dolar</displayName>
<displayName count="other">brunejskih dolara</displayName>
</currency>
<currency type="BOB">
<displayName>bolivijano</displayName>
<displayName count="few">bolivijska bolivijana</displayName>
<displayName count="many">bolivijskih bolivijana</displayName>
<displayName count="one">bolivijski bolivijano</displayName>
<displayName count="other">bolivijskih bolivijana</displayName>
</currency>
<currency type="BOP">
<displayName>bolivijski pezo</displayName>
<displayName count="few">bolivijska peza</displayName>
<displayName count="many">bolivijskih peza</displayName>
<displayName count="one">bolivijski pezo</displayName>
<displayName count="other">bolivijskih peza</displayName>
</currency>
<currency type="BOV">
<displayName>bolivijski mvdol</displayName>
<displayName count="few">bolivijska mvdola</displayName>
<displayName count="many">bolivijskih mvdola</displayName>
<displayName count="one">bolivijski mvdol</displayName>
<displayName count="other">bolivijskih mvdola</displayName>
</currency>
<currency type="BRB">
<displayName>brazilski novi cruzeiro (1967.-1986.)</displayName>
<displayName count="few">brazilska nova cruzeira (BRB)</displayName>
<displayName count="many">brazilskih novih cruzeira (BRB)</displayName>
<displayName count="one">brazilski novi cruzeir (BRB)</displayName>
<displayName count="other">brazilskih novih cruzeira (BRB)</displayName>
</currency>
<currency type="BRC">
<displayName>brazilski cruzado</displayName>
<displayName count="few">brazilska cruzada</displayName>
<displayName count="many">brazilskih cruzada</displayName>
<displayName count="one">brazilski cruzad</displayName>
<displayName count="other">brazilskih cruzada</displayName>
</currency>
<currency type="BRE">
<displayName>brazilski cruzeiro (1990.-1993.)</displayName>
<displayName count="few">brazilska cruzeira (BRE)</displayName>
<displayName count="many">brazilskih cruzeira (BRE)</displayName>
<displayName count="one">brazilski cruzeir (BRE)</displayName>
<displayName count="other">brazilskih cruzeira (BRE)</displayName>
</currency>
<currency type="BRL">
<displayName>brazilski real</displayName>
<displayName count="few">brazilska reala</displayName>
<displayName count="many">brazilskih reala</displayName>
<displayName count="one">brazilski real</displayName>
<displayName count="other">brazilskih reala</displayName>
</currency>
<currency type="BRN">
<displayName>brazilski novi cruzado</displayName>
<displayName count="few">brazilska nova cruzada</displayName>
<displayName count="many">brazilskih novih cruzada</displayName>
<displayName count="one">brazilski novi cruzad</displayName>
<displayName count="other">brazilskih novih cruzada</displayName>
</currency>
<currency type="BRR">
<displayName>brazilski cruzeiro</displayName>
<displayName count="few">brazilska cruzeira</displayName>
<displayName count="many">brazilskih cruzeira</displayName>
<displayName count="one">brazilski cruzeiro</displayName>
<displayName count="other">brazilskih cruzeira</displayName>
</currency>
<currency type="BSD">
<displayName>bahamski dolar</displayName>
<displayName count="few">bahamska dolara</displayName>
<displayName count="many">bahamskih dolara</displayName>
<displayName count="other">bahamskih dolara</displayName>
</currency>
<currency type="BTN">
<displayName>butanski ngultrum</displayName>
<displayName count="few">butanska ngultruma</displayName>
<displayName count="many">butanskih ngultruma</displayName>
<displayName count="one">butanski ngultrum</displayName>
<displayName count="other">butanskih ngultruma</displayName>
</currency>
<currency type="BUK">
<displayName>kyat</displayName>
<displayName count="few">kyata</displayName>
<displayName count="many">kyata</displayName>
<displayName count="one">kyat</displayName>
<displayName count="other">kyata</displayName>
</currency>
<currency type="BWP">
<displayName>pula</displayName>
<displayName count="few">bocvanske pule</displayName>
<displayName count="many">bocvanskih pula</displayName>
<displayName count="one">bocvanska pula</displayName>
<displayName count="other">bocvanskih pula</displayName>
</currency>
<currency type="BYB">
<displayName>bjeloruska nova rublja (1994-1999)</displayName>
<displayName count="few">bjeloruske nove rublje (BYB)</displayName>
<displayName count="many">bjeloruskih novih rublji (BYB)</displayName>
<displayName count="one">bjeloruska nova rublja (BYB)</displayName>
<displayName count="other">bjeloruskih novih rublji (BYB)</displayName>
</currency>
<currency type="BYR">
<displayName>bjeloruska rublja</displayName>
<displayName count="few">bjeloruske rublje</displayName>
<displayName count="many">bjeloruskih rublji</displayName>
<displayName count="one">bjeloruska rublja</displayName>
<displayName count="other">bjeloruskih rublji</displayName>
</currency>
<currency type="BZD">
<displayName>belizeanski dolar</displayName>
<displayName count="few">belizeanska dolara</displayName>
<displayName count="many">belizeanskih dolara</displayName>
<displayName count="one">belizeanski dolar</displayName>
<displayName count="other">belizeanskih dolara</displayName>
</currency>
<currency type="CAD">
<displayName>kanadski dolar</displayName>
<displayName count="few">kanadska dolara</displayName>
<displayName count="many">kanadskih dolara</displayName>
<displayName count="one">kanadski dolar</displayName>
<displayName count="other">kanadskih dolara</displayName>
</currency>
<currency type="CDF">
<displayName>kongoanski franak</displayName>
<displayName count="few">kongoanska franka</displayName>
<displayName count="many">kongoanskih franaka</displayName>
<displayName count="one">kongoanski franak</displayName>
<displayName count="other">kongoanskih franaka</displayName>
</currency>
<currency type="CHE">
<displayName>WIR euro</displayName>
<displayName count="few">WIR eura</displayName>
<displayName count="many">WIR eura</displayName>
<displayName count="one">WIR euro</displayName>
<displayName count="other">WIR eura</displayName>
</currency>
<currency type="CHF">
<displayName>švicarski franak</displayName>
<displayName count="few">švicarska franka</displayName>
<displayName count="many">švicarskih franaka</displayName>
<displayName count="one">švicarski franak</displayName>
<displayName count="other">švicarskih franaka</displayName>
</currency>
<currency type="CHW">
<displayName>WIR franak</displayName>
<displayName count="few">WIR franka</displayName>
<displayName count="many">WIR franaka</displayName>
<displayName count="one">WIR franak</displayName>
<displayName count="other">WIR franaka</displayName>
</currency>
<currency type="CLF">
<displayName>Chilean Unidades de Fomento</displayName>
<displayName count="few">čileanska unidades de fomentos</displayName>
<displayName count="many">čileanskih unidades de fomentos</displayName>
<displayName count="one">čileanski unidades de fomentos</displayName>
<displayName count="other">čileanskih unidades de fomentos</displayName>
</currency>
<currency type="CLP">
<displayName>čileanski pezo</displayName>
<displayName count="few">čileanska peza</displayName>
<displayName count="many">čileanskih peza</displayName>
<displayName count="one">čileanski pezo</displayName>
<displayName count="other">čileanskih peza</displayName>
</currency>
<currency type="CNY">
<displayName>renminbi-juan</displayName>
<displayName count="few">kineska yuana</displayName>
<displayName count="many">kineskih yuana</displayName>
<displayName count="one">kineski yuan</displayName>
<displayName count="other">kineskih yuana</displayName>
</currency>
<currency type="COP">
<displayName>kolumbijski pezo</displayName>
<displayName count="few">kolumbijska peza</displayName>
<displayName count="many">kolumbijskih peza</displayName>
<displayName count="one">kolumbijski pezo</displayName>
<displayName count="other">kolumbijskih peza</displayName>
</currency>
<currency type="COU">
<displayName>Unidad de Valor Real</displayName>
<displayName count="few">unidad de valor reala</displayName>
<displayName count="many">unidad de valor reala</displayName>
<displayName count="one">unidad de valor real</displayName>
<displayName count="other">unidad de valor reala</displayName>
</currency>
<currency type="CRC">
<displayName>kostarikanski kolon</displayName>
<displayName count="few">kostarikanska kolona</displayName>
<displayName count="many">kostarikanskih kolona</displayName>
<displayName count="one">kostarikanski kolon</displayName>
<displayName count="other">kostarikanskih kolona</displayName>
</currency>
<currency type="CSD">
<displayName>stari srpski dinar</displayName>
<displayName count="few">stara srpska dinara</displayName>
<displayName count="many">starih srpskih dinara</displayName>
<displayName count="other">starih srpskih dinara</displayName>
</currency>
<currency type="CSK">
<displayName>Czechoslovak Hard Koruna</displayName>
<displayName count="few">čehoslovačke krune</displayName>
<displayName count="many">čehoslovačkih kruna</displayName>
<displayName count="one">čehoslovačka kruna</displayName>
<displayName count="other">čehoslovačkih kruna</displayName>
</currency>
<currency type="CUP">
<displayName>kubanski pezo</displayName>
<displayName count="few">kubanska peza</displayName>
<displayName count="many">kubanskih peza</displayName>
<displayName count="one">kubanski pezo</displayName>
<displayName count="other">kubanskih peza</displayName>
</currency>
<currency type="CVE">
<displayName>zelenortski eskudo</displayName>
<displayName count="few">zelenortska eskuda</displayName>
<displayName count="many">zelenortskih eskuda</displayName>
<displayName count="one">zelenortski eskudo</displayName>
<displayName count="other">zelenortskih eskuda</displayName>
</currency>
<currency type="CYP">
<displayName>ciparska funta</displayName>
<displayName count="few">ciparske funte</displayName>
<displayName count="many">ciparskih funti</displayName>
<displayName count="one">ciparska funta</displayName>
<displayName count="other">ciparskih funti</displayName>
</currency>
<currency type="CZK">
<displayName>češka kruna</displayName>
<displayName count="few">češke krune</displayName>
<displayName count="many">čeških kruna</displayName>
<displayName count="one">češka kruna</displayName>
<displayName count="other">čeških kruna</displayName>
</currency>
<currency type="DDM">
<displayName>East German Ostmark</displayName>
<displayName count="few">istočnonjemačke marke</displayName>
<displayName count="many">istočnonjemačkih marki</displayName>
<displayName count="one">istočnonjemačka marka</displayName>
<displayName count="other">istočnonjemačkih marki</displayName>
</currency>
<currency type="DEM">
<displayName>njemačka marka</displayName>
<displayName count="few">njemačke marke</displayName>
<displayName count="many">njemačkih marki</displayName>
<displayName count="one">njemačka marka</displayName>
<displayName count="other">njemačkih marki</displayName>
</currency>
<currency type="DJF">
<displayName>džibutski franak</displayName>
<displayName count="few">džibutska franka</displayName>
<displayName count="many">džibutskih franaka</displayName>
<displayName count="one">džibutski franak</displayName>
<displayName count="other">džibutskih franaka</displayName>
</currency>
<currency type="DKK">
<displayName>danska kruna</displayName>
<displayName count="few">danske krune</displayName>
<displayName count="many">danskih kruna</displayName>
<displayName count="one">danska kruna</displayName>
<displayName count="other">danskih kruna</displayName>
</currency>
<currency type="DOP">
<displayName>dominikanski pezo</displayName>
<displayName count="few">dominikanska peza</displayName>
<displayName count="many">dominikanskih peza</displayName>
<displayName count="one">dominikanski pezo</displayName>
<displayName count="other">dominikanskih peza</displayName>
</currency>
<currency type="DZD">
<displayName>alžirski dinar</displayName>
<displayName count="few">alžirska dinara</displayName>
<displayName count="many">alžirskih dinara</displayName>
<displayName count="one">alžirski dinar</displayName>
<displayName count="other">alžirskih dinara</displayName>
</currency>
<currency type="ECS">
<displayName>Ecuador Sucre</displayName>
<displayName count="few">ekvatorske sucre</displayName>
<displayName count="many">ekvatorskih sucri</displayName>
<displayName count="one">evatorska sucra</displayName>
<displayName count="other">ekvatorskih sucri</displayName>
</currency>
<currency type="ECV">
<displayName>Ecuador Unidad de Valor Constante (UVC)</displayName>
<displayName count="few">ekvatorska unidad de valor constante (UVC)</displayName>
<displayName count="many">ekvatorskih unidad de valor constante (UVC)</displayName>
<displayName count="one">ekvatorski unidad de valor constante (UVC)</displayName>
<displayName count="other">ekvatorskih unidad de valor constante (UVC)</displayName>
</currency>
<currency type="EEK">
<displayName>estonska kruna</displayName>
<displayName count="few">estonske krune</displayName>
<displayName count="many">estonskih kruna</displayName>
<displayName count="one">estonska kruna</displayName>
<displayName count="other">estonskih kruna</displayName>
</currency>
<currency type="EGP">
<displayName>egipatska funta</displayName>
<displayName count="few">egipatske funte</displayName>
<displayName count="many">egipatskih funti</displayName>
<displayName count="one">egipatska funta</displayName>
<displayName count="other">egipatskih funti</displayName>
</currency>
<currency type="ERN">
<displayName>nakfa</displayName>
<displayName count="few">eritrejske nakfe</displayName>
<displayName count="many">eritrejskih nakfi</displayName>
<displayName count="one">eritrejska nakfa</displayName>
<displayName count="other">eritrejskih nakfi</displayName>
</currency>
<currency type="ESA">
<displayName>španjolska pezeta (A račun)</displayName>
<displayName count="few">španjolske pezete (A račun)</displayName>
<displayName count="many">španjolskih pezeta (A račun)</displayName>
<displayName count="one">španjolska pezeta (A račun)</displayName>
<displayName count="other">španjolskih pezeta (A račun)</displayName>
</currency>
<currency type="ESB">
<displayName>španjolska pezeta (konvertibilni račun)</displayName>
<displayName count="few">španjolske pezete (konvertibilan račun)</displayName>
<displayName count="many">španjolskih pezeta (konvertibilan račun)</displayName>
<displayName count="one">španjolska pezeta (konvertibilan račun)</displayName>
<displayName count="other">španjolskih pezeta (konvertibilan račun)</displayName>
</currency>
<currency type="ESP">
<displayName>španjolska pezeta</displayName>
<displayName count="few">španjolske pezete</displayName>
<displayName count="many">španjolskih pezeta</displayName>
<displayName count="one">španjolska pezeta</displayName>
<displayName count="other">španjolskih pezeta</displayName>
</currency>
<currency type="ETB">
<displayName>etiopski bir</displayName>
<displayName count="few">etiopska bira</displayName>
<displayName count="many">etiopskih bira</displayName>
<displayName count="one">etiopski bir</displayName>
<displayName count="other">etiopskih bira</displayName>
</currency>
<currency type="EUR">
<displayName>euro</displayName>
<displayName count="few">eura</displayName>
<displayName count="many">eura</displayName>
<displayName count="one">euro</displayName>
<displayName count="other">eura</displayName>
</currency>
<currency type="FIM">
<displayName>finska marka</displayName>
<displayName count="few">finske marke</displayName>
<displayName count="many">finskih marki</displayName>
<displayName count="one">finska marka</displayName>
<displayName count="other">finskih marki</displayName>
</currency>
<currency type="FJD">
<displayName>fidžijski dolar</displayName>
<displayName count="few">fidžijska dolara</displayName>
<displayName count="many">fidžijskih dolara</displayName>
<displayName count="one">fidžijski dolar</displayName>
<displayName count="other">fidžijskih dolara</displayName>
</currency>
<currency type="FKP">
<displayName>falklandska funta</displayName>
<displayName count="few">falklandske funte</displayName>
<displayName count="many">falklandskih funti</displayName>
<displayName count="one">falklandska funta</displayName>
<displayName count="other">falklandskih funti</displayName>
</currency>
<currency type="FRF">
<displayName>francuski franak</displayName>
<displayName count="few">francuska franka</displayName>
<displayName count="many">francuskih franaka</displayName>
<displayName count="one">francuski franak</displayName>
<displayName count="other">francuskih franaka</displayName>
</currency>
<currency type="GBP">
<displayName>britanska funta</displayName>
<displayName count="few">britanske funte</displayName>
<displayName count="many">britanskih funti</displayName>
<displayName count="one">britanska funta</displayName>
<displayName count="other">britanskih funti</displayName>
</currency>
<currency type="GEK">
<displayName>Georgian Kupon Larit</displayName>
<displayName count="few">gruzijska kupon larita</displayName>
<displayName count="many">gruzijskih kupon larita</displayName>
<displayName count="one">gruzijski kupon larit</displayName>
<displayName count="other">gruzijskih kupon larita</displayName>
</currency>
<currency type="GEL">
<displayName>lari</displayName>
<displayName count="few">gruzijska lara</displayName>
<displayName count="many">gruzijskih lara</displayName>
<displayName count="one">gruzijski lar</displayName>
<displayName count="other">gruzijskih lara</displayName>
</currency>
<currency type="GHC">
<displayName>ganski cedi (1979.-2007.)</displayName>
<displayName count="few">ganska ceda (GHC)</displayName>
<displayName count="many">ganskih ceda (GHC)</displayName>
<displayName count="one">ganski cedi (GHC)</displayName>
<displayName count="other">ganskih ceda (GHC)</displayName>
</currency>
<currency type="GHS">
<displayName>ganski cedi</displayName>
<displayName count="few">ganska ceda</displayName>
<displayName count="many">ganskih ceda</displayName>
<displayName count="one">ganski cedi</displayName>
<displayName count="other">ganskih ceda</displayName>
</currency>
<currency type="GIP">
<displayName>gibraltarska funta</displayName>
<displayName count="few">gibraltarske funte</displayName>
<displayName count="many">gibraltarskih funti</displayName>
<displayName count="one">gibraltarska funta</displayName>
<displayName count="other">gibraltarskih funti</displayName>
</currency>
<currency type="GMD">
<displayName>dalasi</displayName>
<displayName count="few">gambijska dalasa</displayName>
<displayName count="many">gambijskih dalasa</displayName>
<displayName count="one">gambijski dalas</displayName>
<displayName count="other">gambijskih dalasa</displayName>
</currency>
<currency type="GNF">
<displayName>gvinejski franak</displayName>
<displayName count="few">gvinejska franka</displayName>
<displayName count="many">gvinejskih franaka</displayName>
<displayName count="one">gvinejski franak</displayName>
<displayName count="other">gvinejskih franaka</displayName>
</currency>
<currency type="GNS">
<displayName>gvinejski syli</displayName>
<displayName count="few">gvinejska sylija</displayName>
<displayName count="many">gvinejskih sylija</displayName>
<displayName count="one">gvinejski syli</displayName>
<displayName count="other">gvinejskih sylija</displayName>
</currency>
<currency type="GQE">
<displayName>Equatorial Guinea Ekwele Guineana</displayName>
<displayName count="few">gvinejska ekwele</displayName>
<displayName count="many">gvinejskih ekwele</displayName>
<displayName count="one">gvinejska ekwele</displayName>
<displayName count="other">gvinejskih ekwele</displayName>
</currency>
<currency type="GRD">
<displayName>grčka drahma</displayName>
<displayName count="few">grčke drahme</displayName>
<displayName count="many">grčkih drahmi</displayName>
<displayName count="one">grčka drahma</displayName>
<displayName count="other">grčkih drahmi</displayName>
</currency>
<currency type="GTQ">
<displayName>kvecal</displayName>
<displayName count="few">gvatemalska kvecala</displayName>
<displayName count="many">gvatemalskih kvecala</displayName>
<displayName count="one">gvatemalski kvecal</displayName>
<displayName count="other">gvatemalskih kvecala</displayName>
</currency>
<currency type="GWE">
<displayName>portugalski gvineja eskudo</displayName>
<displayName count="few">gvinejska eskuda</displayName>
<displayName count="many">gvinejskih eskuda</displayName>
<displayName count="one">gvinejski eskudo</displayName>
<displayName count="other">gvinejskih eskuda</displayName>
</currency>
<currency type="GWP">
<displayName>gvinejskobisauski pezo</displayName>
<displayName count="few">gvinejskobisauska peza</displayName>
<displayName count="many">gvinejskobisauskih peza</displayName>
<displayName count="one">gvinejskobisauski pezo</displayName>
<displayName count="other">gvinejskobisauskih peza</displayName>
</currency>
<currency type="GYD">
<displayName>gvajanski dolar</displayName>
<displayName count="few">gvajanska dolara</displayName>
<displayName count="many">gvajanskih dolara</displayName>
<displayName count="one">gvajanski dolar</displayName>
<displayName count="other">gvajanskih dolara</displayName>
</currency>
<currency type="HKD">
<displayName>hongkonški dolar</displayName>
<displayName count="few">honkonška dolara</displayName>
<displayName count="many">honkonških dolara</displayName>
<displayName count="one">honkonški dolar</displayName>
<displayName count="other">honkonških dolara</displayName>
</currency>
<currency type="HNL">
<displayName>honduraška lempira</displayName>
<displayName count="few">honduraške lempire</displayName>
<displayName count="many">honduraških lempira</displayName>
<displayName count="one">honduraška lempira</displayName>
<displayName count="other">honduraških lempira</displayName>
</currency>
<currency type="HRD">
<displayName>hrvatski dinar</displayName>
<displayName count="few">hrvatska dinara</displayName>
<displayName count="many">hrvatskih dinara</displayName>
<displayName count="one">hrvatski dinar</displayName>
<displayName count="other">hrvatskih dinara</displayName>
</currency>
<currency type="HRK">
<displayName>kuna</displayName>
<displayName count="few">kune</displayName>
<displayName count="many">kuna</displayName>
<displayName count="one">kuna</displayName>
<displayName count="other">kuna</displayName>
</currency>
<currency type="HTG">
<displayName>haićanski gourd</displayName>
<displayName count="few">haićanska gourda</displayName>
<displayName count="many">haićanskih gourda</displayName>
<displayName count="one">haićanski gourd</displayName>
<displayName count="other">haićanskih gourda</displayName>
</currency>
<currency type="HUF">
<displayName>mađarska forinta</displayName>
<displayName count="few">mađarske forinte</displayName>
<displayName count="many">mađarskih forinti</displayName>
<displayName count="one">mađarska forinta</displayName>
<displayName count="other">mađarskih forinti</displayName>
</currency>
<currency type="IDR">
<displayName>indonezijska rupija</displayName>
<displayName count="few">indonezijske rupije</displayName>
<displayName count="many">indonezijskih rupija</displayName>
<displayName count="one">indonezijska rupija</displayName>
<displayName count="other">indonezijskih rupija</displayName>
</currency>
<currency type="IEP">
<displayName>irska funta</displayName>
<displayName count="few">irske funte</displayName>
<displayName count="many">irskih funti</displayName>
<displayName count="one">irska funta</displayName>
<displayName count="other">irskih funti</displayName>
</currency>
<currency type="ILP">
<displayName>izraelska funta</displayName>
<displayName count="few">izraelske funte</displayName>
<displayName count="many">izraelskih funti</displayName>
<displayName count="one">izraelska funta</displayName>
<displayName count="other">izraelskih funti</displayName>
</currency>
<currency type="ILR">
<displayName>stari izraelski šekel</displayName>
<displayName count="few">stara izraelska šekela</displayName>
<displayName count="many">starih izraelskih šekela</displayName>
<displayName count="one">stari izraelski šekel</displayName>
<displayName count="other">starih izraelskih šekela</displayName>
</currency>
<currency type="ILS">
<displayName>novi izraelski šekel</displayName>
<displayName count="few">nova izraelska šekela</displayName>
<displayName count="many">novih izraelskih šekela</displayName>
<displayName count="one">novi izraelski šekel</displayName>
<displayName count="other">novih izraelskih šekela</displayName>
</currency>
<currency type="INR">
<displayName>indijska rupija</displayName>
<displayName count="few">indijske rupije</displayName>
<displayName count="many">indijskih rupija</displayName>
<displayName count="one">indijska rupija</displayName>
<displayName count="other">indijskih rupija</displayName>
</currency>
<currency type="IQD">
<displayName>irački dinar</displayName>
<displayName count="few">iračka dinara</displayName>
<displayName count="many">iračkih dinara</displayName>
<displayName count="one">irački dinar</displayName>
<displayName count="other">iračkih dinara</displayName>
</currency>
<currency type="IRR">
<displayName>iranski rijal</displayName>
<displayName count="few">iranska rijala</displayName>
<displayName count="many">iranskih rijala</displayName>
<displayName count="one">iranski rijal</displayName>
<displayName count="other">iranskih rijala</displayName>
</currency>
<currency type="ISJ">
<displayName>stara islandska kruna</displayName>
<displayName count="few">stare islandske krune</displayName>
<displayName count="many">starih islandskih kruna</displayName>
<displayName count="one">stara islandska kruna</displayName>
<displayName count="other">starih islandskih kruna</displayName>
</currency>
<currency type="ISK">
<displayName>islandska kruna</displayName>
<displayName count="few">islandske krune</displayName>
<displayName count="many">islandskih kruna</displayName>
<displayName count="one">islandska kruna</displayName>
<displayName count="other">islandskih kruna</displayName>
</currency>
<currency type="ITL">
<displayName>Talijanska lira</displayName>
<displayName count="few">talijanske lire</displayName>
<displayName count="many">talijanskih lira</displayName>
<displayName count="one">talijanska lira</displayName>
<displayName count="other">talijanskih lira</displayName>
</currency>
<currency type="JMD">
<displayName>jamajčanski dolar</displayName>
<displayName count="few">jamajčanska dolara</displayName>
<displayName count="many">jamajčanskih dolara</displayName>
<displayName count="one">jamajčanski dolar</displayName>
<displayName count="other">jamajčanskih dolara</displayName>
</currency>
<currency type="JOD">
<displayName>jordanski dinar</displayName>
<displayName count="few">jordanska dinara</displayName>
<displayName count="many">jordanskih dinara</displayName>
<displayName count="one">jordanski dinar</displayName>
<displayName count="other">jordanskih dinara</displayName>
</currency>
<currency type="JPY">
<displayName>japanski jen</displayName>
<displayName count="few">japanska jena</displayName>
<displayName count="many">japanskih jena</displayName>
<displayName count="one">japanski jen</displayName>
<displayName count="other">japanskih jena</displayName>
<symbol>¥</symbol>
</currency>
<currency type="KES">
<displayName>kenijski šiling</displayName>
<displayName count="few">kenijska šilinga</displayName>
<displayName count="many">kenijskih šilinga</displayName>
<displayName count="one">kenijski šiling</displayName>
<displayName count="other">kenijskih šilinga</displayName>
</currency>
<currency type="KGS">
<displayName>kirgiski som</displayName>
<displayName count="few">kirgijska soma</displayName>
<displayName count="many">kirgijskih soma</displayName>
<displayName count="one">kirgijski som</displayName>
<displayName count="other">kirgijskih soma</displayName>
</currency>
<currency type="KHR">
<displayName>rijal</displayName>
<displayName count="few">kambođanska rijala</displayName>
<displayName count="many">kambođanskih rijala</displayName>
<displayName count="one">kambođanski rijal</displayName>
<displayName count="other">kambođanskih rijala</displayName>
</currency>
<currency type="KMF">
<displayName>komorski franak</displayName>
<displayName count="few">komorska franka</displayName>
<displayName count="many">komorskih franaka</displayName>
<displayName count="one">komorski franak</displayName>
<displayName count="other">komorskih franaka</displayName>
</currency>
<currency type="KPW">
<displayName>sjevernokorejski won</displayName>
<displayName count="few">sjevernokorejska wona</displayName>
<displayName count="many">sjevernokorejskih wona</displayName>
<displayName count="one">sjevernokorejski won</displayName>
<displayName count="other">sjevernokorejskih wona</displayName>
</currency>
<currency type="KRW">
<displayName>južnokorejski won</displayName>
<displayName count="few">južnokorejska wona</displayName>
<displayName count="many">južnokorejskih wona</displayName>
<displayName count="other">južnokorejskih wona</displayName>
</currency>
<currency type="KWD">
<displayName>kuvajtski dinar</displayName>
<displayName count="few">kuvajtska dinara</displayName>
<displayName count="many">kuvajtskih dinara</displayName>
<displayName count="one">kuvajtski dinar</displayName>
<displayName count="other">kuvajtskih dinara</displayName>
</currency>
<currency type="KYD">
<displayName>kajmanski dolar</displayName>
<displayName count="few">kajmanska dolara</displayName>
<displayName count="many">kajmanskih dolara</displayName>
<displayName count="one">kajmanski dolar</displayName>
<displayName count="other">kajmanskih dolara</displayName>
</currency>
<currency type="KZT">
<displayName>kazahstanski tenge</displayName>
<displayName count="few">kazahstanska tengea</displayName>
<displayName count="many">kazahstanskih tengea</displayName>
<displayName count="one">kazahstanski tenge</displayName>
<displayName count="other">kazahstanskih tengea</displayName>
</currency>
<currency type="LAK">
<displayName>kip</displayName>
<displayName count="few">laoska kipa</displayName>
<displayName count="many">laoskih kipa</displayName>
<displayName count="one">laoski kip</displayName>
<displayName count="other">laoskih kipa</displayName>
</currency>
<currency type="LBP">
<displayName>libanonska funta</displayName>
<displayName count="few">libanonske funte</displayName>
<displayName count="many">libanonskih funti</displayName>
<displayName count="one">libanonska funta</displayName>
<displayName count="other">libanonskih funti</displayName>
</currency>
<currency type="LKR">
<displayName>šrilanska rupija</displayName>
<displayName count="few">šrilankanske rupije</displayName>
<displayName count="many">šrilankanskih rupija</displayName>
<displayName count="one">šrilankanska rupija</displayName>
<displayName count="other">šrilankanskih rupija</displayName>
</currency>
<currency type="LRD">
<displayName>liberijski dolar</displayName>
<displayName count="few">liberijska dolara</displayName>
<displayName count="many">liberijskih dolara</displayName>
<displayName count="one">liberijski dolar</displayName>
<displayName count="other">liberijskih dolara</displayName>
</currency>
<currency type="LSL">
<displayName>loti</displayName>
<displayName count="few">lesoto lotija</displayName>
<displayName count="many">lesoto lotija</displayName>
<displayName count="one">lesoto loti</displayName>
<displayName count="other">lesoto lotija</displayName>
</currency>
<currency type="LTL">
<displayName>litavski litas</displayName>
<displayName count="few">litavska litasa</displayName>
<displayName count="many">litavskih litasa</displayName>
<displayName count="one">litavski litas</displayName>
<displayName count="other">litavskih litasa</displayName>
</currency>
<currency type="LTT">
<displayName>litavski talonas</displayName>
<displayName count="few">litavska talonasa</displayName>
<displayName count="many">litavskih talonasa</displayName>
<displayName count="one">litavski talonas</displayName>
<displayName count="other">litavskih talonasa</displayName>
</currency>
<currency type="LUC">
<displayName>luksemburški konvertibilni franak</displayName>
<displayName count="few">luksemburška konvertibilna franka</displayName>
<displayName count="many">luksemburških konvertibilnih franaka</displayName>
<displayName count="one">luksemburški konvertibilni franak</displayName>
<displayName count="other">luksemburških konvertibilnih franaka</displayName>
</currency>
<currency type="LUF">
<displayName>luksemburški franak</displayName>
<displayName count="few">luksemburška franka</displayName>
<displayName count="many">luksemburških franaka</displayName>
<displayName count="one">luksemburški franak</displayName>
<displayName count="other">luksemburških franaka</displayName>
</currency>
<currency type="LUL">
<displayName>Luksemburški financijski franak</displayName>
<displayName count="few">luksemburška financijska franka</displayName>
<displayName count="many">luksemburških financijskih franaka</displayName>
<displayName count="one">luksemburški financijski franak</displayName>
<displayName count="other">luksemburških financijskih franaka</displayName>
</currency>
<currency type="LVL">
<displayName>letonski lats</displayName>
<displayName count="few">letonska latsa</displayName>
<displayName count="many">letonskih latsa</displayName>
<displayName count="one">letonski lats</displayName>
<displayName count="other">letonskih latsa</displayName>
</currency>
<currency type="LVR">
<displayName>Latvian Ruble</displayName>
<displayName count="few">letonske rublje</displayName>
<displayName count="many">letonskih rublji</displayName>
<displayName count="one">letonska rublja</displayName>
<displayName count="other">letonskih rublji</displayName>
</currency>
<currency type="LYD">
<displayName>libijski dinar</displayName>
<displayName count="few">libijska dinara</displayName>
<displayName count="many">libijskih dinara</displayName>
<displayName count="one">libijski dinar</displayName>
<displayName count="other">libijskih dinara</displayName>
</currency>
<currency type="MAD">
<displayName>marokanski dirham</displayName>
<displayName count="few">marokanska dirhama</displayName>
<displayName count="many">marokanskih dirhama</displayName>
<displayName count="one">marokanski dirham</displayName>
<displayName count="other">marokanskih dirhama</displayName>
</currency>
<currency type="MAF">
<displayName>marokanski franak</displayName>
<displayName count="few">marokanska franka</displayName>
<displayName count="many">marokanskih franaka</displayName>
<displayName count="one">marokanski franak</displayName>
<displayName count="other">marokanskih franaka</displayName>
</currency>
<currency type="MDL">
<displayName>moldavski lej</displayName>
<displayName count="few">moldavska leja</displayName>
<displayName count="many">moldavskih leja</displayName>
<displayName count="one">moldavski lej</displayName>
<displayName count="other">moldavskih leja</displayName>
</currency>
<currency type="MGA">
<displayName>madagaskarski ariary</displayName>
<displayName count="few">madagaskarska ariarija</displayName>
<displayName count="many">madagaskarskih ariarija</displayName>
<displayName count="one">madagaskarski ariary</displayName>
<displayName count="other">madagaskarskih ariarija</displayName>
</currency>
<currency type="MGF">
<displayName>madagaskarski franak</displayName>
<displayName count="few">madagaskarska franka</displayName>
<displayName count="many">madagaskarskih franaka</displayName>
<displayName count="one">madagaskarski franak</displayName>
<displayName count="other">madagaskarskih franaka</displayName>
</currency>
<currency type="MKD">
<displayName>makedonski denar</displayName>
<displayName count="few">makedonska dinara</displayName>
<displayName count="many">makedonskih dinara</displayName>
<displayName count="one">makedonski dinar</displayName>
<displayName count="other">makedonskih dinara</displayName>
</currency>
<currency type="MLF">
<displayName>CFA franak</displayName>
<displayName count="few">malijska franka</displayName>
<displayName count="many">malijskih franaka</displayName>
<displayName count="one">malijski franak</displayName>
<displayName count="other">malijskih franaka</displayName>
</currency>
<currency type="MMK">
<displayName>Myanmar Kyat</displayName>
<displayName count="few">mjanmarska kjata</displayName>
<displayName count="many">mjanmarskih kjata</displayName>
<displayName count="one">mjanmarski kjat</displayName>
<displayName count="other">mjanmarskih kjata</displayName>
</currency>
<currency type="MNT">
<displayName>mongolski tugrik</displayName>
<displayName count="few">mongolska tugrika</displayName>
<displayName count="many">mongolskih tugrika</displayName>
<displayName count="one">mongolski tugrik</displayName>
<displayName count="other">mongolskih tugrika</displayName>
</currency>
<currency type="MOP">
<displayName>Macao Pataca</displayName>
<displayName count="few">pataka</displayName>
<displayName count="many">pataka</displayName>
<displayName count="one">patak</displayName>
<displayName count="other">pataka</displayName>
</currency>
<currency type="MRO">
<displayName>mauritanijska ouguja</displayName>
<displayName count="few">mauritanijske ouguje</displayName>
<displayName count="many">mauritanijskih ouguja</displayName>
<displayName count="one">mauritanijska ouguja</displayName>
<displayName count="other">mauritanijskih ouguja</displayName>
</currency>
<currency type="MTL">
<displayName>malteška lira</displayName>
<displayName count="few">malteške lire</displayName>
<displayName count="many">malteških lira</displayName>
<displayName count="one">malteška lira</displayName>
<displayName count="other">malteških lira</displayName>
</currency>
<currency type="MTP">
<displayName>malteška funta</displayName>
<displayName count="few">malteške funte</displayName>
<displayName count="many">malteških funti</displayName>
<displayName count="one">malteška funta</displayName>
<displayName count="other">malteških funti</displayName>
</currency>
<currency type="MUR">
<displayName>mauricijska rupija</displayName>
<displayName count="few">mauricijske rupije</displayName>
<displayName count="many">mauricijskih rupija</displayName>
<displayName count="one">mauricijska rupija</displayName>
<displayName count="other">mauricijskih rupija</displayName>
</currency>
<currency type="MVR">
<displayName>maldivijska rufija</displayName>
<displayName count="few">maldivijske rufije</displayName>
<displayName count="many">maldivijskih rufija</displayName>
<displayName count="one">maldivijska rufija</displayName>
<displayName count="other">maldivijskih rufija</displayName>
</currency>
<currency type="MWK">
<displayName>Malawi Kwacha</displayName>
<displayName count="few">malavijske kvače</displayName>
<displayName count="many">malavijskih kvača</displayName>
<displayName count="one">malavijska kvača</displayName>
<displayName count="other">malavijskih kvača</displayName>
</currency>
<currency type="MXN">
<displayName>meksički pezo</displayName>
<displayName count="few">meksička peza</displayName>
<displayName count="many">meksičkih peza</displayName>
<displayName count="one">meksički pezo</displayName>
<displayName count="other">meksičkih peza</displayName>
</currency>
<currency type="MXP">
<displayName>meksički srebrni pezo (1861-1992)</displayName>
<displayName count="few">meksička srebrna peza (MXP)</displayName>
<displayName count="many">meksičkih srebrnih peza (MXP)</displayName>
<displayName count="one">meksički srebrni pezo (MXP)</displayName>
<displayName count="other">meksičkih srebrnih peza (MXP)</displayName>
</currency>
<currency type="MXV">
<displayName>Mexican Unidad de Inversion (UDI)</displayName>
<displayName count="few">Mexican unidads de inversion (UDI)</displayName>
<displayName count="many">Mexican unidads de inversion (UDI)</displayName>
<displayName count="one">Mexican unidads de inversion (UDI)</displayName>
<displayName count="other">Mexican unidads de inversion (UDI)</displayName>
</currency>
<currency type="MYR">
<displayName>malezijski ringit</displayName>
<displayName count="few">malezijska ringita</displayName>
<displayName count="many">malezijskih ringita</displayName>
<displayName count="one">malezijski ringit</displayName>
<displayName count="other">malezijskih ringita</displayName>
</currency>
<currency type="MZE">
<displayName>mozambijski eskudo</displayName>
<displayName count="few">mozambijska eskuda</displayName>
<displayName count="many">mozambijskih eskuda</displayName>
<displayName count="one">mozambijski eskudo</displayName>
<displayName count="other">mozambijskih eskuda</displayName>
</currency>
<currency type="MZM">
<displayName>stari mozambijski metikal</displayName>
<displayName count="few">stara mozambijska metikala</displayName>
<displayName count="many">starih mozambijskih metikala</displayName>
<displayName count="one">stari mozambijski metikal</displayName>
<displayName count="other">starih mozambijskih metikala</displayName>
</currency>
<currency type="MZN">
<displayName>mozambijski metikal</displayName>
<displayName count="few">mozambijska metikala</displayName>
<displayName count="many">mozambijskih metikala</displayName>
<displayName count="one">mozambijski metikal</displayName>
<displayName count="other">mozambijskih metikala</displayName>
</currency>
<currency type="NAD">
<displayName>namibijski dolar</displayName>
<displayName count="few">namibijska dolara</displayName>
<displayName count="many">namibijskih dolara</displayName>
<displayName count="one">namibijski dolar</displayName>
<displayName count="other">namibijskih dolara</displayName>
</currency>
<currency type="NGN">
<displayName>nigerijska naira</displayName>
<displayName count="few">nigerijska naira</displayName>
<displayName count="many">nigerijskih naira</displayName>
<displayName count="one">nigerijski nair</displayName>
<displayName count="other">nigerijskih naira</displayName>
</currency>
<currency type="NIC">
<displayName>nikaragvanska kordoba</displayName>
<displayName count="few">nikaragvanske kordobe</displayName>
<displayName count="many">nikaragvanskih kordoba</displayName>
<displayName count="one">nikaragvanska kordoba</displayName>
<displayName count="other">nikaragvanskih kordoba</displayName>
</currency>
<currency type="NIO">
<displayName>nikaragvanska zlatna kordoba</displayName>
<displayName count="few">nikaragvanske zlatne kordobe</displayName>
<displayName count="many">nikaragvanskih zlatnih kordoba</displayName>
<displayName count="one">nikaragvanska zlatna kordoba</displayName>
<displayName count="other">nikaragvanskih zlatnih kordoba</displayName>
</currency>
<currency type="NLG">
<displayName>nizozemski gulden</displayName>
<displayName count="few">nizozemska guldena</displayName>
<displayName count="many">nizozemskih guldena</displayName>
<displayName count="one">nizozemski gulden</displayName>
<displayName count="other">nizozemskih guldena</displayName>
</currency>
<currency type="NOK">
<displayName>norveška kruna</displayName>
<displayName count="few">norveške krune</displayName>
<displayName count="many">norveških kruna</displayName>
<displayName count="one">norveška kruna</displayName>
<displayName count="other">norveških kruna</displayName>
</currency>
<currency type="NPR">
<displayName>nepalska rupija</displayName>
<displayName count="few">nepalske rupije</displayName>
<displayName count="many">nepalskih rupija</displayName>
<displayName count="one">nepalska rupija</displayName>
<displayName count="other">nepalskih rupija</displayName>
</currency>
<currency type="NZD">
<displayName>novozelandski dolar</displayName>
<displayName count="few">novozelandska dolara</displayName>
<displayName count="many">novozelandskih dolara</displayName>
<displayName count="one">novozelandski dolar</displayName>
<displayName count="other">novozelandskih dolara</displayName>
</currency>
<currency type="OMR">
<displayName>omanski rijal</displayName>
<displayName count="few">omanska rijala</displayName>
<displayName count="many">omanskih rijala</displayName>
<displayName count="one">omanski rijal</displayName>
<displayName count="other">omanskih rijala</displayName>
</currency>
<currency type="PAB">
<displayName>balboa</displayName>
<displayName count="few">panamske balboe</displayName>
<displayName count="many">panamskih balboa</displayName>
<displayName count="one">panamska balboa</displayName>
<displayName count="other">panamskih balboa</displayName>
</currency>
<currency type="PEI">
<displayName>peruanski inti</displayName>
<displayName count="few">peruanske inti</displayName>
<displayName count="many">peruanskih inti</displayName>
<displayName count="one">peruanski inti</displayName>
<displayName count="other">peruanskih inti</displayName>
</currency>
<currency type="PEN">
<displayName>novi sol</displayName>
<displayName count="few">peruanska nova sola</displayName>
<displayName count="many">peruanskih novih sola</displayName>
<displayName count="one">peruanski novi sol</displayName>
<displayName count="other">peruanskih novih sola</displayName>
</currency>
<currency type="PES">
<displayName>sol</displayName>
<displayName count="few">peruanska sola</displayName>
<displayName count="many">peruanskih sola</displayName>
<displayName count="one">peruanski sol</displayName>
<displayName count="other">peruanskih sola</displayName>
</currency>
<currency type="PGK">
<displayName>kina Papue Nove Gvineje</displayName>
<displayName count="few">kine Papue Nove Gvineje</displayName>
<displayName count="many">kina Papue Nove Gvineje</displayName>
<displayName count="one">kina Papue Nove Gvineje</displayName>
<displayName count="other">kina Papue Nove Gvineje</displayName>
</currency>
<currency type="PHP">
<displayName>filipinski pezo</displayName>
<displayName count="few">filipinska peza</displayName>
<displayName count="many">filipinskih peza</displayName>
<displayName count="one">filipinski pezo</displayName>
<displayName count="other">filipinskih peza</displayName>
</currency>
<currency type="PKR">
<displayName>pakistanska rupija</displayName>
<displayName count="few">pakistanske rupije</displayName>
<displayName count="many">pakistanskih rupija</displayName>
<displayName count="one">pakistanska rupija</displayName>
<displayName count="other">pakistanskih rupija</displayName>
</currency>
<currency type="PLN">
<displayName>poljska zlota</displayName>
<displayName count="few">poljske zlote</displayName>
<displayName count="many">poljskih zlota</displayName>
<displayName count="one">poljska zlota</displayName>
<displayName count="other">poljskih zlota</displayName>
</currency>
<currency type="PLZ">
<displayName>Poljska zlota (1950-1995)</displayName>
<displayName count="few">poljske zlote (PLZ)</displayName>
<displayName count="many">poljskih zlota (PLZ)</displayName>
<displayName count="one">poljska zlota (PLZ)</displayName>
<displayName count="other">poljskih zlota (PLZ)</displayName>
</currency>
<currency type="PTE">
<displayName>portugalski eskudo</displayName>
<displayName count="few">portugalska eskuda</displayName>
<displayName count="many">portugalskih eskuda</displayName>
<displayName count="one">portugalski eskudo</displayName>
<displayName count="other">portugalskih eskuda</displayName>
</currency>
<currency type="PYG">
<displayName>gvarani</displayName>
<displayName count="few">paragvajska gvaranija</displayName>
<displayName count="many">paragvajskih gvaranija</displayName>
<displayName count="one">paragvajski gvarani</displayName>
<displayName count="other">paragvajskih gvaranija</displayName>
</currency>
<currency type="QAR">
<displayName>katarski rial</displayName>
<displayName count="few">katarska rijala</displayName>
<displayName count="many">katarskih rijala</displayName>
<displayName count="one">katarski rijal</displayName>
<displayName count="other">katarskih rijala</displayName>
</currency>
<currency type="RHD">
<displayName>rodezijski dolar</displayName>
<displayName count="few">rodezijska dolara</displayName>
<displayName count="many">rodezijskih dolara</displayName>
<displayName count="one">rodezijski dolar</displayName>
<displayName count="other">rodezijskih dolara</displayName>
</currency>
<currency type="ROL">
<displayName>starorumunjski lek</displayName>
<displayName count="few">stara rumunjska leja</displayName>
<displayName count="many">starih rumunjskih leja</displayName>
<displayName count="one">stari rumunjski lej</displayName>
<displayName count="other">starih rumunjskih leja</displayName>
</currency>
<currency type="RON">
<displayName>rumunjski lev</displayName>
<displayName count="few">nova rumunjska leja</displayName>
<displayName count="many">novih rumunjskih leja</displayName>
<displayName count="one">novi rumunjski lej</displayName>
<displayName count="other">novih rumunjskih leja</displayName>
</currency>
<currency type="RSD">
<displayName>srpski dinar</displayName>
<displayName count="few">srpska dinara</displayName>
<displayName count="many">srpskih dinara</displayName>
<displayName count="one">srpski dinar</displayName>
<displayName count="other">srpskih dinara</displayName>
</currency>
<currency type="RUB">
<displayName>ruska rublja</displayName>
<displayName count="few">ruske rublje</displayName>
<displayName count="many">ruskih rublji</displayName>
<displayName count="one">ruska rublja</displayName>
<displayName count="other">ruskih rublji</displayName>
</currency>
<currency type="RUR">
<displayName>ruska rublja (1991.-1998.)</displayName>
<displayName count="few">ruske rublje (RUR)</displayName>
<displayName count="many">ruskih rublji (RUR)</displayName>
<displayName count="one">ruska rublja (RUR)</displayName>
<displayName count="other">ruskih rublji (RUR)</displayName>
</currency>
<currency type="RWF">
<displayName>ruandski franak</displayName>
<displayName count="few">ruandska franka</displayName>
<displayName count="many">ruandskih franaka</displayName>
<displayName count="one">ruandski franak</displayName>
<displayName count="other">ruandskih franaka</displayName>
</currency>
<currency type="SAR">
<displayName>saudijski rial</displayName>
<displayName count="few">saudijska rijala</displayName>
<displayName count="many">saudijskih rijala</displayName>
<displayName count="one">saudijski rijal</displayName>
<displayName count="other">saudijskih rijala</displayName>
</currency>
<currency type="SBD">
<displayName>solmonskootočni dolar</displayName>
<displayName count="few">solomonskootočna dolara</displayName>
<displayName count="many">solomonskootočnih dolara</displayName>
<displayName count="one">solomonskootočni dolar</displayName>
<displayName count="other">solomonskootočnih dolara</displayName>
</currency>
<currency type="SCR">
<displayName>sejšelska rupija</displayName>
<displayName count="few">sejšelske rupije</displayName>
<displayName count="many">sejšelskih rupija</displayName>
<displayName count="one">sejšelska rupija</displayName>
<displayName count="other">sejšelskih rupija</displayName>
</currency>
<currency type="SDD">
<displayName>sudanski dinar</displayName>
<displayName count="few">sudanska dinara</displayName>
<displayName count="many">sudanskih dinara</displayName>
<displayName count="one">sudanski dinar</displayName>
<displayName count="other">sudanskih dinara</displayName>
</currency>
<currency type="SDG">
<displayName>sudanska funta</displayName>
<displayName count="few">sudanske funte</displayName>
<displayName count="many">sudanskih funti</displayName>
<displayName count="one">sudanska funta</displayName>
<displayName count="other">sudanskih funti</displayName>
</currency>
<currency type="SDP">
<displayName>stara sudanska funta</displayName>
<displayName count="few">stare sudanske funte</displayName>
<displayName count="many">starih sudanskih funti</displayName>
<displayName count="one">stara sudanska funta</displayName>
<displayName count="other">starih sudanskih funti</displayName>
</currency>
<currency type="SEK">
<displayName>švedska kruna</displayName>
<displayName count="few">švedske krune</displayName>
<displayName count="many">švedskih kruna</displayName>
<displayName count="one">švedska kruna</displayName>
<displayName count="other">švedskih kruna</displayName>
</currency>
<currency type="SGD">
<displayName>singapurski dolar</displayName>
<displayName count="few">singapurska dolara</displayName>
<displayName count="many">singapurskih dolara</displayName>
<displayName count="one">singapurski dolar</displayName>
<displayName count="other">singapurskih dolara</displayName>
</currency>
<currency type="SHP">
<displayName>svetohelenska funta</displayName>
<displayName count="few">svetohelenske funte</displayName>
<displayName count="many">svetohelenskih funti</displayName>
<displayName count="one">svetohelenska funta</displayName>
<displayName count="other">svetohelenskih funti</displayName>
</currency>
<currency type="SIT">
<displayName>slovenski tolar</displayName>
<displayName count="few">slovenska tolara</displayName>
<displayName count="many">slovenskih tolara</displayName>
<displayName count="one">slovenski tolar</displayName>
<displayName count="other">slovenskih tolara</displayName>
</currency>
<currency type="SKK">
<displayName>slovačka kruna</displayName>
<displayName count="few">slovačke krune</displayName>
<displayName count="many">slovačkih kruna</displayName>
<displayName count="one">slovačka kruna</displayName>
<displayName count="other">slovačkih kruna</displayName>
</currency>
<currency type="SLL">
<displayName>sijeraleonski leone</displayName>
<displayName count="few">sijeraleonske leone</displayName>
<displayName count="many">sijeraleonskih leona</displayName>
<displayName count="one">sijeraleonski leon</displayName>
<displayName count="other">sijeraleonskih leona</displayName>
</currency>
<currency type="SOS">
<displayName>somalijski šiling</displayName>
<displayName count="few">somalijska šilinga</displayName>
<displayName count="many">somalijskih šilinga</displayName>
<displayName count="one">somalijski šiling</displayName>
<displayName count="other">somalijskih šilinga</displayName>
</currency>
<currency type="SRD">
<displayName>surinamski dolar</displayName>
<displayName count="few">surinamska dolara</displayName>
<displayName count="many">surinamskih dolara</displayName>
<displayName count="one">surinamski dolar</displayName>
<displayName count="other">surinamskih dolara</displayName>
</currency>
<currency type="SRG">
<displayName>surinamski gulden</displayName>
<displayName count="few">surinamska guldena</displayName>
<displayName count="many">surinamskih guldena</displayName>
<displayName count="one">surinamski gulden</displayName>
<displayName count="other">surinamskih guldena</displayName>
</currency>
<currency type="STD">
<displayName>dobra Svetog Tome i Principa</displayName>
<displayName count="few">dobra Svetog Tome i Principa</displayName>
<displayName count="many">dobra Svetog Tome i Principa</displayName>
<displayName count="one">dobra Svetog Tome i Principa</displayName>
<displayName count="other">dobra Svetog Tome i Principa</displayName>
</currency>
<currency type="SUR">
<displayName>sovjetska rublja</displayName>
<displayName count="few">sovjetske rublje</displayName>
<displayName count="many">sovjetskih rublji</displayName>
<displayName count="one">sovjetska rublja</displayName>
<displayName count="other">sovjetskih rublji</displayName>
</currency>
<currency type="SVC">
<displayName>salvadorski kolon</displayName>
<displayName count="few">salvadorska kolona</displayName>
<displayName count="many">salvadorskih kolona</displayName>
<displayName count="one">salvadorski kolon</displayName>
<displayName count="other">salvadorskih kolona</displayName>
</currency>
<currency type="SYP">
<displayName>sirijska funta</displayName>
<displayName count="few">sirijske funte</displayName>
<displayName count="many">sirijskih funti</displayName>
<displayName count="one">sirijska funta</displayName>
<displayName count="other">sirijskih funti</displayName>
</currency>
<currency type="SZL">
<displayName>svazi lilangeni</displayName>
<displayName count="few">svazi lilangena</displayName>
<displayName count="many">svazi lilangena</displayName>
<displayName count="one">svazi lilangeni</displayName>
<displayName count="other">svazi lilangena</displayName>
</currency>
<currency type="THB">
<displayName>tajlandski bat</displayName>
<displayName count="few">tajlandska bahta</displayName>
<displayName count="many">tajlandskih bahta</displayName>
<displayName count="one">tajlandski baht</displayName>
<displayName count="other">tajlandskih bahta</displayName>
</currency>
<currency type="TJR">
<displayName>tajikistanska rublja</displayName>
<displayName count="few">tadžikistanske rublje</displayName>
<displayName count="many">tadžikistanskih rublji</displayName>
<displayName count="one">tadžikistanska rublja</displayName>
<displayName count="other">tadžikistanskih rublji</displayName>
</currency>
<currency type="TJS">
<displayName>tadžikistanski somoni</displayName>
<displayName count="few">tadžikistanska somona</displayName>
<displayName count="many">tadžikistanskih somona</displayName>
<displayName count="one">tadžikistanski somoni</displayName>
<displayName count="other">tadžikistanskih somona</displayName>
</currency>
<currency type="TMM">
<displayName>turkmenistanski manat</displayName>
<displayName count="few">turkmenistanska manata</displayName>
<displayName count="many">turkmenistanskih manata</displayName>
<displayName count="one">turkmenistanski manat</displayName>
<displayName count="other">turkmenistanskih manata</displayName>
</currency>
<currency type="TND">
<displayName>tuniski dinar</displayName>
<displayName count="few">tuniska dinara</displayName>
<displayName count="many">tuniskih dinara</displayName>
<displayName count="one">tuniski dinar</displayName>
<displayName count="other">tuniskih dinara</displayName>
</currency>
<currency type="TOP">
<displayName>tongaška pa'anga</displayName>
<displayName count="few">tongaške pa'ange</displayName>
<displayName count="many">tongaških pa'angi</displayName>
<displayName count="one">tongaška pa'anga</displayName>
<displayName count="other">tongaških pa'angi</displayName>
</currency>
<currency type="TPE">
<displayName>timorski eskudo</displayName>
<displayName count="few">timorska eskuda</displayName>
<displayName count="many">timorskih eskuda</displayName>
<displayName count="one">timorski eskudo</displayName>
<displayName count="other">timorskih eskuda</displayName>
</currency>
<currency type="TRL">
<displayName>stara turska lira</displayName>
<displayName count="few">stare turske lire</displayName>
<displayName count="many">starih turskih lira</displayName>
<displayName count="one">stara turska lira</displayName>
<displayName count="other">starih turskih lira</displayName>
</currency>
<currency type="TRY">
<displayName>turska lira</displayName>
<displayName count="few">turske lire</displayName>
<displayName count="many">turskih lira</displayName>
<displayName count="one">turska lira</displayName>
<displayName count="other">turskih lira</displayName>
</currency>
<currency type="TTD">
<displayName>trininadtobaški dolar</displayName>
<displayName count="few">trinidadtobaška dolara</displayName>
<displayName count="many">trinidadtobaških dolara</displayName>
<displayName count="one">trinidadtobaški dolar</displayName>
<displayName count="other">trinidadtobaških dolara</displayName>
</currency>
<currency type="TWD">
<displayName>Novotajvanski dolar</displayName>
<displayName count="few">novotajvanska dolara</displayName>
<displayName count="many">novotajvanskih dolara</displayName>
<displayName count="one">novotajvanski dolar</displayName>
<displayName count="other">novotajvanskih dolara</displayName>
</currency>
<currency type="TZS">
<displayName>tanzanijski šiling</displayName>
<displayName count="few">tanzanijska šilinga</displayName>
<displayName count="many">tanzanijskih šilinga</displayName>
<displayName count="one">tanzanijski šiling</displayName>
<displayName count="other">tanzanijskih šilinga</displayName>
</currency>
<currency type="UAH">
<displayName>ukrajinska hrivnja</displayName>
<displayName count="few">ukrajinske hrivnje</displayName>
<displayName count="many">ukrajinskih hrivnji</displayName>
<displayName count="one">ukrajinska hrivnja</displayName>
<displayName count="other">ukrajinskih hrivnji</displayName>
</currency>
<currency type="UAK">
<displayName>ukrajinski karbovanet</displayName>
<displayName count="few">ukrajinska karbovantsiva</displayName>
<displayName count="many">ukrajinskih karbovantsiva</displayName>
<displayName count="one">ukrajinski karbovantsiv</displayName>
<displayName count="other">ukrajinskih karbovantsiva</displayName>
</currency>
<currency type="UGS">
<displayName>ugandski šiling (1966.-1987.)</displayName>
<displayName count="few">ugandska šilinga (UGS)</displayName>
<displayName count="many">ugandskih šilinga (UGS)</displayName>
<displayName count="one">ugandski šiling (UGS)</displayName>
<displayName count="other">ugandskih šilinga (UGS)</displayName>
</currency>
<currency type="UGX">
<displayName>ugandski šiling</displayName>
<displayName count="few">ugandska šilinga</displayName>
<displayName count="many">ugandskih šilinga</displayName>
<displayName count="one">ugandski šiling</displayName>
<displayName count="other">ugandskih šilinga</displayName>
</currency>
<currency type="USD">
<displayName>američki dolar</displayName>
<displayName count="few">američka dolara</displayName>
<displayName count="many">američkih dolara</displayName>
<displayName count="one">američki dolar</displayName>
<displayName count="other">američkih dolara</displayName>
<symbol>$</symbol>
</currency>
<currency type="USN">
<displayName>američki dolar (sljedeći dan)</displayName>
<displayName count="few">američka dolara (sljedeći dan)</displayName>
<displayName count="many">američkih dolara (sljedeći dan)</displayName>
<displayName count="one">američki dolar (sljedeći dan)</displayName>
<displayName count="other">američkih dolara (sljedeći dan)</displayName>
</currency>
<currency type="USS">
<displayName>američki dolar (isti dan)</displayName>
<displayName count="few">američka dolara (isti dan)</displayName>
<displayName count="many">američkih dolara (isti dan)</displayName>
<displayName count="one">američki dolar (isti dan)</displayName>
<displayName count="other">američkih dolara (isti dan)</displayName>
</currency>
<currency type="UYI">
<displayName>urugvajski pezo en unidades indexadas</displayName>
<displayName count="few">urugvajska pesosa en unidades indexadas</displayName>
<displayName count="many">urugvajskih pesosa en unidades indexadas</displayName>
<displayName count="one">urugvajski pesos en unidades indexadas</displayName>
<displayName count="other">urugvajskih pesosa en unidades indexadas</displayName>
</currency>
<currency type="UYP">
<displayName>urugvajski pezo (1975.-1993.)</displayName>
<displayName count="few">urugvajska peza (UYP)</displayName>
<displayName count="many">urugvajskih peza (UYP)</displayName>
<displayName count="one">urugvajski pezo (UYP)</displayName>
<displayName count="other">urugvajskih peza (UYP)</displayName>
</currency>
<currency type="UYU">
<displayName>urugvajski pezo</displayName>
<displayName count="few">urugvajska pezosa</displayName>
<displayName count="many">urugvajskih pezosa</displayName>
<displayName count="one">urugvajski pezo</displayName>
<displayName count="other">urugvajskih pezosa</displayName>
</currency>
<currency type="UZS">
<displayName>uzbekistanski som</displayName>
<displayName count="few">uzbekistanska soma</displayName>
<displayName count="many">uzbekistanskih soma</displayName>
<displayName count="one">uzbekistanski som</displayName>
<displayName count="other">uzbekistanskih soma</displayName>
</currency>
<currency type="VEB">
<displayName>venezuelanski bolivar</displayName>
<displayName count="few">venezuelanska bolivara</displayName>
<displayName count="many">vezuelanskih bolivara</displayName>
<displayName count="one">venezuelanski bolivar</displayName>
<displayName count="other">venezuelanskih bolivara</displayName>
</currency>
<currency type="VEF">
<displayName>venezuelanski bolivar fuerte</displayName>
<displayName count="few">venezuelanska bolivara fuertes</displayName>
<displayName count="many">venezuelanskih bolivara fuertes</displayName>
<displayName count="one">venezuelanski bolivar fuertes</displayName>
<displayName count="other">venezuelanskih bolivara fuertes</displayName>
</currency>
<currency type="VND">
<displayName>vijetnamski dong</displayName>
<displayName count="few">vijetnamska donga</displayName>
<displayName count="many">vijetnamskih donga</displayName>
<displayName count="one">vijetnamski dong</displayName>
<displayName count="other">vijetnamskih donga</displayName>
</currency>
<currency type="VUV">
<displayName>vanuatuški vatu</displayName>
<displayName count="few">vanuatska vatua</displayName>
<displayName count="many">vanuatskih vatua</displayName>
<displayName count="one">vanuatski vatu</displayName>
<displayName count="other">vanuatskih vatua</displayName>
</currency>
<currency type="WST">
<displayName>samoanska tala</displayName>
<displayName count="few">samoanske tale</displayName>
<displayName count="many">samoanskih tala</displayName>
<displayName count="one">samoanska tala</displayName>
<displayName count="other">samoanskih tala</displayName>
</currency>
<currency type="XAF">
<displayName>CFA franak BEAC</displayName>
<displayName count="few">CFA franka BEAC</displayName>
<displayName count="many">CFA franaka BEAC</displayName>
<displayName count="one">CFA franak BEAC</displayName>
<displayName count="other">CFA franaka BEAC</displayName>
</currency>
<currency type="XAG">
<displayName>srebro</displayName>
<displayName count="few">srebra</displayName>
<displayName count="many">srebra</displayName>
<displayName count="one">srebro</displayName>
<displayName count="other">srebra</displayName>
</currency>
<currency type="XAU">
<displayName>zlato</displayName>
<displayName count="few">zlata</displayName>
<displayName count="many">zlata</displayName>
<displayName count="one">zlato</displayName>
<displayName count="other">zlata</displayName>
</currency>
<currency type="XBA">
<displayName>Europska složena jedinica</displayName>
<displayName count="few">europske složene jedinice</displayName>
<displayName count="many">europskih složenih jedinica</displayName>
<displayName count="one">europska složena jedinica</displayName>
<displayName count="other">europskih složenih jedinica</displayName>
</currency>
<currency type="XBB">
<displayName>Europska monetarna jedinica</displayName>
<displayName count="few">europske monetarne jedinice</displayName>
<displayName count="many">europskih monetarnih jedinica</displayName>
<displayName count="one">europska monetarna jedinica</displayName>
<displayName count="other">europskih monetarnih jedinica</displayName>
</currency>
<currency type="XBC">
<displayName>europska obračunska jedinica (XBC)</displayName>
<displayName count="few">europske obračunske jedinice (XBC)</displayName>
<displayName count="many">europskih obračunskih jedinica (XBC)</displayName>
<displayName count="one">europska obračunska jedinica (XBC)</displayName>
<displayName count="other">europskih obračunskih jedinica (XBC)</displayName>
</currency>
<currency type="XBD">
<displayName>europska obračunska jedinica (XBD)</displayName>
<displayName count="few">europske obračunske jedinice (XBD)</displayName>
<displayName count="many">europskih obračunskih jedinica (XBD)</displayName>
<displayName count="one">europska obračunska jedinica (XBD)</displayName>
<displayName count="other">europskih obračunskih jedinica (XBD)</displayName>
</currency>
<currency type="XCD">
<displayName>istočnokaripski dolar</displayName>
<displayName count="few">istočnokaripska dolara</displayName>
<displayName count="many">istočnokaripskih dolara</displayName>
<displayName count="one">istočnokaripski dolar</displayName>
<displayName count="other">istočnokaripskih dolara</displayName>
</currency>
<currency type="XDR">
<displayName>posebna crtaća prava</displayName>
<displayName count="few">poseebna crtaća prava</displayName>
<displayName count="many">posebnih crtaćih prava</displayName>
<displayName count="one">posebno crtaće pravo</displayName>
<displayName count="other">posebnih crtaćih prava</displayName>
</currency>
<currency type="XEU">
<displayName>europska monetarna jedinica (ECU)</displayName>
<displayName count="few">europske monetarne jedinice (ECU)</displayName>
<displayName count="many">europskih monetarnih jedinica (ECU)</displayName>
<displayName count="one">europska monetarna jedinica (ECU)</displayName>
<displayName count="other">europskih monetarnih jedinica (ECU)</displayName>
</currency>
<currency type="XFO">
<displayName>francuski zlatni franak</displayName>
<displayName count="few">francuska zlatna franka</displayName>
<displayName count="many">francuskih zlatnih franaka</displayName>
<displayName count="one">francuski zlatni franak</displayName>
<displayName count="other">francuskih zlatnih franaka</displayName>
</currency>
<currency type="XFU">
<displayName>francuski UIC-franak</displayName>
<displayName count="few">francuska UIC-franka</displayName>
<displayName count="many">francuskih UIC-franaka</displayName>
<displayName count="one">francuski UIC-franak</displayName>
<displayName count="other">francuskih UIC-franaka</displayName>
</currency>
<currency type="XOF">
<displayName>CFA franak BCEAO</displayName>
<displayName count="few">CFA franka BCEAO</displayName>
<displayName count="many">CFA franaka BCEAO</displayName>
<displayName count="one">CFA franak BCEAO</displayName>
<displayName count="other">CFA franaka BCEAO</displayName>
</currency>
<currency type="XPD">
<displayName>paladij</displayName>
<displayName count="few">paladija</displayName>
<displayName count="many">paladija</displayName>
<displayName count="one">paladij</displayName>
<displayName count="other">paladija</displayName>
</currency>
<currency type="XPF">
<displayName>CFP franak</displayName>
<displayName count="many">CFP franaka</displayName>
<displayName count="other">CFP franaka</displayName>
</currency>
<currency type="XPT">
<displayName>platina</displayName>
<displayName count="few">platine</displayName>
<displayName count="many">platina</displayName>
<displayName count="one">platina</displayName>
<displayName count="other">platina</displayName>
</currency>
<currency type="XRE">
<displayName>RINET fondovi</displayName>
<displayName count="few">RINET fonda</displayName>
<displayName count="many">RINET fondova</displayName>
<displayName count="one">RINET fond</displayName>
<displayName count="other">RINET fondova</displayName>
</currency>
<currency type="XTS">
<displayName>ispitni kod valute</displayName>
<displayName count="few">ispitna koda valute</displayName>
<displayName count="many">ispitnih kodova valute</displayName>
<displayName count="one">ispitni kod vlaute</displayName>
<displayName count="other">ispitnih kodova valute</displayName>
</currency>
<currency type="XXX">
<displayName>nepoznata ili nevažeća valuta</displayName>
<displayName count="few">nepoznate ili nevažeće valute</displayName>
<displayName count="many">nepoznatih ili nevažećih valuta</displayName>
<displayName count="one">nepoznata ili nevažeća valuta</displayName>
<displayName count="other">nevažećih ili nepoznatih valuta</displayName>
</currency>
<currency type="YDD">
<displayName>jemenski dinar</displayName>
<displayName count="few">jemenska dinara</displayName>
<displayName count="many">jemenskih dinara</displayName>
<displayName count="one">jemenski dinar</displayName>
<displayName count="other">jemenskih dinara</displayName>
</currency>
<currency type="YER">
<displayName>jemenski rial</displayName>
<displayName count="few">jemenska rijala</displayName>
<displayName count="many">jemenskih rijala</displayName>
<displayName count="one">jemenski rijal</displayName>
<displayName count="other">jemenskih rijala</displayName>
</currency>
<currency type="YUD">
<displayName>jugoslavenski čvrsti dinar</displayName>
<displayName count="few">jugoslavenska čvrsta dinara</displayName>
<displayName count="many">jugoslavenskih čvstih dinara</displayName>
<displayName count="one">jugoslavenski čvrsti dinar</displayName>
<displayName count="other">jugoslavenskih čvrstih dinara</displayName>
</currency>
<currency type="YUM">
<displayName>jugoslavenski novi dinar</displayName>
<displayName count="few">jugoslavenska nova dinara</displayName>
<displayName count="many">jugoslavenskih novih dinara</displayName>
<displayName count="one">jugoslavenski novi dinar</displayName>
<displayName count="other">jugoslavenskih novih dinara</displayName>
</currency>
<currency type="YUN">
<displayName>jugoslavenski konvertibilni dinar</displayName>
<displayName count="few">jugoslavenska konvertibilna dinara</displayName>
<displayName count="many">jugoslavenskih konvertibilnih dinara</displayName>
<displayName count="one">jugoslavenski konvertibilni dinar</displayName>
<displayName count="other">jugoslavenskih konvertibilnih dinara</displayName>
</currency>
<currency type="ZAL">
<displayName>južnoafrički rand (financijski)</displayName>
<displayName count="few">južnoafrička randa (financijska)</displayName>
<displayName count="many">južnoafičkih randa (financijskih)</displayName>
<displayName count="one">južnoafrički rand (financijski)</displayName>
<displayName count="other">južnoafričkih randa (financijskih)</displayName>
</currency>
<currency type="ZAR">
<displayName>južnoafrički rand</displayName>
<displayName count="few">južnoafrička randa</displayName>
<displayName count="many">južnoafričkih randa</displayName>
<displayName count="one">južnoafrički rand</displayName>
<displayName count="other">južnoafričkih randa</displayName>
</currency>
<currency type="ZMK">
<displayName>zambijska kvača</displayName>
<displayName count="few">zambijske kvače</displayName>
<displayName count="many">zambijskih kvača</displayName>
<displayName count="one">zambijska kvača</displayName>
<displayName count="other">zambijskih kvača</displayName>
</currency>
<currency type="ZRN">
<displayName>zairski novi zair</displayName>
<displayName count="few">zairska nova zaira</displayName>
<displayName count="many">zairskih novih zaira</displayName>
<displayName count="one">zairski novi zair</displayName>
<displayName count="other">zairskih novih zaira</displayName>
</currency>
<currency type="ZRZ">
<displayName>zairski zair</displayName>
<displayName count="few">zairska zaira</displayName>
<displayName count="many">zairskih zaira</displayName>
<displayName count="one">zairski zair</displayName>
<displayName count="other">zairskih zaira</displayName>
</currency>
<currency type="ZWD">
<displayName>zimbabveanski dolar</displayName>
<displayName count="few">zimbabveanska dolara</displayName>
<displayName count="many">zimbabveanskih dolara</displayName>
<displayName count="one">zimbabveanski dolar</displayName>
<displayName count="other">zimbabveanskih dolara</displayName>
</currency>
</currencies>
</numbers>
<units>
<unit type="day">
<unitPattern count="few">{0} dana</unitPattern>
<unitPattern count="many">{0} dana</unitPattern>
<unitPattern count="one">{0} dan</unitPattern>
<unitPattern count="other">{0} dan</unitPattern>
</unit>
<unit type="hour">
<unitPattern count="few">{0} sata</unitPattern>
<unitPattern count="many">{0} sati</unitPattern>
<unitPattern count="one">{0} sat</unitPattern>
<unitPattern count="other">{0} sat</unitPattern>
</unit>
<unit type="minute">
<unitPattern count="few">{0} minute</unitPattern>
<unitPattern count="many">{0} minuta</unitPattern>
<unitPattern count="one">{0} minuta</unitPattern>
<unitPattern count="other">{0} minuta</unitPattern>
</unit>
<unit type="month">
<unitPattern count="few">{0} mjeseca</unitPattern>
<unitPattern count="many">{0} mjeseci</unitPattern>
<unitPattern count="one">{0} mjesec</unitPattern>
<unitPattern count="other">{0} mjesec</unitPattern>
</unit>
<unit type="second">
<unitPattern count="few">{0} sekunde</unitPattern>
<unitPattern count="many">{0} sekundi</unitPattern>
<unitPattern count="one">{0} sekunda</unitPattern>
<unitPattern count="other">{0} sekunda</unitPattern>
</unit>
<unit type="week">
<unitPattern count="few">{0} tjedna</unitPattern>
<unitPattern count="many">{0} tjedana</unitPattern>
<unitPattern count="one">{0} tjedan</unitPattern>
<unitPattern count="other">{0} tjedan</unitPattern>
</unit>
<unit type="year">
<unitPattern count="few">{0} godine</unitPattern>
<unitPattern count="many">{0} godina</unitPattern>
<unitPattern count="one">{0} godina</unitPattern>
<unitPattern count="other">{0} godina</unitPattern>
</unit>
</units>
<posix>
<messages>
<yesstr>da:d</yesstr>
<nostr>ne:n</nostr>
</messages>
</posix>
</ldml>