templates.c 135 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 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
/* ./plugins/newtec/templates/newtec/export.smarty */
gettext("Export");

/* ./plugins/newtec/templates/newtec/export.smarty */
gettext("Export");

/* ./plugins/extranavigation/templates/extranavigation/dashlet.smarty */
gettext("Where to now?");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Generic Information");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("The information in this section is stored by KnowledgeTree™ for every         document.");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Document Filename");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("File is a");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Created by");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("this cannot not change between versions");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Last update by");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Document Type");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Workflow status");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("No workflow");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic_versioned.smarty */
gettext("No workflow");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("Generic Information");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("The information in this section is stored by KnowledgeTree™ for every         document.");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("Document Filename");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("File is a");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("Created by");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("Last update by");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("Document Type");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("Workflow status");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("No workflow");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/generic.smarty */
gettext("manage workflow");

/* ./plugins/compactmetadata/templates/kt3/fieldsets/simple.smarty */
gettext("no value");

/* ./plugins/browseabledashlet/templates/browseabledashlet/dashlet.smarty */
gettext("Orphaned Folders");

/* ./plugins/browseabledashlet/templates/browseabledashlet/dashlet.smarty */
gettext("Since KnowledgeTree only shows you the folders and documents you are allowed to see, there are some placed that you can view but can't get to — for example, if they are in a folder you are not allowed to see.  These are called \"orphaned folders\" since you can't access their parents and they are are listed below.");

/* ./templates/ktcore/manage_permissions.smarty */
gettext("Existing permissions");

/* ./templates/ktcore/manage_permissions.smarty */
gettext("Permissions are descriptors used to ascertain whether groups of users have access to certain functionality. The built-in permissions below facilitate the default functionality of the DMS and can't be changed. Plugin developers may choose to add additional permissions below that manage access to their plugins functionality.");

/* ./templates/ktcore/manage_permissions.smarty */
gettext("Create a new permission");

/* ./templates/ktcore/manage_permissions.smarty */
gettext("Create");

/* ./templates/ktcore/manage_permissions.smarty */
gettext("Permission");

/* ./templates/ktcore/manage_permissions.smarty */
gettext("Display Name");

/* ./templates/ktcore/manage_permissions.smarty */
gettext("Delete");

/* ./templates/ktcore/manage_permissions.smarty */
gettext("Built-in");

/* ./templates/ktcore/manage_permissions.smarty */
gettext("Delete Permission");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Edit Fieldset");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Current Fields in Set");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Fields which are currently not included in any set can be added to this set.");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("No fields associated with this fieldset.");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Remove");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Add Field to set");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Fields which are currently not included in any set can be added to this set.");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("No free fields.");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Add to Fieldset");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Make this fieldset conditional");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("No free fields.");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Add to Fieldset");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Field has conditions attached to it.");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Manage conditions.");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Test conditions");

/* ./templates/ktcore/edit_fieldset.smarty */
gettext("Fieldset cannot be made conditional. One of the fields must not be a lookup.");

/* ./templates/ktcore/plugins/list.smarty */
gettext("Plugins");

/* ./templates/ktcore/plugins/list.smarty */
gettext("Check the plugins that require activation and then click \"Update\". To disable a plugin, uncheck the plugin and click \"Update\".");

/* ./templates/ktcore/plugins/list.smarty */
gettext("Update");

/* ./templates/ktcore/plugins/list.smarty */
gettext("Read plugins from filesystem");

/* ./templates/ktcore/plugins/list.smarty */
gettext("If you have moved the location of KnowledgeTree on your server filesystem, or installed or removed plugins, the plugins must be re-read from the filesystem");

/* ./templates/ktcore/plugins/list.smarty */
gettext("Reread plugins");

/* ./templates/ktcore/manage_help.smarty */
gettext("Current help assignments");

/* ./templates/ktcore/manage_help.smarty */
gettext("To customise a help file, please visit that file via the help system and click on <strong>customise this help file</strong>.");

/* ./templates/ktcore/manage_help.smarty */
gettext("Existing customised help pages");

/* ./templates/ktcore/manage_help.smarty */
gettext("Name");

/* ./templates/ktcore/manage_help.smarty */
gettext("Actions");

/* ./templates/ktcore/manage_help.smarty */
gettext("Delete");

/* ./templates/ktcore/manage_help.smarty */
gettext("No Help files have to customised.");

/* ./templates/ktcore/manage_help_item.smarty */
gettext("Update");

/* ./templates/ktcore/dashlets/notifications.smarty */
gettext("Items that require your attention");

/* ./templates/ktcore/dashlets/notifications.smarty */
gettext("These are the most recent #visible# notifications.  You have a total of #count# notifications waiting.");

/* ./templates/ktcore/dashlets/notifications.smarty */
gettext("Clear all notifications");

/* ./templates/ktcore/dashlets/notifications.smarty */
gettext("Clear all notifications");

/* ./templates/ktcore/dashlets/notifications.smarty */
gettext("No items require your attention.");

/* ./templates/ktcore/dashlets/admintutorial.smarty */
gettext("KnowledgeTree administrator's Guide");

/* ./templates/ktcore/dashlets/admintutorial.smarty */
gettext("If this is your first KnowledgeTree installation, or if you've just upgraded from KnowledgeTree 2.x, we've put together some information which might help you get to grips with the new system.");

/* ./templates/ktcore/dashlets/admintutorial.smarty */
gettext("Read the admin introduction.");

/* ./templates/ktcore/dashlets/admintutorial.smarty */
gettext("Find out what's new in <strong>KT 3</strong>.");

/* ./templates/ktcore/dashlets/admintutorial.smarty */
gettext("Don't show me this again.");

/* ./templates/ktcore/dashlets/checkedout.smarty */
gettext("Your Checked-out Documents");

/* ./templates/ktcore/dashlets/checkedout.smarty */
gettext("A checked-out document may not be modified by others. Please ensure that you check-in your documents to the repository as soon as you have finished working with them.");

/* ./templates/ktcore/dashlets/checkedout.smarty */
gettext("View Document");

/* ./templates/ktcore/dashlets/checkedout.smarty */
gettext("You have no documents which are currently checked out.");

/* ./templates/ktcore/dashlets/usertutorial.smarty */
gettext("Crash Course in KnowledgeTree");

/* ./templates/ktcore/dashlets/usertutorial.smarty */
gettext("New to Document Management, or to KnowledgeTree&trade; 3?  We've written some quick documentation to help you along");

/* ./templates/ktcore/dashlets/usertutorial.smarty */
gettext("Take the crash course.");

/* ./templates/ktcore/dashlets/usertutorial.smarty */
gettext("Learn about KnowledgeTree 3.");

/* ./templates/ktcore/dashlets/usertutorial.smarty */
gettext("Don't show me this again.");

/* ./templates/ktcore/dashlets/indexer_status.smarty */
gettext("Indexer Status");

/* ./templates/ktcore/dashlets/indexer_status.smarty */
gettext("Warning:");

/* ./templates/ktcore/dashlets/indexer_status.smarty */
gettext("There are currently no active indexers registered.  No content indexing will occur.");

/* ./templates/ktcore/dashlets/indexer_status.smarty */
gettext("All indexers claim to be working correctly.");

/* ./templates/ktcore/dashlets/indexer_status.smarty */
gettext("Mime Types");

/* ./templates/ktcore/dashlets/indexer_status.smarty */
gettext("Diagnostic");

/* ./templates/ktcore/dashlets/indexer_status.smarty */
gettext("No indicated problem.");

/* ./templates/ktcore/dashlets/kt3release.smarty */
gettext("Edit this introduction.");

/* ./templates/ktcore/dashlets/kt3release.smarty */
gettext("Edit this introduction.");

/* ./templates/ktcore/dashlets/kt3release.smarty */
gettext("Use the standard introduction.");

/* ./templates/ktcore/action/checkin.smarty */
gettext("Checking in a document updates the document and allows others to make changes to the document and its metadata.");

/* ./templates/ktcore/action/checkin.smarty */
gettext("If you do not intend to change the document, or you do not wish to prevent others from changing the document, you should rather use the action menu to <strong>cancel this checkout</strong>.");

/* ./templates/ktcore/action/checkin.smarty */
gettext("Checkin");

/* ./templates/ktcore/action/checkin.smarty */
gettext("Checkin");

/* ./templates/ktcore/action/checkout.smarty */
gettext("Checking out a document reserves it for your exclusive use.  This ensures that you can edit the document without anyone else changing the document and placing it into the document management system.");

/* ./templates/ktcore/action/checkout.smarty */
gettext("Checkout");

/* ./templates/ktcore/action/checkout.smarty */
gettext("Checkout");

/* ./templates/ktcore/action/checkout_final.smarty */
gettext("The document you wish to check out will begin to download soon.  If it does not automatically start to download, you can use <a href=\"#link#\">this link</a> to start it yourself.");

/* ./templates/ktcore/action/checkout_final.smarty */
gettext("Once the document has been downloaded, you should <a href=\"#link#\">return to the document view</a>.");

/* ./templates/ktcore/action/delete.smarty */
gettext("Deleting a document marks it as no longer being displayed.  The document management system does not remove the document entirely, and it can be restored at a later stage.");

/* ./templates/ktcore/action/delete.smarty */
gettext("If you do not intend to delete this document, you should <a href=\"#link#\">cancel the deletion</a>.");

/* ./templates/ktcore/action/delete.smarty */
gettext("Delete");

/* ./templates/ktcore/action/delete.smarty */
gettext("Delete");

/* ./templates/ktcore/action/move.smarty */
gettext("Moving a document relocates the document within the document repository.");

/* ./templates/ktcore/action/move.smarty */
gettext("If you do not intend to move this document, you should <a href=\"#link#\">cancel the move</a>.");

/* ./templates/ktcore/action/move.smarty */
gettext("Move");

/* ./templates/ktcore/action/move.smarty */
gettext("Target folder");

/* ./templates/ktcore/action/move.smarty */
gettext("The folder given below is where the document is going to be moved to.  Use the folder collection and path below to browse to the folder you wish to move the documents into.");

/* ./templates/ktcore/action/move.smarty */
gettext("Move");

/* ./templates/ktcore/action/move.smarty */
gettext("Cancel");

/* ./templates/ktcore/action/move_final.smarty */
gettext("Moving a document relocates the document within the document repository.");

/* ./templates/ktcore/action/move_final.smarty */
gettext("If you do not intend to move this document, you should <a href=\"#link#\">cancel the move</a>.");

/* ./templates/ktcore/action/move_final.smarty */
gettext("Move");

/* ./templates/ktcore/action/move_final.smarty */
gettext("Move");

/* ./templates/ktcore/action/move_final.smarty */
gettext("Cancel");

/* ./templates/ktcore/action/archive.smarty */
gettext("Archiving a document changes the document's state to invisible to non-administrative users. Only an Administrator may unarchive a document. Please note that this is a non-permanent change and does not delete the document from the repository.");

/* ./templates/ktcore/action/archive.smarty */
gettext("If you do not intend to archive this document, you should <a href=\"#link#\">cancel the archive</a>.");

