templates.c 78.7 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
/* ./templates/ktcore/manage_permissions.smarty */
gettext("Existing permissions");

/* ./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/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/dashlets/notifications.smarty */
gettext("Items that require your attention");

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

/* ./templates/ktcore/dashlets/beta1info.smarty */
gettext("Welcome to the KnowledgeTree 3 Beta");

/* ./templates/ktcore/dashlets/beta1info.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  to help you familiarise yourself with the new system.");

/* ./templates/ktcore/dashlets/beta1info.smarty */
gettext("What is a Beta?");

/* ./templates/ktcore/dashlets/beta1info.smarty */
gettext("Help! Something went wrong!");

/* ./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("Don't show me this again.");

/* ./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/action/checkin.smarty */
gettext("Checking in a document updates the document and allows others to check out the document.");

/* ./templates/ktcore/action/checkin.smarty */
gettext("If you do not intend to edit the document, and you do not wish to prevent others from changing the document, you should <a href=\"#link#\">cancel this checkout</a>.");

/* ./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("If you do not intend to edit the document, and you do not wish to prevent others from changing the document, you should <a href=\"#link#\">cancel this checkout</a>.");

/* ./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("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("Folders are one way of organising documents in the document management system.  Folders provide meaning in the traditional file storage way - through a path through which one will browse that describes the content more specifically as one enters folders.");

/* ./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/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("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("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/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("Add New Subcategory");

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

/* ./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("Link free keywords.");

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

/* ./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 \"edit\" link.");

/* ./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("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("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("No Saved Searches have been defined.");

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

/* ./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("Edit existing conditions");

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

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

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

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

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

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

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

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

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

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

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

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

/* ./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("Bulk import");

/* ./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("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("Upload");

/* ./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");

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

/* ./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("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/principals/useradmin.smarty */
gettext("Add a new user");

/* ./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=\"?show_all=1\">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("Edit");

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

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

/* ./templates/ktcore/principals/useradmin.smarty */
gettext("No search specified, or no results for your search.  Please choose some criteria from the list above to find users.");

/* ./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("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("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("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=\"?show_all=1\">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("Manage Users");

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

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

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

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

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

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

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

/* ./templates/ktcore/principals/groupadmin.smarty */
gettext("No search specified, or 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 users and groups may be assigned to these units.");

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

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

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

/* ./templates/ktcore/principals/unitadmin.smarty */
gettext("update unit information");

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

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

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

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

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

/* ./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("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/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/password.smarty */
gettext("Change your password.");

/* ./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/document/document_permissions.smarty */
gettext("Document permissions");

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

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

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

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

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

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

/* ./templates/ktcore/document/document_permissions.smarty */
gettext("Use parent's permissions");

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

/* ./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("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:  <ul>  <li>the local copy of the checked-out document has been lost;</li>  <li>the user who did the check-out is not currently available to check it back in.</li>  </ul>  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 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("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("Remove Link Type(s)");

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

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

/* ./templates/ktcore/document/admin/archivedlist.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/archivedlist.smarty */
gettext("Document Name");

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

/* ./templates/ktcore/document/admin/archivedlist.smarty */
gettext("Restore from Archive");

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

/* ./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("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("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/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/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("new");

/* ./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("Delete Type");

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

/* ./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("login");

/* ./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("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("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/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("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/editField.smarty */
gettext("Edit Field");

/* ./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("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("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("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("Complex");

/* ./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("Simple");

/* ./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("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("Change master field");

/* ./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("Field ordering");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Existing ordering");

/* ./templates/ktcore/metadata/conditional/manageConditional.smarty */
gettext("Order 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("This column is not active.");

/* ./templates/ktcore/metadata/conditional/editcomplex.smarty */
gettext("Editing behaviour <strong>Jack</strong>");

/* ./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("<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("Change Assignments for this field.");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("Editing Fieldset Rules (Simple)");

/* ./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");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("save");

/* ./templates/ktcore/metadata/conditional/editsimple.smarty */
gettext("done");

/* ./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("Generic");

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

/* ./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("Create a new document fieldset");

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

/* ./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/workflow/editWorkflow.smarty */
gettext("Workflow");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Edit workflow properties");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Update workflow properties");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Create a new state");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Create state");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Existing states");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Select a state to update its properties.");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Transitions");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Create a new transition");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Create transition");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Existing transitions");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Actions controlled");

/* ./templates/ktcore/workflow/editWorkflow.smarty */
gettext("Set controlled actions");

/* ./templates/ktcore/workflow/listWorkflows.smarty */
gettext("Workflow");

/* ./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.");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("State");

/* ./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("Users");

/* ./templates/ktcore/workflow/editState.smarty */
gettext("Save");

/* ./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 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 defined.");

/* ./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("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/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 an authentication source");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("Add a new 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("Existing sources");

/* ./templates/ktcore/authentication/manage.smarty */
gettext("No additional authentication sources have been defined.");

/* ./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/kt3/document/edit.smarty */
gettext("Editing");

/* ./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/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");

/* ./templates/kt3/document/metadata_history.smarty */
gettext("compare with current");

/* ./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/view_document.smarty */
gettext("showing information for <strong>version #version#</strong>");

/* ./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("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_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("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/simple.smarty */
gettext("This is the data assigned to the <strong>#name#</strong> aspect of this document.");

/* ./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/conditional_editable.smarty */
gettext("conditional data.");

/* ./templates/kt3/notifications/subscriptions.AddDocument.smarty */
gettext("Read Document");

/* ./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("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.ArchiveDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.CheckinDocument.smarty */
gettext("View Document");

/* ./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("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.ModifyDocument.smarty */
gettext("View Document");

/* ./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("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.RemoveChildDocument.smarty */
gettext("View Folder");

/* ./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("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.RemoveSubscribedDocument.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.RemoveSubscribedFolder.smarty */
gettext("Clear Alert");

/* ./templates/kt3/notifications/subscriptions.RestoreDocument.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("Advanced Search");

/* ./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/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/ktstandard/action/email.smarty */
gettext("Email document");

/* ./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/discussion_comment_list_item.smarty */
gettext("Posted");

/* ./templates/ktstandard/action/discussion_comment_list_item.smarty */
gettext("by #name# at #date#");

/* ./templates/ktstandard/action/discussion_comment_list_item.smarty */
gettext("Post a reply");

/* ./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 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("LDAP User Name");

/* ./templates/ktstandard/authentication/ldapsearchuser.smarty */
gettext("Distinguished Name (LDAP DN)");

/* ./templates/ktstandard/authentication/ldapsearchuser.smarty */
gettext("Add");