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 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918
|
#------------------------------------------------------------------------------
# File: it.pm
#
# Description: ExifTool Italian language translations
#
# Notes: This file generated automatically by Image::ExifTool::TagInfoXML
#------------------------------------------------------------------------------
package Image::ExifTool::Lang::it;
use strict;
use vars qw($VERSION);
$VERSION = '1.13';
%Image::ExifTool::Lang::it::Translate = (
'A100DataOffset' => 'Offset dati A100',
'AAFManufacturerID' => 'ID AAF produttore',
'ACoordOfBottomRightCorner' => 'Una coord in basso a destra',
'ACoordOfTopRightCorner' => 'Una coord in alto a destra',
'AEAperture' => 'Apertura esposizione automatica',
'AEBAutoCancel' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AEBSequenceAutoCancel' => {
PrintConv => {
'-,0,+/Disabled' => '-,0,+/Disabilitato',
'-,0,+/Enabled' => '-,0,+/Abilitato',
'0,-,+/Disabled' => '0,-,+/Disabilitato',
'0,-,+/Enabled' => '0,-,+/Abilitato',
},
},
'AEExposureTime' => 'Durata esposizione automatica',
'AEFlags' => {
Description => 'Flag esposizione automatica',
PrintConv => {
'AE lock' => 'Blocco esposizione automatica',
'Aperture wide open' => 'Diaframma molto aperto',
'Flash recommended?' => 'Flash consigliato?',
},
},
'AELExposureIndicator' => {
PrintConv => {
'Not Indicated' => 'Non indicato',
},
},
'AELock' => {
Description => 'Blocco esposizione automatica',
PrintConv => {
'Off' => 'Spento',
'On' => 'Acceso',
},
},
'AELockButton' => {
Description => 'Pulsante blocco esposizione automatica',
PrintConv => {
'Flash Off' => 'Flash spento',
'None' => 'Nessuno',
'Preview' => 'Anteprima',
'Virtual Horizon' => 'Orizzonte virtuale',
},
},
'AELockButtonPlusDials' => {
PrintConv => {
'Choose Image Area' => 'Seleziona area immagine',
'None' => 'Nessuno',
},
},
'AEMeteringMode' => {
PrintConv => {
'Center-weighted average' => 'Media centrale ponderata',
'Multi-segment' => 'Multi zona',
},
},
'AEMicroadjustment' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'AEProgramMode' => {
PrintConv => {
'Kids' => 'Bambini',
'Landscape' => 'Orizzontale',
'No Flash' => 'No flash',
'Portrait' => 'Verticale',
'Program' => 'Programma',
'Sunset' => 'Tramonto',
'Text' => 'Testo',
},
},
'AESetting' => {
PrintConv => {
'Exposure Compensation' => 'Compensazione esposizione',
},
},
'AE_ISO' => 'ISO esposizione automatica',
'AFAndMeteringButtons' => {
PrintConv => {
'No function' => 'Nessuna funzione',
},
},
'AFAperture' => 'Diaframma AF',
'AFAreaIllumination' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AFAreaMode' => {
Description => 'Modo AF',
PrintConv => {
'Dynamic Area' => 'Area Dinamica',
'Dynamic Area (closest subject)' => 'Area Dinamica più Vicina al Soggetto',
'Group Dynamic' => 'Gruppo Dinamico',
'Local' => 'Locale',
'Off (Manual Focus)' => 'Spento (focus manuale)',
'Single Area' => 'Area Singola',
},
},
'AFAssist' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AFDuringLiveView' => {
PrintConv => {
'Enable' => 'Abilita',
'Quick mode' => 'Modo veloce',
},
},
'AFFineTune' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AFIlluminator' => {
PrintConv => {
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'AFInfo' => 'Modo AF',
'AFMode' => {
Description => 'Modo AF',
PrintConv => {
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'AFOnAELockButtonSwitch' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'AFPoint' => {
Description => 'Punto AF',
PrintConv => {
'(none)' => '(nessuno)',
'Bottom' => 'Basso',
'Center' => 'Centro',
'Far Left' => 'Tutto a sinistra',
'Far Right' => 'Tutto a destra',
'Left' => 'Sinistra',
'Lower-left' => 'Inferiore sinistro',
'Lower-right' => 'Inferiore destro',
'Mid-left' => 'Centro/Sinistra',
'Mid-right' => 'Centro/Destra',
'None' => 'Nessuno',
'Right' => 'Destra',
'Right (horizontal)' => 'Destra (orizzontale)',
'Right (vertical)' => 'Destra (verticale)',
'Top' => 'Alto',
'Upper-left' => 'Superiore sinistro',
'Upper-right' => 'Superiore destro',
},
},
'AFPointActivationArea' => {
PrintConv => {
'Expanded' => 'Espanso',
},
},
'AFPointAreaExpansion' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'AFPointBrightness' => {
PrintConv => {
'Low' => 'Basso',
'Normal' => 'Normale',
},
},
'AFPointDisplayDuringFocus' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AFPointIllumination' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AFPointMode' => {
PrintConv => {
'Fixed Center' => 'Centro fisso',
'Select' => 'Seleziona',
},
},
'AFPointRegistration' => {
PrintConv => {
'Bottom' => 'Basso',
'Center' => 'Centro',
'Extreme Left' => 'Tutto a Sinistra',
'Extreme Right' => 'Tutto a Destra',
'Left' => 'Sinistra',
'Right' => 'Destra',
'Top' => 'Alto',
},
},
'AFPointSelected' => {
PrintConv => {
'Bottom' => 'Basso',
'Center' => 'Centro',
'Far Left' => 'Tutto a sinistra',
'Far Right' => 'Tutto a destra',
'Fixed Center' => 'Centro fisso',
'Left' => 'Sinistra',
'None' => 'Nessuno',
'Right' => 'Destra',
'Top' => 'Alto',
},
},
'AFPointSelected2' => {
PrintConv => {
'Center' => 'Centro',
'Left' => 'Sinistra',
'Right' => 'Destra',
},
},
'AFPointSelection' => {
PrintConv => {
'11 Points' => '11 punti',
},
},
'AFPointSelectionMethod' => {
PrintConv => {
'Normal' => 'Normale',
},
},
'AFPoints' => {
PrintConv => {
'Center' => 'Centro',
'Left' => 'Sinistra',
'Right' => 'Destra',
},
},
'AFPointsInFocus' => {
Description => 'Punti a fuoco',
PrintConv => {
'Bottom' => 'Basso',
'Center' => 'Centro',
'Far Left' => 'Tutto a sinistra',
'Far Right' => 'Tutto a destra',
'Left' => 'Sinistra',
'Lower-left' => 'Inferiore sinistro',
'Lower-right' => 'Inferiore destro',
'None' => 'Nessuno',
'Right' => 'Destra',
'Top' => 'Alto',
'Upper-left' => 'Superiore sinistro',
'Upper-right' => 'Superiore destro',
},
},
'AFPointsInFocus1D' => 'Punti a fuoco 1D',
'AFPointsInFocus5D' => {
Description => 'Punti a fuoco 5D',
PrintConv => {
'Center' => 'Centro',
'Left' => 'Sinistra',
'Right' => 'Destra',
},
},
'AFPointsUnknown1' => {
PrintConv => {
'Center' => 'Centro',
'Left' => 'Sinistra',
'Right' => 'Destra',
},
},
'AFPointsUnknown2' => {
PrintConv => {
'Center' => 'Centro',
'Left' => 'Sinistra',
'Right' => 'Destra',
},
},
'AFPointsUsed' => {
PrintConv => {
'Bottom' => 'Basso',
'Center' => 'Centro',
'Far Left' => 'Tutto a sinistra',
'Far Right' => 'Tutto a destra',
'Lower-left' => 'Inferiore sinistro',
'Lower-right' => 'Inferiore destro',
'Top' => 'Alto',
'Upper-left' => 'Superiore sinistro',
'Upper-right' => 'Superiore destro',
},
},
'AFSearch' => {
PrintConv => {
'Not Ready' => 'Non pronto',
'Ready' => 'Pronto',
},
},
'AFWithShutter' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AIServoImagePriority' => {
PrintConv => {
'1: AF, 2: Drive speed' => '1: AF, 2: drive speed',
'1: AF, 2: Tracking' => '1: AF, 2: puntamento',
'1: Release, 2: Drive speed' => '1: rilascio, 2: drive speed',
'1: Release, 2: Tracking' => '1: rilascio, 2: puntamento',
},
},
'AIServoTrackingSensitivity' => {
PrintConv => {
'Fast' => 'Veloce',
},
},
'APEVersion' => 'Versione APE',
'ARMIdentifier' => 'ID ARM',
'ARMVersion' => 'Versione ARM',
'AToB0' => 'Da A a B0',
'AToB1' => 'Da A a B1',
'AToB2' => 'Da A a B2',
'AberrationCorrectionDistance' => 'Distanza della correzione di aberrazione',
'About' => 'Informazioni su',
'AbsPeakAudioFilePath' => 'Percorso file audio del picco assoluto',
'AbsoluteChannelDisplayScale' => 'Scala assoluta canale',
'Abstract' => 'Sommario',
'AbstractPriorCodeSequence' => 'Sequenza codice precedente astratto',
'AbstractPriorValue' => 'Valore codice precedente astratto',
'AccessDate' => 'Data di accesso',
'AccessionNumber' => 'Numero di adesione',
'AccessoryCode' => 'Codice accessorio',
'AccessoryType' => 'Tipo accessorio',
'AccountName' => 'Nome account',
'AccountingReferenceNumber' => 'Riferimento contabile',
'AcqreconRecordChecksum' => 'Checksum del record AcqRecon',
'AcquiredImageAreaDoseProduct' => 'Dose prodotto dell\'area acquisita',
'AcquisitionComments' => 'Commenti acquisizione',
'AcquisitionContextDescription' => 'Descrizione contesto acquisizione',
'AcquisitionContextSequence' => 'Sequenza contesto acquisizione',
'AcquisitionContrast' => 'Contrasto acquisizione',
'AcquisitionDate' => 'Data acquisizione',
'AcquisitionDateTime' => 'Data/ora acquisizione',
'AcquisitionDeviceProcessingCode' => 'Codice processo di acquisizione del dispositivo',
'AcquisitionDeviceProcessingDescr' => 'Descrizione processo di acquisizione del dispositivo',
'AcquisitionDeviceTypeCodeSequence' => 'Sequenza codici tipo di acquisizione del dispositivo',
'AcquisitionDuration' => 'Durata acquisizione',
'AcquisitionEndConditionData' => 'Dati condizione fine acquisizione',
'AcquisitionGroupLength' => 'Lunghezza gruppo di acquisizione',
'AcquisitionIndex' => 'Indice acquisizione',
'AcquisitionMatrix' => 'Matrice acquisizione',
'AcquisitionNumber' => 'Numero acquisizione',
'AcquisitionProtocolDescription' => 'Descrizione protocollo di acquisizione',
'AcquisitionProtocolName' => 'Nome protocollo di acquisizione',
'AcquisitionStartCondition' => 'Condizione iniziale acquisizione',
'AcquisitionStartConditionData' => 'Dati condizione iniziale acquisizione',
'AcquisitionTerminationCondition' => 'Condizione finale acquisizione',
'AcquisitionTime' => 'Ora acquisizione',
'AcquisitionTimeDay' => 'Ora acquisizione - Giorno',
'AcquisitionTimeMonth' => 'Ora acquisizione - Mese',
'AcquisitionTimeSynchronized' => 'Ora acquisizione sincronizzata',
'AcquisitionTimeYear' => 'Ora acquisizione - Anno',
'AcquisitionTimeYearMonth' => 'Ora acquisizione - Anno mese',
'AcquisitionTimeYearMonthDay' => 'Ora acquisizione - Anno mese giorno',
'AcquisitionType' => 'Tipo acquisizione',
'AcquisitionsInSeries' => 'Acquisizioni in serie',
'AcquisitionsInStudy' => 'Acquisizioni in esame',
'AcrossScanSpatialResolution' => 'Attraverso risoluzione di scansione spaziale',
'ActionAdvised' => {
Description => 'Azione consigliata',
PrintConv => {
'Object Append' => 'Allega oggetto',
'Object Kill' => 'Distruzione oggetto',
'Object Reference' => 'Riferimento oggetto',
'Object Replace' => 'Sostituzione oggetto',
},
},
'ActiveArea' => 'Area attiva',
'ActiveD-Lighting' => {
Description => 'D-Lighting attivo',
PrintConv => {
'Extra High' => 'Molto alto',
'High' => 'Alto',
'Low' => 'Basso',
'Normal' => 'Normale',
'Off' => 'Spento',
'On' => 'Acceso',
},
},
'ActiveD-LightingMode' => {
Description => 'Modalità D-Lighting attiva',
PrintConv => {
'Extra High' => 'Molto alto',
'High' => 'Alto',
'Low' => 'Basso',
'Normal' => 'Normale',
'Off' => 'Spento',
'Unchanged' => 'Immutato',
},
},
'ActiveFormatDescriptor' => 'Descrittore formato attivo',
'ActiveLinesperFrame' => 'Linee per quadro attuali',
'ActiveSamplesperLine' => 'Linee per campione attuali',
'ActiveSourceDiameter' => 'Diametro sorgente attuale',
'ActiveSourceLength' => 'Lunghezza sorgente attuale',
'ActiveState' => 'Stato attivo',
'Actor' => 'Attore',
'ActualCardiacTriggerDelayTime' => 'Tempo di ritardo corrente trigger cardiaco',
'ActualCompensation' => 'Compensazione corrente',
'ActualFrameDuration' => 'Durata frame attuale',
'ActualHumanPerformersSequence' => 'Sequenza attuale esecutori umani',
'ActualReceiveGainAnalog' => 'Guadagno analogico in ricezione attuale',
'ActualReceiveGainDigital' => 'Guadagno digitale in ricezione attuale',
'ActualRespiratoryTriggerDelayTime' => 'Tempo di ritardo corrente trigger respiratorio',
'ActualSeriesDataTimeStamp' => 'Marca temporale serie di dati attuali',
'Ad-ID' => 'ID Ad',
'AdaptiveMapFormat' => 'Formato mappa adattativa',
'AddAspectRatioInfo' => {
Description => 'Aggiunta info rapporto di aspetto',
PrintConv => {
'Off' => 'Spento',
},
},
'AddIntermediateSequence' => 'Aggiunta sequenza intermedia',
'AddNearSequence' => 'Aggiunta sequenza vicina',
'AddOriginalDecisionData' => {
Description => 'Aggiunta dati decisione originale',
PrintConv => {
'Off' => 'Spento',
'On' => 'Acceso',
},
},
'AddOtherSequence' => 'Aggiunta altra sequenza',
'AddPower' => 'Aggiunta potenza',
'AdditionalDrugSequence' => 'Sequenza farmaci addizionali',
'AdditionalModelInformation' => 'Ulteriori informazioni modello',
'AdditionalPatientHistory' => 'Ulteriore storia del paziente',
'Address' => 'Indirizzo',
'AddressLine' => 'Linea indirizzo',
'AddressNameValueSets' => 'Gruppi di valori nome indirizzo',
'AddressSets' => 'Gruppi di indirizzi',
'AddressTrial' => 'Studio indirizzo',
'AdjustmentMode' => 'Modo adattamento',
'AdministrationRouteCodeSequence' => 'Sequenza codici percorso di amministrazione',
'AdmissionID' => 'ID ammissione',
'AdmittingDate' => 'Data ammissione',
'AdmittingDiagnosesCodeSequence' => 'Sequenza codici diagnosi ammissione',
'AdmittingDiagnosesDescription' => 'Descrizioni diagnosi ammissione',
'AdmittingTime' => 'Ora ammissione',
'AdobeCMType' => 'Tipo Adobe CM',
'AdoptedNeutral' => 'Adottato neutro',
'AdultContentWarning' => {
Description => 'Avviso contenuto per adulti',
PrintConv => {
'Adult Content Warning Required' => 'Avviso contenuto per adulti richiesto',
'Not Required' => 'Non richiesto',
'Unknown' => 'Sconosciuto',
},
},
'AdvancedContentEncryption' => 'Crittografia avanzata del contenuto',
'AdvancedMutualExcl' => 'Mutua esclusione avanzata',
'AdvancedRaw' => {
Description => 'Raw avanzato',
PrintConv => {
'Off' => 'Spento',
'On' => 'Acceso',
},
},
'AdvancedSceneMode' => {
Description => 'Modo scena avanzato',
PrintConv => {
'Architecture' => 'Architettura',
'Color Select' => 'Selezione colore',
'Creative Macro' => 'Macro creativo',
'Creative Night Scenery' => 'Scenario notturno creativo',
'Creative Portrait' => 'Ritratto creativo',
'Creative Scenery' => 'Scenario creativo',
'Creative Sports' => 'Sport creativi',
'Cross Process' => 'Cross process',
'Dynamic Art' => 'Arte dinamica',
'Dynamic Monochrome' => 'Monocromatico dinamico',
'Elegant' => 'Elegante',
'Expressive' => 'Espressivo',
'Flower' => 'Fiore',
'HDR Art' => 'HDR artistico',
'HDR B&W' => 'HDR in bianco e nero',
'High Dynamic' => 'High dynamic',
'High Key' => 'High key',
'Illuminations' => 'Illuminazioni',
'Indoor Portrait' => 'Ritratto al chiuso',
'Indoor Sports' => 'Sport al chiuso',
'Low Key' => 'Low key',
'Minature' => 'Minuatura',
'Monochrome' => 'Monocromatico',
'Nature' => 'Natura',
'Objects' => 'Oggetti',
'Off' => 'Spento',
'Outdoor Portrait' => 'Ritratto all\'aperto',
'Outdoor Sports' => 'Sport all\'aperto',
'Pure' => 'Puro',
'Retro' => 'Retrò',
'Sepia' => 'Seppia',
'Soft' => 'Morbido',
'Star' => 'Stella',
'Toy Effect' => 'Effetto giocattolo',
},
},
'AdvancedSceneType' => 'Tipo scena avanzato',
'AdvantageCompOverflow' => 'Overflow componente avanzato',
'AdvantageCompUnderflow' => 'Underflow componente avanzato',
'AdventRevision' => 'Revisione arrivo',
'AdventScale' => 'Scala arrivo',
'AdvertisingMaterialReference' => 'Riferimento materiale pubblicitario',
'Advisory' => 'Consultivo',
'AlbumArtistSortOrder' => 'Ordinamento album-artista',
'AlbumSortOrder' => 'Ordinamento album',
'AliasLayerMetadata' => 'Livello metadati alias',
'AlphaByteCount' => 'Numero byte trasparenza',
'AlphaDataDiscard' => {
Description => 'Scarto dati trasparenza',
PrintConv => {
'Flexbits Discarded' => 'Flexbit scartati',
'Full Resolution' => 'Risoluzione piena',
'HighPass Frequency Data Discarded' => 'Dati in frequenza passa-alto scartati',
'Highpass and LowPass Frequency Data Discarded' => 'Dati in frequenza passa-alto e passa-basso scartati',
},
},
'AlphaInterlace' => {
PrintConv => {
'Noninterlaced' => 'Non interlacciato',
},
},
'AlphaOffset' => 'Scostamento trasparenza',
'AlphaTransparency' => {
PrintConv => {
'Not Inverted' => 'Non invertito',
},
},
'AmbienceSelection' => {
PrintConv => {
'Vivid' => 'Vivace',
},
},
'AnalogBalance' => 'Bilanciamento analogico',
'Annotation' => 'Annotazione',
'Annotations' => 'Annotazioni',
'Anti-Blur' => {
PrintConv => {
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'AntiAliasStrength' => 'Forza antialiasing',
'Aperture' => 'Diaframma',
'ApertureDisplayed' => 'Diaframma mostrato',
'ApertureRange' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'ApertureRingUse' => {
PrintConv => {
'Prohibited' => 'Proibito',
},
},
'ApertureValue' => 'Apertura diaframma',
'AppleStoreCountry' => {
PrintConv => {
'Italy' => 'Italia',
'Japan' => 'Giappone',
'Norway' => 'Norvegia',
'Portugal' => 'Portogallo',
'Sweden' => 'Svezia',
'United Kingdom' => 'Regno Unito',
'United States' => 'Stati Uniti',
},
},
'ApplicationNotes' => 'Note applicazione',
'ApplicationRecordVersion' => 'Versione Registrazione Applicazione',
'ApplyShootingMeteringMode' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'ArtFilter' => {
PrintConv => {
'Fish Eye' => 'Fish-eye',
'Fragmented' => 'Frammentato',
'Gentle Sepia' => 'Seppia leggero',
'Off' => 'Spento',
'Reflection' => 'Riflessione',
},
},
'ArtFilterEffect' => {
PrintConv => {
'Fish Eye' => 'Fish-eye',
'Fragmented' => 'Frammentato',
'Gentle Sepia' => 'Seppia leggero',
'Off' => 'Spento',
'Reflection' => 'Riflessione',
'Star Light' => 'Luce stelle',
},
},
'ArtMode' => {
PrintConv => {
'Normal' => 'Normale',
},
},
'Artist' => 'Persona che ha creato l\'immagine',
'Artist2' => 'Artista 2',
'ArtistURL' => 'URL artista',
'AsShotICCProfile' => 'Profilo ICC allo scatto',
'AsShotNeutral' => 'Neutrale allo scatto',
'AsShotPreProfileMatrix' => 'Matrice pre-profilo allo scatto',
'AsShotProfileName' => 'Nome profilo allo scatto',
'AsShotWhiteXY' => 'Bilanciamento del bianco X-T allo scatto',
'AspectRatio' => 'Rapporto immagine',
'AspectRatioType' => {
Description => 'Tipo rapporto immagine',
PrintConv => {
'Fixed' => 'Fisso',
},
},
'AspectRatioX' => 'Rapporto immagine X',
'AspectRatioY' => 'Rapporto immagine Y',
'AssistButtonFunction' => {
PrintConv => {
'Normal' => 'Normale',
},
},
'Attachments' => 'Allegati',
'Audio' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'AudioAttributes' => {
Description => 'Attributi audio',
PrintConv => {
'Encrypted' => 'Crittografato',
},
},
'AudioBytes' => 'Byte audio',
'AudioChannelType' => 'Tipo canale audio',
'AudioChannels' => 'Canali audio',
'AudioCodec' => 'Codec audio',
'AudioCodecDescription' => 'Descrizione codec audio',
'AudioCodecID' => {
Description => 'ID codec audio',
PrintConv => {
'QDesign Music' => 'Musica QDesign',
'Unknown -' => 'Sconosciuto -',
},
},
'AudioCodecInfo' => 'Info codec audio',
'AudioCodecName' => 'Nome codec audio',
'AudioCompression' => 'Compressione audio',
'AudioCompressionAlgorithm' => 'Algoritmo di compressione audio',
'AudioFormat' => 'Formato audio',
'AudioLayer' => 'Livello audio',
'AudioStreamType' => {
PrintConv => {
'Reserved' => 'Riservato',
},
},
'AudioType' => {
Description => 'Tipo Audio',
PrintConv => {
'Text Only' => 'Solo testo',
},
},
'Author' => 'Autore',
'AuthorsPosition' => 'Posizione dell\'autore',
'AutoAperture' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AutoBracketModeM' => {
PrintConv => {
'Flash Only' => 'Solo flash',
},
},
'AutoBracketSet' => {
PrintConv => {
'Exposure' => 'Esposizione',
'Flash Only' => 'Solo flash',
},
},
'AutoBracketing' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AutoDistortionControl' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AutoExposureBracketing' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AutoFP' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AutoFocus' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AutoISO' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AutoLightingOptimizer' => {
PrintConv => {
'Enable' => 'Abilita',
'Low' => 'Basso',
'Off' => 'Spento',
'Strong' => 'Forte',
'n/a' => 'n/d',
},
},
'AutoLightingOptimizerOn' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'AutoRedEye' => {
PrintConv => {
'Off' => 'Spento',
},
},
'AutoRotate' => {
PrintConv => {
'None' => 'Nessuno',
'Rotate 180' => 'Ruota di 180°',
'Rotate 270 CW' => 'Ruota di 270° in senso orario',
'Rotate 90 CW' => 'Ruota di 90° senso orario',
'n/a' => 'n/d',
},
},
'AuxiliaryLens' => 'Obiettivo Ausiliario',
'AvSettingWithoutLens' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'AverageLevel' => 'Livello medio',
'Azimuth' => {
PrintConv => {
'NNW' => 'NNO',
},
},
'BWMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'BackgroundColorIndicator' => {
Description => 'Indicatore colore di sfondo',
PrintConv => {
'Specified Background Color' => 'Colore di sfondo specificato',
'Unspecified Background Color' => 'Colore di sfondo non specificato',
},
},
'BackgroundColorValue' => 'Valore colore di sfondo',
'BackgroundTiling' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'BadFaxLines' => 'Linee fax non valide',
'BannerImageType' => {
PrintConv => {
'None' => 'Nessuno',
},
},
'BaselineExposure' => 'Esposizione di riferimento',
'BaselineNoise' => 'Rumore di riferimento',
'BaselineSharpness' => 'Nitidezza di riferimento',
'BatteryLevel' => 'Livello batteria',
'BatteryState' => {
PrintConv => {
'Low' => 'Basso',
},
},
'BeatsPerMinute' => 'Battiti al minuto',
'Beep' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'BeepPitch' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'BeepVolume' => {
PrintConv => {
'Off' => 'Spento',
},
},
'BestQualityScale' => 'Scala qualità migliore',
'BestShotMode' => {
PrintConv => {
'Children' => 'Bambini',
'Fireworks' => 'Fuochi artificiali',
'Flower' => 'Fiore',
'For YouTube' => 'Per YouTube',
'For eBay' => 'Per eBay',
'Off' => 'Spento',
'Retro' => 'Retrò',
'Scenery' => 'Paesaggio',
'Short Movie' => 'Filmato breve',
'Text' => 'Testo',
},
},
'BitsPerComponent' => 'Bits per componente',
'BitsPerExtendedRunLength' => 'Bit per rrun-length esteso',
'BitsPerRunLength' => 'Bit per rrun-length',
'BitsPerSample' => 'Numero di bit per componente',
'BlackLevel' => 'Livello del nero',
'BlackLevelDeltaH' => 'Livello del nero - Delta H',
'BlackLevelDeltaV' => 'Livello del nero - Delta V',
'BlackLevelRepeatDim' => 'Dim ripeti livello del nero',
'BleachBypassToning' => {
PrintConv => {
'Green' => 'Verde',
'Off' => 'Spento',
'Purple' => 'Porpora',
'Red' => 'Rosso',
},
},
'BlocksPerFrame' => 'Blocchi per frame',
'BlueBalance' => 'Bilanciamento del blu',
'BlueMatrixColumn' => 'Colonna della Matrice Blu',
'BlueTRC' => 'Curva riproduzione tono blu',
'BlurControl' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'BlurWarning' => {
PrintConv => {
'None' => 'Nessuno',
},
},
'BracketMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'BracketShotNumber' => {
PrintConv => {
'1 of 2' => '1 di 5',
'1 of 3' => '1 di 3',
'1 of 5' => '1 di 2',
'n/a' => 'n/d',
},
},
'Brightness' => 'Luminosità',
'BrightnessValue' => 'Valore di luminosità',
'BuildDate' => 'Data compilazione',
'BuildVersion' => 'Versione compilazione',
'BurstMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ButtonFunctionControlOff' => {
PrintConv => {
'Normal (enable)' => 'Normale (abilitato)',
},
},
'By-line' => 'Creatore',
'By-lineTitle' => 'Titolo Creatore',
'CCDScanMode' => {
PrintConv => {
'Progressive' => 'Progressivo',
},
},
'CFALayout' => {
Description => 'Layout CFA',
PrintConv => {
'Even columns offset down 1/2 row' => 'Colonne pari giù di 1/2 riga',
'Even columns offset up 1/2 row' => 'Colonne pari su di 1/2 riga',
'Even rows offset down by 1/2 row, even columns offset left by 1/2 column' => 'Righe pari giù di 1/2 riga, colonne pari a sinistra di 1/2 colonna',
'Even rows offset down by 1/2 row, even columns offset right by 1/2 column' => 'Righe pari giù di 1/2 riga, colonne pari a destra di 1/2 colonna',
'Even rows offset left 1/2 column' => 'Righe pari a sinistra di 1/2 colonna',
'Even rows offset right 1/2 column' => 'Righe pari a destra di 1/2 colonna',
'Even rows offset up by 1/2 row, even columns offset left by 1/2 column' => 'Righe pari su 1/2 riga, colonne pari a sinistra di 1/2 colonna',
'Even rows offset up by 1/2 row, even columns offset right by 1/2 column' => 'Righe pari su 1/2 riga, colonne pari a destra di 1/2 colonna',
'Rectangular' => 'Rettangolare',
},
},
'CFAPattern' => 'Pattern CFA',
'CFAPattern2' => 'Pattern CFA 2',
'CFAPlaneColor' => 'Piano colori CFA',
'CFARepeatPatternDim' => 'Dim pattern ripetuto CFA',
'CHMVersion' => 'Versione CHM',
'CIP3DataFile' => 'File di dati CIP3',
'CIP3Sheet' => 'Foglio CIP3',
'CIP3Side' => 'Lato CIP3',
'CMYKEquivalent' => 'CMYK equivalente',
'CPUArchitecture' => 'Architettura CPU',
'CPUByteOrder' => {
Description => 'Ordine byte CPU',
PrintConv => {
'Big endian' => 'Big-endian',
'Little endian' => 'Little-endian',
},
},
'CPUCount' => 'Numero processori',
'CPUSubtype' => {
Description => 'Sottotipo CPU',
PrintConv => {
'ARM (all)' => 'ARM (tutti)',
'HPPA (all)' => 'HPPA (tutti)',
'MC680x0 (all)' => 'MC680x0 (tutti)',
'MC88000 (all)' => 'MC88000 (tutti)',
'MC98000 (all)' => 'MC98000 (tutti)',
'MIPS (all)' => 'MIPS (tutti)',
'NS32032 (all)' => 'NS32032 (tutti)',
'NS32032 DPC (032 CPU)' => 'NS32032 DPC (CPU 032)',
'NS32332 (all)' => 'NS32332 (tutti)',
'NS32332 DPC (032 CPU)' => 'NS32332 DPC (CPU 032)',
'PowerPC (all)' => 'PowerPC (tutti)',
'RS6000 (all)' => 'RS6000 (tutti)',
'RT (all)' => 'RT (tutti)',
'SPARC (all)' => 'SPARC (tutti)',
'VAX (all)' => 'VAX (tutti)',
'i386 (all)' => 'i386 (tutti)',
'i860 (all)' => 'i860 (tutti)',
'i860 little (all)' => 'i860 little (tutti)',
},
},
'CPUType' => {
Description => 'Tipo CPU',
PrintConv => {
'Any' => 'Qualsiasi',
'Axis Communications 32-bit embedded processor' => 'Processore integrato a 32 bit Axis Communications',
'None' => 'Nessuno',
'S/390 (old)' => 'S/390 (precedente)',
'i860 big endian' => 'i860 big-endian',
'i860 little endian' => 'i860 little-endian',
'm32r (old)' => 'm32r (precedente)',
'v850 (old)' => 'v850 (precedente)',
},
},
'CalibrationDateTime' => 'Data/ora di calibrazione',
'CalibrationIlluminant1' => {
Description => 'Calibration illuminazione 1',
PrintConv => {
'Cloudy' => 'Nuvoloso',
'Cool White Fluorescent' => 'Fluorescente a luce calda',
'Day White Fluorescent' => 'Fluorescente a luce del giorno bianca',
'Daylight' => 'Luce del giorno',
'Daylight Fluorescent' => 'Fluorescente a luce del giorno',
'Fine Weather' => 'Bel tempo',
'Fluorescent' => 'Fluorescente',
'ISO Studio Tungsten' => 'Tungsteno studio ISO',
'Other' => 'Altra Sorgente di Luce',
'Shade' => 'Ombrato',
'Standard Light A' => 'Luce standard A',
'Standard Light B' => 'Luce standard B',
'Standard Light C' => 'Luce standard C',
'Tungsten (Incandescent)' => 'Tungsteno (luce incandescente)',
'Unknown' => 'Sconosciuto',
'Warm White Fluorescent' => 'Luce fluorescente bianca calda',
'White Fluorescent' => 'Fluorescente bianca',
},
},
'CalibrationIlluminant2' => {
Description => 'Calibration illuminazione 2',
PrintConv => {
'Cloudy' => 'Nuvoloso',
'Cool White Fluorescent' => 'Fluorescente a luce calda',
'Day White Fluorescent' => 'Fluorescente a luce del giorno bianca',
'Daylight' => 'Luce del giorno',
'Daylight Fluorescent' => 'Fluorescente a luce del giorno',
'Fine Weather' => 'Bel tempo',
'Fluorescent' => 'Fluorescente',
'ISO Studio Tungsten' => 'Tungsteno studio ISO',
'Other' => 'Altra Sorgente di Luce',
'Shade' => 'Ombrato',
'Standard Light A' => 'Luce standard A',
'Standard Light B' => 'Luce standard B',
'Standard Light C' => 'Luce standard C',
'Tungsten (Incandescent)' => 'Tungsteno (luce incandescente)',
'Unknown' => 'Sconosciuto',
'Warm White Fluorescent' => 'Luce fluorescente bianca calda',
'White Fluorescent' => 'Fluorescente bianca',
},
},
'CameraAngle' => 'Angolo fotocamera',
'CameraBody' => 'Corpo fotocamera',
'CameraByteOrder' => 'Ordine byte fotocamera',
'CameraCalibration1' => 'Calibrazione fotocamera 1',
'CameraCalibration2' => 'Calibrazione fotocamera 2',
'CameraCalibrationSig' => 'Segnale calibrazione fotocamera',
'CameraColorCalibration01' => 'Calibrazione colore fotocamera 01',
'CameraColorCalibration02' => 'Calibrazione colore fotocamera 02',
'CameraColorCalibration03' => 'Calibrazione colore fotocamera 03',
'CameraColorCalibration04' => 'Calibrazione colore fotocamera 04',
'CameraColorCalibration05' => 'Calibrazione colore fotocamera 05',
'CameraColorCalibration06' => 'Calibrazione colore fotocamera 06',
'CameraColorCalibration07' => 'Calibrazione colore fotocamera 07',
'CameraColorCalibration08' => 'Calibrazione colore fotocamera 08',
'CameraColorCalibration09' => 'Calibrazione colore fotocamera 09',
'CameraColorCalibration10' => 'Calibrazione colore fotocamera 10',
'CameraColorCalibration11' => 'Calibrazione colore fotocamera 11',
'CameraColorCalibration12' => 'Calibrazione colore fotocamera 12',
'CameraColorCalibration13' => 'Calibrazione colore fotocamera 13',
'CameraColorCalibration14' => 'Calibrazione colore fotocamera 14',
'CameraColorCalibration15' => 'Calibrazione colore fotocamera 15',
'CameraDateTime' => 'Data/ora fotocamera',
'CameraDirection' => 'Direzione fotocamera',
'CameraID' => 'ID fotocamera',
'CameraISO' => 'ISO fotocamera',
'CameraIdentifier' => 'Identificativo fotocamera',
'CameraLabel' => 'Etichetta fotocamera',
'CameraMaker' => 'Marca fotocamera',
'CameraManufacturer' => 'Produttore fotocamera',
'CameraModel' => 'Modello fotocamera',
'CameraMotion' => 'Camera motion',
'CameraMove' => 'Sposta fotocamera',
'CameraName' => 'Nome fotocamera',
'CameraObjBackType' => 'Nome oggetto nero fotocamera',
'CameraObjName' => 'Nome oggetto fotocamera',
'CameraObjType' => 'Tipo oggetto fotocamera',
'CameraObjVersion' => 'Versione oggetto fotocamera',
'CameraOrientation' => {
Description => 'Orientazione fotocamera',
PrintConv => {
'Horizontal (normal)' => 'Orizzontale (normale)',
'Rotate 180' => 'Ruota di 180°',
'Rotate 270 CW' => 'Ruota di 270° in senso orario',
'Rotate 90 CW' => 'Ruota di 90° senso orario',
},
},
'CameraOwner' => 'Proprietario fotocamera',
'CameraParameters' => 'Parametri fotocamera',
'CameraProfile' => 'Profilo fotocamera',
'CameraProfileDigest' => 'Sommario profilo fotocamera',
'CameraProfileVersion' => 'Versione profilo fotocamera',
'CameraSerialNumber' => 'Numero di serie fotocamera',
'CameraSettingsVersion' => 'Versione impostazioni fotocamera',
'CameraTemperature' => 'Temperatura fotocamera',
'CameraTemperature2' => 'Temperatura fotocamera 2',
'CameraTemperature3' => 'Temperatura fotocamera 3',
'CameraTemperature4' => 'Temperatura fotocamera 4',
'CameraTemperature5' => 'Temperatura fotocamera 5',
'CameraType' => {
Description => 'Tipo fotocamera',
PrintConv => {
'n/a' => 'n/d',
},
},
'CameraType2' => 'Tipo fotocamera 2',
'CanonExposureMode' => {
PrintConv => {
'Aperture-priority AE' => 'Priorità diaframma',
'Manual' => 'Manuale',
'Program AE' => 'Programma AE',
'Shutter speed priority AE' => 'Priorità otturatore AE',
},
},
'CanonFlashMode' => {
PrintConv => {
'External flash' => 'Flash esterno',
'Off' => 'Spento',
'Red-eye reduction' => 'Riduzione occhi rossi',
'Red-eye reduction (Auto)' => 'Riduzione occhi rossi (auto)',
'Red-eye reduction (On)' => 'Riduzione occhi rossi (attivo)',
},
},
'CanonImageSize' => {
PrintConv => {
'Postcard' => 'Cartolina',
},
},
'Caption-Abstract' => 'Didascalia/descrizione',
'CaptionWriter' => 'Autore della didascalia',
'CardShutterLock' => {
PrintConv => {
'Off' => 'Spento',
},
},
'CasioQuality' => {
Description => 'Qualità Casio',
PrintConv => {
'Normal' => 'Normale',
},
},
'Categories' => {
Description => 'Categorie',
PrintConv => {
'Events' => 'Eventi',
'Scenery' => 'Paesaggio',
'To Do' => 'Da fare',
},
},
'Category' => 'Categoria',
'CellLength' => 'Lunghezza cella',
'CellWidth' => 'Larghezza cella',
'CenterWeightedAreaSize' => {
PrintConv => {
'Average' => 'Media',
},
},
'ChExtra' => 'Larghezza aggiunta per caratteri non spaziatori',
'Channel' => 'Canale',
'ChannelID' => 'ID canale',
'ChannelIdentificationCode' => 'Codice identificativo canale',
'ChannelLabel' => 'Etichetta canale',
'ChannelLength' => 'Lunghezza canale',
'ChannelMode' => 'Modo canale',
'ChannelNumber' => 'Numero canale',
'ChannelPositions' => 'Posizioni canale',
'ChannelStatus' => 'Stato canale',
'ChannelStatusMode' => 'Modo stato canale',
'ChannelTotalTime' => 'Tempo totale canale',
'ChannelWidth' => 'Larghezza canale',
'Channels' => 'Canali',
'Chapter' => 'Capitolo',
'ChapterPhysicalEquivalent' => {
PrintConv => {
'Session' => 'Sessione',
'Side' => 'Lato',
},
},
'ChapterProcessTime' => {
PrintConv => {
'For Duration of Chapter' => 'Per la durata del capitolo',
},
},
'CharacterSet' => {
Description => 'Set di caratteri',
PrintConv => {
'Windows, Arabic' => 'Windows, Arabo',
'Windows, Chinese (Simplified)' => 'Windows, Cinese semplificato',
'Windows, Cyrillic' => 'Windows, Cirillico',
'Windows, Greek' => 'Windows, Greco',
'Windows, Hebrew' => 'Windows, Ebraico',
'Windows, Japan (Shift - JIS X-0208)' => 'Windows, Giappone (Shift - JIS X-0208)',
'Windows, Korea (Shift - KSC 5601)' => 'Windows, Corea (Shift - KSC 5601)',
'Windows, Latin2 (Eastern European)' => 'Windows, Latin2 (Europa orientale)',
'Windows, Turkish' => 'Windows, Turco',
},
},
'Characters' => 'Caratteri',
'CharactersWithSpaces' => 'Caratteri con spazi',
'Children' => 'Bambini',
'ChromaBlurRadius' => 'Raggio sfocatura cromatica',
'ChromaticAberrationCorrection' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ChromaticAdaptation' => 'Adattamento cromatico',
'Chromaticity' => 'Cromatismo',
'ChrominanceNR_TIFF_JPEG' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'ChrominanceNoiseReduction' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'City' => 'Città',
'ClassifyState' => 'Stato di Classificazione',
'CleanFaxData' => {
Description => 'Dati fax precisi',
PrintConv => {
'Clean' => 'Pulito',
'Regenerated' => 'Rigenerato',
'Unclean' => 'Sporco',
},
},
'ClipPath' => 'Percoso clip',
'CodePage' => {
PrintConv => {
'Japanese (JIS 0208-1990 and 0121-1990)' => 'Giapponese (JIS 0208-1990 e 0121-1990)',
'Russian/Cyrillic (KOI8-R)' => 'Russo/Cirillico (KOI8-R)',
},
},
'CodeSize' => 'Dimensione codice',
'CodedCharacterSet' => 'Impostazione Caratteri Codificati',
'CodedContentScanningKind' => {
PrintConv => {
'Mixed' => 'Misto',
'Progressive' => 'Progressivo',
'Unknown' => 'Sconosciuto',
},
},
'CodingMethods' => {
Description => 'Metodi di codifica',
PrintConv => {
'Baseline JPEG' => 'Linea di base JPEG',
'JBIG color' => 'JBIG a colori',
'Modified Huffman' => 'Huffman modificato',
'Unspecified compression' => 'Compressione non specificata',
},
},
'ColorAberrationControl' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ColorAdjustmentMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ColorBalance' => 'Bilanciamento Colore',
'ColorBalanceAdj' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ColorBooster' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ColorCharacterization' => 'Caratterizzazione colore',
'ColorClass' => {
PrintConv => {
'0 (None)' => '0 (Nessuno)',
'1 (Winner)' => '1 (Vincitore)',
},
},
'ColorEffect' => {
PrintConv => {
'Off' => 'Spento',
'Sepia' => 'Seppia',
},
},
'ColorFilter' => {
Description => 'Filtro colori',
PrintConv => {
'Green' => 'Verde',
'Off' => 'Spento',
'Purple' => 'Porpora',
'Red' => 'Rosso',
'Sepia' => 'Seppia',
'Yellow' => 'Giallo',
},
},
'ColorHue' => 'Colore Hue',
'ColorMap' => 'Mappa colore',
'ColorMatrix1' => 'Matrice colore 1',
'ColorMatrix2' => 'Matrice colore 2',
'ColorMode' => {
Description => 'Modo colore',
PrintConv => {
'Autumn Leaves' => 'Foglie d\'autunno',
'B&W' => 'B/N',
'Clear' => 'Trasparente',
'Deep' => 'Cupa',
'Evening' => 'Sera',
'Grayscale' => 'Scala di grigi',
'Landscape' => 'Orizzontale',
'Light' => 'Chiara',
'Neutral' => 'Neutra',
'Night View' => 'Visione notturna',
'Night View/Portrait' => 'Rit. notturno',
'Normal' => 'Normale',
'Off' => 'Spento',
'Portrait' => 'Verticale',
'RGB Color' => 'Colore RGB',
'Saturated Color' => 'Colore saturato',
'Sepia' => 'Seppia',
'Sunset' => 'Tramonto',
'Vivid' => 'Vivace',
'Vivid color' => 'Colore vivace',
'n/a' => 'n/d',
},
},
'ColorMoireReduction' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ColorMoireReductionMode' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'ColorPalette' => 'Palette di Colore',
'ColorProfile' => {
PrintConv => {
'Not Embedded' => 'Non incorporato',
},
},
'ColorRepresentation' => {
Description => 'Rappresentazione del Colore',
PrintConv => {
'No Image, Single Frame' => 'Nessuna immagine, quadro singolo',
},
},
'ColorResponseUnit' => 'Unità risposta colore',
'ColorSequence' => 'Sequenza colori',
'ColorSpace' => {
Description => 'Spazio colore',
PrintConv => {
'Gray-scale' => 'Scala di grigi',
'Grayscale' => 'Scala di grigi',
'ICC Profile' => 'Profilo ICC',
'Uncalibrated' => 'Non calibrato',
},
},
'ColorSpaceData' => 'Dati Spazio Colore',
'ColorSpecApproximation' => {
PrintConv => {
'Not Specified' => 'Non specificato',
},
},
'ColorSpecMethod' => {
PrintConv => {
'Enumerated' => 'Enumerato',
},
},
'ColorTable' => 'Tabella colore',
'ColorTemperature' => 'Temperatura colore',
'ColorTemperatureSetting' => {
PrintConv => {
'Temperature' => 'Temperatura',
},
},
'ColorTone' => {
PrintConv => {
'Normal' => 'Normale',
},
},
'ColorToneFaithful' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorToneLandscape' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorToneMonochrome' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorToneNeutral' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorTonePortrait' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorToneStandard' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorToneUnknown' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorToneUserDef1' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorToneUserDef2' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorToneUserDef3' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ColorType' => {
PrintConv => {
'Grayscale' => 'Scala di grigi',
'RGB with Alpha' => 'RGB con trasparenza',
},
},
'ColorimetricReference' => 'Riferimento colorimetrico',
'CommandDialsChangeMainSub' => {
PrintConv => {
'Off' => 'Spento',
},
},
'CommandDialsMenuAndPlayback' => {
PrintConv => {
'Off' => 'Spento',
},
},
'CommandDialsReverseRotation' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'CommanderGroupAMode' => {
PrintConv => {
'Auto Aperture' => 'Diaframma automatico',
'Manual' => 'Manuale',
'Off' => 'Spento',
},
},
'CommanderGroupBMode' => {
PrintConv => {
'Auto Aperture' => 'Diaframma automatico',
'Manual' => 'Manuale',
'Off' => 'Spento',
},
},
'CommanderInternalFlash' => {
PrintConv => {
'Manual' => 'Manuale',
'Off' => 'Spento',
},
},
'Comment' => 'Commento',
'CommentTime' => 'Ora commento',
'Comments' => 'Commenti',
'CommercialURL' => 'URL pubblicitario',
'CompanyName' => 'Nome azienda',
'Compilation' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'ComponentsConfiguration' => 'Configurazione componenti',
'Composer' => 'Compositore',
'ComposerSortOrder' => 'Ordinamento compositore',
'CompositionAdjust' => {
PrintConv => {
'Off' => 'Spento',
},
},
'CompositionMode' => {
PrintConv => {
'Replace' => 'Sostituisci',
},
},
'Compressed' => {
PrintConv => {
'False' => 'Falso',
},
},
'CompressedBitsPerPixel' => 'Bit per pixel compressi',
'Compression' => {
Description => 'Compressione',
PrintConv => {
'Adobe Deflate' => 'Deflate Adobe',
'JBIG B&W' => 'JBIG B&N',
'JBIG Color' => 'JBIG a colori',
'JPEG' => 'Compressione JPEG',
'JPEG (old-style)' => 'JPEG (vecchio stile)',
'Kodak DCR Compressed' => 'Kodak DCR compresso',
'Kodak KDC Compressed' => 'Kodak KDC compresso',
'Microsoft Document Imaging (MDI) Binary Level Codec' => 'Microsoft Document Imaging (MDI) - Codec a livello binario',
'Microsoft Document Imaging (MDI) Progressive Transform Codec' => 'Microsoft Document Imaging (MDI) - Codec a trasformazione progressiva',
'Microsoft Document Imaging (MDI) Vector' => 'Microsoft Document Imaging (MDI) - Vettore',
'Next' => 'Codifica NeXT',
'Nikon NEF Compressed' => 'Nikon NEF compresso',
'None' => 'Nessuno',
'Packed RAW' => 'RAW pacchettizzato',
'Pentax PEF Compressed' => 'Pentax PEF compresso',
'RLE Encoding' => 'Codifica RLE',
'Samsung SRW Compressed' => 'Samsung SRW compresso',
'Sony ARW Compressed' => 'Sony ARW compresso',
'T4/Group 3 Fax' => 'Fax T4/Group 3',
'T6/Group 4 Fax' => 'Fax T6/Group 4',
'Uncompressed' => 'Non compresso',
},
},
'CompressionLevel' => 'Livello di compressione',
'CompressionType' => {
Description => 'Tipo compressione',
PrintConv => {
'Little-endian, no compression' => 'Little-endian, senza compressione',
'None' => 'Nessuno',
},
},
'CompressorName' => 'Nome compressione',
'ConditionalFEC' => 'Compensazione Esposizione Flash',
'Conductor' => 'Direttore d\'orchestra',
'ConsecutiveBadFaxLines' => 'Linee fax non valide consecutive',
'Contact' => 'Contatto',
'ContentEncodingType' => {
PrintConv => {
'Encryption' => 'Crittografia',
},
},
'ContentEncryptionAlgorithm' => {
PrintConv => {
'Not Encrypted' => 'Non crittografato',
},
},
'ContentLocationCode' => 'Codice ubicazione contenuto',
'ContentLocationName' => 'Nome Ubicazione Contenuto',
'ContentSignatureAlgorithm' => {
PrintConv => {
'Not Signed' => 'Senza segno',
},
},
'ContentSignatureHashAlgorithm' => {
PrintConv => {
'Not Signed' => 'Senza segno',
},
},
'ContinuousBracketing' => {
PrintConv => {
'Low' => 'Basso',
},
},
'ContinuousShootingSpeed' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'ContinuousShotLimit' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'Contrast' => {
Description => 'Contrasto',
PrintConv => {
'High' => 'Alto',
'Low' => 'Basso',
'Normal' => 'Normale',
},
},
'ContrastCurve' => 'Curva di contrasto',
'ContrastDetectAF' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ContrastFaithful' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ContrastHighlightShadowAdj' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ContrastLandscape' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ContrastMode' => {
PrintConv => {
'Elegant (My Color)' => 'Elegante (mio colore)',
'Expressive' => 'Espressivo',
'Low' => 'Basso',
'Normal' => 'Normale',
'Nostalgic (Color Film)' => 'Nostalgico (pellicola a colori)',
'Retro' => 'Retrò',
'Retro (My Color)' => 'Retro (colore personalizzato)',
},
},
'ContrastMonochrome' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ContrastNeutral' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ContrastPortrait' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ContrastStandard' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ContrastUnknown' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ContrastUserDef1' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ContrastUserDef2' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ContrastUserDef3' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ControlDialSet' => {
PrintConv => {
'Shutter Speed' => 'Tempo esposizione',
},
},
'ControlMode' => {
PrintConv => {
'Camera Local Control' => 'Controllo locale fotocamera',
'n/a' => 'n/d',
},
},
'ConversionLens' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Converter' => 'Convertitore',
'Copyright' => 'Titolare del copyright',
'CopyrightFlag' => {
PrintConv => {
'False' => 'Falso',
},
},
'CopyrightNotice' => 'Info Copyright',
'CopyrightStatus' => {
PrintConv => {
'Not specified' => 'Non specificato',
'Protected' => 'Protetto',
'Public Domain' => 'Pubblico dominio',
'Unknown' => 'Sconosciuto',
},
},
'CopyrightURL' => 'URL copyright',
'Country' => 'Paese',
'Country-PrimaryLocationCode' => 'Codice ISO Nazione',
'Country-PrimaryLocationName' => 'Nazione',
'CreateDate' => 'Data di creazione',
'CreationDate' => 'Data di creazione',
'CreativeStyle' => {
PrintConv => {
'Autumn Leaves' => 'Foglie d\'autunno',
'B&W' => 'B/N',
'Clear' => 'Trasparente',
'Deep' => 'Cupa',
'Landscape' => 'Orizzontale',
'Light' => 'Chiara',
'Neutral' => 'Neutra',
'Night View/Portrait' => 'Rit. notturno',
'Portrait' => 'Verticale',
'Sepia' => 'Seppia',
'Sunset' => 'Tramonto',
'Vivid' => 'Vivace',
},
},
'CreativeStyleSetting' => {
PrintConv => {
'Landscape' => 'Orizzontale',
'Sunset' => 'Tramonto',
'Vivid' => 'Vivace',
},
},
'Creator' => 'Creatore',
'CreatorAddress' => 'Autore - Indirizzo',
'CreatorAppID' => {
PrintConv => {
'Unknown' => 'Sconosciuto',
},
},
'CreatorCity' => 'Autore - Città',
'CreatorCountry' => 'Autore - Nazione',
'CreatorPostalCode' => 'Autore - Codice Postale',
'CreatorRegion' => 'Autore - Stato/Provincia',
'CreatorWorkEmail' => 'Autore - E.Mail',
'CreatorWorkTelephone' => 'Autore - Numero di Telefono',
'CreatorWorkURL' => 'Autore - Sito web',
'Credit' => 'Fornitore',
'CreditLineRequired' => {
PrintConv => {
'Not Required' => 'Non richiesto',
},
},
'CropActive' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'CropUnit' => {
PrintConv => {
'inches' => 'Pollici',
},
},
'CropUnits' => {
PrintConv => {
'inches' => 'Pollici',
},
},
'CrossProcess' => {
PrintConv => {
'Favorite 1' => 'Preferito 1',
'Favorite 2' => 'Preferito 2',
'Favorite 3' => 'Preferito 3',
'Off' => 'Spento',
'Random' => 'Casuale',
},
},
'CurrentICCProfile' => 'Profilo ICC attuale',
'CurrentPreProfileMatrix' => 'Matrice di pre-profilo attuale',
'Curves' => {
PrintConv => {
'Off' => 'Spento',
},
},
'CustomRendered' => {
Description => 'Resa personalizzata',
PrintConv => {
'Custom' => 'Personalizzata',
'Normal' => 'Normale',
},
},
'CustomWBError' => {
PrintConv => {
'Error' => 'Errore',
},
},
'D-LightingHQ' => {
PrintConv => {
'Off' => 'Spento',
},
},
'D-LightingHQSelected' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'D-LightingHS' => {
PrintConv => {
'Off' => 'Spento',
},
},
'D-RangeOptimizerMode' => {
PrintConv => {
'Manual' => 'Manuale',
'Off' => 'Spento',
},
},
'DECPosition' => {
PrintConv => {
'Exposure' => 'Esposizione',
'Saturation' => 'Saturazione',
},
},
'DNGBackwardVersion' => 'Versione precedente DNG',
'DNGLensInfo' => 'Informazioni lenti DNG',
'DNGPrivateData' => 'Dati privati DNG',
'DNGVersion' => 'Versione DNG',
'DataImprint' => {
PrintConv => {
'None' => 'Nessuno',
'Text' => 'Testo',
},
},
'DataType' => 'Tipo di dati',
'Date' => 'Data',
'DateCreated' => 'Data di creazione',
'DateDisplayFormat' => {
Description => 'Formato Data',
PrintConv => {
'D/M/Y' => 'Giorno/mese/anno',
'M/D/Y' => 'Mese/giorno/anno',
'Y/M/D' => 'Anno/mese/giorno',
},
},
'DateImprint' => {
PrintConv => {
'Off' => 'Spento',
},
},
'DateSent' => 'Data d\'invio',
'DateStampMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'DateTime' => 'Data/ora',
'DateTimeOriginal' => 'Data/ora originale di creazione',
'DaylightSavings' => {
PrintConv => {
'Off' => 'Spento',
'Yes' => 'Sì',
},
},
'Decode' => 'Decodifica',
'DefaultCropOrigin' => 'Ritaglio origine predefinito',
'DefaultCropSize' => 'Ritaglio dimensione predefinito',
'DefaultImageColor' => 'Colore immagine predefinito',
'DefaultScale' => 'Scala predefinita',
'DeletedImageCount' => 'Conteggio Immagini Cancellate',
'DeltaType' => {
PrintConv => {
'Absolute' => 'Assoluto',
},
},
'Description' => 'Descrizione',
'Destination' => 'Destinazione',
'DestinationCity' => {
PrintConv => {
'Jerusalem' => 'Gerusalemme',
'Lisbon' => 'Lisbona',
'London' => 'Londra',
'Milan' => 'Milano',
'Prague' => 'Praga',
'Rome' => 'Roma',
'Stockholm' => 'Stoccolma',
'Tehran' => 'Teheran',
},
},
'DestinationDST' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'DeviceAttributes' => 'Attributi Dispositivo',
'DeviceManufacturer' => 'Costruttore dispositivo',
'DeviceMfgDesc' => 'Descrizione del Costruttore Dispositivo',
'DeviceModel' => 'Modello Dispositivo',
'DeviceModelDesc' => 'Descrizione Modello Dispositivo',
'DeviceSettingDescription' => 'Descrizione impostazioni dispositivo',
'DialDirectionTvAv' => {
PrintConv => {
'Normal' => 'Normale',
'Reversed' => 'Invertito',
},
},
'DigitalCreationDate' => 'Data di creazione digitale',
'DigitalCreationTime' => 'Ora di Creazione Digitale',
'DigitalFilter01' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter02' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter03' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter04' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter05' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter06' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter07' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter08' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter09' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter10' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter11' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter12' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter13' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter14' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter15' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter16' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter17' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter18' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter19' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalFilter20' => {
PrintConv => {
'Fisheye' => 'Fish-eye',
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Retro' => 'Retrò',
'Shading' => 'Ombreggiatura',
'Starburst' => 'Esplosione stellare',
},
},
'DigitalZoom' => {
Description => 'Zoom Digitale',
PrintConv => {
'None' => 'Nessuno',
'Off' => 'Spento',
},
},
'DigitalZoomOn' => {
PrintConv => {
'Off' => 'Spento',
},
},
'DigitalZoomRatio' => 'Rapporto zoom digitale',
'Directory' => 'Posizione file',
'DisplayAllAFPoints' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'DisplaySize' => {
PrintConv => {
'Normal' => 'Normale',
},
},
'DisplayUnits' => {
PrintConv => {
'inches' => 'Pollici',
},
},
'DisplayedUnitsX' => {
PrintConv => {
'inches' => 'Pollici',
},
},
'DisplayedUnitsY' => {
PrintConv => {
'inches' => 'Pollici',
},
},
'DistortionControl' => {
PrintConv => {
'Off' => 'Spento',
},
},
'DistortionCorrection' => {
PrintConv => {
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'DistortionCorrection2' => {
PrintConv => {
'Off' => 'Spento',
},
},
'DjVuVersion' => 'Versione DjVu',
'DocSecurity' => {
PrintConv => {
'None' => 'Nessuno',
},
},
'DocumentHistory' => 'Cronologia documento',
'DocumentName' => 'Nome documento',
'DocumentNotes' => 'Note del Documento',
'DotRange' => 'Intervallo puntuale',
'DriveMode' => {
Description => 'Modalità esecuzione',
PrintConv => {
'10 s Timer' => 'Timer 10 s',
'Off' => 'Spento',
'Self-Timer 2 sec' => 'Autoscatto 2 sec',
'Self-timer' => 'Autoscatto',
'Self-timer (12 s)' => 'Autoscatto (12 s)',
'Self-timer (2 s)' => 'Autoscatto (2 s)',
'Self-timer 10 sec' => 'Autoscatto 10 sec',
'Self-timer Operation' => 'Operazione autoscatto',
'n/a' => 'n/d',
},
},
'DriveMode2' => {
PrintConv => {
'Self-timer (12 s)' => 'Autoscatto (12 s)',
'Self-timer (2 s)' => 'Autoscatto (2 s)',
'Self-timer 10 sec' => 'Autoscatto 10 sec',
'Self-timer 2 sec' => 'Autoscatto 2 sec',
},
},
'DriveModeSetting' => {
PrintConv => {
'Self-timer 10 sec' => 'Autoscatto 10 sec',
},
},
'DriveType' => {
PrintConv => {
'Fixed Disk' => 'Disco fisso',
'Unknown' => 'Sconosciuto',
},
},
'DynamicRangeExpansion' => {
PrintConv => {
'Off' => 'Spento',
},
},
'DynamicRangeOptimizer' => {
Description => 'Ott.gamma din.',
PrintConv => {
'Advanced Auto' => 'Avanz.autom.',
'Advanced Lv1' => 'Liv.Avanzato 1',
'Advanced Lv2' => 'Liv.Avanzato 2',
'Advanced Lv3' => 'Liv.Avanzato 3',
'Advanced Lv4' => 'Liv.Avanzato 4',
'Advanced Lv5' => 'Liv.Avanzato 5',
'Auto' => 'Automatico',
'Off' => 'Spento',
},
},
'DynamicRangeOptimizerBracket' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'DynamicRangeOptimizerMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'DynamicRangeOptimizerSetting' => {
PrintConv => {
'Off' => 'Spento',
},
},
'DynamicRangeSetting' => {
PrintConv => {
'Manual' => 'Manuale',
},
},
'ETTLII' => {
PrintConv => {
'Average' => 'Media',
},
},
'EVSteps' => {
PrintConv => {
'1/2 EV Steps' => 'Step 1/2 EV',
'1/3 EV Steps' => 'Step 1/3 EV',
},
},
'EXIFVersion' => 'Versione EXIF',
'EXRAuto' => {
PrintConv => {
'Manual' => 'Manuale',
},
},
'EasyExposureComp' => {
PrintConv => {
'Off' => 'Spento',
},
},
'EasyExposureCompensation' => {
PrintConv => {
'Off' => 'Spento',
},
},
'EasyMode' => {
PrintConv => {
'Fireworks' => 'Fuochi artificiali',
'Fisheye Effect' => 'Effetto fish-eye',
'Flash Off' => 'Flash spento',
'Kids & Pets' => 'Bambini e animali dimestici',
'Landscape' => 'Orizzontale',
'Manual' => 'Manuale',
'Night' => 'Scena notturna',
'Nostalgic' => 'Nostalgico',
'Portrait' => 'Verticale',
'Quick Shot' => 'Scatto veloce',
'Sepia' => 'Seppia',
'Sunset' => 'Tramonto',
'Vivid' => 'Vivace',
'Zoom Blur' => 'Sfocatura zoom',
},
},
'EdgeNoiseReduction' => {
PrintConv => {
'Off' => 'Spento',
},
},
'EditStatus' => 'Modifica Stato',
'EditorialUpdate' => {
Description => 'Aggiornamento Editoriale',
PrintConv => {
'Additional language' => 'Linguaggio addizionale',
},
},
'EffectiveMaxAperture' => 'Diaframma massimo effettivo',
'Elevation' => 'Elevazione',
'Emphasis' => {
PrintConv => {
'None' => 'Nessuno',
'reserved' => 'riservato',
},
},
'EncodedBy' => 'Codificato da',
'EncodedPixelsDimensions' => 'Dimensioni pixel codificati',
'EncodedUsing' => 'Codificato usando',
'EncodedWith' => 'Codificato con',
'Encoder' => 'Codificatore',
'EncoderSettings' => 'Impostazioni codificatore',
'EncoderVersion' => 'Versione codificatore',
'Encoding' => {
Description => 'Codifica',
PrintConv => {
'QDesign Music' => 'Musica QDesign',
'Unknown -' => 'Sconosciuto -',
},
},
'EncodingProcess' => 'Processo di codifica',
'EncodingScheme' => 'Schema di codifica',
'EncodingSettings' => 'Impostazioni di codifica',
'EncodingTime' => 'Durata codifica',
'Encryption' => 'Crittografia',
'EndOfItems' => 'Fine elementi',
'EndPoints' => 'Punti finali',
'EndTime' => 'Ora fine',
'EndUser' => 'Utente finale',
'EndUserID' => 'ID utente finale',
'EndUserName' => 'Nome utente finale',
'EndingPage' => 'Pagina finale',
'EnhanceDarkTones' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Enhancement' => {
Description => 'Miglioramento',
PrintConv => {
'Green' => 'Verde',
'Off' => 'Spento',
'Red' => 'Rosso',
'Scenery' => 'Paesaggio',
},
},
'EnhancementOrModificationDescription' => 'Descrizione miglioramento/modifica',
'EntryPoint' => 'Punto d\'ingresso',
'EnvelopePriority' => {
PrintConv => {
'0 (reserved)' => '0 (riservato)',
'1 (most urgent)' => '1 (molto urgente)',
'5 (normal urgency)' => '5 (urgenza normale)',
'8 (least urgent)' => '8 (meno urgente)',
'9 (user-defined priority)' => '9 (priorità definita dall\'utente)',
},
},
'Error' => 'Errore',
'ErrorCorrection' => 'Correzione errore',
'ErrorCorrectionType' => 'Tipo correzione errore',
'EthnicGroup' => 'Gruppo etnico',
'Event' => 'Evento',
'EventAbsoluteDuration' => 'Durata assoluta evento',
'Events' => 'Eventi',
'ExcursionTolerance' => {
PrintConv => {
'Allowed' => 'Possibile',
'Not Allowed' => 'Non permesso',
},
},
'ExecutionStatus' => 'Stato esecuzione',
'ExecutionStatusInfo' => 'Info stato esecuzione',
'ExifByteOrder' => 'Ordine dei byte Exif',
'ExifCameraInfo' => 'Info Exif fotocamera',
'ExifImageHeight' => 'Altezza immagine Exif',
'ExifImageWidth' => 'Larghezza immagine Exif',
'ExifInfo2' => 'Info 2 Exif',
'ExifOffset' => 'Puntatore Exif IFD',
'ExifToolVersion' => 'Numero versione ExifTool',
'ExifUnicodeByteOrder' => 'Ordine unicode dei byte Exif',
'ExifVersion' => 'Versione Exif',
'ExitPupilPosition' => 'Posizione pupilla d\'uscita',
'ExpirationDate' => 'Data scadenza',
'ExpirationTime' => 'Ora scadenza',
'Expires' => 'Scade',
'ExposedArea' => 'Area esposta',
'Exposure' => 'Esposizione',
'Exposure2012' => 'Esposizione 2012',
'ExposureBracketValue' => 'Valore Esposizione a Forcella',
'ExposureBracketingIndicatorLast' => {
PrintConv => {
'Not Indicated' => 'Non indicato',
},
},
'ExposureCompensation' => 'Compensazione esposizione',
'ExposureCompensationMode' => 'Modo compensazione esposizione',
'ExposureControlMode' => 'Modo controllo esposizione',
'ExposureControlModeDescription' => 'Descrizione modo controllo esposizione',
'ExposureDelayMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ExposureDifference' => 'Differenza esposizione',
'ExposureIndex' => 'Indice di esposizione',
'ExposureIndicator' => {
PrintConv => {
'Not Indicated' => 'Non indicato',
},
},
'ExposureLevelIncrements' => {
PrintConv => {
'1/2 Stop' => '1/2 stop',
'1/3 Stop' => '1/3 stop',
},
},
'ExposureMode' => {
Description => 'Modo esposizione',
PrintConv => {
'Aperture Priority' => 'Priorità diaframma',
'Aperture-priority AE' => 'Priorità diaframma',
'Auto bracket' => 'A forcella automatica',
'Fireworks' => 'Fuochi artificiali',
'Landscape' => 'Orizzontale',
'Manual' => 'Manuale',
'Portrait' => 'Verticale',
'Program' => 'Programma',
'Program AE' => 'Programma AE',
'Shutter Priority' => 'Priorità otturatore',
'Shutter speed priority AE' => 'Priorità otturatore AE',
'Sunset' => 'Tramonto',
'n/a' => 'n/d',
},
},
'ExposureModeInManual' => {
Description => 'Modo esposizione in manuale',
PrintConv => {
'Center-weighted average' => 'Media centrale ponderata',
'Partial metering' => 'Parziale',
},
},
'ExposureModulationType' => 'Tipo modulazione esposizione',
'ExposureProgram' => {
Description => 'Programma esposizione',
PrintConv => {
'Action (High speed)' => 'Azione (alta velocità)',
'Aperture Priority' => 'Priorità diaframma',
'Aperture-priority AE' => 'Priorità diaframma',
'Bulb' => 'Bulbo',
'Creative (Slow speed)' => 'Creativo (bassa velocità)',
'Landscape' => 'Orizzontale',
'Manual' => 'Manuale',
'Not Defined' => 'Non definito',
'Portrait' => 'Verticale',
'Posterization' => 'Posterizzazione',
'Posterization B/W' => 'Posterizzazione B&N',
'Program' => 'Programma',
'Program AE' => 'Programma AE',
'Retro Photo' => 'Foto retrò',
'Shutter Priority' => 'Priorità otturatore',
'Shutter speed priority AE' => 'Priorità otturatore AE',
'Sunset' => 'Tramonto',
'Sweep Panorama' => 'Panoramica ad arco',
},
},
'ExposureSequence' => 'Sequenza esposizione',
'ExposureStatus' => 'Stato esposizione',
'ExposureTime' => 'Tempo esposizione',
'ExposureTime2' => 'Tempo esposizione 2',
'ExposureTimeInMicroSec' => 'Tempo esposizione in microsecondi',
'ExposureTimeInMilliSec' => 'Tempo esposizione in millisecondi',
'ExposureTuning' => 'Sintonizzazione esposizione',
'ExposureUnknown' => 'Esposizione sconosciuta',
'ExposureValue' => 'Valore esposizione',
'ExtendedWBDetect' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Extender' => {
PrintConv => {
'None' => 'Nessuno',
},
},
'ExtenderStatus' => {
PrintConv => {
'Not attached' => 'Non applicabile',
'Removed' => 'Rimosso',
},
},
'ExtensionPersistence' => {
PrintConv => {
'Potentially Invalidated By Modification' => 'Potenzialmente invalidato per modifica',
},
},
'ExternalFlash' => {
Description => 'Flash esterno',
PrintConv => {
'Off' => 'Spento',
},
},
'ExternalFlashBounce' => {
PrintConv => {
'Yes' => 'Sì',
'n/a' => 'n/d',
},
},
'ExternalFlashExposureComp' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ExternalFlashFirmware' => {
PrintConv => {
'1.01 (SB-800 or Metz 58 AF-1)' => '1.01 (SB-800 o Metz 58 AF-1)',
'n/a' => 'n/d',
},
},
'ExternalFlashFlags' => 'Flags Flash Esterno',
'ExternalFlashMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ExtraFlags' => {
PrintConv => {
'(none)' => '(nessuno)',
'Fastest Algorithm' => 'Algoritmo più veloce',
},
},
'ExtraSamples' => {
Description => 'Campioni extra',
PrintConv => {
'Associated Alpha' => 'Associati alla trasparenza',
'Unassociated Alpha' => 'Non associati alla trasparenza',
'Unspecified' => 'Non specificati',
},
},
'EyeStartAF' => {
PrintConv => {
'Off' => 'Spento',
},
},
'FEMicroadjustment' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'FNumber' => 'Numero F',
'Face1Category' => {
PrintConv => {
'Family' => 'Famiglia',
},
},
'Face2Category' => {
PrintConv => {
'Family' => 'Famiglia',
},
},
'Face3Category' => {
PrintConv => {
'Family' => 'Famiglia',
},
},
'Face4Category' => {
PrintConv => {
'Family' => 'Famiglia',
},
},
'Face5Category' => {
PrintConv => {
'Family' => 'Famiglia',
},
},
'Face6Category' => {
PrintConv => {
'Family' => 'Famiglia',
},
},
'Face7Category' => {
PrintConv => {
'Family' => 'Famiglia',
},
},
'Face8Category' => {
PrintConv => {
'Family' => 'Famiglia',
},
},
'FaceDetection' => {
PrintConv => {
'Off' => 'Spento',
},
},
'FaceOrientation' => {
PrintConv => {
'Horizontal (normal)' => 'Orizzontale (normale)',
'Rotate 180' => 'Ruota di 180°',
'Rotate 270 CW' => 'Ruota di 270° in senso orario',
'Rotate 90 CW' => 'Ruota di 90° senso orario',
},
},
'FacesDetected' => {
Description => 'Facce rimosse',
PrintConv => {
'n/a' => 'n/d',
},
},
'FacesRecognized' => 'Facce riconosciute',
'FamilyName' => 'Nome famiglia',
'FastSeek' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'FaxNumber' => 'Numero di fax',
'FaxProfile' => {
Description => 'Profilo fax',
PrintConv => {
'Extended B&W lossless, F' => 'Bianco e nero esteso senza perdita, F',
'Lossless JBIG B&W, J' => 'Senza perdita JBIG bianco e nero, J',
'Lossless color and grayscale, L' => 'Senza perdita a colori e scala di grigi, L',
'Lossy color and grayscale, C' => 'Con perdita a colori e scala di grigi, C',
'Minimal B&W lossless, S' => 'Bianco e nero minimale con perdita, S',
'Mixed raster content, M' => 'Contenuto raster misto, M',
'Multi Profiles' => 'Profili multipli',
'Profile T' => 'Profilo T',
'Unknown' => 'Sconosciuto',
},
},
'FaxRecvParams' => 'Parametri ricezione fax',
'FaxRecvTime' => 'Ora ricezione fax',
'FaxSubAddress' => 'Sotto-indirizzo fax',
'FileAttributes' => {
PrintConv => {
'Encrypted' => 'Crittografato',
'Encrypted?' => 'Crittografato?',
'Normal' => 'Normale',
'Not indexed' => 'Non indicizzato',
'Read-only' => 'Sola lettura',
'System' => 'Sistema',
},
},
'FileDescription' => 'Descrizione file',
'FileDescriptors' => 'Descrittori file',
'FileFlags' => {
Description => 'Attributi file',
PrintConv => {
'Info inferred' => 'Info desunte',
'Private build' => 'Compilazione privata',
'Special build' => 'Compilazione speciale',
},
},
'FileFlagsMask' => 'Maschera attributi file',
'FileFormat' => {
Description => 'Formato file',
PrintConv => {
'Ritzaus Bureau NITF version (RBNITF DTD)' => 'Versione Ritzaus Bureau NITF (RBNITF DTD)',
},
},
'FileFunctionFlags' => {
PrintConv => {
'Fragmented' => 'Frammentato',
},
},
'FileID' => 'ID file',
'FileIndex' => 'Indice file',
'FileIndex2' => 'Indice file 2',
'FileLength' => 'Dimensioni file',
'FileModifyDate' => 'Data aggiornamento',
'FileName' => 'Nome file',
'FileNameLength' => 'Lunghezza nome file',
'FileNumber' => 'Numero file',
'FileNumberMemory' => {
PrintConv => {
'Off' => 'Spento',
},
},
'FileNumberSequence' => {
PrintConv => {
'Off' => 'Spento',
},
},
'FileOS' => 'OS del file',
'FileOwner' => 'Proprietario del file',
'FilePermissions' => 'Permessi file',
'FileProfileVersion' => 'Versione profilo file',
'FileSecurityReport' => 'Rapporto sicurezza file',
'FileSequence' => 'Sequenza file',
'FileSetID' => 'ID gruppo file',
'FileSize' => 'Dimensione file',
'FileSizeBytes' => 'Dimensione file in byte',
'FileSource' => {
Description => 'Origine file',
PrintConv => {
'Digital Camera' => 'Fotocamera digitale',
'Film Scanner' => 'Scanner per pellicola',
'Reflection Print Scanner' => 'Scanner a riflessione',
'Sigma Digital Camera' => 'Fotocamera digitale Sigma',
},
},
'FileSubtype' => 'Sottotipo file',
'FileType' => 'Tipo di file',
'FileURL' => 'URL file',
'FileVersion' => 'Versione file',
'FileVersionNumber' => 'Numero versione file',
'Filename' => 'Nome file',
'Files' => 'File',
'FillFlashAutoReduction' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'FillOrder' => {
Description => 'Ordine riempimento',
PrintConv => {
'Normal' => 'Normale',
'Reversed' => 'Invertito',
},
},
'FilmMode' => {
PrintConv => {
'Nostalgic' => 'Nostalgico',
'Standard (B&W)' => 'Standard (B&N)',
'Standard (color)' => 'Standard (colori)',
'n/a' => 'n/d',
},
},
'FilterEffect' => {
Description => 'Effetto Filtro',
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Off' => 'Spento',
'Orange' => 'Arancio',
'Red' => 'Rosso',
'Yellow' => 'Giallo',
'n/a' => 'n/d',
},
},
'FilterEffectFaithful' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'FilterEffectLandscape' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'FilterEffectMonochrome' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Orange' => 'Arancio',
'Red' => 'Rosso',
'Yellow' => 'Giallo',
'n/a' => 'n/d',
},
},
'FilterEffectNeutral' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'FilterEffectPortrait' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'FilterEffectStandard' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'FilterEffectUnknown' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Red' => 'Rosso',
'n/a' => 'n/d',
},
},
'FilterEffectUserDef1' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Red' => 'Rosso',
'n/a' => 'n/d',
},
},
'FilterEffectUserDef2' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Red' => 'Rosso',
'n/a' => 'n/d',
},
},
'FilterEffectUserDef3' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Red' => 'Rosso',
'n/a' => 'n/d',
},
},
'FinalFrameBlocks' => 'Blocchi frame finali',
'FinderDisplayDuringExposure' => {
PrintConv => {
'Off' => 'Spento',
},
},
'FineSharpness' => {
PrintConv => {
'Normal' => 'Normale',
'Off' => 'Spento',
},
},
'FirmwareDate' => 'Data firmware',
'FirmwareID' => 'ID firmware',
'FirmwareName' => 'Nome firmware',
'FirmwareRevision' => 'Revisione firmware',
'FirmwareRevision2' => 'Revisione 2 firmware',
'FirmwareVersion' => 'Versione firmware',
'FirstChar' => 'Primo carattere',
'FirstObject' => 'Primo oggetto',
'FirstObjectID' => 'ID primo oggetto',
'FixtureIdentifier' => 'Identificatore d\'installazione',
'Flags' => {
PrintConv => {
'FileName' => 'Nome file',
'Text' => 'Testo',
},
},
'Flash' => {
PrintConv => {
'Auto, Did not fire' => 'Auto, flash non emesso',
'Auto, Did not fire, Red-eye reduction' => 'Auto, flash non emesso, riduzione occhi rossi',
'Auto, Fired' => 'Auto, flash emesso',
'Auto, Fired, Red-eye reduction' => 'Auto, flash emesso, riduzione occhi rossi',
'Auto, Fired, Red-eye reduction, Return detected' => 'Auto, flash emesso, riduzione occhi rossi, luce di ritorno rilevata',
'Auto, Fired, Red-eye reduction, Return not detected' => 'Auto, flash emesso, riduzione occhi rossi, luce di ritorno non rilevata',
'Auto, Fired, Return detected' => 'Auto, flash emesso, luce di ritorno rilevata',
'Auto, Fired, Return not detected' => 'Auto, flash emesso, luce di ritorno non rilevata',
'Did not fire' => 'Flash non emesso',
'Fired' => 'Emesso',
'Fired, Red-eye reduction' => 'Emesso, riduzione occhi rossi',
'Fired, Red-eye reduction, Return detected' => 'Emesso, riduzione occhi rossi, ritorno rilevato',
'Fired, Red-eye reduction, Return not detected' => 'Emesso, riduzione occhi rossi, ritorno non rilevato',
'Fired, Return detected' => 'Emesso, ritorno rilevato',
'Fired, Return not detected' => 'Emesso, ritorno non rilevato',
'Flash Fired' => 'Flash emesso',
'No Flash' => 'Flash non emesso',
'No flash function' => 'Nessuna funzione flash',
'Off' => 'Flash non emesso, modalità flash forzata',
'Off, Did not fire' => 'Flash non emesso, modalità flash forzata',
'Off, Did not fire, Return not detected' => 'Off, Non emesso. Luce di ritorno non rilevata',
'Off, No flash function' => 'Off, Nessuna funzione flash',
'Off, Red-eye reduction' => 'Disattivato, riduzione occhi rossi',
'On' => 'Flash emesso, modalità flash forzata',
'On, Did not fire' => 'Attivato, non emesso',
'On, Fired' => 'Attivato, emesso',
'On, Red-eye reduction' => 'Attivato, riiduzione occhi rossi',
'On, Red-eye reduction, Return detected' => 'Attivato, riiduzione occhi rossi, ritorno rilevato',
'On, Red-eye reduction, Return not detected' => 'Attivato, riiduzione occhi rossi, ritorno non rilevato',
'On, Return detected' => 'Attivato, ritorno rilevato',
'On, Return not detected' => 'Attivato, ritorno non rilevato',
},
},
'FlashBits' => {
PrintConv => {
'External' => 'Esterno',
'Manual' => 'Manuale',
},
},
'FlashButtonFunction' => {
PrintConv => {
'ISO speed' => 'Velocità ISO',
},
},
'FlashColorFilter' => {
PrintConv => {
'None' => 'Nessuno',
'Red' => 'Rosso',
},
},
'FlashCommanderMode' => {
Description => 'Modo Commander',
PrintConv => {
'Off' => 'Spento',
},
},
'FlashCompensation' => 'Compensazione flash',
'FlashControl' => 'Controllo flash',
'FlashControlBuilt-in' => {
PrintConv => {
'Manual' => 'Manuale',
'Repeating Flash' => 'Ripetizione flash',
},
},
'FlashControlMode' => {
Description => 'Modo Controllo Flash',
PrintConv => {
'Auto Aperture' => 'Diaframma automatico',
'Manual' => 'Manuale',
'Off' => 'Spento',
'Repeating Flash' => 'Ripetizione flash',
},
},
'FlashDevice' => {
PrintConv => {
'External' => 'Esterno',
'None' => 'Nessuno',
},
},
'FlashEnergy' => 'Energia del flash',
'FlashExposureBracketValue' => 'Valore Esposizione a Forcella Flash',
'FlashExposureComp' => 'Compensazione Esposizione Flash',
'FlashExposureIndicator' => {
PrintConv => {
'Not Indicated' => 'Non indicato',
},
},
'FlashExposureIndicatorLast' => {
PrintConv => {
'Not Indicated' => 'Non indicato',
},
},
'FlashExposureIndicatorNext' => {
PrintConv => {
'Not Indicated' => 'Non indicato',
},
},
'FlashExposureLock' => {
PrintConv => {
'Off' => 'Spento',
},
},
'FlashFired' => {
Description => 'Flash emesso',
PrintConv => {
'External' => 'Esterno',
'Yes' => 'Sì',
},
},
'FlashFiring' => 'Emissione flash',
'FlashFirmwareVersion' => 'Versione firmware flash',
'FlashFocalLength' => 'Lunghezza focale flash',
'FlashFunction' => {
Description => 'Funzione flash',
PrintConv => {
'Manual' => 'Manuale',
},
},
'FlashGNDistance' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'FlashGroupAControlMode' => {
Description => 'Gruppo A Modo Controllo Flash',
PrintConv => {
'Auto Aperture' => 'Diaframma automatico',
'Manual' => 'Manuale',
'Off' => 'Spento',
'Repeating Flash' => 'Ripetizione flash',
},
},
'FlashGroupBControlMode' => {
Description => 'Gruppo B Modo Controllo Flash',
PrintConv => {
'Auto Aperture' => 'Diaframma automatico',
'Manual' => 'Manuale',
'Off' => 'Spento',
'Repeating Flash' => 'Ripetizione flash',
},
},
'FlashGroupCControlMode' => {
Description => 'Gruppo C Modo Controllo Flash',
PrintConv => {
'Manual' => 'Manuale',
'Off' => 'Spento',
'Repeating Flash' => 'Ripetizione flash',
},
},
'FlashInfoVersion' => 'Info Versione Flash',
'FlashIntensity' => {
PrintConv => {
'Low' => 'Basso',
'Normal' => 'Normale',
'Strong' => 'Forte',
},
},
'FlashLevel' => {
Description => 'Livello flash',
PrintConv => {
'Low' => 'Basso',
'Normal' => 'Normale',
},
},
'FlashMeteringMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'FlashMode' => {
Description => 'Modo flash',
PrintConv => {
'Did Not Fire' => 'Non emesso',
'Fired, Commander Mode' => 'Emesso, Modalità Commander',
'Fired, External' => 'Emesso Esterno',
'Fired, Manual' => 'Emesso, Manuale',
'Fired, TTL Mode' => 'Emesso, Modalità TTL',
'Flash Off' => 'Flash spento',
'Normal' => 'Normale',
'Not Ready' => 'Non pronto',
'Off' => 'Spento',
'Off, Did not fire' => 'Spendo, non emesso',
'Off?' => 'Spento?',
'Red eye' => 'Occhi rossi',
'Red-Eye' => 'Occhi rossi',
'Red-Eye?' => 'Occhi rossi?',
'Red-eye' => 'Occhi rossi',
'Red-eye Reduction' => 'Riduzione occhi rossi',
'Red-eye reduction' => 'Riduzione occhi rossi',
'Unknown' => 'Sconosciuta',
},
},
'FlashModel' => {
Description => 'Modello flash',
PrintConv => {
'None' => 'Nessuno',
},
},
'FlashOptions' => {
Description => 'Opzioni flash',
PrintConv => {
'Normal' => 'Normale',
'Red-eye reduction' => 'Riduzione occhi rossi',
},
},
'FlashOptions2' => {
Description => 'Opzioni 2 flash',
PrintConv => {
'Normal' => 'Normale',
'Red-eye reduction' => 'Riduzione occhi rossi',
},
},
'FlashRemoteControl' => {
Description => 'Telecomando flash',
PrintConv => {
'Off' => 'Spento',
},
},
'FlashReturn' => 'Ritorno flash',
'FlashSerialNumber' => 'Numero di serie del flash',
'FlashSetting' => 'Impostazione flash',
'FlashSource' => {
Description => 'Fonte flash',
PrintConv => {
'External' => 'Esterno',
'None' => 'Nessuno',
},
},
'FlashStatus' => {
Description => 'Stato flash',
PrintConv => {
'Off' => 'Spento',
'Off (1)' => 'Spento (1)',
},
},
'FlashSyncSpeed' => {
PrintConv => {
'1/250 s (auto FP)' => '1/250 s (piano focale auto)',
'1/320 s (auto FP)' => '1/320 s (piano focale auto)',
},
},
'FlashSyncSpeedAv' => {
PrintConv => {
'1/200 Fixed' => '1/200 fisso',
'1/200-1/60 Auto' => '1/200-1/60 auto',
'1/250 Fixed' => '1/250 fisso',
'1/250-1/60 Auto' => '1/250-1/60 auto',
'1/300 Fixed' => '1/300 fisso',
'1/300-1/60 Auto' => '1/300-1/60 auto',
},
},
'FlashType' => {
Description => 'Tipo di flash',
PrintConv => {
'External' => 'Esterno',
'None' => 'Nessuno',
'Off' => 'Spento',
},
},
'FlashVersion' => 'Versione del flash',
'FlashWarning' => {
PrintConv => {
'Off' => 'Spento',
},
},
'FlashpixVersion' => 'Versione Flashpix',
'FlickerReduce' => {
PrintConv => {
'Off' => 'Spento',
},
},
'FlipHorizontal' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'FocalLength' => 'Lunghezza focale',
'FocalLength35efl' => 'Lunghezza focale',
'FocalLength35mm' => 'Lunghezza focale 35mm',
'FocalLengthIn35mmFormat' => 'Lunghezza focale in formato 35mm',
'FocalPlaneDiagonal' => 'Diagonale piano focale',
'FocalPlaneResolutionUnit' => {
Description => 'Unità risoluzione piano focale',
PrintConv => {
'None' => 'Nessuno',
'inches' => 'pollici',
},
},
'FocalPlaneXResolution' => 'Risoluzione X del piano focale',
'FocalPlaneXSize' => 'Dimensione X del piano focale',
'FocalPlaneXUnknown' => 'X del piano focale sconisciuta',
'FocalPlaneYResolution' => 'Risoluzione Y del piano focale',
'FocalPlaneYSize' => 'Dimensione Y del piano focale',
'FocalPlaneYUnknown' => 'Y del piano focale sconisciuta',
'FocalType' => {
PrintConv => {
'Fixed' => 'Fisso',
},
},
'Focus' => {
PrintConv => {
'Manual' => 'Manuale',
},
},
'FocusContinuous' => {
PrintConv => {
'Manual' => 'Manuale',
},
},
'FocusDisplayAIServoAndMF' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'FocusDistance' => 'Distanza fuoco',
'FocusMode' => {
Description => 'Modalità messa a fuoco',
PrintConv => {
'Manual' => 'Manuale',
'Normal' => 'Normale',
'n/a' => 'n/d',
},
},
'FocusMode2' => {
Description => 'Modalità messa a fuoco 2',
PrintConv => {
'Manual' => 'Manuale',
},
},
'FocusModeSetting' => {
PrintConv => {
'Manual' => 'Manuale',
},
},
'FocusModeSwitch' => {
PrintConv => {
'Manual' => 'Manuale',
},
},
'FocusPos' => 'Posizione fuoco',
'FocusPosition' => 'Posizione fuoco',
'FocusRange' => {
PrintConv => {
'Manual' => 'Manuale',
'Normal' => 'Normale',
'Not Known' => 'Sconosciuto',
'Very Close' => 'Molto vicino',
},
},
'FocusStatus' => {
PrintConv => {
'Failed' => 'Fallito',
'Not confirmed' => 'Non confermato',
},
},
'FocusTrackingLockOn' => {
PrintConv => {
'1 (Short)' => '1 (Breve)',
'1 Short' => '1 breve',
'Normal' => 'Normale',
'Off' => 'Spento',
'Short' => 'Breve',
},
},
'FontFamily' => {
Description => 'Tipo di carattere',
PrintConv => {
'Swiss' => 'Svizzera',
},
},
'FontFileName' => 'Nome file carattere',
'FontName' => 'Nome carattere',
'FontSize' => 'Dimensioni carattere',
'FontSubfamily' => 'Sottotipo di carattere',
'FontSubfamilyID' => 'ID sottotipo di carattere',
'FontType' => 'Tipo di carattere',
'FontVersion' => 'Versione carattere',
'FontWeight' => 'Peso carattere',
'Fonts' => 'Caratteri',
'For' => 'Per',
'Format' => 'Formato',
'ForwardMatrix1' => 'Matrice predittiva 1',
'ForwardMatrix2' => 'Matrice predittiva 2',
'FrameRate' => 'Frequenza fotogramma',
'FrameSize' => 'Dimensioni fotogrammi',
'FreeByteCounts' => 'Byte disponibili',
'FreeOffsets' => 'Offset disponibili',
'FujiFlashMode' => {
PrintConv => {
'External' => 'Esterno',
'Off' => 'Spento',
'Red-eye reduction' => 'Riduzione occhi rossi',
},
},
'FuncButton' => {
PrintConv => {
'Flash Off' => 'Flash spento',
'None' => 'Nessuno',
'Preview' => 'Anteprima',
'Virtual Horizon' => 'Orizzonte virtuale',
},
},
'FuncButtonPlusDials' => {
PrintConv => {
'Choose Image Area' => 'Seleziona area immagine',
'None' => 'Nessuno',
},
},
'FunctionButton' => {
PrintConv => {
'Flash Off' => 'Flash spento',
},
},
'GDALMetadata' => 'Metadati GDAL',
'GDALNoData' => 'Nessun dato GDAL',
'GIFVersion' => 'Versione GIF',
'GPSAltitude' => 'Altitudine GPS',
'GPSAltitudeRef' => {
Description => 'Riferimento altitudine GPS',
PrintConv => {
'Above Sea Level' => 'Sul livello del mare',
'Below Sea Level' => 'Sotto il livello del mare',
},
},
'GPSAreaInformation' => 'Informazioni area GPS',
'GPSDOP' => 'Precisione misurazione GPS',
'GPSDateStamp' => 'Data GPS',
'GPSDateTime' => 'Ora GPS (orologio atomico)',
'GPSDestBearing' => 'Direzione destinazione GPS',
'GPSDestBearingRef' => {
Description => 'Riferimento direzione destinazione GPS',
PrintConv => {
'Magnetic North' => 'Nord magnetico',
'True North' => 'Nord geografico',
},
},
'GPSDestDistance' => 'Distanza destinazione GPS',
'GPSDestDistanceRef' => {
Description => 'Riferimento distanza destinazione GPS',
PrintConv => {
'Kilometers' => 'Chilometri',
'Miles' => 'Miglia',
'Nautical Miles' => 'Miglia nautiche',
},
},
'GPSDestLatitude' => 'Latitudine destinazione GPS',
'GPSDestLatitudeRef' => {
Description => 'Riferimento latitudine destinazione GPS',
PrintConv => {
'North' => 'Nord',
'South' => 'Sud',
},
},
'GPSDestLongitude' => 'Longitudine destinazione GPS',
'GPSDestLongitudeRef' => {
Description => 'Riferimento per longitudine di destinazione',
PrintConv => {
'East' => 'Est',
'West' => 'Ovest',
},
},
'GPSDifferential' => {
Description => 'Correzione differenziale GPS',
PrintConv => {
'Differential Corrected' => 'Correzione differenziale applicata',
'No Correction' => 'Misurazione senza correzione differenziale',
},
},
'GPSHPositioningError' => 'Errore posizionamento orizzontale GPS',
'GPSImgDirection' => 'Direzione di immagine',
'GPSImgDirectionRef' => {
Description => 'Riferimento per direzione di immagine',
PrintConv => {
'Magnetic North' => 'Nord magnetico',
'True North' => 'Nord geografico',
},
},
'GPSInfo' => 'Puntatore GPS Info IFD',
'GPSLatitude' => 'Latitudine',
'GPSLatitudeRef' => {
Description => 'Latitudine Nord o Sud',
PrintConv => {
'North' => 'Latitudine Nord',
'South' => 'Latitudine Sud',
},
},
'GPSLongitude' => 'Longitudine',
'GPSLongitudeRef' => {
Description => 'Longitudine Est o Ovest',
PrintConv => {
'East' => 'Longitudine Est',
'West' => 'Longitudine Ovest',
},
},
'GPSMapDatum' => 'Dati di rilevamento geodetico utilizzati',
'GPSMeasureMode' => {
Description => 'Modalità misurazione GPS',
PrintConv => {
'2-Dimensional Measurement' => 'Misurazione 2D',
'3-Dimensional Measurement' => 'Misurazione tridimensionale',
},
},
'GPSProcessingMethod' => 'Nome metodo di elaborazione GPS',
'GPSSatellites' => 'Satelliti GPS usati per la misurazione',
'GPSSpeed' => 'Velocità ricevitore GPS',
'GPSSpeedRef' => {
Description => 'Unità velocità',
PrintConv => {
'km/h' => 'Chilometri all\'ora',
'knots' => 'Nodi',
'mph' => 'Miglie all\'ora',
},
},
'GPSStatus' => {
Description => 'Stato ricevitore GPS',
PrintConv => {
'Measurement Active' => 'Misurazione in corso',
'Measurement Void' => 'Interoperatività misurazione',
},
},
'GPSTimeStamp' => 'Ora GPS (orologio atomico)',
'GPSTrack' => 'Direzione di movimento',
'GPSTrackRef' => {
Description => 'Riferimento per direzione di movimento',
PrintConv => {
'Magnetic North' => 'Direzione magnetica',
'True North' => 'Direzione effettiva',
},
},
'GPSVersionID' => 'Versione tag GPS',
'GTModelType' => {
PrintConv => {
'Projected' => 'Proiettato',
},
},
'GainControl' => {
Description => 'Controllo di Guadagno',
PrintConv => {
'High gain down' => 'Diminuire il guadagno alto',
'High gain up' => 'Aumentare il guadagno alto',
'Low gain down' => 'Diminuire il guadagno basso',
'Low gain up' => 'Aumentare il guadagno basso',
'None' => 'Nessuno',
},
},
'GammaCompensatedValue' => 'Valore di Compensazione Gamma',
'Gapless' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'Genre' => {
Description => 'Genere',
PrintConv => {
'Acapella' => 'A cappella',
'Acid Jazz' => 'Acid jazz',
'Acid Punk' => 'Acid punk',
'Acoustic' => 'Acustica',
'Ambient' => 'Ambientale',
'Avantgarde' => 'Avanguardia',
'Ballad' => 'Ballata',
'Bass' => 'Basso',
'Big Band' => 'Big band',
'Black Metal' => 'Black metal',
'Booty Bass' => 'Basso booty',
'Celtic' => 'Celtica',
'Chamber Music' => 'Musica da camera',
'Chorus' => 'Coro',
'Christian Gangsta' => 'Gangsta cristiano',
'Christian Rap' => 'Rap cristiano',
'Christian Rock' => 'Rock cristiano',
'Classic Rock' => 'Rock classico',
'Classical' => 'Classica',
'Club-House' => 'Club-house',
'Comedy' => 'Commedia',
'Contemporary C' => 'C contemporaneo',
'Country' => 'Nazione',
'Cover' => 'Copertina',
'Dance Hall' => 'Dance hall',
'Death Metal' => 'Death metal',
'Drum & Bass' => 'Batteria e basso',
'Drum Solo' => 'Batteria solo',
'Duet' => 'Duetto',
'Easy Listening' => 'Easy listening',
'Electronic' => 'Elettronica',
'Ethnic' => 'Etnica',
'Euro-House' => 'Euro-house',
'Euro-Techno' => 'Euro-techno',
'Fast Fusion' => 'Fast fusion',
'Folk-Rock' => 'Folk-rock',
'Game' => 'Gioco',
'Gothic' => 'Gotica',
'Gothic Rock' => 'Rock gotico',
'Hard Rock' => 'Hard rock',
'Heavy Metal' => 'Heavy metal',
'Hip-Hop' => 'Hip-hop',
'Humour' => 'Umoristica',
'Instrumental' => 'Strumentale',
'Instrumental Pop' => 'Pop strumentale',
'Instrumental Rock' => 'Rock strumentale',
'Jazz+Funk' => 'Jazz+funk',
'Latin' => 'Latina',
'Lo-Fi' => 'Lo-fi',
'Meditative' => 'Medidativa',
'National Folk' => 'Folklore nazionale',
'Native American' => 'Nativi americani',
'New Age' => 'New age',
'New Wave' => 'New wave',
'Noise' => 'Rumore',
'None' => 'Nessuno',
'Oldies' => 'Vecchi successi',
'Other' => 'Altro',
'Polsk Punk' => 'Punk polacco',
'Pop-Folk' => 'Pop-folk',
'Pop/Funk' => 'Pop/funk',
'Porn Groove' => 'Porn groove',
'Power Ballad' => 'Power ballad',
'Progressive Rock' => 'Progressive rock',
'Psychadelic' => 'Psichedelica',
'Psychedelic Rock' => 'Rock psichedelica',
'Punk Rock' => 'Punk rock',
'Retro' => 'Retrò',
'Rhythmic Soul' => 'Rhythmic soul',
'Rock & Roll' => 'Rock & roll',
'Satire' => 'Satira',
'Slow Jam' => 'Slow jam',
'Slow Rock' => 'Slow rock',
'Sound Clip' => 'Clip sonora',
'Soundtrack' => 'Colonna sonora',
'Southern Rock' => 'Southern rock',
'Speech' => 'Parlato',
'Symphonic Rock' => 'Rock sinfonico',
'Symphony' => 'Sinfonia',
'Techno-Industrial' => 'Techno-industrial',
'Terror' => 'Terrore',
'Thrash Metal' => 'Thrash metal',
'Tribal' => 'Tribale',
'Trip-Hop' => 'Trip-hop',
},
},
'GenreID' => 'ID genere',
'GeoTiffAsciiParams' => 'Parametri Geo Tiff Ascii',
'GeoTiffDirectory' => 'Cartella Geo Tiff',
'GeoTiffDoubleParams' => 'Parametri Geo Tiff Double',
'GeogGeodeticDatum' => {
PrintConv => {
'Lisbon' => 'Lisbona',
'Stockholm 1938' => 'Stoccolma 1938',
},
},
'GeogPrimeMeridian' => {
PrintConv => {
'Lisbon' => 'Lisbona',
'Rome' => 'Roma',
'Stockholm' => 'Stoccolma',
},
},
'GeographicType' => {
PrintConv => {
'Greek' => 'Greco',
'Lisbon' => 'Lisbona',
'Stockholm 1938' => 'Stoccolma 1938',
},
},
'Gradation' => {
Description => 'Ottimizzaz.',
PrintConv => {
'Normal' => 'Normale',
'n/a' => 'n/d',
},
},
'GrayResponseCurve' => 'Curva di risposta Grigio',
'GrayResponseUnit' => {
Description => 'Unità di risposta Grigio',
PrintConv => {
'1e-05' => '1e-005',
'1e-06' => '1e-006',
},
},
'GrayTRC' => 'Curva Riproduzione Tono Grigio',
'GreenMatrixColumn' => 'Colonna della Matrice Verde',
'GreenTRC' => 'Curva Riproduziozne Tono Verde',
'GridDisplay' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Grouping' => 'Raggruppamento',
'HCUsage' => {
Description => 'Uso HC',
PrintConv => {
'Line Art' => 'Line art',
},
},
'HDR' => {
Description => 'HDR auto',
PrintConv => {
'Off' => 'Disattivata',
},
},
'HDRSetting' => {
PrintConv => {
'Off' => 'Spento',
},
},
'HalftoneHints' => 'Suggerimenti mezzi toni',
'HandlerType' => {
PrintConv => {
'Text' => 'Testo',
},
},
'Headline' => 'Intestazione',
'HeightResolution' => 'Risoluzione altezza',
'HighISONoiseReduction' => {
Description => 'Riduzione Rumore High ISO',
PrintConv => {
'Auto' => 'Automatico',
'High' => 'Hi',
'Low' => 'Leggero',
'Normal' => 'Normale',
'Off' => 'Disattivata',
'Strong' => 'Forte',
'n/a' => 'n/d',
},
},
'HighSpeedSync' => {
PrintConv => {
'Off' => 'Spento',
},
},
'HighlightTonePriority' => {
PrintConv => {
'Enable' => 'Abilita',
'Off' => 'Spento',
},
},
'HometownCity' => {
PrintConv => {
'Jerusalem' => 'Gerusalemme',
'Lisbon' => 'Lisbona',
'London' => 'Londra',
'Milan' => 'Milano',
'Prague' => 'Praga',
'Rome' => 'Roma',
'Stockholm' => 'Stoccolma',
'Tehran' => 'Teheran',
},
},
'HometownDST' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'HostComputer' => 'Computer ospite',
'HotKey' => {
PrintConv => {
'(none)' => '(nessuno)',
},
},
'Hue' => {
Description => 'Tonalità',
PrintConv => {
'None' => 'Nessuno',
'Normal' => 'Normale',
},
},
'HueAdjustment' => 'Regolazione Hue',
'ICCProfile' => 'Profili ICC',
'IDCCreativeStyle' => {
PrintConv => {
'Camera Setting' => 'Impostazioni fotocamera',
'Landscape' => 'Orizzontale',
'Light' => 'Chiara',
'Real' => 'Reale',
'Sepia' => 'Seppia',
'Sunset' => 'Tramonto',
'Vivid' => 'Vivace',
},
},
'INGRReserved' => 'Riseervato a INGR',
'IPTC-NAA' => 'Metadati IPTC-NAA',
'IPTCBitsPerSample' => 'Numero di Bits per Campione',
'IPTCImageHeight' => 'Numero di linee',
'IPTCImageRotation' => {
Description => 'Rotazione Immagine',
PrintConv => {
'0' => 'Nessuna rotazione',
'180' => 'Rotazione di 180 gradi',
'270' => 'Rotazione di 270 gradi',
'90' => 'Rotazione di 90 gradi',
},
},
'IPTCImageWidth' => 'Pixels per linea',
'IPTCPictureNumber' => 'Numero Immagine',
'ISO' => 'Sensibilità ISO',
'ISOAuto' => {
Description => 'ISO auto',
PrintConv => {
'Off' => 'Spento',
},
},
'ISOAutoParameters' => {
Description => 'Parametri ISO auto',
PrintConv => {
'Fast' => 'Veloce',
},
},
'ISODisplay' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ISOExpansion' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ISOExpansion2' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ISOInfo' => 'Info ISO',
'ISOSelection' => 'Selezione ISO',
'ISOSensitivityStep' => 'Passo sensibilità ISO',
'ISOSetting' => {
Description => 'Impostazione ISO',
PrintConv => {
'100 (Low)' => '100 (basso)',
'Manual' => 'Manuale',
'n/a' => 'n/d',
},
},
'ISOSpeed' => 'Velocità ISO',
'ISOSpeedExpansion' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'ISOSpeedIncrements' => {
PrintConv => {
'1 Stop' => '1 stop',
'1/3 Stop' => '1/3 stop',
},
},
'ISOSpeedLatitudeyyy' => 'Velocità ISO - Latitudine yyy',
'ISOSpeedLatitudezzz' => 'Velocità ISO - Latitudine zzz',
'ISOSpeedRange' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'ISOValue' => 'Valore ISO',
'IT8Header' => 'Intestazione IT8',
'Illumination' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Image::ExifTool::AIFF::Comment' => 'Commento AIFF',
'Image::ExifTool::EXE::CHM' => 'EXE CHM',
'Image::ExifTool::EXE::ELF' => 'EXE ELF',
'Image::ExifTool::EXE::MachO' => 'EXE MachO',
'Image::ExifTool::EXE::Main' => 'EXE',
'Image::ExifTool::EXE::PEF' => 'EXE PEF',
'Image::ExifTool::EXE::PEString' => 'EXE PEString',
'Image::ExifTool::EXE::PEVersion' => 'EXE PEVersion',
'Image::ExifTool::Exif::Main' => 'Exif',
'Image::ExifTool::FLAC::Main' => 'FLAC',
'Image::ExifTool::Flash::Main' => 'Flash',
'Image::ExifTool::Flash::Video' => 'Video flash',
'Image::ExifTool::FlashPix::Main' => 'FlashPix',
'Image::ExifTool::Font::Main' => 'Carattere',
'Image::ExifTool::Font::Name' => 'Nome carattere',
'Image::ExifTool::Font::PFM' => 'Carattere PFM',
'Image::ExifTool::GPS::Main' => 'GPS',
'Image::ExifTool::ID3::Private' => 'ID3 privato',
'Image::ExifTool::ID3::v1' => 'ID3 v1',
'Image::ExifTool::ID3::v1_Enh' => 'ID3 v1_Enh',
'Image::ExifTool::ID3::v2_2' => 'ID3 v2_2',
'Image::ExifTool::ID3::v2_3' => 'ID3 v2_3',
'Image::ExifTool::ID3::v2_4' => 'ID3 v2_4',
'Image::ExifTool::ITC::Main' => 'ITC',
'Image::ExifTool::JFIF::Main' => 'JFIF',
'Image::ExifTool::Kodak::DcMD' => 'Kodak DcMD',
'Image::ExifTool::Kodak::Free' => 'Kodak Free',
'Image::ExifTool::Kodak::KDC_IFD' => 'KDC_IFD Kodak',
'Image::ExifTool::Kodak::Main' => 'Kodak',
'Image::ExifTool::Microsoft::Stitch' => 'Microsoft Stitch',
'Image::ExifTool::Olympus::AVI' => 'AVI Olympus',
'Image::ExifTool::Olympus::Main' => 'Olympus',
'Image::ExifTool::PSP::Creator' => 'Creatore PSP',
'Image::ExifTool::PSP::Image' => 'Immagine PSP',
'Image::ExifTool::PSP::Main' => 'PSP',
'Image::ExifTool::PanasonicRaw::Main' => 'PanasonicRaw',
'Image::ExifTool::PostScript::Main' => 'PostScript',
'Image::ExifTool::PrintIM::Main' => 'PrintIM',
'Image::ExifTool::Qualcomm::Main' => 'Qualcomm',
'Image::ExifTool::QuickTime::Main' => 'QuickTime',
'Image::ExifTool::RIFF::Main' => 'RIFF',
'Image::ExifTool::Radiance::Main' => 'Radianza',
'Image::ExifTool::Rawzor::Main' => 'Rawzor',
'Image::ExifTool::Real::AudioV3' => 'Real AudioV3',
'Image::ExifTool::Real::AudioV4' => 'Real AudioV4',
'Image::ExifTool::Real::AudioV5' => 'Real AudioV5',
'Image::ExifTool::Ricoh::AVI' => 'AVI Ricoh',
'Image::ExifTool::Ricoh::FaceInfo' => 'FaceInfo Ricoh',
'Image::ExifTool::Ricoh::FirmwareInfo' => 'Info firmware Ricoh',
'Image::ExifTool::Ricoh::ImageInfo' => 'Info immagine Ricoh',
'Image::ExifTool::Ricoh::Main' => 'Ricoh',
'Image::ExifTool::Ricoh::RMETA' => 'RMETA Ricoh',
'Image::ExifTool::Ricoh::SerialInfo' => 'Info seriale Ricoh',
'Image::ExifTool::Ricoh::Subdir' => 'Sotto-cartella Ricoh',
'Image::ExifTool::Ricoh::Text' => 'Testo Ricoh',
'Image::ExifTool::Samsung::INFO' => 'Samsung INFO',
'Image::ExifTool::Samsung::MP4' => 'Samsung MP4',
'Image::ExifTool::Samsung::PictureWizard' => 'Samsung PictureWizard',
'Image::ExifTool::Sanyo::Main' => 'Sanyo',
'Image::ExifTool::Sigma::Main' => 'Sigma',
'ImageAdjustment' => 'Regolazione Immagine',
'ImageAlterationConstraints' => {
PrintConv => {
'No Merging' => 'Nessuna fusione',
},
},
'ImageAuthentication' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ImageByteCount' => 'Numero di byte dell\'immagine',
'ImageColorIndicator' => {
Description => 'Indicazione colore dell\'immagine',
PrintConv => {
'Specified Image Color' => 'Colore immagine specificato',
'Unspecified Image Color' => 'Colore immagine non specificato',
},
},
'ImageColorValue' => 'Valore colore dell\'immagine',
'ImageCount' => 'Conteggio Immagini',
'ImageDataDiscard' => {
Description => 'Dati scartati dell\'immagine',
PrintConv => {
'Flexbits Discarded' => 'Flexbit scartati',
'Full Resolution' => 'Risoluzione completa',
'HighPass Frequency Data Discarded' => 'Dati in frequenza passa-alto scartati',
'Highpass and LowPass Frequency Data Discarded' => 'Dati in frequenza passa-alto e passa-basso scartati',
},
},
'ImageDataSize' => 'Dimensione Dati Immagine',
'ImageDepth' => 'Profondità Immagine',
'ImageDescription' => 'Descrizione Immagine',
'ImageDustOff' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ImageEditing' => {
PrintConv => {
'None' => 'Nessuno',
'Resized' => 'Ridimensionato',
},
},
'ImageHeight' => 'Altezza immagine',
'ImageHistory' => 'Cronologia immagine',
'ImageID' => 'ID Immagine',
'ImageLayer' => 'Livello immagine',
'ImageNumber' => 'Numero immagine',
'ImageOffset' => 'Offset immagine',
'ImageOptimization' => 'Ottimizzazione Immagine',
'ImageOrientation' => {
Description => 'Orientamento Immagine',
PrintConv => {
'Landscape' => 'Orizzontale',
'Portrait' => 'Verticale',
'Square' => 'Quadrata',
},
},
'ImageQuality' => {
Description => 'Qualità Immagine',
PrintConv => {
'Normal' => 'Normale',
},
},
'ImageReview' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ImageRotated' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'ImageRotation' => {
PrintConv => {
'None' => 'Nessuno',
},
},
'ImageSize' => 'Dimensioni immagini',
'ImageSourceData' => 'Dati origine immagine',
'ImageStabilization' => {
Description => 'Stabilizzazione Immagine',
PrintConv => {
'Off' => 'Spento',
'Off (1)' => 'Spento (1)',
'Off (2)' => 'Spento (2)',
'n/a' => 'n/d',
},
},
'ImageStabilizationSetting' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ImageStyle' => {
PrintConv => {
'Landscape' => 'Orizzontale',
'Sunset' => 'Tramonto',
'Vivid' => 'Vivace',
},
},
'ImageTone' => {
PrintConv => {
'Landscape' => 'Orizzontale',
'Portrait' => 'Verticale',
'Radiant' => 'Radiante',
},
},
'ImageType' => {
Description => 'Tipo immagine',
PrintConv => {
'Page' => 'Pagina',
'Preview' => 'Anteprima',
},
},
'ImageUniqueID' => 'ID unico immagine',
'ImageVersion' => 'Versione immagine',
'ImageWidth' => 'Larghezza immagine',
'Index' => 'Indice',
'Indexable' => {
PrintConv => {
'False' => 'Falso',
},
},
'Indexed' => {
Description => 'Indicizzato',
PrintConv => {
'Indexed' => 'Indicizzato',
'Not indexed' => 'Non indicizzato',
},
},
'InfraredIlluminator' => {
PrintConv => {
'Off' => 'Spento',
},
},
'InitialDisplayEffect' => {
PrintConv => {
'Off' => 'Spento',
},
},
'InitialKey' => 'Chiave iniziale',
'InitializedDataSize' => 'Dimensione dati inizializzati',
'InkNames' => 'Nomi inchiostri',
'InkSet' => {
Description => 'Gruppo inchiostri',
PrintConv => {
'Not CMYK' => 'Non CMYK',
},
},
'Instructions' => 'Istruzioni',
'IntellectualGenre' => 'Genere Intellettuale',
'IntelligentAuto' => {
PrintConv => {
'Off' => 'Spento',
},
},
'IntelligentContrast' => {
PrintConv => {
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'IntelligentD-Range' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'IntelligentExposure' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'IntelligentResolution' => {
PrintConv => {
'Extended' => 'Esteso',
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'IntensityStereo' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Interlace' => {
Description => 'Interlacciamento',
PrintConv => {
'Noninterlaced' => 'Non interlacciato',
'Progressive' => 'Progressivo',
},
},
'InterleavedField' => {
PrintConv => {
'Even' => 'Pari',
},
},
'InternalFlash' => {
PrintConv => {
'Fired' => 'Flash emesso',
'Manual' => 'Manuale',
'No' => 'Flash non emesso',
'Off' => 'Spento',
'Repeating Flash' => 'Ripetizione flash',
},
},
'InternalName' => 'Nome interno',
'InternetRadioStationName' => 'Nome stazione radio internet',
'InternetRadioStationOwner' => 'Proprietario stazione radio internet',
'InternetRadioStationURL' => 'URL stazione radio internet',
'InteropIndex' => {
Description => 'Identificazione interoperatività',
PrintConv => {
'R03 - DCF option file (Adobe RGB)' => 'R03 - file opzioni DCF (Adobe RGB)',
'R98 - DCF basic file (sRGB)' => 'R98 - file base DCF (sRGB)',
'THM - DCF thumbnail file' => 'File miniatura THM - DCF',
},
},
'InteropOffset' => 'Etichetta interoperatività',
'InteropVersion' => 'Versione interoperatività',
'InterpretedBy' => 'Interpetrato da',
'InvolvedPeople' => 'Persone coinvolte',
'Italic' => 'Corsivo',
'JFIFVersion' => 'Versione JFIF',
'JPEGACTables' => 'Tabelle JPEGAC',
'JPEGDCTables' => 'Tabelle JPEGDC',
'JPEGLosslessPredictors' => 'Predittori JPEG senza perdita',
'JPEGPointTransforms' => 'Trasformazioni puntiali JPEG',
'JPEGProc' => {
Description => 'Proc JPEG',
PrintConv => {
'Baseline' => 'Linea di base',
'Lossless' => 'Senza perdita',
},
},
'JPEGQTables' => 'Tabelle JPEGQ',
'JPEGQuality' => {
Description => 'Qualità',
PrintConv => {
'Extra Fine' => 'Extra fine',
'Standard' => 'Normale',
'n/a' => 'n/d',
},
},
'JPEGRestartInterval' => 'Intervallo riavvio JPEG',
'JPEGTables' => 'Tabelle JPEG',
'JobID' => 'ID processo',
'JobName' => 'Nome processo',
'JobRef' => 'Rif processo',
'JobStatus' => 'Stato processo',
'JpgFromRaw' => 'JPG da raw',
'JpgFromRawLength' => 'Lunghezza JPG da raw',
'JpgFromRawStart' => 'Inizio JPG da raw',
'Keyword' => 'Parola chiave',
'KeywordInfo' => 'Info parola chiave',
'Keywords' => 'Parole chiave',
'Kinds' => 'Tipi',
'LCDIllumination' => {
PrintConv => {
'Off' => 'Spento',
},
},
'LCDIlluminationDuringBulb' => {
PrintConv => {
'Off' => 'Spento',
},
},
'LCHEditor' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Language' => 'Lingua',
'LanguageCode' => {
Description => 'Codice lingua',
PrintConv => {
'Albanian' => 'Albanese',
'Arabic' => 'Arabo',
'Armenian' => 'Armeno',
'Azeri' => 'Azero',
'Basque' => 'Basco',
'Belarusian' => 'Bielorusso',
'Breton' => 'Bretone',
'Bulgarian' => 'Bulgaro',
'Catalan' => 'Catalano',
'Chinese (Simplified)' => 'Cinese (semplificato)',
'Chinese (Traditional)' => 'Cinese (tradizionale)',
'Croato-Serbian (Latin)' => 'Serbo-croato (alfabeto latino)',
'Czech' => 'Ceco',
'Danish' => 'Danese',
'Dutch' => 'Olandese',
'Dutch (Belgian)' => 'Olandese (Belgio)',
'English (Australian)' => 'Inglese (Australia)',
'English (British)' => 'Inglese (Gran Bretagna)',
'English (Canadian)' => 'Inglese (Canada)',
'English (U.S.)' => 'Inglese (U.S.A.)',
'Estonian' => 'Estone',
'Farsi' => 'Persiano',
'Finnish' => 'Finlandese',
'French' => 'Francese',
'French (Belgian)' => 'Francese (Belgio)',
'French (Canadian)' => 'Francese (Canada)',
'French (Swiss)' => 'Francese (Svizzera)',
'Gaelic' => 'Gaelico',
'Galician' => 'Galiziano',
'Georgian' => 'Georgiano',
'German' => 'Tedesco',
'German (Austrian)' => 'Tedesco (Austria)',
'German (Swiss)' => 'Tedesco (Svizzera)',
'Greek' => 'Greco',
'Hebrew' => 'Ebraico',
'Hungarian' => 'Ungherese',
'Icelandic' => 'Islandese',
'Indonesian' => 'Indonesiano',
'Invariant' => 'Invariante',
'Italian' => 'Italiano',
'Italian (Swiss)' => 'Italiano (Svizzera)',
'Japanese' => 'Giapponese',
'Kazak' => 'Kazako',
'Korean' => 'Coreano',
'Kyrgyz' => 'Kirghizo',
'Latvian' => 'Lettone',
'Lithuanian' => 'Lituano',
'Macedonian' => 'Macedone',
'Mongolian' => 'Mongolo',
'Nepali' => 'Nepalese',
'Neutral' => 'Neutrale',
'Neutral 2' => 'Neutrale 2',
'Norwegian (Bokml)' => 'Norvegese (Bokmål)',
'Norwegian (Nynorsk)' => 'Norvegese (Nynorsk)',
'Polish' => 'Polacco',
'Portuguese' => 'Portogese',
'Portuguese (Brazilian)' => 'Portoghese (Brasile)',
'Process default' => 'Predefinita del processo',
'Rhaeto-Romanic' => 'Reto-romanico',
'Romanian' => 'Rumeno',
'Russian' => 'Russo',
'Sanskrit' => 'Sanscrito',
'Serbo-Croatian (Cyrillic)' => 'Serbo-croato (cirillico)',
'Slovak' => 'Slovacco',
'Slovenian' => 'Sloveno',
'Spanish (Castilian)' => 'Spagnolo (Castiglia)',
'Spanish (Mexican)' => 'Spagnolo (Messico)',
'Spanish (Modern)' => 'Spagnolo moderno',
'Swedish' => 'Svedese',
'Syriac' => 'Siriaco',
'Turkish' => 'Turco',
'Ukrainian' => 'Ucraino',
'Uzbek' => 'Usbeco',
'Vietnamese' => 'Vietnamita',
'Welsh' => 'Gallese',
},
},
'LanguageIdentifier' => 'Identificativo lingua',
'LanguageList' => 'Lista lingue',
'LanguageName' => 'Nome lingua',
'LateralChromaticAberration' => {
PrintConv => {
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'Layout' => {
PrintConv => {
'Tiles' => 'Tasselli',
},
},
'LegalCopyright' => 'Copyright legali',
'LegalTrademarks' => 'Marchi legali',
'Length' => 'Durata',
'Lens' => 'Obiettivo',
'Lens35efl' => 'Obiettivo',
'LensDataVersion' => 'Versione Dati Obiettivo',
'LensFStops' => 'F-Stops Obiettivo',
'LensID' => {
Description => 'Obiettivo Utilizzato',
PrintConv => {
'Ricoh Lens A16 24-85mm F3.5-5.5' => 'Obiettivo Ricoh A16 24-85mm F3.5-5.5',
'Ricoh Lens P10 28-300mm F3.5-5.6 VC' => 'Obiettivo Ricoh P10 28-300mm F3.5-5.6 VC',
'Ricoh Lens S10 24-70mm F2.5-4.4 VC' => 'Obiettivo Ricoh S10 24-70mm F2.5-4.4 VC',
},
},
'LensIDNumber' => 'Numero ID Obiettivo',
'LensInfo' => 'Informazioni obiettivo',
'LensMake' => 'Marca obiettivo',
'LensModel' => 'Modello obiettivo',
'LensSerialNumber' => 'Numero di serie obiettivo',
'LensShutterLock' => {
PrintConv => {
'Off' => 'Spento',
},
},
'LensSpec' => 'Obiettivo',
'LensType' => {
Description => 'Tipo obiettivo',
PrintConv => {
'02 Standard Zoom 5-15mm F2.8-4.5' => '02 Zoom standard 5-15mm F2.8-4.5',
'04 Toy Lens Wide 6.3mm F7.1' => '04 Grandangolare toy 6.3mm F7.1',
'05 Toy Lens Telephoto 18mm F8' => '05 Teleobiettivo toy 18mm F8',
'1.4x Teleconverter' => 'Moltiplicatore di focale 1.4x',
'None' => 'Nessuno',
'Sigma 100-300mm F4 EX (APO (D) or D IF)' => 'Sigma 100-300mm F4 EX (APO (D) o D IF)',
},
},
'LevelGaugePitch' => {
PrintConv => {
'Off' => 'Spento',
},
},
'LevelGaugeRoll' => {
PrintConv => {
'Off' => 'Spento',
},
},
'LevelOrientation' => {
PrintConv => {
'Horizontal (normal)' => 'Orizzontale',
'Rotate 180' => 'Ruota di 180°',
'Rotate 270 CW' => 'Ruota di 270° in senso orario',
'Rotate 90 CW' => 'Ruota di 90° senso orario',
},
},
'License' => 'Licenza',
'LicenseID' => 'ID licenza',
'LicenseType' => {
PrintConv => {
'Public Domain' => 'Pubblico dominio',
'Unknown' => 'Sconosciuto',
},
},
'LightCondition' => 'Condizione luce',
'LightSource' => {
Description => 'Sorgente di luce',
PrintConv => {
'Cloudy' => 'Nuvoloso',
'Cool White Fluorescent' => 'Fluorescente a luce calda',
'Day White Fluorescent' => 'Fluorescente a luce del giorno bianca',
'Daylight' => 'Luce del giorno',
'Daylight Fluorescent' => 'Fluorescente a luce del giorno',
'Evening Sunlight' => 'Luce solare serale',
'Fine Weather' => 'Bel tempo',
'Fluorescent' => 'Fluorescente',
'ISO Studio Tungsten' => 'Tungsteno studio ISO',
'Other' => 'Altra Sorgente di Luce',
'Shade' => 'Ombrato',
'Standard Light A' => 'Luce standard A',
'Standard Light B' => 'Luce standard B',
'Standard Light C' => 'Luce standard C',
'Tungsten (Incandescent)' => 'Tungsteno (luce incandescente)',
'Unknown' => 'Sconosciuto',
'Warm White Fluorescent' => 'Luce fluorescente bianca calda',
'White Fluorescent' => 'Fluorescente bianca',
},
},
'LightSourceSpecial' => {
PrintConv => {
'Off' => 'Spento',
},
},
'LightingMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Lightness' => 'Luce',
'Line' => 'Linea',
'LineOrder' => {
PrintConv => {
'Random Y' => 'Casuale Y',
},
},
'LinearResponseLimit' => 'Limite risposta lineare',
'LinearizationTable' => 'Tabella di linearizzazione',
'Lines' => 'Linee',
'LinkAEToAFPoint' => {
PrintConv => {
'Off' => 'Spento',
},
},
'LinkerVersion' => 'Versione linker',
'Lit' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'LiveViewAFMethod' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'LiveViewAFSetting' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'LiveViewFocusMode' => {
PrintConv => {
'Manual' => 'Manuale',
'n/a' => 'n/d',
},
},
'LiveViewMetering' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'LiveViewShooting' => {
PrintConv => {
'Off' => 'Spento',
},
},
'LocalDeltaType' => {
PrintConv => {
'Absolute' => 'Assoluto',
},
},
'LocalizedCameraModel' => 'Modello fotocamera localizzato',
'Location' => 'Località',
'LocationKind' => 'Tipo località',
'LocationName' => 'Nome località',
'LocationNote' => 'Note località',
'LongDescription' => 'Descrizione estesa',
'LongExposureNoiseReduction' => {
Description => 'Espososizione lunga riduzione rumore',
PrintConv => {
'Off' => 'Spento',
'Off (65535)' => 'Spento (65535)',
'On' => 'Attivata',
'n/a' => 'n/d',
},
},
'LongExposureNoiseReduction2' => {
Description => 'Espososizione lunga riduzione rumore 2',
PrintConv => {
'Off' => 'Spento',
},
},
'LongText' => 'Testo lungo',
'LoopStyle' => {
PrintConv => {
'Normal' => 'Normale',
},
},
'LuminanceNoiseReduction' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'Lyricist' => 'Paroliere',
'Lyrics' => 'Testo',
'MCUVersion' => 'Versione MCU',
'MDColorTable' => 'Tabella colori MD',
'MDFileTag' => 'Tag file MD',
'MDFileUnits' => 'Unità file MD',
'MDLabName' => 'Nome lab MD',
'MDPrepDate' => 'Data prep MD',
'MDPrepTime' => 'Ora prep MD',
'MDSampleInfo' => 'Info campione MD',
'MDScalePixel' => 'Scala pixel MD',
'MIEVersion' => 'Versione MIE',
'MIMEType' => 'Tipo mime',
'MIMETypeOfEncapsulatedDocument' => 'Tipo mime del documento incapsulato',
'MSDocumentText' => 'Testo documento MS',
'MSDocumentTextPosition' => 'Posizione testo documento MS',
'MSPropertySetStorage' => 'Gruppo di memoria proprietà MS',
'MSStereo' => {
PrintConv => {
'Off' => 'Spento',
},
},
'MachineType' => {
Description => 'Tipo macchina',
PrintConv => {
'ARM little endian' => 'ARM little-endian',
'Alpha AXP (old)' => 'Alpha AXP (precedente)',
'EFI Byte Code' => 'Byte code EFI',
'Intel 386 or later, and compatibles' => 'Intel 386 o successivo e compatibili',
'MIPS little endian (R4000)' => 'MIPS little-endian (R4000)',
'MIPS little endian WCI v2' => 'MIPS little-endian WCI v2',
'MIPS with FPU' => 'MIPS con FPU',
'MIPS16 with FPU' => 'MIPS16 con FPU',
'Mitsubishi M32R little endian' => 'Mitsubishi M32R little-endian',
'Motorola 68000 series' => 'Serie Motorola 68000',
'PowerPC little endian' => 'PowerPC little-endian',
'PowerPC with floating point support' => 'PowerPC con supporto numeri in in virgola mobile',
'clr pure MSIL' => 'clr con MSIL puro',
},
},
'Macro' => {
PrintConv => {
'Manual' => 'Manuale',
'Normal' => 'Normale',
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'MacroLED' => {
PrintConv => {
'Off' => 'Spento',
},
},
'MacroMode' => {
PrintConv => {
'Normal' => 'Normale',
'Off' => 'Spento',
},
},
'MagicFilter' => {
PrintConv => {
'Fish Eye' => 'Fish-eye',
'Fragmented' => 'Frammentato',
'Gentle Sepia' => 'Seppia leggero',
'Off' => 'Spento',
'Reflection' => 'Riflessione',
},
},
'MainDialExposureComp' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Make' => 'Costruttore',
'MakeAndModel' => 'Marca e Modello',
'MakerNote' => 'Dati DNG Privati',
'MakerNoteCanon' => 'Note marca Canon',
'MakerNoteCasio' => 'Note marca Casio',
'MakerNoteCasio2' => 'Note marca Casio 2',
'MakerNoteFujiFilm' => 'Note marca Fuji Film',
'MakerNoteGE' => 'Note marca GE',
'MakerNoteGE2' => 'Note marca GE2',
'MakerNoteHP' => 'Note marca HP',
'MakerNoteHP2' => 'Note marca HP2',
'MakerNoteHP4' => 'Note marca HP4',
'MakerNoteHP6' => 'Note marca HP6',
'MakerNoteHasselblad' => 'Note marca Hasselblad',
'MakerNoteISL' => 'Note marca ISL',
'MakerNoteJVC' => 'Note marca JVC',
'MakerNoteJVCText' => 'Note marca JVC - Testo',
'MakerNoteKodak10' => 'Note marca Kodak 10',
'MakerNoteKodak1a' => 'Note marca Kodak 1a',
'MakerNoteKodak1b' => 'Note marca Kodak 1b',
'MakerNoteKodak2' => 'Note marca Kodak 2',
'MakerNoteKodak3' => 'Note marca Kodak 3',
'MakerNoteKodak4' => 'Note marca Kodak 4',
'MakerNoteKodak5' => 'Note marca Kodak 5',
'MakerNoteKodak6a' => 'Note marca Kodak 6a',
'MakerNoteKodak6b' => 'Note marca Kodak 6b',
'MakerNoteKodak7' => 'Note marca Kodak 7',
'MakerNoteKodak8a' => 'Note marca Kodak 8a',
'MakerNoteKodak8b' => 'Note marca Kodak 8b',
'MakerNoteKodak9' => 'Note marca Kodak 9',
'MakerNoteKodakUnknown' => 'Note marca Kodak sconosciuta',
'MakerNoteKyocera' => 'Note marca Kyocera',
'MakerNoteLeica' => 'Note marca Leica',
'MakerNoteLeica2' => 'Note marca Leica 2',
'MakerNoteLeica3' => 'Note marca Leica 3',
'MakerNoteLeica4' => 'Note marca Leica 4',
'MakerNoteLeica5' => 'Note marca Leica 5',
'MakerNoteLeica6' => 'Note marca Leica 6',
'MakerNoteMinolta' => 'Note marca Minolta',
'MakerNoteMinolta2' => 'Note marca Minolta 2',
'MakerNoteMinolta3' => 'Note marca Minolta 3',
'MakerNoteNikon' => 'Note marca Nikon',
'MakerNoteNikon2' => 'Note marca Nikon 2',
'MakerNoteNikon3' => 'Note marca Nikon 3',
'MakerNoteOlympus' => 'Note marca Olympus',
'MakerNoteOlympus2' => 'Note marca Olympus 2',
'MakerNotePanasonic' => 'Note marca Panasonic',
'MakerNotePanasonic2' => 'Note marca Panasonic 2',
'MakerNotePentax' => 'Note marca Pentax',
'MakerNotePentax2' => 'Note marca Pentax 2',
'MakerNotePentax3' => 'Note marca Pentax 3',
'MakerNotePentax4' => 'Note marca Pentax 4',
'MakerNotePentax5' => 'Note marca Pentax 5',
'MakerNotePentax6' => 'Note marca Pentax 6',
'MakerNotePhaseOne' => 'Note marca Phase One',
'MakerNoteReconyx' => 'Note marca Reconyx',
'MakerNoteRicoh' => 'Note marca Ricoh',
'MakerNoteRicohText' => 'Note marca Ricoh - Testo',
'MakerNoteSafety' => {
Description => 'Note marca Safety',
PrintConv => {
'Safe' => 'Sicuro',
'Unsafe' => 'Non sicuro',
},
},
'MakerNoteSamsung1a' => 'Note marca Samsung 1a',
'MakerNoteSamsung1b' => 'Note marca Samsung 1b',
'MakerNoteSamsung2' => 'Note marca Samsung 2',
'MakerNoteSanyo' => 'Note marca Sanyo',
'MakerNoteSanyoC4' => 'Note marca Sanyo C4',
'MakerNoteSanyoPatch' => 'Note marca Sanyo Patch',
'MakerNoteSigma' => 'Note marca Sigma',
'MakerNoteSony' => 'Note marca Sony',
'MakerNoteSony2' => 'Note marca Sony 2',
'MakerNoteSony3' => 'Note marca Sony 3',
'MakerNoteSony4' => 'Note marca Sony 4',
'MakerNoteSonyEricsson' => 'Note marca Sony Ericsson',
'MakerNoteSonySRF' => 'Note marca Sony SRF',
'MakerNoteUnknown' => 'Note marca sconosciuta',
'MakerNoteUnknownText' => 'Note marca sconosciuta - Testo',
'MakerNoteVersion' => 'Note Versione Costruttore',
'MakerNotes' => 'Note produttore',
'ManualFlashOutput' => {
PrintConv => {
'Low' => 'Basso',
'n/a' => 'n/d',
},
},
'ManualFocusDistance' => 'Messa a Fuoco Manuale',
'MarkerID' => 'ID marker',
'MaskedAreas' => 'Aree mascherate',
'MasterDocumentID' => 'ID Documento Principale',
'Matteing' => 'Opacizzazione',
'MaxAperture' => 'Massima apertura delle lenti',
'MaxApertureAtMaxFocal' => 'Diaframma massimo alla focale massima',
'MaxApertureAtMinFocal' => 'Diaframma massimo alla focale minima',
'MaxApertureValue' => 'Diaframma massimo obiettivo',
'MaxFocalLength' => 'Lunghezza focale massima',
'MaxSampleValue' => 'Massimo valore campioni',
'MeasurementGeometry' => {
PrintConv => {
'0/45 or 45/0' => '0/45 o 45/0',
'0/d or d/0' => '0/d o d/0',
},
},
'MediaBlackPoint' => 'Media Punto Nero',
'MediaType' => {
PrintConv => {
'Normal (Music)' => 'Normale (musica)',
},
},
'MediaWhitePoint' => 'Media Punto Bianco',
'MenuButtonDisplayPosition' => {
PrintConv => {
'Top' => 'Alto',
},
},
'MenuButtonReturn' => {
PrintConv => {
'Top' => 'Alto',
},
},
'MeteringMode' => {
Description => 'Modalità misurazione',
PrintConv => {
'Average' => 'Media',
'Center-weighted Average' => 'Media centrale ponderata',
'Center-weighted average' => 'Media centrale ponderata',
'Multi-segment' => 'Multi-zona',
'Multi-spot' => 'Multi-punto',
'Other' => 'Altro',
'Partial' => 'Parziale',
'Spot' => 'Punto',
'Unknown' => 'Sconosciuto',
},
},
'MeteringMode2' => {
PrintConv => {
'Center-weighted average' => 'Media centrale ponderata',
'Multi-segment' => 'Multi zona',
},
},
'MeteringMode3' => {
PrintConv => {
'Center-weighted average' => 'Media centrale ponderata',
'Multi-segment' => 'Multi zona',
},
},
'MeteringTime' => {
PrintConv => {
'No Limit' => 'Nessun limite',
},
},
'MinFocalLength' => 'Lunghezza focale minima',
'MinSampleValue' => 'Minimo valore campioni',
'MiniatureFilterOrientation' => {
PrintConv => {
'Horizontal' => 'Orizzontale',
'Vertical' => 'Verticale',
},
},
'MinoltaQuality' => {
Description => 'Qualità',
PrintConv => {
'Normal' => 'Normale',
},
},
'MirrorLockup' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'ModeNumber' => 'Numero modo',
'Model' => 'Nome modello fotocamera',
'Model2' => 'Modello 2',
'ModelReleaseStatus' => {
PrintConv => {
'None' => 'Nessuno',
'Not Applicable' => 'Non applicabile',
},
},
'ModelingFlash' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ModifiedPictureStyle' => {
PrintConv => {
'Landscape' => 'Orizzontale',
'None' => 'Nessuno',
'Portrait' => 'Verticale',
},
},
'ModifiedSaturation' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ModifiedSharpnessFreq' => {
PrintConv => {
'Low' => 'Basso',
'n/a' => 'n/d',
},
},
'ModifiedToneCurve' => {
PrintConv => {
'Manual' => 'Manuale',
},
},
'ModifiedWhiteBalance' => {
PrintConv => {
'Cloudy' => 'Nuvoloso',
'Daylight' => 'Luce del giorno',
'Daylight Fluorescent' => 'Fluorescente a luce del giorno',
'Fluorescent' => 'Fluorescente',
'Shade' => 'Ombrato',
'Tungsten' => 'Tungsteno (luce incandescente)',
},
},
'ModifyDate' => 'Data modifica',
'MoireFilter' => {
Description => 'Filtro moire',
PrintConv => {
'Off' => 'Spento',
},
},
'MonitorDisplayOff' => {
PrintConv => {
'Manual' => 'Manuale',
},
},
'MonochromeFilterEffect' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Orange' => 'Arancio',
'Red' => 'Rosso',
'Yellow' => 'Giallo',
},
},
'MonochromeLinear' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'MonochromeToning' => {
PrintConv => {
'None' => 'Nessuno',
},
},
'MonochromeToningEffect' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Purple' => 'Porpora',
'Sepia' => 'Seppia',
},
},
'MultiBurstMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'MultiControllerWhileMetering' => {
PrintConv => {
'Off' => 'Spento',
},
},
'MultiExposure' => 'Dati Esposizione Multipla',
'MultiExposureAutoGain' => {
Description => 'Guadagno Automatico Esposizione Multipla',
PrintConv => {
'Off' => 'Spento',
},
},
'MultiExposureMode' => {
Description => 'Modo Esposizione Multipla',
PrintConv => {
'Off' => 'Spento',
},
},
'MultiExposureShots' => 'Scatti Esposizione Multipla',
'MultiExposureVersion' => 'Versione Dati Esposizione Multipla',
'MultiFrameNoiseReduction' => {
Description => 'Riduz. distur. su più fotogr.',
PrintConv => {
'None' => 'Nessuno',
'Off' => 'Spento',
'On' => 'Attivata',
'n/a' => 'n/d',
},
},
'MultiFunctionLock' => {
PrintConv => {
'Off' => 'Spento',
},
},
'MultiProfiles' => {
Description => 'Profili multipli',
PrintConv => {
'JBIG2 Profile M' => 'JBIG2 TIFF FX',
'N Layer Profile M' => 'Livello N profilo M',
'Profile C' => 'Profilo C',
'Profile F' => 'Profilo F',
'Profile J' => 'Profilo J',
'Profile L' => 'Profilo L',
'Profile M' => 'Profilo M',
'Profile S' => 'Profilo S',
'Profile T' => 'Profilo T',
'Resolution/Image Width' => 'Risoluzione/larghezza immagine',
'Shared Data' => 'Dati condivisi',
},
},
'MultiSelectorLiveView' => {
PrintConv => {
'Not Used' => 'Non usato',
'Reset' => 'Reimposta',
'Zoom On/Off' => 'Zoon sì/no',
},
},
'MultiSelectorPlaybackMode' => {
PrintConv => {
'Choose Folder' => 'Seleziona cartella',
'Thumbnail On/Off' => 'Thumbnail sì/no',
'Zoom On/Off' => 'Zoon sì/no',
},
},
'MultiSelectorShootMode' => {
PrintConv => {
'Not Used' => 'Non usato',
},
},
'MultipleExposureMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'MultipleExposureSet' => {
PrintConv => {
'Off' => 'Spento',
},
},
'MusicCDIdentifier' => 'Identificativo CD musicale',
'MusicianCredits' => 'Info sul musicista',
'Mute' => {
PrintConv => {
'Off' => 'Spento',
},
},
'MyColorMode' => {
PrintConv => {
'Off' => 'Spento',
'Sepia' => 'Seppia',
'Vivid' => 'Vivace',
'Vivid Blue' => 'Blu vivace',
'Vivid Green' => 'Verde vivace',
},
},
'NDFilter' => {
PrintConv => {
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'NEFCompression' => {
Description => 'Compressione RAW',
PrintConv => {
'Lossless' => 'Senza perdita',
'Uncompressed' => 'Non compresso',
},
},
'Name' => 'Nome',
'NamedColor2' => 'Colore Chiamato 2',
'NativeDisplayInfo' => 'Info Display Nativo',
'NeutralDensityFilter' => {
PrintConv => {
'Off' => 'Spento',
},
},
'NikonCaptureData' => 'Dati Nikon Capture',
'NikonCaptureVersion' => 'Versione Nikon Capture',
'NoMemoryCard' => 'Scheda di memoria assente',
'Noise' => 'Rumore',
'NoiseFilter' => {
Description => 'Filtro rumore',
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'NoiseProfile' => 'Profilo rumore',
'NoiseReduction' => {
Description => 'Riduzione rumore',
PrintConv => {
'Low' => 'Basso',
'Low (-1)' => 'Basso (-1)',
'Noise Filter' => 'Filtro rumore',
'Noise Reduction' => 'Riduzione rumore',
'Normal' => 'Normale',
'Off' => 'Spento',
'Strong' => 'Forte',
'n/a' => 'n/d',
},
},
'NoiseReduction2' => {
Description => 'Riduzione rumore 2',
PrintConv => {
'Noise Filter' => 'Filtro rumore',
'Noise Reduction' => 'Riduzione rumore',
},
},
'NoiseReductionApplied' => 'Riduzione rumore applicata',
'NoiseReductionIntensity' => 'Intensità riduzione rumore',
'NoiseReductionMethod' => {
Description => 'Metodo riduzione rumore',
PrintConv => {
'Faster' => 'Più veloce',
},
},
'NoiseReductionMode' => {
Description => 'Modo riduzione rumore',
PrintConv => {
'Off' => 'Spento',
},
},
'NoiseReductionValue' => 'Valore riduzione rumore',
'Notes' => 'Note',
'Now' => 'Adesso',
'NumChannels' => 'Numero canali',
'NumSampleFrames' => 'Numero fotogrammi campionamento',
'NumberOfFocusPoints' => {
PrintConv => {
'11 Points' => '11 punti',
},
},
'NumberofInks' => 'Numero di inchiostri',
'OKButton' => {
PrintConv => {
'Not Used' => 'Non usato',
'Off' => 'Spento',
},
},
'OPIProxy' => {
Description => 'Proxy OPI',
PrintConv => {
'Higher resolution image does not exist' => 'Immagine a risoluzione maggiore non esistente',
'Higher resolution image exists' => 'Immagine a risoluzione maggiore esistente',
},
},
'OSVersion' => 'Versione OS',
'Object' => 'Oggetto',
'ObjectAttributeReference' => 'Genere intellettuale',
'ObjectCycle' => {
Description => 'Ciclo oggetto',
PrintConv => {
'Both Morning and Evening' => 'Entrambi',
'Evening' => 'Sera',
'Morning' => 'Mattino',
},
},
'ObjectFileType' => {
Description => 'Tipo file oggetto',
PrintConv => {
'Core file' => 'File core',
'Demand paged executable' => 'Eseguibile paginato a richiesta',
'Dynamic link editor' => 'Editor con collegamenti dinamici',
'Dynamic link library' => 'Libreria a collegamento dinamico',
'Dynamically bound bundle' => 'Pacchetto incorporato dinamicamente',
'Dynamically bound shared library' => 'Libreria condivisa collegata dinamicamente',
'Executable application' => 'Applicazione eseguibile',
'Executable file' => 'File eseguibile',
'Fixed VM shared library' => 'Libreria fissa VM condivisa',
'Font' => 'Carattere',
'None' => 'Nessuno',
'Preloaded executable' => 'Eseguibile precaricato',
'Relocatable file' => 'File rilocabile',
'Relocatable object' => 'Oggetto rilocabile',
'Shared library stub for static linking' => 'Stub libreria condivisa per il collegamenti statici',
'Shared object file' => 'File con oggetti condivisi',
'Static library' => 'Libreria statica',
'Unknown' => 'Sconosciuto',
},
},
'ObjectName' => 'Titolo',
'ObjectPreviewFileFormat' => {
PrintConv => {
'Ritzaus Bureau NITF version (RBNITF DTD)' => 'Versione Ritzaus Bureau NITF (RBNITF DTD)',
},
},
'ObjectTypeReference' => 'Riferimento Tipo Oggetto',
'OldSubfileType' => {
Description => 'Vecchio tipo sotto-file',
PrintConv => {
'Full-resolution image' => 'Immagine con risoluzione originale',
'Reduced-resolution image' => 'Immagine a risoluzione ridotta',
'Single page of multi-page image' => 'Singola pagina di un\'immagine multi-pagina',
},
},
'OneTouchWB' => {
PrintConv => {
'Off' => 'Spento',
},
},
'OpEndPic' => 'Fine immagine',
'OpcodeList1' => 'Lista opcode 1',
'OpcodeList2' => 'Lista opcode 2',
'OpcodeList3' => 'Lista opcode 3',
'OpticalZoomMode' => {
PrintConv => {
'Extended' => 'Esteso',
},
},
'OpticalZoomOn' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Opto-ElectricConvFactor' => 'Fattore di conversione optoelettrica',
'Orientation' => {
Description => 'Orientamento',
PrintConv => {
'Horizontal (normal)' => 'Orizzontale (normale)',
'Mirror horizontal' => 'Rifletti orizzontalmente',
'Mirror horizontal and rotate 270 CW' => 'Rifletti orizzontalmente e ruota di 270° in senso orario',
'Mirror horizontal and rotate 90 CW' => 'Rifletti orizzontalmente e ruota di 90° in senso orario',
'Mirror vertical' => 'Rifletti verticalmente',
'Rotate 180' => 'Ruota di 180°',
'Rotate 270 CW' => 'Ruota di 270° in senso orario',
'Rotate 90 CW' => 'Ruota di 90° senso orario',
'Tiled' => 'Tassellato',
},
},
'Origin' => 'Origine',
'OriginCode' => 'Codice origine',
'OriginPlatform' => {
Description => 'Piattaforma origine',
PrintConv => {
'Print' => 'Stampa',
},
},
'OriginalAlbum' => 'Album originale',
'OriginalAlbumTitle' => 'Titolo album originale',
'OriginalArtist' => 'Artista originale',
'OriginalFileName' => 'Nome file originale',
'OriginalLyricist' => 'Paroliere originale',
'OriginalMedia' => {
PrintConv => {
'False' => 'Falso',
},
},
'OriginalRawFileData' => 'Dati file raw originale',
'OriginalRawFileDigest' => 'Sommario file raw originale',
'OriginalRawFileName' => 'Nome file raw originale',
'OriginalReleaseTime' => 'Ora di rilascio originale',
'OriginalReleaseYear' => 'Anno di rilascio originale',
'OriginalTransmissionReference' => 'ID Lavoro',
'OriginatingProgram' => 'Programma d\'origine',
'OtherCodecDescription' => 'Descrizione altro codec',
'OtherCodecName' => 'Nome altro codec',
'OtherImageLength' => 'Altra lunghezza immagine',
'OtherImageStart' => 'Altro inizio immagine',
'OwnerID' => 'ID proprietario',
'OwnerName' => 'Nome proprietario',
'PEFVersion' => 'Versione PEF',
'PEType' => 'Tipo PE',
'PackingMethod' => {
PrintConv => {
'Fast' => 'Veloce',
'Fastest' => 'Massimamente veloce',
'Normal' => 'Normale',
},
},
'PageName' => 'Nome pagina',
'PageNumber' => 'Numero pagina',
'PanOrientation' => {
PrintConv => {
'[unused]' => '[non usato]',
},
},
'PanasonicRawVersion' => 'Versione raw Panasonic',
'PanasonicTitle' => 'Titolo Panasonic',
'PanasonicTitle2' => 'Titolo Panasonic 2',
'PanoramaSize3D' => {
Description => 'Dimensione panomara 3D',
PrintConv => {
'Wide' => 'Ampio',
'n/a' => 'n/d',
},
},
'PartOfSet' => 'Parte del gruppo',
'PaymentURL' => 'URL pagamento',
'PeakValue' => 'Valore di picco',
'PerformerSortOrder' => 'Ordinamento interprete',
'PeripheralLighting' => {
PrintConv => {
'Off' => 'Spento',
},
},
'PeripheralLightingSetting' => {
PrintConv => {
'Off' => 'Spento',
},
},
'PhaseDetectAF' => {
PrintConv => {
'Off' => 'Spento',
},
},
'PhotoEffect' => {
PrintConv => {
'Off' => 'Spento',
'Sepia' => 'Seppia',
'Vivid' => 'Vivace',
},
},
'PhotoEffects' => {
PrintConv => {
'Off' => 'Spento',
},
},
'PhotoEffectsType' => {
PrintConv => {
'None' => 'Nessuno',
'Sepia' => 'Seppia',
'Tinted' => 'Tinteggiato',
},
},
'PhotoInfoPlayback' => {
PrintConv => {
'Off' => 'Spento',
},
},
'PhotometricInterpretation' => {
Description => 'Interpretazione fotometrica',
PrintConv => {
'BlackIsZero' => 'Nero è zero',
'Color Filter Array' => 'Array filtro colore',
'Linear Raw' => 'Raw lineare',
'Pixar LogL' => 'Pixar LogLuv',
'Pixar LogLuv' => 'Pixar LogL',
'RGB Palette' => 'Tavolozza RGB',
'Transparency Mask' => 'Maschera trasparenza',
'WhiteIsZero' => 'Bianco è zero',
},
},
'PhotoshopFormat' => {
PrintConv => {
'Progressive' => 'Progressivo',
},
},
'Picture' => 'Immagine',
'PictureControl' => {
PrintConv => {
'Off' => 'Spento',
},
},
'PictureControlActive' => {
PrintConv => {
'Off' => 'Spento',
},
},
'PictureControlAdjust' => {
PrintConv => {
'Default Settings' => 'Impostazioni Predefinite',
'Full Control' => 'Controllo completo',
'Quick Adjust' => 'Regolazione rapida',
},
},
'PictureDescription' => 'Descrizione immagine',
'PictureEffect' => {
PrintConv => {
'Off' => 'Spento',
'Posterization' => 'Posterizzazione',
'Posterization B/W' => 'Posterizzazione B&N',
'Retro Photo' => 'Foto retrò',
},
},
'PictureFinish' => {
PrintConv => {
'Evening Scene' => 'Scena serale',
'Portrait' => 'Verticale',
},
},
'PictureFormat' => 'Formato immagine',
'PictureMIMEType' => 'MIME type immagine',
'PictureMode' => {
PrintConv => {
'1/2 EV steps' => 'Step 1/2 EV',
'1/3 EV steps' => 'Step 1/3 EV',
'Aperture-priority AE' => 'Priorità diaframma',
'Fireworks' => 'Fuochi artificiali',
'Fisheye' => 'Fish-eye',
'Flower' => 'Fiore',
'Forest' => 'Foresta',
'Green' => 'Verde',
'Kids' => 'Bambini',
'Landscape' => 'Orizzontale',
'Manual' => 'Manuale',
'No Flash' => 'No flash',
'Portrait' => 'Verticale',
'Program' => 'Programma',
'Program (HyP)' => 'Programma (HyP)',
'Program AE' => 'Programma AE',
'Purple' => 'Porpora',
'Quick Macro' => 'Macro veloce',
'Red' => 'Rosso',
'Sepia' => 'Seppia',
'Shutter speed priority AE' => 'Priorità otturatore AE',
'Sunset' => 'Tramonto',
'Text' => 'Testo',
'Vivid' => 'Vivace',
},
},
'PictureMode2' => {
PrintConv => {
'Aperture Priority' => 'Priorità diaframma',
'Manual' => 'Manuale',
'Program AE' => 'Programma AE',
'Scene Mode' => 'Modo scena',
'Shutter Speed Priority' => 'Priorità otturatore',
},
},
'PictureModeBWFilter' => {
PrintConv => {
'Green' => 'Verde',
'Orange' => 'Arancio',
'Red' => 'Rosso',
'Yellow' => 'Giallo',
'n/a' => 'n/d',
},
},
'PictureModeEffect' => {
PrintConv => {
'Low' => 'Basso',
'n/a' => 'n/d',
},
},
'PictureModeTone' => {
PrintConv => {
'Green' => 'Verde',
'Purple' => 'Porpora',
'Sepia' => 'Seppia',
'n/a' => 'n/d',
},
},
'PictureStyle' => {
PrintConv => {
'Landscape' => 'Orizzontale',
'None' => 'Nessuno',
'Portrait' => 'Verticale',
},
},
'PictureType' => {
Description => 'Tipo immagine',
PrintConv => {
'32x32 PNG Icon' => 'Icona PNG 32x32',
'Artist' => 'Artista',
'Back Cover' => 'Retrocopertina',
'Band Logo' => 'Logo band',
'Bright(ly) Colored Fish' => 'Pesci dai vivaci colori',
'Capture from Movie or Video' => 'Acquisizione da film o video',
'Composer' => 'Compositore',
'Conductor' => 'Direttore d\'orchestra',
'Front Cover' => 'Copertina',
'Illustration' => 'Illustrazione',
'Lead Artist' => 'Artista principale',
'Leaflet' => 'Volantino',
'Lyricist' => 'Paroliere',
'Other' => 'Altro',
'Other Icon' => 'Altra icona',
'Performance' => 'Interpretazione',
'Publisher Logo' => 'Logo editore',
'Recording Session' => 'Sessione registrazione',
'Recording Studio or Location' => 'Studio/luogo registrazione',
},
},
'PictureWizardMode' => {
PrintConv => {
'Forest' => 'Foresta',
'Landscape' => 'Orizzontale',
'Retro' => 'Retrò',
'Vivid' => 'Vivace',
'n/a' => 'n/d',
},
},
'PixelFormat' => {
Description => 'Formato pixel',
PrintConv => {
'112-bit 6 Channels Alpha' => '112-bit 6 canali trasparenza',
'112-bit 7 Channels' => '112-bit 7 canali',
'128-bit 7 Channels Alpha' => '128-bit 7 canali trasparenza',
'128-bit 8 Channels' => '128-bit 8 canali',
'128-bit PRGBA Float' => '128-bit PRGBA virgola mobile',
'128-bit RGB Float' => '128-bit RGB virgola mobile',
'128-bit RGBA Fixed Point' => '128-bit RGBA virgola fissa',
'128-bit RGBA Float' => '128-bit RGBA virgola mobile',
'144-bit 8 Channels Alpha' => '144-bit 8 canali trasparenza',
'16-bit Gray' => '16-bit grigio',
'16-bit Gray Half' => '16-bit grigio metà',
'24-bit 3 Channels' => '24-bit 3 canali',
'32-bit 3 Channels Alpha' => '32-bit 3 canali trasparenza',
'32-bit 4 Channels' => '32-bit 4 canali',
'32-bit Gray Fixed Point' => '32-bit punto grigio virgola fissa',
'32-bit Gray Float' => '32-bit punto grigio virgola mobile',
'40-bit 4 Channels Alpha' => '40-bit 4 canali trasparenza',
'40-bit 5 Channels' => '40-bit 5 canali',
'40-bit CMYK Alpha' => '40-bit CMYK trasparenza',
'48-bit 3 Channels' => '48-bit 3 canali',
'48-bit 5 Channels Alpha' => '48-bit 5 canali trasparenza',
'48-bit 6 Channels' => '48-bit 6 canali',
'48-bit RGB Fixed Point' => '48-bit RGB virgola fissa',
'48-bit RGB Half' => '48-bit RGB metà',
'56-bit 6 Channels Alpha' => '56-bit 6 canali trasparenza',
'56-bit 7 Channels' => '56-bit 7 canali',
'64-bit 3 Channels Alpha' => '64-bit 3 canali trasparenza',
'64-bit 4 Channels' => '64-bit 4 canali',
'64-bit 7 Channels Alpha' => '64-bit 7 canali trasparenza',
'64-bit 8 Channels' => '64-bit 8 canali',
'64-bit RGBA Fixed Point' => '64-bit RGBA virgola fissa',
'64-bit RGBA Half' => '64-bit RGBA mezzi toni',
'72-bit 8 Channels Alpha' => '72-bit 8 canali trasparenza',
'8-bit Gray' => '8-bit grigio',
'80-bit 4 Channels Alpha' => '80-bit 4 canali trasparenza',
'80-bit 5 Channels' => '80-bit 5 canali',
'80-bit CMYK Alpha' => '80-bit CMYK trasparenza',
'96-bit 5 Channels Alpha' => '96-bit 5 canali trasparenza',
'96-bit 6 Channels' => '96-bit 6 canali',
'96-bit RGB Fixed Point' => '96-bit RGB virgola fissa',
'Black & White' => 'Bianco e nero',
},
},
'PixelIntensityRange' => 'Intervallo intensità pixel',
'PixelMagicJBIGOptions' => 'Opzioni Pixel Magic JBIG',
'PixelScale' => 'Scala pixel',
'PixelUnits' => {
PrintConv => {
'Unknown' => 'Sconosciuto',
},
},
'PlanarConfiguration' => {
Description => 'Configurazione planare',
PrintConv => {
'Chunky' => 'Spezzettato',
'Planar' => 'Planare',
},
},
'PlayCounter' => 'Conteggio esecuzioni',
'PlayGap' => {
PrintConv => {
'No Gap' => 'Nessun salto',
},
},
'PlaylistDelay' => 'Attesa playlist',
'PortraitRefiner' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Position' => 'Posizione',
'PostScriptFontName' => 'Nome carattere PostScript',
'PostprocessingFunction' => 'Funzione post-processamento',
'PowerSource' => 'Fonte alimentazione',
'PowerUpTime' => 'Ora accensione',
'Predictor' => {
Description => 'Predittore',
PrintConv => {
'Horizontal differencing' => 'Differenziazione orizzontale',
'None' => 'Nessuno',
},
},
'PredictorColumns' => 'Colonne predittore',
'PredictorConstants' => 'Costanti predittore',
'PredictorRows' => 'Righe predittore',
'PreferredFamily' => 'Famiglia preferita',
'PreferredSubfamily' => 'Sotto-famiglia preferita',
'PreferredVolume' => 'Volume preferito',
'Prefs' => 'Preferenze',
'PresetWhiteBalance' => {
PrintConv => {
'Camera Setting' => 'Impostazioni fotocamera',
'Fluorescent' => 'Fluorescente',
'Shade' => 'Ombrato',
},
},
'PrevFileName' => 'Nome file precedente',
'PrevSize' => 'Dimensione precedente',
'PrevUID' => 'UID precedente',
'Preview' => 'Anteprima',
'Preview0' => 'Anteprima 0 ',
'Preview1' => 'Anteprima 1 ',
'Preview2' => 'Anteprima 2',
'PreviewApplicationName' => 'Nome applicazione anteprima ',
'PreviewApplicationVersion' => 'Versione applicazione anteprima ',
'PreviewButton' => {
Description => 'Pulsante anteprima',
PrintConv => {
'Flash Off' => 'Flash spento',
'None' => 'Nessuno',
'Preview' => 'Anteprima',
'Virtual Horizon' => 'Orizzonte virtuale',
},
},
'PreviewButtonPlusDials' => {
PrintConv => {
'Choose Image Area' => 'Seleziona area immagine',
'None' => 'Nessuno',
},
},
'PreviewColorSpace' => {
Description => 'Spazio colore anteprima',
PrintConv => {
'Gray Gamma 2.2' => 'Gamma grigio 2.2',
'Unknown' => 'Sconosciuto',
},
},
'PreviewDate' => 'Data anteprima',
'PreviewDateTime' => 'Data ora anteprima',
'PreviewDuration' => 'Durata anteprima',
'PreviewIFD' => 'Anteprima Puntatore IFD',
'PreviewImage' => 'Immagine anteprima',
'PreviewImageBorders' => 'Bordi immagine anteprima',
'PreviewImageData' => 'Altezza immagine anteprima',
'PreviewImageHeight' => 'Altezza immagine anteprima',
'PreviewImageLength' => 'Lunghezza immagine anteprima',
'PreviewImageName' => 'Nome immagine anteprima',
'PreviewImageSize' => 'Dimensioni immagine anteprima',
'PreviewImageStart' => 'Inizio immagine anteprima',
'PreviewImageType' => 'Tipo immagine anteprima',
'PreviewImageValid' => {
Description => 'Immagine anteprima valida',
PrintConv => {
'Yes' => 'Sì',
},
},
'PreviewImageWidth' => 'Larghezza immagine anteprima',
'PreviewInfo' => 'Info anteprima',
'PreviewQuality' => {
Description => 'Qualtià anteprima',
PrintConv => {
'Normal' => 'Normale',
},
},
'PreviewSettingsDigest' => 'Sommario impostazioni anteprima',
'PreviewSettingsName' => 'Nome impostazioni anteprima',
'PrimaryAFPoint' => {
PrintConv => {
'(none)' => '(nessuno)',
'Bottom' => 'Basso',
'C6 (Center)' => 'C6 (Centro)',
'Center' => 'Centro',
'Far Left' => 'Tutto a sinistra',
'Far Right' => 'Tutto a destra',
'Lower-left' => 'Inferiore sinistro',
'Lower-right' => 'Inferiore destro',
'Mid-left' => 'Centro/sinistra',
'Mid-right' => 'Centro/destra',
'Top' => 'Alto',
'Upper-left' => 'Superiore sinistro',
'Upper-right' => 'Superiore destro',
},
},
'PrimaryChromaticities' => 'Cromatismo dei colori primari',
'PrimaryPlatform' => 'Piattaforma primaria',
'PrintIM' => 'Stampa Image Matching',
'PrintIMVersion' => 'Versione PrintIM',
'PrintPriority' => 'Priorità stampa',
'PrintQuality' => 'Qualità stampa',
'PrintScale' => 'Scala stampa',
'PrinterName' => 'Nome stampante',
'Priority' => 'Priorità',
'PrivateBuild' => 'Compilazione privata',
'ProcessingSoftware' => 'Software di elaborazione',
'ProducedNotice' => 'Note prodotte',
'Product' => 'Prodotto',
'ProductDescription' => 'Descrizione prodotto',
'ProductID' => 'ID prodotto',
'ProductName' => 'Nome prodotto',
'ProductVersion' => 'Versione prodotto',
'ProductVersionNumber' => 'Numero di versione prodotto',
'Profession' => 'Professione',
'Profile' => 'Profilo',
'ProfileAndLevel' => 'Profilo e livello',
'ProfileCMMType' => 'Tipo profilo CMM',
'ProfileCalibrationSig' => 'Segn calibrazione profilo',
'ProfileClass' => {
Description => 'Classe profilo',
PrintConv => {
'Abstract Profile' => 'Profilo Astratto',
'ColorSpace Conversion Profile' => 'Profilo Conversione Spazio Colore',
'DeviceLink Profile' => 'Profilo Dispositivo di Collegamento',
'Display Device Profile' => 'Profilo Dispositivo Visualizzazione',
'Input Device Profile' => 'Profilo dispositivo di Input',
'NamedColor Profile' => 'Profilo Colore Chiamato',
'Nikon Input Device Profile (NON-STANDARD!)' => 'Profilo Nikon ("nkpf")',
'Output Device Profile' => 'Profilo Dispositivo Output',
},
},
'ProfileConnectionSpace' => 'Spazio connessione profilo',
'ProfileCopyright' => 'Copyright profilo',
'ProfileCreator' => 'Autore profilo',
'ProfileDateTime' => 'Data/ora profilo',
'ProfileDescription' => 'Descrizione del Profilo',
'ProfileDescriptionML' => 'Descrizione profilo multilinguaggio.',
'ProfileEmbedPolicy' => {
Description => 'Politica incorporamento profilo',
PrintConv => {
'Allow Copying' => 'Permetti la copia',
'Embed if Used' => 'Incorpora se usato',
'Never Embed' => 'Non incorporare mai',
'No Restrictions' => 'Nessuna restrizione',
},
},
'ProfileFileSignature' => 'Firma file profilo',
'ProfileID' => {
Description => 'ID profilo',
PrintConv => {
'Not Specified' => 'Non specificato',
},
},
'ProfileName' => 'Nome profilo',
'ProfileSequenceDesc' => 'Descrizione della Sequenza del Profilo',
'ProfileType' => {
Description => 'Tipo profilo',
PrintConv => {
'Unspecified' => 'Non specificato',
},
},
'ProfileVersion' => 'Versione profilo',
'ProgID' => 'ID programma',
'ProgramISO' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ProgramKind' => 'Tipo di programma',
'ProgramLine' => {
PrintConv => {
'Normal' => 'Normale',
},
},
'ProgramMode' => {
Description => 'Modo programma',
PrintConv => {
'None' => 'Nessuno',
'Portrait' => 'Verticale',
'Sunset' => 'Tramonto',
'Text' => 'Testo',
},
},
'ProgramName' => 'Nome programma',
'ProgramNumber' => 'Numero programma',
'ProgramVersion' => 'Versione programma',
'ProgrammingGroupKind' => 'Tipo gruppo programmazione',
'ProgrammingGroupTitle' => 'Titolo gruppo programmazione',
'ProgressiveScans' => 'Scansioni progressive',
'Project' => 'Progetto',
'ProjectName' => 'Nome progetto',
'ProjectNumber' => 'Numero progetto',
'ProjectRef' => 'Rif progetto',
'ProjectSet' => 'Set progetto',
'ProjectedCSType' => {
Description => 'Tipo CS proiettato',
PrintConv => {
'ETRS89 Poland CS2000 zone 5' => 'ETRS89 Poland CS2000 zona 5',
'ETRS89 Poland CS2000 zone 7' => 'ETRS89 Poland CS2000 zona 7',
'ETRS89 Poland CS2000 zone 8' => 'ETRS89 Poland CS2000 zona 8',
'PSAD56 UTM zone 17S' => 'PSAD56 UTM zona 17S',
'PSAD56 UTM zone 18N' => 'PSAD56 UTM zona 18N',
'PSAD56 UTM zone 18S' => 'PSAD56 UTM zona 18S',
'PSAD56 UTM zone 19N' => 'PSAD56 UTM zona 19N',
'PSAD56 UTM zone 19S' => 'PSAD56 UTM zona 19S',
'PSAD56 UTM zone 20N' => 'PSAD56 UTM zona 20N',
'PSAD56 UTM zone 20S' => 'PSAD56 UTM zona 20S',
'PSAD56 UTM zone 21N' => 'PSAD56 UTM zona 21N',
'Pulkovo Gauss zone 10' => 'Pulkovo Gauss zona 10',
'Pulkovo Gauss zone 11' => 'Pulkovo Gauss zona 11',
'Pulkovo Gauss zone 12' => 'Pulkovo Gauss zona 12',
'Pulkovo Gauss zone 13' => 'Pulkovo Gauss zona 13',
'Pulkovo Gauss zone 14' => 'Pulkovo Gauss zona 14',
'Pulkovo Gauss zone 15' => 'Pulkovo Gauss zona 15',
'Pulkovo Gauss zone 16' => 'Pulkovo Gauss zona 16',
'Pulkovo Gauss zone 17' => 'Pulkovo Gauss zona 17',
'Pulkovo Gauss zone 18' => 'Pulkovo Gauss zona 18',
'Pulkovo Gauss zone 19' => 'Pulkovo Gauss zona 19',
'Pulkovo Gauss zone 20' => 'Pulkovo Gauss zona 20',
'Pulkovo Gauss zone 21' => 'Pulkovo Gauss zona 21',
'Pulkovo Gauss zone 22' => 'Pulkovo Gauss zona 22',
'Pulkovo Gauss zone 23' => 'Pulkovo Gauss zona 23',
'Pulkovo Gauss zone 24' => 'Pulkovo Gauss zona 24',
'Pulkovo Gauss zone 25' => 'Pulkovo Gauss zona 25',
'Pulkovo Gauss zone 26' => 'Pulkovo Gauss zona 26',
'Pulkovo Gauss zone 27' => 'Pulkovo Gauss zona 27',
'Pulkovo Gauss zone 28' => 'Pulkovo Gauss zona 28',
'Pulkovo Gauss zone 29' => 'Pulkovo Gauss zona 29',
'Pulkovo Gauss zone 30' => 'Pulkovo Gauss zona 30',
'Pulkovo Gauss zone 31' => 'Pulkovo Gauss zona 31',
'Pulkovo Gauss zone 32' => 'Pulkovo Gauss zona 32',
'Pulkovo Gauss zone 4' => 'Pulkovo Gauss zona 4',
'Pulkovo Gauss zone 5' => 'Pulkovo Gauss zona 5',
'Pulkovo Gauss zone 6' => 'Pulkovo Gauss zona 6',
'Pulkovo Gauss zone 7' => 'Pulkovo Gauss zona 7',
'Pulkovo Gauss zone 8' => 'Pulkovo Gauss zona 8',
'Pulkovo Gauss zone 9' => 'Pulkovo Gauss zona 9',
'Sudan UTM zone 35N' => 'Sudan UTM zona 35N',
'Sudan UTM zone 36N' => 'Sudan UTM zona 36N',
},
},
'Projection' => 'Proiezione',
'ProjectionAlgorithm' => 'Algoritmo proiezione',
'ProjectionAngle' => 'Angolo proiezione',
'Projects' => 'Progetti',
'Properties' => 'Proprietà',
'PropertyReleaseStatus' => {
PrintConv => {
'None' => 'Nessuno',
'Not Applicable' => 'Non applicabile',
},
},
'Protect' => 'Proteggi',
'Protected' => 'Protetto',
'ProtocolName' => 'Nome protocollo',
'Province-State' => 'Provincia/Stato',
'PublicationDate' => 'Data pubblicazione',
'PublicationName' => 'Nome pubblicazione',
'PublicationSets' => 'Set pupplicazione',
'Publisher' => 'Editore',
'PublisherURL' => 'URL editore',
'PurchaseDate' => 'Data acquisto',
'PurchaserAccountName' => 'Nome account acquirente',
'PurchaserAccountNumber' => 'Numero account acquirente',
'PurchaserIdentificationKind' => 'Tipo identificazione acquirente',
'PurchaserIdentificationValue' => 'Valore identificazione acquirente',
'PurchasingDepartment' => 'Reparto acquirente',
'PurchasingOrganizationName' => 'Nome organizzazione acquirente',
'Purpose' => 'Scopo',
'PurposeOfReferenceCodeSequence' => 'Scopo sequenza codici riferimento',
'PyramidLevels' => 'Livelli piramite',
'Quality' => {
Description => 'Qualità',
PrintConv => {
'Compressed RAW' => 'RAW compresso',
'Compressed RAW + JPEG' => 'RAW+JPEG compresso',
'Extra Fine' => 'Extra fine',
'Low' => 'Basso',
'Normal' => 'Normale',
'RAW + JPEG' => 'RAW+JPEG',
'n/a' => 'n/d',
},
},
'QualityControlImage' => 'Immagine controllo qualità',
'QualityFlag' => 'Indicatore qualità',
'QualityMode' => {
Description => 'Modo qualità',
PrintConv => {
'Normal' => 'Normale',
},
},
'Quantity' => 'Quantità',
'QuantitySequence' => 'Sequenza quantità',
'QuantizationDefault' => 'Default quantizzazione',
'QuantizationMethod' => 'Metodo quantizzazione',
'QueueStatus' => 'Stato coda',
'QuickAdjust' => 'Regolazione rapida',
'QuickControlDialInMeter' => {
PrintConv => {
'ISO speed' => 'Velocità ISO',
},
},
'QuickEdit' => 'Modifica velote',
'QuickMaskInfo' => 'Info maschera veloce',
'QuickShot' => {
Description => 'Scatto veloce',
PrintConv => {
'Off' => 'Spento',
},
},
'R2ABlueCtbl00' => 'R2 A blu Stbl 30',
'R2ABlueCtbl01' => 'R2 A blu Stbl 29',
'R2ABlueCtbl02' => 'R2 A blu Stbl 28',
'R2ABlueCtbl03' => 'R2 A blu Stbl 27',
'R2ABlueCtbl04' => 'R2 A blu Stbl 26',
'R2ABlueCtbl05' => 'R2 A blu Stbl 25',
'R2ABlueCtbl06' => 'R2 A blu Stbl 24',
'R2ABlueCtbl07' => 'R2 A blu Stbl 23',
'R2ABlueCtbl08' => 'R2 A blu Stbl 22',
'R2ABlueCtbl09' => 'R2 A blu Stbl 21',
'R2ABlueCtbl10' => 'R2 A blu Stbl 20',
'R2ABlueCtbl11' => 'R2 A blu Stbl 19',
'R2ABlueCtbl12' => 'R2 A blu Stbl 18',
'R2ABlueCtbl13' => 'R2 A blu Stbl 17',
'R2ABlueCtbl14' => 'R2 A blu Stbl 16',
'R2ABlueCtbl15' => 'R2 A blu Stbl 15',
'R2ABlueCtbl16' => 'R2 A blu Stbl 14',
'R2ABlueCtbl17' => 'R2 A blu Stbl 13',
'R2ABlueCtbl18' => 'R2 A blu Stbl 12',
'R2ABlueCtbl19' => 'R2 A blu Stbl 11',
'R2ABlueCtbl20' => 'R2 A blu Stbl 10',
'R2ABlueCtbl21' => 'R2 A blu Stbl 09',
'R2ABlueCtbl22' => 'R2 A blu Stbl 08',
'R2ABlueCtbl23' => 'R2 A blu Stbl 07',
'R2ABlueCtbl24' => 'R2 A blu Stbl 06',
'R2ABlueCtbl25' => 'R2 A blu Stbl 05',
'R2ABlueCtbl26' => 'R2 A blu Stbl 04',
'R2ABlueCtbl27' => 'R2 A blu Stbl 03',
'R2ABlueCtbl28' => 'R2 A blu Stbl 02',
'R2ABlueCtbl29' => 'R2 A blu Stbl 01',
'R2ABlueCtbl30' => 'R2 A blu Stbl 00',
'R2ABlueCtbl31' => 'R2 A blu Ctbl 31',
'R2ABlueStbl00' => 'R2 A blu Ctbl 30',
'R2ABlueStbl01' => 'R2 A blu Ctbl 29',
'R2ABlueStbl02' => 'R2 A blu Ctbl 28',
'R2ABlueStbl03' => 'R2 A blu Ctbl 27',
'R2ABlueStbl04' => 'R2 A blu Ctbl 26',
'R2ABlueStbl05' => 'R2 A blu Ctbl 25',
'R2ABlueStbl06' => 'R2 A blu Ctbl 24',
'R2ABlueStbl07' => 'R2 A blu Ctbl 23',
'R2ABlueStbl08' => 'R2 A blu Ctbl 22',
'R2ABlueStbl09' => 'R2 A blu Ctbl 21',
'R2ABlueStbl10' => 'R2 A blu Ctbl 20',
'R2ABlueStbl11' => 'R2 A blu Ctbl 19',
'R2ABlueStbl12' => 'R2 A blu Ctbl 18',
'R2ABlueStbl13' => 'R2 A blu Ctbl 17',
'R2ABlueStbl14' => 'R2 A blu Ctbl 16',
'R2ABlueStbl15' => 'R2 A blu Ctbl 15',
'R2ABlueStbl16' => 'R2 A blu Ctbl 14',
'R2ABlueStbl17' => 'R2 A blu Ctbl 13',
'R2ABlueStbl18' => 'R2 A blu Ctbl 12',
'R2ABlueStbl19' => 'R2 A blu Ctbl 11',
'R2ABlueStbl20' => 'R2 A blu Ctbl 10',
'R2ABlueStbl21' => 'R2 A blu Ctbl 09',
'R2ABlueStbl22' => 'R2 A blu Ctbl 08',
'R2ABlueStbl23' => 'R2 A blu Ctbl 07',
'R2ABlueStbl24' => 'R2 A blu Ctbl 06',
'R2ABlueStbl25' => 'R2 A blu Ctbl 05',
'R2ABlueStbl26' => 'R2 A blu Ctbl 04',
'R2ABlueStbl27' => 'R2 A blu Ctbl 03',
'R2ABlueStbl28' => 'R2 A blu Ctbl 02',
'R2ABlueStbl29' => 'R2 A blu Ctbl 01',
'R2ABlueStbl30' => 'R2 A blu Ctbl 00',
'R2ABlueStbl31' => 'R2 A blu Stbl 31',
'R2AGreenCtbl00' => 'R2 A verde Ctbl 00',
'R2AGreenCtbl01' => 'R2 A verde Ctbl 01',
'R2AGreenCtbl02' => 'R2 A verde Ctbl 02',
'R2AGreenCtbl03' => 'R2 A verde Ctbl 03',
'R2AGreenCtbl04' => 'R2 A verde Ctbl 04',
'R2AGreenCtbl05' => 'R2 A verde Ctbl 05',
'R2AGreenCtbl06' => 'R2 A verde Ctbl 06',
'R2AGreenCtbl07' => 'R2 A verde Ctbl 07',
'R2AGreenCtbl08' => 'R2 A verde Ctbl 08',
'R2AGreenCtbl09' => 'R2 A verde Ctbl 09',
'R2AGreenCtbl10' => 'R2 A verde Ctbl 10',
'R2AGreenCtbl11' => 'R2 A verde Ctbl 11',
'R2AGreenCtbl12' => 'R2 A verde Ctbl 12',
'R2AGreenCtbl13' => 'R2 A verde Ctbl 13',
'R2AGreenCtbl14' => 'R2 A verde Ctbl 14',
'R2AGreenCtbl15' => 'R2 A verde Ctbl 15',
'R2AGreenCtbl16' => 'R2 A verde Ctbl 16',
'R2AGreenCtbl17' => 'R2 A verde Ctbl 17',
'R2AGreenCtbl18' => 'R2 A verde Ctbl 18',
'R2AGreenCtbl19' => 'R2 A verde Ctbl 19',
'R2AGreenCtbl20' => 'R2 A verde Ctbl 20',
'R2AGreenCtbl21' => 'R2 A verde Ctbl 21',
'R2AGreenCtbl22' => 'R2 A verde Ctbl 22',
'R2AGreenCtbl23' => 'R2 A verde Ctbl 23',
'R2AGreenCtbl24' => 'R2 A verde Ctbl 24',
'R2AGreenCtbl25' => 'R2 A verde Ctbl 25',
'R2AGreenCtbl26' => 'R2 A verde Ctbl 26',
'R2AGreenCtbl27' => 'R2 A verde Ctbl 27',
'R2AGreenCtbl28' => 'R2 A verde Ctbl 28',
'R2AGreenCtbl29' => 'R2 A verde Ctbl 29',
'R2AGreenCtbl30' => 'R2 A verde Ctbl 30',
'R2AGreenCtbl31' => 'R2 A verde Ctbl 31',
'R2AGreenStbl00' => 'R2 A verde Stbl 00',
'R2AGreenStbl01' => 'R2 A verde Stbl 01',
'R2AGreenStbl02' => 'R2 A verde Stbl 02',
'R2AGreenStbl03' => 'R2 A verde Stbl 03',
'R2AGreenStbl04' => 'R2 A verde Stbl 04',
'R2AGreenStbl05' => 'R2 A verde Stbl 05',
'R2AGreenStbl06' => 'R2 A verde Stbl 06',
'R2AGreenStbl07' => 'R2 A verde Stbl 07',
'R2AGreenStbl08' => 'R2 A verde Stbl 08',
'R2AGreenStbl09' => 'R2 A verde Stbl 09',
'R2AGreenStbl10' => 'R2 A verde Stbl 10',
'R2AGreenStbl11' => 'R2 A verde Stbl 11',
'R2AGreenStbl12' => 'R2 A verde Stbl 12',
'R2AGreenStbl13' => 'R2 A verde Stbl 13',
'R2AGreenStbl14' => 'R2 A verde Stbl 14',
'R2AGreenStbl15' => 'R2 A verde Stbl 15',
'R2AGreenStbl16' => 'R2 A verde Stbl 16',
'R2AGreenStbl17' => 'R2 A verde Stbl 17',
'R2AGreenStbl18' => 'R2 A verde Stbl 18',
'R2AGreenStbl19' => 'R2 A verde Stbl 19',
'R2AGreenStbl20' => 'R2 A verde Stbl 20',
'R2AGreenStbl21' => 'R2 A verde Stbl 21',
'R2AGreenStbl22' => 'R2 A verde Stbl 22',
'R2AGreenStbl23' => 'R2 A verde Stbl 23',
'R2AGreenStbl24' => 'R2 A verde Stbl 24',
'R2AGreenStbl25' => 'R2 A verde Stbl 25',
'R2AGreenStbl26' => 'R2 A verde Stbl 26',
'R2AGreenStbl27' => 'R2 A verde Stbl 27',
'R2AGreenStbl28' => 'R2 A verde Stbl 28',
'R2AGreenStbl29' => 'R2 A verde Stbl 29',
'R2AGreenStbl30' => 'R2 A verde Stbl 30',
'R2AGreenStbl31' => 'R2 A verde Stbl 31',
'R2AHeight' => 'R2 A altezza',
'R2AIntervals' => 'R2 A intervalli',
'R2ARedCtbl00' => 'R2 A rosso Ctbl 00',
'R2ARedCtbl01' => 'R2 A rosso Ctbl 01',
'R2ARedCtbl02' => 'R2 A rosso Ctbl 02',
'R2ARedCtbl03' => 'R2 A rosso Ctbl 03',
'R2ARedCtbl04' => 'R2 A rosso Ctbl 04',
'R2ARedCtbl05' => 'R2 A rosso Ctbl 05',
'R2ARedCtbl06' => 'R2 A rosso Ctbl 06',
'R2ARedCtbl07' => 'R2 A rosso Ctbl 07',
'R2ARedCtbl08' => 'R2 A rosso Ctbl 08',
'R2ARedCtbl09' => 'R2 A rosso Ctbl 09',
'R2ARedCtbl10' => 'R2 A rosso Ctbl 10',
'R2ARedCtbl11' => 'R2 A rosso Ctbl 11',
'R2ARedCtbl12' => 'R2 A rosso Ctbl 12',
'R2ARedCtbl13' => 'R2 A rosso Ctbl 13',
'R2ARedCtbl14' => 'R2 A rosso Ctbl 14',
'R2ARedCtbl15' => 'R2 A rosso Ctbl 15',
'R2ARedCtbl16' => 'R2 A rosso Ctbl 16',
'R2ARedCtbl17' => 'R2 A rosso Ctbl 17',
'R2ARedCtbl18' => 'R2 A rosso Ctbl 18',
'R2ARedCtbl19' => 'R2 A rosso Ctbl 19',
'R2ARedCtbl20' => 'R2 A rosso Ctbl 20',
'R2ARedCtbl21' => 'R2 A rosso Ctbl 21',
'R2ARedCtbl22' => 'R2 A rosso Ctbl 22',
'R2ARedCtbl23' => 'R2 A rosso Ctbl 23',
'R2ARedCtbl24' => 'R2 A rosso Ctbl 24',
'R2ARedCtbl25' => 'R2 A rosso Ctbl 25',
'R2ARedCtbl26' => 'R2 A rosso Ctbl 26',
'R2ARedCtbl27' => 'R2 A rosso Ctbl 27',
'R2ARedCtbl28' => 'R2 A rosso Ctbl 28',
'R2ARedCtbl29' => 'R2 A rosso Ctbl 29',
'R2ARedCtbl30' => 'R2 A rosso Ctbl 30',
'R2ARedCtbl31' => 'R2 A rosso Ctbl 31',
'R2ARedStbl00' => 'R2 A rosso Stbl 00',
'R2ARedStbl01' => 'R2 A rosso Stbl 01',
'R2ARedStbl02' => 'R2 A rosso Stbl 02',
'R2ARedStbl03' => 'R2 A rosso Stbl 03',
'R2ARedStbl04' => 'R2 A rosso Stbl 04',
'R2ARedStbl05' => 'R2 A rosso Stbl 05',
'R2ARedStbl06' => 'R2 A rosso Stbl 06',
'R2ARedStbl07' => 'R2 A rosso Stbl 07',
'R2ARedStbl08' => 'R2 A rosso Stbl 08',
'R2ARedStbl09' => 'R2 A rosso Stbl 09',
'R2ARedStbl10' => 'R2 A rosso Stbl 10',
'R2ARedStbl11' => 'R2 A rosso Stbl 11',
'R2ARedStbl12' => 'R2 A rosso Stbl 12',
'R2ARedStbl13' => 'R2 A rosso Stbl 13',
'R2ARedStbl14' => 'R2 A rosso Stbl 14',
'R2ARedStbl15' => 'R2 A rosso Stbl 15',
'R2ARedStbl16' => 'R2 A rosso Stbl 16',
'R2ARedStbl17' => 'R2 A rosso Stbl 17',
'R2ARedStbl18' => 'R2 A rosso Stbl 18',
'R2ARedStbl19' => 'R2 A rosso Stbl 19',
'R2ARedStbl20' => 'R2 A rosso Stbl 20',
'R2ARedStbl21' => 'R2 A rosso Stbl 21',
'R2ARedStbl22' => 'R2 A rosso Stbl 22',
'R2ARedStbl23' => 'R2 A rosso Stbl 23',
'R2ARedStbl24' => 'R2 A rosso Stbl 24',
'R2ARedStbl25' => 'R2 A rosso Stbl 25',
'R2ARedStbl26' => 'R2 A rosso Stbl 26',
'R2ARedStbl27' => 'R2 A rosso Stbl 27',
'R2ARedStbl28' => 'R2 A rosso Stbl 28',
'R2ARedStbl29' => 'R2 A rosso Stbl 29',
'R2ARedStbl30' => 'R2 A rosso Stbl 30',
'R2ARedStbl31' => 'R2 A rosso Stbl 31',
'R2AWidth' => 'R2 A larghezza',
'R2D65BlueCtbl00' => 'R2 D65 blu Ctbl 00',
'R2D65BlueCtbl01' => 'R2 D65 blu Ctbl 01',
'R2D65BlueCtbl02' => 'R2 D65 blu Ctbl 02',
'R2D65BlueCtbl03' => 'R2 D65 blu Ctbl 03',
'R2D65BlueCtbl04' => 'R2 D65 blu Ctbl 04',
'R2D65BlueCtbl05' => 'R2 D65 blu Ctbl 05',
'R2D65BlueCtbl06' => 'R2 D65 blu Ctbl 06',
'R2D65BlueCtbl07' => 'R2 D65 blu Ctbl 07',
'R2D65BlueCtbl08' => 'R2 D65 blu Ctbl 08',
'R2D65BlueCtbl09' => 'R2 D65 blu Ctbl 09',
'R2D65BlueCtbl10' => 'R2 D65 blu Ctbl 10',
'R2D65BlueCtbl11' => 'R2 D65 blu Ctbl 11',
'R2D65BlueCtbl12' => 'R2 D65 blu Ctbl 12',
'R2D65BlueCtbl13' => 'R2 D65 blu Ctbl 13',
'R2D65BlueCtbl14' => 'R2 D65 blu Ctbl 14',
'R2D65BlueCtbl15' => 'R2 D65 blu Ctbl 15',
'R2D65BlueCtbl16' => 'R2 D65 blu Ctbl 16',
'R2D65BlueCtbl17' => 'R2 D65 blu Ctbl 17',
'R2D65BlueCtbl18' => 'R2 D65 blu Ctbl 18',
'R2D65BlueCtbl19' => 'R2 D65 blu Ctbl 19',
'R2D65BlueCtbl20' => 'R2 D65 blu Ctbl 20',
'R2D65BlueCtbl21' => 'R2 D65 blu Ctbl 21',
'R2D65BlueCtbl22' => 'R2 D65 blu Ctbl 22',
'R2D65BlueCtbl23' => 'R2 D65 blu Ctbl 23',
'R2D65BlueCtbl24' => 'R2 D65 blu Ctbl 24',
'R2D65BlueCtbl25' => 'R2 D65 blu Ctbl 25',
'R2D65BlueCtbl26' => 'R2 D65 blu Ctbl 26',
'R2D65BlueCtbl27' => 'R2 D65 blu Ctbl 27',
'R2D65BlueCtbl28' => 'R2 D65 blu Ctbl 28',
'R2D65BlueCtbl29' => 'R2 D65 blu Ctbl 29',
'R2D65BlueCtbl30' => 'R2 D65 blu Ctbl 30',
'R2D65BlueCtbl31' => 'R2 D65 blu Ctbl 31',
'R2D65BlueStbl00' => 'R2 D65 blu Stbl 00',
'R2D65BlueStbl01' => 'R2 D65 blu Stbl 01',
'R2D65BlueStbl02' => 'R2 D65 blu Stbl 02',
'R2D65BlueStbl03' => 'R2 D65 blu Stbl 03',
'R2D65BlueStbl04' => 'R2 D65 blu Stbl 04',
'R2D65BlueStbl05' => 'R2 D65 blu Stbl 05',
'R2D65BlueStbl06' => 'R2 D65 blu Stbl 06',
'R2D65BlueStbl07' => 'R2 D65 blu Stbl 07',
'R2D65BlueStbl08' => 'R2 D65 blu Stbl 08',
'R2D65BlueStbl09' => 'R2 D65 blu Stbl 09',
'R2D65BlueStbl10' => 'R2 D65 blu Stbl 10',
'R2D65BlueStbl11' => 'R2 D65 blu Stbl 11',
'R2D65BlueStbl12' => 'R2 D65 blu Stbl 12',
'R2D65BlueStbl13' => 'R2 D65 blu Stbl 13',
'R2D65BlueStbl14' => 'R2 D65 blu Stbl 14',
'R2D65BlueStbl15' => 'R2 D65 blu Stbl 15',
'R2D65BlueStbl16' => 'R2 D65 blu Stbl 16',
'R2D65BlueStbl17' => 'R2 D65 blu Stbl 17',
'R2D65BlueStbl18' => 'R2 D65 blu Stbl 18',
'R2D65BlueStbl19' => 'R2 D65 blu Stbl 19',
'R2D65BlueStbl20' => 'R2 D65 blu Stbl 20',
'R2D65BlueStbl21' => 'R2 D65 blu Stbl 21',
'R2D65BlueStbl22' => 'R2 D65 blu Stbl 22',
'R2D65BlueStbl23' => 'R2 D65 blu Stbl 23',
'R2D65BlueStbl24' => 'R2 D65 blu Stbl 24',
'R2D65BlueStbl25' => 'R2 D65 blu Stbl 25',
'R2D65BlueStbl26' => 'R2 D65 blu Stbl 26',
'R2D65BlueStbl27' => 'R2 D65 blu Stbl 27',
'R2D65BlueStbl28' => 'R2 D65 blu Stbl 28',
'R2D65BlueStbl29' => 'R2 D65 blu Stbl 29',
'R2D65BlueStbl30' => 'R2 D65 blu Stbl 30',
'R2D65BlueStbl31' => 'R2 D65 blu Stbl 31',
'R2D65GreenCtbl00' => 'R2 D65 verde Ctbl 00',
'R2D65GreenCtbl01' => 'R2 D65 verde Ctbl 01',
'R2D65GreenCtbl02' => 'R2 D65 verde Ctbl 02',
'R2D65GreenCtbl03' => 'R2 D65 verde Ctbl 03',
'R2D65GreenCtbl04' => 'R2 D65 verde Ctbl 04',
'R2D65GreenCtbl05' => 'R2 D65 verde Ctbl 05',
'R2D65GreenCtbl06' => 'R2 D65 verde Ctbl 06',
'R2D65GreenCtbl07' => 'R2 D65 verde Ctbl 07',
'R2D65GreenCtbl08' => 'R2 D65 verde Ctbl 08',
'R2D65GreenCtbl09' => 'R2 D65 verde Ctbl 09',
'R2D65GreenCtbl10' => 'R2 D65 verde Ctbl 10',
'R2D65GreenCtbl11' => 'R2 D65 verde Ctbl 11',
'R2D65GreenCtbl12' => 'R2 D65 verde Ctbl 12',
'R2D65GreenCtbl13' => 'R2 D65 verde Ctbl 13',
'R2D65GreenCtbl14' => 'R2 D65 verde Ctbl 14',
'R2D65GreenCtbl15' => 'R2 D65 verde Ctbl 15',
'R2D65GreenCtbl16' => 'R2 D65 verde Ctbl 16',
'R2D65GreenCtbl17' => 'R2 D65 verde Ctbl 17',
'R2D65GreenCtbl18' => 'R2 D65 verde Ctbl 18',
'R2D65GreenCtbl19' => 'R2 D65 verde Ctbl 19',
'R2D65GreenCtbl20' => 'R2 D65 verde Ctbl 20',
'R2D65GreenCtbl21' => 'R2 D65 verde Ctbl 21',
'R2D65GreenCtbl22' => 'R2 D65 verde Ctbl 22',
'R2D65GreenCtbl23' => 'R2 D65 verde Ctbl 23',
'R2D65GreenCtbl24' => 'R2 D65 verde Ctbl 24',
'R2D65GreenCtbl25' => 'R2 D65 verde Ctbl 25',
'R2D65GreenCtbl26' => 'R2 D65 verde Ctbl 26',
'R2D65GreenCtbl27' => 'R2 D65 verde Ctbl 27',
'R2D65GreenCtbl28' => 'R2 D65 verde Ctbl 28',
'R2D65GreenCtbl29' => 'R2 D65 verde Ctbl 29',
'R2D65GreenCtbl30' => 'R2 D65 verde Ctbl 30',
'R2D65GreenCtbl31' => 'R2 D65 verde Ctbl 31',
'R2D65GreenStbl00' => 'R2 D65 verde Stbl 00',
'R2D65GreenStbl01' => 'R2 D65 verde Stbl 01',
'R2D65GreenStbl02' => 'R2 D65 verde Stbl 02',
'R2D65GreenStbl03' => 'R2 D65 verde Stbl 03',
'R2D65GreenStbl04' => 'R2 D65 verde Stbl 04',
'R2D65GreenStbl05' => 'R2 D65 verde Stbl 05',
'R2D65GreenStbl06' => 'R2 D65 verde Stbl 06',
'R2D65GreenStbl07' => 'R2 D65 verde Stbl 07',
'R2D65GreenStbl08' => 'R2 D65 verde Stbl 08',
'R2D65GreenStbl09' => 'R2 D65 verde Stbl 09',
'R2D65GreenStbl10' => 'R2 D65 verde Stbl 10',
'R2D65GreenStbl11' => 'R2 D65 verde Stbl 11',
'R2D65GreenStbl12' => 'R2 D65 verde Stbl 12',
'R2D65GreenStbl13' => 'R2 D65 verde Stbl 13',
'R2D65GreenStbl14' => 'R2 D65 verde Stbl 14',
'R2D65GreenStbl15' => 'R2 D65 verde Stbl 15',
'R2D65GreenStbl16' => 'R2 D65 verde Stbl 16',
'R2D65GreenStbl17' => 'R2 D65 verde Stbl 17',
'R2D65GreenStbl18' => 'R2 D65 verde Stbl 18',
'R2D65GreenStbl19' => 'R2 D65 verde Stbl 19',
'R2D65GreenStbl20' => 'R2 D65 verde Stbl 20',
'R2D65GreenStbl21' => 'R2 D65 verde Stbl 21',
'R2D65GreenStbl22' => 'R2 D65 verde Stbl 22',
'R2D65GreenStbl23' => 'R2 D65 verde Stbl 23',
'R2D65GreenStbl24' => 'R2 D65 verde Stbl 24',
'R2D65GreenStbl25' => 'R2 D65 verde Stbl 25',
'R2D65GreenStbl26' => 'R2 D65 verde Stbl 26',
'R2D65GreenStbl27' => 'R2 D65 verde Stbl 27',
'R2D65GreenStbl28' => 'R2 D65 verde Stbl 28',
'R2D65GreenStbl29' => 'R2 D65 verde Stbl 29',
'R2D65GreenStbl30' => 'R2 D65 verde Stbl 30',
'R2D65GreenStbl31' => 'R2 D65 verde Stbl 31',
'R2D65Height' => 'R2 D65 altezza',
'R2D65Intervals' => 'R2 D65 intervalli',
'R2D65RedCtbl00' => 'R2 D65 rosso Ctbl 00',
'R2D65RedCtbl01' => 'R2 D65 rosso Ctbl 01',
'R2D65RedCtbl02' => 'R2 D65 rosso Ctbl 02',
'R2D65RedCtbl03' => 'R2 D65 rosso Ctbl 03',
'R2D65RedCtbl04' => 'R2 D65 rosso Ctbl 04',
'R2D65RedCtbl05' => 'R2 D65 rosso Ctbl 05',
'R2D65RedCtbl06' => 'R2 D65 rosso Ctbl 06',
'R2D65RedCtbl07' => 'R2 D65 rosso Ctbl 07',
'R2D65RedCtbl08' => 'R2 D65 rosso Ctbl 08',
'R2D65RedCtbl09' => 'R2 D65 rosso Ctbl 09',
'R2D65RedCtbl10' => 'R2 D65 rosso Ctbl 10',
'R2D65RedCtbl11' => 'R2 D65 rosso Ctbl 11',
'R2D65RedCtbl12' => 'R2 D65 rosso Ctbl 12',
'R2D65RedCtbl13' => 'R2 D65 rosso Ctbl 13',
'R2D65RedCtbl14' => 'R2 D65 rosso Ctbl 14',
'R2D65RedCtbl15' => 'R2 D65 rosso Ctbl 15',
'R2D65RedCtbl16' => 'R2 D65 rosso Ctbl 16',
'R2D65RedCtbl17' => 'R2 D65 rosso Ctbl 17',
'R2D65RedCtbl18' => 'R2 D65 rosso Ctbl 18',
'R2D65RedCtbl19' => 'R2 D65 rosso Ctbl 19',
'R2D65RedCtbl20' => 'R2 D65 rosso Ctbl 20',
'R2D65RedCtbl21' => 'R2 D65 rosso Ctbl 21',
'R2D65RedCtbl22' => 'R2 D65 rosso Ctbl 22',
'R2D65RedCtbl23' => 'R2 D65 rosso Ctbl 23',
'R2D65RedCtbl24' => 'R2 D65 rosso Ctbl 24',
'R2D65RedCtbl25' => 'R2 D65 rosso Ctbl 25',
'R2D65RedCtbl26' => 'R2 D65 rosso Ctbl 26',
'R2D65RedCtbl27' => 'R2 D65 rosso Ctbl 27',
'R2D65RedCtbl28' => 'R2 D65 rosso Ctbl 28',
'R2D65RedCtbl29' => 'R2 D65 rosso Ctbl 29',
'R2D65RedCtbl30' => 'R2 D65 rosso Ctbl 30',
'R2D65RedCtbl31' => 'R2 D65 rosso Ctbl 31',
'R2D65RedStbl00' => 'R2 D65 rosso Stbl 00',
'R2D65RedStbl01' => 'R2 D65 rosso Stbl 01',
'R2D65RedStbl02' => 'R2 D65 rosso Stbl 02',
'R2D65RedStbl03' => 'R2 D65 rosso Stbl 03',
'R2D65RedStbl04' => 'R2 D65 rosso Stbl 04',
'R2D65RedStbl05' => 'R2 D65 rosso Stbl 05',
'R2D65RedStbl06' => 'R2 D65 rosso Stbl 06',
'R2D65RedStbl07' => 'R2 D65 rosso Stbl 07',
'R2D65RedStbl08' => 'R2 D65 rosso Stbl 08',
'R2D65RedStbl09' => 'R2 D65 rosso Stbl 09',
'R2D65RedStbl10' => 'R2 D65 rosso Stbl 10',
'R2D65RedStbl11' => 'R2 D65 rosso Stbl 11',
'R2D65RedStbl12' => 'R2 D65 rosso Stbl 12',
'R2D65RedStbl13' => 'R2 D65 rosso Stbl 13',
'R2D65RedStbl14' => 'R2 D65 rosso Stbl 14',
'R2D65RedStbl15' => 'R2 D65 rosso Stbl 15',
'R2D65RedStbl16' => 'R2 D65 rosso Stbl 16',
'R2D65RedStbl17' => 'R2 D65 rosso Stbl 17',
'R2D65RedStbl18' => 'R2 D65 rosso Stbl 18',
'R2D65RedStbl19' => 'R2 D65 rosso Stbl 19',
'R2D65RedStbl20' => 'R2 D65 rosso Stbl 20',
'R2D65RedStbl21' => 'R2 D65 rosso Stbl 21',
'R2D65RedStbl22' => 'R2 D65 rosso Stbl 22',
'R2D65RedStbl23' => 'R2 D65 rosso Stbl 23',
'R2D65RedStbl24' => 'R2 D65 rosso Stbl 24',
'R2D65RedStbl25' => 'R2 D65 rosso Stbl 25',
'R2D65RedStbl26' => 'R2 D65 rosso Stbl 26',
'R2D65RedStbl27' => 'R2 D65 rosso Stbl 27',
'R2D65RedStbl28' => 'R2 D65 rosso Stbl 28',
'R2D65RedStbl29' => 'R2 D65 rosso Stbl 29',
'R2D65RedStbl30' => 'R2 D65 rosso Stbl 30',
'R2D65RedStbl31' => 'R2 D65 rosso Stbl 31',
'R2D65Width' => 'R2 D65 larghezza',
'R2TL84BlueCtbl00' => 'R2 TL84 blu Ctbl 00',
'R2TL84BlueCtbl01' => 'R2 TL84 blu Ctbl 01',
'R2TL84BlueCtbl02' => 'R2 TL84 blu Ctbl 02',
'R2TL84BlueCtbl03' => 'R2 TL84 blu Ctbl 03',
'R2TL84BlueCtbl04' => 'R2 TL84 blu Ctbl 04',
'R2TL84BlueCtbl05' => 'R2 TL84 blu Ctbl 05',
'R2TL84BlueCtbl06' => 'R2 TL84 blu Ctbl 06',
'R2TL84BlueCtbl07' => 'R2 TL84 blu Ctbl 07',
'R2TL84BlueCtbl08' => 'R2 TL84 blu Ctbl 08',
'R2TL84BlueCtbl09' => 'R2 TL84 blu Ctbl 09',
'R2TL84BlueCtbl10' => 'R2 TL84 blu Ctbl 10',
'R2TL84BlueCtbl11' => 'R2 TL84 blu Ctbl 11',
'R2TL84BlueCtbl12' => 'R2 TL84 blu Ctbl 12',
'R2TL84BlueCtbl13' => 'R2 TL84 blu Ctbl 13',
'R2TL84BlueCtbl14' => 'R2 TL84 blu Ctbl 14',
'R2TL84BlueCtbl15' => 'R2 TL84 blu Ctbl 15',
'R2TL84BlueCtbl16' => 'R2 TL84 blu Ctbl 16',
'R2TL84BlueCtbl17' => 'R2 TL84 blu Ctbl 17',
'R2TL84BlueCtbl18' => 'R2 TL84 blu Ctbl 18',
'R2TL84BlueCtbl19' => 'R2 TL84 blu Ctbl 19',
'R2TL84BlueCtbl20' => 'R2 TL84 blu Ctbl 20',
'R2TL84BlueCtbl21' => 'R2 TL84 blu Ctbl 21',
'R2TL84BlueCtbl22' => 'R2 TL84 blu Ctbl 22',
'R2TL84BlueCtbl23' => 'R2 TL84 blu Ctbl 23',
'R2TL84BlueCtbl24' => 'R2 TL84 blu Ctbl 24',
'R2TL84BlueCtbl25' => 'R2 TL84 blu Ctbl 25',
'R2TL84BlueCtbl26' => 'R2 TL84 blu Ctbl 26',
'R2TL84BlueCtbl27' => 'R2 TL84 blu Ctbl 27',
'R2TL84BlueCtbl28' => 'R2 TL84 blu Ctbl 28',
'R2TL84BlueCtbl29' => 'R2 TL84 blu Ctbl 29',
'R2TL84BlueCtbl30' => 'R2 TL84 blu Ctbl 30',
'R2TL84BlueCtbl31' => 'R2 TL84 blu Ctbl 31',
'R2TL84BlueStbl00' => 'R2 TL84 blu Stbl 00',
'R2TL84BlueStbl01' => 'R2 TL84 blu Stbl 01',
'R2TL84BlueStbl02' => 'R2 TL84 blu Stbl 02',
'R2TL84BlueStbl03' => 'R2 TL84 blu Stbl 03',
'R2TL84BlueStbl04' => 'R2 TL84 blu Stbl 04',
'R2TL84BlueStbl05' => 'R2 TL84 blu Stbl 05',
'R2TL84BlueStbl06' => 'R2 TL84 blu Stbl 06',
'R2TL84BlueStbl07' => 'R2 TL84 blu Stbl 07',
'R2TL84BlueStbl08' => 'R2 TL84 blu Stbl 08',
'R2TL84BlueStbl09' => 'R2 TL84 blu Stbl 09',
'R2TL84BlueStbl10' => 'R2 TL84 blu Stbl 10',
'R2TL84BlueStbl11' => 'R2 TL84 blu Stbl 11',
'R2TL84BlueStbl12' => 'R2 TL84 blu Stbl 12',
'R2TL84BlueStbl13' => 'R2 TL84 blu Stbl 13',
'R2TL84BlueStbl14' => 'R2 TL84 blu Stbl 14',
'R2TL84BlueStbl15' => 'R2 TL84 blu Stbl 15',
'R2TL84BlueStbl16' => 'R2 TL84 blu Stbl 16',
'R2TL84BlueStbl17' => 'R2 TL84 blu Stbl 17',
'R2TL84BlueStbl18' => 'R2 TL84 blu Stbl 18',
'R2TL84BlueStbl19' => 'R2 TL84 blu Stbl 19',
'R2TL84BlueStbl20' => 'R2 TL84 blu Stbl 20',
'R2TL84BlueStbl21' => 'R2 TL84 blu Stbl 21',
'R2TL84BlueStbl22' => 'R2 TL84 blu Stbl 22',
'R2TL84BlueStbl23' => 'R2 TL84 blu Stbl 23',
'R2TL84BlueStbl24' => 'R2 TL84 blu Stbl 24',
'R2TL84BlueStbl25' => 'R2 TL84 blu Stbl 25',
'R2TL84BlueStbl26' => 'R2 TL84 blu Stbl 26',
'R2TL84BlueStbl27' => 'R2 TL84 blu Stbl 27',
'R2TL84BlueStbl28' => 'R2 TL84 blu Stbl 28',
'R2TL84BlueStbl29' => 'R2 TL84 blu Stbl 29',
'R2TL84BlueStbl30' => 'R2 TL84 blu Stbl 30',
'R2TL84BlueStbl31' => 'R2 TL84 blu Stbl 31',
'R2TL84GreenCtbl00' => 'R2 TL84 verde Ctbl 00',
'R2TL84GreenCtbl01' => 'R2 TL84 verde Ctbl 01',
'R2TL84GreenCtbl02' => 'R2 TL84 verde Ctbl 02',
'R2TL84GreenCtbl03' => 'R2 TL84 verde Ctbl 03',
'R2TL84GreenCtbl04' => 'R2 TL84 verde Ctbl 04',
'R2TL84GreenCtbl05' => 'R2 TL84 verde Ctbl 05',
'R2TL84GreenCtbl06' => 'R2 TL84 verde Ctbl 06',
'R2TL84GreenCtbl07' => 'R2 TL84 verde Ctbl 07',
'R2TL84GreenCtbl08' => 'R2 TL84 verde Ctbl 08',
'R2TL84GreenCtbl09' => 'R2 TL84 verde Ctbl 09',
'R2TL84GreenCtbl10' => 'R2 TL84 verde Ctbl 10',
'R2TL84GreenCtbl11' => 'R2 TL84 verde Ctbl 11',
'R2TL84GreenCtbl12' => 'R2 TL84 verde Ctbl 12',
'R2TL84GreenCtbl13' => 'R2 TL84 verde Ctbl 13',
'R2TL84GreenCtbl14' => 'R2 TL84 verde Ctbl 14',
'R2TL84GreenCtbl15' => 'R2 TL84 verde Ctbl 15',
'R2TL84GreenCtbl16' => 'R2 TL84 verde Ctbl 16',
'R2TL84GreenCtbl17' => 'R2 TL84 verde Ctbl 17',
'R2TL84GreenCtbl18' => 'R2 TL84 verde Ctbl 18',
'R2TL84GreenCtbl19' => 'R2 TL84 verde Ctbl 19',
'R2TL84GreenCtbl20' => 'R2 TL84 verde Ctbl 20',
'R2TL84GreenCtbl21' => 'R2 TL84 verde Ctbl 21',
'R2TL84GreenCtbl22' => 'R2 TL84 verde Ctbl 22',
'R2TL84GreenCtbl23' => 'R2 TL84 verde Ctbl 23',
'R2TL84GreenCtbl24' => 'R2 TL84 verde Ctbl 24',
'R2TL84GreenCtbl25' => 'R2 TL84 verde Ctbl 25',
'R2TL84GreenCtbl26' => 'R2 TL84 verde Ctbl 26',
'R2TL84GreenCtbl27' => 'R2 TL84 verde Ctbl 27',
'R2TL84GreenCtbl28' => 'R2 TL84 verde Ctbl 28',
'R2TL84GreenCtbl29' => 'R2 TL84 verde Ctbl 29',
'R2TL84GreenCtbl30' => 'R2 TL84 verde Ctbl 30',
'R2TL84GreenCtbl31' => 'R2 TL84 verde Ctbl 31',
'R2TL84GreenStbl00' => 'R2 TL84 verde Stbl 00',
'R2TL84GreenStbl01' => 'R2 TL84 verde Stbl 01',
'R2TL84GreenStbl02' => 'R2 TL84 verde Stbl 02',
'R2TL84GreenStbl03' => 'R2 TL84 verde Stbl 03',
'R2TL84GreenStbl04' => 'R2 TL84 verde Stbl 04',
'R2TL84GreenStbl05' => 'R2 TL84 verde Stbl 05',
'R2TL84GreenStbl06' => 'R2 TL84 verde Stbl 06',
'R2TL84GreenStbl07' => 'R2 TL84 verde Stbl 07',
'R2TL84GreenStbl08' => 'R2 TL84 verde Stbl 08',
'R2TL84GreenStbl09' => 'R2 TL84 verde Stbl 09',
'R2TL84GreenStbl10' => 'R2 TL84 verde Stbl 10',
'R2TL84GreenStbl11' => 'R2 TL84 verde Stbl 11',
'R2TL84GreenStbl12' => 'R2 TL84 verde Stbl 12',
'R2TL84GreenStbl13' => 'R2 TL84 verde Stbl 13',
'R2TL84GreenStbl14' => 'R2 TL84 verde Stbl 14',
'R2TL84GreenStbl15' => 'R2 TL84 verde Stbl 15',
'R2TL84GreenStbl16' => 'R2 TL84 verde Stbl 16',
'R2TL84GreenStbl17' => 'R2 TL84 verde Stbl 17',
'R2TL84GreenStbl18' => 'R2 TL84 verde Stbl 18',
'R2TL84GreenStbl19' => 'R2 TL84 verde Stbl 19',
'R2TL84GreenStbl20' => 'R2 TL84 verde Stbl 20',
'R2TL84GreenStbl21' => 'R2 TL84 verde Stbl 21',
'R2TL84GreenStbl22' => 'R2 TL84 verde Stbl 22',
'R2TL84GreenStbl23' => 'R2 TL84 verde Stbl 23',
'R2TL84GreenStbl24' => 'R2 TL84 verde Stbl 24',
'R2TL84GreenStbl25' => 'R2 TL84 verde Stbl 25',
'R2TL84GreenStbl26' => 'R2 TL84 verde Stbl 26',
'R2TL84GreenStbl27' => 'R2 TL84 verde Stbl 27',
'R2TL84GreenStbl28' => 'R2 TL84 verde Stbl 28',
'R2TL84GreenStbl29' => 'R2 TL84 verde Stbl 29',
'R2TL84GreenStbl30' => 'R2 TL84 verde Stbl 30',
'R2TL84GreenStbl31' => 'R2 TL84 verde Stbl 31',
'R2TL84Height' => 'R2 TL84 altezza',
'R2TL84Intervals' => 'R2 TL84 intervalli',
'R2TL84RedCtbl00' => 'R2 TL84 rosso Ctbl 00',
'R2TL84RedCtbl01' => 'R2 TL84 rosso Ctbl 01',
'R2TL84RedCtbl02' => 'R2 TL84 rosso Ctbl 02',
'R2TL84RedCtbl03' => 'R2 TL84 rosso Ctbl 03',
'R2TL84RedCtbl04' => 'R2 TL84 rosso Ctbl 04',
'R2TL84RedCtbl05' => 'R2 TL84 rosso Ctbl 05',
'R2TL84RedCtbl06' => 'R2 TL84 rosso Ctbl 06',
'R2TL84RedCtbl07' => 'R2 TL84 rosso Ctbl 07',
'R2TL84RedCtbl08' => 'R2 TL84 rosso Ctbl 08',
'R2TL84RedCtbl09' => 'R2 TL84 rosso Ctbl 09',
'R2TL84RedCtbl10' => 'R2 TL84 rosso Ctbl 10',
'R2TL84RedCtbl11' => 'R2 TL84 rosso Ctbl 11',
'R2TL84RedCtbl12' => 'R2 TL84 rosso Ctbl 12',
'R2TL84RedCtbl13' => 'R2 TL84 rosso Ctbl 13',
'R2TL84RedCtbl14' => 'R2 TL84 rosso Ctbl 14',
'R2TL84RedCtbl15' => 'R2 TL84 rosso Ctbl 15',
'R2TL84RedCtbl16' => 'R2 TL84 rosso Ctbl 16',
'R2TL84RedCtbl17' => 'R2 TL84 rosso Ctbl 17',
'R2TL84RedCtbl18' => 'R2 TL84 rosso Ctbl 18',
'R2TL84RedCtbl19' => 'R2 TL84 rosso Ctbl 19',
'R2TL84RedCtbl20' => 'R2 TL84 rosso Ctbl 20',
'R2TL84RedCtbl21' => 'R2 TL84 rosso Ctbl 21',
'R2TL84RedCtbl22' => 'R2 TL84 rosso Ctbl 22',
'R2TL84RedCtbl23' => 'R2 TL84 rosso Ctbl 23',
'R2TL84RedCtbl24' => 'R2 TL84 rosso Ctbl 24',
'R2TL84RedCtbl25' => 'R2 TL84 rosso Ctbl 25',
'R2TL84RedCtbl26' => 'R2 TL84 rosso Ctbl 26',
'R2TL84RedCtbl27' => 'R2 TL84 rosso Ctbl 27',
'R2TL84RedCtbl28' => 'R2 TL84 rosso Ctbl 28',
'R2TL84RedCtbl29' => 'R2 TL84 rosso Ctbl 29',
'R2TL84RedCtbl30' => 'R2 TL84 rosso Ctbl 30',
'R2TL84RedCtbl31' => 'R2 TL84 rosso Ctbl 31',
'R2TL84RedStbl00' => 'R2 TL84 rosso Stbl 00',
'R2TL84RedStbl01' => 'R2 TL84 rosso Stbl 01',
'R2TL84RedStbl02' => 'R2 TL84 rosso Stbl 02',
'R2TL84RedStbl03' => 'R2 TL84 rosso Stbl 03',
'R2TL84RedStbl04' => 'R2 TL84 rosso Stbl 04',
'R2TL84RedStbl05' => 'R2 TL84 rosso Stbl 05',
'R2TL84RedStbl06' => 'R2 TL84 rosso Stbl 06',
'R2TL84RedStbl07' => 'R2 TL84 rosso Stbl 07',
'R2TL84RedStbl08' => 'R2 TL84 rosso Stbl 08',
'R2TL84RedStbl09' => 'R2 TL84 rosso Stbl 09',
'R2TL84RedStbl10' => 'R2 TL84 rosso Stbl 10',
'R2TL84RedStbl11' => 'R2 TL84 rosso Stbl 11',
'R2TL84RedStbl12' => 'R2 TL84 rosso Stbl 12',
'R2TL84RedStbl13' => 'R2 TL84 rosso Stbl 13',
'R2TL84RedStbl14' => 'R2 TL84 rosso Stbl 14',
'R2TL84RedStbl15' => 'R2 TL84 rosso Stbl 15',
'R2TL84RedStbl16' => 'R2 TL84 rosso Stbl 16',
'R2TL84RedStbl17' => 'R2 TL84 rosso Stbl 17',
'R2TL84RedStbl18' => 'R2 TL84 rosso Stbl 18',
'R2TL84RedStbl19' => 'R2 TL84 rosso Stbl 19',
'R2TL84RedStbl20' => 'R2 TL84 rosso Stbl 20',
'R2TL84RedStbl21' => 'R2 TL84 rosso Stbl 21',
'R2TL84RedStbl22' => 'R2 TL84 rosso Stbl 22',
'R2TL84RedStbl23' => 'R2 TL84 rosso Stbl 23',
'R2TL84RedStbl24' => 'R2 TL84 rosso Stbl 24',
'R2TL84RedStbl25' => 'R2 TL84 rosso Stbl 25',
'R2TL84RedStbl26' => 'R2 TL84 rosso Stbl 26',
'R2TL84RedStbl27' => 'R2 TL84 rosso Stbl 27',
'R2TL84RedStbl28' => 'R2 TL84 rosso Stbl 28',
'R2TL84RedStbl29' => 'R2 TL84 rosso Stbl 29',
'R2TL84RedStbl30' => 'R2 TL84 rosso Stbl 30',
'R2TL84RedStbl31' => 'R2 TL84 rosso Stbl 31',
'R2TL84Width' => 'R2 TL84 larghezza',
'RAFVersion' => 'Versione RAF',
'RGBCurveLimits' => 'Limiti curva RGB',
'RGBCurvePoints' => 'Punti curva RGB',
'RadialPosition' => 'Posizione radiale',
'RandomIndexMetadata' => 'Indice casuale metadati',
'RandomIndexMetadataV10' => 'Indice casuale metadati V10',
'RangeFinder' => {
PrintConv => {
'Off' => 'Spento',
},
},
'RasterPadding' => {
PrintConv => {
'Long Sector' => 'Settore lungo',
'Long Word' => 'Parola lunga',
'Sector' => 'Settore',
'Word' => 'Parola',
},
},
'RasterizedCaption' => 'Didascalia rasterizzata',
'Rating' => {
Description => 'Valutazione',
PrintConv => {
'Explicit' => 'Esplicito',
},
},
'RatingPercent' => 'Valutazione percentuale',
'RawAndJpgRecording' => {
Description => 'Registrazione raw e jpg',
PrintConv => {
'Off' => 'Spento',
'RAW (DNG, Best)' => 'RAW (DNG, migliore)',
'RAW (DNG, Better)' => 'RAW (DNG, più buona)',
'RAW (DNG, Good)' => 'RAW (DNG, buona)',
'RAW (PEF, Best)' => 'RAW (PEF, migliore)',
'RAW (PEF, Better)' => 'RAW (PEF, più buona)',
'RAW (PEF, Good)' => 'RAW (PEF, buona)',
'RAW+JPEG (DNG, Best)' => 'RAW+JPEG (DNG, migliore)',
'RAW+JPEG (DNG, Better)' => 'RAW+JPEG (DNG, più buona)',
'RAW+JPEG (DNG, Good)' => 'RAW+JPEG (DNG, buona)',
'RAW+JPEG (PEF, Best)' => 'RAW+JPEG (PEF, migliore)',
'RAW+JPEG (PEF, Better)' => 'RAW+JPEG (PEF, più buona)',
'RAW+JPEG (PEF, Good)' => 'RAW+JPEG (PEF, buona)',
},
},
'RawColorAdj' => {
PrintConv => {
'Shot Settings' => 'Impostazioni scatto',
},
},
'RawDataOffset' => 'Offset dati raw',
'RawDataUniqueID' => 'ID unico dati raw',
'RawDepth' => 'Profondità raw',
'RawDevAutoGradation' => {
PrintConv => {
'Off' => 'Spento',
},
},
'RawDevEditStatus' => {
PrintConv => {
'Original' => 'Originale',
},
},
'RawDevNoiseReduction' => {
PrintConv => {
'Noise Filter' => 'Filtro rumore',
'Noise Reduction' => 'Riduzione rumore',
},
},
'RawDevPMPictureTone' => {
PrintConv => {
'Green' => 'Verde',
'Purple' => 'Porpora',
'Sepia' => 'Seppia',
},
},
'RawDevPM_BWFilter' => {
PrintConv => {
'Green' => 'Verde',
'Orange' => 'Arancio',
'Red' => 'Rosso',
'Yellow' => 'Giallo',
},
},
'RawDevPictureMode' => {
PrintConv => {
'Sepia' => 'Seppia',
'Vivid' => 'Vivace',
},
},
'RawDevSettings' => {
PrintConv => {
'Noise Reduction' => 'Riduzione rumore',
'Saturation' => 'Saturazione',
'Sharpness' => 'Nitidezza',
},
},
'RawFile' => 'File raw',
'RawFileName' => 'Nome file raw',
'RawImageCenter' => 'Centro immagine raw',
'RawImageDigest' => 'Sommario file raw',
'RawImageFullSize' => 'Dimensione finale immagine raw',
'RawImageHeight' => 'Altezza immagine raw',
'RawImageMode' => 'Modo immagine raw',
'RawImageSegmentation' => 'Segmentazione file raw',
'RawImageSize' => 'Dimensione immagine raw',
'RawImageWidth' => 'Larghezza immagine raw',
'RawInfoVersion' => 'Info versione raw',
'RawJpgHeight' => 'Altezza jpg raw',
'RawJpgQuality' => {
Description => 'Qualità jpg raw',
PrintConv => {
'Normal' => 'Normale',
},
},
'RawJpgSize' => {
Description => 'Dimensione jpg raw',
PrintConv => {
'Postcard' => 'Cartolina',
},
},
'RawJpgWidth' => 'Larghezza jpg raw',
'ReadStatus' => 'Stato lettura',
'RecommendedExposureIndex' => 'Indice esposizione raccomandato',
'RecordDisplay' => {
PrintConv => {
'Horizontal' => 'Orizzontale',
},
},
'RecordMode' => {
Description => 'Modo registrazione',
PrintConv => {
'Aperture Priority' => 'Priorità diaframma',
'Manual' => 'Manuale',
'Program AE' => 'Programma AE',
'Shutter Priority' => 'Priorità otturatore',
},
},
'RecordShutterRelease' => {
PrintConv => {
'Press start, press stop' => 'Premi start, premi stop',
},
},
'RecordedFormat' => 'Formato registrato',
'RecordingDates' => 'Date registrazioni',
'RecordingLabelName' => 'Nome etichetta registrazione',
'RecordingMode' => {
Description => 'Modo registrazione',
PrintConv => {
'Landscape' => 'Orizzontale',
'Manual' => 'Manuale',
'Portrait' => 'Verticale',
},
},
'RecordingTime' => 'Tempo registrazione',
'RedAdjust' => 'Correzione rosso',
'RedBalance' => 'Bilanciamento del rosso',
'RedCurveLimits' => 'Limiti curva rosso',
'RedCurvePoints' => 'Punti curva rosso',
'RedEyeCorrection' => {
Description => 'Correzione occhi rossi',
PrintConv => {
'Off' => 'Spento',
},
},
'RedEyeInfo' => 'Info occhi rossi',
'RedEyeReduction' => {
Description => 'Riduzione occhi rossi',
PrintConv => {
'Off' => 'Spento',
},
},
'RedGain' => 'Guadagno rosso',
'RedHue' => 'Tinta rosso',
'RedMatrixColumn' => 'Colonna matrice rosso',
'RedPaletteColorTableData' => 'Dati tabella tavolozza colori rosso',
'RedPaletteColorTableDescriptor' => 'Descrittore tabella tavolozza colori rosso',
'RedPrimary' => 'Rosso primario',
'RedSample' => 'Campione rosso',
'RedSaturation' => 'Saturazione rosso',
'RedTRC' => 'Curva riproduzione tono rosso',
'ReductionMatrix1' => 'Matrice di riduzione 1',
'ReductionMatrix2' => 'Matrice di riduzione 2',
'Reference' => 'Riferimento',
'Reference1' => 'Riferimento 1',
'Reference2' => 'Riferimento 2',
'Reference3' => 'Riferimento 3',
'Reference4' => 'Riferimento 4',
'Reference5' => 'Riferimento 5',
'Reference6' => 'Riferimento 6',
'ReferenceBlackWhite' => 'Coppia valori riferimento di bianco e nero',
'ReferenceBlock' => 'Blocco di riferimento',
'ReferenceChannels' => 'Canali di riferimento',
'ReferenceCoordinates' => 'Coordinate di riferimento',
'ReferenceDate' => 'Data di riferimento',
'ReferenceNumber' => 'Numero di riferimento',
'ReferencePixelPhysicalValueX' => 'Valore fisico valore X pixel di riferimento',
'ReferencePixelPhysicalValueY' => 'Valore fisico valore Y pixel di riferimento',
'ReferencePixelX0' => 'Pixel X0 di riferimento',
'ReferencePixelY0' => 'Pixel Y0 di riferimento',
'ReferencePriority' => 'Priorità riferimento',
'ReferenceService' => 'Riferimento di servizio',
'ReferenceToRecordedSound' => 'Riferimento a suono registrato',
'ReferenceVirtual' => 'Riferimento virtuale',
'Refresh' => 'Aggiorna',
'RegionCode' => 'Codice regione',
'RegionInfo' => 'Info regione',
'RegionList' => 'Elenco regioni',
'RegionName' => 'Nome regione',
'RegionOfResidence' => 'Regione di residenza',
'RelatedImageFileFormat' => 'Formato file immagine correlato',
'RelatedImageHeight' => 'Numero delle righe dei dati immagine',
'RelatedImageWidth' => 'Larghezza immagine correlata',
'RelatedSoundFile' => 'File audio relativo',
'Relation' => 'Relazione',
'RelativeVolumeAdjustment' => 'Correzione relativa volume',
'ReleaseButtonToUseDial' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'ReleaseDate' => 'Data di rilascio',
'ReleaseMode' => {
PrintConv => {
'Normal' => 'Normale',
'n/a' => 'n/d',
},
},
'ReleaseTime' => 'Ora di rilascio',
'RenderingIntent' => {
PrintConv => {
'ICC-Absolute Colorimetric' => 'Colorimetrico Assoluto',
'Media-Relative Colorimetric' => 'Colorimetrico Relativo',
'Perceptual' => 'Percentuale',
'Saturation' => 'Saturazione',
},
},
'RenderingType3D' => 'Tipo resa 3D',
'RepeatingFlashCount' => 'Conteggio ripetizione flash',
'RepeatingFlashOutput' => 'Uscita ripetizione flash',
'RepeatingFlashRate' => 'Frequenza ripetizione flash',
'ReplyTo' => 'Rispondi a',
'Resaved' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'Reserved' => 'Riservato',
'Reserved1' => 'Riservato 1',
'Resolution' => 'Risoluzione',
'ResolutionMode' => 'Modo risoluzione',
'ResolutionUnit' => {
Description => 'Unità risoluzione',
PrintConv => {
'None' => 'Nessuno',
'inches' => 'Pollici',
},
},
'ResonantNucleus' => 'Nucleo risonante',
'ResourceID' => 'ID risorsa',
'ResourceType' => 'Tipo risorsa',
'Resources' => 'Risorse',
'ResourcesNeeded' => 'Risorse richieste',
'Restrictions' => 'Restrizioni',
'ResultsID' => 'ID risultati',
'RetouchHistory' => {
Description => 'Cronologia ritocco',
PrintConv => {
'Fisheye' => 'Fish-eye',
'None' => 'Nessuno',
'Quick Retouch' => 'Ritocco veloce',
'Red Eye' => 'Occhi rossi',
'Red Intensifier' => 'Intensificatore rosso',
'Resize' => 'Ridimensione',
'Sepia' => 'Seppia',
'Straighten' => 'Raddrizza',
},
},
'RetouchInfo' => 'Info ritocco',
'Reuse' => {
Description => 'Riutilizza',
PrintConv => {
'Not Applicable' => 'Non applicabile',
},
},
'ReverseIndicators' => 'Inverti indicatori',
'ReversedByteOrder' => 'Ordine byte invertito',
'Revision' => 'Revisione',
'RevisionDate' => 'Data revisione',
'RevisionNumber' => 'Numero revisione',
'RicohDate' => 'Data Ricoh',
'RicohImageHeight' => 'Altezza immagine Ricoh',
'RicohImageWidth' => 'Larghezza immagine Ricoh',
'RicohRDC2' => 'RDC2 Ricoh',
'RightAscension' => 'Ascensione retta',
'Robots' => 'Robot',
'RoleName' => 'Nome ruolo',
'RoomNumber' => 'Numero stanza',
'RoomOrSuiteName' => 'Numero stanza/suite',
'RootFormatVersion' => 'Versione formato radice',
'Rotation' => {
Description => 'Rotazione',
PrintConv => {
'Horizontal' => 'Orizzontale',
'Horizontal (Normal)' => 'Orizzontale (normale)',
'Horizontal (normal)' => 'Orizzontale (normale)',
'Rotate 180' => 'Ruota di 180°',
'Rotate 270 CW' => 'Ruota di 270° in senso orario',
'Rotate 90 CW' => 'Ruota di 90° senso orario',
'Rotated 180' => 'Ruotato di 180°',
'Rotated 270 CW' => 'Ruotato di 270° in senso orario',
'Rotated 90 CW' => 'Ruotato di 90° in senso orario',
},
},
'RotationAngle' => 'Angolo rotazione',
'RotationDirection' => 'Direzione rotazione',
'RowsPerStrip' => 'Righe per striscia',
'RunWindow' => {
PrintConv => {
'Normal' => 'Normale',
'Restore' => 'Ripristina',
},
},
'SEMInfo' => 'Info SEM',
'SPIFFVersion' => 'Versione SPIFF',
'SRAWQuality' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SRActive' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'SRGBRendering' => {
PrintConv => {
'Saturation' => 'Saturazione',
},
},
'SRResult' => {
PrintConv => {
'Not ready' => 'Non pronto',
},
},
'SVGVersion' => 'Versione SVG',
'SafetyShiftInAvOrTv' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'SampleBits' => 'Bit campione',
'SampleFormat' => {
Description => 'Formato campioni',
PrintConv => {
'Complex float' => 'Virgola mobile immaginario',
'Complex int' => 'Intero immaginario',
'Float' => 'Virgola mobile',
'Signed' => 'Con segno',
'Undefined' => 'Non definito',
'Unsigned' => 'Senza segno',
},
},
'SampleIndex' => 'Indice campione',
'SampleRate' => 'Frequenza campionamento',
'SampleRate2' => 'Frequenza campionamento 2',
'SampleSize' => 'Dimensione campione',
'SampleSizes' => 'Dimensioni campione',
'SampleStructure' => 'Struttura d\'esempio',
'SampleText' => 'Testo d\'esempio',
'SamplesPerPixel' => 'Campioni per pixel',
'SamplesPerPixelUsed' => 'Campioni per pixel',
'SamplingFrequency' => 'Frequenza campionamento',
'Saturation' => {
Description => 'Saturazione',
PrintConv => {
'High' => 'Alta',
'Low' => 'Basso',
'None' => 'Nessuno',
'None (B&W)' => 'Nessuno (B&N)',
'Normal' => 'Normale',
'Vivid' => 'Vivace',
},
},
'SaturationAdj' => 'Correzione saturazione',
'SaturationFaithful' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SaturationLandscape' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SaturationMonochrome' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SaturationNeutral' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SaturationPortrait' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SaturationStandard' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SaturationUnknown' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SaturationUserDef1' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SaturationUserDef2' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SaturationUserDef3' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ScanImageEnhancer' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ScanningDirection' => {
PrintConv => {
'R-L, Bottom-Top' => 'D-S, basso-alto',
'R-L, Top-Bottom' => 'D-S, alto-basso',
},
},
'Scene' => 'Scena',
'SceneArea' => 'Area scena',
'SceneCaptureType' => {
Description => 'Tipo cattura scena',
PrintConv => {
'Landscape' => 'Orizzontale',
'Night' => 'Notte',
'Portrait' => 'Verticale',
},
},
'SceneMode' => {
Description => 'Modo scena',
PrintConv => {
'3D Sweep Panorama' => '3D',
'Anti Motion Blur' => 'Riduz. sfocat. movim.',
'Aperture Priority' => 'Priorità diaframma',
'Auto' => 'Automatico',
'Children' => 'Bambini',
'Cont. Priority AE' => 'AE prior. avan.cont.',
'Fireworks' => 'Fuochi artificiali',
'Handheld Night Shot' => 'Foto nott. senza trepp.',
'Landscape' => 'Orizzontale',
'Manual' => 'Manuale',
'Night Portrait' => 'Rit. notturno',
'Night Scene' => 'Visione notturna',
'Night View/Portrait' => 'Visione/Ritratto notturni',
'Normal' => 'Normale',
'Off' => 'Spento',
'Portrait' => 'Verticale',
'Program' => 'Programma',
'Scenery' => 'Paesaggio',
'Shutter Priority' => 'Priorità otturatore',
'Sports' => 'Evento sportivo',
'Sunset' => 'Tramonto',
'Sweep Panorama' => 'Panoramica ad arco',
'Text' => 'Testo',
'Vivid' => 'Vivace',
'n/a' => 'n/d',
},
},
'SceneModeUsed' => {
Description => 'Modo scena usato',
PrintConv => {
'Aperture Priority' => 'Priorità diaframma',
'Children' => 'Bambini',
'Fireworks' => 'Fuochi artificiali',
'Landscape' => 'Orizzontale',
'Manual' => 'Manuale',
'Portrait' => 'Verticale',
'Program' => 'Programma',
'Shutter Priority' => 'Priorità otturatore',
'Sunset' => 'Tramonto',
'Text' => 'Testo',
},
},
'SceneNumber' => 'Numero scena',
'SceneSelect' => {
PrintConv => {
'Night' => 'Scena notturna',
'Off' => 'Spento',
},
},
'SceneType' => {
Description => 'Tipo scena',
PrintConv => {
'Directly photographed' => 'Immagine fotografata direttamente',
},
},
'School' => 'Scuola',
'ScreenTips' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Section' => 'Sezione',
'SectorSize' => 'Dimensione settore',
'Security' => {
Description => 'Sicurezza',
PrintConv => {
'None' => 'Nessuno',
},
},
'SecurityClassification' => {
Description => 'Classificazione sicurezza',
PrintConv => {
'Confidential' => 'Confidenziale',
'Restricted' => 'Riservato',
'Secret' => 'Segreto',
'Top Secret' => 'Massima segretezza',
'Unclassified' => 'Non classificato',
},
},
'SelectAFAreaSelectMode' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'SelectableAFPoint' => {
PrintConv => {
'11 points' => '11 punti',
},
},
'Selected' => 'Selezionato',
'SelfTimer' => {
Description => 'Autoscatto',
PrintConv => {
'Off' => 'Spento',
},
},
'SelfTimer2' => 'Autoscatto 2',
'SelfTimerInterval' => 'Intervallo autoscatto',
'SelfTimerMode' => 'Modo autoscatto',
'SelfTimerTime' => 'Tempo autoscatto',
'SenderAddress' => 'Indirizzo mittente',
'SenderName' => 'Nome mittente',
'SensingMethod' => {
Description => 'Metodo misurazione esposimetrica',
PrintConv => {
'Color sequential area' => 'Area sequenziale a colori',
'Color sequential linear' => 'Lineare sequenziale a colori',
'Not defined' => 'Non definito',
'One-chip color area' => 'Sensore area a colori a un chip',
'Three-chip color area' => 'Sensore area a colori a tre chip',
'Trilinear' => 'Trilineare',
'Two-chip color area' => 'Sensore area a colori a due chip',
},
},
'Sensitivity' => 'Sensibilità',
'SensitivityCalibrated' => 'Sensibilità calibrata',
'SensitivitySteps' => {
Description => 'Passi sensibilità',
PrintConv => {
'1 EV Steps' => 'Step 1 EV',
},
},
'SensitivityType' => {
Description => 'Tipo sensibilità',
PrintConv => {
'ISO Speed' => 'Velocità ISO',
'Recommended Exposure Index' => 'Indice esposizione raccomandato',
'Recommended Exposure Index and ISO Speed' => 'Indice esposizione raccomandato e velocità ISO',
'Standard Output Sensitivity' => 'Sensibilità predefinita uscita',
'Standard Output Sensitivity and ISO Speed' => 'Sensibilità predefinita uscita e velocità ISO',
'Standard Output Sensitivity and Recommended Exposure Index' => 'Sensibilità predefinita uscita e indice esposizione consigliato',
'Standard Output Sensitivity, Recommended Exposure Index and ISO Speed' => 'Sensibilità predefinita uscita, indice esposizione consigliato e velocità ISO',
'Unknown' => 'Sconosciuto',
},
},
'SensorAreas' => 'Aree sensore',
'SensorCleaning' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'SensorHeight' => 'Altezza sensore',
'SensorID' => 'ID sensore',
'SensorLeftBorder' => 'Bordo sinistro sensore',
'SensorMode' => 'Modo sensore',
'SensorPixelSize' => 'Dimensione pixel sensore',
'SensorRedLevel' => 'Livello rosso sensore',
'SensorSize' => 'Dimensione sensore',
'SensorTemperature' => 'Temperatura sensore',
'SensorTopBorder' => 'Bordo superiore sensore',
'SensorType' => 'Tipo sensore',
'SensorTypeCode' => 'Codice tipo sensore',
'SensorWidth' => 'Larghezza sensore',
'Sequence' => 'Sequenza',
'SequenceName' => 'Nome sequenza',
'SequenceNumber' => {
Description => 'Numero sequenza',
PrintConv => {
'n/a' => 'n/d',
},
},
'SequenceShotInterval' => {
PrintConv => {
'10 frames/s' => '10 frame/s',
},
},
'SequentialShot' => {
PrintConv => {
'None' => 'Nessuno',
},
},
'SerialNumber' => 'Numero di serie',
'SerialNumberFormat' => {
Description => 'Formato numero di serie',
PrintConv => {
'Format 1' => 'Formato 1',
'Format 2' => 'Formato 2',
},
},
'ServiceID' => 'ID servizio',
'ServiceIdentifier' => 'Identificativo servizio',
'ServiceOrganizationName' => 'Nome organizzazione servizio',
'SetButtonCrossKeysFunc' => {
PrintConv => {
'Normal' => 'Normale',
},
},
'SetButtonWhenShooting' => {
PrintConv => {
'Change ISO speed' => 'Cambia velocità ISO',
'Change parameters' => 'Cambia parametri',
'ISO speed' => 'Velocità ISO',
'Normal (disabled)' => 'Normale (disabilitato)',
'White balance' => 'Bilanciamento del bianco',
},
},
'SetCookie' => 'Imposta cookie',
'SetFunctionWhenShooting' => {
PrintConv => {
'Change Parameters' => 'Cambia parametri',
},
},
'SetInfo' => 'Imposta info',
'SetSubtitle' => 'Imposta sottotitoli',
'ShadingCompensation' => {
Description => 'Compensazione ombreggiatura',
PrintConv => {
'Off' => 'Spento',
},
},
'ShadingCompensation2' => {
Description => 'Compensazione ombreggiatura 2',
PrintConv => {
'Off' => 'Spento',
},
},
'Shadow' => 'Ombra',
'ShadowCorrection' => {
PrintConv => {
'Normal' => 'Normale',
'Off' => 'Spento',
'Strong' => 'Forte',
},
},
'ShadowScale' => 'Scala ombre',
'Shadows' => 'Ombre',
'ShakeReduction' => {
PrintConv => {
'Off' => 'Spento',
'Off (4)' => 'Spento (4)',
},
},
'SharedData' => 'Dati condivisi',
'Sharpening' => {
PrintConv => {
'Low' => 'Basso',
'Normal' => 'Normale',
'Off' => 'Spento',
},
},
'Sharpness' => {
Description => 'Nitidezza',
PrintConv => {
'Hard' => 'Forte',
'Normal' => 'Normale',
'Soft' => 'Leggera',
'n/a' => 'n/d',
},
},
'SharpnessFaithful' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SharpnessFrequency' => {
PrintConv => {
'Low' => 'Basso',
'n/a' => 'n/d',
},
},
'SharpnessLandscape' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SharpnessMonochrome' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SharpnessNeutral' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SharpnessPortrait' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SharpnessStandard' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SharpnessUnknown' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SharpnessUserDef1' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SharpnessUserDef2' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'SharpnessUserDef3' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ShootingMode' => {
Description => 'Modo scatto',
PrintConv => {
'Aperture Priority' => 'Priorità diaframma',
'Fireworks' => 'Fuochi artificiali',
'Manual' => 'Manuale',
'Normal' => 'Normale',
'Portrait' => 'Verticale',
'Program' => 'Programma',
'Scenery' => 'Paesaggio',
'Shutter Priority' => 'Priorità otturatore',
'Sunset' => 'Tramonto',
},
},
'ShootingModeSetting' => {
Description => 'Impostazione modo scatto',
PrintConv => {
'Self-timer' => 'Autoscatto',
},
},
'ShortComment' => 'Commento breve',
'ShortDescription' => 'Descrizione breve',
'ShortDocumentID' => 'ID documento breve',
'ShortReleaseTimeLag' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'ShotComment' => 'Commento scatto',
'ShotCommentKind' => 'Tipo commento scatto',
'ShotDate' => 'Data scatto',
'ShotDay' => 'Giorno scatto',
'ShotDescription' => 'Descrizione scatto',
'ShotDuration' => 'Durata scatto',
'ShotInfoVersion' => 'Info versione scatto',
'ShotList' => 'Elenco scatti',
'ShotLocation' => 'Posizione scatto',
'ShotLocationSets' => 'Insiemi posizione scatto',
'ShotName' => 'Nome scatto',
'ShotNumber' => 'Numero scatto',
'ShotSize' => 'Dimensione scatto',
'ShutterCount' => 'Conteggio scatti',
'ShutterMode' => {
PrintConv => {
'Aperture Priority' => 'Priorità diaframma',
},
},
'ShutterReleaseButtonAE-L' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ShutterReleaseNoCFCard' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'ShutterSpeed' => 'Tempo esposizione',
'ShutterSpeedRange' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'ShutterSpeedValue' => 'Velocità otturatore',
'SideNumber' => 'Numero lato',
'Sidebars' => 'Barre laterali',
'SimilarityIndex' => 'Indice di Somiglianza',
'SingleFrameBracketing' => {
PrintConv => {
'Low' => 'Basso',
},
},
'Site' => 'Sito',
'Size' => 'Dimensioni',
'SlideShow' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'SlowShutter' => {
PrintConv => {
'None' => 'Nessuno',
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'SlowSync' => {
PrintConv => {
'Off' => 'Spento',
},
},
'SmartRange' => {
PrintConv => {
'Off' => 'Spento',
},
},
'SmileShutter' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Smoothness' => 'Arrotondamento',
'Software' => 'Software utilizzato',
'Source' => 'Origine',
'SourceTitle' => 'Titolo fonte',
'SourceTrackID' => 'ID traccia fonte',
'SourceTrackIDs' => 'ID traccia fonte',
'SourceType' => 'Tipo fonte',
'SourceURL' => 'URL fonte',
'SourceValue' => 'Valore fonte',
'SpatialFrequencyResponse' => 'Risposta in frequenza spaziale',
'SpecialBuild' => 'Compilazione speciale',
'SpecialEffectMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'SpecialEffectSetting' => {
PrintConv => {
'Off' => 'Spento',
},
},
'SpecialEffectsOpticalFilter' => {
PrintConv => {
'None' => 'Nessuno',
'Star' => 'Stella',
},
},
'SpecialInstructions' => 'Istruzioni',
'SpectralSensitivity' => 'Sensibilità spettro',
'Speed' => {
Description => 'Velocità',
PrintConv => {
'Fast' => 'Veloce',
'Medium' => 'Medio',
'Slow' => 'Lento',
},
},
'SpotMeteringMode' => {
PrintConv => {
'Center' => 'Centro',
},
},
'StandardOutputSensitivity' => 'Sensibilità predefinita uscita',
'StartTime' => 'Ora inizio',
'State' => 'Stato',
'StorageMethod' => {
PrintConv => {
'Linear' => 'Lineare',
},
},
'StreamType' => {
PrintConv => {
'File Transfer' => 'Trasferimento file',
'Text' => 'Testo',
},
},
'StretchMode' => {
PrintConv => {
'Fixed length' => 'Lunghezza fissa',
},
},
'StripByteCounts' => 'Byte per striscia',
'StripOffsets' => 'Offset striscia',
'StripRowCounts' => 'Numero righe striscia',
'Sub-location' => 'Località',
'SubSecCreateDate' => 'Data di creazione',
'SubSecDateTimeOriginal' => 'Data/ora originali',
'SubSecModifyDate' => 'Data modifica',
'SubSecTime' => 'Sottosecondi ora',
'SubSecTimeDigitized' => 'Sottosecondi ora digitalizzazione',
'SubSecTimeOriginal' => 'Sottosecondi ora originale',
'SubTileBlockSize' => 'Dimensione blocco sotto-tasselli',
'SubfileType' => {
Description => 'Tipo sotto-file',
PrintConv => {
'Full-resolution Image' => 'Immagine con risoluzione originale',
'Reduced-resolution image' => 'Immagine a risoluzione ridotta',
'Single page of multi-page image' => 'Singola pagina di un\'immagine multi-pagina',
'Single page of multi-page reduced-resolution image' => 'Singola pagina di un\'immagine multi-pagina a risoluzione ridotta',
'TIFF-FX mixed raster content' => 'Contenuto raster misto TIFF-FX',
'TIFF/IT final page' => 'Pagina finale TIFF/IT',
'Thumbnail image' => 'Miniatura',
'Transparency mask' => 'Maschera trasparenza',
'Transparency mask of multi-page image' => 'Maschera trasparenza di immagine multi-pagina',
'Transparency mask of reduced-resolution image' => 'Maschera trasparenza di immagine a risoluzione ridotta',
'Transparency mask of reduced-resolution multi-page image' => 'Maschera trasparenza di immagine multi-pagina a risoluzione ridotta',
'invalid' => 'non valido',
},
},
'SubimageColor' => {
PrintConv => {
'RGB (uncalibrated)' => 'RGB (non calibrato)',
'RGB with Opacity' => 'RGB con opacità',
'RGB with Opacity (uncalibrated)' => 'RGB con opacità (non calibrato)',
},
},
'Subject' => 'Soggetto',
'SubjectArea' => 'Area soggetto',
'SubjectCode' => 'Codice sottetto',
'SubjectDistance' => 'Distanza soggetto',
'SubjectDistanceRange' => {
Description => 'Intervallo distanza soggetto',
PrintConv => {
'Close' => 'Vicino',
'Distant' => 'Lontano',
'Unknown' => 'Sconosciuto',
},
},
'SubjectLocation' => 'Posizione soggetto',
'SubjectName' => 'Nome soggetto',
'SubjectProgram' => {
PrintConv => {
'None' => 'Nessuno',
'Portrait' => 'Verticale',
'Sunset' => 'Tramonto',
'Text' => 'Testo',
},
},
'SubjectReference' => 'Codice Soggetto',
'SubjectUnits' => {
PrintConv => {
'radians' => 'Radianti',
},
},
'Subsystem' => {
Description => 'Sottosistema',
PrintConv => {
'EFI ROM' => 'ROM EFI',
'EFI application' => 'Applicazione EFI',
'EFI boot service' => 'Servizio di avvio EFI',
'EFI runtime driver' => 'Driver a runtine EFI',
'Native' => 'Nativo',
'OS/2 command line' => 'Linea di comando OS/2',
'POSIX command line' => 'Linea di comando POSIX',
'Unknown' => 'Sconosciuto',
'Windows command line' => 'Linea di comando Windows',
},
},
'SubsystemVersion' => 'Versione sottosistema',
'Subtitle' => 'Sottotitolo',
'Suffix' => 'Suffisso',
'SuggestedPalette' => 'Tavolozza suggerita',
'Summary' => 'Sommario',
'SuperMacro' => {
PrintConv => {
'Off' => 'Spento',
},
},
'SuperimposedDisplay' => {
PrintConv => {
'Off' => 'Spento',
},
},
'SupplementalCategories' => 'Categoria Supplementare',
'SupplementalType' => {
PrintConv => {
'Main Image' => 'Non impostato',
'Rasterized Caption' => 'Didascalia rasterizzata',
'Reduced Resolution Image' => 'Risoluzione immagine ridotta',
},
},
'SurroundMode' => {
PrintConv => {
'Not Dolby surround' => 'Non Dolby surround',
'Not indicated' => 'Non indicato',
},
},
'SweepPanoramaDirection' => {
Description => 'Direzione panoramica ad arco',
PrintConv => {
'Left' => 'Sinistra',
'Right' => 'Destra',
},
},
'SweepPanoramaSize' => 'Dimensione panoramica ad arco',
'SwitchToRegisteredAFPoint' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'SynchronizedLyricText' => 'Testo sincronizzato',
'SystemNameOrNumber' => 'Nome/numero sistema',
'T4Options' => {
Description => 'Opzioni T4',
PrintConv => {
'2-Dimensional encoding' => 'Codifica 2D',
'Fill bits added' => 'Bit di riempimento aggiunti',
'Uncompressed' => 'Non compresso',
},
},
'T6Options' => {
Description => 'Opzioni T6',
PrintConv => {
'Uncompressed' => 'Non compresso',
},
},
'T82Options' => 'Opzioni T82',
'T88Options' => 'Opzioni T88',
'TIFFPreview' => 'Anteprima TIFF',
'TIFFSummary' => 'Sommario TIFF',
'TIFF_FXExtensions' => {
Description => 'Estensioni TIFF FX',
PrintConv => {
'B&W JBIG2' => 'JBIG2 bianco e nero',
'JBIG2 Profile M' => 'JBIG2 TIFF FX',
'N Layer Profile M' => 'Livello N profilo M',
'Resolution/Image Width' => 'Risoluzione/larghezza immagine',
'Shared Data' => 'Dati condivisi',
},
},
'Tagged' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'TaggingTime' => 'Ora tag',
'TargetDeltaType' => {
PrintConv => {
'Absolute' => 'Assoluto',
},
},
'TargetPrinter' => 'Stampante di destinazione',
'Technology' => {
Description => 'Tecnologia',
PrintConv => {
'Active Matrix Display' => 'Display a matrice attiva',
'Cathode Ray Tube Display' => 'Monitor con Tubo a Raggi Catodici',
'Digital Camera' => 'Fotocamera Digitale',
'Dye Sublimation Printer' => 'Stampante a Sublimazione Termica',
'Electrophotographic Printer' => 'Stampante Laser',
'Electrostatic Printer' => 'Stampante Elettrostatica',
'Film Scanner' => 'Scanner per Pellicola',
'Ink Jet Printer' => 'Stampante Ink Jet',
'Offset Lithography' => 'Litografía Offset',
'Passive Matrix Display' => 'Display a Matrice passiva',
'Photographic Paper Printer' => 'Stampante per Carta Fotografica',
'Projection Television' => 'Proiettore televisivo',
'Reflective Scanner' => 'Scanner a riflessione',
'Thermal Wax Printer' => 'Stampante Thermal Wax',
},
},
'Teleconverter' => {
PrintConv => {
'None' => 'Nessuno',
},
},
'Temperature' => 'Temperatura',
'Template' => 'Modello',
'TermsOfUse' => 'Termini di utilizzo',
'TestTarget' => {
PrintConv => {
'Grayscale' => 'Scala di grigi',
},
},
'Text' => 'Testo',
'TextColor' => 'Colore testo',
'TextComments' => 'Testo commenti',
'TextEncoding' => {
Description => 'Codifica testo',
PrintConv => {
'n/a' => 'n/d',
},
},
'TextFace' => {
Description => 'Aspetto testo',
PrintConv => {
'Extend' => 'Estendi',
'Italic' => 'Corsivo',
'Shadow' => 'Ombra',
},
},
'TextFont' => {
Description => 'Carattere testo',
PrintConv => {
'System' => 'Sistema',
},
},
'TextLayers' => 'Livelli testo',
'TextSize' => 'Dimenione testo',
'TextStamp' => {
PrintConv => {
'Off' => 'Spento',
},
},
'TextString' => 'Stringa testo',
'TextValue' => 'Valore testo',
'Thresholding' => {
Description => 'Soglia',
PrintConv => {
'No dithering or halftoning' => 'Nessun dithering o resa a mezzi toni',
'Randomized dither' => 'Dither casuale',
},
},
'ThumbnailFileName' => 'Nome file miniatura',
'ThumbnailFormat' => 'Formato miniatura',
'ThumbnailHeight' => 'Miniatura',
'ThumbnailImage' => 'Miniatura',
'ThumbnailImageName' => 'Nome miniatura',
'ThumbnailImageSize' => 'Dimensione miniatura',
'ThumbnailImageType' => 'Tipo miniatura',
'ThumbnailImageValidArea' => 'Area valida miniatura',
'ThumbnailLength' => 'Dimensioni miniatura',
'ThumbnailOffset' => 'Offset miniatura',
'ThumbnailWidth' => 'Larghezza miniatura',
'Thumbnails' => 'Miniature',
'TileByteCounts' => 'Byte tassello',
'TileDepth' => 'Profondità tassello',
'TileLength' => 'Lunghezza tassello',
'TileOffsets' => 'Offset tasselli',
'TileWidth' => 'Larghezza tassello',
'Tiles' => 'Tasselli',
'Time' => 'Ora',
'TimeCreated' => 'Ora di Creazione',
'TimeSent' => 'Ora d\'invio',
'TimeStamp' => 'Marcatura oraria',
'TimeStamp1' => 'Marcatura oraria 1',
'TimeZone' => 'Fuso orario',
'TimeZoneCity' => {
Description => 'Città fuso orario',
PrintConv => {
'London' => 'Londra',
'Tehran' => 'Teheran',
'n/a' => 'n/d',
},
},
'TimeZoneCode' => 'Codice fuso orario',
'TimeZoneInfo' => 'Info fuso orario',
'TimeZoneOffset' => 'Scostamento fuso orario',
'TimerFunctionButton' => {
PrintConv => {
'Self-timer' => 'Autoscatto',
'Shooting Mode' => 'Modo scatto',
'White Balance' => 'Bilanciamento del bianco',
},
},
'TimerLength' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'Tint' => 'Tinta',
'Title' => 'Titolo',
'Title2' => 'Titolo 2',
'TitleKind' => 'Tipo titolo',
'TitleLen' => 'Lungh titolo',
'TitleNum' => 'Num titolo',
'TitleOfParts' => 'Titolo parti',
'TitleSortOrder' => 'Ordinamento titolo',
'TitlesOfParts' => 'Titoli parti',
'TitlesSets' => 'Insiemi di titoli',
'ToDoTitle' => 'Titolo da fare',
'ToneComp' => 'Compensazione Tono',
'ToneCurve' => {
PrintConv => {
'Manual' => 'Manuale',
},
},
'ToneCurveActive' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'ToneCurveName' => {
PrintConv => {
'Linear' => 'Lineare',
'Strong Contrast' => 'Contrasto elevato',
},
},
'ToneCurveProperty' => {
PrintConv => {
'Linear' => 'Lineare',
'Shot Settings' => 'Impostazioni scatto',
},
},
'ToningEffect' => {
PrintConv => {
'Blue-green' => 'Blu-Verde',
'Green' => 'Verde',
'None' => 'Nessuno',
'Purple' => 'Porpora',
'Purple-blue' => 'Porpora-blu',
'Red' => 'Rosso',
'Red-purple' => 'Rosso-porpora',
'Sepia' => 'Seppia',
'Yellow' => 'Giallo',
'n/a' => 'n/d',
},
},
'ToningEffectFaithful' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ToningEffectLandscape' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ToningEffectMonochrome' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Purple' => 'Porpora',
'Sepia' => 'Seppia',
'n/a' => 'n/d',
},
},
'ToningEffectNeutral' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ToningEffectPortrait' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ToningEffectStandard' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'ToningEffectUnknown' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Purple' => 'Porpora',
'Sepia' => 'Seppia',
'n/a' => 'n/d',
},
},
'ToningEffectUserDef1' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Purple' => 'Porpora',
'Sepia' => 'Seppia',
'n/a' => 'n/d',
},
},
'ToningEffectUserDef2' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Purple' => 'Porpora',
'Sepia' => 'Seppia',
'n/a' => 'n/d',
},
},
'ToningEffectUserDef3' => {
PrintConv => {
'Green' => 'Verde',
'None' => 'Nessuno',
'Purple' => 'Porpora',
'Sepia' => 'Seppia',
'n/a' => 'n/d',
},
},
'ToolName' => 'Nome strumento',
'ToolVersion' => 'Versione strumento',
'TotalFrames' => 'Frame totali',
'Track' => 'Traccia',
'TrackProperty' => {
PrintConv => {
'Read only' => 'Sola lettura',
},
},
'TransferFunction' => 'Funzione di trasferimento',
'TransferRange' => 'Intervallo di trasferimento',
'Transform' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Transformation' => {
Description => 'Trasformazione',
PrintConv => {
'Horizontal (normal)' => 'Orizzontale (normale)',
'Mirror horizontal' => 'Rifletti orizzontalmente',
'Mirror horizontal and rotate 270 CW' => 'Rifletti orizzontalmente e ruota di 270° in senso orario',
'Mirror horizontal and rotate 90 CW' => 'Rifletti orizzontalmente e ruota di 90° in senso orario',
'Mirror vertical' => 'Rifletti verticalmente',
'Rotate 180' => 'Ruota di 180°',
'Rotate 270 CW' => 'Ruota di 270° in senso orario',
'Rotate 90 CW' => 'Ruota di 90° senso orario',
},
},
'TransmissionReference' => 'Riferimento trasmissione',
'TransparencyIndicator' => 'Indicatore trasparenza',
'TrapIndicator' => 'Indicatore trap',
'Trapped' => {
PrintConv => {
'False' => 'Falso',
'Unknown' => 'Sconosciuto',
},
},
'TungstenAWB' => {
PrintConv => {
'Strong Correction' => 'Correzione elevata',
},
},
'TxFace' => 'Stile carattere testo',
'TxFont' => 'Numero carattere',
'TxSize' => 'Dimenione testo',
'UIC1Tag' => 'Tag UIC1',
'UIC2Tag' => 'Tag UIC2',
'UIC3Tag' => 'Tag UIC3',
'UIC4Tag' => 'Tag UIC4',
'USPTOOriginalContentType' => {
PrintConv => {
'Color' => 'Colore',
'Grayscale' => 'Scala di grigi',
'Text or Drawing' => 'Testo o disegno',
},
},
'UV-IRFilterCorrection' => {
PrintConv => {
'Not Active' => 'Non attivo',
},
},
'Uncompressed' => {
Description => 'Non compresso',
PrintConv => {
'Yes' => 'Sì',
},
},
'UninitializedDataSize' => 'Dimensione dati non inizializzati',
'UniqueCameraModel' => 'Modello unico fotocamera',
'UniqueDocumentID' => 'ID Unico del Documento',
'Units' => 'Unità',
'Unknown' => 'Sconosciuto',
'Unsharp1Color' => {
PrintConv => {
'Green' => 'Verde',
'Red' => 'Rosso',
'Yellow' => 'Giallo',
},
},
'Unsharp2Color' => {
PrintConv => {
'Green' => 'Verde',
'Red' => 'Rosso',
'Yellow' => 'Giallo',
},
},
'Unsharp3Color' => {
PrintConv => {
'Green' => 'Verde',
'Red' => 'Rosso',
'Yellow' => 'Giallo',
},
},
'Unsharp4Color' => {
PrintConv => {
'Green' => 'Verde',
'Red' => 'Rosso',
'Yellow' => 'Giallo',
},
},
'UnsharpMask' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Urgency' => {
Description => 'Urgenza',
PrintConv => {
'0 (reserved)' => '0 (riservato)',
'1 (most urgent)' => '1 (molto urgente)',
'5 (normal urgency)' => '5 (urgenza normale)',
'8 (least urgent)' => '8 (meno urgent)e',
'9 (user-defined priority)' => '9 (riservato per usi futuri)',
},
},
'UsableMeteringModes' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'UsableShootingModes' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'UserAccess' => {
PrintConv => {
'Print' => 'Stampa',
},
},
'UserComment' => 'Commento utente',
'UserDef1PictureStyle' => {
PrintConv => {
'Landscape' => 'Orizzontale',
'Portrait' => 'Verticale',
},
},
'UserDef2PictureStyle' => {
PrintConv => {
'Landscape' => 'Orizzontale',
'Portrait' => 'Verticale',
},
},
'UserDef3PictureStyle' => {
PrintConv => {
'Landscape' => 'Orizzontale',
'Portrait' => 'Verticale',
},
},
'UserDefinedText' => 'Testo personalizzato',
'UserDefinedURL' => 'URL personalizzato',
'VFDisplayIllumination' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'VRDVersion' => 'Versione VRD',
'VRInfo' => 'Info Riduzione Vibrazione',
'VRInfoVersion' => 'Info Versione VR',
'VR_0x66' => {
PrintConv => {
'Off' => 'Spento',
},
},
'Value' => 'Valore',
'VariousModes' => 'Modi vari',
'VariousModes2' => 'Modi vari 2',
'Version' => 'Numero versione immagine',
'Version2' => 'Versione 2',
'VersionBF' => 'Versione BF',
'VersionCreateDate' => 'Data creazione versione',
'VersionID' => 'ID versione',
'VersionIdentifier' => 'Identificativo versione',
'VersionInfo' => 'Info versione',
'VersionModifyDate' => 'Data modifica versione',
'VersionNumber' => 'Numero versione',
'VersionNumberString' => 'Stringa numero versione',
'VersionTitle' => 'Titolo versione',
'VersionYear' => 'Anno versione',
'Versions' => 'Versioni',
'VerticalCSType' => {
PrintConv => {
'Caspian Sea' => 'Mar Caspio',
'WGS 84 ellipsoid' => 'Ellissoide WGS 84',
},
},
'VerticalUnits' => 'Unità verticali',
'VibrationReduction' => {
Description => 'Riduzione vibrazione',
PrintConv => {
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'VideoAlphaMode' => {
PrintConv => {
'None' => 'Nessuno',
},
},
'VideoAttributes' => {
PrintConv => {
'Encrypted' => 'Crittografato',
},
},
'VideoBitrate' => 'Bitrate video',
'VideoCardGamma' => 'Gamma della Scheda Video',
'VideoCodec' => 'Codec video',
'VideoCodecDescription' => 'Descrizione codec video',
'VideoCodecID' => 'ID codec video',
'VideoCodecInfo' => 'Info codec video',
'VideoCodecName' => 'Nome codec video',
'VideoFieldOrder' => {
PrintConv => {
'Progressive' => 'Progressivo',
},
},
'VideoQuality' => {
PrintConv => {
'Low' => 'Basso',
},
},
'VideoScanType' => {
PrintConv => {
'Progressive' => 'Progressivo',
},
},
'VideoStreamType' => {
PrintConv => {
'Reserved' => 'Riservato',
},
},
'ViewInfoDuringExposure' => {
PrintConv => {
'Enable' => 'Abilita',
},
},
'ViewfinderWarning' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ViewingCondDesc' => 'Descrizione Condizioni di Visualizzazione',
'ViewingMode2' => {
PrintConv => {
'n/a' => 'n/d',
},
},
'VignetteControl' => {
PrintConv => {
'Low' => 'Basso',
'Normal' => 'Normale',
'Off' => 'Spento',
},
},
'VignettingCorrection' => {
PrintConv => {
'Off' => 'Spento',
'n/a' => 'n/d',
},
},
'VirtualImageHeight' => 'Altezza immagine virtuale',
'VirtualImageWidth' => 'Larghezza immagine virtuale',
'VirtualPageUnits' => 'Unità pagina virtuale',
'VoiceMemo' => {
PrintConv => {
'Off' => 'Spento',
},
},
'WBAdjLighting' => {
PrintConv => {
'Daylight (direct sunlight)' => 'Luce del giorno (0)',
'Daylight (shade)' => 'Luce del giorno (1)',
'Daylight (cloudy)' => 'Luce del giorno (2)',
'None' => 'Nessuno',
},
},
'WBBracketMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'WBFineTuneActive' => {
PrintConv => {
'Yes' => 'Sì',
},
},
'WCSProfiles' => 'Profilo Windows Color System',
'WhiteBalance' => {
Description => 'Bilanciamento del bianco',
PrintConv => {
'Auto' => 'Equilibrio del bianco automatico',
'Black & White' => 'Monocromatico',
'Cloudy' => 'Nuvoloso',
'Color Temperature/Color Filter' => 'Temperatura colore / Filtro colore',
'Cool White Fluorescent' => 'Fluorescente bianca fredda',
'Custom' => 'Personalizzato',
'Custom 1' => 'PERSONAL.1',
'Custom 2' => 'PERSONAL.2',
'Custom 3' => 'PERSONAL.3',
'Custom 4' => 'PERSONAL.4',
'Day White Fluorescent' => 'Fluorescente a luce del giorno bianca',
'Daylight' => 'Luce del giorno',
'Daylight Fluorescent' => 'Fluorescente a luce del giorno',
'Fluorescent' => 'Fluorescente',
'Manual' => 'Manuale',
'Shade' => 'Ombrato',
'Tungsten' => 'Tungsteno (luce incandescente)',
'Unknown' => 'Sconosciuto',
'Warm White Fluorescent' => 'Luce fluorescente bianca calda',
'White Fluorescent' => 'Fluorescente bianca',
},
},
'WhiteBalance2' => 'Bilanciamento del bianco 2',
'WhiteBalanceAdj' => {
Description => 'Adattamento bilanciamento bianco',
PrintConv => {
'Cloudy' => 'Nuvoloso',
'Daylight' => 'Luce del giorno',
'Fluorescent' => 'Fluorescente',
'Off' => 'Spento',
'Shade' => 'Ombrato',
'Shot Settings' => 'Impostazioni scatto',
'Tungsten' => 'Tungsteno (luce incandescente)',
},
},
'WhiteBalanceAutoAdjustment' => {
Description => 'Adattamento automatico bilanciamento bianco',
PrintConv => {
'Off' => 'Spento',
},
},
'WhiteBalanceBracketing' => {
PrintConv => {
'Low' => 'Basso',
'Off' => 'Spento',
},
},
'WhiteBalanceFineTune' => 'Regolazione Fine Bilanciamento Bianco',
'WhiteBalanceMode' => {
PrintConv => {
'Unknown' => 'Sconosciuto',
},
},
'WhiteBalanceSet' => {
PrintConv => {
'Cloudy' => 'Nuvoloso',
'Daylight' => 'Luce del giorno',
'Daylight Fluorescent' => 'Fluorescente a luce del giorno',
'Manual' => 'Manuale',
'Shade' => 'Ombrato',
'Tungsten' => 'Tungsteno (luce incandescente)',
'White Fluorescent' => 'Fluorescente bianca',
},
},
'WhiteBalanceSetting' => {
PrintConv => {
'Fluorescent (+1)' => 'Fluorescente (+1)',
'Fluorescent (+2)' => 'Fluorescente (+2)',
'Fluorescent (+3)' => 'Fluorescente (+3)',
'Fluorescent (-1)' => 'Fluorescente (-1)',
'Fluorescent (-2)' => 'Fluorescente (-2)',
'Fluorescent (-3)' => 'Fluorescente (-3)',
'Fluorescent (0)' => 'Fluorescente (0)',
'Shade (+1)' => 'Ombrato (+1)',
'Shade (+2)' => 'Ombrato (+2)',
'Shade (+3)' => 'Ombrato (+3)',
'Shade (-1)' => 'Ombrato (-1)',
'Shade (-2)' => 'Ombrato (-2)',
'Shade (-3)' => 'Ombrato (-3)',
'Shade (0)' => 'Ombrato (0)',
},
},
'WhiteLevel' => 'Livello bianco',
'WhitePoint' => 'Punto bianco',
'WideRange' => {
PrintConv => {
'Off' => 'Spento',
},
},
'WidthResolution' => 'Risoluzione larghezza',
'Writer-Editor' => 'Autore Didascalia/Descrizione',
'XMethod' => {
PrintConv => {
'No Magnification' => 'Nessun ingrandimento',
},
},
'XPAuthor' => 'Autore',
'XPComment' => 'Commento XP',
'XPKeywords' => 'Parole chiave XP',
'XPSubject' => 'Soggetto XP',
'XPTitle' => 'Titolo XP',
'XPosition' => 'Posizione X',
'XResolution' => 'Risoluzione orizzontale immagine',
'YCbCrCoefficients' => 'Coefficienti matrice trasformazione spazio colori',
'YCbCrPositioning' => {
Description => 'Posizionamento Y e C',
PrintConv => {
'Centered' => 'Centrato',
'Co-sited' => 'Affiancato',
},
},
'YCbCrSubSampling' => 'Indice sottocampionamento da Y a C',
'YMethod' => {
PrintConv => {
'No Magnification' => 'Nessun ingrandimento',
},
},
'YPosition' => 'Posizione Y',
'YResolution' => 'Risoluzione verticale immagine',
'Year' => 'Anno',
'ZipCompression' => {
PrintConv => {
'None' => 'Nessuno',
'Reduced with compression factor 1' => 'Ridotto con fattore compressione 1',
'Reduced with compression factor 2' => 'Ridotto con fattore compressione 2',
'Reduced with compression factor 3' => 'Ridotto con fattore compressione 3',
'Reduced with compression factor 4' => 'Ridotto con fattore compressione 4',
},
},
'ZoneMatching' => {
Description => 'Adeguamento zona',
PrintConv => {
'High Key' => 'Hi',
'ISO Setting Used' => 'Impostazione ISO usata',
'Low Key' => 'Lo',
},
},
'ZoneMatchingMode' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ZoneMatchingOn' => {
PrintConv => {
'Off' => 'Spento',
},
},
'ZoomCenter' => 'Centro zoom',
'ZoomFactor' => 'Fattore di zoom',
'ZoomPos' => 'Posizione zoom',
'iTunesU' => 'ITunes U',
);
1; # end
__END__
=head1 NAME
Image::ExifTool::Lang::it.pm - ExifTool Italian language translations
=head1 DESCRIPTION
This file is used by Image::ExifTool to generate localized tag descriptions
and values.
=head1 AUTHOR
Copyright 2003-2018, Phil Harvey (phil at owl.phy.queensu.ca)
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 ACKNOWLEDGEMENTS
Thanks to Jens Duttke, Ferdinando Agovino, Emilio Dati and Michele Locati
for providing this translation.
=head1 SEE ALSO
L<Image::ExifTool(3pm)|Image::ExifTool>,
L<Image::ExifTool::TagInfoXML(3pm)|Image::ExifTool::TagInfoXML>
=cut
|