/* ./templates/ktcore/action/archive.smarty */
gettext("Archive");

/* ./templates/ktcore/action/archive.smarty */
gettext("Archive");

/* ./templates/ktcore/action/archive.smarty */
gettext("Cancel");

/* ./templates/ktcore/action/addFolder.smarty */
gettext("Add a folder");

/* ./templates/ktcore/action/addFolder.smarty */
gettext("Folders are one way of organising documents in the document management system.  Folders provide meaning in the traditional file storage way - through a file path.");

/* ./templates/ktcore/action/addFolder.smarty */
gettext("If you do not intend to add a folder, you should <a href=\"#link#\">cancel this action</a>.");

/* ./templates/ktcore/action/addFolder.smarty */
gettext("Add folder");

/* ./templates/ktcore/action/addFolder.smarty */
gettext("Add folder");

/* ./templates/ktcore/action/rename.smarty */
gettext("Rename document");

/* ./templates/ktcore/action/rename.smarty */
gettext("This page allows you to rename the file name (not the document title) for a document.");

/* ./templates/ktcore/action/rename.smarty */
gettext("Rename");

/* ./templates/ktcore/action/rename.smarty */
gettext("Rename");

/* ./templates/ktcore/action/rename.smarty */
gettext("Cancel");

/* ./templates/ktcore/action/finalise_mass_move.smarty */
gettext("Move Files and Folders");

/* ./templates/ktcore/action/finalise_mass_move.smarty */
gettext("Move");

/* ./templates/ktcore/action/finalise_mass_move.smarty */
gettext("Items to move");

/* ./templates/ktcore/action/finalise_mass_move.smarty */
gettext("The items that you selected to move.");

/* ./templates/ktcore/action/finalise_mass_move.smarty */
gettext("Please give these final details.");

/* ./templates/ktcore/action/finalise_mass_move.smarty */
gettext("Move");

/* ./templates/ktcore/action/finalise_mass_move.smarty */
gettext("Cancel");

/* ./templates/ktcore/action/mass_move.smarty */
gettext("Move Files and Folders");

/* ./templates/ktcore/action/mass_move.smarty */
gettext("Move");

/* ./templates/ktcore/action/mass_move.smarty */
gettext("Items to move");

/* ./templates/ktcore/action/mass_move.smarty */
gettext("The items that you selected to move.");

/* ./templates/ktcore/action/mass_move.smarty */
gettext("Target folder");

/* ./templates/ktcore/action/mass_move.smarty */
gettext("Use the folder collection and path below to browse to the folder you wish to move the documents into.");

/* ./templates/ktcore/action/mass_move.smarty */
gettext("Move");

/* ./templates/ktcore/action/mass_move.smarty */
gettext("Cancel");

/* ./templates/ktcore/action/cancel_checkout.smarty */
gettext("Cancel Checkout");

/* ./templates/ktcore/action/cancel_checkout.smarty */
gettext("If you do not want to have this document be checked-out, please give a reason and cancel the checkout.");

/* ./templates/ktcore/action/cancel_checkout.smarty */
gettext("Checkin");

/* ./templates/ktcore/action/cancel_checkout.smarty */
gettext("Cancel Checkout");

/* ./templates/ktcore/action/copy.smarty */
gettext("Copy document");

/* ./templates/ktcore/action/copy.smarty */
gettext("Move");

/* ./templates/ktcore/action/copy.smarty */
gettext("Target folder");

/* ./templates/ktcore/action/copy.smarty */
gettext("The folder given below is where the document is going to be moved to.  Use the folder collection and path below to browse to the folder you wish to move the documents into.");

/* ./templates/ktcore/action/copy.smarty */
gettext("Move");

/* ./templates/ktcore/action/copy.smarty */
gettext("Cancel");

/* ./templates/ktcore/action/copy_final.smarty */
gettext("Copy document");

/* ./templates/ktcore/action/copy_final.smarty */
gettext("Copy");

/* ./templates/ktcore/action/copy_final.smarty */
gettext("Move");

/* ./templates/ktcore/action/copy_final.smarty */
gettext("Cancel");

/* ./templates/ktcore/action/view_roles.smarty */
gettext("View Roles");

/* ./templates/ktcore/action/view_roles.smarty */
gettext("In many cases, workflow actions will be assigned to certain <strong>roles</strong>     (e.g. Manager, Interviewer, Researcher, Journalist).  You can assign these roles     to specific groups in particular areas of the document management system.");

/* ./templates/ktcore/action/view_roles.smarty */
gettext("This page allows you to see the roles as they apply to this particular document.");

/* ./templates/ktcore/action/view_roles.smarty */
gettext("Role");

/* ./templates/ktcore/action/view_roles.smarty */
gettext("Allocated users and groups");

/* ./templates/ktcore/action/view_roles.smarty */
gettext("Users:");

/* ./templates/ktcore/action/view_roles.smarty */
gettext("Groups:");

/* ./templates/ktcore/action/view_roles.smarty */
gettext("No roles defined in the Role Administration area.");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Edit Fieldset");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Current Fields in Set");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Fields which are currently not included in any set can be added to this set.");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("No fields associated with this fieldset.");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Remove");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Add Field to set");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Fields which are currently not included in any set can be added to this set.");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("No free fields.");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Add to Fieldset");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Make this fieldset conditional");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("No free fields.");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Add to Fieldset");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Field has conditions attached to it.");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Manage conditions.");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Test conditions");

/* ./templates/ktcore/edit_conditional.smarty */
gettext("Fieldset cannot be made conditional. One of the fields must not be a lookup.");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("Edit Lookup Tree");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("Many \"lookup\" fields make sense in a hierachy: countries are part of continents and sub-continents, school classes are part of grades and programs, Powerbooks are Apple Macs, while Thinkpads are made by Lenovo.  This page will allow you to arrange the lookups in the field in a hierachy.  All changes are immediately stored, so when you are done simply navigate back to the field menu.");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("Add New Subcategory to <strong>#category#</strong>");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("In order to organise the options into a \"tree\", you   need to add subcategories at each level.  The \"top\" level is called the root, and   holds all the toplevel items.  \"Root\" will not be shown to the final user, but   provides a single \"parent\" to the toplevel items.");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("As an example, if you are creating a tree of the   countries in the world, the actual countries would be <strong>keywords</strong>   (e.g. South Africa, England, Pakistan, India).  The highest group of categories   would be continents &mdash; e.g. Africa, Europe, Asia, The Americas &mdash; followed by   subcategories that contain actual countries &mdash; e.g. Western Europe, Sub-saharan Africa,   Austalasia.");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("add new subcategory");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("Keywords which are directly below the   <strong>Root</strong> are considered \"free\" &mdash; they are not attached to   a subcategory.  Only free keywords can be associated with a subcategory.  To   free a keyword, click on the \"unlink\" command next to it in the preview tree below.   Deleting a subcategory will automatically unlink all keywords below it (including   those in subcategories of the subcategory).");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("No free keywords.  Use the \"unlink\" action on a keyword to make it available.");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("Attach keywords to <strong>#category#</strong>");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("Keywords which are directly below the   <strong>Root</strong> are considered \"free\" &mdash; they are not attached to   a subcategory.  Only free keywords can be associated with a subcategory.  To   free a keyword, click on the \"unlink\" command next to it in the preview tree below.");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("Add to category");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("Preview");

/* ./templates/ktcore/edit_lookuptrees.smarty */
gettext("Use the +/- arrows to open or close the tree.  Bold items are metadata keywords.     To edit a category (including adding or removing keywords) click on the \"attach keywords\" link next to it.");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Existing Fieldsets");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Human Name");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Namespace");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Manage");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Edit");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Delete");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Built-in set.");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Create a new Fieldset");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Name");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Namespace");

/* ./templates/ktcore/manage_fieldsets.smarty */
gettext("Create Fieldset");

/* ./templates/ktcore/boolean_search.smarty */
gettext("Boolean Search");

/* ./templates/ktcore/boolean_search.smarty */
gettext("all");

/* ./templates/ktcore/boolean_search.smarty */
gettext("any");

/* ./templates/ktcore/boolean_search.smarty */
gettext("Return items which match &nbsp;#options# of the <strong>criteria groups</strong> specified.");

/* ./templates/ktcore/boolean_search.smarty */
gettext("Criteria Group");

/* ./templates/ktcore/boolean_search.smarty */
gettext("all");

/* ./templates/ktcore/boolean_search.smarty */
gettext("any");

/* ./templates/ktcore/boolean_search.smarty */
gettext("Return items which match &nbsp;#options# of the criteria specified below.");

/* ./templates/ktcore/boolean_search.smarty */
gettext("Criteria");

/* ./templates/ktcore/boolean_search.smarty */
gettext("Values");

/* ./templates/ktcore/boolean_search.smarty */
gettext("first select a type of query");

/* ./templates/ktcore/boolean_search.smarty */
gettext("Add");

/* ./templates/ktcore/boolean_search.smarty */
gettext("Add another set of criteria");

/* ./templates/ktcore/boolean_search.smarty */
gettext("Search");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("Saved searches");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("Saved searches are searches which are particular to your location For example, you could define a search which returns all documents in a particular workflow state, or all documents which are considered \"common\" within your organisation (leave policy, newsletters, etc.) based on a category or fieldset value.");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("Create a new saved search");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("New");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("Existing Searches");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("Search Name");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("Edit");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("Delete");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("View Results");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("Edit");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("Delete");

/* ./templates/ktcore/search/administration/savedsearches.smarty */
gettext("No Saved Searches have been defined.");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("Dynamic Conditions");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("Dynamic Conditions give the administrator the cability to define what permissions are applied to document within a folder based on a set of rules. These rules may be applied to the document's metadata, contents, or transactional information. Dynamic Conditions are applied on a per folder basis and may be setup from the folder's permissions section.");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("Note that you cannot delete conditions since that may unexpectedly change permission assignments.");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("Create a new condition");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("New");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("Existing Conditions");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("Condition Name");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("Edit");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("View Results");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("Edit");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("Run Condition");

/* ./templates/ktcore/search/administration/conditions.smarty */
gettext("No Conditions have been defined.");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Folder permissions");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("No roles or groups have been defined.  Permissions can only be allocated to roles and groups.");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("This folder <strong>inherits</strong> its permissions from #permission_source#.");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Override Permissions");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("This folder defines its own permissions.");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Inherit permissions");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Role or Group");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Role:");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Allowed");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Denied");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Group:");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Allowed");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Denied");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Update Permission Assignments");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Cancel");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Edit Permission Assignments");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Edit Permission Assignments");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Dynamic permissions");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Remove");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Group");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Condition");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Delete");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Allowed");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Denied");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Add a new dynamic permission");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Group");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Condition");

/* ./templates/ktcore/folder/permissions.smarty */
gettext("Add");

/* ./templates/ktcore/folder/bulkImport.smarty */
gettext("Import from Server Location");

/* ./templates/ktcore/folder/bulkImport.smarty */
gettext("The bulk import facility allows for a number of documents to be added to the document management system easily. Provide a path on the <strong>server</strong>, and all documents and folders within that path will be added to the document management system.");

