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
|
domain "ES_SCRIPTS"
#
#==============================
# <WS>/packages/Setup/es-inst
#==============================
msgid "You need to be root before running this program.\n"
msgstr "ȢЩǿȩҳ root\n"
msgid "Can not remove the directory /tmp/SunMC30Install\n"
msgstr " /tmp/SunMC30Install\n"
msgid "Can not create the directory /tmp/SunMC30Install/sbin\n"
msgstr "ǡ /tmp/SunMC30Install/sbin\n"
msgid "Can not copy the required files to /tmp/SunMC30Install\n"
msgstr "̯ /tmp/SunMC30Install\n"
msgid "Can not open the display. Either X server is not allowing\n"
msgstr " Either X server is not allowing\n"
msgid "the connection or you are running it from console login.\n"
msgstr "ϯƺīơ\n"
msgid "Please read Sun Management Center installation Readme and\n"
msgstr " Sun Management Center Readme \n"
msgid "run installation as mentioned.\n"
msgstr "ҡ\n"
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Do you want to create it?"
msgstr "ǡ"
msgid " Space calculations will be wrong."
msgstr " Ϩȴ먡"
msgid "Insufficient disk space to install the requested Sun Management Center components"
msgstr "ȴϨƫ Sun Management Center ǵ"
msgid " - Respecify the components to install so it takes less space"
msgstr " - ģ́ŷϨ"
msgid " - Uninstall some existing packages to make room for Sun Management Center"
msgstr " - ġܢȴաϨ Sun Management Center"
msgid " - Make a soft link for $2 that points to more space"
msgstr " - ҳ $2 ܨġԶڰ̱Ϩ"
msgid " - Ask your system administrator for help"
msgstr " - ˷ܡɷ"
msgid "Package $2 is already installed on this system."
msgstr "Ⱥ˷ĸħ $2"
msgid "Please verify the platform for package: $2"
msgstr "ƺ$2"
msgid "Found: $2"
msgstr "̯$2"
msgid "Skipping package $2"
msgstr " $2"
msgid "There appear to be some permission problems with the installation"
msgstr "ĸƫȴġƫ"
msgid "directory: $2"
msgstr "$2"
msgid "In order to install Sun Management Center, root must be able to write to the"
msgstr " Sun Management Centerroot ϯ̦ȴ"
msgid "installation directory and own the files in that directory."
msgstr "īƫ⡢ȴĶ"
msgid "Please check your configuration and try again."
msgstr "ܡ"
msgid "Exiting Sun Management Center installation."
msgstr " Sun Management Center ʩ"
msgid "Error: Cannot find pack key $2."
msgstr "먡̯ $2"
msgid "There are $2 layers for your selection:"
msgstr "ȴ $2 Զȹ"
msgid "No layers were selected for installation."
msgstr "ȴ̽ȹ"
msgid "No layers were found for installation."
msgstr "̯ȹ"
msgid "No packs are defined in the installation configuration file."
msgstr "ա"
msgid "Please select the packs to install:"
msgstr "̽ա"
msgid "No packs were selected for installation."
msgstr "̽ա"
msgid "Error: Cannot find component key $2."
msgstr "먡̯ǵ $2"
msgid "Error: Cannot find key $2."
msgstr "먡̯ $2"
msgid " Component $2 has already been installed."
msgstr " ǵ $2"
msgid " The corresponding packages are: $2"
msgstr " ҳ$2"
msgid " Invalid source directory."
msgstr " 硤"
msgid "Source directory: $2"
msgstr "硨$2"
msgid "Invalid parameter for productExists\\\(\\\): $2"
msgstr " productExists ٶ\\\(\\\)$2"
msgid "Production Environment Installation"
msgstr "ܨ"
msgid "Developer Environment Installation"
msgstr "ĩ"
msgid "Cannot find $2."
msgstr "̯ $2"
msgid "Invalid License, please buy a valid license."
msgstr "桢ȴ⡤"
msgid " Invalid entry."
msgstr " "
msgid " Installation configuration files not found."
msgstr " ̯"
msgid "You can install only agent components on Solaris 2.5.1"
msgstr "ƫƷ Solaris 2.5.1 ĸܡȢǵ"
msgid "Select one of the following:"
msgstr "̽Ķġ"
msgid "\\\(1\\\) Production Environment \\\(PE\\\)"
msgstr "\\\(1\\\) ܨ \\\(PE\\\)"
msgid "\\\(2\\\) Developer Environment \\\(DE\\\)"
msgstr "\\\(2\\\) ĩ \\\(DE\\\)"
msgid "Some components have already been installed in $2"
msgstr " $2 ħšǵ"
msgid "The target directory will be set to $2"
msgstr "ҳ $2"
msgid "Cannot create the directory $2"
msgstr "ǡ $2"
msgid "Target directory: $2"
msgstr "硨$2"
msgid "Package $2 is already installed."
msgstr " $2 ҡ"
msgid "Package not found: $2"
msgstr "̯ա$2"
msgid "Error: Cannot find pack key $2."
msgstr "먡̯ $2"
msgid "Pack: $2"
msgstr "ա$2"
msgid " Please select the components to install:"
msgstr " ̽ǵ"
msgid " Component $2 is essential and will be automatically installed."
msgstr " $2 ҳǵٯҡ"
msgid " Component $2 has already been installed."
msgstr " ǵ $2"
msgid " The corresponding packages are: $2"
msgstr " ҳ$2"
msgid " Component $2 is dependent on: $3"
msgstr " ǵ $2 ʡ$3"
msgid " The component\\\(s\\\) will be automatically installed."
msgstr " ǵٯҡ"
msgid " Selected Components: $2"
msgstr " ̽ǵ$2"
msgid " Selected Components: \\\<default\\\>"
msgstr " ̽ǵ\\\<\\\>"
msgid " Warning - Could not find pkgmap file for $2"
msgstr " - ̯ $2 pkgmap "
msgid "Warning - Could not find the pkgmap file for $2"
msgstr " - ̯ $2 pkgmap "
msgid "Warning - Could not find the pkgmap file for $2"
msgstr " - ̯ $2 pkgmap "
msgid "Checking disk space..."
msgstr "Ϩ..."
msgid "Insufficient disk space to install Sun Management Center Database Software"
msgstr "ȴϨƫ Sun Management Center ջ"
msgid "Sun Management Center DB application software requires: $2 Kbytes"
msgstr "Sun Management Center DB ȢϨ桨$2 KB"
msgid "The installation directory \\\"$2\\\" has: $3 Kbytes"
msgstr " \\\"$2\\\" ȴϨ桨$3 KB"
msgid "Please supply a directory."
msgstr "硤"
msgid "Insufficient disk space to install Sun Management Center Database Dbfiles"
msgstr "ȴϨƫ Sun Management Center ջ Db "
msgid "Sun Management Center DB application software requires: $2 Kbytes"
msgstr "Sun Management Center DB ȢϨ桨$2 KB"
msgid "The installation directory \\\"$2\\\" has: $3 Kbytes"
msgstr " \\\"$2\\\" ȴϨ桨$3 KB"
msgid "Please supply a directory."
msgstr "硤"
msgid "Disk Space Requirements:"
msgstr "Ϩ塨"
msgid "Space required \\\(in $2\\\): $3 blocks."
msgstr "Ϩ \\\($2 \\\)$3 Զٴۡ"
msgid "Space available \\\(in $2\\\): $3 blocks."
msgstr "ƫϨ \\\($2 \\\)$3 Զٴۡ"
msgid "Insufficient space available in $2"
msgstr "$2 ƫϨ"
msgid "Here are some possible fixes to alleviate the disk space problem:"
msgstr "ĶҳƫϨΡ"
msgid "\\\"$2\\\" resides on CD \\\#$3."
msgstr "\\\"$2\\\" \\\#$3 ĸ"
msgid "New source directory: $2"
msgstr "硨$2"
msgid "Invalid directory."
msgstr "硤"
msgid "Installing the components..."
msgstr "ǵ..."
msgid "Error installing package: $2"
msgstr "먡$2"
msgid "The package $2 is already installed"
msgstr " $2"
msgid " Selection Summary"
msgstr " "
msgid "Looking for addon products on CD \\\#2..."
msgstr " CD \\\#2 ĸܨ..."
msgid "New source directory: $2"
msgstr "硨$2"
msgid " Sun Management Center 3.0 Addons Product Selection: "
msgstr " Sun Management Center 3.0 ܨ塨 "
msgid "Installing the product: $2"
msgstr "ܨ¡$2"
msgid "Cannot find pkginfo file for package: $2"
msgstr "̯ pkginfo $2"
msgid "Error installing package: $2"
msgstr "먡$2"
msgid "Supports: $2 - $3"
msgstr "Ρ$2 - $3"
msgid "Supports: $2"
msgstr "Ρ$2"
msgid "Name: $2"
msgstr "ꢡ$2"
msgid "Description: $2"
msgstr "$2"
msgid "Unsupported OS version: $2"
msgstr " OS ۡ$2"
msgid "No components to install."
msgstr "ȴǵ"
msgid "A previous version of Sun Management Center exists."
msgstr "ȴ Sun Management Center 㡤"
msgid "Please uninstall it locally in \\\"$2\\\"."
msgstr "ҡ \\\"$2\\\" 㡿"
msgid "Cannot find $2"
msgstr "̯ $2"
msgid "Error copying the locale files to: $2"
msgstr "̯Ķ먡$2"
msgid "Setup script will use English."
msgstr " script ơ"
msgid "Please run setup locally in \\\"$2\\\"."
msgstr " \\\"$2\\\" 㡿"
msgid "ESROOT is not set."
msgstr " ESROOT"
msgid "Invalid directory: $2"
msgstr "硨$2"
msgid "Invalid file: $2"
msgstr "$2"
msgid "Both -S and -T options must be specified"
msgstr "-S -T ̥Զ"
msgid "This script will help you to install the Sun Management Center software."
msgstr " script ̶ɷ Sun Management Center ա"
msgid "Do you want to install this package now?"
msgstr "ǡɻȺա"
msgid " Do you want to proceed?"
msgstr " "
msgid " Do you want to install components in layer: $2?"
msgstr " Ķȹǵ$2?"
msgid " Do you want to install $2?"
msgstr " $2"
msgid "Do you want to install the product: $2?"
msgstr "Ⱥܨ¡$2?"
msgid "Do you want to install this package now?"
msgstr "ǡɻȺա"
msgid "Would you like to uninstall it now?"
msgstr "ǡɻá"
msgid "Would you like to save your old data?"
msgstr "á"
msgid "Do you want to run setup now?"
msgstr "ǡɻҡ"
msgid "Please enter the source directory:"
msgstr "ī硨"
msgid "Enter the development system license: "
msgstr "ī˷⡨ "
msgid "Enter your choice: [1\\\|2]"
msgstr "ī塨[1\\\|2]"
msgid "Please enter the target directory [$2]:"
msgstr "ī [$2]"
msgid "Enter the directory to install the database: "
msgstr "īջ硨 "
msgid "Please insert the second CD or enter the source directory from disk 2 \\\[$2\\\]"
msgstr "īĨگ CD ī 2 \\\[$2\\\]"
msgid "Please enter the new source directory:"
msgstr "ī硨"
msgid "Please enter the OS version for \\\"$2\\\" \\\[$3\\\]: "
msgstr "ī \\\"$2\\\" OS \\\[$3\\\] "
msgid "Please enter the platform for \\\"$2\\\" \\\[$3\\\]: "
msgstr "ī \\\"$2\\\" ƺ \\\[$3\\\] "
msgid "Log file: $2"
msgstr "$2"
msgid " End of Installation "
msgstr " "
msgid "For installing Sun Management Center on $2, we need to know the"
msgstr "ҳħ Sun Management Center $2 ĸʼԯϡ"
msgid "operating system on $2. This should be the output of the command"
msgstr "$2 ĸɢ˷ӡ"
msgid "/usr/bin/uname -r. The command must be executed on a machine booted with"
msgstr "/usr/bin/uname -r Ϊ"
msgid "disk mounted on $2"
msgstr " $2 ٯĸ硤"
msgid "For installing Sun Management Center on $2, we need to know the"
msgstr "ҳħ Sun Management Center $2 ĸʼԯϡ"
msgid "machine type of machine whose root filesystem is or will be mounted on $2."
msgstr "̧˷ɻ $2 ĸΡ"
msgid "This should be the output of the following command"
msgstr "ĶΪ"
msgid " /usr/platform/PLATFORM/sbin/prtdiag \\\| /usr/bin/head -1 \\\| /usr/bin/cut -f2 -d:"
msgstr " /usr/platform/PLATFORM/sbin/prtdiag \\\| /usr/bin/head -1 \\\| /usr/bin/cut -f2 -d:"
msgid "Please note that the above commands must be executed on the target machine."
msgstr "ĸĸ硤"
msgid "Would you like to migrate your 2.x data?"
msgstr " 2.x á"
msgid "A previous version of Sun Management Center Data exists."
msgstr "ȴ Sun Management Center 㡤"
msgid "This will remove all files under $2. If you have any custom"
msgstr " $2 ĶȴΪԶĶȴ"
msgid "scripts under this directory, please move them to an alternate location"
msgstr "Ƕ scriptsЩԯ"
msgid "before proceeding."
msgstr "̯"
msgid "Do you wish to continue with the removal of the existing 2.x data"
msgstr "ܢȴ 2.x "
#
#===============================
# <WS>/packages/Setup/es-setup
#===============================
msgid "Setup of $2 component failed."
msgstr " $2 ǵ"
msgid "Exiting setup."
msgstr ""
msgid "The Sun Management Center Setup File \\\($2\\\)$3"
msgstr "Sun Management Center \\\($2\\\)$3"
msgid " is missing. Cannot Setup Sun Management Center $2."
msgstr " ¡ Sun Management Center $2"
msgid "Initiating setup for Sun Management Center $2 Component."
msgstr " Sun Management Center $2 ǵ "
msgid "Please read the release notes to configure the device type."
msgstr "Ρ"
msgid "Using log file: $2."
msgstr "$2."
msgid " Sun Management Center Setup Program"
msgstr " Sun Management Center Ȣ"
msgid "This program does setup of Sun Management Center components that are installed on your system."
msgstr "ȺȢ˷ĸ Sun Management Center ǵ"
msgid "Checking for Sun Management Center components installed on your system."
msgstr "˷ĸ Sun Management Center ǵ"
msgid "You Do not have any Sun Management Center components installed."
msgstr "Ƕ Sun Management Center ǵ"
msgid "You may want to run setup after installing"
msgstr " Sun Management Center ǵѥƫ"
msgid " the Sun Management Center components."
msgstr " Ȣ"
msgid "You have the following Sun Management Center components installed"
msgstr "ħĶ Sun Management Center ǵ"
msgid " Sun Management Center Server"
msgstr " Sun Management Center Τ"
msgid " Sun Management Center Agent"
msgstr " Sun Management Center ܡȢ"
msgid " Sun Management Center Console"
msgstr " Sun Management Center ƺ"
msgid "This script will perform the setup for each of these components"
msgstr " Script ҳǵʩ"
msgid "Core Sun Management Center setup complete."
msgstr " Sun Management Center ܫ"
msgid "Setup of Sun Management Center addons incomplete. Exiting"
msgstr " Sun Management Center ȩ Exiting"
msgid "Sun Management Center setup complete."
msgstr " Sun Management Center ܫ"
msgid "Problems occured with setup of the following addons: $2"
msgstr "Ķ$2"
msgid "Setup log stored in $2"
msgstr " $2 "
msgid "A minimum of 256 MB RAM is required to run Sun Management Center."
msgstr "ŷȴ 256 MB RAM Sun Management Center"
msgid "Current system has $2 MB RAM."
msgstr "Щ˷̦ȴ $2 MB RAM"
msgid "Can not continue to setup Sun Management Center DB."
msgstr " Sun Management Center DB"
msgid "Checking /etc/system file..."
msgstr " /etc/system ..."
msgid "Checking memory available..."
msgstr "ƫش..."
msgid "Checking /etc/system file error. It can not be updated."
msgstr " /etc/system 먡 It can not be updated."
msgid "The /etc/system file needs to be changed for Sun Management Center DB requirements."
msgstr " /etc/system Sun Management Center DB 塤"
msgid "Backing up /etc/system to /etc/system.SunMCDB.backup"
msgstr "ެǹ /etc/system to /etc/system.SunMCDB.backup"
msgid "/etc/system file has not been changed."
msgstr " /etc/system file "
msgid "In order for kernel variable changes to take effect, this "
msgstr "ҳ桢ٯ"
msgid "machine must be rebooted. You must reboot this machine now"
msgstr "檡ǡɻٯ"
msgid "and then run the setup again."
msgstr "ѥԶʩ"
msgid "Cannot create link $2 to directory $3"
msgstr "ǡͻ $3 $2"
msgid "Sun Management Center DB setup cannot continue."
msgstr "Sun Management Center DB ʩ"
msgid "Error changing ownership of $2 to root. Installation cannot continue."
msgstr " $2 ȴҳ root ɢ먡ҡ"
msgid "Configuring Sun Management Center DB listener and service files..."
msgstr " Sun Management Center DB Τ٭..."
msgid "The default listener port $2 for Sun Management Center DB has already been used."
msgstr "Sun Management Center DB $2 ݷ"
msgid "Please input another port number for Sun Management Center DB listener."
msgstr "īƶġԶ Sun Management Center DB "
msgid "Error in resetting the configuration files for Sun Management Center DB."
msgstr " Sun Management Center DB 먡"
msgid "Linking database, Please wait"
msgstr "ջԷ"
msgid "in the event of error, see /tmp/relink.log"
msgstr "ǵ㡢ٶ /tmp/relink.log"
msgid "Create ora passord file"
msgstr "ǡ ora "
msgid "/usr/bin/make is needed on Sun Management Center server machine. The current"
msgstr "Sun Management Center Τĸȴ /usr/bin/makeЩ"
msgid "failed to create internal user password file : $2"
msgstr "ǡϯ$2"
msgid "does not have it. Please make this file available and run setup again"
msgstr "ȴԶҳƫѥʩ"
msgid "execution of make -f ins_net_server.mk install failed"
msgstr "make -f ins_net_server.mk install "
msgid "see /tmp/make.log file for details"
msgstr "ٶ /tmp/make.log ع"
msgid "Database setup failed : $2 does not exist"
msgstr "ջ$2 "
msgid "Database setup failed : mkaggregatefiles.ksh failed"
msgstr "ջmkaggregatefiles.ksh "
msgid "Database setup failed : db-start failed"
msgstr "ջdb-start "
msgid "Please wait, Sun Management Center database setup in progress. It may take 15 to 20 minutes"
msgstr "Է Sun Management Center ջƫĸ 15 ̯ 20 š"
msgid "Database setup failed : build-smc-oracle-recovery.ksh failed"
msgstr "ջbuild-smc-oracle-recovery.ksh "
msgid "Please wait, Sun Management Center database setup in progress. It may take 15 to 20 minutes"
msgstr "Է Sun Management Center ջƫĸ 15 ̯ 20 š"
msgid "Database setup failed : build-smc-oracle-recovery.ksh failed"
msgstr "ջbuild-smc-oracle-recovery.ksh "
msgid "Found symon 2.x import data"
msgstr "̯ symon 2.x ī"
msgid "about to import symon 2.x data"
msgstr "ī symon 2.x "
msgid "cannot find the 2.x import script file $2"
msgstr "̯ 2.x ī Script $2"
msgid "will not import symon 2.x data"
msgstr "ī symon 2.x "
msgid "Database setup failed : db-stop failed"
msgstr "ջdb-stop "
msgid "A problem occured with $2 setup. Do you want to continue?"
msgstr " $2 ܢ"
msgid " Do you wish to update /etc/system file?"
msgstr " /etc/system "
msgid "A problem occured with $2 setup. Do you want to continue?"
msgstr " $2 ܢ"
msgid " Do you wish to keep any existing topology and event data"
msgstr " Ƕܢůǵ"
msgid " Do you want to perform a symon 2.x data import?"
msgstr " symon 2.x ī"
msgid "Do you want to start Sun Management Center agent and server components now"
msgstr "ǡɻٯ Sun Management Center ܡȢΤǵ"
msgid "Do you want to start Sun Management Center agent now"
msgstr "ǡɻٯ Sun Management Center ܡȢ"
msgid "Error: It seems the file $2 is not writable, could not update the file."
msgstr "먡 $2 ī"
msgid "Configuring the system for setup, please wait."
msgstr "˷Է"
#
#===============================
# <WS>/packages/Setup/db-start
#===============================
msgid "Listener and Database are up and running\n"
msgstr "ջɳɢ\n"
msgid "the current sid \n"
msgstr "Щ sid \n"
msgid "the current orahome \n"
msgstr "Щ orahome \n"
msgid "unknown system type, exiting......................\n"
msgstr "˷......................\n"
msgid "getHostName: failed to obtain current host from hostname command\n"
msgstr "getHostNameڷ hostname ̽ڵЩ\n"
msgid "current host : $2\n"
msgstr "Щ$2\n"
msgid "getUserName: failed to obtain user name from id command\n"
msgstr "getUserNameڷ id ̽ڵϯ\n"
msgid "current user name : $2\n"
msgstr "Щϯꢡ$2\n"
msgid "getUserGroup: failed to obtain user group from id command\n"
msgstr "getUserGroupڷ id ̽ڵ\n"
msgid "current user group : $2\n"
msgstr "Щϯڡ$2\n"
msgid "path_app : $2\n"
msgstr "path_app :$2\n"
msgid "found $2 on path in $3\n"
msgstr " $3 ̯ $2\n"
msgid "can not find $2 on path, exiting.......................\n"
msgstr "ĸ̯ $2.......................\n"
msgid "verifyDatabaseUp: failed to obtain instance process info from ps\n"
msgstr "verifyDatabaseUpڷ ps ̽ڵݨܡʩ\n"
msgid "verifyDatabaseUp: instance is executing\n"
msgstr "verifyDatabaseUp\n"
msgid "verifyDatabaseUp: instance is not executing\n"
msgstr "verifyDatabaseUp\n"
msgid "verifyDatabaseDown: failed to obtain instance process info from ps\n"
msgstr "verifyDatabaseDownڷ ps ̽ڵݨܡʩ\n"
msgid "verifyDatabaseDown: instance is executing\n"
msgstr "verifyDatabaseDown\n"
msgid "verifyDatabaseDown: instance is not executing\n"
msgstr "verifyDatabaseDown\n"
msgid "verifyListenerUp: failed to obtain listener process info from ps\n"
msgstr "verifyListenerUpڷ ps ̽ڵݨܡع\n"
msgid "verifyListenerUp: listener $2 is execution\n"
msgstr "verifyListenerUp $2 \n"
msgid "verifyListenerUp: listener $2 is not execution\n"
msgstr "verifyListenerUp $2 \n"
msgid "verifyListenerDown: failed to obtain listener process info from ps\n"
msgstr "verifyListenerDownڷ ps ̽ڵݨܡع\n"
msgid "verifyListenerDown: listener $2 is execution\n"
msgstr "verifyListenerDown $2 \n"
msgid "verifyListenerDown: listener $2 is not execution\n"
msgstr "verifyListenerDown $2 \n"
msgid "verifyFilesystemPerm: failed to obtain filesystem info from df\n"
msgstr "verifyFilesystemPermڷ df ̽ڵ˷ع\n"
msgid "verifyFilesystemPerm: failed to obtain filesystem info from df\n"
msgstr "verifyFilesystemPermڷ df ̽ڵ˷ع\n"
msgid "verifyFilesystemPerm: failed to obtain filesystem info from mount comma\n"
msgstr "verifyFilesystemPermڷ comma ̽ڵ˷ع\n"
msgid "verifyFilesystemPerm: filesystem $2 is not mounted setuid\n"
msgstr "verifyFilesystemPerm˷ $2 setuid\n"
msgid " must re-mount the filesystem with setuid enabled\n"
msgstr " setuid ٯ˷\n"
msgid "verifyFilesystemPerm: filesystem $2 is mounted setuid, OK\n"
msgstr "verifyFilesystemPerm˷ $2 setuid\n"
msgid "verifyListenerStatus: failed to obtain listener status for alias: $2\n"
msgstr "verifyListenerStatusҳĶɱ̽ڵ表$2\n"
msgid "verifyListenerStatus: listener status is good for alias: $2\n"
msgstr "verifyListenerStatusĶɱ$2\n"
msgid "verifyListenerStatus: listener status is not good for alias: $2\n"
msgstr "verifyListenerStatusĶɱ$2\n"
msgid "the specified path \\\($2\\\) does not exist\n"
msgstr " \\\($2\\\) \n"
msgid "tmpdir \n"
msgstr "tmpdir \n"
msgid "verifyGoodOraclePermOwnership: failed to obtain accessperms from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵ̽$2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain username from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵϯꢡ$2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain groupname from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵꢡ$2\n"
msgid "verifyGoodOraclePermOwnership: access perms for \\\($2\\\) is not at least 755\n"
msgstr "verifyGoodOraclePermOwnership \\\($2\\\) ̽ŷ 755\n"
msgid "verifyGoodOraclePermOwnership: access perms ok\n"
msgstr "verifyGoodOraclePermOwnership̽ڦ\n"
msgid "verifyGoodOraclePermOwnership: owner \\\($2\\\) of $3 is not $4\n"
msgstr "verifyGoodOraclePermOwnership$3 ȴϯ \\\($2\\\) $4\n"
msgid "verifyGoodOraclePermOwnership: owner ok\n"
msgstr "verifyGoodOraclePermOwnershipȴϯڦ\n"
msgid "verifyGoodOraclePermOwnership: group \\\($2\\\) of $3 is not $4\n"
msgstr "verifyGoodOraclePermOwnership$3 \\\($2\\\) $4\n"
msgid "verifyGoodOraclePermOwnership: group ok\n"
msgstr "verifyGoodOraclePermOwnershipڦ\n"
msgid "**** directory : $2 does not exist\n"
msgstr "**** 硨$2 \n"
msgid "loop: current new $2\n"
msgstr "Щ $2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain accessperms from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵ̽$2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain username from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵϯꢡ$2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain groupname from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵꢡ$2\n"
msgid "verifyGoodOraclePermOwnership: access perms for \\\($2\\\) is not at least 755\n"
msgstr "verifyGoodOraclePermOwnership \\\($2\\\) ̽ŷ 755\n"
msgid "verifyGoodOraclePermOwnership: access perms ok\n"
msgstr "verifyGoodOraclePermOwnership̽ڦ\n"
msgid "verifyGoodOraclePermOwnership: owner \\\($listuser\\\) of $3 is not $4\n"
msgstr "verifyGoodOraclePermOwnership$3 ȴϯ \\\($listuser\\\) $4\n"
msgid "verifyGoodOraclePermOwnership: owner ok\n"
msgstr "verifyGoodOraclePermOwnershipȴϯڦ\n"
msgid "verifyGoodOraclePermOwnership: group \\\($2\\\) of $3 is not $4\n"
msgstr "verifyGoodOraclePermOwnership$3 \\\($2\\\) $4\n"
msgid "verifyGoodOraclePermOwnership: group ok\n"
msgstr "verifyGoodOraclePermOwnershipڦ\n"
msgid "**** file : $2 does not exist\n"
msgstr "**** $2 \n"
msgid "verifySharedMemUsage: failed to obtain ipcs \\\(shared memory segment\\\) info user : $2, group : $3\n"
msgstr "verifySharedMemUsage̽ڵ ipcs \\\(شٴ\\\) عϯ$2ڡ$3\n"
msgid "verifySharedMemUsage: found ipcs \\\(shared memory segment\\\) info user : $2, group : $3, \\\(shid\\\) : $4\n"
msgstr "verifySharedMemUsage̯ ipcs \\\(شٴ\\\) عϯ$2ڡ$3, \\\(shid\\\)$4\n"
msgid "verifySharedMemUsage: did find ipcs \\\(shared memory segment\\\) info user : $2, group : $3\n"
msgstr "verifySharedMemUsage̯ ipcs \\\(شٴ\\\) عϯ$2ڡ$3\n"
msgid "verifySharedMemUsage: did not find any ipcs \\\(shared memory segment\\\) info user : $2, group : $3\n"
msgstr "verifySharedMemUsage̯Ƕ ipcs \\\(شٴ\\\) عϯ$2ڡ$3\n"
msgid "verifyActiveSemaphoresUsage: failed to obtain ipcs \\\(active semaphores\\\) info user : $2, group : $3\n"
msgstr "verifyActiveSemaphoresUsage̽ڵ ipcs \\\(ɢ\\\) عϯ$2ڡ$3\n"
msgid "verifyActiveSemaphoresUsage: found ipcs \\\(active semaphores\\\) info user : $2, group : $3, \\\(semid\\\) : $4\n"
msgstr "verifyActiveSemaphoresUsage̯ ipcs \\\(ɢ\\\) عϯ$2ڡ$3, \\\(semid\\\)$4\n"
msgid "verifyActiveSemaphoresUsage: did find ipcs \\\(active semaphores\\\) info user : $2, group : \n"
msgstr "verifyActiveSemaphoresUsage̯ ipcs \\\(ɢ\\\) عϯ$2ڡ\n"
msgid "verifyActiveSemaphoresUsage: did not find any ipcs \\\(active semaphores\\\) info user : $2, group : $3\n"
msgstr "verifyActiveSemaphoresUsage̯Ƕ ipcs \\\(ɢ\\\) عϯ$2ڡ$3\n"
msgid "startListener: failed to start listener, alias: $2\n"
msgstr "startListenerٯ¡ɱء$2\n"
msgid "startListener: listener started, alias: $2\n"
msgstr "startListenerٯɱء$2\n"
msgid "stopListener: failed to stop listener, alias: $2\n"
msgstr "stopListener¡ɱء$2\n"
msgid "stopListener: listener stopped, alias: $2\n"
msgstr "stopListenerϡɱء$2\n"
msgid "removing existing listener log file $2"
msgstr "ܢȴ $2"
msgid "execution of verifySetuidFilesystemPerm $2 fail\n"
msgstr "verifySetuidFilesystemPerm $2 \n"
msgid "exiting........................\n"
msgstr "........................\n"
msgid "execution of $2 start $3 fail\n"
msgstr "$2 ٯ $3 \n"
msgid "execution of verifyListenerUp $2 fail\n"
msgstr "verifyListenerUp $2 \n"
msgid "execution of verifyGoodListenerStatus $2 fail\n"
msgstr " verifyGoodListenerStatus $2 \n"
msgid "execution of sqlplus using @$2 fail\n"
msgstr "ɳ @$2 sqlplus \n"
msgid "sqlerror code = $2\n"
msgstr "sqlerror =$2\n"
msgid "sqlerrmsg full = \\\>\\\>\\\> $2\\\<\n"
msgstr "sqlerrmsg =\\\>\\\>\\\> $2\\\<\n"
msgid "sqlerror code = $2\n"
msgstr "sqlerror =$2\n"
msgid "execution of verifyDatabaseUp $2 fail\n"
msgstr "verifyDatabaseUp $2 \n"
msgid "Listener and Database are up and running\n"
msgstr "ջɳɢ\n"
#
#================================
# <WS>/packages/Setup/es-device
#================================
msgid "Usage: $2 -ad Filename"
msgstr "Ρ$2 -ad "
msgid " where the options represent:"
msgstr " ̧㡢"
msgid " a : Add new device"
msgstr " a"
msgid " d : Delete device"
msgstr " dɴ"
msgid "This action is limited to superuser only."
msgstr "Ⱥɢϯ"
msgid "Exiting $2."
msgstr " $2"
msgid "create_node_family_file: Error! Invalid node object type $2"
msgstr "create_node_family_file먡ǵ $2 "
msgid "set_global_variable: Value not specified for $2"
msgstr "set_global_variable $2 ԫ"
msgid "set_global_variable: Invalid parameter $2"
msgstr "set_global_variableٶ $2"
msgid "delete_node: Invalid data in input file"
msgstr "delete_nodeī"
msgid "delete_node: $2 does not exist, verify input"
msgstr "delete_node$2 㡢ī"
msgid "delete_group: Invalid data in input file"
msgstr "delete_groupī"
msgid "delete_group: $2 does not exist, verify input"
msgstr "delete_group$2 㡢ī"
msgid "delete_group: Invalid group type $2"
msgstr "delete_group $2 "
msgid "delete_segment: Invalid data in input file"
msgstr "delete_segmentī"
msgid "delete_segment: $2 does not exist, verify input"
msgstr "delete_segment$2 㡢ī"
msgid "delete_segment: Invalid segment type $2"
msgstr "delete_segmentٴ $2 "
msgid "delete_composite: Invalid data in input file"
msgstr "delete_compositeī"
msgid "delete_composite: $2 does not exist, verify input"
msgstr "delete_composite$2 㡢ī"
msgid "validate_node_object_type: $2 or $3 exists"
msgstr "validate_node_object_type$2 $3 "
msgid "validate_i18n_key: Node object type exists in $2 line $3"
msgstr "validate_i18n_keyǵ $2 $3"
msgid "validate_i18n_key: Invalid i18n key: $2"
msgstr "validate_i18n_keyi18n 桨$2"
msgid "validate_group_i18n_type: $2 is invalid group type"
msgstr "validate_group_i18n_type$2 "
msgid "validate_group_i18n_key: Group object type exists in $2 line $3"
msgstr "validate_group_i18n_keyǵ $2 $3"
msgid "validate_segment_i18n_type: $2 is invalid segment type"
msgstr "validate_segment_i18n_type$2 ٴ"
msgid "validate_segment_i18n_key: Segment object type exists in $2 line $3"
msgstr "validate_segment_i18n_keyٴǵ $2 $3"
msgid "validate_composite_i18n_key: Composite object type exists in $2 line $3"
msgstr "validate_composite_i18n_keyǵ $2 $3"
msgid "validate_properties_file: Invalid property file name. Must be $2"
msgstr "validate_properties_file桤 $2"
msgid "validate_search_parameter: Invalid sysoid value $2"
msgstr "validate_search_parametersysoid ԫ $2 "
msgid "validate_icon_file: Check if file exists and permissions"
msgstr "validate_icon_fileů"
msgid "validate_hardware_module: Hardware Module name does not exist"
msgstr "validate_hardware_module"
msgid "validate_group_object_type: Invalid object type $2"
msgstr "validate_group_object_typeǵ $2 "
msgid "validate_group_object_type: Group object type exists in $2 line $3"
msgstr "validate_group_object_typeǵ $2 $3"
msgid "validate_segment_object_type: Invalid object type $2"
msgstr "validate_segment_object_typeǵ $2 "
msgid "validate_segment_object_type: Segment object type exists in $2 line $3"
msgstr "validate_segment_object_typeٴǵ $2 $3"
msgid "add_node: Invalid node type $2"
msgstr "add_node $2 "
msgid "add_node: Cannot copy $2 file, check if file exists and permissions"
msgstr "add_node $2 ů"
msgid "add_group: Invalid group type $2"
msgstr "add_group $2 "
msgid "add_group: Cannot copy $2 file, check if file exists and permissions"
msgstr "add_group $2 ů"
msgid "add_segment: Invalid segment type $2"
msgstr "add_segmentٴ $2 "
msgid "add_segment: Cannot copy $2 file, check if file exists and permissions"
msgstr "add_segment $2 ů"
msgid "add_composite: Cannot copy $2 file, check if file exists and permissions"
msgstr "add_composite $2 ů"
msgid "Package SUNWessrv is not installed on this system"
msgstr "Ⱥ˷ SUNWessrv "
msgid "Unable to create logfile $2"
msgstr "ǡ $2"
msgid "$2 file does not exist"
msgstr "$2 "
msgid "$2 file does not have read permissions"
msgstr "$2 ̦̽"
msgid "Invalid Operation: Operation not supported"
msgstr "ɢ桨ɢ̿"
msgid "process_delete_data: Object type $2 missing in data file"
msgstr "process_delete_dataŷǵ $2"
msgid "validate_monitor_via : $2 is invalid type"
msgstr "validate_monitor_via$2 "
msgid "validate_node_type:$2 is invalid node type"
msgstr "validate_node_type$2 "
msgid "validate_node_object_type: Invalid object type $2"
msgstr "validate_node_object_typeǵ $2 "
msgid "validate_i18n_key: Invalid object type $2"
msgstr "validate_i18n_keyǵ $2 "
msgid "add_device: Invalid object type $2"
msgstr "add_deviceǵ $2 "
msgid "validate_node_object_type: Node object type exists in $2 line $3"
msgstr "validate_node_object_typeǵ $2 $3"
msgid "validate_object_type: Invalid object type $2"
msgstr "validate_object_typeǵ $2 "
msgid "validate_group_type: $2 is invalid group type"
msgstr "validate_group_type$2 "
msgid "validate_segment_type: Invalid value $2 for Segment_type"
msgstr "validate_segment_typeSegment_type ԫ $2 "
msgid " (for example: ./es-device -a /tmp/userdata)"
msgstr " (./es-device -a /tmp/userdata)"
msgid " (for example: ./es-device -d /tmp/userdata)"
msgstr " (./es-device -d /tmp/userdata)"
msgid "validate_user_name: No value specified for User_name"
msgstr "validate_user_name User_name ԫ"
msgid "validate_node_object_type: No value specified for Node_object_type"
msgstr "validate_node_object_typeNode_object_type ԫ"
msgid "validate_i18n_key: No value specified for i18n_key"
msgstr "validate_i18n_key i18n_key ԫ"
msgid "validate_properties_file: No value specified for Properties_file"
msgstr "validate_properties_file Properties_file ԫ"
msgid "validate_search_parameter: No value specified for Search_parameter"
msgstr "validate_search_parameter Search_parameter ԫ"
msgid "validate_icon_file: No value specified for icon"
msgstr "validate_icon_fileԫ"
msgid "validate_segment_object_type: No value specified for Segment object type"
msgstr "validate_segment_object_typeٴǵԫ"
#
#==============================
# <WS>/packages/Setup/db-stop
#==============================
msgid "getHostName: failed to obtain current host from hostname comma"
msgstr "getHostNameڷ hostname ̽ڵЩ"
msgid "current host : $2\n"
msgstr "Щ$2\n"
msgid "getUserName: failed to obtain user name from id comma\n"
msgstr "getUserNameڷ id ̽ڵϯ\n"
msgid "current user name : $2\n"
msgstr "Щϯꢡ$2\n"
msgid "getUserGroup: failed to obtain user group from id comma\n"
msgstr "getUserGroupڷ id ̽ڵ\n"
msgid "current user group : $2\n"
msgstr "Щϯڡ$2\n"
msgid "verifyDatabaseUp: failed to obtain instance process info from ps\n"
msgstr "verifyDatabaseUpڷ ps ̽ڵݨܡʩ\n"
msgid "verifyDatabaseUp: instance is executing\n"
msgstr "verifyDatabaseUp\n"
msgid "verifyDatabaseUp: instance is not executing\n"
msgstr "verifyDatabaseUp\n"
msgid "verifyDatabaseDown: failed to obtain instance process info from ps\n"
msgstr "verifyDatabaseDownڷ ps ̽ڵݨܡʩ\n"
msgid "verifyDatabaseDown: instance is executing\n"
msgstr "verifyDatabaseDown\n"
msgid "verifyDatabaseDown: instance is not executing\n"
msgstr "verifyDatabaseDown\n"
msgid "verifyListenerUp: failed to obtain listener process info from ps\n"
msgstr "verifyListenerUpڷ ps ̽ڵݨܡع\n"
msgid "verifyListenerUp: listener $2 is executing\n"
msgstr "verifyListenerUp $2 \n"
msgid "verifyListenerUp: listener $2 is not executing\n"
msgstr "verifyListenerUp $2 \n"
msgid "verifyListenerDown: failed to obtain listener process info from \n"
msgstr "verifyListenerDown̽ڵݨܡعڷ\n"
msgid "verifyListenerDown: listener $2 is executing\n"
msgstr "verifyListenerDown $2 \n"
msgid "verifyListenerDown: listener $2 is not executing\n"
msgstr "verifyListenerDown $2 \n"
msgid "the file $2 does not exist, exiting........................"
msgstr " $2 㡢........................"
msgid "performing a (shutdown immediate)......"
msgstr "硾ǡɻ......"
msgid "execution of $2 using \\@$3 failed"
msgstr " \\@$3 $2 "
msgid "exiting..........................\n"
msgstr "........................\n"
msgid "unable to perform normal shutdown, executing a shutdown abort"
msgstr "ڦ"
msgid "execution of $2 using adhoc shutdown-abort failed"
msgstr " adhoc shutdown-abort $2 "
msgid "execution of $2 stop $3 failed"
msgstr "$2 $3 "
msgid "sqlerror code = $2\n"
msgstr "sqlerror =$2\n"
msgid "sqlerrmsg full = \\\>\\\>\\\> $2\\\<\n"
msgstr "sqlerrmsg =\\\>\\\>\\\> $2\\\<\n"
msgid "execution of sqlplus using $2 fail\n"
msgstr " $2 sqlplus \n"
msgid "can not find $2 on path, exiting.......................\n"
msgstr "ĸ̯ $2.......................\n"
#
#=========================================
# <WS>/packages/Setup/sm_setup_server.sh
#=========================================
msgid "The Sun Management Center Console help configuration file cannot be found."
msgstr "̯ Sun Management Center ƺɷ"
msgid "Please re-install the Sun Management Center Console component"
msgstr " Sun Management Center ƺǵ"
msgid "The base URL has been set to $2"
msgstr " URL ҳ $2"
msgid "Could not find group $2. You will have to set up"
msgstr "̯ $2ٯ"
msgid "the groups manually. Please add $3 to group $2."
msgstr "ڡ $3 $2"
msgid "User $3 in group $2 is not a valid user. Leaving it out of the esusers file."
msgstr " $2 ϯ $3 ȴϯڷ esusers 桤"
msgid "Adding user $2 from group $3 to esusers"
msgstr " $3 ϯ $2 esusers"
msgid "It appears that you already have some users \\\($2\\\)"
msgstr "ƫȴġϯ \\\($2\\\)"
msgid "configured as Sun Management Center administrators. Leaving these users in place."
msgstr "ҳ Sun Management Center ܡޡϯݨ"
msgid "You should setup a user as a Sun Management Center administrator."
msgstr "ġϯҳ Sun Management Center ܡ"
msgid "This person will be added to the esadm and esdomadm groups."
msgstr "Ⱥϯ̯ esadm esdomadm 㡤"
msgid "$2 is not a valid user."
msgstr "$2 ȴϯ"
msgid "The group $2 already exists on your system."
msgstr "˷ĸ $2"
msgid "Creating the group $2 that contains Sun Management Center $3 Users."
msgstr "ǡ Sun Management Center $3 ϯ $2"
msgid "Could not find $2 in $3"
msgstr "$3 ̯ $2"
msgid "This part of the setup process does the Sun Management Center Server Component setup."
msgstr "šݨܡȩ Sun Management Center Τǵ"
msgid "Unable to set $2 values."
msgstr " $2 ԫ"
msgid "agent.snmpPort is already configured in $2"
msgstr "$2 ħ agent.snmpPort"
msgid "topology.snmpPort is already configured in $2"
msgstr "$2 ħ topology.snmpPort"
msgid "The Sun Management Center base URL is relative to the Sun Management Center Console."
msgstr " Sun Management Center URL Sun Management Center Cosole "
msgid "The Sun Management Center Console is able to request help documentation via the network."
msgstr " Sun Management Center ƺƫɷǵ衤"
msgid "If you have installed Sun Management Center help documentation in an http-accessible"
msgstr "Ϊƫ http ̽ĸħ Sun Management Center ɷǵ衢"
msgid "location within your network, you may specify this location."
msgstr "Ⱥ"
msgid "If Sun Management Center help is installed on the console host, simply accept the default value."
msgstr "Ϊ Sun Management Center ɷƺĸЬƷ̿ԫ"
msgid "Completing Sun Management Center Server Component setup."
msgstr "ȩ Sun Management Center Τǵ"
msgid "Using security seed $2 for Sun Management Center server"
msgstr "Sun Management Center Τ $2"
msgid "Please enter a user to be the Sun Management Center administrator: "
msgstr "īɢҳ Sun Management Center ܡϯ "
msgid "Please enter a valid username: "
msgstr "īȴϯꢡ "
msgid "Please enter base URL to Sun Management Center help [local]: "
msgstr "ī Sun Management Center ɷ URL [áٶ] "
#
#===================================
# <WS>/packages/Setup/es-common.sh
#===================================
msgid "Enter \\\"y\\\" or \\\"n\\\" or \\\"q\\\""
msgstr "ī \\\"y\\\" \\\"n\\\" \\\"q\\\""
msgid "Exiting at user request"
msgstr "ϯĶ"
msgid "L10N_CODE not set!, LANG=$2"
msgstr " L10N_CODELANG=$2"
msgid "Cannot find locale directory for LANG: $2"
msgstr "̯ LANG 硨$2"
msgid "Expected to find it in: $2"
msgstr "Ķ̯ơ$2"
msgid "No Sun Management Center Packages are installed. Exiting."
msgstr " Sun Management Center ա֡"
msgid "Could not find xput executable: $2"
msgstr "̯ xput ƫ$2"
msgid "Cannot find file $2"
msgstr "̯ $2"
msgid "Moving $2 to $3"
msgstr " $2 ̯ $3"
msgid "-------------- WARNING -------------------"
msgstr "-------------- -------------------"
msgid "It appears that $2 $3 is already in use."
msgstr "$2 $3 ƫ"
msgid "Sun Management Center $2 may not be able to run due to this conflict."
msgstr "ȺSun Management Center $2 ƫ硤"
msgid "There are two ways to correct this conflict:"
msgstr "ȴ̥ƫϫȺ"
msgid " 1. Reconfigure the port that Sun Management Center uses."
msgstr " 1. Sun Management Center ա"
msgid " 2. Stop the process that is using the port."
msgstr " 2. ݨܡ"
msgid " You are currently running snmpdx, which may be causing the conflict."
msgstr " Щ snmpdxƫӳ"
msgid "Skipping the setting of port number for $2"
msgstr "ܩ $2 "
msgid "NOTE: Prior to starting Sun Management Center $2, stop the process using port $3."
msgstr "ٯ Sun Management Center $2 Щǿ $3 ݨܡ"
msgid "Updating $2 with new port number."
msgstr " $2"
msgid "This part of setup generates security keys used for communications"
msgstr "šʩܨʩع"
msgid "between processes. A seed must be provided to initialize the"
msgstr ""
msgid "keys. You can choose to use the standard Sun Management Center default or"
msgstr "ƫ Sun Management Center ԫī"
msgid "enter your own seed. If you do not generate the keys now,"
msgstr "͡Ϊܢܨ"
msgid "you can do so later using the procedure documented in the"
msgstr "ƫѥߧ"
msgid "Sun Management Center 3.0 Users Guide."
msgstr "Sun Management Center 3.0 ϯв"
msgid "Please make sure you use the same seed for all the machines you install."
msgstr "ȴ͡"
msgid "Invalid seed - type s to use default seed"
msgstr " - Ѻ s "
msgid "Using default Sun Management Center value for seed."
msgstr " Sun Management Center ԫɢҳ"
msgid "This action is limited to superuser only.\n"
msgstr "Ⱥɢϯ\n"
msgid "Exiting $PROGNAME."
msgstr " $PROGNAME"
msgid "Unable to create logfile $LOGFILE."
msgstr "ǡ $LOGFILE"
msgid "Started $0 at"
msgstr "ٯ $0 "
msgid "Running on"
msgstr ""
msgid "What seed would you like to use?\n"
msgstr "͡\n"
msgid "Invalid response in automated configuration file."
msgstr "ٯȴܡ"
msgid "Unsupported OS version: $2"
msgstr " OS ۡ$2"
msgid "Do you want to use a different port number for $2?"
msgstr " $2 "
msgid "Do you want to generate these keys using the Sun Management Center default seed?"
msgstr " Sun Management Center ܨ"
msgid "Please enter any port greater or equal to 1100 : "
msgstr "īǶġ 1100 ա "
msgid "Port $2 is not a valid port number, try another number : "
msgstr " $2 ȴƶġԶ "
msgid "Port $2 is also busy, try another - use s to skip setting the port number:"
msgstr " $2 ľȤ㡢̧ - s ܩ"
#
#======================================
# <WS>/packages/Setup/install-java.sh
#======================================
msgid "Java packages are not in $2"
msgstr " Java $2 "
msgid "All required Java packages are not in $2"
msgstr "ȴ Java $2 "
msgid "Installing java packages $2"
msgstr " java $2"
msgid "the system. Please install them first and then install Sun Management Center."
msgstr "˷㡤ǿԯѥ Sun Management Center"
msgid "Package $2 is installed on this system. This package is"
msgstr " $2 Ⱥ˷㡤 This package is"
msgid "incompatible with the java version required for Sun Management Center."
msgstr " Sun Management Center java թ"
msgid "This package needs to be uninstalled before installing java 2"
msgstr "ǿȺѥ java 2"
msgid "Removal of the package $2 failed, please remove it"
msgstr " $2 ٯ"
msgid "manually and then install Sun Management Center."
msgstr "ѥ Sun Management Center"
msgid "You need to install the following packages $2"
msgstr "Ķ $2"
msgid "If you do not choose to install it now, the installation will abort."
msgstr "Ϊǡɻҡʩˡ"
msgid "It seems some other version of java packages are present in $2"
msgstr " $2 ȴƶġ java 㡤"
msgid "You need to install Solaris_JDK_1.2.1_04 version of the following packages"
msgstr " Solaris_JDK_1.2.1_04 Ķ"
msgid "You can enter any directory to install the required version of JAVA."
msgstr "ƫīǶ JAVA"
msgid "No java packages to be removed."
msgstr " java "
msgid "Sun Management Center installation had overwritten your previous java installation."
msgstr " Sun Management Center Ȣ̽ǿЩ java Ȣ"
msgid "You can either keep the current installation or remove it."
msgstr "ƫЩȢ桤"
msgid "Warning - Could not find pkgmap file for $2"
msgstr " - ̯ $2 pkgmap "
msgid " Space calculations will be wrong."
msgstr " Ϩȴ먡"
msgid "Java installation:"
msgstr "Java ҡ"
msgid "Space required \\\(in $2\\\): $3 blocks."
msgstr "Ϩ \\\($2 \\\)$3 Զٴۡ"
msgid "Space available \\\(in $2\\\): $3 blocks."
msgstr "ƫϨ \\\($2 \\\)$3 Զٴۡ"
msgid "Insufficient disk space to install Java components"
msgstr "ȴϨƫ Java ǵ"
msgid "Error installing package: $2"
msgstr "먡$2"
msgid "The following packages required by Java 2 are not installed on"
msgstr "Ķ Java 2 "
msgid "Packages: $2"
msgstr "ա$2"
msgid "The required version of Java is already installed in $2"
msgstr " Java $2 "
msgid "It seems some of the required packages are already present."
msgstr "ȴš㡤"
msgid "You can either overwrite the existing java version or install the"
msgstr "ƫܢȴ java "
msgid "required version in some other directory."
msgstr "̧㡤"
msgid "Invalid directory"
msgstr ""
msgid "Java packages couldnot be found in directory $2"
msgstr " $2 ̯ Java "
msgid "Do you want to install it now?"
msgstr "ǡɻҡ"
msgid "Do you want to overwrite the existing one?"
msgstr "̽ܢȴۡ"
msgid "Do you want to remove it?"
msgstr "桩"
msgid "Do you want to uninstall it now"
msgstr "ǡɻ"
msgid "Enter the base directory for JDK installation [$2]"
msgstr "ī JDK [$2]"
#
#============================
# <WS>/packages/Setup/es-db
#============================
msgid "A minimum of 256 MB RAM is required to install Sun Management Center server."
msgstr "ŷȴ 256 MB RAM Sun Management Center Τ¡"
msgid "Current system has $2 MB RAM."
msgstr "Щ˷̦ȴ $2 MB RAM"
msgid "Can not continue to install Sun Management Center server."
msgstr " Sun Management Center Τ¡"
msgid " Sun Management Center DB "
msgstr " Sun Management Center DB "
msgid " Sun Management Center Database Installation "
msgstr " Sun Management Center ջ "
msgid "Invalid parameters for installDB\\\(\\\)"
msgstr " installDB\\\(\\\) ٶ"
msgid "The following Sun Management Center database packages have already been installed on your system:"
msgstr "˷ĸħĶ Sun Management Center ջա"
msgid "Checking memory available..."
msgstr "ƫش..."
msgid "Creating the mount points..."
msgstr "ǡ..."
msgid "Error installing SUNWesora. Installation cannot continue."
msgstr " SUNWesora 먡ҡ"
msgid "Error installing SUNWestbl. Installation cannot continue."
msgstr " SUNWestbl 먡ҡ"
msgid "Sun Management Center DB packages installed successfully"
msgstr "Sun Management Center DB ȩ"
msgid "es-setup will perform the remainder of the config"
msgstr "es-setup ̧š"
#
#======================================
# <WS>/packages/Setup/install-patch.sh
#======================================
msgid "No patch checking on this platform"
msgstr "ȺƺĸȢ"
msgid "Could not find the patches in the following directory."
msgstr "Ķ̯Ȣ"
msgid "Installing patch $2..."
msgstr "Ȣ $2..."
msgid "Installation of patch $2 failed."
msgstr "Ȣ $2 "
msgid "Installation of patch $2 complete."
msgstr "Ȣ $2 ȩ"
msgid "Following patches are prerequisites to the java patches."
msgstr " java ȢЩǿĶȢ"
msgid "Please install them manually and then install Sun Management Center."
msgstr "ٯѥ Sun Management Center"
msgid "Installation of following patches failed, please install"
msgstr "ĶȢٯ"
msgid "them manually and then install Sun Management Center."
msgstr "ѥ Sun Management Center"
msgid "Checking for required OS patches, Please wait..."
msgstr " OS ȢԷ..."
msgid "Following is the list of required patches for java 2."
msgstr "Ķҳ java 2 Ȣ̡"
msgid "If you do not choose to install them now installation will abort."
msgstr "Ϊǡɻҡʩˡ"
msgid "Checking for required OS patches done."
msgstr "ȩ OS Ȣ硤"
msgid "Invalid directory."
msgstr "硤"
msgid "Do you want to install now"
msgstr "ǡɻҡ"
msgid "Please enter the directory that contains patches: "
msgstr "īȴȢ硨 "
#
#=================================
# <WS>/packages/Setup/es-restore
#=================================
msgid "The directory name should start with /"
msgstr " / "
msgid "The directory name is invalid"
msgstr ""
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "The backup $2 does not exist"
msgstr "ެǹ $2 "
msgid "Checking installed Sun Management Center..."
msgstr " Sun Management Center..."
msgid "Recover the Sun Management Center Database and it will take a few minutes..."
msgstr "ߦ Sun Management Center ջĸš..."
msgid "Restore the Sun Management Center data."
msgstr "ߦ Sun Management Center 衤"
msgid "Shutdown Sun Management Center database, please wait."
msgstr " Sun Management Center ջԷ"
msgid "Recovery is fnished successfully. Please start Sun Management Center."
msgstr "ɳȩߦϡٯ Sun Management Center"
msgid "The Sun Management Center server components are not found or"
msgstr "̯ Sun Management Center Τģ́"
msgid "its installation is damaged. You need to run"
msgstr "䴡"
msgid "es-inst/es-setup to install Sun Management Center and then "
msgstr "es-inst/es-setup Sun Management Centerѥ"
msgid "start es-restore."
msgstr "ٯ es-restore"
msgid "Cannot restore $2"
msgstr "ߦ $2"
msgid "Cannot import database. Please check $2"
msgstr "īջ $2"
msgid "The recovery need to shudown Sun Management Center servers."
msgstr "ߦɢ Sun Management Center Τ¡"
msgid "Please get the backup of es-backup ready."
msgstr "ެ es-backup ެǹ"
msgid "Usage: $PROGNAME"
msgstr "Ρ$PROGNAME"
msgid "Do you want to proceed [yes/no]:"
msgstr " [yes/no]"
msgid "Enter the path of the backup data directory:"
msgstr "īެǹ"
#
#==========================================
# <WS>/packages/Setup/sm_setup_metadata.sh
#==========================================
msgid "$2 appears to be configured as your Sun Management Center server."
msgstr "$2 ƫҳ Sun Management Center Τ¡"
msgid "Error - Unable to set $2 values."
msgstr " - $2 ԫ"
msgid "agent.snmpPort already configured in $2"
msgstr " $2 ħ agent.snmpPort"
msgid "This part of the setup process does the Sun Management Center Agent Component setup."
msgstr "šݨܡȩ Sun Management Center ܡȢǵ"
msgid "snmpd.conf already exists in $2. Leaving it in place"
msgstr "$2 snmpd.conf̧ݨ"
msgid "Copying snmpd.conf file into $2"
msgstr " snmpd.conf ̯ $2"
msgid "Server component also installed locally."
msgstr "ħΤǵ"
msgid "Using this machine as the Sun Management Center server."
msgstr "ɢҳ Sun Management Center Τ¡"
msgid "Completing Sun Management Center Agent Component setup."
msgstr "ȩ Sun Management Center ܡȢǵ"
msgid "Using security seed $2 for Sun Management Center metadata"
msgstr " $2 ɢҳ Sun Management Center "
msgid "Please enter the Sun Management Center Server Hostname: "
msgstr "ī Sun Management Center Τꢡ "
msgid "Is this correct?"
msgstr ""
#
#============================
# <WS>/packages/Setup/es-lic
#============================
msgid "Topology server is currently running."
msgstr "ЩΤ¡"
msgid "It must be restarted for the license file update to take effect."
msgstr "桢ٯ"
msgid "Please stop and restart topology server using:"
msgstr "ٯΤ¡"
msgid "$2 -p\\\; $3 -p"
msgstr "$2 -p\\\; $3 -p"
msgid "Invalid License, Exiting..."
msgstr "桢..."
msgid " Sun Management Center License Program\n"
msgstr " Sun Management Center Ȣ\n"
msgid " Invalid parameters passed to es-lic script\n"
msgstr " ̯ es-lic Script ٶ\n"
msgid "Please enter license key: "
msgstr "ī "
#
#===============================
# <WS>/packages/Setup/es-dbimp
#===============================
msgid "The directory name should start with /"
msgstr " / "
msgid "The directory name is invalid"
msgstr ""
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Cannot export database. Please check $2"
msgstr "ջ $2"
msgid "The backup $2 does not exist"
msgstr "ެǹ $2 "
msgid "------------------- WARNING !!! ----------------"
msgstr "------------------- ˡ ----------------"
msgid "The process need Sun Management Center server components stopped."
msgstr "Ⱥݨܡ Sun Management Center Τǵ硤"
msgid "And import the backup data to Sun Management Center database."
msgstr "ެǹī Sun Management Center ջ"
msgid "As a result, all current data will be destroyed."
msgstr "Ϊȩȴܢȴڡ"
msgid "Done"
msgstr "ȩ"
msgid "Usage: $PROGNAME"
msgstr "Ρ$PROGNAME"
msgid "Do you want to proceed [yes/no]:"
msgstr " [yes/no]"
#
#=======================================
# <WS>/packages/Setup/sm_setup_agent.sh
#=======================================
msgid "$2 appears to be configured as your Sun Management Center server."
msgstr "$2 ƫҳ Sun Management Center Τ¡"
msgid "Error - Unable to set $2 values."
msgstr " - $2 ԫ"
msgid "agent.snmpPort already configured in $2"
msgstr " $2 ħ agent.snmpPort"
msgid "This part of the setup process does the Sun Management Center Agent Component setup."
msgstr "šݨܡȩ Sun Management Center ܡȢǵ"
msgid "snmpd.conf already exists in $2. Leaving it in place"
msgstr "$2 snmpd.conf̧ݨ"
msgid "Copying snmpd.conf file into $2"
msgstr " snmpd.conf ̯ $2"
msgid "Server component also installed locally."
msgstr "ħΤǵ"
msgid "Using this machine as the Sun Management Center server."
msgstr "ɢҳ Sun Management Center Τ¡"
msgid "Completing Sun Management Center Agent Component setup."
msgstr "ȩ Sun Management Center ܡȢǵ"
msgid "Using security seed $2 for Sun Management Center agent"
msgstr " $2 ɢҳ Sun Management Center ܡȢ"
msgid "Please enter the Sun Management Center Server Hostname: "
msgstr "ī Sun Management Center Τꢡ "
msgid "Is this correct?"
msgstr ""
#
#================================
# <WS>/packages/Setup/es-backup
#================================
msgid "The directory name should start with /"
msgstr " / "
msgid "The directory name is invalid"
msgstr ""
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Can not create the directory $2"
msgstr "ǡ $2"
msgid "Backup is successful."
msgstr "ެǹȩ"
msgid "Please save following files for the restore of Sun Management Center"
msgstr "Ķߦ Sun Management Center "
msgid "Starting Sun Management Center...."
msgstr "ٯ Sun Management Center...."
msgid "Cannot export database. Please check $2"
msgstr "ջ $2"
msgid "Backup Sun Management Center data failed. Please check $2"
msgstr "Sun Management Center ެǹ $2"
msgid "The operation requires to shutdown Sun Management Center."
msgstr "Ⱥɢ Sun Management Center"
msgid "Usage: $PROGNAME"
msgstr "Ρ$PROGNAME"
msgid "Do you want to create it?"
msgstr "ǡ"
msgid "Do you want to proceed [yes/no]:"
msgstr " [yes/no]"
msgid "Enter the path of the directory to store the backup data file:"
msgstr "īެǹ表"
#
#=======================================
# <WS>/packages/Setup/sm_setup_mib2.sh
#=======================================
msgid "Subagent sunmib_sea already set up - leaving it untouched"
msgstr "ħܡȢ sunmib_sea - ̧ѽ"
msgid "Subagent registry file is: $2"
msgstr "ܡȢҳ$2"
msgid "Unable to update subagent-registry-d.x"
msgstr " subagent-registry-d.x"
msgid "Updated subagent-registry-d.x for mib2 subagent"
msgstr "ҳ mib2 ܡȢħ subagent-registry-d.x"
#
#================================
# <WS>/packages/Setup/es-uninst
#================================
msgid "Removing $2"
msgstr " $2"
msgid "Package Removal: Failed for $2"
msgstr "桨$2 "
msgid "Reattempting to uninstall the package\\\(s\\\): $2"
msgstr "ա$2"
msgid "Please remove the following packages manually.\n"
msgstr "ٯĶա\n"
msgid "Sun Management Center uninstall complete.\n"
msgstr " Sun Management Center ܫ\n"
msgid " Sun Management Center Uninstallation \n"
msgstr " Sun Management Center \n"
msgid "No Sun Management Center packages installed.\n"
msgstr " Sun Management Center ա\n"
msgid "This utility removes all the Sun Management Center packages. \n"
msgstr "ȺȢȴ Sun Management Center ա\n"
msgid "Exiting uninstall utility.\n"
msgstr "Ȣ\n"
msgid "Stopping all Sun Management Center processes. This may take a few moments...\n"
msgstr "ȴ Sun Management Center ݨܡƫġ...\n"
msgid "If you are upgrading Sun Management Center, you may want to save your existing data.\n"
msgstr "ΪŪ Sun Management Centerƫܢȴ衤\n"
msgid "Will not remove the existing data\n"
msgstr "ܢȴ\n"
msgid "Will remove the existing data\n"
msgstr "ܢȴ\n"
msgid " Would you like to continue?"
msgstr " "
msgid "Do you want to preserve your existing data"
msgstr "ܢȴ"
msgid "Do you wish to continue with the removal of the existing data"
msgstr "ܢȴ"
#
#==============================
# <WS>/packages/Setup/es-dbexp
#==============================
msgid "The directory name should start with /"
msgstr " / "
msgid "The directory name is invalid"
msgstr ""
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Can not create the directory $2"
msgstr "ǡ $2"
msgid "Cannot export database. Please check $2"
msgstr "ջ $2"
msgid "The operation requires some of Sun Management Center components to be shutdown."
msgstr "Ⱥɢġ Sun Management Center ǵ"
msgid "Usage: $PROGNAME"
msgstr "Ρ$PROGNAME"
msgid "Do you want to create it?"
msgstr "ǡ"
msgid "Do you want to proceed [yes/no]:"
msgstr " [yes/no]"
msgid "Enter the path of the directory to store the backup data file:"
msgstr "īެǹ表"
msgid "Enter the path of the backup directory:"
msgstr "īެǹ"
#
#=================================
# <WS>/packages/Setup/es-keys.sh
#=================================
msgid "Generating $2 security keys."
msgstr "ܨ $2 "
msgid "Error generating keys. Return code was $2."
msgstr "ܨ먡ҳ $2"
#
#==========================================
# <WS>/packages/Setup/sm_setup_service.sh
#==========================================
msgid "This part of the setup process does the Sun Management Center Services Component setup."
msgstr "šݨܡȩ Sun Management Center Τ٭ǵ"
msgid "Completing Sun Management Center Services Component setup."
msgstr "ȩ Sun Management Center Τ٭ǵ"
#
#===============================
# <WS>/packages/Setup/es-start
#===============================
msgid "It seems component $2 has not been setup, so skipping it."
msgstr " $2Ⱥܩơ"
msgid "Sun Management Center Web Server is not installed, Can not start web server\n"
msgstr " Sun Management Center Τ¡ٯΤ\n"
msgid "Sun Management Center Web Server is not completely installed, Can not start web server\n"
msgstr " Sun Management Center Τ¡ٯΤ\n"
msgid "web server started\n"
msgstr "Τٯ\n"
msgid "Equivalent to %s -aefgmprstxw"
msgstr "̧ %s -aefgmprstxw"
msgid "Equivalent to %s -efgmprstxw"
msgstr "̧ %s -efgmprstxw "
msgid "Usage: $PROGNAME -acefghilmpstwxrAS [-y instanceName] [ -- args... ]"
msgstr "Ρ$PROGNAME -acefghilmpstwxrAS [-y instanceName] [ -- args... ]"
msgid " where the options represent:\n"
msgstr " ̧㡢\n"
msgid " a : starts Sun Management Center Agent\n"
msgstr " aٯ Sun Management Center ܡȢ\n"
msgid " c : starts Sun Management Center Console\n"
msgstr " cٯ Sun Management Center Console\n"
msgid " Optionally, maximum heap size could be customized,\n"
msgstr " ڰ̱ƫҳԫ\n"
msgid " e.g., ./es-start -c -- -Xmx100m specifies 100 MBytes\n"
msgstr " ./es-start -c -- -Xmx100m 100 MB\n"
msgid " as max heap size; Default size is 64m.\n"
msgstr " ҳѡҳ 64m\n"
msgid " e : starts Sun Management Center Event manager\n"
msgstr " eٯ Sun Management Center ǵܡȢ\n"
msgid " f : starts Sun Management Center Configuration manager\n"
msgstr " fٯ Sun Management Center ܡȢ\n"
msgid " g : starts Sun Management Center Grouping services\n"
msgstr " gٯSun Management Center Τ٭\n"
msgid " h : prints this usage report\n"
msgstr " hȺ\n"
msgid " i : start agent in interactive mode, valid only for one of\n"
msgstr " iٯȢɢȢٯܡȢ\n"
msgid " the a, t, f, p, and e options\n"
msgstr " atfp e ġȴ\n"
msgid " l : starts Platform Agent for SSP\n"
msgstr " lٯ SSP ƺܡȢ\n"
msgid " m : starts Sun Management Center Metadata Repository\n"
msgstr " mٯ Sun Management Center ջ\n"
msgid " q : start components in quiet mode, effective only for one of\n"
msgstr " qٯȢɢȢٯǵ\n"
msgid " the A, a, t, f, p, and e options\n"
msgstr " Aatfp e ġȴ\n"
msgid " p : starts Sun Management Center Topology manager\n"
msgstr " pٯ Sun Management Center ܡȢ\n"
msgid " r : starts Hardware Diagnostic Suite Service\n"
msgstr " rٯ Hardware Diagnostic Suite Τ٭\n"
msgid " s : starts Sun Management Center Server\n"
msgstr " sٯ Sun Management Center Τ\n"
msgid " Optionally, maximum heap size could be customized,\n"
msgstr " ڰ̱ƫҳԫ\n"
msgid " e.g., ./es-start -s -- -Xmx100m specifies 100 MBytes\n"
msgstr " ./es-start -s -- -Xmx100m 100 MB\n"
msgid " as max heap size; Default size is 64m.\n"
msgstr " ҳѡҳ 64m\n"
msgid " t : starts Sun Management Center Trap Handler\n"
msgstr " tٯ Sun Management Center ݨܡȢ\n"
msgid " x : starts CST Service\n"
msgstr " xٯ CST Τ٭\n"
msgid " y : starts new instance of platform agent\n"
msgstr " yٯƺܡȢ\n"
msgid " w : starts web server\n"
msgstr " wٯΤ\n"
msgid " A : starts All Sun Management Center components except the console,\n"
msgstr " Aٯħƺȴ Sun Management Center ǵ\n"
msgid " S : starts Sun Management Center Server and all the server subcomponents\n"
msgstr " Sٯ Sun Management Center ΤȴΤǵ\n"
msgid " args are passed to console or server when started.\n"
msgstr " ſƺΤٯԯ\n"
msgid " (for example: es-start -c -- -p 2099)\n\n"
msgstr " es-start -c -- -p 2099\n\n"
msgid "ERROR: Sun Management Center has not been set up.\nRun es-setup to set up Sun Management Center."
msgstr "먡 Sun Management Center\n es-setup Sun Management Center"
msgid "Please specify a component to be started."
msgstr "ٯǵ"
msgid "Use the following single letter arguments instead:\n"
msgstr "Ķġſ\n"
msgid "Console package not installed\n"
msgstr "ƺ\n"
msgid "Interactive option invalid with -A or -S option"
msgstr "ٯȢɢ -A -S "
msgid "Invalid command line option. Please use just one option\n"
msgstr "ƷġԶ\n"
msgid "You have not specified any components to run.\n"
msgstr "ǵ\n"
msgid "Only one component may be started in interactive mode\n"
msgstr "ٯȢɢȢĶƷٯġԶǵ\n"
msgid "You cannot start console in interactive mode\n"
msgstr "ٯȢɢȢٯƺ\n"
msgid "DISPLAY environment variable must be set\n"
msgstr " DISPLAY \n"
msgid "Interactive server session:\n"
msgstr "ٯȢɢΤɢơ\n"
msgid "SUNWcstv or SUNWcstve package should be installed before start cstservice agent."
msgstr "ٯ cstservice ܡȢЩǿ SUNWcstv SUNWcstve ա"
msgid "Interactive option invalid with $OPT option"
msgstr "ٯȢɢ $OPT "
msgid "Unable to open DISPLAY: $DISPLAY"
msgstr " DISPLAY: $DISPLAY"
msgid "Equivalent to %s -aefgmpstxw"
msgstr "̧ %s -aefgmpstxw"
msgid "Equivalent to %s -efgmpstxw"
msgstr "̧ %s -efgmpstxw"
msgid "$2 Component not installed"
msgstr " $2 ǵ"
msgid "Invalid option\\\($1\\\). Options have changed to single letters:"
msgstr " \\\($1\\\)ҳġࡨ"
msgid "Starting all platform instances"
msgstr "ٯȴƺ"
msgid "Instances are $2"
msgstr "ҳ $2"
msgid "Starting platform instances $2"
msgstr "ٯƺ $2"
msgid "ERROR: Could not start Hardware Diagnostic Suite Service."
msgstr "먡ٯ Hardware Diagnostic Suite Τ٭"
msgid "SUNWed package should be installed before start Hardware Diagnostic Suite Service."
msgstr "SUNWed ٯ Hardware Diagnostic Suite Τ٭Щҡ"
msgid "Sun Management Center is not setup. Please setup first and then run es-start."
msgstr " Sun Management Centerǿҡѥ es-start"
msgid "Sun Management Center $2 is not setup."
msgstr " Sun Management Center $2"
#
#==========================================
# <WS>/packages/Setup/sm_setup_console.sh
#==========================================
msgid "This part of the setup process does the Sun Management Center Console Component setup."
msgstr "šݨܡȩ Sun Management Center ƺǵ"
#
#==============================
# <WS>/packages/Setup/es-stop
#==============================
msgid "Please specify a component to be stopped."
msgstr "ǵ"
msgid "Usage : $PROGNAME -aefghmprstxAS [-y instanceName]"
msgstr "Ρ$PROGNAME -aefghmprstxAS [-y instanceName]"
msgid " a : stops Sun Management Center Agent\n"
msgstr " a Sun Management Center ܡȢ\n"
msgid " e : stops Sun Management Center Event manager\n"
msgstr " e Sun Management Center ǵܡȢ\n"
msgid " f : stops Sun Management Center Configuration manager\n"
msgstr " f Sun Management Center ܡȢ\n"
msgid " g : stops Sun Management Center Services\n"
msgstr " g Sun Management Center Τ٭\n"
msgid " h : prints this usage report\n"
msgstr " hȺ\n"
msgid " l : stops Platform Agent for SSP\n"
msgstr " l SSP ƺܡȢ\n"
msgid " m : stops Sun Management Center Metadata Agent\n"
msgstr " m Sun Management Center ܡȢ\n"
msgid " p : stops Sun Management Center Topology manager\n"
msgstr " p Sun Management Center ܡȢ\n"
msgid " r : stops Hardware Diagnostic Suite Service\n"
msgstr " r Hardware Diagnostic Suite Τ٭\n"
msgid " s : stops Sun Management Center Server\n"
msgstr " s Sun Management Center Τ\n"
msgid " t : stops Sun Management Center Trap Handler\n"
msgstr " t Sun Management Center ݨܡȢ\n"
msgid " x : stops CST Service\n"
msgstr " x CST Τ٭\n"
msgid " y : stops instance of platform agent\n"
msgstr " yƺܡȢ\n"
msgid " w : stops web server\n"
msgstr " wΤ\n"
msgid " A : stops all Sun Management Center components listed above\n"
msgstr " Aĸȴ Sun Management Center ǵ\n"
msgid "equivalent to %s -aefgmprstxw"
msgstr "̧ %s -aefgmprstxw"
msgid " S : stops all Sun Management Center components listed above except Sun Management Center Agent\n"
msgstr " Sħ Sun Management Center ܡȢȴ Sun Management Center ǵ\n"
msgid "equivalent to %s -efgmprstxw"
msgstr "̧ %s -efgmprstxw"
msgid "Use the following single letter arguments instead:\n"
msgstr "Ķġſ\n"
msgid "Invalid option\\\($1\\\). Options have changed to single letters:"
msgstr " \\\($1\\\)ҳġࡨ"
msgid "$1 Component not installed"
msgstr " $1 ǵ"
msgid "Stopping all platform instances"
msgstr "ȴƺ"
msgid "$COMPONENT component is not running"
msgstr "$COMPONENT ǵ"
msgid "Stopping $COMPONENT component"
msgstr " $COMPONENT ǵ"
msgid "Error in stopping $COMPONENT component"
msgstr " $COMPONENT ǵ"
#
#================================
# <WS>/packages/Setup/es-crlcon
#================================
msgid " Sun Management Center Light Console Creation Program\n"
msgstr " Sun Management Center ƺǡȢ\n"
msgid "This program creates a directory of minimun required console components.\n"
msgstr "ȺȢǡŷƺǵ硤\n"
msgid "User can copy this directory to any machine with supported configuration\n"
msgstr "ϯƫȺ̯Ƕ̦ȴ̿ĸ\n"
msgid "to run Console."
msgstr "ƺ"
msgid "Destination [/tmp]: "
msgstr " [/tmp] "
msgid "Please remove the directory $dirname before proceeding"
msgstr "Щ $dirname"
msgid "or use a different directory.\n"
msgstr "硤\n"
msgid "Do you want the directory to be in zip format [y|n] [y]: "
msgstr "ȩҳ zip ֪Ȣ [y|n] [y] "
msgid "Please enter path to the executable - zip: "
msgstr "īƫ - zip "
msgid "Cannot find zip in $zippath."
msgstr "$zippath ̯ zip"
msgid "Source will be taken from [/opt/SUNWsymon]: "
msgstr "̽ [/opt/SUNWsymon] "
msgid "Directory ${dirname} is created."
msgstr " ${dirname} ǡ"
msgid "Creating zip file ...\n"
msgstr "ǡ zip ...\n"
msgid "SUNWsymon.zip can be transferred to other systems, unzip,\n"
msgstr "SUNWsymon.zip ƫ̧˷ӡ㡤\n"
msgid "Zip file is created in "
msgstr "Zip ǡ "
msgid "\nPlease note:\n\n Light console can be invoked by running:\n\n"
msgstr "\n\n\n ƫĶƵƺ\n\n"
#
#================================
# <WS>/packages/Setup/es-sfix.sh
#================================
msgid "usage:\n"
msgstr "Ρ\n"
msgid "process all modules : es-sfix.sh\n"
msgstr "ݨܡȴ es-sfix.sh\n"
msgid "flush db & process all modules : es-sfix.sh [-c | -C]\n"
msgstr " db ݨܡȴ es-sfix.sh [-c | -C]\n"
msgid "process only for specifiec module : es-sfix.sh [-m | -M] [module name]\n"
msgstr "Ʒݨܡ es-sfix.sh [-m | -M] []\n"
msgid "starting Sun Management Center database\n"
msgstr "ٯ Sun Management Center ջ\n"
msgid "database startup failed, exiting\n"
msgstr "ջٯ\n"
msgid "database is up\n"
msgstr "ջƵ\n"
msgid "executing suggested fix script\n"
msgstr "Ժߦ Script\n"
msgid "execution successful\n"
msgstr "ȩ\n"
msgid "error in execution\n"
msgstr "\n"
msgid "shutting down the database\n"
msgstr "ջ\n"
msgid "db-stop failed\n"
msgstr "db-stop \n"
msgid "purge database and process\n"
msgstr "ջݨܡ\n"
msgid "process only for module\n"
msgstr "ݨܡ\n"
msgid "incorrect usage\n"
msgstr "\n"
msgid "invalid arguments\n"
msgstr "ſ\n"
msgid "default processing\n"
msgstr "ݨܡʩ\n"
msgid "could not set java home directory\n"
msgstr " java \n"
msgid "please see the suggested fix log file in "
msgstr "ٶԺߦ"
#
#=================================
# <WS>/packages/Setup/es-details
#=================================
msgid "ERROR: "
msgstr "먡 "
msgid " Specify the tabs for a given Node_Object_Type. The -f and -u\n"
msgstr " ҳ Node_Object_Type -f -u\n"
msgid " options are mutually exclusive.\n"
msgstr " 桤\n"
msgid " where the options represent:\n"
msgstr " ̧㡢\n"
msgid " a : All tabs provided by Sun Management Center\n"
msgstr " a Sun Management Center ȴ\n"
msgid " will be included.\n"
msgstr " \n"
msgid " f inputfile : Input file which contains list of tabs to\n"
msgstr " f inputfile ī\n"
msgid " be used for the specified Node_Object_Type.\n"
msgstr " Node_Object_Type\n"
msgid " n Node_Object_Type : Corresponds to the Node_Object_Type\n"
msgstr " n Node_Object_Type es-device Script \n"
msgid " entered in the es-device script.\n"
msgstr " ī Node_Object_Type\n"
msgid " o : Overwrite previously created tab file.\n"
msgstr " o Щǡ\n"
msgid " Only meaningful when used with the -f\n"
msgstr " Ʒȴ -f ȴ\n"
msgid " option.\n"
msgstr " \n"
msgid " u : Undo. Restores the Node_Object_Type\n"
msgstr " u ߦϡ Node_Object_Type ߦ\n"
msgid " to its original state.\n"
msgstr " ҳ̧ȴ衤\n"
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "Usage: $2 [ -a ] [ -f inputfile ] -n Node_Object_Type [ -o ] [ -u ]\n"
msgstr "Ρ$2 [ -a ] [ -f inputfile ] -n Node_Object_Type [ -o ] [ -u ]\n"
msgid "Input file $2 does not exist"
msgstr "ī $2 "
msgid "The Node_Object_Type must be specified."
msgstr " Node_Object_Type"
msgid "Either option -f or -u must be specified."
msgstr " -f -u ġ"
msgid "Options -f or -u cannot both be specified."
msgstr " -f -u"
msgid "Options -o and -u cannot both be specified."
msgstr " -o -u"
msgid "Options -a and -u cannot both be specified."
msgstr " -a -u"
msgid "es-details has not yet been run with Node_Object_Type $2."
msgstr " Node_Object_Type $2 es-details"
msgid "Tab name not specified for DEFAULT statement on line $2."
msgstr " $2 ĸ ҳ DEFAULT ꢡ"
msgid "Only one tab can be defined as the DEFAULT."
msgstr "ƷġԶɢҳ DEFAULT"
msgid "Tab name not specified for INCLUDE statement on line $2."
msgstr " $2 ĸҳ INCLUDE ꢡ"
msgid "$2 is not a valid Sun Management Center tab on line $3."
msgstr "$2 $3 ĸȴ Sun Management Center "
msgid "Tab name not specified for APPEND statement on line $2."
msgstr " $2 ĸҳ APPEND ꢡ"
msgid "Tab name $2 must be in format file:key on line $3."
msgstr " $3 ĸ $2 ֪Ȣҳ file:key"
msgid "Help key not specified for user-defined tab $2 on line $3."
msgstr " $3 ĸҳϯ $2 ɷ"
msgid "Help Key $2 must be in format key:file on line $3."
msgstr " $3 ĸɷ $2 ֪Ȣҳ key:file"
msgid "Java class not specified for user-defined tab $2 on line $3."
msgstr " $3 ĸҳϯ $2 Java ɱ"
msgid "Key $2 is not a valid key on line $3."
msgstr " $2 $3 ĸȴ"
msgid "Input file $2 contains no APPEND or INCLUDE statements"
msgstr "ī $2 APPEND INCLUDE "
msgid "$2 is not a valid Node_Object_Type."
msgstr "$2 ȴ Node_Object_Type"
msgid "The specified default tab $2 was not found in the inputfile."
msgstr "ī̯ $2"
msgid "The tabs for this object have already been specified, use -o option to overwrite."
msgstr "Ⱥǵ -o ѡ"
msgid "Can only modify the family file for Sun Management Center agents."
msgstr "Ʒҳ Sun Management Center ܡȢԺե"
#
#===========================
# <WS>/packages/Setup/es-dt
#===========================
msgid "ERROR: "
msgstr "먡 "
msgid " where the options represent:\n"
msgstr " ̧㡢\n"
msgid " a : Add a reference.\n"
msgstr " a ٶ衤\n"
msgid " d : Delete a reference.\n"
msgstr " d ɴٶ衤\n"
msgid " v : View references. This is the default option.\n"
msgstr " v ٶ衤Ⱥҳ\n"
msgid " s : Add/Delete/View on the Platform Agent. By default the\n"
msgstr " s ƺܡȢĸ/ɴ/á\n"
msgid " operation is performed on the Agent.\n"
msgstr " ɢܡȢĸ硤\n"
msgid " h hostname : Agent hostname of machine running the Discovery Object Table.\n"
msgstr " h ꢡǵܡꢡ\n"
msgid " l label : Unique label for the Composite Object to add or delete.\n"
msgstr " l ɴǵȴ\n"
msgid " n not : Node_Object_Type for the Composite Object to add.\n"
msgstr " n not ǵ Node_Object_Type\n"
msgid " o OID : Discovery Object Table OID to add.\n"
msgstr " o OID ǵ OID\n"
msgid " p port : Agent port of machine running the Discovery Object Table.\n"
msgstr " p port ǵܡȢա\n"
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "ESDIR must be set"
msgstr " ESDIR"
msgid "Usage: $2 -a \\\| -d \\\| -v [ -s ] -h hostname -l label -n not -o OID -p port\n"
msgstr "Ρ$2 -a \\\| -d \\\| -v [ -s ] -h -l -n not -o OID -p port\n"
msgid "It cannot be loaded on both the Agent and Platform Agent."
msgstr "ܡȢůƺܡȢīơ"
msgid "The options -h, -l, -n, -o, and -p must all be used with the -a option."
msgstr " -h-l-n-o -p -a "
msgid "An entry for $2 already exists."
msgstr " $2 㡤"
msgid "The option -l must be used with the -d option."
msgstr " -l -d "
msgid "The options -h, -n, -o, and -p are not valid with the -d option."
msgstr " -h-n-o -p -d "
msgid "An entry for $2 does not exist."
msgstr " $2 㡤"
msgid "The options -h, -l, -n, -o, and -p are not valid with the -v option."
msgstr " -h-l-n-o -p -v "
msgid "No entries."
msgstr "ȴ"
msgid "The file $2 is not readable."
msgstr " $2 ƫ̽"
msgid "Discovery Service loaded on: Agent"
msgstr "Τ٭īAgent"
msgid "Discovery Service loaded on: Platform Agent."
msgstr "Τ٭īƺܡȢ"
msgid "Entries:"
msgstr ""
msgid "The discovery table is already loaded on the Agent."
msgstr "ܡȢĸī"
msgid "The discovery table is already loaded on the Platform Agent."
msgstr "ƺܡȢĸī"
#
#=============================
# <WS>/packages/Setup/es-apps
#=============================
msgid "This script reads the specified configuration file or\\n%s if not specified,\\nand installs the applications with the server."
msgstr "Ⱥ Script ̽\\n%sΪ\\nΤȢ"
msgid "The configuration file contains one or more lines using the following format:\n"
msgstr "ġĶ֪Ȣթ\n"
msgid "where:\n"
msgstr "̧㡨\n"
msgid "name\tis the name of the application that appears in the Application list\n"
msgstr " name\tȢȢ"
msgid "class\tis the name of the Java class for the application\n"
msgstr " class\tȢ Java ɱ\n"
msgid "args\tare optional user defined arguments to be passed to the application\n"
msgstr "args\tīȢϯƫ\n"
msgid "help\tis the optional help specification using the format key:helpfile or :url.\n"
msgstr "help\tkey:helpfile :url ֪Ȣɷƫ\n"
msgid "There should be no quotes in the line.\n"
msgstr "ȴſ\n"
msgid "Lines beginning with # are considered as comments.\n"
msgstr " # թݷҳء"
msgid "For example:\n"
msgstr "\n"
msgid "Using %s"
msgstr " %s"
msgid "%s updated."
msgstr "%s 仡"
#
#================================
# <WS>/packages/Setup/db-export.sh
#================================
msgid "This action is limited to superuser only.\n"
msgstr "Ⱥɢϯ\n"
msgid "Exiting $PROGNAME."
msgstr " $PROGNAME"
#
#==================================
# <WS>/packages/Setup/db-import.sh
#==================================
msgid "This action is limited to superuser only.\n"
msgstr "Ⱥɢϯ\n"
msgid "Exiting $PROGNAME."
msgstr " $PROGNAME"
msgid "please ensure Topology & Event agents are not running..."
msgstr "ůǵܡȢ..."
#
#============================
# <WS>/packages/Setup/es-run
#============================
msgid "Usage : $PROGNAME option1 [option2,...]"
msgstr "Ρ$PROGNAME 1 [ 2,...]"
msgid " where option1 is a Sun Management Center utility\n and option2,... are the arguments for 'option1'\n\n If option1 is '-help', then the usage is printed.\n\n"
msgstr " ̧㡢 1 Sun Management Center Ȣ\n 2,... ҡ 1ſ\n\n Ϊ 1 '-help'̧Ρ\n\n"
#
#==============================
# <WS>/packages/Setup/es-chelp
#===============================
msgid "Must be root to run $PROGRAM"
msgstr " root ϯ $PROGRAM "
msgid "There is an existing $PROGRAM lockfile, $LOCKFILE"
msgstr "ġԶ $PROGRAM $LOCKFILE"
msgid "which indicates that process is executing the $PROGRAM"
msgstr "ݨܡ $PROGRAM"
msgid "If this is not the case, delete the lock file,"
msgstr "ΪӡɴȺ"
msgid "$LOCKFILE and execute $PROGRAM again."
msgstr "$LOCKFILE ȹ $PROGRAM"
msgid "$sdk_helpfile either does not exist or is not writable"
msgstr "$sdk_helpfile ƫī"
msgid "Must be root to run $PROGRAM"
msgstr " root ϯ $PROGRAM "
#
#========================================
# <WS>/src/db/build/build-recovery*.ksh
#========================================
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Usage: $PROGNAME -au auid -ap apword -wu wuid -wp wpword -sp syspword -s osrvname -tsn tsname -tsp tsphyspath -tsis tssize -olfp olfpath [-cdb] [-vr]"
msgstr "Ρ$PROGNAME -au auid -ap apword -wu wuid -wp wpword -sp syspword -s osrvname -tsn tsname -tsp tsphyspath -tsis tssize -olfp olfpath [-cdb] [-vr]"
msgid " -au auid : userid used to admin smc tablespace"
msgstr " -au auid ܡ smc ֪Ϩ userid"
msgid " -ap apword : password for corresponding admin userid"
msgstr " -ap apword ܡ userid "
msgid " -wu wuid : working userid used by application"
msgstr " -wu wuid Ȣɢ userid"
msgid " -wp wpword : working password for corresponding working userid"
msgstr " -wp wpword ɢ userid ɢ"
msgid " -sp syspword : password for system userid \\\(system\\\)"
msgstr " -sp syspword ˷ userid \\\(system\\\)"
msgid " -s osrvname : name of the oracle service used to connect to db"
msgstr " -s osrvname ̯ջ oracle Τ٭"
msgid " -tsn tsname : name of the tablespace"
msgstr " -tsn tsname ֪Ϩ"
msgid " -tsp tsphyspath : physical location of tablespace"
msgstr " -tsp tsphyspath ֪Ϩ"
msgid " -tsis tssize : initial size of tablespace \\\(in M bytes\\\)"
msgstr " -tsis tssize ֪Ϩ \\\( MB ҳ\\\)"
msgid " -olfp olfpath : physical location \\\(local\\\) to write the smc30.oracle file"
msgstr " -olfp olfpath ī smc30.oracle \\\(\\\)"
msgid " -cdb : indicates that any existing tablespace and user"
msgstr " -cdb ȴܢȴ֪Ϩůϯ"
msgid " matching the specified parameters above are"
msgstr " ĸٶϯ"
msgid " dropped before proceeding. use is optional"
msgstr " Щ۹ƫ"
msgid " -vr : this option is used to verify all objects"
msgstr " -vr Ⱥȴǵ"
msgid " and to perform a recovery sequence if any"
msgstr " ůߦѥٯɢΪ"
msgid " problems are detected"
msgstr " ̯Ƕ"
msgid " -ver : option"
msgstr " -ver "
msgid " -lf logfile : logfile name"
msgstr " -lf logfile "
msgid "ERROR: the ESDIR environment variable has not been set"
msgstr "먡 ESDIR "
msgid "illegal option encoutered : $2"
msgstr "̯$2"
msgid "this is a pc installation : $2"
msgstr "Ⱥҳ pc ҡ$2"
msgid "this is a sparc installation : $2"
msgstr "Ⱥҳ sparc ҡ$2"
msgid "unknown system type, exiting........................"
msgstr "˷........................"
msgid "can not find sqlplus on path, exiting........................."
msgstr "ĸ̯ sqlplus........................."
msgid "the current directory is not writable "
msgstr "Щƫī "
msgid "sqlplus writes an error log \\\(sqlnet.log\\\)"
msgstr "sqlplus ī \\\(sqlnet.log\\\)"
msgid "to the current directory in the event of"
msgstr "Щ㡾"
msgid "a connection problem"
msgstr "ǵ㡿"
msgid "the /tmp directory does not exist"
msgstr "/tmp "
msgid "however, a file named /tmp does exist"
msgstr "紡ȴԶҳ /tmp "
msgid "/tmp directory is not writable "
msgstr "/tmp ƫī"
msgid "the \\\(-au auid\\\) command line parameter was not specified "
msgstr " \\\(-au auid\\\) ٶ"
msgid "the \\\(-ap apword\\\) command line parameter was not specified "
msgstr " \\\(-ap apword\\\) ٶ"
msgid "the \\\(-wu wuid\\\) command line parameter was not specified "
msgstr " \\\(-wu wuid\\\) ٶ"
msgid "the \\\(-wp wpword\\\) command line parameter was not specified "
msgstr " \\\(-wp wpword\\\) ٶ"
msgid "the \\\(-sp syspword\\\) command line parameter was not specified "
msgstr " \\\(-sp syspword\\\) ٶ"
msgid "the \\\(-s osrvname\\\) command line parameter was not specified "
msgstr " \\\(-s osrvname\\\) ٶ"
msgid "the \\\(-tsn tsname\\\) command line parameter was not specified "
msgstr " \\\(-tsn tsname\\\) ٶ"
msgid "the \\\(-tsp tsphyspath\\\) command line parameter was not specified "
msgstr " \\\(-tsp tsphyspath\\\) ٶ"
msgid "the \\\(-tsis tssize\\\) command line parameter was not specified "
msgstr " \\\(-tsis tssize\\\) ٶ"
msgid "the \\\(-olfp olfpath\\\) command line parameter was invalid! "
msgstr "\\\(-olfp olfpath\\\) ٶ桪 "
msgid "exiting..................."
msgstr "..................."
msgid "The Initial Tablespace Size given is not invalid"
msgstr "֪Ϩ"
msgid "valid range is 1 to 500 M"
msgstr "ȴҳ 1 ̯ 500 M"
msgid "Writing Applogin file : $2"
msgstr "ī Applogin $2"
msgid "file : $2, has a quit statement in it."
msgstr "file : $2̧ȴġԶ"
msgid "file : $str3, has a quit statement in it."
msgstr "file : $str3̧ȴġԶ"
msgid "need to remove quit statements, exiting........................"
msgstr "........................"
msgid "source file: $2 for step: $3 is missing"
msgstr "$2$3"
msgid "probably need to execute mkaggregatefiles.ksh"
msgstr "ƫ mkaggregatefiles.ksh"
msgid "source file for one or more steps is missing, exiting........................"
msgstr "ġԶ¡........................"
msgid " removing existing logfile : /tmp/recovery.err"
msgstr " ܢȴ/tmp/recovery.err"
msgid " removing existing logfile : $2"
msgstr " ܢȴ $2"
msgid " removing existing temporary sql : $2"
msgstr " ܢȴ sql $2"
msgid "Unable to successfully append $2 onto $3"
msgstr "ȩʢ $2 $3"
msgid "return code from cat : $2"
msgstr " cat $2"
msgid "$2 file not found"
msgstr "̯ $2 "
msgid "Unable to successfully substitue in $2"
msgstr " $2 ȩ̽"
msgid "substitution string : $2"
msgstr "̽롨$2"
msgid "return code from sed : $2"
msgstr " sed $2"
msgid "Unable to successfully perform all sed based substitutions on $2 into $3"
msgstr "ȩ $2 ĸȴ sed ̽ɢ̯ $3 "
msgid "return code from grep : $2, meaning it found un-substituted strings"
msgstr " grep $2̯̽"
msgid "$2 file not found\\\(1\\\)"
msgstr "̯ $2 \\\(1\\\)"
msgid "please see the $2 file for additional details"
msgstr "ٶ $2 ̧ع"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "sqlerror code = $2"
msgstr "sqlerror = $2"
msgid "sqlerrmsg full = \\\>\\\>\\\> $2\\\<\n"
msgstr "sqlerrmsg =\\\>\\\>\\\> $2\\\<\n"
msgid "unhandled error detected, only recourse is to stop processing"
msgstr "̯ݨܡ먡ġȢݨܡ"
msgid "please see the $2 file for additional details"
msgstr "ٶ $2 ̧ع"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "execution of $2 ok!!"
msgstr "$2 ڦ"
msgid "step file $2 not found"
msgstr "̯ $2"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "skipping execution of $2"
msgstr " $2 "
msgid "$2 dependent step $3 did not execute"
msgstr " $3 $2 "
msgid "$2 dependent step $3 failed execution"
msgstr " $3 $2 "
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "while in recovery mode, attempts to find a successfully executed dependent of "
msgstr "ߦȢĶ롢ȩ $2 "
msgid "the $2 step was unsuccessfull. premature exit!!"
msgstr "ȩȮ֡"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "while in recovery mode, attempts to find a valid step to execute following "
msgstr "ߦȢĶ롢ƫĶ $2 ȴ"
msgid "the $2 step was unsuccessfull. premature exit!!"
msgstr "ȩȮ֡"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "too many attempts to execute the $2 step"
msgstr " $2 Ŵ"
msgid "please see the $2 file for additional details"
msgstr "ٶ $2 ̧ع"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "please see the $2 file for listing details"
msgstr "ٶ $2 ع"
#
#========================================
# <WS>/src/db/build/mkaggregatefiles.ksh
#========================================
msgid " removing existing verify inventory : agg-verify-proc-inventory.sql"
msgstr " ܢȴջagg-verify-proc-inventory.sql"
msgid "- Create agg-packages-topology.sql file -"
msgstr "- ǡ agg-packages-topology.sql -"
msgid "- Create agg-procedures-topology.sql file -"
msgstr "- ǡ agg-procedures-topology.sql -"
msgid "- Add to agg-createalltables.sql file -"
msgstr "- agg-createalltables.sql -"
msgid "- Add to agg-verifyalltableattribs.sql file -"
msgstr "- agg-verifyalltableattribs.sql -"
msgid "- Add to agg-dataload-preseq.sql file -"
msgstr "- agg-dataload-preseq.sql -"
msgid "- Create agg-packages-eventmanager.sql file -"
msgstr "- ǡ agg-packages-eventmanager.sql -"
msgid "- Create agg-procedures-eventmanager.sql file -"
msgstr "- ǡ agg-procedures-eventmanager.sql -"
msgid "- Add to agg-createalltables.sql file -"
msgstr "- agg-createalltables.sql -"
msgid "- Add to agg-verifyalltableattribs.sql file -"
msgstr "- agg-verifyalltableattribs.sql -"
msgid "- Create agg-packages-mgmtservice.sql file -"
msgstr "- ǡ agg-packages-mgmtservice.sql -"
msgid "- Create agg-procedures-mgmtservice.sql file -"
msgstr "- ǡ agg-procedures-mgmtservice.sql -"
msgid "- Add to agg-createalltables.sql file -"
msgstr "- agg-createalltables.sql -"
msgid "- Add to agg-verifyalltableattribs.sql file -"
msgstr "- agg-verifyalltableattribs.sql -"
msgid "- Create agg-verify-proc-inventory.sql file -"
msgstr "- ǡ agg-verify-proc-inventory.sql -"
#
#==================================================
# <WS>/src/oa/modules/configd4u/bin/es-setup.sh
#==================================================
msgid "Setup failed while adding module $2 into $3"
msgstr " $2 $3 "
msgid "$2 does not exist"
msgstr "$2 "
msgid "Added module $2 to $3."
msgstr " $2 $3"
msgid "$2 is not readable, Could not add the module $3"
msgstr "$2 ƫ̽ $3"
msgid "Setup of sunfire config reader module failed."
msgstr "sunfire ̽"
#
#======================================
# <WS>/src/oa/base/generic/bin/*.sh
#======================================
msgid "usage: $basename [-sh|-csh] [-internal|-external]"
msgstr "Ρ$basename [-sh|-csh] [-internal|-external]"
msgid "ERROR: the ESROOT environment variable has not been set"
msgstr "먡 ESROOT "
msgid "usage: $PROGNAME -s \\\"<secret> [-p <public>] [-u <user>[ ...]] [-h <host>] [-c <component>[ ...]]\\\""
msgstr "Ρ$PROGNAME -s \\\"<ǵ> [-p <>] [-u <ϯ>[ ...]][-h <>] [-c <ǵ>[ ...]]\\\""
msgid " <secret> is the superuser password\n"
msgstr " <ǵ> ϯ\n"
msgid " <public> is the public password (default=public)\n"
msgstr " <> ԫ=public\n"
msgid " <user> is the list of initial seeded users\n"
msgstr " <ϯ> ϯ\n"
msgid " <host> is the fallback host name\n"
msgstr " <> \n"
msgid " <component> is agent/cfgserver/event/cstservice/topology/trap/\n"
msgstr " <ǵ> agent/cfgserver/event/cstservice/topology/trap/\n"
msgid " Omit all <component>s to do them all\n"
msgstr " ܩȴ <ǵ> \n"
msgid "$PROGNAME: ESROOT must be set."
msgstr "$PROGNAME: ESROOT"
msgid "$PROGNAME: $1: unknown component"
msgstr "$PROGNAME: $1: ǵ"
msgid "$PROGNAME: ERROR: blank secret not allowed, exiting ..."
msgstr "$PROGNAME: 먡Ϩǵ ..."
msgid "$PROGNAME: ERROR: blank password not allowed, exiting ..."
msgstr "$PROGNAME: 먡Ϩ ..."
msgid "PROGNAME: WARNING ... secret will be truncated to 8 characters"
msgstr "PROGNAME: ... ǵҳ 8 Զ"
msgid "$PROGNAME: security.superuser name not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.superuser ꢡ domain-config.x user-config.x "
msgid "$PROGNAME: security.generaluser name not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.generaluser ꢡ domain-config.x user-config.x "
msgid "$var"
msgstr "$var"
msgid "Interrupted..."
msgstr "..."
msgid "$PROGNAME: security.userfile not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.userfile domain-config.x user-config.x "
msgid "$PROGNAME: security.authOID not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.authOID domain-config.x user-config.x "
msgid "$PROGNAME: security.privOID not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.privOID domain-config.x user-config.x "
msgid "$PROGNAME: ${COMP}.${COMP}Server not found - using $DEFHOST."
msgstr "$PROGNAME: ̯ ${COMP}.${COMP}Server - $DEFHOST"
msgid "$PROGNAME: ${COMP}.${COMP}snmpPort not found - skipping $COMP."
msgstr "$PROGNAME: ̯ ${COMP}.${COMP}snmpPort - ܩ $COMP"
msgid "ESROOT must be set\n"
msgstr " ESROOT\n"
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "OS $sys $rel is not supported"
msgstr " OS $sys $rel"
msgid "No Matching Process Found \\\($COMMAND\\\)"
msgstr "̯ݨܡ \\\($COMMAND\\\)"
msgid "Terminating Process ID $PID \\\($COMMAND\\\)"
msgstr "ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "gettext 'Error Killing Process ID $PID \\\($COMMAND\\\)"
msgstr "gettext 'ɴݨܡ ID $PID \\\($COMMAND\\\)"
#
#=================================================
# <WS>/src/java/base/console/bin/es-console.sh
#=================================================
msgid "ESROOT environment variable must be set"
msgstr " ESROOT "
msgid "DISPLAY environment variable must be set"
msgstr " DISPLAY "
msgid "SYMON_JAVAHOME variable must be set"
msgstr " SYMON_JAVAHOME "
msgid "$JAVA must exist and be of version Solaris_JDK_1.2.1_04\n"
msgstr "$JAVA Solaris_JDK_1.2.1_04 \n"
#
#============================================
# <WS>/src/java/base/server/bin/es-server*
#============================================
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "No Matching Process Found \\\($COMMAND\\\)"
msgstr "̯ݨܡ \\\($COMMAND\\\)"
msgid "More Than One Matching Process Found \\\($COMMAND\\\)"
msgstr "̯Զݨܡ \\\($COMMAND\\\)"
msgid "No Processes Killed"
msgstr "ɴݨܡ"
msgid "gettext 'More Than One Matching Process Found \\\($COMMAND\\\)"
msgstr "gettext '̯Զݨܡ \\\($COMMAND\\\)"
msgid "Terminating Process ID $PID \\\($COMMAND\\\)"
msgstr "ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "Error Killing Process ID $PID \\\($COMMAND\\\)"
msgstr "ɴݨܡ ID $PID \\\($COMMAND\\\)"
msgid "No Matching Process Found \\\($COMMAND\\\)"
msgstr "̯ݨܡ \\\($COMMAND\\\)"
msgid "Terminating Process ID $PID using kill -9 \\\($COMMAND\\\)"
msgstr " kill -9 ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "Error Killing Process ID $PID with kill -9 \\\($COMMAND\\\)"
msgstr " kill -9 ɴݨܡ ID $PID \\\($COMMAND\\\)"
msgid "ESROOT environment variable must be set"
msgstr " ESROOT "
msgid "ESDIR environment variable must be set"
msgstr " ESDIR "
msgid "SYMON_JAVAHOME variable must be set"
msgstr " SYMON_JAVAHOME "
msgid "$JAVA must exist and be of version Solaris_JDK_1.2.1_04\n"
msgstr "$JAVA Solaris_JDK_1.2.1_04 \n"
#
#====================================================
# <WS>/src/java/com/sun/symon/base/cli/bin/es-cli
#====================================================
msgid "$SYMON_JAVAHOME/jre/bin/java must exist and be of version Solaris_JDK_1.2.1_04\n"
msgstr "$SYMON_JAVAHOME/jre/bin/java Solaris_JDK_1.2.1_04 \n"
#
# Strings from Halcyon scripts
#
msgid "usage: $basename [-sh|-csh] [-internal|-external]"
msgstr "Ρ$basename [-sh|-csh] [-internal|-external]"
msgid "ERROR: the ESROOT environment variable has not been set"
msgstr "먡 ESROOT "
msgid "usage: $PROGNAME -s <secret> [-p <public>] [-u <user>[ ...]] [-h <host>] [-c <component>[ ...]]"
msgstr "Ρ$PROGNAME -s <ǵ> [-p <>] [-u <ϯ>[ ...]][-h <>] [-c <ǵ>[ ...]]"
msgid "<secret> is the superuser password"
msgstr "<ǵ> ϯ"
msgid "<public> is the public password (default=public)"
msgstr "<> ԫ=public"
msgid "<user> is the list of initial seeded users"
msgstr "<ϯ> ϯ"
msgid "<host> is the fallback host name"
msgstr "<> "
msgid "<component> is agent/cfgserver/event/topology/trap"
msgstr "<ǵ> agent/cfgserver/event/topology/trap"
msgid "Omit all <component>s to do them all"
msgstr "ܩȴ <ǵ> "
msgid "$PROGNAME: ESROOT must be set."
msgstr "$PROGNAME: ESROOT"
msgid "$PROGNAME: $1: unknown component"
msgstr "$PROGNAME: $1: ǵ"
msgid "$PROGNAME: ERROR: blank secret not allowed, exiting ..."
msgstr "$PROGNAME: 먡Ϩǵ ..."
msgid "$PROGNAME: ERROR: blank password not allowed, exiting ..."
msgstr "$PROGNAME: 먡Ϩ ..."
msgid "$PROGNAME: WARNING ... secret will be truncated to 8 characters"
msgstr "$PROGNAME: ... ǵҳ 8 Զ"
msgid "$PROGNAME: security.superuser name not found. Check domain-confg.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.superuser ꢡ domain-confg.x user-config.x "
msgid "$PROGNAME: security.generaluser name not found. Check domain-cofig.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.generaluser ꢡ domain-cofig.x user-config.x "
msgid "Copying $FILENAME to $ESDIR/cfg..."
msgstr " $FILENAME ̯ $ESDIR/cfg..."
msgid "Copying ${1}-${FILENAME} to $ESDIR/cfg..."
msgstr " ${1}-${FILENAME} ̯ $ESDIR/cfg..."
msgid "Copying ${COMP}-${FILENAME} to $ESDIR/cfg..."
msgstr " ${COMP}-${FILENAME} ̯ $ESDIR/cfg..."
msgid "$var"
msgstr "$var"
msgid "Interrupted..."
msgstr "..."
msgid "$PROGNAME: security.userfile not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.userfile domain-config.x user-config.x "
msgid "$PROGNAME: security.authOID not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.authOID domain-config.x user-config.x "
msgid "$PROGNAME: security.privOID not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.privOID domain-config.x user-config.x "
msgid "$PROGNAME: ${COMP}.${COMP}Server not found - using $DEFHOST"
msgstr "$PROGNAME: ̯ ${COMP}.${COMP}Server - $DEFHOST"
msgid "$PROGNAME: ${COMP}.${COMP}snmpPort not found - skipping $COP."
msgstr "$PROGNAME: ̯ ${COMP}.${COMP}snmpPort - ܩ $COP"
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "OS $sys $rel is not supported"
msgstr " OS $sys $rel"
msgid "Terminating Process ID $PID \\\($COMMAND\\\)"
msgstr "ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "Error Killing Process ID $PID \\\($COMMAND\\\)"
msgstr "ɴݨܡ ID $PID \\\($COMMAND\\\)"
msgid "No Matching Process Found \\\($COMMAND\\\)"
msgstr "̯ݨܡ \\\($COMMAND\\\)"
msgid "Terminating Process ID $PID with the force \\\($COMMAND\\\)"
msgstr "ڰ̱ \\\($COMMAND\\\) ݨܡ ID $PID"
msgid "DISPLAY environment variable must be set"
msgstr " DISPLAY "
msgid "More Than One Matching Process Found \\\($COMMAND\\\)"
msgstr "̯Զݨܡ \\\($COMMAND\\\)"
msgid "No Processes Killed"
msgstr "ɴݨܡ"
msgid "Terminating Process ID $PID using kill -9 \\\($COMMAND\\\)"
msgstr " kill -9 ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "Error Killing Process ID $PID with kill -9 \\\($COMMAND\\\)"
msgstr " kill -9 ɴݨܡ ID $PID \\\($COMMAND\\\)"
msgid "ESROOT environment variable must be set"
msgstr " ESROOT "
msgid "ESDIR environment variable must be set"
msgstr " ESDIR "
#
# for es-tool - a SDK tool for integrating applications into console
#
msgid "Must be root to run $PROGRAM"
msgstr " root ϯ $PROGRAM "
msgid "$sdk_toolfile either does not exist or is not writable"
msgstr "$sdk_toolfile ƫī"
msgid "There is an existing $PROGRAM lockfile, $LOCKFILE"
msgstr "ġԶ $PROGRAM $LOCKFILE"
msgid "which indicates that process is executing the $PROGRAM"
msgstr "ݨܡ $PROGRAM"
msgid "If this is not the case, delete the lock file,"
msgstr "ΪӡɴȺ"
msgid "$LOCKFILE and execute $PROGRAM again."
msgstr "$LOCKFILE ȹ $PROGRAM"
msgid "$sdk_helpfile either does not exist or is not writable"
msgstr "$sdk_helpfile ƫī"
msgid "$JAVA must exist and be of version Solaris_JDK_1.2.1_04\n"
msgstr "$JAVA Solaris_JDK_1.2.1_04 \n"
msgid "Using %s"
msgstr " %s"
msgid "%s updated."
msgstr "%s 仡"
msgid "This script reads the specified configuration file or\\n%s if not specified,\\nand installs the applications with the server."
msgstr "Ⱥ Script ̽\\n%sΪ\\nΤȢ"
msgid "The configuration file contains one or more lines using the following format:\n"
msgstr "ġĶ֪Ȣթ\n"
msgid "where:\n"
msgstr "̧㡨\n"
msgid "name\tis the name of the application that appears in the Application list\n"
msgstr " name\tȢȢ"
msgid "class\tis the name of the Java class for the application\n"
msgstr " class\tȢ Java ɱ\n"
msgid "args\tare optional user defined arguments to be passed to the application\n"
msgstr "args\tīȢϯƫ\n"
msgid "help\tis the optional help specification using the format key:helpfile or :url.\n"
msgstr "help\tkey:helpfile :url ֪Ȣɷƫ\n"
msgid "There should be no quotes in the line.\n"
msgstr "ȴſ\n"
msgid "Lines beginning with # are considered as comments.\n"
msgstr " # թݷҳء"
msgid "For example:\n"
msgstr "\n"
#
#====================================================
# <WS>/packages/Setup/es-platform
#====================================================
msgid "Usage: $PROGNAME -ad instanceName"
msgstr "Ρ$PROGNAME -ad instanceName"
msgid " Where the options represent:\n"
msgstr " ̧\n"
msgid " a : to add an instance of platform agent\n"
msgstr " aƺܡȢ\n"
msgid " d : to delete an instance of platform agent\n"
msgstr " dɴƺܡȢ\n"
msgid "You can not specify both a and d option in the same command"
msgstr "ġԶ a ů d "
msgid "You can not have spaces in the instance name."
msgstr "ȴϨ֪"
msgid "Port $2 is not a valid port number, try another number : "
msgstr " $2 ȴƶġԶ "
msgid "This port is being used by Sun Management Center agent, try another number : "
msgstr "Ⱥ Sun Management Center ܡȢƶġԶ "
msgid "This port is being used by some instance, try another number : "
msgstr "ȺԶƶġԶ "
msgid "This port is being used by some another process, try another number : "
msgstr "ȺƶġԶݨܡƶġԶ "
msgid "This instance is already present."
msgstr "Ⱥ㡤"
msgid "Usage: $PROGNAME -ad instanceName"
msgstr "Ρ$PROGNAME -ad instanceName"
msgid "Usage: $PROGNAME -ad instanceName"
msgstr "Ρ$PROGNAME -ad instanceName"
msgid "Usage: $PROGNAME -ad instanceName"
msgstr "Ρ$PROGNAME -ad instanceName"
# END
domain "ES_SCRIPTS"
#
#==============================
# <WS>/packages/Setup/es-inst
#==============================
msgid "You need to be root before running this program.\n"
msgstr "ȢЩǿȩҳ root\n"
msgid "Can not remove the directory /tmp/SunMC30Install\n"
msgstr " /tmp/SunMC30Install\n"
msgid "Can not create the directory /tmp/SunMC30Install/sbin\n"
msgstr "ǡ /tmp/SunMC30Install/sbin\n"
msgid "Can not copy the required files to /tmp/SunMC30Install\n"
msgstr "̯ /tmp/SunMC30Install\n"
msgid "Can not open the display. Either X server is not allowing\n"
msgstr " Either X server is not allowing\n"
msgid "the connection or you are running it from console login.\n"
msgstr "ϯƺīơ\n"
msgid "Please read Sun Management Center installation Readme and\n"
msgstr " Sun Management Center Readme \n"
msgid "run installation as mentioned.\n"
msgstr "ҡ\n"
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Do you want to create it?"
msgstr "ǡ"
msgid " Space calculations will be wrong."
msgstr " Ϩȴ먡"
msgid "Insufficient disk space to install the requested Sun Management Center components"
msgstr "ȴϨƫ Sun Management Center ǵ"
msgid " - Respecify the components to install so it takes less space"
msgstr " - ģ́ŷϨ"
msgid " - Uninstall some existing packages to make room for Sun Management Center"
msgstr " - ġܢȴաϨ Sun Management Center"
msgid " - Make a soft link for $2 that points to more space"
msgstr " - ҳ $2 ܨġԶڰ̱Ϩ"
msgid " - Ask your system administrator for help"
msgstr " - ˷ܡɷ"
msgid "Package $2 is already installed on this system."
msgstr "Ⱥ˷ĸħ $2"
msgid "Please verify the platform for package: $2"
msgstr "ƺ$2"
msgid "Found: $2"
msgstr "̯$2"
msgid "Skipping package $2"
msgstr " $2"
msgid "There appear to be some permission problems with the installation"
msgstr "ĸƫȴġƫ"
msgid "directory: $2"
msgstr "$2"
msgid "In order to install Sun Management Center, root must be able to write to the"
msgstr " Sun Management Centerroot ϯ̦ȴ"
msgid "installation directory and own the files in that directory."
msgstr "īƫ⡢ȴĶ"
msgid "Please check your configuration and try again."
msgstr "ܡ"
msgid "Exiting Sun Management Center installation."
msgstr " Sun Management Center ʩ"
msgid "Error: Cannot find pack key $2."
msgstr "먡̯ $2"
msgid "There are $2 layers for your selection:"
msgstr "ȴ $2 Զȹ"
msgid "No layers were selected for installation."
msgstr "ȴ̽ȹ"
msgid "No layers were found for installation."
msgstr "̯ȹ"
msgid "No packs are defined in the installation configuration file."
msgstr "ա"
msgid "Please select the packs to install:"
msgstr "̽ա"
msgid "No packs were selected for installation."
msgstr "̽ա"
msgid "Error: Cannot find component key $2."
msgstr "먡̯ǵ $2"
msgid "Error: Cannot find key $2."
msgstr "먡̯ $2"
msgid " Component $2 has already been installed."
msgstr " ǵ $2"
msgid " The corresponding packages are: $2"
msgstr " ҳ$2"
msgid " Invalid source directory."
msgstr " 硤"
msgid "Source directory: $2"
msgstr "硨$2"
msgid "Invalid parameter for productExists\\\(\\\): $2"
msgstr " productExists ٶ\\\(\\\)$2"
msgid "Production Environment Installation"
msgstr "ܨ"
msgid "Developer Environment Installation"
msgstr "ĩ"
msgid "Cannot find $2."
msgstr "̯ $2"
msgid "Invalid License, please buy a valid license."
msgstr "桢ȴ⡤"
msgid " Invalid entry."
msgstr " "
msgid " Installation configuration files not found."
msgstr " ̯"
msgid "You can install only agent components on Solaris 2.5.1"
msgstr "ƫƷ Solaris 2.5.1 ĸܡȢǵ"
msgid "Select one of the following:"
msgstr "̽Ķġ"
msgid "\\\(1\\\) Production Environment \\\(PE\\\)"
msgstr "\\\(1\\\) ܨ \\\(PE\\\)"
msgid "\\\(2\\\) Developer Environment \\\(DE\\\)"
msgstr "\\\(2\\\) ĩ \\\(DE\\\)"
msgid "Some components have already been installed in $2"
msgstr " $2 ħšǵ"
msgid "The target directory will be set to $2"
msgstr "ҳ $2"
msgid "Cannot create the directory $2"
msgstr "ǡ $2"
msgid "Target directory: $2"
msgstr "硨$2"
msgid "Package $2 is already installed."
msgstr " $2 ҡ"
msgid "Package not found: $2"
msgstr "̯ա$2"
msgid "Error: Cannot find pack key $2."
msgstr "먡̯ $2"
msgid "Pack: $2"
msgstr "ա$2"
msgid " Please select the components to install:"
msgstr " ̽ǵ"
msgid " Component $2 is essential and will be automatically installed."
msgstr " $2 ҳǵٯҡ"
msgid " Component $2 has already been installed."
msgstr " ǵ $2"
msgid " The corresponding packages are: $2"
msgstr " ҳ$2"
msgid " Component $2 is dependent on: $3"
msgstr " ǵ $2 ʡ$3"
msgid " The component\\\(s\\\) will be automatically installed."
msgstr " ǵٯҡ"
msgid " Selected Components: $2"
msgstr " ̽ǵ$2"
msgid " Selected Components: \\\<default\\\>"
msgstr " ̽ǵ\\\<\\\>"
msgid " Warning - Could not find pkgmap file for $2"
msgstr " - ̯ $2 pkgmap "
msgid "Warning - Could not find the pkgmap file for $2"
msgstr " - ̯ $2 pkgmap "
msgid "Warning - Could not find the pkgmap file for $2"
msgstr " - ̯ $2 pkgmap "
msgid "Checking disk space..."
msgstr "Ϩ..."
msgid "Insufficient disk space to install Sun Management Center Database Software"
msgstr "ȴϨƫ Sun Management Center ջ"
msgid "Sun Management Center DB application software requires: $2 Kbytes"
msgstr "Sun Management Center DB ȢϨ桨$2 KB"
msgid "The installation directory \\\"$2\\\" has: $3 Kbytes"
msgstr " \\\"$2\\\" ȴϨ桨$3 KB"
msgid "Please supply a directory."
msgstr "硤"
msgid "Insufficient disk space to install Sun Management Center Database Dbfiles"
msgstr "ȴϨƫ Sun Management Center ջ Db "
msgid "Sun Management Center DB application software requires: $2 Kbytes"
msgstr "Sun Management Center DB ȢϨ桨$2 KB"
msgid "The installation directory \\\"$2\\\" has: $3 Kbytes"
msgstr " \\\"$2\\\" ȴϨ桨$3 KB"
msgid "Please supply a directory."
msgstr "硤"
msgid "Disk Space Requirements:"
msgstr "Ϩ塨"
msgid "Space required \\\(in $2\\\): $3 blocks."
msgstr "Ϩ \\\($2 \\\)$3 Զٴۡ"
msgid "Space available \\\(in $2\\\): $3 blocks."
msgstr "ƫϨ \\\($2 \\\)$3 Զٴۡ"
msgid "Insufficient space available in $2"
msgstr "$2 ƫϨ"
msgid "Here are some possible fixes to alleviate the disk space problem:"
msgstr "ĶҳƫϨΡ"
msgid "\\\"$2\\\" resides on CD \\\#$3."
msgstr "\\\"$2\\\" \\\#$3 ĸ"
msgid "New source directory: $2"
msgstr "硨$2"
msgid "Invalid directory."
msgstr "硤"
msgid "Installing the components..."
msgstr "ǵ..."
msgid "Error installing package: $2"
msgstr "먡$2"
msgid "The package $2 is already installed"
msgstr " $2"
msgid " Selection Summary"
msgstr " "
msgid "Looking for addon products on CD \\\#2..."
msgstr " CD \\\#2 ĸܨ..."
msgid "New source directory: $2"
msgstr "硨$2"
msgid " Sun Management Center 3.0 Addons Product Selection: "
msgstr " Sun Management Center 3.0 ܨ塨 "
msgid "Installing the product: $2"
msgstr "ܨ¡$2"
msgid "Cannot find pkginfo file for package: $2"
msgstr "̯ pkginfo $2"
msgid "Error installing package: $2"
msgstr "먡$2"
msgid "Supports: $2 - $3"
msgstr "Ρ$2 - $3"
msgid "Supports: $2"
msgstr "Ρ$2"
msgid "Name: $2"
msgstr "ꢡ$2"
msgid "Description: $2"
msgstr "$2"
msgid "Unsupported OS version: $2"
msgstr " OS ۡ$2"
msgid "No components to install."
msgstr "ȴǵ"
msgid "A previous version of Sun Management Center exists."
msgstr "ȴ Sun Management Center 㡤"
msgid "Please uninstall it locally in \\\"$2\\\"."
msgstr "ҡ \\\"$2\\\" 㡿"
msgid "Cannot find $2"
msgstr "̯ $2"
msgid "Error copying the locale files to: $2"
msgstr "̯Ķ먡$2"
msgid "Setup script will use English."
msgstr " script ơ"
msgid "Please run setup locally in \\\"$2\\\"."
msgstr " \\\"$2\\\" 㡿"
msgid "ESROOT is not set."
msgstr " ESROOT"
msgid "Invalid directory: $2"
msgstr "硨$2"
msgid "Invalid file: $2"
msgstr "$2"
msgid "Both -S and -T options must be specified"
msgstr "-S -T ̥Զ"
msgid "This script will help you to install the Sun Management Center software."
msgstr " script ̶ɷ Sun Management Center ա"
msgid "Do you want to install this package now?"
msgstr "ǡɻȺա"
msgid " Do you want to proceed?"
msgstr " "
msgid " Do you want to install components in layer: $2?"
msgstr " Ķȹǵ$2?"
msgid " Do you want to install $2?"
msgstr " $2"
msgid "Do you want to install the product: $2?"
msgstr "Ⱥܨ¡$2?"
msgid "Do you want to install this package now?"
msgstr "ǡɻȺա"
msgid "Would you like to uninstall it now?"
msgstr "ǡɻá"
msgid "Would you like to save your old data?"
msgstr "á"
msgid "Do you want to run setup now?"
msgstr "ǡɻҡ"
msgid "Please enter the source directory:"
msgstr "ī硨"
msgid "Enter the development system license: "
msgstr "ī˷⡨ "
msgid "Enter your choice: [1\\\|2]"
msgstr "ī塨[1\\\|2]"
msgid "Please enter the target directory [$2]:"
msgstr "ī [$2]"
msgid "Enter the directory to install the database: "
msgstr "īջ硨 "
msgid "Please insert the second CD or enter the source directory from disk 2 \\\[$2\\\]"
msgstr "īĨگ CD ī 2 \\\[$2\\\]"
msgid "Please enter the new source directory:"
msgstr "ī硨"
msgid "Please enter the OS version for \\\"$2\\\" \\\[$3\\\]: "
msgstr "ī \\\"$2\\\" OS \\\[$3\\\] "
msgid "Please enter the platform for \\\"$2\\\" \\\[$3\\\]: "
msgstr "ī \\\"$2\\\" ƺ \\\[$3\\\] "
msgid "Log file: $2"
msgstr "$2"
msgid " End of Installation "
msgstr " "
msgid "For installing Sun Management Center on $2, we need to know the"
msgstr "ҳħ Sun Management Center $2 ĸʼԯϡ"
msgid "operating system on $2. This should be the output of the command"
msgstr "$2 ĸɢ˷ӡ"
msgid "/usr/bin/uname -r. The command must be executed on a machine booted with"
msgstr "/usr/bin/uname -r Ϊ"
msgid "disk mounted on $2"
msgstr " $2 ٯĸ硤"
msgid "For installing Sun Management Center on $2, we need to know the"
msgstr "ҳħ Sun Management Center $2 ĸʼԯϡ"
msgid "machine type of machine whose root filesystem is or will be mounted on $2."
msgstr "̧˷ɻ $2 ĸΡ"
msgid "This should be the output of the following command"
msgstr "ĶΪ"
msgid " /usr/platform/PLATFORM/sbin/prtdiag \\\| /usr/bin/head -1 \\\| /usr/bin/cut -f2 -d:"
msgstr " /usr/platform/PLATFORM/sbin/prtdiag \\\| /usr/bin/head -1 \\\| /usr/bin/cut -f2 -d:"
msgid "Please note that the above commands must be executed on the target machine."
msgstr "ĸĸ硤"
msgid "Would you like to migrate your 2.x data?"
msgstr " 2.x á"
msgid "A previous version of Sun Management Center Data exists."
msgstr "ȴ Sun Management Center 㡤"
msgid "This will remove all files under $2. If you have any custom"
msgstr " $2 ĶȴΪԶĶȴ"
msgid "scripts under this directory, please move them to an alternate location"
msgstr "Ƕ scriptsЩԯ"
msgid "before proceeding."
msgstr "̯"
msgid "Do you wish to continue with the removal of the existing 2.x data"
msgstr "ܢȴ 2.x "
#
#===============================
# <WS>/packages/Setup/es-setup
#===============================
msgid "Setup of $2 component failed."
msgstr " $2 ǵ"
msgid "Exiting setup."
msgstr ""
msgid "The Sun Management Center Setup File \\\($2\\\)$3"
msgstr "Sun Management Center \\\($2\\\)$3"
msgid " is missing. Cannot Setup Sun Management Center $2."
msgstr " ¡ Sun Management Center $2"
msgid "Initiating setup for Sun Management Center $2 Component."
msgstr " Sun Management Center $2 ǵ "
msgid "Please read the release notes to configure the device type."
msgstr "Ρ"
msgid "Using log file: $2."
msgstr "$2."
msgid " Sun Management Center Setup Program"
msgstr " Sun Management Center Ȣ"
msgid "This program does setup of Sun Management Center components that are installed on your system."
msgstr "ȺȢ˷ĸ Sun Management Center ǵ"
msgid "Checking for Sun Management Center components installed on your system."
msgstr "˷ĸ Sun Management Center ǵ"
msgid "You Do not have any Sun Management Center components installed."
msgstr "Ƕ Sun Management Center ǵ"
msgid "You may want to run setup after installing"
msgstr " Sun Management Center ǵѥƫ"
msgid " the Sun Management Center components."
msgstr " Ȣ"
msgid "You have the following Sun Management Center components installed"
msgstr "ħĶ Sun Management Center ǵ"
msgid " Sun Management Center Server"
msgstr " Sun Management Center Τ"
msgid " Sun Management Center Agent"
msgstr " Sun Management Center ܡȢ"
msgid " Sun Management Center Console"
msgstr " Sun Management Center ƺ"
msgid "This script will perform the setup for each of these components"
msgstr " Script ҳǵʩ"
msgid "Core Sun Management Center setup complete."
msgstr " Sun Management Center ܫ"
msgid "Setup of Sun Management Center addons incomplete. Exiting"
msgstr " Sun Management Center ȩ Exiting"
msgid "Sun Management Center setup complete."
msgstr " Sun Management Center ܫ"
msgid "Problems occured with setup of the following addons: $2"
msgstr "Ķ$2"
msgid "Setup log stored in $2"
msgstr " $2 "
msgid "A minimum of 256 MB RAM is required to run Sun Management Center."
msgstr "ŷȴ 256 MB RAM Sun Management Center"
msgid "Current system has $2 MB RAM."
msgstr "Щ˷̦ȴ $2 MB RAM"
msgid "Can not continue to setup Sun Management Center DB."
msgstr " Sun Management Center DB"
msgid "Checking /etc/system file..."
msgstr " /etc/system ..."
msgid "Checking memory available..."
msgstr "ƫش..."
msgid "Checking /etc/system file error. It can not be updated."
msgstr " /etc/system 먡 It can not be updated."
msgid "The /etc/system file needs to be changed for Sun Management Center DB requirements."
msgstr " /etc/system Sun Management Center DB 塤"
msgid "Backing up /etc/system to /etc/system.SunMCDB.backup"
msgstr "ެǹ /etc/system to /etc/system.SunMCDB.backup"
msgid "/etc/system file has not been changed."
msgstr " /etc/system file "
msgid "In order for kernel variable changes to take effect, this "
msgstr "ҳ桢ٯ"
msgid "machine must be rebooted. You must reboot this machine now"
msgstr "檡ǡɻٯ"
msgid "and then run the setup again."
msgstr "ѥԶʩ"
msgid "Cannot create link $2 to directory $3"
msgstr "ǡͻ $3 $2"
msgid "Sun Management Center DB setup cannot continue."
msgstr "Sun Management Center DB ʩ"
msgid "Error changing ownership of $2 to root. Installation cannot continue."
msgstr " $2 ȴҳ root ɢ먡ҡ"
msgid "Configuring Sun Management Center DB listener and service files..."
msgstr " Sun Management Center DB Τ٭..."
msgid "The default listener port $2 for Sun Management Center DB has already been used."
msgstr "Sun Management Center DB $2 ݷ"
msgid "Please input another port number for Sun Management Center DB listener."
msgstr "īƶġԶ Sun Management Center DB "
msgid "Error in resetting the configuration files for Sun Management Center DB."
msgstr " Sun Management Center DB 먡"
msgid "Linking database, Please wait"
msgstr "ջԷ"
msgid "in the event of error, see /tmp/relink.log"
msgstr "ǵ㡢ٶ /tmp/relink.log"
msgid "Create ora passord file"
msgstr "ǡ ora "
msgid "/usr/bin/make is needed on Sun Management Center server machine. The current"
msgstr "Sun Management Center Τĸȴ /usr/bin/makeЩ"
msgid "failed to create internal user password file : $2"
msgstr "ǡϯ$2"
msgid "does not have it. Please make this file available and run setup again"
msgstr "ȴԶҳƫѥʩ"
msgid "execution of make -f ins_net_server.mk install failed"
msgstr "make -f ins_net_server.mk install "
msgid "see /tmp/make.log file for details"
msgstr "ٶ /tmp/make.log ع"
msgid "Database setup failed : $2 does not exist"
msgstr "ջ$2 "
msgid "Database setup failed : mkaggregatefiles.ksh failed"
msgstr "ջmkaggregatefiles.ksh "
msgid "Database setup failed : db-start failed"
msgstr "ջdb-start "
msgid "Please wait, Sun Management Center database setup in progress. It may take 15 to 20 minutes"
msgstr "Է Sun Management Center ջƫĸ 15 ̯ 20 š"
msgid "Database setup failed : build-smc-oracle-recovery.ksh failed"
msgstr "ջbuild-smc-oracle-recovery.ksh "
msgid "Please wait, Sun Management Center database setup in progress. It may take 15 to 20 minutes"
msgstr "Է Sun Management Center ջƫĸ 15 ̯ 20 š"
msgid "Database setup failed : build-smc-oracle-recovery.ksh failed"
msgstr "ջbuild-smc-oracle-recovery.ksh "
msgid "Found symon 2.x import data"
msgstr "̯ symon 2.x ī"
msgid "about to import symon 2.x data"
msgstr "ī symon 2.x "
msgid "cannot find the 2.x import script file $2"
msgstr "̯ 2.x ī Script $2"
msgid "will not import symon 2.x data"
msgstr "ī symon 2.x "
msgid "Database setup failed : db-stop failed"
msgstr "ջdb-stop "
msgid "A problem occured with $2 setup. Do you want to continue?"
msgstr " $2 ܢ"
msgid " Do you wish to update /etc/system file?"
msgstr " /etc/system "
msgid "A problem occured with $2 setup. Do you want to continue?"
msgstr " $2 ܢ"
msgid " Do you wish to keep any existing topology and event data"
msgstr " Ƕܢůǵ"
msgid " Do you want to perform a symon 2.x data import?"
msgstr " symon 2.x ī"
msgid "Do you want to start Sun Management Center agent and server components now"
msgstr "ǡɻٯ Sun Management Center ܡȢΤǵ"
msgid "Do you want to start Sun Management Center agent now"
msgstr "ǡɻٯ Sun Management Center ܡȢ"
msgid "Error: It seems the file $2 is not writable, could not update the file."
msgstr "먡 $2 ī"
msgid "Configuring the system for setup, please wait."
msgstr "˷Է"
#
#===============================
# <WS>/packages/Setup/db-start
#===============================
msgid "Listener and Database are up and running\n"
msgstr "ջɳɢ\n"
msgid "the current sid \n"
msgstr "Щ sid \n"
msgid "the current orahome \n"
msgstr "Щ orahome \n"
msgid "unknown system type, exiting......................\n"
msgstr "˷......................\n"
msgid "getHostName: failed to obtain current host from hostname command\n"
msgstr "getHostNameڷ hostname ̽ڵЩ\n"
msgid "current host : $2\n"
msgstr "Щ$2\n"
msgid "getUserName: failed to obtain user name from id command\n"
msgstr "getUserNameڷ id ̽ڵϯ\n"
msgid "current user name : $2\n"
msgstr "Щϯꢡ$2\n"
msgid "getUserGroup: failed to obtain user group from id command\n"
msgstr "getUserGroupڷ id ̽ڵ\n"
msgid "current user group : $2\n"
msgstr "Щϯڡ$2\n"
msgid "path_app : $2\n"
msgstr "path_app :$2\n"
msgid "found $2 on path in $3\n"
msgstr " $3 ̯ $2\n"
msgid "can not find $2 on path, exiting.......................\n"
msgstr "ĸ̯ $2.......................\n"
msgid "verifyDatabaseUp: failed to obtain instance process info from ps\n"
msgstr "verifyDatabaseUpڷ ps ̽ڵݨܡʩ\n"
msgid "verifyDatabaseUp: instance is executing\n"
msgstr "verifyDatabaseUp\n"
msgid "verifyDatabaseUp: instance is not executing\n"
msgstr "verifyDatabaseUp\n"
msgid "verifyDatabaseDown: failed to obtain instance process info from ps\n"
msgstr "verifyDatabaseDownڷ ps ̽ڵݨܡʩ\n"
msgid "verifyDatabaseDown: instance is executing\n"
msgstr "verifyDatabaseDown\n"
msgid "verifyDatabaseDown: instance is not executing\n"
msgstr "verifyDatabaseDown\n"
msgid "verifyListenerUp: failed to obtain listener process info from ps\n"
msgstr "verifyListenerUpڷ ps ̽ڵݨܡع\n"
msgid "verifyListenerUp: listener $2 is execution\n"
msgstr "verifyListenerUp $2 \n"
msgid "verifyListenerUp: listener $2 is not execution\n"
msgstr "verifyListenerUp $2 \n"
msgid "verifyListenerDown: failed to obtain listener process info from ps\n"
msgstr "verifyListenerDownڷ ps ̽ڵݨܡع\n"
msgid "verifyListenerDown: listener $2 is execution\n"
msgstr "verifyListenerDown $2 \n"
msgid "verifyListenerDown: listener $2 is not execution\n"
msgstr "verifyListenerDown $2 \n"
msgid "verifyFilesystemPerm: failed to obtain filesystem info from df\n"
msgstr "verifyFilesystemPermڷ df ̽ڵ˷ع\n"
msgid "verifyFilesystemPerm: failed to obtain filesystem info from df\n"
msgstr "verifyFilesystemPermڷ df ̽ڵ˷ع\n"
msgid "verifyFilesystemPerm: failed to obtain filesystem info from mount comma\n"
msgstr "verifyFilesystemPermڷ comma ̽ڵ˷ع\n"
msgid "verifyFilesystemPerm: filesystem $2 is not mounted setuid\n"
msgstr "verifyFilesystemPerm˷ $2 setuid\n"
msgid " must re-mount the filesystem with setuid enabled\n"
msgstr " setuid ٯ˷\n"
msgid "verifyFilesystemPerm: filesystem $2 is mounted setuid, OK\n"
msgstr "verifyFilesystemPerm˷ $2 setuid\n"
msgid "verifyListenerStatus: failed to obtain listener status for alias: $2\n"
msgstr "verifyListenerStatusҳĶɱ̽ڵ表$2\n"
msgid "verifyListenerStatus: listener status is good for alias: $2\n"
msgstr "verifyListenerStatusĶɱ$2\n"
msgid "verifyListenerStatus: listener status is not good for alias: $2\n"
msgstr "verifyListenerStatusĶɱ$2\n"
msgid "the specified path \\\($2\\\) does not exist\n"
msgstr " \\\($2\\\) \n"
msgid "tmpdir \n"
msgstr "tmpdir \n"
msgid "verifyGoodOraclePermOwnership: failed to obtain accessperms from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵ̽$2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain username from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵϯꢡ$2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain groupname from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵꢡ$2\n"
msgid "verifyGoodOraclePermOwnership: access perms for \\\($2\\\) is not at least 755\n"
msgstr "verifyGoodOraclePermOwnership \\\($2\\\) ̽ŷ 755\n"
msgid "verifyGoodOraclePermOwnership: access perms ok\n"
msgstr "verifyGoodOraclePermOwnership̽ڦ\n"
msgid "verifyGoodOraclePermOwnership: owner \\\($2\\\) of $3 is not $4\n"
msgstr "verifyGoodOraclePermOwnership$3 ȴϯ \\\($2\\\) $4\n"
msgid "verifyGoodOraclePermOwnership: owner ok\n"
msgstr "verifyGoodOraclePermOwnershipȴϯڦ\n"
msgid "verifyGoodOraclePermOwnership: group \\\($2\\\) of $3 is not $4\n"
msgstr "verifyGoodOraclePermOwnership$3 \\\($2\\\) $4\n"
msgid "verifyGoodOraclePermOwnership: group ok\n"
msgstr "verifyGoodOraclePermOwnershipڦ\n"
msgid "**** directory : $2 does not exist\n"
msgstr "**** 硨$2 \n"
msgid "loop: current new $2\n"
msgstr "Щ $2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain accessperms from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵ̽$2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain username from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵϯꢡ$2\n"
msgid "verifyGoodOraclePermOwnership: failed to obtain groupname from ls command for : $2\n"
msgstr "verifyGoodOraclePermOwnership ls ҳĶ̽ڵꢡ$2\n"
msgid "verifyGoodOraclePermOwnership: access perms for \\\($2\\\) is not at least 755\n"
msgstr "verifyGoodOraclePermOwnership \\\($2\\\) ̽ŷ 755\n"
msgid "verifyGoodOraclePermOwnership: access perms ok\n"
msgstr "verifyGoodOraclePermOwnership̽ڦ\n"
msgid "verifyGoodOraclePermOwnership: owner \\\($listuser\\\) of $3 is not $4\n"
msgstr "verifyGoodOraclePermOwnership$3 ȴϯ \\\($listuser\\\) $4\n"
msgid "verifyGoodOraclePermOwnership: owner ok\n"
msgstr "verifyGoodOraclePermOwnershipȴϯڦ\n"
msgid "verifyGoodOraclePermOwnership: group \\\($2\\\) of $3 is not $4\n"
msgstr "verifyGoodOraclePermOwnership$3 \\\($2\\\) $4\n"
msgid "verifyGoodOraclePermOwnership: group ok\n"
msgstr "verifyGoodOraclePermOwnershipڦ\n"
msgid "**** file : $2 does not exist\n"
msgstr "**** $2 \n"
msgid "verifySharedMemUsage: failed to obtain ipcs \\\(shared memory segment\\\) info user : $2, group : $3\n"
msgstr "verifySharedMemUsage̽ڵ ipcs \\\(شٴ\\\) عϯ$2ڡ$3\n"
msgid "verifySharedMemUsage: found ipcs \\\(shared memory segment\\\) info user : $2, group : $3, \\\(shid\\\) : $4\n"
msgstr "verifySharedMemUsage̯ ipcs \\\(شٴ\\\) عϯ$2ڡ$3, \\\(shid\\\)$4\n"
msgid "verifySharedMemUsage: did find ipcs \\\(shared memory segment\\\) info user : $2, group : $3\n"
msgstr "verifySharedMemUsage̯ ipcs \\\(شٴ\\\) عϯ$2ڡ$3\n"
msgid "verifySharedMemUsage: did not find any ipcs \\\(shared memory segment\\\) info user : $2, group : $3\n"
msgstr "verifySharedMemUsage̯Ƕ ipcs \\\(شٴ\\\) عϯ$2ڡ$3\n"
msgid "verifyActiveSemaphoresUsage: failed to obtain ipcs \\\(active semaphores\\\) info user : $2, group : $3\n"
msgstr "verifyActiveSemaphoresUsage̽ڵ ipcs \\\(ɢ\\\) عϯ$2ڡ$3\n"
msgid "verifyActiveSemaphoresUsage: found ipcs \\\(active semaphores\\\) info user : $2, group : $3, \\\(semid\\\) : $4\n"
msgstr "verifyActiveSemaphoresUsage̯ ipcs \\\(ɢ\\\) عϯ$2ڡ$3, \\\(semid\\\)$4\n"
msgid "verifyActiveSemaphoresUsage: did find ipcs \\\(active semaphores\\\) info user : $2, group : \n"
msgstr "verifyActiveSemaphoresUsage̯ ipcs \\\(ɢ\\\) عϯ$2ڡ\n"
msgid "verifyActiveSemaphoresUsage: did not find any ipcs \\\(active semaphores\\\) info user : $2, group : $3\n"
msgstr "verifyActiveSemaphoresUsage̯Ƕ ipcs \\\(ɢ\\\) عϯ$2ڡ$3\n"
msgid "startListener: failed to start listener, alias: $2\n"
msgstr "startListenerٯ¡ɱء$2\n"
msgid "startListener: listener started, alias: $2\n"
msgstr "startListenerٯɱء$2\n"
msgid "stopListener: failed to stop listener, alias: $2\n"
msgstr "stopListener¡ɱء$2\n"
msgid "stopListener: listener stopped, alias: $2\n"
msgstr "stopListenerϡɱء$2\n"
msgid "removing existing listener log file $2"
msgstr "ܢȴ $2"
msgid "execution of verifySetuidFilesystemPerm $2 fail\n"
msgstr "verifySetuidFilesystemPerm $2 \n"
msgid "exiting........................\n"
msgstr "........................\n"
msgid "execution of $2 start $3 fail\n"
msgstr "$2 ٯ $3 \n"
msgid "execution of verifyListenerUp $2 fail\n"
msgstr "verifyListenerUp $2 \n"
msgid "execution of verifyGoodListenerStatus $2 fail\n"
msgstr " verifyGoodListenerStatus $2 \n"
msgid "execution of sqlplus using @$2 fail\n"
msgstr "ɳ @$2 sqlplus \n"
msgid "sqlerror code = $2\n"
msgstr "sqlerror =$2\n"
msgid "sqlerrmsg full = \\\>\\\>\\\> $2\\\<\n"
msgstr "sqlerrmsg =\\\>\\\>\\\> $2\\\<\n"
msgid "sqlerror code = $2\n"
msgstr "sqlerror =$2\n"
msgid "execution of verifyDatabaseUp $2 fail\n"
msgstr "verifyDatabaseUp $2 \n"
msgid "Listener and Database are up and running\n"
msgstr "ջɳɢ\n"
#
#================================
# <WS>/packages/Setup/es-device
#================================
msgid "Usage: $2 -ad Filename"
msgstr "Ρ$2 -ad "
msgid " where the options represent:"
msgstr " ̧㡢"
msgid " a : Add new device"
msgstr " a"
msgid " d : Delete device"
msgstr " dɴ"
msgid "This action is limited to superuser only."
msgstr "Ⱥɢϯ"
msgid "Exiting $2."
msgstr " $2"
msgid "create_node_family_file: Error! Invalid node object type $2"
msgstr "create_node_family_file먡ǵ $2 "
msgid "set_global_variable: Value not specified for $2"
msgstr "set_global_variable $2 ԫ"
msgid "set_global_variable: Invalid parameter $2"
msgstr "set_global_variableٶ $2"
msgid "delete_node: Invalid data in input file"
msgstr "delete_nodeī"
msgid "delete_node: $2 does not exist, verify input"
msgstr "delete_node$2 㡢ī"
msgid "delete_group: Invalid data in input file"
msgstr "delete_groupī"
msgid "delete_group: $2 does not exist, verify input"
msgstr "delete_group$2 㡢ī"
msgid "delete_group: Invalid group type $2"
msgstr "delete_group $2 "
msgid "delete_segment: Invalid data in input file"
msgstr "delete_segmentī"
msgid "delete_segment: $2 does not exist, verify input"
msgstr "delete_segment$2 㡢ī"
msgid "delete_segment: Invalid segment type $2"
msgstr "delete_segmentٴ $2 "
msgid "delete_composite: Invalid data in input file"
msgstr "delete_compositeī"
msgid "delete_composite: $2 does not exist, verify input"
msgstr "delete_composite$2 㡢ī"
msgid "validate_node_object_type: $2 or $3 exists"
msgstr "validate_node_object_type$2 $3 "
msgid "validate_i18n_key: Node object type exists in $2 line $3"
msgstr "validate_i18n_keyǵ $2 $3"
msgid "validate_i18n_key: Invalid i18n key: $2"
msgstr "validate_i18n_keyi18n 桨$2"
msgid "validate_group_i18n_type: $2 is invalid group type"
msgstr "validate_group_i18n_type$2 "
msgid "validate_group_i18n_key: Group object type exists in $2 line $3"
msgstr "validate_group_i18n_keyǵ $2 $3"
msgid "validate_segment_i18n_type: $2 is invalid segment type"
msgstr "validate_segment_i18n_type$2 ٴ"
msgid "validate_segment_i18n_key: Segment object type exists in $2 line $3"
msgstr "validate_segment_i18n_keyٴǵ $2 $3"
msgid "validate_composite_i18n_key: Composite object type exists in $2 line $3"
msgstr "validate_composite_i18n_keyǵ $2 $3"
msgid "validate_properties_file: Invalid property file name. Must be $2"
msgstr "validate_properties_file桤 $2"
msgid "validate_search_parameter: Invalid sysoid value $2"
msgstr "validate_search_parametersysoid ԫ $2 "
msgid "validate_icon_file: Check if file exists and permissions"
msgstr "validate_icon_fileů"
msgid "validate_hardware_module: Hardware Module name does not exist"
msgstr "validate_hardware_module"
msgid "validate_group_object_type: Invalid object type $2"
msgstr "validate_group_object_typeǵ $2 "
msgid "validate_group_object_type: Group object type exists in $2 line $3"
msgstr "validate_group_object_typeǵ $2 $3"
msgid "validate_segment_object_type: Invalid object type $2"
msgstr "validate_segment_object_typeǵ $2 "
msgid "validate_segment_object_type: Segment object type exists in $2 line $3"
msgstr "validate_segment_object_typeٴǵ $2 $3"
msgid "add_node: Invalid node type $2"
msgstr "add_node $2 "
msgid "add_node: Cannot copy $2 file, check if file exists and permissions"
msgstr "add_node $2 ů"
msgid "add_group: Invalid group type $2"
msgstr "add_group $2 "
msgid "add_group: Cannot copy $2 file, check if file exists and permissions"
msgstr "add_group $2 ů"
msgid "add_segment: Invalid segment type $2"
msgstr "add_segmentٴ $2 "
msgid "add_segment: Cannot copy $2 file, check if file exists and permissions"
msgstr "add_segment $2 ů"
msgid "add_composite: Cannot copy $2 file, check if file exists and permissions"
msgstr "add_composite $2 ů"
msgid "Package SUNWessrv is not installed on this system"
msgstr "Ⱥ˷ SUNWessrv "
msgid "Unable to create logfile $2"
msgstr "ǡ $2"
msgid "$2 file does not exist"
msgstr "$2 "
msgid "$2 file does not have read permissions"
msgstr "$2 ̦̽"
msgid "Invalid Operation: Operation not supported"
msgstr "ɢ桨ɢ̿"
msgid "process_delete_data: Object type $2 missing in data file"
msgstr "process_delete_dataŷǵ $2"
msgid "validate_monitor_via : $2 is invalid type"
msgstr "validate_monitor_via$2 "
msgid "validate_node_type:$2 is invalid node type"
msgstr "validate_node_type$2 "
msgid "validate_node_object_type: Invalid object type $2"
msgstr "validate_node_object_typeǵ $2 "
msgid "validate_i18n_key: Invalid object type $2"
msgstr "validate_i18n_keyǵ $2 "
msgid "add_device: Invalid object type $2"
msgstr "add_deviceǵ $2 "
msgid "validate_node_object_type: Node object type exists in $2 line $3"
msgstr "validate_node_object_typeǵ $2 $3"
msgid "validate_object_type: Invalid object type $2"
msgstr "validate_object_typeǵ $2 "
msgid "validate_group_type: $2 is invalid group type"
msgstr "validate_group_type$2 "
msgid "validate_segment_type: Invalid value $2 for Segment_type"
msgstr "validate_segment_typeSegment_type ԫ $2 "
msgid " (for example: ./es-device -a /tmp/userdata)"
msgstr " (./es-device -a /tmp/userdata)"
msgid " (for example: ./es-device -d /tmp/userdata)"
msgstr " (./es-device -d /tmp/userdata)"
msgid "validate_user_name: No value specified for User_name"
msgstr "validate_user_name User_name ԫ"
msgid "validate_node_object_type: No value specified for Node_object_type"
msgstr "validate_node_object_typeNode_object_type ԫ"
msgid "validate_i18n_key: No value specified for i18n_key"
msgstr "validate_i18n_key i18n_key ԫ"
msgid "validate_properties_file: No value specified for Properties_file"
msgstr "validate_properties_file Properties_file ԫ"
msgid "validate_search_parameter: No value specified for Search_parameter"
msgstr "validate_search_parameter Search_parameter ԫ"
msgid "validate_icon_file: No value specified for icon"
msgstr "validate_icon_fileԫ"
msgid "validate_segment_object_type: No value specified for Segment object type"
msgstr "validate_segment_object_typeٴǵԫ"
#
#==============================
# <WS>/packages/Setup/db-stop
#==============================
msgid "getHostName: failed to obtain current host from hostname comma"
msgstr "getHostNameڷ hostname ̽ڵЩ"
msgid "current host : $2\n"
msgstr "Щ$2\n"
msgid "getUserName: failed to obtain user name from id comma\n"
msgstr "getUserNameڷ id ̽ڵϯ\n"
msgid "current user name : $2\n"
msgstr "Щϯꢡ$2\n"
msgid "getUserGroup: failed to obtain user group from id comma\n"
msgstr "getUserGroupڷ id ̽ڵ\n"
msgid "current user group : $2\n"
msgstr "Щϯڡ$2\n"
msgid "verifyDatabaseUp: failed to obtain instance process info from ps\n"
msgstr "verifyDatabaseUpڷ ps ̽ڵݨܡʩ\n"
msgid "verifyDatabaseUp: instance is executing\n"
msgstr "verifyDatabaseUp\n"
msgid "verifyDatabaseUp: instance is not executing\n"
msgstr "verifyDatabaseUp\n"
msgid "verifyDatabaseDown: failed to obtain instance process info from ps\n"
msgstr "verifyDatabaseDownڷ ps ̽ڵݨܡʩ\n"
msgid "verifyDatabaseDown: instance is executing\n"
msgstr "verifyDatabaseDown\n"
msgid "verifyDatabaseDown: instance is not executing\n"
msgstr "verifyDatabaseDown\n"
msgid "verifyListenerUp: failed to obtain listener process info from ps\n"
msgstr "verifyListenerUpڷ ps ̽ڵݨܡع\n"
msgid "verifyListenerUp: listener $2 is executing\n"
msgstr "verifyListenerUp $2 \n"
msgid "verifyListenerUp: listener $2 is not executing\n"
msgstr "verifyListenerUp $2 \n"
msgid "verifyListenerDown: failed to obtain listener process info from \n"
msgstr "verifyListenerDown̽ڵݨܡعڷ\n"
msgid "verifyListenerDown: listener $2 is executing\n"
msgstr "verifyListenerDown $2 \n"
msgid "verifyListenerDown: listener $2 is not executing\n"
msgstr "verifyListenerDown $2 \n"
msgid "the file $2 does not exist, exiting........................"
msgstr " $2 㡢........................"
msgid "performing a (shutdown immediate)......"
msgstr "硾ǡɻ......"
msgid "execution of $2 using \\@$3 failed"
msgstr " \\@$3 $2 "
msgid "exiting..........................\n"
msgstr "........................\n"
msgid "unable to perform normal shutdown, executing a shutdown abort"
msgstr "ڦ"
msgid "execution of $2 using adhoc shutdown-abort failed"
msgstr " adhoc shutdown-abort $2 "
msgid "execution of $2 stop $3 failed"
msgstr "$2 $3 "
msgid "sqlerror code = $2\n"
msgstr "sqlerror =$2\n"
msgid "sqlerrmsg full = \\\>\\\>\\\> $2\\\<\n"
msgstr "sqlerrmsg =\\\>\\\>\\\> $2\\\<\n"
msgid "execution of sqlplus using $2 fail\n"
msgstr " $2 sqlplus \n"
msgid "can not find $2 on path, exiting.......................\n"
msgstr "ĸ̯ $2.......................\n"
#
#=========================================
# <WS>/packages/Setup/sm_setup_server.sh
#=========================================
msgid "The Sun Management Center Console help configuration file cannot be found."
msgstr "̯ Sun Management Center ƺɷ"
msgid "Please re-install the Sun Management Center Console component"
msgstr " Sun Management Center ƺǵ"
msgid "The base URL has been set to $2"
msgstr " URL ҳ $2"
msgid "Could not find group $2. You will have to set up"
msgstr "̯ $2ٯ"
msgid "the groups manually. Please add $3 to group $2."
msgstr "ڡ $3 $2"
msgid "User $3 in group $2 is not a valid user. Leaving it out of the esusers file."
msgstr " $2 ϯ $3 ȴϯڷ esusers 桤"
msgid "Adding user $2 from group $3 to esusers"
msgstr " $3 ϯ $2 esusers"
msgid "It appears that you already have some users \\\($2\\\)"
msgstr "ƫȴġϯ \\\($2\\\)"
msgid "configured as Sun Management Center administrators. Leaving these users in place."
msgstr "ҳ Sun Management Center ܡޡϯݨ"
msgid "You should setup a user as a Sun Management Center administrator."
msgstr "ġϯҳ Sun Management Center ܡ"
msgid "This person will be added to the esadm and esdomadm groups."
msgstr "Ⱥϯ̯ esadm esdomadm 㡤"
msgid "$2 is not a valid user."
msgstr "$2 ȴϯ"
msgid "The group $2 already exists on your system."
msgstr "˷ĸ $2"
msgid "Creating the group $2 that contains Sun Management Center $3 Users."
msgstr "ǡ Sun Management Center $3 ϯ $2"
msgid "Could not find $2 in $3"
msgstr "$3 ̯ $2"
msgid "This part of the setup process does the Sun Management Center Server Component setup."
msgstr "šݨܡȩ Sun Management Center Τǵ"
msgid "Unable to set $2 values."
msgstr " $2 ԫ"
msgid "agent.snmpPort is already configured in $2"
msgstr "$2 ħ agent.snmpPort"
msgid "topology.snmpPort is already configured in $2"
msgstr "$2 ħ topology.snmpPort"
msgid "The Sun Management Center base URL is relative to the Sun Management Center Console."
msgstr " Sun Management Center URL Sun Management Center Cosole "
msgid "The Sun Management Center Console is able to request help documentation via the network."
msgstr " Sun Management Center ƺƫɷǵ衤"
msgid "If you have installed Sun Management Center help documentation in an http-accessible"
msgstr "Ϊƫ http ̽ĸħ Sun Management Center ɷǵ衢"
msgid "location within your network, you may specify this location."
msgstr "Ⱥ"
msgid "If Sun Management Center help is installed on the console host, simply accept the default value."
msgstr "Ϊ Sun Management Center ɷƺĸЬƷ̿ԫ"
msgid "Completing Sun Management Center Server Component setup."
msgstr "ȩ Sun Management Center Τǵ"
msgid "Using security seed $2 for Sun Management Center server"
msgstr "Sun Management Center Τ $2"
msgid "Please enter a user to be the Sun Management Center administrator: "
msgstr "īɢҳ Sun Management Center ܡϯ "
msgid "Please enter a valid username: "
msgstr "īȴϯꢡ "
msgid "Please enter base URL to Sun Management Center help [local]: "
msgstr "ī Sun Management Center ɷ URL [áٶ] "
#
#===================================
# <WS>/packages/Setup/es-common.sh
#===================================
msgid "Enter \\\"y\\\" or \\\"n\\\" or \\\"q\\\""
msgstr "ī \\\"y\\\" \\\"n\\\" \\\"q\\\""
msgid "Exiting at user request"
msgstr "ϯĶ"
msgid "L10N_CODE not set!, LANG=$2"
msgstr " L10N_CODELANG=$2"
msgid "Cannot find locale directory for LANG: $2"
msgstr "̯ LANG 硨$2"
msgid "Expected to find it in: $2"
msgstr "Ķ̯ơ$2"
msgid "No Sun Management Center Packages are installed. Exiting."
msgstr " Sun Management Center ա֡"
msgid "Could not find xput executable: $2"
msgstr "̯ xput ƫ$2"
msgid "Cannot find file $2"
msgstr "̯ $2"
msgid "Moving $2 to $3"
msgstr " $2 ̯ $3"
msgid "-------------- WARNING -------------------"
msgstr "-------------- -------------------"
msgid "It appears that $2 $3 is already in use."
msgstr "$2 $3 ƫ"
msgid "Sun Management Center $2 may not be able to run due to this conflict."
msgstr "ȺSun Management Center $2 ƫ硤"
msgid "There are two ways to correct this conflict:"
msgstr "ȴ̥ƫϫȺ"
msgid " 1. Reconfigure the port that Sun Management Center uses."
msgstr " 1. Sun Management Center ա"
msgid " 2. Stop the process that is using the port."
msgstr " 2. ݨܡ"
msgid " You are currently running snmpdx, which may be causing the conflict."
msgstr " Щ snmpdxƫӳ"
msgid "Skipping the setting of port number for $2"
msgstr "ܩ $2 "
msgid "NOTE: Prior to starting Sun Management Center $2, stop the process using port $3."
msgstr "ٯ Sun Management Center $2 Щǿ $3 ݨܡ"
msgid "Updating $2 with new port number."
msgstr " $2"
msgid "This part of setup generates security keys used for communications"
msgstr "šʩܨʩع"
msgid "between processes. A seed must be provided to initialize the"
msgstr ""
msgid "keys. You can choose to use the standard Sun Management Center default or"
msgstr "ƫ Sun Management Center ԫī"
msgid "enter your own seed. If you do not generate the keys now,"
msgstr "͡Ϊܢܨ"
msgid "you can do so later using the procedure documented in the"
msgstr "ƫѥߧ"
msgid "Sun Management Center 3.0 Users Guide."
msgstr "Sun Management Center 3.0 ϯв"
msgid "Please make sure you use the same seed for all the machines you install."
msgstr "ȴ͡"
msgid "Invalid seed - type s to use default seed"
msgstr " - Ѻ s "
msgid "Using default Sun Management Center value for seed."
msgstr " Sun Management Center ԫɢҳ"
msgid "This action is limited to superuser only.\n"
msgstr "Ⱥɢϯ\n"
msgid "Exiting $PROGNAME."
msgstr " $PROGNAME"
msgid "Unable to create logfile $LOGFILE."
msgstr "ǡ $LOGFILE"
msgid "Started $0 at"
msgstr "ٯ $0 "
msgid "Running on"
msgstr ""
msgid "What seed would you like to use?\n"
msgstr "͡\n"
msgid "Invalid response in automated configuration file."
msgstr "ٯȴܡ"
msgid "Unsupported OS version: $2"
msgstr " OS ۡ$2"
msgid "Do you want to use a different port number for $2?"
msgstr " $2 "
msgid "Do you want to generate these keys using the Sun Management Center default seed?"
msgstr " Sun Management Center ܨ"
msgid "Please enter any port greater or equal to 1100 : "
msgstr "īǶġ 1100 ա "
msgid "Port $2 is not a valid port number, try another number : "
msgstr " $2 ȴƶġԶ "
msgid "Port $2 is also busy, try another - use s to skip setting the port number:"
msgstr " $2 ľȤ㡢̧ - s ܩ"
#
#======================================
# <WS>/packages/Setup/install-java.sh
#======================================
msgid "Java packages are not in $2"
msgstr " Java $2 "
msgid "All required Java packages are not in $2"
msgstr "ȴ Java $2 "
msgid "Installing java packages $2"
msgstr " java $2"
msgid "the system. Please install them first and then install Sun Management Center."
msgstr "˷㡤ǿԯѥ Sun Management Center"
msgid "Package $2 is installed on this system. This package is"
msgstr " $2 Ⱥ˷㡤 This package is"
msgid "incompatible with the java version required for Sun Management Center."
msgstr " Sun Management Center java թ"
msgid "This package needs to be uninstalled before installing java 2"
msgstr "ǿȺѥ java 2"
msgid "Removal of the package $2 failed, please remove it"
msgstr " $2 ٯ"
msgid "manually and then install Sun Management Center."
msgstr "ѥ Sun Management Center"
msgid "You need to install the following packages $2"
msgstr "Ķ $2"
msgid "If you do not choose to install it now, the installation will abort."
msgstr "Ϊǡɻҡʩˡ"
msgid "It seems some other version of java packages are present in $2"
msgstr " $2 ȴƶġ java 㡤"
msgid "You need to install Solaris_JDK_1.2.1_04 version of the following packages"
msgstr " Solaris_JDK_1.2.1_04 Ķ"
msgid "You can enter any directory to install the required version of JAVA."
msgstr "ƫīǶ JAVA"
msgid "No java packages to be removed."
msgstr " java "
msgid "Sun Management Center installation had overwritten your previous java installation."
msgstr " Sun Management Center Ȣ̽ǿЩ java Ȣ"
msgid "You can either keep the current installation or remove it."
msgstr "ƫЩȢ桤"
msgid "Warning - Could not find pkgmap file for $2"
msgstr " - ̯ $2 pkgmap "
msgid " Space calculations will be wrong."
msgstr " Ϩȴ먡"
msgid "Java installation:"
msgstr "Java ҡ"
msgid "Space required \\\(in $2\\\): $3 blocks."
msgstr "Ϩ \\\($2 \\\)$3 Զٴۡ"
msgid "Space available \\\(in $2\\\): $3 blocks."
msgstr "ƫϨ \\\($2 \\\)$3 Զٴۡ"
msgid "Insufficient disk space to install Java components"
msgstr "ȴϨƫ Java ǵ"
msgid "Error installing package: $2"
msgstr "먡$2"
msgid "The following packages required by Java 2 are not installed on"
msgstr "Ķ Java 2 "
msgid "Packages: $2"
msgstr "ա$2"
msgid "The required version of Java is already installed in $2"
msgstr " Java $2 "
msgid "It seems some of the required packages are already present."
msgstr "ȴš㡤"
msgid "You can either overwrite the existing java version or install the"
msgstr "ƫܢȴ java "
msgid "required version in some other directory."
msgstr "̧㡤"
msgid "Invalid directory"
msgstr ""
msgid "Java packages couldnot be found in directory $2"
msgstr " $2 ̯ Java "
msgid "Do you want to install it now?"
msgstr "ǡɻҡ"
msgid "Do you want to overwrite the existing one?"
msgstr "̽ܢȴۡ"
msgid "Do you want to remove it?"
msgstr "桩"
msgid "Do you want to uninstall it now"
msgstr "ǡɻ"
msgid "Enter the base directory for JDK installation [$2]"
msgstr "ī JDK [$2]"
#
#============================
# <WS>/packages/Setup/es-db
#============================
msgid "A minimum of 256 MB RAM is required to install Sun Management Center server."
msgstr "ŷȴ 256 MB RAM Sun Management Center Τ¡"
msgid "Current system has $2 MB RAM."
msgstr "Щ˷̦ȴ $2 MB RAM"
msgid "Can not continue to install Sun Management Center server."
msgstr " Sun Management Center Τ¡"
msgid " Sun Management Center DB "
msgstr " Sun Management Center DB "
msgid " Sun Management Center Database Installation "
msgstr " Sun Management Center ջ "
msgid "Invalid parameters for installDB\\\(\\\)"
msgstr " installDB\\\(\\\) ٶ"
msgid "The following Sun Management Center database packages have already been installed on your system:"
msgstr "˷ĸħĶ Sun Management Center ջա"
msgid "Checking memory available..."
msgstr "ƫش..."
msgid "Creating the mount points..."
msgstr "ǡ..."
msgid "Error installing SUNWesora. Installation cannot continue."
msgstr " SUNWesora 먡ҡ"
msgid "Error installing SUNWestbl. Installation cannot continue."
msgstr " SUNWestbl 먡ҡ"
msgid "Sun Management Center DB packages installed successfully"
msgstr "Sun Management Center DB ȩ"
msgid "es-setup will perform the remainder of the config"
msgstr "es-setup ̧š"
#
#======================================
# <WS>/packages/Setup/install-patch.sh
#======================================
msgid "No patch checking on this platform"
msgstr "ȺƺĸȢ"
msgid "Could not find the patches in the following directory."
msgstr "Ķ̯Ȣ"
msgid "Installing patch $2..."
msgstr "Ȣ $2..."
msgid "Installation of patch $2 failed."
msgstr "Ȣ $2 "
msgid "Installation of patch $2 complete."
msgstr "Ȣ $2 ȩ"
msgid "Following patches are prerequisites to the java patches."
msgstr " java ȢЩǿĶȢ"
msgid "Please install them manually and then install Sun Management Center."
msgstr "ٯѥ Sun Management Center"
msgid "Installation of following patches failed, please install"
msgstr "ĶȢٯ"
msgid "them manually and then install Sun Management Center."
msgstr "ѥ Sun Management Center"
msgid "Checking for required OS patches, Please wait..."
msgstr " OS ȢԷ..."
msgid "Following is the list of required patches for java 2."
msgstr "Ķҳ java 2 Ȣ̡"
msgid "If you do not choose to install them now installation will abort."
msgstr "Ϊǡɻҡʩˡ"
msgid "Checking for required OS patches done."
msgstr "ȩ OS Ȣ硤"
msgid "Invalid directory."
msgstr "硤"
msgid "Do you want to install now"
msgstr "ǡɻҡ"
msgid "Please enter the directory that contains patches: "
msgstr "īȴȢ硨 "
#
#=================================
# <WS>/packages/Setup/es-restore
#=================================
msgid "The directory name should start with /"
msgstr " / "
msgid "The directory name is invalid"
msgstr ""
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "The backup $2 does not exist"
msgstr "ެǹ $2 "
msgid "Checking installed Sun Management Center..."
msgstr " Sun Management Center..."
msgid "Recover the Sun Management Center Database and it will take a few minutes..."
msgstr "ߦ Sun Management Center ջĸš..."
msgid "Restore the Sun Management Center data."
msgstr "ߦ Sun Management Center 衤"
msgid "Shutdown Sun Management Center database, please wait."
msgstr " Sun Management Center ջԷ"
msgid "Recovery is fnished successfully. Please start Sun Management Center."
msgstr "ɳȩߦϡٯ Sun Management Center"
msgid "The Sun Management Center server components are not found or"
msgstr "̯ Sun Management Center Τģ́"
msgid "its installation is damaged. You need to run"
msgstr "䴡"
msgid "es-inst/es-setup to install Sun Management Center and then "
msgstr "es-inst/es-setup Sun Management Centerѥ"
msgid "start es-restore."
msgstr "ٯ es-restore"
msgid "Cannot restore $2"
msgstr "ߦ $2"
msgid "Cannot import database. Please check $2"
msgstr "īջ $2"
msgid "The recovery need to shudown Sun Management Center servers."
msgstr "ߦɢ Sun Management Center Τ¡"
msgid "Please get the backup of es-backup ready."
msgstr "ެ es-backup ެǹ"
msgid "Usage: $PROGNAME"
msgstr "Ρ$PROGNAME"
msgid "Do you want to proceed [yes/no]:"
msgstr " [yes/no]"
msgid "Enter the path of the backup data directory:"
msgstr "īެǹ"
#
#==========================================
# <WS>/packages/Setup/sm_setup_metadata.sh
#==========================================
msgid "$2 appears to be configured as your Sun Management Center server."
msgstr "$2 ƫҳ Sun Management Center Τ¡"
msgid "Error - Unable to set $2 values."
msgstr " - $2 ԫ"
msgid "agent.snmpPort already configured in $2"
msgstr " $2 ħ agent.snmpPort"
msgid "This part of the setup process does the Sun Management Center Agent Component setup."
msgstr "šݨܡȩ Sun Management Center ܡȢǵ"
msgid "snmpd.conf already exists in $2. Leaving it in place"
msgstr "$2 snmpd.conf̧ݨ"
msgid "Copying snmpd.conf file into $2"
msgstr " snmpd.conf ̯ $2"
msgid "Server component also installed locally."
msgstr "ħΤǵ"
msgid "Using this machine as the Sun Management Center server."
msgstr "ɢҳ Sun Management Center Τ¡"
msgid "Completing Sun Management Center Agent Component setup."
msgstr "ȩ Sun Management Center ܡȢǵ"
msgid "Using security seed $2 for Sun Management Center metadata"
msgstr " $2 ɢҳ Sun Management Center "
msgid "Please enter the Sun Management Center Server Hostname: "
msgstr "ī Sun Management Center Τꢡ "
msgid "Is this correct?"
msgstr ""
#
#============================
# <WS>/packages/Setup/es-lic
#============================
msgid "Topology server is currently running."
msgstr "ЩΤ¡"
msgid "It must be restarted for the license file update to take effect."
msgstr "桢ٯ"
msgid "Please stop and restart topology server using:"
msgstr "ٯΤ¡"
msgid "$2 -p\\\; $3 -p"
msgstr "$2 -p\\\; $3 -p"
msgid "Invalid License, Exiting..."
msgstr "桢..."
msgid " Sun Management Center License Program\n"
msgstr " Sun Management Center Ȣ\n"
msgid " Invalid parameters passed to es-lic script\n"
msgstr " ̯ es-lic Script ٶ\n"
msgid "Please enter license key: "
msgstr "ī "
#
#===============================
# <WS>/packages/Setup/es-dbimp
#===============================
msgid "The directory name should start with /"
msgstr " / "
msgid "The directory name is invalid"
msgstr ""
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Cannot export database. Please check $2"
msgstr "ջ $2"
msgid "The backup $2 does not exist"
msgstr "ެǹ $2 "
msgid "------------------- WARNING !!! ----------------"
msgstr "------------------- ˡ ----------------"
msgid "The process need Sun Management Center server components stopped."
msgstr "Ⱥݨܡ Sun Management Center Τǵ硤"
msgid "And import the backup data to Sun Management Center database."
msgstr "ެǹī Sun Management Center ջ"
msgid "As a result, all current data will be destroyed."
msgstr "Ϊȩȴܢȴڡ"
msgid "Done"
msgstr "ȩ"
msgid "Usage: $PROGNAME"
msgstr "Ρ$PROGNAME"
msgid "Do you want to proceed [yes/no]:"
msgstr " [yes/no]"
#
#=======================================
# <WS>/packages/Setup/sm_setup_agent.sh
#=======================================
msgid "$2 appears to be configured as your Sun Management Center server."
msgstr "$2 ƫҳ Sun Management Center Τ¡"
msgid "Error - Unable to set $2 values."
msgstr " - $2 ԫ"
msgid "agent.snmpPort already configured in $2"
msgstr " $2 ħ agent.snmpPort"
msgid "This part of the setup process does the Sun Management Center Agent Component setup."
msgstr "šݨܡȩ Sun Management Center ܡȢǵ"
msgid "snmpd.conf already exists in $2. Leaving it in place"
msgstr "$2 snmpd.conf̧ݨ"
msgid "Copying snmpd.conf file into $2"
msgstr " snmpd.conf ̯ $2"
msgid "Server component also installed locally."
msgstr "ħΤǵ"
msgid "Using this machine as the Sun Management Center server."
msgstr "ɢҳ Sun Management Center Τ¡"
msgid "Completing Sun Management Center Agent Component setup."
msgstr "ȩ Sun Management Center ܡȢǵ"
msgid "Using security seed $2 for Sun Management Center agent"
msgstr " $2 ɢҳ Sun Management Center ܡȢ"
msgid "Please enter the Sun Management Center Server Hostname: "
msgstr "ī Sun Management Center Τꢡ "
msgid "Is this correct?"
msgstr ""
#
#================================
# <WS>/packages/Setup/es-backup
#================================
msgid "The directory name should start with /"
msgstr " / "
msgid "The directory name is invalid"
msgstr ""
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Can not create the directory $2"
msgstr "ǡ $2"
msgid "Backup is successful."
msgstr "ެǹȩ"
msgid "Please save following files for the restore of Sun Management Center"
msgstr "Ķߦ Sun Management Center "
msgid "Starting Sun Management Center...."
msgstr "ٯ Sun Management Center...."
msgid "Cannot export database. Please check $2"
msgstr "ջ $2"
msgid "Backup Sun Management Center data failed. Please check $2"
msgstr "Sun Management Center ެǹ $2"
msgid "The operation requires to shutdown Sun Management Center."
msgstr "Ⱥɢ Sun Management Center"
msgid "Usage: $PROGNAME"
msgstr "Ρ$PROGNAME"
msgid "Do you want to create it?"
msgstr "ǡ"
msgid "Do you want to proceed [yes/no]:"
msgstr " [yes/no]"
msgid "Enter the path of the directory to store the backup data file:"
msgstr "īެǹ表"
#
#=======================================
# <WS>/packages/Setup/sm_setup_mib2.sh
#=======================================
msgid "Subagent sunmib_sea already set up - leaving it untouched"
msgstr "ħܡȢ sunmib_sea - ̧ѽ"
msgid "Subagent registry file is: $2"
msgstr "ܡȢҳ$2"
msgid "Unable to update subagent-registry-d.x"
msgstr " subagent-registry-d.x"
msgid "Updated subagent-registry-d.x for mib2 subagent"
msgstr "ҳ mib2 ܡȢħ subagent-registry-d.x"
#
#================================
# <WS>/packages/Setup/es-uninst
#================================
msgid "Removing $2"
msgstr " $2"
msgid "Package Removal: Failed for $2"
msgstr "桨$2 "
msgid "Reattempting to uninstall the package\\\(s\\\): $2"
msgstr "ա$2"
msgid "Please remove the following packages manually.\n"
msgstr "ٯĶա\n"
msgid "Sun Management Center uninstall complete.\n"
msgstr " Sun Management Center ܫ\n"
msgid " Sun Management Center Uninstallation \n"
msgstr " Sun Management Center \n"
msgid "No Sun Management Center packages installed.\n"
msgstr " Sun Management Center ա\n"
msgid "This utility removes all the Sun Management Center packages. \n"
msgstr "ȺȢȴ Sun Management Center ա\n"
msgid "Exiting uninstall utility.\n"
msgstr "Ȣ\n"
msgid "Stopping all Sun Management Center processes. This may take a few moments...\n"
msgstr "ȴ Sun Management Center ݨܡƫġ...\n"
msgid "If you are upgrading Sun Management Center, you may want to save your existing data.\n"
msgstr "ΪŪ Sun Management Centerƫܢȴ衤\n"
msgid "Will not remove the existing data\n"
msgstr "ܢȴ\n"
msgid "Will remove the existing data\n"
msgstr "ܢȴ\n"
msgid " Would you like to continue?"
msgstr " "
msgid "Do you want to preserve your existing data"
msgstr "ܢȴ"
msgid "Do you wish to continue with the removal of the existing data"
msgstr "ܢȴ"
#
#==============================
# <WS>/packages/Setup/es-dbexp
#==============================
msgid "The directory name should start with /"
msgstr " / "
msgid "The directory name is invalid"
msgstr ""
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Can not create the directory $2"
msgstr "ǡ $2"
msgid "Cannot export database. Please check $2"
msgstr "ջ $2"
msgid "The operation requires some of Sun Management Center components to be shutdown."
msgstr "Ⱥɢġ Sun Management Center ǵ"
msgid "Usage: $PROGNAME"
msgstr "Ρ$PROGNAME"
msgid "Do you want to create it?"
msgstr "ǡ"
msgid "Do you want to proceed [yes/no]:"
msgstr " [yes/no]"
msgid "Enter the path of the directory to store the backup data file:"
msgstr "īެǹ表"
msgid "Enter the path of the backup directory:"
msgstr "īެǹ"
#
#=================================
# <WS>/packages/Setup/es-keys.sh
#=================================
msgid "Generating $2 security keys."
msgstr "ܨ $2 "
msgid "Error generating keys. Return code was $2."
msgstr "ܨ먡ҳ $2"
#
#==========================================
# <WS>/packages/Setup/sm_setup_service.sh
#==========================================
msgid "This part of the setup process does the Sun Management Center Services Component setup."
msgstr "šݨܡȩ Sun Management Center Τ٭ǵ"
msgid "Completing Sun Management Center Services Component setup."
msgstr "ȩ Sun Management Center Τ٭ǵ"
#
#===============================
# <WS>/packages/Setup/es-start
#===============================
msgid "It seems component $2 has not been setup, so skipping it."
msgstr " $2Ⱥܩơ"
msgid "Sun Management Center Web Server is not installed, Can not start web server\n"
msgstr " Sun Management Center Τ¡ٯΤ\n"
msgid "Sun Management Center Web Server is not completely installed, Can not start web server\n"
msgstr " Sun Management Center Τ¡ٯΤ\n"
msgid "web server started\n"
msgstr "Τٯ\n"
msgid "Equivalent to %s -aefgmprstxw"
msgstr "̧ %s -aefgmprstxw"
msgid "Equivalent to %s -efgmprstxw"
msgstr "̧ %s -efgmprstxw "
msgid "Usage: $PROGNAME -acefghilmpstwxrAS [-y instanceName] [ -- args... ]"
msgstr "Ρ$PROGNAME -acefghilmpstwxrAS [-y instanceName] [ -- args... ]"
msgid " where the options represent:\n"
msgstr " ̧㡢\n"
msgid " a : starts Sun Management Center Agent\n"
msgstr " aٯ Sun Management Center ܡȢ\n"
msgid " c : starts Sun Management Center Console\n"
msgstr " cٯ Sun Management Center Console\n"
msgid " Optionally, maximum heap size could be customized,\n"
msgstr " ڰ̱ƫҳԫ\n"
msgid " e.g., ./es-start -c -- -Xmx100m specifies 100 MBytes\n"
msgstr " ./es-start -c -- -Xmx100m 100 MB\n"
msgid " as max heap size; Default size is 64m.\n"
msgstr " ҳѡҳ 64m\n"
msgid " e : starts Sun Management Center Event manager\n"
msgstr " eٯ Sun Management Center ǵܡȢ\n"
msgid " f : starts Sun Management Center Configuration manager\n"
msgstr " fٯ Sun Management Center ܡȢ\n"
msgid " g : starts Sun Management Center Grouping services\n"
msgstr " gٯSun Management Center Τ٭\n"
msgid " h : prints this usage report\n"
msgstr " hȺ\n"
msgid " i : start agent in interactive mode, valid only for one of\n"
msgstr " iٯȢɢȢٯܡȢ\n"
msgid " the a, t, f, p, and e options\n"
msgstr " atfp e ġȴ\n"
msgid " l : starts Platform Agent for SSP\n"
msgstr " lٯ SSP ƺܡȢ\n"
msgid " m : starts Sun Management Center Metadata Repository\n"
msgstr " mٯ Sun Management Center ջ\n"
msgid " q : start components in quiet mode, effective only for one of\n"
msgstr " qٯȢɢȢٯǵ\n"
msgid " the A, a, t, f, p, and e options\n"
msgstr " Aatfp e ġȴ\n"
msgid " p : starts Sun Management Center Topology manager\n"
msgstr " pٯ Sun Management Center ܡȢ\n"
msgid " r : starts Hardware Diagnostic Suite Service\n"
msgstr " rٯ Hardware Diagnostic Suite Τ٭\n"
msgid " s : starts Sun Management Center Server\n"
msgstr " sٯ Sun Management Center Τ\n"
msgid " Optionally, maximum heap size could be customized,\n"
msgstr " ڰ̱ƫҳԫ\n"
msgid " e.g., ./es-start -s -- -Xmx100m specifies 100 MBytes\n"
msgstr " ./es-start -s -- -Xmx100m 100 MB\n"
msgid " as max heap size; Default size is 64m.\n"
msgstr " ҳѡҳ 64m\n"
msgid " t : starts Sun Management Center Trap Handler\n"
msgstr " tٯ Sun Management Center ݨܡȢ\n"
msgid " x : starts CST Service\n"
msgstr " xٯ CST Τ٭\n"
msgid " y : starts new instance of platform agent\n"
msgstr " yٯƺܡȢ\n"
msgid " w : starts web server\n"
msgstr " wٯΤ\n"
msgid " A : starts All Sun Management Center components except the console,\n"
msgstr " Aٯħƺȴ Sun Management Center ǵ\n"
msgid " S : starts Sun Management Center Server and all the server subcomponents\n"
msgstr " Sٯ Sun Management Center ΤȴΤǵ\n"
msgid " args are passed to console or server when started.\n"
msgstr " ſƺΤٯԯ\n"
msgid " (for example: es-start -c -- -p 2099)\n\n"
msgstr " es-start -c -- -p 2099\n\n"
msgid "ERROR: Sun Management Center has not been set up.\nRun es-setup to set up Sun Management Center."
msgstr "먡 Sun Management Center\n es-setup Sun Management Center"
msgid "Please specify a component to be started."
msgstr "ٯǵ"
msgid "Use the following single letter arguments instead:\n"
msgstr "Ķġſ\n"
msgid "Console package not installed\n"
msgstr "ƺ\n"
msgid "Interactive option invalid with -A or -S option"
msgstr "ٯȢɢ -A -S "
msgid "Invalid command line option. Please use just one option\n"
msgstr "ƷġԶ\n"
msgid "You have not specified any components to run.\n"
msgstr "ǵ\n"
msgid "Only one component may be started in interactive mode\n"
msgstr "ٯȢɢȢĶƷٯġԶǵ\n"
msgid "You cannot start console in interactive mode\n"
msgstr "ٯȢɢȢٯƺ\n"
msgid "DISPLAY environment variable must be set\n"
msgstr " DISPLAY \n"
msgid "Interactive server session:\n"
msgstr "ٯȢɢΤɢơ\n"
msgid "SUNWcstv or SUNWcstve package should be installed before start cstservice agent."
msgstr "ٯ cstservice ܡȢЩǿ SUNWcstv SUNWcstve ա"
msgid "Interactive option invalid with $OPT option"
msgstr "ٯȢɢ $OPT "
msgid "Unable to open DISPLAY: $DISPLAY"
msgstr " DISPLAY: $DISPLAY"
msgid "Equivalent to %s -aefgmpstxw"
msgstr "̧ %s -aefgmpstxw"
msgid "Equivalent to %s -efgmpstxw"
msgstr "̧ %s -efgmpstxw"
msgid "$2 Component not installed"
msgstr " $2 ǵ"
msgid "Invalid option\\\($1\\\). Options have changed to single letters:"
msgstr " \\\($1\\\)ҳġࡨ"
msgid "Starting all platform instances"
msgstr "ٯȴƺ"
msgid "Instances are $2"
msgstr "ҳ $2"
msgid "Starting platform instances $2"
msgstr "ٯƺ $2"
msgid "ERROR: Could not start Hardware Diagnostic Suite Service."
msgstr "먡ٯ Hardware Diagnostic Suite Τ٭"
msgid "SUNWed package should be installed before start Hardware Diagnostic Suite Service."
msgstr "SUNWed ٯ Hardware Diagnostic Suite Τ٭Щҡ"
msgid "Sun Management Center is not setup. Please setup first and then run es-start."
msgstr " Sun Management Centerǿҡѥ es-start"
msgid "Sun Management Center $2 is not setup."
msgstr " Sun Management Center $2"
#
#==========================================
# <WS>/packages/Setup/sm_setup_console.sh
#==========================================
msgid "This part of the setup process does the Sun Management Center Console Component setup."
msgstr "šݨܡȩ Sun Management Center ƺǵ"
#
#==============================
# <WS>/packages/Setup/es-stop
#==============================
msgid "Please specify a component to be stopped."
msgstr "ǵ"
msgid "Usage : $PROGNAME -aefghmprstxAS [-y instanceName]"
msgstr "Ρ$PROGNAME -aefghmprstxAS [-y instanceName]"
msgid " a : stops Sun Management Center Agent\n"
msgstr " a Sun Management Center ܡȢ\n"
msgid " e : stops Sun Management Center Event manager\n"
msgstr " e Sun Management Center ǵܡȢ\n"
msgid " f : stops Sun Management Center Configuration manager\n"
msgstr " f Sun Management Center ܡȢ\n"
msgid " g : stops Sun Management Center Services\n"
msgstr " g Sun Management Center Τ٭\n"
msgid " h : prints this usage report\n"
msgstr " hȺ\n"
msgid " l : stops Platform Agent for SSP\n"
msgstr " l SSP ƺܡȢ\n"
msgid " m : stops Sun Management Center Metadata Agent\n"
msgstr " m Sun Management Center ܡȢ\n"
msgid " p : stops Sun Management Center Topology manager\n"
msgstr " p Sun Management Center ܡȢ\n"
msgid " r : stops Hardware Diagnostic Suite Service\n"
msgstr " r Hardware Diagnostic Suite Τ٭\n"
msgid " s : stops Sun Management Center Server\n"
msgstr " s Sun Management Center Τ\n"
msgid " t : stops Sun Management Center Trap Handler\n"
msgstr " t Sun Management Center ݨܡȢ\n"
msgid " x : stops CST Service\n"
msgstr " x CST Τ٭\n"
msgid " y : stops instance of platform agent\n"
msgstr " yƺܡȢ\n"
msgid " w : stops web server\n"
msgstr " wΤ\n"
msgid " A : stops all Sun Management Center components listed above\n"
msgstr " Aĸȴ Sun Management Center ǵ\n"
msgid "equivalent to %s -aefgmprstxw"
msgstr "̧ %s -aefgmprstxw"
msgid " S : stops all Sun Management Center components listed above except Sun Management Center Agent\n"
msgstr " Sħ Sun Management Center ܡȢȴ Sun Management Center ǵ\n"
msgid "equivalent to %s -efgmprstxw"
msgstr "̧ %s -efgmprstxw"
msgid "Use the following single letter arguments instead:\n"
msgstr "Ķġſ\n"
msgid "Invalid option\\\($1\\\). Options have changed to single letters:"
msgstr " \\\($1\\\)ҳġࡨ"
msgid "$1 Component not installed"
msgstr " $1 ǵ"
msgid "Stopping all platform instances"
msgstr "ȴƺ"
msgid "$COMPONENT component is not running"
msgstr "$COMPONENT ǵ"
msgid "Stopping $COMPONENT component"
msgstr " $COMPONENT ǵ"
msgid "Error in stopping $COMPONENT component"
msgstr " $COMPONENT ǵ"
#
#================================
# <WS>/packages/Setup/es-crlcon
#================================
msgid " Sun Management Center Light Console Creation Program\n"
msgstr " Sun Management Center ƺǡȢ\n"
msgid "This program creates a directory of minimun required console components.\n"
msgstr "ȺȢǡŷƺǵ硤\n"
msgid "User can copy this directory to any machine with supported configuration\n"
msgstr "ϯƫȺ̯Ƕ̦ȴ̿ĸ\n"
msgid "to run Console."
msgstr "ƺ"
msgid "Destination [/tmp]: "
msgstr " [/tmp] "
msgid "Please remove the directory $dirname before proceeding"
msgstr "Щ $dirname"
msgid "or use a different directory.\n"
msgstr "硤\n"
msgid "Do you want the directory to be in zip format [y|n] [y]: "
msgstr "ȩҳ zip ֪Ȣ [y|n] [y] "
msgid "Please enter path to the executable - zip: "
msgstr "īƫ - zip "
msgid "Cannot find zip in $zippath."
msgstr "$zippath ̯ zip"
msgid "Source will be taken from [/opt/SUNWsymon]: "
msgstr "̽ [/opt/SUNWsymon] "
msgid "Directory ${dirname} is created."
msgstr " ${dirname} ǡ"
msgid "Creating zip file ...\n"
msgstr "ǡ zip ...\n"
msgid "SUNWsymon.zip can be transferred to other systems, unzip,\n"
msgstr "SUNWsymon.zip ƫ̧˷ӡ㡤\n"
msgid "Zip file is created in "
msgstr "Zip ǡ "
msgid "\nPlease note:\n\n Light console can be invoked by running:\n\n"
msgstr "\n\n\n ƫĶƵƺ\n\n"
#
#================================
# <WS>/packages/Setup/es-sfix.sh
#================================
msgid "usage:\n"
msgstr "Ρ\n"
msgid "process all modules : es-sfix.sh\n"
msgstr "ݨܡȴ es-sfix.sh\n"
msgid "flush db & process all modules : es-sfix.sh [-c | -C]\n"
msgstr " db ݨܡȴ es-sfix.sh [-c | -C]\n"
msgid "process only for specifiec module : es-sfix.sh [-m | -M] [module name]\n"
msgstr "Ʒݨܡ es-sfix.sh [-m | -M] []\n"
msgid "starting Sun Management Center database\n"
msgstr "ٯ Sun Management Center ջ\n"
msgid "database startup failed, exiting\n"
msgstr "ջٯ\n"
msgid "database is up\n"
msgstr "ջƵ\n"
msgid "executing suggested fix script\n"
msgstr "Ժߦ Script\n"
msgid "execution successful\n"
msgstr "ȩ\n"
msgid "error in execution\n"
msgstr "\n"
msgid "shutting down the database\n"
msgstr "ջ\n"
msgid "db-stop failed\n"
msgstr "db-stop \n"
msgid "purge database and process\n"
msgstr "ջݨܡ\n"
msgid "process only for module\n"
msgstr "ݨܡ\n"
msgid "incorrect usage\n"
msgstr "\n"
msgid "invalid arguments\n"
msgstr "ſ\n"
msgid "default processing\n"
msgstr "ݨܡʩ\n"
msgid "could not set java home directory\n"
msgstr " java \n"
msgid "please see the suggested fix log file in "
msgstr "ٶԺߦ"
#
#=================================
# <WS>/packages/Setup/es-details
#=================================
msgid "ERROR: "
msgstr "먡 "
msgid " Specify the tabs for a given Node_Object_Type. The -f and -u\n"
msgstr " ҳ Node_Object_Type -f -u\n"
msgid " options are mutually exclusive.\n"
msgstr " 桤\n"
msgid " where the options represent:\n"
msgstr " ̧㡢\n"
msgid " a : All tabs provided by Sun Management Center\n"
msgstr " a Sun Management Center ȴ\n"
msgid " will be included.\n"
msgstr " \n"
msgid " f inputfile : Input file which contains list of tabs to\n"
msgstr " f inputfile ī\n"
msgid " be used for the specified Node_Object_Type.\n"
msgstr " Node_Object_Type\n"
msgid " n Node_Object_Type : Corresponds to the Node_Object_Type\n"
msgstr " n Node_Object_Type es-device Script \n"
msgid " entered in the es-device script.\n"
msgstr " ī Node_Object_Type\n"
msgid " o : Overwrite previously created tab file.\n"
msgstr " o Щǡ\n"
msgid " Only meaningful when used with the -f\n"
msgstr " Ʒȴ -f ȴ\n"
msgid " option.\n"
msgstr " \n"
msgid " u : Undo. Restores the Node_Object_Type\n"
msgstr " u ߦϡ Node_Object_Type ߦ\n"
msgid " to its original state.\n"
msgstr " ҳ̧ȴ衤\n"
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "Usage: $2 [ -a ] [ -f inputfile ] -n Node_Object_Type [ -o ] [ -u ]\n"
msgstr "Ρ$2 [ -a ] [ -f inputfile ] -n Node_Object_Type [ -o ] [ -u ]\n"
msgid "Input file $2 does not exist"
msgstr "ī $2 "
msgid "The Node_Object_Type must be specified."
msgstr " Node_Object_Type"
msgid "Either option -f or -u must be specified."
msgstr " -f -u ġ"
msgid "Options -f or -u cannot both be specified."
msgstr " -f -u"
msgid "Options -o and -u cannot both be specified."
msgstr " -o -u"
msgid "Options -a and -u cannot both be specified."
msgstr " -a -u"
msgid "es-details has not yet been run with Node_Object_Type $2."
msgstr " Node_Object_Type $2 es-details"
msgid "Tab name not specified for DEFAULT statement on line $2."
msgstr " $2 ĸ ҳ DEFAULT ꢡ"
msgid "Only one tab can be defined as the DEFAULT."
msgstr "ƷġԶɢҳ DEFAULT"
msgid "Tab name not specified for INCLUDE statement on line $2."
msgstr " $2 ĸҳ INCLUDE ꢡ"
msgid "$2 is not a valid Sun Management Center tab on line $3."
msgstr "$2 $3 ĸȴ Sun Management Center "
msgid "Tab name not specified for APPEND statement on line $2."
msgstr " $2 ĸҳ APPEND ꢡ"
msgid "Tab name $2 must be in format file:key on line $3."
msgstr " $3 ĸ $2 ֪Ȣҳ file:key"
msgid "Help key not specified for user-defined tab $2 on line $3."
msgstr " $3 ĸҳϯ $2 ɷ"
msgid "Help Key $2 must be in format key:file on line $3."
msgstr " $3 ĸɷ $2 ֪Ȣҳ key:file"
msgid "Java class not specified for user-defined tab $2 on line $3."
msgstr " $3 ĸҳϯ $2 Java ɱ"
msgid "Key $2 is not a valid key on line $3."
msgstr " $2 $3 ĸȴ"
msgid "Input file $2 contains no APPEND or INCLUDE statements"
msgstr "ī $2 APPEND INCLUDE "
msgid "$2 is not a valid Node_Object_Type."
msgstr "$2 ȴ Node_Object_Type"
msgid "The specified default tab $2 was not found in the inputfile."
msgstr "ī̯ $2"
msgid "The tabs for this object have already been specified, use -o option to overwrite."
msgstr "Ⱥǵ -o ѡ"
msgid "Can only modify the family file for Sun Management Center agents."
msgstr "Ʒҳ Sun Management Center ܡȢԺե"
#
#===========================
# <WS>/packages/Setup/es-dt
#===========================
msgid "ERROR: "
msgstr "먡 "
msgid " where the options represent:\n"
msgstr " ̧㡢\n"
msgid " a : Add a reference.\n"
msgstr " a ٶ衤\n"
msgid " d : Delete a reference.\n"
msgstr " d ɴٶ衤\n"
msgid " v : View references. This is the default option.\n"
msgstr " v ٶ衤Ⱥҳ\n"
msgid " s : Add/Delete/View on the Platform Agent. By default the\n"
msgstr " s ƺܡȢĸ/ɴ/á\n"
msgid " operation is performed on the Agent.\n"
msgstr " ɢܡȢĸ硤\n"
msgid " h hostname : Agent hostname of machine running the Discovery Object Table.\n"
msgstr " h ꢡǵܡꢡ\n"
msgid " l label : Unique label for the Composite Object to add or delete.\n"
msgstr " l ɴǵȴ\n"
msgid " n not : Node_Object_Type for the Composite Object to add.\n"
msgstr " n not ǵ Node_Object_Type\n"
msgid " o OID : Discovery Object Table OID to add.\n"
msgstr " o OID ǵ OID\n"
msgid " p port : Agent port of machine running the Discovery Object Table.\n"
msgstr " p port ǵܡȢա\n"
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "ESDIR must be set"
msgstr " ESDIR"
msgid "Usage: $2 -a \\\| -d \\\| -v [ -s ] -h hostname -l label -n not -o OID -p port\n"
msgstr "Ρ$2 -a \\\| -d \\\| -v [ -s ] -h -l -n not -o OID -p port\n"
msgid "It cannot be loaded on both the Agent and Platform Agent."
msgstr "ܡȢůƺܡȢīơ"
msgid "The options -h, -l, -n, -o, and -p must all be used with the -a option."
msgstr " -h-l-n-o -p -a "
msgid "An entry for $2 already exists."
msgstr " $2 㡤"
msgid "The option -l must be used with the -d option."
msgstr " -l -d "
msgid "The options -h, -n, -o, and -p are not valid with the -d option."
msgstr " -h-n-o -p -d "
msgid "An entry for $2 does not exist."
msgstr " $2 㡤"
msgid "The options -h, -l, -n, -o, and -p are not valid with the -v option."
msgstr " -h-l-n-o -p -v "
msgid "No entries."
msgstr "ȴ"
msgid "The file $2 is not readable."
msgstr " $2 ƫ̽"
msgid "Discovery Service loaded on: Agent"
msgstr "Τ٭īAgent"
msgid "Discovery Service loaded on: Platform Agent."
msgstr "Τ٭īƺܡȢ"
msgid "Entries:"
msgstr ""
msgid "The discovery table is already loaded on the Agent."
msgstr "ܡȢĸī"
msgid "The discovery table is already loaded on the Platform Agent."
msgstr "ƺܡȢĸī"
#
#=============================
# <WS>/packages/Setup/es-apps
#=============================
msgid "This script reads the specified configuration file or\\n%s if not specified,\\nand installs the applications with the server."
msgstr "Ⱥ Script ̽\\n%sΪ\\nΤȢ"
msgid "The configuration file contains one or more lines using the following format:\n"
msgstr "ġĶ֪Ȣթ\n"
msgid "where:\n"
msgstr "̧㡨\n"
msgid "name\tis the name of the application that appears in the Application list\n"
msgstr " name\tȢȢ"
msgid "class\tis the name of the Java class for the application\n"
msgstr " class\tȢ Java ɱ\n"
msgid "args\tare optional user defined arguments to be passed to the application\n"
msgstr "args\tīȢϯƫ\n"
msgid "help\tis the optional help specification using the format key:helpfile or :url.\n"
msgstr "help\tkey:helpfile :url ֪Ȣɷƫ\n"
msgid "There should be no quotes in the line.\n"
msgstr "ȴſ\n"
msgid "Lines beginning with # are considered as comments.\n"
msgstr " # թݷҳء"
msgid "For example:\n"
msgstr "\n"
msgid "Using %s"
msgstr " %s"
msgid "%s updated."
msgstr "%s 仡"
#
#================================
# <WS>/packages/Setup/db-export.sh
#================================
msgid "This action is limited to superuser only.\n"
msgstr "Ⱥɢϯ\n"
msgid "Exiting $PROGNAME."
msgstr " $PROGNAME"
#
#==================================
# <WS>/packages/Setup/db-import.sh
#==================================
msgid "This action is limited to superuser only.\n"
msgstr "Ⱥɢϯ\n"
msgid "Exiting $PROGNAME."
msgstr " $PROGNAME"
msgid "please ensure Topology & Event agents are not running..."
msgstr "ůǵܡȢ..."
#
#============================
# <WS>/packages/Setup/es-run
#============================
msgid "Usage : $PROGNAME option1 [option2,...]"
msgstr "Ρ$PROGNAME 1 [ 2,...]"
msgid " where option1 is a Sun Management Center utility\n and option2,... are the arguments for 'option1'\n\n If option1 is '-help', then the usage is printed.\n\n"
msgstr " ̧㡢 1 Sun Management Center Ȣ\n 2,... ҡ 1ſ\n\n Ϊ 1 '-help'̧Ρ\n\n"
#
#==============================
# <WS>/packages/Setup/es-chelp
#===============================
msgid "Must be root to run $PROGRAM"
msgstr " root ϯ $PROGRAM "
msgid "There is an existing $PROGRAM lockfile, $LOCKFILE"
msgstr "ġԶ $PROGRAM $LOCKFILE"
msgid "which indicates that process is executing the $PROGRAM"
msgstr "ݨܡ $PROGRAM"
msgid "If this is not the case, delete the lock file,"
msgstr "ΪӡɴȺ"
msgid "$LOCKFILE and execute $PROGRAM again."
msgstr "$LOCKFILE ȹ $PROGRAM"
msgid "$sdk_helpfile either does not exist or is not writable"
msgstr "$sdk_helpfile ƫī"
msgid "Must be root to run $PROGRAM"
msgstr " root ϯ $PROGRAM "
#
#========================================
# <WS>/src/db/build/build-recovery*.ksh
#========================================
msgid "The directory $2 does not exist"
msgstr " $2 "
msgid "Usage: $PROGNAME -au auid -ap apword -wu wuid -wp wpword -sp syspword -s osrvname -tsn tsname -tsp tsphyspath -tsis tssize -olfp olfpath [-cdb] [-vr]"
msgstr "Ρ$PROGNAME -au auid -ap apword -wu wuid -wp wpword -sp syspword -s osrvname -tsn tsname -tsp tsphyspath -tsis tssize -olfp olfpath [-cdb] [-vr]"
msgid " -au auid : userid used to admin smc tablespace"
msgstr " -au auid ܡ smc ֪Ϩ userid"
msgid " -ap apword : password for corresponding admin userid"
msgstr " -ap apword ܡ userid "
msgid " -wu wuid : working userid used by application"
msgstr " -wu wuid Ȣɢ userid"
msgid " -wp wpword : working password for corresponding working userid"
msgstr " -wp wpword ɢ userid ɢ"
msgid " -sp syspword : password for system userid \\\(system\\\)"
msgstr " -sp syspword ˷ userid \\\(system\\\)"
msgid " -s osrvname : name of the oracle service used to connect to db"
msgstr " -s osrvname ̯ջ oracle Τ٭"
msgid " -tsn tsname : name of the tablespace"
msgstr " -tsn tsname ֪Ϩ"
msgid " -tsp tsphyspath : physical location of tablespace"
msgstr " -tsp tsphyspath ֪Ϩ"
msgid " -tsis tssize : initial size of tablespace \\\(in M bytes\\\)"
msgstr " -tsis tssize ֪Ϩ \\\( MB ҳ\\\)"
msgid " -olfp olfpath : physical location \\\(local\\\) to write the smc30.oracle file"
msgstr " -olfp olfpath ī smc30.oracle \\\(\\\)"
msgid " -cdb : indicates that any existing tablespace and user"
msgstr " -cdb ȴܢȴ֪Ϩůϯ"
msgid " matching the specified parameters above are"
msgstr " ĸٶϯ"
msgid " dropped before proceeding. use is optional"
msgstr " Щ۹ƫ"
msgid " -vr : this option is used to verify all objects"
msgstr " -vr Ⱥȴǵ"
msgid " and to perform a recovery sequence if any"
msgstr " ůߦѥٯɢΪ"
msgid " problems are detected"
msgstr " ̯Ƕ"
msgid " -ver : option"
msgstr " -ver "
msgid " -lf logfile : logfile name"
msgstr " -lf logfile "
msgid "ERROR: the ESDIR environment variable has not been set"
msgstr "먡 ESDIR "
msgid "illegal option encoutered : $2"
msgstr "̯$2"
msgid "this is a pc installation : $2"
msgstr "Ⱥҳ pc ҡ$2"
msgid "this is a sparc installation : $2"
msgstr "Ⱥҳ sparc ҡ$2"
msgid "unknown system type, exiting........................"
msgstr "˷........................"
msgid "can not find sqlplus on path, exiting........................."
msgstr "ĸ̯ sqlplus........................."
msgid "the current directory is not writable "
msgstr "Щƫī "
msgid "sqlplus writes an error log \\\(sqlnet.log\\\)"
msgstr "sqlplus ī \\\(sqlnet.log\\\)"
msgid "to the current directory in the event of"
msgstr "Щ㡾"
msgid "a connection problem"
msgstr "ǵ㡿"
msgid "the /tmp directory does not exist"
msgstr "/tmp "
msgid "however, a file named /tmp does exist"
msgstr "紡ȴԶҳ /tmp "
msgid "/tmp directory is not writable "
msgstr "/tmp ƫī"
msgid "the \\\(-au auid\\\) command line parameter was not specified "
msgstr " \\\(-au auid\\\) ٶ"
msgid "the \\\(-ap apword\\\) command line parameter was not specified "
msgstr " \\\(-ap apword\\\) ٶ"
msgid "the \\\(-wu wuid\\\) command line parameter was not specified "
msgstr " \\\(-wu wuid\\\) ٶ"
msgid "the \\\(-wp wpword\\\) command line parameter was not specified "
msgstr " \\\(-wp wpword\\\) ٶ"
msgid "the \\\(-sp syspword\\\) command line parameter was not specified "
msgstr " \\\(-sp syspword\\\) ٶ"
msgid "the \\\(-s osrvname\\\) command line parameter was not specified "
msgstr " \\\(-s osrvname\\\) ٶ"
msgid "the \\\(-tsn tsname\\\) command line parameter was not specified "
msgstr " \\\(-tsn tsname\\\) ٶ"
msgid "the \\\(-tsp tsphyspath\\\) command line parameter was not specified "
msgstr " \\\(-tsp tsphyspath\\\) ٶ"
msgid "the \\\(-tsis tssize\\\) command line parameter was not specified "
msgstr " \\\(-tsis tssize\\\) ٶ"
msgid "the \\\(-olfp olfpath\\\) command line parameter was invalid! "
msgstr "\\\(-olfp olfpath\\\) ٶ桪 "
msgid "exiting..................."
msgstr "..................."
msgid "The Initial Tablespace Size given is not invalid"
msgstr "֪Ϩ"
msgid "valid range is 1 to 500 M"
msgstr "ȴҳ 1 ̯ 500 M"
msgid "Writing Applogin file : $2"
msgstr "ī Applogin $2"
msgid "file : $2, has a quit statement in it."
msgstr "file : $2̧ȴġԶ"
msgid "file : $str3, has a quit statement in it."
msgstr "file : $str3̧ȴġԶ"
msgid "need to remove quit statements, exiting........................"
msgstr "........................"
msgid "source file: $2 for step: $3 is missing"
msgstr "$2$3"
msgid "probably need to execute mkaggregatefiles.ksh"
msgstr "ƫ mkaggregatefiles.ksh"
msgid "source file for one or more steps is missing, exiting........................"
msgstr "ġԶ¡........................"
msgid " removing existing logfile : /tmp/recovery.err"
msgstr " ܢȴ/tmp/recovery.err"
msgid " removing existing logfile : $2"
msgstr " ܢȴ $2"
msgid " removing existing temporary sql : $2"
msgstr " ܢȴ sql $2"
msgid "Unable to successfully append $2 onto $3"
msgstr "ȩʢ $2 $3"
msgid "return code from cat : $2"
msgstr " cat $2"
msgid "$2 file not found"
msgstr "̯ $2 "
msgid "Unable to successfully substitue in $2"
msgstr " $2 ȩ̽"
msgid "substitution string : $2"
msgstr "̽롨$2"
msgid "return code from sed : $2"
msgstr " sed $2"
msgid "Unable to successfully perform all sed based substitutions on $2 into $3"
msgstr "ȩ $2 ĸȴ sed ̽ɢ̯ $3 "
msgid "return code from grep : $2, meaning it found un-substituted strings"
msgstr " grep $2̯̽"
msgid "$2 file not found\\\(1\\\)"
msgstr "̯ $2 \\\(1\\\)"
msgid "please see the $2 file for additional details"
msgstr "ٶ $2 ̧ع"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "sqlerror code = $2"
msgstr "sqlerror = $2"
msgid "sqlerrmsg full = \\\>\\\>\\\> $2\\\<\n"
msgstr "sqlerrmsg =\\\>\\\>\\\> $2\\\<\n"
msgid "unhandled error detected, only recourse is to stop processing"
msgstr "̯ݨܡ먡ġȢݨܡ"
msgid "please see the $2 file for additional details"
msgstr "ٶ $2 ̧ع"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "execution of $2 ok!!"
msgstr "$2 ڦ"
msgid "step file $2 not found"
msgstr "̯ $2"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "skipping execution of $2"
msgstr " $2 "
msgid "$2 dependent step $3 did not execute"
msgstr " $3 $2 "
msgid "$2 dependent step $3 failed execution"
msgstr " $3 $2 "
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "while in recovery mode, attempts to find a successfully executed dependent of "
msgstr "ߦȢĶ롢ȩ $2 "
msgid "the $2 step was unsuccessfull. premature exit!!"
msgstr "ȩȮ֡"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "while in recovery mode, attempts to find a valid step to execute following "
msgstr "ߦȢĶ롢ƫĶ $2 ȴ"
msgid "the $2 step was unsuccessfull. premature exit!!"
msgstr "ȩȮ֡"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "too many attempts to execute the $2 step"
msgstr " $2 Ŵ"
msgid "please see the $2 file for additional details"
msgstr "ٶ $2 ̧ع"
msgid "exiting main processing loop..................."
msgstr "ݨܡ..................."
msgid "please see the $2 file for listing details"
msgstr "ٶ $2 ع"
#
#========================================
# <WS>/src/db/build/mkaggregatefiles.ksh
#========================================
msgid " removing existing verify inventory : agg-verify-proc-inventory.sql"
msgstr " ܢȴջagg-verify-proc-inventory.sql"
msgid "- Create agg-packages-topology.sql file -"
msgstr "- ǡ agg-packages-topology.sql -"
msgid "- Create agg-procedures-topology.sql file -"
msgstr "- ǡ agg-procedures-topology.sql -"
msgid "- Add to agg-createalltables.sql file -"
msgstr "- agg-createalltables.sql -"
msgid "- Add to agg-verifyalltableattribs.sql file -"
msgstr "- agg-verifyalltableattribs.sql -"
msgid "- Add to agg-dataload-preseq.sql file -"
msgstr "- agg-dataload-preseq.sql -"
msgid "- Create agg-packages-eventmanager.sql file -"
msgstr "- ǡ agg-packages-eventmanager.sql -"
msgid "- Create agg-procedures-eventmanager.sql file -"
msgstr "- ǡ agg-procedures-eventmanager.sql -"
msgid "- Add to agg-createalltables.sql file -"
msgstr "- agg-createalltables.sql -"
msgid "- Add to agg-verifyalltableattribs.sql file -"
msgstr "- agg-verifyalltableattribs.sql -"
msgid "- Create agg-packages-mgmtservice.sql file -"
msgstr "- ǡ agg-packages-mgmtservice.sql -"
msgid "- Create agg-procedures-mgmtservice.sql file -"
msgstr "- ǡ agg-procedures-mgmtservice.sql -"
msgid "- Add to agg-createalltables.sql file -"
msgstr "- agg-createalltables.sql -"
msgid "- Add to agg-verifyalltableattribs.sql file -"
msgstr "- agg-verifyalltableattribs.sql -"
msgid "- Create agg-verify-proc-inventory.sql file -"
msgstr "- ǡ agg-verify-proc-inventory.sql -"
#
#==================================================
# <WS>/src/oa/modules/configd4u/bin/es-setup.sh
#==================================================
msgid "Setup failed while adding module $2 into $3"
msgstr " $2 $3 "
msgid "$2 does not exist"
msgstr "$2 "
msgid "Added module $2 to $3."
msgstr " $2 $3"
msgid "$2 is not readable, Could not add the module $3"
msgstr "$2 ƫ̽ $3"
msgid "Setup of sunfire config reader module failed."
msgstr "sunfire ̽"
#
#======================================
# <WS>/src/oa/base/generic/bin/*.sh
#======================================
msgid "usage: $basename [-sh|-csh] [-internal|-external]"
msgstr "Ρ$basename [-sh|-csh] [-internal|-external]"
msgid "ERROR: the ESROOT environment variable has not been set"
msgstr "먡 ESROOT "
msgid "usage: $PROGNAME -s \\\"<secret> [-p <public>] [-u <user>[ ...]] [-h <host>] [-c <component>[ ...]]\\\""
msgstr "Ρ$PROGNAME -s \\\"<ǵ> [-p <>] [-u <ϯ>[ ...]][-h <>] [-c <ǵ>[ ...]]\\\""
msgid " <secret> is the superuser password\n"
msgstr " <ǵ> ϯ\n"
msgid " <public> is the public password (default=public)\n"
msgstr " <> ԫ=public\n"
msgid " <user> is the list of initial seeded users\n"
msgstr " <ϯ> ϯ\n"
msgid " <host> is the fallback host name\n"
msgstr " <> \n"
msgid " <component> is agent/cfgserver/event/cstservice/topology/trap/\n"
msgstr " <ǵ> agent/cfgserver/event/cstservice/topology/trap/\n"
msgid " Omit all <component>s to do them all\n"
msgstr " ܩȴ <ǵ> \n"
msgid "$PROGNAME: ESROOT must be set."
msgstr "$PROGNAME: ESROOT"
msgid "$PROGNAME: $1: unknown component"
msgstr "$PROGNAME: $1: ǵ"
msgid "$PROGNAME: ERROR: blank secret not allowed, exiting ..."
msgstr "$PROGNAME: 먡Ϩǵ ..."
msgid "$PROGNAME: ERROR: blank password not allowed, exiting ..."
msgstr "$PROGNAME: 먡Ϩ ..."
msgid "PROGNAME: WARNING ... secret will be truncated to 8 characters"
msgstr "PROGNAME: ... ǵҳ 8 Զ"
msgid "$PROGNAME: security.superuser name not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.superuser ꢡ domain-config.x user-config.x "
msgid "$PROGNAME: security.generaluser name not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.generaluser ꢡ domain-config.x user-config.x "
msgid "$var"
msgstr "$var"
msgid "Interrupted..."
msgstr "..."
msgid "$PROGNAME: security.userfile not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.userfile domain-config.x user-config.x "
msgid "$PROGNAME: security.authOID not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.authOID domain-config.x user-config.x "
msgid "$PROGNAME: security.privOID not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.privOID domain-config.x user-config.x "
msgid "$PROGNAME: ${COMP}.${COMP}Server not found - using $DEFHOST."
msgstr "$PROGNAME: ̯ ${COMP}.${COMP}Server - $DEFHOST"
msgid "$PROGNAME: ${COMP}.${COMP}snmpPort not found - skipping $COMP."
msgstr "$PROGNAME: ̯ ${COMP}.${COMP}snmpPort - ܩ $COMP"
msgid "ESROOT must be set\n"
msgstr " ESROOT\n"
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "OS $sys $rel is not supported"
msgstr " OS $sys $rel"
msgid "No Matching Process Found \\\($COMMAND\\\)"
msgstr "̯ݨܡ \\\($COMMAND\\\)"
msgid "Terminating Process ID $PID \\\($COMMAND\\\)"
msgstr "ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "gettext 'Error Killing Process ID $PID \\\($COMMAND\\\)"
msgstr "gettext 'ɴݨܡ ID $PID \\\($COMMAND\\\)"
#
#=================================================
# <WS>/src/java/base/console/bin/es-console.sh
#=================================================
msgid "ESROOT environment variable must be set"
msgstr " ESROOT "
msgid "DISPLAY environment variable must be set"
msgstr " DISPLAY "
msgid "SYMON_JAVAHOME variable must be set"
msgstr " SYMON_JAVAHOME "
msgid "$JAVA must exist and be of version Solaris_JDK_1.2.1_04\n"
msgstr "$JAVA Solaris_JDK_1.2.1_04 \n"
#
#============================================
# <WS>/src/java/base/server/bin/es-server*
#============================================
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "No Matching Process Found \\\($COMMAND\\\)"
msgstr "̯ݨܡ \\\($COMMAND\\\)"
msgid "More Than One Matching Process Found \\\($COMMAND\\\)"
msgstr "̯Զݨܡ \\\($COMMAND\\\)"
msgid "No Processes Killed"
msgstr "ɴݨܡ"
msgid "gettext 'More Than One Matching Process Found \\\($COMMAND\\\)"
msgstr "gettext '̯Զݨܡ \\\($COMMAND\\\)"
msgid "Terminating Process ID $PID \\\($COMMAND\\\)"
msgstr "ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "Error Killing Process ID $PID \\\($COMMAND\\\)"
msgstr "ɴݨܡ ID $PID \\\($COMMAND\\\)"
msgid "No Matching Process Found \\\($COMMAND\\\)"
msgstr "̯ݨܡ \\\($COMMAND\\\)"
msgid "Terminating Process ID $PID using kill -9 \\\($COMMAND\\\)"
msgstr " kill -9 ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "Error Killing Process ID $PID with kill -9 \\\($COMMAND\\\)"
msgstr " kill -9 ɴݨܡ ID $PID \\\($COMMAND\\\)"
msgid "ESROOT environment variable must be set"
msgstr " ESROOT "
msgid "ESDIR environment variable must be set"
msgstr " ESDIR "
msgid "SYMON_JAVAHOME variable must be set"
msgstr " SYMON_JAVAHOME "
msgid "$JAVA must exist and be of version Solaris_JDK_1.2.1_04\n"
msgstr "$JAVA Solaris_JDK_1.2.1_04 \n"
#
#====================================================
# <WS>/src/java/com/sun/symon/base/cli/bin/es-cli
#====================================================
msgid "$SYMON_JAVAHOME/jre/bin/java must exist and be of version Solaris_JDK_1.2.1_04\n"
msgstr "$SYMON_JAVAHOME/jre/bin/java Solaris_JDK_1.2.1_04 \n"
#
# Strings from Halcyon scripts
#
msgid "usage: $basename [-sh|-csh] [-internal|-external]"
msgstr "Ρ$basename [-sh|-csh] [-internal|-external]"
msgid "ERROR: the ESROOT environment variable has not been set"
msgstr "먡 ESROOT "
msgid "usage: $PROGNAME -s <secret> [-p <public>] [-u <user>[ ...]] [-h <host>] [-c <component>[ ...]]"
msgstr "Ρ$PROGNAME -s <ǵ> [-p <>] [-u <ϯ>[ ...]][-h <>] [-c <ǵ>[ ...]]"
msgid "<secret> is the superuser password"
msgstr "<ǵ> ϯ"
msgid "<public> is the public password (default=public)"
msgstr "<> ԫ=public"
msgid "<user> is the list of initial seeded users"
msgstr "<ϯ> ϯ"
msgid "<host> is the fallback host name"
msgstr "<> "
msgid "<component> is agent/cfgserver/event/topology/trap"
msgstr "<ǵ> agent/cfgserver/event/topology/trap"
msgid "Omit all <component>s to do them all"
msgstr "ܩȴ <ǵ> "
msgid "$PROGNAME: ESROOT must be set."
msgstr "$PROGNAME: ESROOT"
msgid "$PROGNAME: $1: unknown component"
msgstr "$PROGNAME: $1: ǵ"
msgid "$PROGNAME: ERROR: blank secret not allowed, exiting ..."
msgstr "$PROGNAME: 먡Ϩǵ ..."
msgid "$PROGNAME: ERROR: blank password not allowed, exiting ..."
msgstr "$PROGNAME: 먡Ϩ ..."
msgid "$PROGNAME: WARNING ... secret will be truncated to 8 characters"
msgstr "$PROGNAME: ... ǵҳ 8 Զ"
msgid "$PROGNAME: security.superuser name not found. Check domain-confg.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.superuser ꢡ domain-confg.x user-config.x "
msgid "$PROGNAME: security.generaluser name not found. Check domain-cofig.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.generaluser ꢡ domain-cofig.x user-config.x "
msgid "Copying $FILENAME to $ESDIR/cfg..."
msgstr " $FILENAME ̯ $ESDIR/cfg..."
msgid "Copying ${1}-${FILENAME} to $ESDIR/cfg..."
msgstr " ${1}-${FILENAME} ̯ $ESDIR/cfg..."
msgid "Copying ${COMP}-${FILENAME} to $ESDIR/cfg..."
msgstr " ${COMP}-${FILENAME} ̯ $ESDIR/cfg..."
msgid "$var"
msgstr "$var"
msgid "Interrupted..."
msgstr "..."
msgid "$PROGNAME: security.userfile not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.userfile domain-config.x user-config.x "
msgid "$PROGNAME: security.authOID not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.authOID domain-config.x user-config.x "
msgid "$PROGNAME: security.privOID not found. Check domain-config.x or user-config.x files"
msgstr "$PROGNAME: ̯ security.privOID domain-config.x user-config.x "
msgid "$PROGNAME: ${COMP}.${COMP}Server not found - using $DEFHOST"
msgstr "$PROGNAME: ̯ ${COMP}.${COMP}Server - $DEFHOST"
msgid "$PROGNAME: ${COMP}.${COMP}snmpPort not found - skipping $COP."
msgstr "$PROGNAME: ̯ ${COMP}.${COMP}snmpPort - ܩ $COP"
msgid "ESROOT must be set"
msgstr " ESROOT"
msgid "OS $sys $rel is not supported"
msgstr " OS $sys $rel"
msgid "Terminating Process ID $PID \\\($COMMAND\\\)"
msgstr "ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "Error Killing Process ID $PID \\\($COMMAND\\\)"
msgstr "ɴݨܡ ID $PID \\\($COMMAND\\\)"
msgid "No Matching Process Found \\\($COMMAND\\\)"
msgstr "̯ݨܡ \\\($COMMAND\\\)"
msgid "Terminating Process ID $PID with the force \\\($COMMAND\\\)"
msgstr "ڰ̱ \\\($COMMAND\\\) ݨܡ ID $PID"
msgid "DISPLAY environment variable must be set"
msgstr " DISPLAY "
msgid "More Than One Matching Process Found \\\($COMMAND\\\)"
msgstr "̯Զݨܡ \\\($COMMAND\\\)"
msgid "No Processes Killed"
msgstr "ɴݨܡ"
msgid "Terminating Process ID $PID using kill -9 \\\($COMMAND\\\)"
msgstr " kill -9 ݨܡ ID $PID \\\($COMMAND\\\)"
msgid "Error Killing Process ID $PID with kill -9 \\\($COMMAND\\\)"
msgstr " kill -9 ɴݨܡ ID $PID \\\($COMMAND\\\)"
msgid "ESROOT environment variable must be set"
msgstr " ESROOT "
msgid "ESDIR environment variable must be set"
msgstr " ESDIR "
#
# for es-tool - a SDK tool for integrating applications into console
#
msgid "Must be root to run $PROGRAM"
msgstr " root ϯ $PROGRAM "
msgid "$sdk_toolfile either does not exist or is not writable"
msgstr "$sdk_toolfile ƫī"
msgid "There is an existing $PROGRAM lockfile, $LOCKFILE"
msgstr "ġԶ $PROGRAM $LOCKFILE"
msgid "which indicates that process is executing the $PROGRAM"
msgstr "ݨܡ $PROGRAM"
msgid "If this is not the case, delete the lock file,"
msgstr "ΪӡɴȺ"
msgid "$LOCKFILE and execute $PROGRAM again."
msgstr "$LOCKFILE ȹ $PROGRAM"
msgid "$sdk_helpfile either does not exist or is not writable"
msgstr "$sdk_helpfile ƫī"
msgid "$JAVA must exist and be of version Solaris_JDK_1.2.1_04\n"
msgstr "$JAVA Solaris_JDK_1.2.1_04 \n"
msgid "Using %s"
msgstr " %s"
msgid "%s updated."
msgstr "%s 仡"
msgid "This script reads the specified configuration file or\\n%s if not specified,\\nand installs the applications with the server."
msgstr "Ⱥ Script ̽\\n%sΪ\\nΤȢ"
msgid "The configuration file contains one or more lines using the following format:\n"
msgstr "ġĶ֪Ȣթ\n"
msgid "where:\n"
msgstr "̧㡨\n"
msgid "name\tis the name of the application that appears in the Application list\n"
msgstr " name\tȢȢ"
msgid "class\tis the name of the Java class for the application\n"
msgstr " class\tȢ Java ɱ\n"
msgid "args\tare optional user defined arguments to be passed to the application\n"
msgstr "args\tīȢϯƫ\n"
msgid "help\tis the optional help specification using the format key:helpfile or :url.\n"
msgstr "help\tkey:helpfile :url ֪Ȣɷƫ\n"
msgid "There should be no quotes in the line.\n"
msgstr "ȴſ\n"
msgid "Lines beginning with # are considered as comments.\n"
msgstr " # թݷҳء"
msgid "For example:\n"
msgstr "\n"
#
#====================================================
# <WS>/packages/Setup/es-platform
#====================================================
msgid "Usage: $PROGNAME -ad instanceName"
msgstr "Ρ$PROGNAME -ad instanceName"
msgid " Where the options represent:\n"
msgstr " ̧\n"
msgid " a : to add an instance of platform agent\n"
msgstr " aƺܡȢ\n"
msgid " d : to delete an instance of platform agent\n"
msgstr " dɴƺܡȢ\n"
msgid "You can not specify both a and d option in the same command"
msgstr "ġԶ a ů d "
msgid "You can not have spaces in the instance name."
msgstr "ȴϨ֪"
msgid "Port $2 is not a valid port number, try another number : "
msgstr " $2 ȴƶġԶ "
msgid "This port is being used by Sun Management Center agent, try another number : "
msgstr "Ⱥ Sun Management Center ܡȢƶġԶ "
msgid "This port is being used by some instance, try another number : "
msgstr "ȺԶƶġԶ "
msgid "This port is being used by some another process, try another number : "
msgstr "ȺƶġԶݨܡƶġԶ "
msgid "This instance is already present."
msgstr "Ⱥ㡤"
msgid "Usage: $PROGNAME -ad instanceName"
msgstr "Ρ$PROGNAME -ad instanceName"
msgid "Usage: $PROGNAME -ad instanceName"
msgstr "Ρ$PROGNAME -ad instanceName"
msgid "Usage: $PROGNAME -ad instanceName"
msgstr "Ρ$PROGNAME -ad instanceName"
# END
|