/* ./templates/ktcore/folder/bulkImport.smarty */
gettext("If you do not need to modify any the metadata for this document (see below), then you can simply click \"Add\" here to finish the process and add the document.");

/* ./templates/ktcore/folder/bulkImport.smarty */
gettext("Add");

/* ./templates/ktcore/folder/bulkImport.smarty */
gettext("Import");

/* ./templates/ktcore/folder/bulkUpload.smarty */
gettext("Bulk import");

/* ./templates/ktcore/folder/bulkUpload.smarty */
gettext("The bulk upload facility allows for a number of documents to be added to the document management system. Provide an archive (ZIP) file from your local computer, and all documents and folders within that archive will be added to the document management system.");

/* ./templates/ktcore/folder/bulkUpload.smarty */
gettext("If you do not need to modify any the metadata for this document (see below), then you can simply click \"Add\" here to finish the process and add the document.");

/* ./templates/ktcore/folder/bulkUpload.smarty */
gettext("Add");

/* ./templates/ktcore/folder/bulkUpload.smarty */
gettext("Upload");

/* ./templates/ktcore/folder/rename.smarty */
gettext("This page allows you to rename a folder.");

/* ./templates/ktcore/folder/rename.smarty */
gettext("Rename");

/* ./templates/ktcore/folder/rename.smarty */
gettext("Rename");

/* ./templates/ktcore/folder/rename.smarty */
gettext("Cancel");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Allocate Roles");

/* ./templates/ktcore/folder/roles.smarty */
gettext("In many cases, workflow actions will be assigned to certain <strong>roles</strong>     (e.g. Manager, Interviewer, Researcher, Journalist).  You can assign these roles     to specific groups in particular areas of the document management system.");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Warning:");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Please note that changing role allocations may take a some time, depending on the number of folders below this one.");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Role");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Allocated users");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Edit Users");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Edit Groups");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Use Parent");

/* ./templates/ktcore/folder/roles.smarty */
gettext("inherited from parent folder.");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Users:");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Groups:");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Override Parent Allocation");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Edit Users");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Edit Users");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Edit Groups");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Edit Groups");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Use parent's allocation");

/* ./templates/ktcore/folder/roles.smarty */
gettext("Use parent's allocation");

/* ./templates/ktcore/folder/roles.smarty */
gettext("No roles defined in the Role Administration area.");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("Allocate Groups to Role");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("Groups must be allocated to roles to ensure that the workflow transition this role is supposed to support can be acted upon by a user.");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("Allocate Groups to Role");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("Select the groups which should be part of this role.");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("Available Groups");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("Member groups");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("Filter");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("Filter");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("save changes");

/* ./templates/ktcore/folder/roles_managegroups.smarty */
gettext("Cancel");

/* ./templates/ktcore/folder/roles_manageusers.smarty */
gettext("Allocate User to Role");

/* ./templates/ktcore/folder/roles_manageusers.smarty */
gettext("Allocate User to Role");

/* ./templates/ktcore/folder/roles_manageusers.smarty */
gettext("Select the users which should be part of this role.");

/* ./templates/ktcore/folder/roles_manageusers.smarty */
gettext("Available Users");

/* ./templates/ktcore/folder/roles_manageusers.smarty */
gettext("Member users");

/* ./templates/ktcore/folder/roles_manageusers.smarty */
gettext("Filter");

/* ./templates/ktcore/folder/roles_manageusers.smarty */
gettext("Filter");

/* ./templates/ktcore/folder/roles_manageusers.smarty */
gettext("save changes");

/* ./templates/ktcore/folder/roles_manageusers.smarty */
gettext("Cancel");

/* ./templates/ktcore/folder/mass_delete.smarty */
gettext("Delete Files and Folders");

/* ./templates/ktcore/folder/mass_delete.smarty */
gettext("Specify Reason for Delete");

/* ./templates/ktcore/folder/mass_delete.smarty */
gettext("Please give a reason for deleting these files.  This will be recorded in the documents' \"Transaction History\"");

/* ./templates/ktcore/folder/mass_delete.smarty */
gettext("Items to delete");

/* ./templates/ktcore/folder/mass_delete.smarty */
gettext("The items that you selected to delete.");

/* ./templates/ktcore/folder/mass_delete.smarty */
gettext("Delete");

/* ./templates/ktcore/folder/mass_delete.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("User Management");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Add New Users");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("To allow users access to the DMS, you need to provide them with credentials through this section.  Even if you are using an external source of login information like <strong>LDAP</strong>, you will need to use this section to retrieve their information from the external source.");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Add a new user");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Add a new user");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Search for users");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Since there may be many users in the system, please select a group from the list below, or type a few letters from the person's username to begin. Alternatively, <a href=\"#link#\">view all users</a> (note that this may be very slow if you have many users).");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("search for users");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Name");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Username");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Delete");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Group Memberships");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Current Groups");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Delete");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("Manage Groups");

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("No results for your search.");

/* ./templates/ktcore/principals/adduser.smarty */
gettext("Add a user");

/* ./templates/ktcore/principals/adduser.smarty */
gettext("Please complete the form below to add a new user. Fields marked with a red square are required. By default, users are created using KnowledgeTree's builtin authentication provider. Should you wish to use an external authentication provider such as LDAP, please ensure that the provider's plugin is registered and enabled.");

/* ./templates/ktcore/principals/adduser.smarty */
gettext("Add a user from an authentication source");

/* ./templates/ktcore/principals/adduser.smarty */
gettext("Instead of manually creating the user within the document management system, the user can be found within an authentication source (such as an LDAP directory) that has already been configured.  This ensures that the user is correctly set up with limited intervention from the administrator, and that the user will not need to remember an additional password for the document management system.");

/* ./templates/ktcore/principals/adduser.smarty */
gettext("Add from source");

/* ./templates/ktcore/principals/adduser.smarty */
gettext("Alternatively, you can manually create a user within KnowledgeTree below.");

/* ./templates/ktcore/principals/adduser.smarty */
gettext("Create a new user");

/* ./templates/ktcore/principals/adduser.smarty */
gettext("create user");

/* ./templates/ktcore/principals/adduser.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/edituser.smarty */
gettext("Edit User Details");

/* ./templates/ktcore/principals/edituser.smarty */
gettext("Change User Details");

/* ./templates/ktcore/principals/edituser.smarty */
gettext("Please complete the form below to edit the user. Fields marked with a red square are required. By default, users are created using KnowledgeTree's builtin authentication provider. Should you wish to use an external authentication provider such as LDAP, please ensure that the provider's plugin is registered and enabled.");

/* ./templates/ktcore/principals/edituser.smarty */
gettext("save changes");

/* ./templates/ktcore/principals/edituser.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/edituser.smarty */
gettext("Authentication");

/* ./templates/ktcore/principals/edituser.smarty */
gettext("#name#'s authentication is handled by the <strong>#provider#</strong>.");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("Change #name#'s Groups");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("Users may be classed together as Groups and these groups may be used to set security privileges throughout the document management system.");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("Change #name#'s Groups");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("Select the groups which this user should belong to from the left-hand list and then click the <strong>right pointing arrows</strong>. Once you have added all the groups that you require, press <strong>save changes</strong>.");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("Available Groups");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("Assigned Groups");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("Filter");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("Filter");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("save changes");

/* ./templates/ktcore/principals/usergroups.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/editgroup.smarty */
gettext("Edit Group Details");

/* ./templates/ktcore/principals/editgroup.smarty */
gettext("Change the system's information about group <strong>#name#</strong>");

/* ./templates/ktcore/principals/editgroup.smarty */
gettext("Change Group Details");

/* ./templates/ktcore/principals/editgroup.smarty */
gettext("Users may be classed together as Groups and these groups may be used to set security privileges throughout the document management system.");

/* ./templates/ktcore/principals/editgroup.smarty */
gettext("save changes to group");

/* ./templates/ktcore/principals/editgroup.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("Add a new group");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("Users may be classed together as Groups and these groups may be used to set security privileges throughout the document management system.");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("Add a group from an authentication source");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("Instead of manually creating the group within the document management system, the group can be found within an authentication source (such as an LDAP directory) that has already been configured.  This ensures that the group is correctly set up with limited intervention from the administrator, and that the group's membership will be maintained as it is in the authentication source.");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("Add from source");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("Alternatively, you can manually create a user within KnowledgeTree below.");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("Specify group details");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("Please enter the Group's details below and then click <strong>create group</strong>. Fields marked with a red square are required.");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("create group");

/* ./templates/ktcore/principals/addgroup.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Group Administration");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Add New Group");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Groups allow you to assign permissions and roles to a number of different users at once.");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Add Group");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Add a new group");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Search for groups");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Since there may be many groups in the system, please type a few letters from the group's name to begin. Alternatively, <a href=\"#link#\">view all groups</a> (note that this action may take some time if you have many groups).");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("search for groups");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Group Name");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Unit Name");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Delete");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Manage Users");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Manage sub-groups");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Subgroups");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("not part of a unit");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Delete");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Manage Users");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("Manage sub-groups");

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("No results for your search.");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("Manage Sub-Groups in #name#");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("Groups may contain other groups, allowing for a convenient way to build tree's of users and efficiently assign security privileges.");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("Change Sub-Groups in #name#");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("Select the groups from the left-hand list that you would like to add to this group and then click the <strong>right pointing arrows</strong>. Once you have added all the groups that you require, press <strong>save changes</strong>. Only groups that are logically capable of being included in this group will be available to be added.");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("Available Groups");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("Assigned Groups");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("Filter");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("Filter");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("save changes");

/* ./templates/ktcore/principals/groups_managesubgroups.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("Manage Users in #name#");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("Users may be associated with Groups which are then used to grant these users security privileges.");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("Manage Users in #name#");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("Select the users which should be part of this group from the left-hand list and then click the <strong>right pointing arrows</strong>. Once you have added all the users that you require, press <strong>save changes</strong>.");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("Available Users");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("Member users");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("Filter");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("Filter");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("save changes");

/* ./templates/ktcore/principals/groups_manageusers.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Unit Administration");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("KnowledgeTree allows administrators the ability to create <strong>Units</strong> that model the organisation's business units. Units may have their own administrators and groups may be assigned to these units.");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Add New Unit");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Units allow you to delegate the administration of a portion of the DMS repository to a particular part of your organisation.  Unit administrators have additional rights within that portion of the document management system, and they can also adjust the membership of groups that belong to the unit.");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Add Unit");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Add a new unit");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Unit Name");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Delete");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Folder");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("Delete");

/* ./templates/ktcore/principals/orgadmin.smarty */
gettext("Orgnisation Administration");

/* ./templates/ktcore/principals/orgadmin.smarty */
gettext("Change organisation details");

/* ./templates/ktcore/principals/orgadmin.smarty */
gettext("update organisation information");

/* ./templates/ktcore/principals/orgadmin.smarty */
gettext("Organisation Name");

/* ./templates/ktcore/principals/orgadmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/orgadmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Role Administration");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Workflow actions may be assigned to certain roles within the DMS. User groups are allocated to roles on a per-directory basis and are inherited from the root folder of the DMS. Roles may for example include \"Document Creator\", \"Document Reviewer\", \"Document Publisher\".");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Add a Role");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("create new role");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Change a role's details");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("update role information");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Role Name");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Delete");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Edit");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("Delete");

/* ./templates/ktcore/principals/roleadmin.smarty */
gettext("There are currently no roles created within the system.");

/* ./templates/ktcore/principals/addunit.smarty */
gettext("Add a new unit");

/* ./templates/ktcore/principals/addunit.smarty */
gettext("Units allow you to delegate a portion of the document management system to a particular part of your organisation. Unit administrators have additional right within that portion of the document management system, and they can also adjust the membership of groups that belong to the unit.");

/* ./templates/ktcore/principals/addunit.smarty */
gettext("Specify unit details");

/* ./templates/ktcore/principals/addunit.smarty */
gettext("Please enter the Unit's details below and then click <strong>create unit</strong>. Fields marked with a red square are required.");

/* ./templates/ktcore/principals/addunit.smarty */
gettext("Next");

/* ./templates/ktcore/principals/addunit.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/password.smarty */
gettext("Password");

/* ./templates/ktcore/principals/password.smarty */
gettext("You may change your password by entering it in the fields below. Your system administrator may have defined certain rules (such as minimum password length) that your password must abide by.");

/* ./templates/ktcore/principals/password.smarty */
gettext("Your Details");

/* ./templates/ktcore/principals/password.smarty */
gettext("Change your password");

/* ./templates/ktcore/principals/preferences.smarty */
gettext("Preferences");

/* ./templates/ktcore/principals/preferences.smarty */
gettext("You may change details about yourself by editing the entries below. Once you have completed the form, click on <strong>Update your details</strong>.");

/* ./templates/ktcore/principals/preferences.smarty */
gettext("Your Details");

/* ./templates/ktcore/principals/preferences.smarty */
gettext("Update your details");

/* ./templates/ktcore/principals/preferences.smarty */
gettext("Change your password.");

/* ./templates/ktcore/principals/updatepassword.smarty */
gettext("Change User's Password");

/* ./templates/ktcore/principals/updatepassword.smarty */
gettext("Change User's Password");

/* ./templates/ktcore/principals/updatepassword.smarty */
gettext("Change the user's password. Password rules may have been defined that this new password must abide by.");

/* ./templates/ktcore/principals/updatepassword.smarty */
gettext("change password");

/* ./templates/ktcore/principals/updatepassword.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/editunit.smarty */
gettext("Edit Unit Details");

/* ./templates/ktcore/principals/editunit.smarty */
gettext("Change the system's information about unit <strong>#name#</strong>");

/* ./templates/ktcore/principals/editunit.smarty */
gettext("Change Unit Details");

/* ./templates/ktcore/principals/editunit.smarty */
gettext("Users may be classed together as Units and these units may be used to set security privileges throughout the document management system.");

/* ./templates/ktcore/principals/editunit.smarty */
gettext("save changes to unit");

/* ./templates/ktcore/principals/editunit.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/groups_sourceusers.smarty */
gettext("Manage Users in #name#");

/* ./templates/ktcore/principals/groups_sourceusers.smarty */
gettext("Users may be associated with Groups which are then used to grant these users security privileges.");

/* ./templates/ktcore/principals/groups_sourceusers.smarty */
gettext("Synchronise Users in #name#");

/* ./templates/ktcore/principals/groups_sourceusers.smarty */
gettext("This group is synchronised from 	an authentication source, and direct changes can not be made to 	the members of this group within the document management         system.  Select the button below to synchronise the group from         the authentication source.");

/* ./templates/ktcore/principals/groups_sourceusers.smarty */
gettext("synchronise");

/* ./templates/ktcore/principals/groups_sourceusers.smarty */
gettext("Current users");

/* ./templates/ktcore/principals/deleteunit.smarty */
gettext("Delete Unit");

/* ./templates/ktcore/principals/deleteunit.smarty */
gettext("Delete unit <strong>#name#</strong> from the system");

/* ./templates/ktcore/principals/deleteunit.smarty */
gettext("Delete Unit");

/* ./templates/ktcore/principals/deleteunit.smarty */
gettext("Delete unit");

/* ./templates/ktcore/principals/deleteunit.smarty */
gettext("Cancel");

/* ./templates/ktcore/principals/addunit2.smarty */
gettext("Add a new unit");

/* ./templates/ktcore/principals/addunit2.smarty */
gettext("Choose unit folder location");

/* ./templates/ktcore/principals/addunit2.smarty */
gettext("Please choose a location to place your unit folder.");

/* ./templates/ktcore/principals/addunit2.smarty */
gettext("Target folder");

/* ./templates/ktcore/principals/addunit2.smarty */
gettext("The folder given below is where the unit folder will be created.  Use the folder collection and path below to browse to the folder you wish to create the unit folder into.");

/* ./templates/ktcore/principals/addunit2.smarty */
gettext("The unit administrators have additional");

/* ./templates/ktcore/principals/addunit2.smarty */
gettext("create unit");

/* ./templates/ktcore/principals/addunit2.smarty */
gettext("A folder with this name already exists in this location.  Please select          another folder before creating the unit.");

/* ./templates/ktcore/principals/addunit2.smarty */
gettext("Cancel");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Document permissions");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("This page shows the permissions that apply to this specific document.  Where the folder view shows you information by role and group, this page shows the actual groups (and, if they are assigned directly to a role, the users) who have the different permissions. As a result, groups, users and roles with <strong>no</strong> permissions are not shown.");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("No roles or groups have been defined or have permissions.");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Role or Group");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Role:");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Allowed");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Denied");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Group:");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Allowed");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Denied");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("User:");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Allowed");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Denied");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Update Permission Assignments");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Dynamic permissions");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Remove");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Group");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Condition");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Delete");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Allowed");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Denied");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Add a new dynamic permission");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Group");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Condition");

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Add");

/* ./templates/ktcore/document/cleanup.smarty */
gettext("Would remove these folders (and all their contents)");

/* ./templates/ktcore/document/cleanup.smarty */
gettext("Would remove these files");

/* ./templates/ktcore/document/cleanup.smarty */
gettext("These folders are not on the filesystem");

/* ./templates/ktcore/document/cleanup.smarty */
gettext("These documents are not on the filesystem");

/* ./templates/ktcore/document/cleanup.smarty */
gettext("These documents have versions not on the filesystem");

/* ./templates/ktcore/document/add.smarty */
gettext("Add a document");

/* ./templates/ktcore/document/add.smarty */
gettext("Add a document");

/* ./templates/ktcore/document/add.smarty */
gettext("If you do not need to modify any the metadata for this document (see below), then you can simply click \"Add\" here to finish the process and add the document.");

/* ./templates/ktcore/document/add.smarty */
gettext("Add");

/* ./templates/ktcore/document/add.smarty */
gettext("Additional Information about this Document");

/* ./templates/ktcore/document/add.smarty */
gettext("Document Metadata allows you to provide additional, important information about this document that can be used to classify and report on its contents.  The exact information required depends on the <strong>Document Type</strong> you selected above.  Some of this information may be <strong>required</strong>, so please review the list of requested information carefully before finishing the process.");

/* ./templates/ktcore/document/add.smarty */
gettext("Add");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("Checked Out Documents");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("It may be necessary to override the <strong>checked-out</strong> status of a document if");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("the local copy of the checked-out document has been lost");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("the user who did the check-out is not currently available to check it back in");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("Use the <strong>force checkin</strong> action in the listing below to override the checked-out status.");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("Document");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("Checked out by");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("Location");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("force checkin");

/* ./templates/ktcore/document/admin/checkoutlisting.smarty */
gettext("No documents are currently checked out.");

/* ./templates/ktcore/document/admin/force_checkin_confirm.smarty */
gettext("Confirm Forced Check-in");

/* ./templates/ktcore/document/admin/force_checkin_confirm.smarty */
gettext("Please confirm that this is the document that you wish to check-in.");

/* ./templates/ktcore/document/admin/force_checkin_confirm.smarty */
gettext("Document Details");

/* ./templates/ktcore/document/admin/force_checkin_confirm.smarty */
gettext("Document Name");

/* ./templates/ktcore/document/admin/force_checkin_confirm.smarty */
gettext("Location");

/* ./templates/ktcore/document/admin/force_checkin_confirm.smarty */
gettext("Checked out by");

/* ./templates/ktcore/document/admin/force_checkin_confirm.smarty */
gettext("The user who checked this document out is no longer valid.");

/* ./templates/ktcore/document/admin/force_checkin_confirm.smarty */
gettext("Force Checkin");

/* ./templates/ktcore/document/admin/force_checkin_confirm.smarty */
gettext("Cancel");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Document Link Type Management");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Within KnowledgeTree it is possible for users to create links between related documents. Link types may include constructs such as \"associated with\" and \"duplicated by\". Please create link types required by your organisation below.");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Add a link type");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Specify the details for a new link type below.");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Add Link Type");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Edit a link type");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Specify the details for the link type below.");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Change Link Type");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Manage Existing Link Types");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("From this panel you can edit or delete existing link types.");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Note");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("deleting a link type will delete <strong>all</strong> links of that type within the system.");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Name");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Description");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Edit");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("Delete");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("edit link type");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("edit link type");

/* ./templates/ktcore/document/admin/linktypesadmin.smarty */
gettext("No link administrator changeable link types available.");

/* ./templates/ktcore/document/admin/dearchiveconfirmlist.smarty */
gettext("Confirm De-archival");

/* ./templates/ktcore/document/admin/dearchiveconfirmlist.smarty */
gettext("Note");

/* ./templates/ktcore/document/admin/dearchiveconfirmlist.smarty */
gettext("please confirm that you want to restore these documents from an archived state.");

/* ./templates/ktcore/document/admin/dearchiveconfirmlist.smarty */
gettext("Document Name");

/* ./templates/ktcore/document/admin/dearchiveconfirmlist.smarty */
gettext("Location");

/* ./templates/ktcore/document/admin/dearchiveconfirmlist.smarty */
gettext("Confirm De-archival");

/* ./templates/ktcore/document/admin/dearchiveconfirmlist.smarty */
gettext("No documents were selected.");

/* ./templates/ktcore/document/admin/deletedlist.smarty */
gettext("Deleted Documents");

/* ./templates/ktcore/document/admin/deletedlist.smarty */
gettext("Documents which are deleted by users are hidden from view but still available for restoration.  Since \"soft deletes\" consume system resources, it is possible to <strong>expunge</strong> these documents.  Alternatively, you can <strong>restore</strong> them as necessary.");

/* ./templates/ktcore/document/admin/deletedlist.smarty */
gettext("Document Name");

/* ./templates/ktcore/document/admin/deletedlist.smarty */
gettext("Last Modification");

/* ./templates/ktcore/document/admin/deletedlist.smarty */
gettext("Expunge");

/* ./templates/ktcore/document/admin/deletedlist.smarty */
gettext("Restore");

/* ./templates/ktcore/document/admin/deletedlist.smarty */
gettext("No documents are marked as deleted.");

/* ./templates/ktcore/document/admin/expungeconfirmlist.smarty */
gettext("Confirm Expunge");

/* ./templates/ktcore/document/admin/expungeconfirmlist.smarty */
gettext("Note");

/* ./templates/ktcore/document/admin/expungeconfirmlist.smarty */
gettext("please confirm that you want to delete these documents.");

/* ./templates/ktcore/document/admin/expungeconfirmlist.smarty */
gettext("Document Name");

/* ./templates/ktcore/document/admin/expungeconfirmlist.smarty */
gettext("Confirm Expunge");

/* ./templates/ktcore/document/admin/expungeconfirmlist.smarty */
gettext("No documents were selected.");

/* ./templates/ktcore/document/admin/restoreconfirmlist.smarty */
gettext("Confirm Restore");

/* ./templates/ktcore/document/admin/restoreconfirmlist.smarty */
gettext("Note");

/* ./templates/ktcore/document/admin/restoreconfirmlist.smarty */
gettext("please confirm that you want to restore these documents.");

/* ./templates/ktcore/document/admin/restoreconfirmlist.smarty */
gettext("Document Name");

/* ./templates/ktcore/document/admin/restoreconfirmlist.smarty */
gettext("Confirm Restore");

/* ./templates/ktcore/document/admin/restoreconfirmlist.smarty */
gettext("No documents were selected.");

/* ./templates/ktcore/document/admin/archivebrowse.smarty */
gettext("Archived Documents");

/* ./templates/ktcore/document/admin/archivebrowse.smarty */
gettext("In order to keep the documents which are visible useful to end users it is possible to <strong>archive</strong> old documents.  Users who want to see these old documents need to request their restoration. These requests will typically be done within the system and will generate a notification to you.");

/* ./templates/ktcore/document/admin/archivebrowse.smarty */
gettext("Use the folder collection and path below to browse to the folder you wish to move the documents into.");

/* ./templates/ktcore/document/admin/archivebrowse.smarty */
gettext("Restore");

/* ./templates/ktcore/document/change_type.smarty */
gettext("Change Document Type");

/* ./templates/ktcore/document/change_type.smarty */
gettext("This document is currently of type #doctype#.  If this is incorrect, you can change it here.");

/* ./templates/ktcore/document/change_type.smarty */
gettext("Change Document Type");

/* ./templates/ktcore/document/comparison_version_select.smarty */
gettext("Select Document Version to compare against");

/* ./templates/ktcore/document/comparison_version_select.smarty */
gettext("This page lists versions of document metadata and allows you to compare a metadata version with the current metadata content.");

/* ./templates/ktcore/document/comparison_version_select.smarty */
gettext("Document History for KnowledgeTree New UI Presentation");

/* ./templates/ktcore/document/comparison_version_select.smarty */
gettext("User");

/* ./templates/ktcore/document/comparison_version_select.smarty */
gettext("Metadata Version");

/* ./templates/ktcore/document/comparison_version_select.smarty */
gettext("Compare");

/* ./templates/ktcore/document/comparison_version_select.smarty */
gettext("comparing against this version");

/* ./templates/ktcore/document/comparison_version_select.smarty */
gettext("compare");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("Document Types");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("Create a new document type");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("To start the process of creating a new document type, please enter a name for the type below.");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("Create");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("Existing document types");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("Select a document type from the list below to change its details, or click on the delete button to remove it from the system.");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("Document Type");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("Edit");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("Enable");

/* ./templates/ktcore/documenttypes/list.smarty */
gettext("Disable");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Document Type");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Change");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Type-specific field sets");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Linked Fieldsets");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Fieldset");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Disassociate Fieldsets");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("No fieldsets are currently associated with this type.");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Associate Fieldsets");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Associate Fieldsets");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("No fieldsets are available to be added.  To add a fieldset, please go to DMS Administration");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Document Metadata and Workflow Configuration");

/* ./templates/ktcore/documenttypes/edit.smarty */
gettext("Document Field Management");

/* ./templates/ktcore/documenttypes/folderassign.smarty */
gettext("Document types");

/* ./templates/ktcore/documenttypes/folderassign.smarty */
gettext("Select document types allowed in folder");

/* ./templates/ktcore/documenttypes/folderassign.smarty */
gettext("Folder");

/* ./templates/ktcore/documenttypes/folderassign.smarty */
gettext("Restrict document types");

/* ./templates/ktcore/documenttypes/folderassign.smarty */
gettext("Document Types");

/* ./templates/ktcore/documenttypes/folderassign.smarty */
gettext("Assign");

/* ./templates/ktcore/documenttypes/folderassign.smarty */
gettext("Back to folder");

/* ./templates/ktcore/manage_lookuptrees.smarty */
gettext("Manage Lookup Trees");

/* ./templates/ktcore/manage_lookuptrees.smarty */
gettext("Fields that have lookup categories.");

/* ./templates/ktcore/manage_lookuptrees.smarty */
gettext("Edit Categorisation");

/* ./templates/ktcore/manage_lookuptrees.smarty */
gettext("Convert to Trees.");

/* ./templates/ktcore/manage_lookuptrees.smarty */
gettext("Lookup fields without categories.");

/* ./templates/ktcore/manage_lookuptrees.smarty */
gettext("Convert");

/* ./templates/ktcore/login.smarty */
gettext("Login");

/* ./templates/ktcore/login.smarty */
gettext("Please enter your details below to login.");

/* ./templates/ktcore/login.smarty */
gettext("Username");

/* ./templates/ktcore/login.smarty */
gettext("Password");

/* ./templates/ktcore/login.smarty */
gettext("Language");

/* ./templates/ktcore/login.smarty */
gettext("login");

/* ./templates/ktcore/login.smarty */
gettext("KnowledgeTree Version");

/* ./templates/ktcore/widget_fieldset_conditional.smarty */
gettext("Undo change");

/* ./templates/ktcore/widget_fieldset_conditional.smarty */
gettext("Project Details");

/* ./templates/ktcore/widget_fieldset_conditional.smarty */
gettext("Please be aware that - depending on your selections - new values may become available.");

/* ./templates/ktcore/widget_fieldset_conditional.smarty */
gettext("save");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("Boolean Search");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("all");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("any");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("Return items which match &nbsp;#options# of the <strong>criteria groups</strong> specified.");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("Criteria Group");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("all");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("any");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("Return items which match &nbsp;#options# of the criteria specified.");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("Criteria");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("Values");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("first select a type of query");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("Add");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("add another set of criteria");

/* ./templates/ktcore/boolean_search_edit.smarty */
gettext("Search");

/* ./templates/ktcore/help_with_edit.smarty */
gettext("No content specified for this help file yet. <strong>Edit it first.</strong>");

/* ./templates/ktcore/help_with_edit.smarty */
gettext("Edit this help page.");

/* ./templates/ktcore/help_with_edit.smarty */
gettext("Edit this help page.");

/* ./templates/ktcore/help_with_edit.smarty */
gettext("Return to where you came from.");

/* ./templates/ktcore/help_with_edit.smarty */
gettext("Return to where you came from.");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Fieldset");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Fieldset properties");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Name");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Namespace");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Change");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Fieldset members");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Existing members");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Remove fields");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Add a new field");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Name");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Type");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Normal");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Lookup");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Tree");

/* ./templates/ktcore/metadata/edit.smarty */
gettext("Add field");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Fieldset");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Incomplete");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("This conditional fieldset cannot be used");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Fieldset properties");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Please complete the following fields to edit the fieldset's properties and then click <strong>Change</strong>. Required fields are marked with a red square.");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Conditional");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("A <strong>conditional</strong> fieldset contains only lookup fields.  The values for each field can depend on the user's selections for the others.");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Yes");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("No");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Change");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Conditionality");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("A <strong>conditional</strong> fieldset contains only lookup fields.  The values for each field can depend on the user's selections for the others.");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Manage conditional");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Remove conditional");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Become conditional");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("This fieldset cannot be made conditional, since it contains fields which are not lookup types.");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Fieldset members");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("A fieldset is a collection of fields that comprise a defined set of document metadata. You may add, edit or delete members of this fieldset collection below.");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Existing members");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("edit");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Remove fields");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Add a new field");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("To add a new field, enter the field's name, description and field type below and then click <strong>Add field</strong>. If the field type requires additional lookup values you will be prompted to enter them.");

/* ./templates/ktcore/metadata/editFieldset.smarty */
gettext("Add field");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Document Fieldsets");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Collections of fields are associated into fieldsets.  These represent a set of related information which can be associated with a document and thus comprise part of the document's metadata.");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Existing document fieldsets");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Name");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Is Generic");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Is System");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Fields");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Edit");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Delete");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Yes");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("No");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Yes");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("No");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Edit");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Delete");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Create a new document fieldset");

/* ./templates/ktcore/metadata/listFieldsets.smarty */
gettext("Create");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Edit Field");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Lookup fields may have be composed of an arbitrary number of values. These values may be added to the Lookup field by entering them in below. If these values are being generated by, or synchronised to, an external datasource, toggling the <strong>Sticky</strong> attribute of a value will ensure that it will not be modified by changes in the external datasource list.");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Field properties");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Name");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Description");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Type");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Change");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Lookup Values");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Add new values");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Add");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Manage lookup tree");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Existing values");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("stuck, will never be disabled when synchronising from another source");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Disable");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Toggle stickiness");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Remove");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Disabled values");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("stuck, will never be enabled when synchronising from another source");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Enable");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Toggle stickiness");

/* ./templates/ktcore/metadata/editField.smarty */
gettext("Remove");

/* ./templates/ktcore/metadata/conditional/select_fieldset.smarty */
gettext("Select Fieldset");

/* ./templates/ktcore/metadata/conditional/select_fieldset.smarty */
gettext("Current Conditional Fieldsets");

/* ./templates/ktcore/metadata/conditional/select_fieldset.smarty */
gettext("Fieldsets that are marked as conditional.");

/* ./templates/ktcore/metadata/conditional/select_fieldset.smarty */
gettext("Edit");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Manage conditional fieldset");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Conditional fieldsets allow you to restrict the options a user has for values in some fields based on the values in other fields.  There are two kinds of conditional fieldsets:  <strong>Simple</strong> and <strong>Complex</strong> .  Simple fieldsets should be sufficient for most things:  they allow you to say that the values of one field are restricted to a certain subset of values if another field has a specific value.  For example, you could say that if the field \"Street\" is \"Jeffrey\", then the field \"Residents\" must be one of \"Jones\",\"Smith\" or \"Friedman\".");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Complex fieldsets allow you to give far more detailed structure to your information:  The value of \"Residents\" can depend not only on \"Street\", but on how the user was allowed to select the specific street (given another field).");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("This conditional fieldset is marked such that it cannot be used.  This happens when the fieldset has been edited and has not been set to complete.  Setting the fieldset to complete will do a check to see if the fieldset is usable by the user.");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("This error prevents this fieldset from being set to complete");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Try to set to complete");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Check completeness");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Conditional type");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("The fieldset is currently designated as <strong>Complex</strong>");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Manage complex conditional");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Change to simple");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("The fieldset is currently designated as <strong>Simple</strong>");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Manage simple conditional");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Change to complex");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Changing the conditional type set will remove all existing field ordering!");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Master field");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("No master field is set, please select the master field");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Set master field");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Master field");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("In order to have a chain of conditions, one initial field must be shown to the user.  This is called the <strong>master field</strong>.");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Changing the master field set will remove all existing field ordering!");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Change master field");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Field ordering");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Existing ordering");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("controls the values available in");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Order Fields");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("The value of the field");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("controls the values of the following fields");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Order");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Edit Complex Conditional Metadata");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Complex Conditional Metadata depends on what are called \"behaviours\".  Essentially, behaviours are assigned to a <strong>single</strong> field, and can contain any number of values that are available in that field.  Each field can have multiple behaviours assigned to it.");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Each behaviour can cause a number of other behaviours &mdash; in the field's <strong>child</strong> fields &mdash; to become available.  By assigning values to behaviours, and creating relationships between behaviours, you can create extremely complex relationships between available lookup values.");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("This column is not active.");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Editing behaviour <strong>Jack</strong>");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Assigned Items");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("remove behaviour");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("No items have been assigned with the current 		 parent behaviour.");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Unassigned/Unavailable");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Assign to behaviour");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Select a behaviour");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("<strong>or</strong> to a new behaviour called");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("create behaviour");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Edit Behaviour");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Select a behaviour from this list to change the         items which are available.");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Select a behaviour");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("Editing Fieldset Rules (Simple)");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("To make a value in a <strong>child field</strong> available to the user when another value is selected in a <strong>parent field</strong>, first ensure that the parent field is being edited (it will have \"save\" and \"done\" as the buttons at the bottom of the column) and then select the value for the parent field.  Now select the value(s) in the child column(s) you wish to be available to the user when the parent field's value is selected, and click \"save\".  Note you that you can use Ctrl-&lt;click&gt; to select multiple child values at the same time.");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("Changes made here are stored immediately, without you needing to refresh the page.");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("This field is not controlled by the currently active group.");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("edit field");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("save this dependency");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("finished with this field");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Fieldset");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Fieldset properties");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Name");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Namespace");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Change");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Fieldset members");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Existing members");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Remove fields");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Add a new field");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Name");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Type");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Normal");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Lookup");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Tree");

/* ./templates/ktcore/fields/edit.smarty */
gettext("Add field");

/* ./templates/ktcore/fields/list.smarty */
gettext("Document Fields");

/* ./templates/ktcore/fields/list.smarty */
gettext("Existing generic document fields");

/* ./templates/ktcore/fields/list.smarty */
gettext("Name");

/* ./templates/ktcore/fields/list.smarty */
gettext("Generic");

/* ./templates/ktcore/fields/list.smarty */
gettext("Fields");

/* ./templates/ktcore/fields/list.smarty */
gettext("Delete");

/* ./templates/ktcore/fields/list.smarty */
gettext("Yes");

/* ./templates/ktcore/fields/list.smarty */
gettext("No");

/* ./templates/ktcore/fields/list.smarty */
gettext("Create a new document field set");

/* ./templates/ktcore/fields/list.smarty */
gettext("Create");

/* ./templates/ktcore/support.smarty */
gettext("Support and System Information");

/* ./templates/ktcore/support.smarty */
gettext("KnowledgeTree Issue Tracker");

/* ./templates/ktcore/support.smarty */
gettext("Visit the #tracker#");

/* ./templates/ktcore/support.smarty */
gettext("first if you believe you have found a bug.  Always check for known issues relating to the version you are using &mdash; we may already have found the problem you're referring to, and may have fixed it in a newer version.  If we ask for your PHP_INFO data, we're looking for the information described below.");

/* ./templates/ktcore/support.smarty */
gettext("If you feel that the information presents to much specific information about your system (e.g. you feel that it would be a security risk to reveal aspects of it),  please do sanitise the information, or ask us if you can mail it directly to the developer who is dealing with your issue.");

/* ./templates/ktcore/support.smarty */
gettext("Download PHP information");

/* ./templates/ktcore/support.smarty */
gettext("Download PHP information");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Finish with this column's behaviours.");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Assuming this field has behaviour \"");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Dependencies saved. (at");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Dependencies for value \"");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Now editing field \"");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Loading Dependencies for value \"");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Undo");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Undo");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Remove");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("first select a type of query");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Add");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Criteria Group");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Criteria");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Values");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("Return items which match");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("all");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("any");

/* ./templates/ktcore/javascript_i18n.smarty */
gettext("of the criteria specified.");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Workflow Overview");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Edit workflow properties");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Update workflow properties");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("This page allows you to get a quick overview of the workflow.  To modify items, either select them from the overview below, or use the \"Workflow\" menu on the left to create new ones.");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("This workflow does not define any states.");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("State");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Delete");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Notified groups & roles:");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Controlled Actions available:");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Permissions overridden:");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Transitions available:");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Transitions to this state:");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Workflows");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Workflow is a description of a document's lifecycle.  It is made up of workflow states, which describe where in the lifecycle the document is, and workflow transitions, which describe the next steps within the lifecycle of the document.");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Create a new workflow");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Create");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Existing workflows");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Select a workflow to modify. To enable a disabled workflow, edit it and set a proper starting state.");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Name");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Status");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Edit");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Disabled");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Enabled");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Edit");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Disable");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("State");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("As documents move through their lifecycle, they are placed in certain <strong>states</strong>.  For example, an invoice which has been mailed might be in the \"Pending\" <strong>state</strong> after the \"sent\" <strong>transition</strong> has been performed by a user.");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Edit state properties");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Save");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Inform Which Users?");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Please select which roles or groups should be informed when this state is reached.");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Roles");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Groups");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("No groups or roles are defined in the DMS.");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Update users to inform");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Assigned Permissions");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("While in this workflow state, additional permissions may be given.  This is done either to expose the document to more users or to allow a particular role to be fulfilled before a workflow transition can be accomplished.");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Transitions");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Transitions are how documents move from one state to another.  Typically, most transitions can only be performed by people with a specific <strong>role</strong> (e.g. Manager) or part of a specific group (e.g. Marketing Department).");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Transitions to this state");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("No transitions lead to this state.");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Transitions from this state");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Save");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("No transitions have been defined for this workflow.");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Actions allowed");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Set allowed actions");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("No actions are controlled by this workflow, so all actions are available when documents are in this state.");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Controlled Permissions");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Set controlled permissions");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Role or Group");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Role:");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Group:");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Update Allocated Permissions");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("No permissions have been created within KnowledgeTree.");

/* ./templates/ktcore/workflow/editTransition.smarty */
gettext("Transition");

/* ./templates/ktcore/workflow/editTransition.smarty */
gettext("Edit transition properties");

/* ./templates/ktcore/workflow/editTransition.smarty */
gettext("Select the target state of the transition, and select the permission, group, and/or role necessary to perform the transition.  Selecting more than one of permission, group, or role will require that the user wishing to perform the transition fulfil every requirement.");

/* ./templates/ktcore/workflow/editTransition.smarty */
gettext("Save");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("Document Workflow");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("Workflow is a description of a document's lifecycle.  It is made up of workflow states, which describe where in the lifecycle the document is, and workflow transitions, which describe the next steps within the lifecycle of the document.");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("No workflow");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("Document has no assigned workflow.");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("Start workflow on document");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("Start Workflow");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("No defined workflows");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("There are no defined workflows which can be started on this document.  An administrator can create workflows to map the lifecycle of a document.  Contact your administrator to discuss workflows.");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("Current workflow settings");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("Workflow");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("State");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("Transition to another workflow state");

/* ./templates/ktcore/workflow/documentWorkflow.smarty */
gettext("Perform Transition");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("New State");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("As documents move through their lifecycle, they are placed in certain <strong>states</strong>.  For example, an invoice which has been mailed might be in the \"Pending\" <strong>state</strong> after the \"sent\" <strong>transition</strong> has been performed by a user.");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("Create a new state");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("Please note that additional configuration is possible on states beyond what is specified here (e.g. which users to notify about the document, etc).  Please edit the state to access and modify these other properties.");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("Informed Users");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("Please select which roles or groups should be informed when this state is reached.");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("Roles");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("Groups");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("Actions Allowed");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("Workflows can control which actions (edit metadata, download, etc.) are available on a given document.  Please specify which of the actions controlled by this workflow are available when the document is in this state.");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("No actions are controlled by this workflow.");

/* ./templates/ktcore/workflow/createState.smarty */
gettext("Create state");

/* ./templates/ktcore/workflow/createTransition.smarty */
gettext("Manage Transitions");

/* ./templates/ktcore/workflow/createTransition.smarty */
gettext("Transitions are what drive the workflow of documents. Each step that needs to be followed in the document's lifecycle could map to a transition, and can be allowed or denied by a combination of roles, permissions and groups.");

/* ./templates/ktcore/workflow/createTransition.smarty */
gettext("Use the form below to create a new Transition, and assign or edit existing transitions using the table below.");

/* ./templates/ktcore/workflow/createTransition.smarty */
gettext("Create a new transition");

/* ./templates/ktcore/workflow/createTransition.smarty */
gettext("Source States");

/* ./templates/ktcore/workflow/createTransition.smarty */
gettext("Please select which states this transition should be available from.  <strong>Note</strong> that transitions are never available from their target state, even if you specify it below.");

/* ./templates/ktcore/workflow/createTransition.smarty */
gettext("Create transition");

/* ./templates/ktcore/workflow/manageActions.smarty */
gettext("Manage Actions");

/* ./templates/ktcore/workflow/manageActions.smarty */
gettext("An important part of workflow is controlling which actions are available to users at various stages.  For example, it may be necessary to prevent the \"Edit Metadata\" action from being used when a document is \"published\". Doing this is a two step process:  first, you need to specify that \"Edit Metadata\" is an action you wish to control within this workflow; second, you need to specify that the action is <strong>not</strong> to be made available when documents are in the \"published\" state.");

/* ./templates/ktcore/workflow/manageActions.smarty */
gettext("Specify Controlled Actions");

/* ./templates/ktcore/workflow/manageActions.smarty */
gettext("Select the actions you want this workflow to control from the list below.  Actions you do not specify will be available no matter what the state of the document.");

/* ./templates/ktcore/workflow/manageActions.smarty */
gettext("Set controlled actions");

/* ./templates/ktcore/workflow/manageActions.smarty */
gettext("Assign Actions to States");

/* ./templates/ktcore/workflow/manageActions.smarty */
gettext("The table below lists the actions you have specified as controlled by this workflow, and all the states within the workflow.  From here you can assign those actions to the various states in this workflow.  Checked items are available to users whose permissions would normally allow them when the document is in that state.  Unchecked items are not available to any users.");

/* ./templates/ktcore/workflow/manageActions.smarty */
gettext("No actions are controlled by this workflow.  All actions will be available at all states.");

/* ./templates/ktcore/workflow/manageActions.smarty */
gettext("Update Action Availability");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("Manage States");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("As documents move through their lifecycle, they are placed in certain <strong>states</strong>.  For example, an invoice which has been mailed might be in the \"Pending\" <strong>state</strong> after the \"sent\" <strong>transition</strong> has been performed by a user.");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("<strong>Please Note:</strong> you can only delete states or transitions while the workflow has no documents or document-versions assigned to the workflow.");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("Create a new state");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("A critical part of workflow is the creation of various different states for documents.");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("Create a new state");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("This workflow does not define any states.");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("State");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("Delete");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("Notified groups & roles:");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("Controlled Actions available:");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("Permissions overridden:");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("Transitions available:");

/* ./templates/ktcore/workflow/manageStates.smarty */
gettext("Transitions to this state:");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("Manage Transitions");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("Transitions are what drive the workflow of documents. Each step that needs to be followed in the document's lifecycle could map to a transition, and can be allowed or denied by a combination of roles, permissions and groups.");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("<strong>Please Note:</strong> you can only delete states or transitions while the workflow has no documents or document-versions assigned to the workflow.");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("Create a new transition");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("Create a new transition");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("Create a new transition");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("This workflow does not define any transitions.  Use the \"Create a new transition\" link above to add new transitions.");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("Transition Availability");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("Click on any transition below to edit it directly, or use the checkboxes to assign which states the transition is available from.");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("Delete");

/* ./templates/ktcore/workflow/manageTransitions.smarty */
gettext("Assign Transition Availability");

/* ./templates/ktcore/workflow/workflow_notification.smarty */
gettext("The document <strong>#name#</strong> has changed to     state <strong>#state#</strong>, and you are specified as one of the users to inform     about documents in this state.");

/* ./templates/ktcore/workflow/workflow_notification.smarty */
gettext("View Document");

/* ./templates/ktcore/workflow/workflow_notification.smarty */
gettext("Document is no longer available");

/* ./templates/ktcore/workflow/workflow_notification.smarty */
gettext("Clear Alert");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Authentication Sources");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("By default, KnowledgeTree controls its own users and groups and stores all information about them inside the database. In many situations, an organisation will already have a list of users and groups, and needs to use that existing information to allow access to the DMS. These <strong>Authentication Sources</strong> allow the system administrator to specify additional sources of authentication data.");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Add authentication source");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Add a new authentication source");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Only the standard database authentication is currently available. If you need to use a different authentication type (e.g. LDAP) you will need to ensure that the Plugin is enabled.");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("No additional authentication sources have been defined.");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Authentication source");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Edit");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Edit Provider Information");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Delete");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Edit");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Edit");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Delete");

/* ./templates/ktcore/authentication/viewsource.smarty */
gettext("Standard configuration");

/* ./templates/ktcore/authentication/viewsource.smarty */
gettext("Name");

/* ./templates/ktcore/authentication/viewsource.smarty */
gettext("Provider");

/* ./templates/ktcore/authentication/viewsource.smarty */
gettext("Edit standard configuration");

/* ./templates/ktcore/authentication/viewsource.smarty */
gettext("Provider configuration");

/* ./templates/ktcore/authentication/viewsource.smarty */
gettext("Edit provider configuration");

/* ./templates/ktcore/authentication/editsource.smarty */
gettext("Authentication Sources");

/* ./templates/ktcore/authentication/editsource.smarty */
gettext("Edit an authentication source");

/* ./templates/ktcore/authentication/editsource.smarty */
gettext("Save");

/* ./templates/ktcore/authentication/addsource.smarty */
gettext("Add an authentication source");

/* ./templates/ktcore/authentication/addsource.smarty */
gettext("Add a new source");

/* ./templates/kt3/document/edit.smarty */
gettext("Editing");

/* ./templates/kt3/document/edit.smarty */
gettext("Change the <strong><a href=\"#link#\">document type</a></strong>");

/* ./templates/kt3/document/edit.smarty */
gettext("The following document metadata is available for editing.");

/* ./templates/kt3/document/edit.smarty */
gettext("Save Changes");

/* ./templates/kt3/document/edit.smarty */
gettext("Cancel");

/* ./templates/kt3/document/view.smarty */
gettext("showing information for <strong>version #version#</strong>");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("Version History");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("This page lists versions of document metadata and allows you to compare a metadata version with the current metadata content.");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("Document History for KnowledgeTree New UI Presentation");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("User");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("Metadata Version");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("Content Version");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("Compare with Current");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("Compare with Other Version");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("current version");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("compare with current");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("compare with other version");

/* ./templates/kt3/admin_items.smarty */
gettext("No items in the category.");

/* ./templates/kt3/browse.smarty */
gettext("Delete");

/* ./templates/kt3/browse.smarty */
gettext("Move");

/* ./templates/kt3/compare_document.smarty */
gettext("Version Comparison");

/* ./templates/kt3/compare_document.smarty */
gettext("showing comparison between versions #from# and #to#");

/* ./templates/kt3/compare_document.smarty */
gettext("Please note");

/* ./templates/kt3/compare_document.smarty */
gettext("the information for version #version# comes from an older version of KnowledgeTree and may be incorrect.");

/* ./templates/kt3/compare_document.smarty */
gettext("Please note");

/* ./templates/kt3/compare_document.smarty */
gettext("the information for version #version# comes from an older version of KnowledgeTree and may be incorrect.");

/* ./templates/kt3/minimal_page.smarty */
gettext("You are here");

/* ./templates/kt3/standard_page.smarty */
gettext("You are here");

/* ./templates/kt3/standard_page.smarty */
gettext("&copy; 2006 <a href=\"http://www.ktdms.com/\">The Jam Warehouse Software (Pty) Ltd.</a> All Rights Reserved");

/* ./templates/kt3/standard_page.smarty */
gettext("KnowledgeTree Version: #version#");

/* ./templates/kt3/standard_page.smarty */
gettext("Request created in #timing#s");

/* ./templates/kt3/view_document.smarty */
gettext("showing information for <strong>version #version#</strong>");

/* ./templates/kt3/view_document.smarty */
gettext("This document is currently checked out by <strong>you</strong>.  If this is incorrect, or you no longer need to make changes to it, please cancel the checkout.");

/* ./templates/kt3/view_document.smarty */
gettext("This document is currently checked out by #checkoutuser#.  You cannot make changes until that user checks it in.  If you have urgent modifications to make, please contact your KnowledgeTree Administrator.");

/* ./templates/kt3/view_document_history.smarty */
gettext("Transaction History");

/* ./templates/kt3/view_document_history.smarty */
gettext("This page provides details of all activities that have been carried out on the document.");

/* ./templates/kt3/view_document_history.smarty */
gettext("Document History for KnowledgeTree New UI Presentation");

/* ./templates/kt3/view_document_history.smarty */
gettext("User");

/* ./templates/kt3/view_document_history.smarty */
gettext("Action");

/* ./templates/kt3/view_document_history.smarty */
gettext("Date");

/* ./templates/kt3/view_document_history.smarty */
gettext("Content version");

/* ./templates/kt3/view_document_history.smarty */
gettext("Comment");

/* ./templates/kt3/fields/base.smarty */
gettext("Required");

/* ./templates/kt3/fields/lookup.smarty */
gettext("Required");

/* ./templates/kt3/fields/text.smarty */
gettext("Required");

/* ./templates/kt3/fields/checkbox.smarty */
gettext("Required");

/* ./templates/kt3/fields/fileupload.smarty */
gettext("Required");

/* ./templates/kt3/fields/statictext.smarty */
gettext("Required");

/* ./templates/kt3/fields/password.smarty */
gettext("Required");

/* ./templates/kt3/fields/tree.smarty */
gettext("Required");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("Generic Information");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("The information in this section is stored by KnowledgeTree&trade; for every         document.");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("Document Filename");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("File is a");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("Created by");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("Last update by");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("Document Type");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("Workflow status");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("No workflow");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("manage workflow");

/* ./templates/kt3/fieldsets/generic.smarty */
gettext("Document ID");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Generic Information");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("The information in this section is stored by KnowledgeTree&trade; for every         document.");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Document Filename");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("File is a");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Created by");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("this cannot not change between versions");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Last update by");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Document Type");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Workflow status");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("No workflow");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("No workflow");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("Document ID");

/* ./templates/kt3/fieldsets/generic_versioned.smarty */
gettext("this cannot not change between versions");

/* ./templates/kt3/fieldsets/simple.smarty */
gettext("no value");

/* ./templates/kt3/fieldsets/simple_versioned.smarty */
gettext("This is the data assigned to the <strong>#name#</strong> aspect of this document.");

/* ./templates/kt3/fieldsets/simple_versioned.smarty */
gettext("no value in this version");

/* ./templates/kt3/fieldsets/simple_versioned.smarty */
gettext("no value in this version");

/* ./templates/kt3/fieldsets/conditional_editable.smarty */
gettext("conditional data.");

/* ./templates/kt3/fieldsets/conditional_editable_values.smarty */
gettext("The data for this conditional metadata fieldset was not completely provided.  Provide the extra information, and save your changes afterwards.");

/* ./templates/kt3/fieldsets/conditional_editable_values.smarty */
gettext("no value");

/* ./templates/kt3/notifications/subscriptions.ArchiveDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.AddDocument.smarty */
gettext("View Document");

/* ./templates/kt3/notifications/subscriptions.AddDocument.smarty */
gettext("Document is no longer available");

/* ./templates/kt3/notifications/subscriptions.AddDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.AddFolder.smarty */
gettext("View New Folder");

/* ./templates/kt3/notifications/subscriptions.AddFolder.smarty */
gettext("Document is no longer available");

/* ./templates/kt3/notifications/subscriptions.AddFolder.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.RestoreDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.ModifyDocument.smarty */
gettext("View Document");

/* ./templates/kt3/notifications/subscriptions.ModifyDocument.smarty */
gettext("Document is no longer available");

/* ./templates/kt3/notifications/subscriptions.ModifyDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.MoveDocument.smarty */
gettext("View New Location");

/* ./templates/kt3/notifications/subscriptions.MoveDocument.smarty */
gettext("Location is no longer available");

/* ./templates/kt3/notifications/subscriptions.MoveDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.RemoveChildDocument.smarty */
gettext("View Folder");

/* ./templates/kt3/notifications/subscriptions.RemoveChildDocument.smarty */
gettext("Folder is no longer available");

/* ./templates/kt3/notifications/subscriptions.RemoveChildDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.RemoveChildFolder.smarty */
gettext("View Folder");

/* ./templates/kt3/notifications/subscriptions.RemoveChildFolder.smarty */
gettext("Location is no longer available");

/* ./templates/kt3/notifications/subscriptions.RemoveChildFolder.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.RemoveSubscribedDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.RemoveSubscribedFolder.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.CheckInDocument.smarty */
gettext("View Document");

/* ./templates/kt3/notifications/subscriptions.CheckInDocument.smarty */
gettext("Document is no longer available");

/* ./templates/kt3/notifications/subscriptions.CheckInDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.CheckOutDocument.smarty */
gettext("View Document");

/* ./templates/kt3/notifications/subscriptions.CheckOutDocument.smarty */
gettext("Document is no longer available");

/* ./templates/kt3/notifications/subscriptions.CheckOutDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.generic.smarty */
gettext("Clear Alert");

/* ./templates/kt3/portlets/search_portlet.smarty */
gettext("search");

/* ./templates/kt3/portlets/search_portlet.smarty */
gettext("How do I search?");

/* ./templates/kt3/portlets/search_portlet.smarty */
gettext("How do I search?");

/* ./templates/kt3/portlets/search_portlet.smarty */
gettext("Saved Searches");

/* ./templates/kt3/portlets/search_portlet.smarty */
gettext("Advanced Search");

/* ./templates/kt3/portlets/admin_mode_portlet.smarty */
gettext("What is admin mode?");

/* ./templates/kt3/portlets/admin_mode_portlet.smarty */
gettext("Administrator mode is enabled.");

/* ./templates/kt3/portlets/admin_mode_portlet.smarty */
gettext("Disable Admin Mode");

/* ./templates/kt3/portlets/admin_mode_portlet.smarty */
gettext("Disable Admin Mode");

/* ./templates/kt3/portlets/admin_mode_portlet.smarty */
gettext("What is admin mode?");

/* ./templates/kt3/portlets/admin_mode_portlet.smarty */
gettext("Administrator mode is not currently enabled.");

/* ./templates/kt3/portlets/admin_mode_portlet.smarty */
gettext("Enable Admin Mode");

/* ./templates/kt3/portlets/admin_mode_portlet.smarty */
gettext("Enable Admin Mode");

/* ./templates/kt3/document_collection.smarty */
gettext("No documents or folders available in this location.");

/* ./templates/kt3/document_collection.smarty */
gettext("#itemCount# items, #batchSize# per page");

/* ./templates/kt3/document_collection.smarty */
gettext("prev");

/* ./templates/kt3/document_collection.smarty */
gettext("next");

/* ./templates/kt3/document_collection.smarty */
gettext("next");

/* ./templates/kt3/browse_types.smarty */
gettext("Select a document type");

/* ./templates/kt3/browse_types.smarty */
gettext("In some circumstances it is useful to view all documents of a given <strong>document type</strong>. Select a <strong>document type</strong> from the list below to view all relevant documents.");

/* ./templates/kt3/browse_lookup_selection.smarty */
gettext("Select a Field");

/* ./templates/kt3/browse_lookup_selection.smarty */
gettext("In some circumstances it is useful to view all documents with a given value for a lookup field.  Select the lookup field from the list below to view all relevant documents.");

/* ./templates/kt3/browse_lookup_value.smarty */
gettext("Select a Value");

/* ./templates/kt3/browse_lookup_value.smarty */
gettext("In some circumstances it is useful to view all documents with a given value for a lookup field.  Select the <strong>value</strong> from the list below to view all relevant documents.");

/* ./templates/kt3/reorderdisplay.smarty */
gettext("Item");

/* ./templates/kt3/reorderdisplay.smarty */
gettext("Up");

/* ./templates/kt3/reorderdisplay.smarty */
gettext("Down");

/* ./templates/ktstandard/action/email.smarty */
gettext("Email document");

/* ./templates/ktstandard/action/email.smarty */
gettext("Groups");

/* ./templates/ktstandard/action/email.smarty */
gettext("Users");

/* ./templates/ktstandard/action/email.smarty */
gettext("Email");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("Existing threads");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("Subject");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("Creator");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("Views");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("Replies");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("Last activity");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("State");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("There are no existing threads for this document");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("Create a new thread");

/* ./templates/ktstandard/action/discussion.smarty */
gettext("Create a new thread");

/* ./templates/ktstandard/action/discussion_thread.smarty */
gettext("Post a reply");

/* ./templates/ktstandard/action/discussion_thread.smarty */
gettext("Post a reply");

/* ./templates/ktstandard/action/discussion_thread.smarty */
gettext("Close this thread");

/* ./templates/ktstandard/action/discussion_thread.smarty */
gettext("Close this thread");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("Document Links");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("The current links to and from this document are displayed below.");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("Target");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("Type");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("Relationship");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("Delete");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("Delete");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("Links <b>to</b> this document");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("There are no links to or from this document.");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("Add a new link");

/* ./templates/ktstandard/action/document_links.smarty */
gettext("Add a new link");

/* ./templates/ktstandard/action/link.smarty */
gettext("Add Link");

/* ./templates/ktstandard/action/link.smarty */
gettext("Select a target document to link to.");

/* ./templates/ktstandard/action/link.smarty */
gettext("Use the folder collection and path below to browse to the document you wish to link to.");

/* ./templates/ktstandard/action/link.smarty */
gettext("Link");

/* ./templates/ktstandard/action/link.smarty */
gettext("No link types are defined. Please ask the administrator to add them.");

/* ./templates/ktstandard/action/link_type_select.smarty */
gettext("Add Link");

/* ./templates/ktstandard/action/link_type_select.smarty */
gettext("Select a link type.");

/* ./templates/ktstandard/action/link_type_select.smarty */
gettext("Link");

/* ./templates/ktstandard/subscriptions/manage.smarty */
gettext("You have no subscriptions");

/* ./templates/ktstandard/subscriptions/manage.smarty */
gettext("You are subscribed to the folders and documents listed below.  You can remove your subscription by selecting the folders and documents to which you no longer wish to subscribe.");

/* ./templates/ktstandard/subscriptions/manage.smarty */
gettext("Subscriptions");

/* ./templates/ktstandard/subscriptions/manage.smarty */
gettext("Remove subscription");

/* ./templates/ktstandard/authentication/ldapeditsource.smarty */
gettext("Save");

/* ./templates/ktstandard/authentication/ldapedituser.smarty */
gettext("Save");

/* ./templates/ktstandard/authentication/ldapadduser.smarty */
gettext("Create a new user");

/* ./templates/ktstandard/authentication/ldapadduser.smarty */
gettext("create user");

/* ./templates/ktstandard/authentication/ldapadduser.smarty */
gettext("Cancel");

/* ./templates/ktstandard/authentication/ldapsearchuser.smarty */
gettext("Since there may be many users in the system, please provider a few letters from the person's user name to begin.");

/* ./templates/ktstandard/authentication/ldapsearchuser.smarty */
gettext("Search for user");

/* ./templates/ktstandard/authentication/ldapsearchuser.smarty */
gettext("search for users");

/* ./templates/ktstandard/authentication/ldapsearchuser.smarty */
gettext("No search specified, or no results for your search.  Please choose some criteria from the list above to find users.");

/* ./templates/ktstandard/authentication/ldapsearchuser.smarty */
gettext("Name");

/* ./templates/ktstandard/authentication/ldapsearchuser.smarty */
gettext("Distinguished Name (LDAP DN)");

/* ./templates/ktstandard/authentication/ldapsearchuser.smarty */
gettext("Add");

/* ./templates/ktstandard/authentication/ldapaddgroup.smarty */
gettext("Create a new group");

/* ./templates/ktstandard/authentication/ldapaddgroup.smarty */
gettext("create group");

/* ./templates/ktstandard/authentication/ldapaddgroup.smarty */
gettext("Cancel");

/* ./templates/ktstandard/authentication/ldapsearchgroup.smarty */
gettext("Since there may be many groups in the system, please provider a few letters from the groups's name to begin.");

/* ./templates/ktstandard/authentication/ldapsearchgroup.smarty */
gettext("Search for group");

/* ./templates/ktstandard/authentication/ldapsearchgroup.smarty */
gettext("search for groups");

/* ./templates/ktstandard/authentication/ldapsearchgroup.smarty */
gettext("No search specified, or no results for your search.  Please choose some criteria from the list above to find groups.");

/* ./templates/ktstandard/authentication/ldapsearchgroup.smarty */
gettext("Group Name");

/* ./templates/ktstandard/authentication/ldapsearchgroup.smarty */
gettext("Distinguished Name (LDAP DN)");

/* ./templates/ktstandard/authentication/ldapsearchgroup.smarty */
gettext("Add");

/* ./templates/ktstandard/workflow/allocator_selection.smarty */
gettext("Automatic Workflow Selection");

/* ./templates/ktstandard/workflow/allocator_selection.smarty */
gettext("Workflow Allocation Plugins");

/* ./templates/ktstandard/workflow/allocator_selection.smarty */
gettext("Documents may be associated on creation or modification with a workflow. Workflow assignment may occur on a per <strong>Folder</strong> or per <strong>Document Type</strong> basis and only one mode may be selected for the system. In order to automatically associate documents with a workflow, please select the appropriate plugin from the list below.");

/* ./templates/ktstandard/workflow/allocator_selection.smarty */
gettext("Update");

/* ./templates/ktstandard/workflow/type_allocation.smarty */
gettext("Workflow Allocation by Document Type");

/* ./templates/ktstandard/workflow/type_allocation.smarty */
gettext("Workflow types are allocated by Document Type in this KnowledgeTree installation.  Documents will be assigned a workflow based on their document type and will have their allocated workflows changed if their document type changes.  Naturally, if the workflow changes then the documents will lose any \"progress\" in the old workflow.");

/* ./templates/ktstandard/workflow/type_allocation.smarty */
gettext("Document Types with no pre-allocated workflow will either have no workflow set (for new documents) or keep their old workflow (for documents which have had their type changed).");

/* ./templates/ktstandard/workflow/type_allocation.smarty */
gettext("Workflow Allocations");

/* ./templates/ktstandard/workflow/type_allocation.smarty */
gettext("Please select the appropriate workflows for each document type.");

/* ./templates/ktstandard/workflow/type_allocation.smarty */
gettext("Document Type");

/* ./templates/ktstandard/workflow/type_allocation.smarty */
gettext("Workflow");

/* ./templates/ktstandard/workflow/type_allocation.smarty */
gettext("No automatic workflow");

/* ./templates/ktstandard/workflow/type_allocation.smarty */
gettext("Apply");

/* ./templates/ktstandard/workflow/folderconfigure.smarty */
gettext("Configure Workflows for this Folder");

/* ./templates/ktstandard/workflow/folderconfigure.smarty */
gettext("This installation of KnowledgeTree allocates workflows to documents by their location.  To specify the workflow to be used by all documents <strong>directly</strong> in this folder, please specify the workflow below.  Otherwise, users will be able to choose the workflow, and some documents may have no workflow attached.");

/* ./templates/ktstandard/workflow/folderconfigure.smarty */
gettext("Note that documents which are moved into this folder will change to use this workflow, and if their previous workflow was different they will lose any progress they have made in that workflow.");

/* ./templates/ktstandard/workflow/folderconfigure.smarty */
gettext("Select appropriate workflow");

/* ./templates/ktstandard/workflow/folderconfigure.smarty */
gettext("Assign Workflow");

/* ./templates/ktstandard/searchdashlet/dashlet.smarty */
gettext("Search");

/* ./templates/ktstandard/searchdashlet/dashlet.smarty */
gettext("search");

/* ./templates/ktstandard/searchdashlet/dashlet.smarty */
gettext("Advanced Search");

/* ./templates/ktstandard/searchdashlet/dashlet.smarty */
gettext("Saved Searches");

/* ./templates/ktstandard/searchdashlet/dashlet.smarty */
gettext("Saved Search");