knowledgeTree.po
107 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
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-12-12 16:29+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: lib/documentmanagement/documentutil.inc.php:401
#: lib/documentmanagement/documentutil.inc.php:419
#, php-format
msgid " (trigger %s)"
msgstr ""
#: i18n/templates.c:1988
msgid "#itemCount# items, #batchSize# per page"
msgstr ""
#: i18n/templates.c:545
msgid "#name#'s authentication is handled by the <strong>#provider#</strong>."
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:99
#, php-format
msgid "%d documents expunged."
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:93
#, php-format
msgid "%d documents made active."
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:342
#, php-format
msgid "%d successful, %d failures"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:89
#, php-format
msgid "%s could not be made \"live\"."
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:46
#: plugins/ktcore/admin/deletedDocuments.php:72
#, php-format
msgid "%s is not a deleted document. Aborting expunge"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:49
#: plugins/ktcore/admin/archivedDocuments.php:75
#, php-format
msgid "%s is not an archived document. Aborting restore."
msgstr ""
#: i18n/templates.c:1418
msgid "<strong>or</strong> to a new behaviour called"
msgstr ""
#: i18n/templates.c:1226 i18n/templates.c:1241
msgid "A <strong>conditional</strong> fieldset contains only lookup fields. The values for each field can depend on the user's selections for the others."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:28
#: plugins/ktcore/admin/documentFields.php:54
msgid "A brief description of the information stored in this fieldset."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:29
msgid "A generic fieldset is one that is available for every document by default. These fieldsets will be available for users to edit and add for every document in the document management system."
msgstr ""
#: plugins/ktcore/admin/workflows.php:67 plugins/ktcore/admin/workflows.php:71
#: plugins/ktcore/admin/workflows.php:365
msgid "A human-readable name for the state."
msgstr ""
#: plugins/ktcore/admin/workflows.php:33 plugins/ktcore/admin/workflows.php:56
msgid "A human-readable name for the workflow."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:27
#: plugins/ktcore/admin/documentFields.php:52
#: plugins/ktcore/admin/documentFields.php:56
msgid "A human-readable name, used in add and edit forms."
msgstr ""
#: plugins/ktstandard/KTEmail.php:200
msgid "A message for those who receive the document"
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:53
#: plugins/ktcore/admin/documentLinks.php:82
msgid "A short brief description of the relationship implied by this link type."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:62
#: plugins/ktcore/admin/groupManagement.php:341
msgid "A short name for the group. e.g. <strong>administrators</strong>."
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:16
msgid "A short name that is shown to users whenever permissions must be assigned."
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:24
msgid "A short, human-readable name for the document type."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:52
#: plugins/ktcore/admin/documentLinks.php:81
msgid "A short, human-readable name for the link type."
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:49
#: plugins/ktcore/admin/roleManagement.php:55
msgid "A short, human-readable name for the role."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:31
msgid "A system fieldset is one that is never displayed to a user, and is used only by the document management system."
msgstr ""
#: lib/browse/BrowseColumns.inc.php:29
msgid "Abstract"
msgstr ""
#: i18n/templates.c:1811
msgid "Action"
msgstr ""
#: i18n/templates.c:1586
msgid "Actions controlled"
msgstr ""
#: plugins/ktcore/admin/workflows.php:272
msgid "Actions set"
msgstr ""
#: bin/generate-buttons.php:5 i18n/templates.c:353 i18n/templates.c:440
#: i18n/templates.c:881 i18n/templates.c:1298 i18n/templates.c:2084
msgid "Add"
msgstr ""
#: bin/generate-buttons.php:10
msgid "Add Comment"
msgstr ""
#: i18n/templates.c:38 i18n/templates.c:239
msgid "Add Field to set"
msgstr ""
#: i18n/templates.c:935
msgid "Add Link Type"
msgstr ""
#: i18n/templates.c:275
msgid "Add New Subcategory"
msgstr ""
#: i18n/templates.c:752
msgid "Add a Role"
msgstr ""
#: plugins/ktcore/folder/addDocument.php:18
#: plugins/ktcore/folder/addDocument.php:49 i18n/templates.c:875
#: i18n/templates.c:878
msgid "Add a document"
msgstr ""
#: i18n/templates.c:929
msgid "Add a link type"
msgstr ""
#: i18n/templates.c:431
msgid "Add a new dynamic permission"
msgstr ""
#: i18n/templates.c:1193 i18n/templates.c:1268 i18n/templates.c:1502
msgid "Add a new field"
msgstr ""
#: i18n/templates.c:1709
msgid "Add a new source"
msgstr ""
#: i18n/templates.c:470
msgid "Add a new user"
msgstr ""
#: i18n/templates.c:704
msgid "Add a unit"
msgstr ""
#: i18n/templates.c:506
msgid "Add a user"
msgstr ""
#: i18n/templates.c:509
msgid "Add a user from an authentication source"
msgstr ""
#: i18n/templates.c:1706
msgid "Add an authentication source"
msgstr ""
#: plugins/ktstandard/KTEmail.php:199
msgid "Add extra email addresses here"
msgstr ""
#: i18n/templates.c:1211 i18n/templates.c:1271 i18n/templates.c:1520
msgid "Add field"
msgstr ""
#: i18n/templates.c:218 i18n/templates.c:221
msgid "Add folder"
msgstr ""
#: i18n/templates.c:515
msgid "Add from source"
msgstr ""
#: i18n/templates.c:1295
msgid "Add new values"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:31
msgid "Add or remove groups from the system."
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:30
msgid "Add or remove users from the system."
msgstr ""
#: i18n/templates.c:47 i18n/templates.c:56 i18n/templates.c:248
#: i18n/templates.c:257
msgid "Add to Fieldset"
msgstr ""
#: i18n/templates.c:290
msgid "Add to category"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:215
#: plugins/ktcore/admin/groupManagement.php:324
msgid "Added"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:430
msgid "Added to groups"
msgstr ""
#: lib/dispatcher.inc.php:235
msgid "Administration"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:439
msgid "All done..."
msgstr ""
#: i18n/templates.c:518
msgid "Alternatively, you can manually create a user within KnowledgeTree below."
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:181
msgid "An empty string was given"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:117
msgid "An error occurred while storing the new file"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:134
msgid "An error occurred while storing this document in the database"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:199
msgid "An error occurred while trying to check in the document"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:90
msgid "An error occurred, and no error message was given"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:200
#: plugins/ktcore/folder/addDocument.php:73
msgid "An internal error occurred receiving the uploaded document"
msgstr ""
#: bin/generate-buttons.php:21
msgid "Approve"
msgstr ""
#: bin/generate-buttons.php:33 i18n/templates.c:203
msgid "Archive"
msgstr ""
#: plugins/ktcore/folder/BulkUpload.php:20
msgid "Archive file"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:48
msgid "Archived Document Restoration"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:18
#: plugins/ktcore/admin/archivedDocuments.php:35
msgid "Archived Documents"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:74
#: plugins/ktcore/admin/userManagement.php:125
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:145
msgid "As a safety precaution, it is useful to limit the number of times a given account can log in, before logging out. This prevents a single account being used by many different people."
msgstr ""
#: bin/generate-buttons.php:18 i18n/templates.c:1118
msgid "Assign"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:10
msgid "Assign permissions to users and groups, and specify which permissions are required to interact with various parts of the Document Management System."
msgstr ""
#: i18n/templates.c:1415
msgid "Assign to behaviour"
msgstr ""
#: i18n/templates.c:560 i18n/templates.c:659
msgid "Assigned Groups"
msgstr ""
#: i18n/templates.c:1634
msgid "Assigned Permissions"
msgstr ""
#: i18n/templates.c:1094 i18n/templates.c:1097
msgid "Associate Fieldsets"
msgstr ""
#: plugins/ktstandard/KTEmail.php:198
msgid "Attach document"
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:9
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:36
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:69
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:109
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:123
#: i18n/templates.c:542
msgid "Authentication"
msgstr ""
#: i18n/templates.c:1703
msgid "Authentication Sources"
msgstr ""
#: presentation/login.php:118
msgid "Authentication failure. Please try again."
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:22
msgid "Authentication provider"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:89
msgid "Available Fieldsets"
msgstr ""
#: i18n/templates.c:557 i18n/templates.c:656
msgid "Available Groups"
msgstr ""
#: i18n/templates.c:683
msgid "Available Users"
msgstr ""
#: bin/generate-buttons.php:9
#: presentation/lookAndFeel/knowledgeTree/noAccess.php:29
msgid "Back"
msgstr ""
#: i18n/templates.c:1121
msgid "Back to folder"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:14
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:90
msgid "Base DN"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:327
msgid "Became conditional"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:342
msgid "Became no longer conditional"
msgstr ""
#: i18n/templates.c:1250
msgid "Become conditional"
msgstr ""
#: bin/generate-buttons.php:40
msgid "Begin"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:64
#: plugins/ktstandard/KTDiscussion.php:141
msgid "Body"
msgstr ""
#: i18n/templates.c:332 i18n/templates.c:1982
msgid "Boolean Search"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:25
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:64
msgid "Boolean search"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:33
#: plugins/ktcore/admin/managePermissions.php:48
msgid "Both names not given"
msgstr ""
#: bin/generate-buttons.php:34
#: presentation/lookAndFeel/knowledgeTree/browse.php:54
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:31
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/editDocument.php:40
#: presentation/lookAndFeel/knowledgeTree/search/simpleSearch.php:49
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:19
msgid "Browse"
msgstr ""
#: lib/templating/kt3template.inc.php:78
msgid "Browse Collections"
msgstr ""
#: lib/templating/kt3template.inc.php:176
msgid "Browse Documents"
msgstr ""
#: i18n/templates.c:20
msgid "Built-in"
msgstr ""
#: i18n/templates.c:317
msgid "Built-in set."
msgstr ""
#: i18n/templates.c:452 i18n/templates.c:461
msgid "Bulk import"
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:81
#: plugins/ktcore/folder/BulkUpload.php:73
msgid "Bulk import failed"
msgstr ""
#: plugins/ktstandard/KTEmail.php:198
msgid "By default, documents are sent as links into the document management system. Select this option if you want the document contents to be sent as an attachment in the email."
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:55
msgid "Can't delete built-in permission"
msgstr ""
#: bin/generate-buttons.php:6 i18n/templates.c:182 i18n/templates.c:197
#: i18n/templates.c:209 i18n/templates.c:527 i18n/templates.c:539
#: i18n/templates.c:572 i18n/templates.c:584 i18n/templates.c:596
#: i18n/templates.c:671 i18n/templates.c:698 i18n/templates.c:764
#: i18n/templates.c:818 i18n/templates.c:923 i18n/templates.c:2063
msgid "Cancel"
msgstr ""
#: i18n/templates.c:287
msgid "Category"
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:70
msgid "Category added"
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:75
msgid "Category removed."
msgstr ""
#: i18n/templates.c:1181 i18n/templates.c:1235 i18n/templates.c:1289
#: i18n/templates.c:1490
msgid "Change"
msgstr ""
#: i18n/templates.c:548 i18n/templates.c:551
msgid "Change #name#'s Groups"
msgstr ""
#: lib/authentication/builtinauthenticationprovider.inc.php:18
#, php-format
msgid "Change %s's password"
msgstr ""
#: i18n/templates.c:1430
msgid "Change Assignments for this field."
msgstr ""
#: i18n/templates.c:578
msgid "Change Group Details"
msgstr ""
#: i18n/templates.c:944
msgid "Change Link Type"
msgstr ""
#: i18n/templates.c:650
msgid "Change Sub-Groups in #name#"
msgstr ""
#: i18n/templates.c:533
msgid "Change User Details"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:152
msgid "Change User Password"
msgstr ""
#: i18n/templates.c:806 i18n/templates.c:809
msgid "Change User's Password"
msgstr ""
#: i18n/templates.c:758
msgid "Change a role's details"
msgstr ""
#: i18n/templates.c:710
msgid "Change a unit's details"
msgstr ""
#: i18n/templates.c:1385
msgid "Change master field"
msgstr ""
#: i18n/templates.c:734
msgid "Change organisation details"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:52
msgid "Change the help files that are displayed to users."
msgstr ""
#: i18n/templates.c:575
msgid "Change the system's information about group <strong>#name</strong>"
msgstr ""
#: i18n/templates.c:812
msgid "Change the user's password."
msgstr ""
#: i18n/templates.c:1373
msgid "Change to complex"
msgstr ""
#: i18n/templates.c:1364
msgid "Change to simple"
msgstr ""
#: i18n/templates.c:788
msgid "Change your password"
msgstr ""
#: i18n/templates.c:791 i18n/templates.c:803
msgid "Change your password."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:516
msgid "Changed to complex"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:503
msgid "Changed to simple"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/foldermanagement/folderDocumentTypes.php:60
msgid "Changes made"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:123
#: plugins/ktcore/admin/documentTypes.php:135
msgid "Changes not saved"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:96
#: plugins/ktcore/admin/documentFields.php:210
#: plugins/ktcore/admin/workflows.php:131
#: plugins/ktcore/admin/workflows.php:159
#: plugins/ktcore/admin/workflows.php:244
#: plugins/ktcore/admin/workflows.php:258
#: plugins/ktcore/admin/workflows.php:310
#: plugins/ktcore/admin/workflows.php:480
msgid "Changes saved"
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:65
msgid "Changes saved."
msgstr ""
#: i18n/templates.c:1376
msgid "Changing the conditional type set will remove all existing field ordering!"
msgstr ""
#: i18n/templates.c:1388
msgid "Changing the master field set will remove all existing field ordering!"
msgstr ""
#: bin/generate-buttons.php:42
msgid "Check All"
msgstr ""
#: bin/generate-buttons.php:35
msgid "Check In"
msgstr ""
#: bin/generate-buttons.php:36
msgid "Check Out"
msgstr ""
#: i18n/templates.c:1352
msgid "Check completeness"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:47
msgid "Checked Out Document Control"
msgstr ""
#: i18n/templates.c:884
msgid "Checked Out Documents"
msgstr ""
#: i18n/templates.c:914
msgid "Checked out by"
msgstr ""
#: i18n/templates.c:128 i18n/templates.c:131
msgid "Checkin"
msgstr ""
#: i18n/templates.c:122
msgid "Checking in a document updates the document and allows others to check out the document."
msgstr ""
#: i18n/templates.c:134
msgid "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."
msgstr ""
#: i18n/templates.c:140 i18n/templates.c:143
msgid "Checkout"
msgstr ""
#: i18n/templates.c:1919 i18n/templates.c:1925 i18n/templates.c:1928
#: i18n/templates.c:1934 i18n/templates.c:1940 i18n/templates.c:1946
#: i18n/templates.c:1952 i18n/templates.c:1958 i18n/templates.c:1964
#: i18n/templates.c:1967 i18n/templates.c:1970 i18n/templates.c:1973
#: i18n/templates.c:1976
msgid "Clear Alert"
msgstr ""
#: bin/generate-buttons.php:43
msgid "Clear All"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:13
msgid "Collections"
msgstr ""
#: plugins/ktstandard/KTEmail.php:200 i18n/templates.c:1820
msgid "Comment"
msgstr ""
#: i18n/templates.c:1760
msgid "Compare"
msgstr ""
#: i18n/templates.c:1358
msgid "Complex"
msgstr ""
#: i18n/templates.c:422 i18n/templates.c:437
msgid "Condition"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:172
msgid "Condition is a saved search, but not a condition"
msgstr ""
#: i18n/templates.c:1355
msgid "Conditional type"
msgstr ""
#: i18n/templates.c:1238
msgid "Conditionality"
msgstr ""
#: i18n/templates.c:383
msgid "Conditions"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:115
msgid "Configuration updated"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:12
msgid "Configure the information that needs to be collected about different kinds of documents."
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:44
msgid "Configure the process documents go through."
msgstr ""
#: i18n/templates.c:992 i18n/templates.c:1007
msgid "Confirm De-archival"
msgstr ""
#: i18n/templates.c:1043
msgid "Confirm Expunge"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:36
#, php-format
msgid "Confirm Expunge of %d documents"
msgstr ""
#: i18n/templates.c:902
msgid "Confirm Forced Check-in"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:71
#: plugins/ktcore/admin/userManagement.php:166
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:57
msgid "Confirm Password"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:39
#, php-format
msgid "Confirm Restore of %d documents"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:71
#: plugins/ktcore/admin/userManagement.php:166
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:57
msgid "Confirm the password specified above."
msgstr ""
#: i18n/templates.c:1757
msgid "Content Version"
msgstr ""
#: i18n/templates.c:1817
msgid "Content version"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:32
msgid "Control Units"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:42
msgid "Control which kinds of documents have which sets of information associated with them."
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:9
msgid "Control which users can log in, and are part of which groups and organisational units from these management panels."
msgstr ""
#: i18n/templates.c:1139
msgid "Convert"
msgstr ""
#: i18n/templates.c:1133
msgid "Convert to Trees."
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:40
#, php-format
msgid "Converted %s to a tree."
msgstr ""
#: i18n/templates.c:410 i18n/templates.c:839
msgid "Copy"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:324
msgid "Could not become conditional"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:44
msgid "Could not create document type"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:158
msgid "Could not create field"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:49
msgid "Could not create folder in the document management system"
msgstr ""
#: plugins/ktcore/admin/workflows.php:144
msgid "Could not create workflow"
msgstr ""
#: plugins/ktcore/admin/workflows.php:178
msgid "Could not create workflow state"
msgstr ""
#: plugins/ktcore/admin/workflows.php:345
msgid "Could not create workflow transition"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:526
msgid "Could not delete fieldset"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:67
msgid "Could not delete specified item"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:54
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:63
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:76
msgid "Could not find specified item"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:111
msgid "Could not save document type changes"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:207
msgid "Could not save field changes"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:93
msgid "Could not save fieldset changes"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:339
msgid "Could not stop being conditional"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:490
msgid "Could not to complete"
msgstr ""
#: i18n/templates.c:113
msgid "Crash Course in KnowledgeTree"
msgstr ""
#: i18n/templates.c:8 i18n/templates.c:1061 i18n/templates.c:1475
#: i18n/templates.c:1550 i18n/templates.c:1598
msgid "Create"
msgstr ""
#: i18n/templates.c:329
msgid "Create Fieldset"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:338
msgid "Create New Group"
msgstr ""
#: i18n/templates.c:320
msgid "Create a new Fieldset"
msgstr ""
#: i18n/templates.c:587
msgid "Create a new Group"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:29
#: plugins/ktcore/admin/conditions.php:34 i18n/templates.c:386
msgid "Create a new condition"
msgstr ""
#: i18n/templates.c:1547
msgid "Create a new document field set"
msgstr ""
#: i18n/templates.c:1472
msgid "Create a new document fieldset"
msgstr ""
#: i18n/templates.c:1052
msgid "Create a new document type"
msgstr ""
#: i18n/templates.c:590
msgid "Create a new group."
msgstr ""
#: i18n/templates.c:5
msgid "Create a new permission"
msgstr ""
#: i18n/templates.c:365
msgid "Create a new saved search"
msgstr ""
#: i18n/templates.c:1562
msgid "Create a new state"
msgstr ""
#: i18n/templates.c:2018 i18n/templates.c:2021
msgid "Create a new thread"
msgstr ""
#: i18n/templates.c:1577
msgid "Create a new transition"
msgstr ""
#: i18n/templates.c:521 i18n/templates.c:2057
msgid "Create a new user"
msgstr ""
#: i18n/templates.c:1595
msgid "Create a new workflow"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:37
msgid "Create or Delete permissions."
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:38
msgid "Create or Delete roles"
msgstr ""
#: i18n/templates.c:1565
msgid "Create state"
msgstr ""
#: i18n/templates.c:1580
msgid "Create transition"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/browse.php:83
#: presentation/lookAndFeel/knowledgeTree/search/simpleSearch.php:70
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:73
msgid "Created"
msgstr ""
#: i18n/templates.c:1856 i18n/templates.c:1883
msgid "Created by"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:373
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:190
msgid "Created new user"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:186
msgid "Creating database entry"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:423
msgid "Creating transaction"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/browse.php:85
#: presentation/lookAndFeel/knowledgeTree/search/simpleSearch.php:73
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:76
#: i18n/templates.c:2003
msgid "Creator"
msgstr ""
#: i18n/templates.c:344
msgid "Criteria"
msgstr ""
#: i18n/templates.c:338
msgid "Criteria Group"
msgstr ""
#: i18n/templates.c:1763
msgid "Current"
msgstr ""
#: i18n/templates.c:1331
msgid "Current Conditional Fieldsets"
msgstr ""
#: i18n/templates.c:26 i18n/templates.c:227
msgid "Current Fields in Set"
msgstr ""
#: i18n/templates.c:1688
msgid "Current workflow settings"
msgstr ""
#: lib/templating/kt3template.inc.php:80
#: lib/templating/kt3template.inc.php:170 admin.php:34 admin.php:57
msgid "DMS Administration"
msgstr ""
#: lib/templating/kt3template.inc.php:77
#: lib/templating/kt3template.inc.php:173
#: lib/templating/kt3template.inc.php:188
#: presentation/lookAndFeel/knowledgeTree/dashboard.php:65
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:27
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:50
msgid "Dashboard"
msgstr ""
#: lib/validation/errorviewer.inc.php:87
msgid "Database error:"
msgstr ""
#: i18n/templates.c:1814
msgid "Date"
msgstr ""
#: bin/generate-buttons.php:15 i18n/templates.c:17 i18n/templates.c:158
#: i18n/templates.c:161 i18n/templates.c:314 i18n/templates.c:488
#: i18n/templates.c:497 i18n/templates.c:626 i18n/templates.c:641
#: i18n/templates.c:773 i18n/templates.c:779 i18n/templates.c:1463
#: i18n/templates.c:1538
msgid "Delete"
msgstr ""
#: i18n/templates.c:1073
msgid "Delete Type"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:15
#: plugins/ktcore/admin/deletedDocuments.php:32 i18n/templates.c:1013
msgid "Deleted Documents"
msgstr ""
#: i18n/templates.c:152
msgid "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."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:172
#: plugins/ktcore/KTDocumentActions.php:618
#: plugins/ktcore/folder/addDocument.php:22
msgid "Describe the changes made to the document."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:172 i18n/templates.c:962
#: i18n/templates.c:1283
msgid "Description"
msgstr ""
#: plugins/ktcore/admin/workflows.php:78
#: plugins/ktcore/admin/workflows.php:372
msgid "Destination State"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:77
msgid "Details updated"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:66
msgid "Different field types can have different properties."
msgstr ""
#: i18n/templates.c:1307
msgid "Disable"
msgstr ""
#: i18n/templates.c:1088
msgid "Disassociate Fieldsets"
msgstr ""
#: lib/actions/documentaction.inc.php:132 lib/actions/folderaction.inc.php:124
msgid "Dispatcher component of action not implemented."
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:16 i18n/templates.c:14
msgid "Display Name"
msgstr ""
#: i18n/templates.c:2081
msgid "Distinguished Name (LDAP DN)"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:60
msgid "Distinguished name"
msgstr ""
#: i18n/templates.c:890
msgid "Document"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:40
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/editDocument.php:48
msgid "Document Actions"
msgstr ""
#: plugins/ktcore/admin/documentCheckout.php:41
#: plugins/ktcore/admin/documentCheckout.php:57
msgid "Document Checkout"
msgstr ""
#: lib/templating/kt3template.inc.php:179
msgid "Document Details"
msgstr ""
#: plugins/ktcore/admin/manageConditionals.php:18
#: plugins/ktcore/admin/documentFields.php:21
msgid "Document Field Management"
msgstr ""
#: i18n/templates.c:1523
msgid "Document Fields"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:42 i18n/templates.c:1448
msgid "Document Fieldsets"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:179
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:219
#: i18n/templates.c:1799
msgid "Document History"
msgstr ""
#: i18n/templates.c:1748 i18n/templates.c:1805
msgid "Document History for KnowledgeTree New UI Presentation"
msgstr ""
#: i18n/templates.c:926
msgid "Document Link Type Management"
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:45
#: plugins/ktcore/admin/documentLinks.php:74
msgid "Document Links"
msgstr ""
#: i18n/templates.c:908 i18n/templates.c:980 i18n/templates.c:1001
#: i18n/templates.c:1019 i18n/templates.c:1037
msgid "Document Name"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:11
msgid "Document Storage"
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:28
#: plugins/ktcore/folder/BulkUpload.php:27
#: plugins/ktcore/folder/addDocument.php:29 i18n/templates.c:1070
#: i18n/templates.c:1076 i18n/templates.c:1862 i18n/templates.c:1892
msgid "Document Type"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:12
msgid "Document Type Configuration"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:19
#: plugins/ktcore/admin/documentTypes.php:69
msgid "Document Type Management"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:41 i18n/templates.c:1049
#: i18n/templates.c:1115
msgid "Document Types"
msgstr ""
#: i18n/templates.c:1670
msgid "Document Workflow"
msgstr ""
#: lib/dashboard/Notification.inc.php:157
#: lib/subscriptions/subscriptions.inc.php:646
msgid "Document added"
msgstr ""
#: lib/dashboard/Notification.inc.php:164
#: lib/subscriptions/subscriptions.inc.php:653
msgid "Document archived"
msgstr ""
#: lib/dashboard/Notification.inc.php:161
#: lib/subscriptions/subscriptions.inc.php:650
msgid "Document checked in"
msgstr ""
#: lib/dashboard/Notification.inc.php:162
#: lib/subscriptions/subscriptions.inc.php:651
msgid "Document checked out"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:388
msgid "Document created"
msgstr ""
#: i18n/templates.c:1679
msgid "Document has no assigned workflow."
msgstr ""
#: lib/dashboard/Notification.inc.php:160
#: lib/subscriptions/subscriptions.inc.php:649
msgid "Document modified"
msgstr ""
#: lib/dashboard/Notification.inc.php:163
#: lib/subscriptions/subscriptions.inc.php:652
msgid "Document moved"
msgstr ""
#: i18n/templates.c:821
msgid "Document permissions"
msgstr ""
#: lib/dashboard/Notification.inc.php:158
#: lib/dashboard/Notification.inc.php:159
#: lib/subscriptions/subscriptions.inc.php:647
#: lib/subscriptions/subscriptions.inc.php:648
msgid "Document removed"
msgstr ""
#: lib/dashboard/Notification.inc.php:165
#: lib/subscriptions/subscriptions.inc.php:654
msgid "Document restored"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:374
#: plugins/ktcore/KTDocumentActions.php:427
msgid "Document to move"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:59
msgid "Document type could not be deleted"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:47
msgid "Document type created"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:63
msgid "Document type deleted"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:54
msgid "Document type still in use, could not be deleted"
msgstr ""
#: i18n/templates.c:1103
msgid "Document types"
msgstr ""
#: i18n/templates.c:1016
msgid "Documents which are deleted by users are hidden from view, but still available for restoration. Since this consumes system resources, it is possible to <strong>expunge</strong> these documents. Alternatively, you can <strong>restore</strong> them as necessary."
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:92
msgid "Domain"
msgstr ""
#: i18n/templates.c:86 i18n/templates.c:119
msgid "Don't show me this again."
msgstr ""
#: bin/generate-buttons.php:22
msgid "Done"
msgstr ""
#: bin/generate-buttons.php:37
msgid "Download"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:167
msgid "Dynamic permission added"
msgstr ""
#: bin/generate-buttons.php:20 i18n/templates.c:311 i18n/templates.c:374
#: i18n/templates.c:395 i18n/templates.c:404 i18n/templates.c:485
#: i18n/templates.c:494 i18n/templates.c:617 i18n/templates.c:632
#: i18n/templates.c:719 i18n/templates.c:725 i18n/templates.c:743
#: i18n/templates.c:746 i18n/templates.c:770 i18n/templates.c:776
#: i18n/templates.c:827 i18n/templates.c:965 i18n/templates.c:1337
msgid "Edit"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:242
#, php-format
msgid "Edit %s's groups"
msgstr ""
#: i18n/templates.c:1424
msgid "Edit Behaviour"
msgstr ""
#: i18n/templates.c:1130
msgid "Edit Categorisation"
msgstr ""
#: i18n/templates.c:1403
msgid "Edit Complex Conditional Metadata"
msgstr ""
#: i18n/templates.c:1274
msgid "Edit Field"
msgstr ""
#: i18n/templates.c:23 i18n/templates.c:224
msgid "Edit Fieldset"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:59
#, php-format
msgid "Edit Group (%s)"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:52
msgid "Edit Help files"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:39
msgid "Edit LDAP info"
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:105 i18n/templates.c:272
msgid "Edit Lookup Tree"
msgstr ""
#: i18n/templates.c:530
msgid "Edit User Details"
msgstr ""
#: i18n/templates.c:938
msgid "Edit a link type"
msgstr ""
#: i18n/templates.c:392
msgid "Edit existing conditions"
msgstr ""
#: i18n/templates.c:371
msgid "Edit existing saved searches"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:45
msgid "Edit help item"
msgstr ""
#: i18n/templates.c:1730
msgid "Edit provider configuration"
msgstr ""
#: i18n/templates.c:1724
msgid "Edit standard configuration"
msgstr ""
#: i18n/templates.c:1610
msgid "Edit state properties"
msgstr ""
#: i18n/templates.c:1661
msgid "Edit transition properties"
msgstr ""
#: i18n/templates.c:1556
msgid "Edit workflow properties"
msgstr ""
#: i18n/templates.c:1733
msgid "Editing"
msgstr ""
#: i18n/templates.c:1433
msgid "Editing Fieldset Rules (Simple)"
msgstr ""
#: i18n/templates.c:1409
msgid "Editing behaviour <strong>Jack</strong>"
msgstr ""
#: bin/generate-buttons.php:38 i18n/templates.c:1994
msgid "Email"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:68
#: plugins/ktcore/admin/userManagement.php:122
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:142
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:35
msgid "Email Address"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:69
#: plugins/ktcore/admin/userManagement.php:123
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:143
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:36
msgid "Email Notifications"
msgstr ""
#: plugins/ktstandard/KTEmail.php:199
msgid "Email addresses"
msgstr ""
#: i18n/templates.c:1991
msgid "Email document"
msgstr ""
#: plugins/ktstandard/KTEmail.php:248
msgid "Email sent"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:220
msgid "Empty lookup not added"
msgstr ""
#: i18n/templates.c:1319
msgid "Enable"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:28
msgid "Enter part of the group's name. e.g. <strong>ad</strong> will match <strong>administrators</strong>."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:32
msgid "Enter part of the person's username. e.g. <strong>ra</strong> will match <strong>brad</strong>."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:445
msgid "Error adding Fields"
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:94
msgid "Error building tree. Is this a valid tree-lookup field?"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:514
msgid "Error changing to complex"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:501
msgid "Error changing to simple"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:40
msgid "Error creating permission"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:59
msgid "Error deleting permission"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:52
msgid "Error finding permission"
msgstr ""
#: plugins/ktcore/admin/workflows.php:242
msgid "Error saving state"
msgstr ""
#: plugins/ktcore/admin/workflows.php:270
msgid "Error saving state enabled actions"
msgstr ""
#: plugins/ktcore/admin/workflows.php:478
msgid "Error saving transition"
msgstr ""
#: plugins/ktcore/admin/workflows.php:256
msgid "Error saving transitions"
msgstr ""
#: plugins/ktcore/admin/workflows.php:129
msgid "Error saving workflow"
msgstr ""
#: plugins/ktcore/admin/workflows.php:157
msgid "Error saving workflow controlled actions"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:464
msgid "Error setting master field"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:85
msgid "Error updating item"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:53
msgid "Every fieldset needs to have a system name (used internally by the document management system). For fieldsets which you create, this is automatically created by the system, but for fieldsets created by plugins, this controls how the fieldset works."
msgstr ""
#: i18n/templates.c:299
msgid "Existing Fieldsets"
msgstr ""
#: i18n/templates.c:1451
msgid "Existing document fieldsets"
msgstr ""
#: i18n/templates.c:1064
msgid "Existing document types"
msgstr ""
#: i18n/templates.c:1526
msgid "Existing generic document fields"
msgstr ""
#: i18n/templates.c:1187 i18n/templates.c:1259 i18n/templates.c:1496
msgid "Existing members"
msgstr ""
#: i18n/templates.c:1394
msgid "Existing ordering"
msgstr ""
#: i18n/templates.c:2
msgid "Existing permissions"
msgstr ""
#: i18n/templates.c:1712
msgid "Existing sources"
msgstr ""
#: i18n/templates.c:1568
msgid "Existing states"
msgstr ""
#: i18n/templates.c:1997
msgid "Existing threads"
msgstr ""
#: i18n/templates.c:1583
msgid "Existing transitions"
msgstr ""
#: i18n/templates.c:1601
msgid "Existing workflows"
msgstr ""
#: bin/generate-buttons.php:28 i18n/templates.c:986 i18n/templates.c:1025
msgid "Expunge"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:49
msgid "Expunge Deleted Documents"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:306
#, php-format
msgid "Failed to add %s to %s"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:100
msgid "Failed to expunge"
msgstr ""
#: plugins/ktcore/admin/documentCheckout.php:107
msgid "Failed to force the document's checkin."
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:109
msgid "Failed to locate template"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:317
#, php-format
msgid "Failed to remove %s from %s"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:117
msgid "Failed to set group details."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:62
msgid "Failed to update org name."
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:68
msgid "Failed to update unit name."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:207
#: plugins/ktcore/admin/userManagement.php:323
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:96
msgid "Failed to update user."
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:134
msgid "Failed to update your details."
msgstr ""
#: i18n/templates.c:428 i18n/templates.c:449 i18n/templates.c:833
#: i18n/templates.c:857
msgid "False"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:439
msgid "Field cannot be its own parent field"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:162
#: plugins/ktcore/admin/documentFields.php:164
msgid "Field created"
msgstr ""
#: i18n/templates.c:59 i18n/templates.c:260
msgid "Field has conditions attached to it."
msgstr ""
#: i18n/templates.c:1391
msgid "Field ordering"
msgstr ""
#: i18n/templates.c:1277
msgid "Field properties"
msgstr ""
#: i18n/templates.c:1460 i18n/templates.c:1535
msgid "Fields"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:448
msgid "Fields ordered"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:354
msgid "Fields removed"
msgstr ""
#: i18n/templates.c:1127
msgid "Fields that have lookup categories."
msgstr ""
#: i18n/templates.c:29 i18n/templates.c:41 i18n/templates.c:230
#: i18n/templates.c:242
msgid "Fields which are currently not included in any set can be added to this set."
msgstr ""
#: i18n/templates.c:1085 i18n/templates.c:1169 i18n/templates.c:1214
#: i18n/templates.c:1478
msgid "Fieldset"
msgstr ""
#: i18n/templates.c:68 i18n/templates.c:269
msgid "Fieldset cannot be made conditional. One of the fields must not be a lookup."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:133
msgid "Fieldset created"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:528
msgid "Fieldset deleted"
msgstr ""
#: i18n/templates.c:1184 i18n/templates.c:1256 i18n/templates.c:1493
msgid "Fieldset members"
msgstr ""
#: i18n/templates.c:1172 i18n/templates.c:1223 i18n/templates.c:1481
msgid "Fieldset properties"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:138
msgid "Fieldsets associated."
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:126
msgid "Fieldsets removed."
msgstr ""
#: i18n/templates.c:1334
msgid "Fieldsets that are marked as conditional."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:171
#: plugins/ktcore/folder/addDocument.php:21
msgid "File"
msgstr ""
#: i18n/templates.c:1853 i18n/templates.c:1880
msgid "File is a"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:205
#: plugins/ktcore/folder/addDocument.php:78
msgid "File uploads are disabled in your PHP configuration"
msgstr ""
#: i18n/templates.c:563 i18n/templates.c:566 i18n/templates.c:662
#: i18n/templates.c:665 i18n/templates.c:689 i18n/templates.c:692
msgid "Filter"
msgstr ""
#: i18n/templates.c:83
msgid "Find out what's different in <strong>KT 3</strong>."
msgstr ""
#: i18n/templates.c:1109
msgid "Folder"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/browse.php:91
msgid "Folder Actions"
msgstr ""
#: lib/dashboard/Notification.inc.php:154
#: lib/subscriptions/subscriptions.inc.php:643
msgid "Folder added"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:29
msgid "Folder name"
msgstr ""
#: i18n/templates.c:398
msgid "Folder permissions"
msgstr ""
#: lib/dashboard/Notification.inc.php:155
#: lib/dashboard/Notification.inc.php:156
#: lib/subscriptions/subscriptions.inc.php:644
#: lib/subscriptions/subscriptions.inc.php:645
msgid "Folder removed"
msgstr ""
#: i18n/templates.c:212
msgid "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."
msgstr ""
#: i18n/templates.c:920
msgid "Force Checkin"
msgstr ""
#: i18n/templates.c:794
msgid "From here you can adjust certain basic preferences about how you work with KnowledgeTree."
msgstr ""
#: i18n/templates.c:950
msgid "From this panel you can edit or delete existing link types."
msgstr ""
#: i18n/templates.c:1457 i18n/templates.c:1532
msgid "Generic"
msgstr ""
#: i18n/templates.c:1847 i18n/templates.c:1874
msgid "Generic Information"
msgstr ""
#: i18n/templates.c:419 i18n/templates.c:434
msgid "Group"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:374
#, php-format
msgid "Group \"%s\" created."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:385
#, php-format
msgid "Group \"%s\" deleted."
msgstr ""
#: i18n/templates.c:599
msgid "Group Administration"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:17
#: plugins/ktcore/admin/groupManagement.php:19
#: plugins/ktcore/admin/groupManagement.php:50
#: plugins/ktcore/admin/groupManagement.php:334
msgid "Group Management"
msgstr ""
#: i18n/templates.c:491
msgid "Group Memberships"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:28
#: plugins/ktcore/admin/groupManagement.php:62
#: plugins/ktcore/admin/groupManagement.php:341 i18n/templates.c:611
msgid "Group Name"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:120
msgid "Group details updated."
msgstr ""
#: i18n/templates.c:500 i18n/templates.c:1625
msgid "Groups"
msgstr ""
#: plugins/ktcore/admin/workflows.php:406
msgid "Guard Condition."
msgstr ""
#: plugins/ktcore/admin/workflows.php:388
msgid "Guard Group."
msgstr ""
#: plugins/ktcore/admin/workflows.php:85
#: plugins/ktcore/admin/workflows.php:380
msgid "Guard Permission."
msgstr ""
#: plugins/ktcore/admin/workflows.php:396
msgid "Guard Role."
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:20
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:37
msgid "Help Administration"
msgstr ""
#: i18n/templates.c:98
msgid "Help! Something went wrong!"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/dashboard.php:64
msgid "Home"
msgstr ""
#: i18n/templates.c:302
msgid "Human Name"
msgstr ""
#: i18n/templates.c:887
msgid "If a checked-out document has been lost, or the user who checked a document out has not checked it back in, it may be necessary to override the \"checked-out\" status of a document. Use the <strong>force checkin</strong> action in the listing below to override the checked-out status."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:123
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:143
msgid "If this is specified then the user will have notifications sent to the email address entered above. If it is not set, then the user will only see notifications on the <strong>Dashboard</strong>"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:69
msgid "If this is specified then the user will have notifications sent to the email address entered above. If it isn't set, then the user will only see notifications on the <strong>Dashboard</strong>"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:36
msgid "If this is specified then the you will receive certain notifications. If it is not set, then you will only see notifications on the <strong>Dashboard</strong>"
msgstr ""
#: i18n/templates.c:77 i18n/templates.c:92
msgid "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."
msgstr ""
#: i18n/templates.c:215
msgid "If you do not intend to add a folder, you should <a href=\"#link#\">cancel this action</a>."
msgstr ""
#: i18n/templates.c:200
msgid "If you do not intend to archive this document, you should <a href=\"#link#\">cancel the archive</a>."
msgstr ""
#: i18n/templates.c:155
msgid "If you do not intend to delete this document, you should <a href=\"#link#\">cancel the deletion</a>."
msgstr ""
#: i18n/templates.c:125 i18n/templates.c:137
msgid "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>."
msgstr ""
#: i18n/templates.c:167 i18n/templates.c:188
msgid "If you do not intend to move this document, you should <a href=\"#link#\">cancel the move</a>."
msgstr ""
#: i18n/templates.c:458
msgid "Import"
msgstr ""
#: i18n/templates.c:977
msgid "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."
msgstr ""
#: i18n/templates.c:1217
msgid "Incomplete"
msgstr ""
#: i18n/templates.c:1616
msgid "Inform Which Users?"
msgstr ""
#: i18n/templates.c:836
msgid "Inherited from"
msgstr ""
#: i18n/templates.c:407
msgid "Inherited from:"
msgstr ""
#: i18n/templates.c:512
msgid "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."
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:34
msgid "Insufficient permissions to perform action"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/editDocument.php:103
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/editDocument.php:165
msgid "Invalid Document."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:28
msgid "Invalid Organisation"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:44
#: plugins/ktcore/admin/deletedDocuments.php:70
msgid "Invalid document id specified. Aborting expunge"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:47
#: plugins/ktcore/admin/archivedDocuments.php:73
msgid "Invalid document id specified. Aborting restore."
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:267
msgid "Invalid document to compare against."
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:51
#: plugins/ktcore/folder/BulkUpload.php:50
msgid "Invalid document type provided"
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:35
#: plugins/ktcore/admin/manageLookupTrees.php:55
msgid "Invalid field."
msgstr ""
#: plugins/ktcore/admin/workflows.php:295
msgid "Invalid groups specified"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:43
#, php-format
msgid "Invalid identifier provided for: %s"
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:54
msgid "Invalid path provided"
msgstr ""
#: plugins/ktcore/admin/workflows.php:288
msgid "Invalid roles specified"
msgstr ""
#: plugins/ktcore/admin/workflows.php:302
msgid "Invalid users specified"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:69
msgid "Item deleted"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:87
msgid "Item updated"
msgstr ""
#: i18n/templates.c:71
msgid "Items that require your attention"
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:86
msgid "Keyword moved to base of tree."
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:81
msgid "Keywords added to category."
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:139
msgid "LDAP DN"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:18
msgid "LDAP Search Password"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:17
msgid "LDAP Search User"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:13
msgid "LDAP Server"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:16
msgid "LDAP Server Domain"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:15
msgid "LDAP Server Type"
msgstr ""
#: i18n/templates.c:2078
msgid "LDAP User Name"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/browse.php:84
#: presentation/lookAndFeel/knowledgeTree/search/simpleSearch.php:71
#: presentation/lookAndFeel/knowledgeTree/search/simpleSearch.php:72
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:74
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:75
msgid "Last Modified"
msgstr ""
#: i18n/templates.c:2012
msgid "Last activity"
msgstr ""
#: i18n/templates.c:1859 i18n/templates.c:1889
msgid "Last update by"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:43
msgid "Link Type Management"
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:132
msgid "Link Type created."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:116
msgid "Link Type updated."
msgstr ""
#: i18n/templates.c:284
msgid "Link free keywords."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:151
msgid "Link types deleted."
msgstr ""
#: i18n/templates.c:1082
msgid "Linked Fieldsets"
msgstr ""
#: i18n/templates.c:893 i18n/templates.c:911 i18n/templates.c:983
#: i18n/templates.c:1004 i18n/templates.c:1022 i18n/templates.c:1040
msgid "Location"
msgstr ""
#: bin/generate-buttons.php:41 i18n/templates.c:1142
msgid "Login"
msgstr ""
#: presentation/login.php:112 presentation/login.php:123
msgid "Login failed. Please check your username and password, and try again."
msgstr ""
#: lib/templating/kt3template.inc.php:85
msgid "Logout"
msgstr ""
#: i18n/templates.c:1205 i18n/templates.c:1514
msgid "Lookup"
msgstr ""
#: i18n/templates.c:1292
msgid "Lookup Values"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:226
msgid "Lookup added"
msgstr ""
#: i18n/templates.c:1136
msgid "Lookup fields without categories."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:312
msgid "Lookup stickiness toggled"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:275
msgid "Lookups disabled"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:293
msgid "Lookups enabled"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:257
msgid "Lookups removed"
msgstr ""
#: i18n/templates.c:50 i18n/templates.c:251
msgid "Make this fieldset conditional"
msgstr ""
#: i18n/templates.c:308
msgid "Manage"
msgstr ""
#: i18n/templates.c:947
msgid "Manage Existing Link Types"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:31
msgid "Manage Groups"
msgstr ""
#: i18n/templates.c:1124
msgid "Manage Lookup Trees"
msgstr ""
#: i18n/templates.c:722 i18n/templates.c:728
msgid "Manage Members"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:11
#: plugins/ktcore/admin/managePermissions.php:12
msgid "Manage Permissions"
msgstr ""
#: i18n/templates.c:647
msgid "Manage Sub-Groups in #name#"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:30 i18n/templates.c:620
#: i18n/templates.c:635
msgid "Manage Users"
msgstr ""
#: i18n/templates.c:674 i18n/templates.c:677
msgid "Manage Users in #name#"
msgstr ""
#: plugins/ktcore/admin/manageConditionals.php:101 i18n/templates.c:1361
msgid "Manage complex conditional"
msgstr ""
#: i18n/templates.c:1244
msgid "Manage conditional"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:416
msgid "Manage conditional field"
msgstr ""
#: plugins/ktcore/admin/manageConditionals.php:60
#: plugins/ktcore/admin/manageConditionals.php:98 i18n/templates.c:1340
msgid "Manage conditional fieldset"
msgstr ""
#: i18n/templates.c:62 i18n/templates.c:263
msgid "Manage conditions."
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:11
msgid "Manage how and where the actual documents will be stored, work with document archives and deal with other document related problems."
msgstr ""
#: i18n/templates.c:1301
msgid "Manage lookup tree"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:233
#, php-format
msgid "Manage members of %s"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:133
#, php-format
msgid "Manage members of group %s"
msgstr ""
#: plugins/ktcore/admin/manageConditionals.php:63 i18n/templates.c:1370
msgid "Manage simple conditional"
msgstr ""
#: i18n/templates.c:623 i18n/templates.c:638
msgid "Manage sub-groups"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:61
msgid "Manage subscriptions"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:41
msgid "Manage the different classes of document which can be added to the system."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:466
msgid "Master field set"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:74
#: plugins/ktcore/admin/userManagement.php:125
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:145
msgid "Maximum Sessions"
msgstr ""
#: i18n/templates.c:686
msgid "Member users"
msgstr ""
#: i18n/templates.c:1742
msgid "Metadata History"
msgstr ""
#: i18n/templates.c:1754
msgid "Metadata Version"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:14
msgid "Miscellaneous"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:73
#: plugins/ktcore/admin/userManagement.php:124
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:144
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:37
msgid "Mobile Number"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:56
#: plugins/ktcore/admin/userManagement.php:98
#: plugins/ktcore/admin/userManagement.php:107
msgid "Modify User Details"
msgstr ""
#: bin/generate-buttons.php:24 i18n/templates.c:170 i18n/templates.c:179
#: i18n/templates.c:191 i18n/templates.c:194 i18n/templates.c:206
msgid "Move"
msgstr ""
#: bin/generate-buttons.php:39
msgid "Move Here"
msgstr ""
#: i18n/templates.c:164 i18n/templates.c:185
msgid "Moving a document relocates the document within the document repository."
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:68
msgid "Must enter a name for the new category."
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:33
msgid "Must select a field to convert."
msgstr ""
#: plugins/ktcore/admin/manageLookupTrees.php:53
msgid "Must select a field to edit."
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:13
#: plugins/ktcore/admin/documentTypes.php:24
#: plugins/ktcore/admin/roleManagement.php:49
#: plugins/ktcore/admin/roleManagement.php:55
#: plugins/ktcore/admin/userManagement.php:67
#: plugins/ktcore/admin/userManagement.php:121
#: plugins/ktcore/admin/workflows.php:33 plugins/ktcore/admin/workflows.php:56
#: plugins/ktcore/admin/workflows.php:67 plugins/ktcore/admin/workflows.php:71
#: plugins/ktcore/admin/workflows.php:365
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:141
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:34
#: i18n/templates.c:323 i18n/templates.c:479 i18n/templates.c:959
#: i18n/templates.c:1175 i18n/templates.c:1196 i18n/templates.c:1280
#: i18n/templates.c:1454 i18n/templates.c:1484 i18n/templates.c:1505
#: i18n/templates.c:1529 i18n/templates.c:1718 i18n/templates.c:2075
msgid "Name"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:114
msgid "Name changed."
msgstr ""
#: plugins/ktcore/admin/conditions.php:35
msgid "Name of condition"
msgstr ""
#: i18n/templates.c:305 i18n/templates.c:326 i18n/templates.c:1178
#: i18n/templates.c:1487
msgid "Namespace"
msgstr ""
#: bin/generate-buttons.php:31 i18n/templates.c:368 i18n/templates.c:389
msgid "New"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:118
msgid "New thread created"
msgstr ""
#: i18n/templates.c:116
msgid "New to Document Management, or to KnowledgeTree™ 3? We've written some quick documentation"
msgstr ""
#: bin/generate-buttons.php:7
msgid "Next"
msgstr ""
#: i18n/templates.c:1232 i18n/templates.c:1469 i18n/templates.c:1544
msgid "No"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:74
msgid "No Unit"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:234
msgid "No action specified"
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:61
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:86
msgid "No authentication provider chosen"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:86
#: plugins/ktstandard/KTDiscussion.php:170
msgid "No body provided"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:80
msgid "No description given"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/editDocument.php:99
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/editDocument.php:161
msgid "No document specified for editing."
msgstr ""
#: i18n/templates.c:899
msgid "No documents are currently checked out."
msgstr ""
#: i18n/templates.c:989
msgid "No documents are marked as archived."
msgstr ""
#: i18n/templates.c:1028
msgid "No documents are marked as deleted."
msgstr ""
#: i18n/templates.c:1985
msgid "No documents or folders available in this location."
msgstr ""
#: i18n/templates.c:1010 i18n/templates.c:1046
msgid "No documents were selected."
msgstr ""
#: i18n/templates.c:32 i18n/templates.c:233
msgid "No fields associated with this fieldset."
msgstr ""
#: i18n/templates.c:1091
msgid "No fieldsets are currently associated with this type."
msgstr ""
#: plugins/ktcore/folder/addDocument.php:72
msgid "No file was selected to be uploaded to KnowledgeTree"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:199
msgid "No file was selected to be uploaded to the document management system"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:187
msgid "No file was uploaded"
msgstr ""
#: i18n/templates.c:44 i18n/templates.c:53 i18n/templates.c:245
#: i18n/templates.c:254
msgid "No free fields."
msgstr ""
#: i18n/templates.c:281
msgid "No free keywords. Use the \"unlink\" action on a keyword to make it available."
msgstr ""
#: i18n/templates.c:1769
msgid "No items in the category."
msgstr ""
#: i18n/templates.c:74
msgid "No items require your attention."
msgstr ""
#: i18n/templates.c:974
msgid "No link administrator changeable link types available."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:251
#: plugins/ktcore/admin/documentFields.php:268
#: plugins/ktcore/admin/documentFields.php:286
#: plugins/ktcore/admin/documentFields.php:304
msgid "No lookups selected"
msgstr ""
#: i18n/templates.c:1379
msgid "No master field is set, please select the master field"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:43
msgid "No name given"
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:57
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:82
msgid "No name provided"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:441
msgid "No reason given"
msgstr ""
#: plugins/ktstandard/KTEmail.php:231
msgid "No recipients set"
msgstr ""
#: i18n/templates.c:644
msgid "No search specified, or no results for your search."
msgstr ""
#: i18n/templates.c:503 i18n/templates.c:2072
msgid "No search specified, or no results for your search. Please choose some criteria from the list above to find users."
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:82
#: plugins/ktstandard/KTDiscussion.php:166
msgid "No subject provided"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:310
msgid "No subscriptions were chosen"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:128
#: plugins/ktcore/admin/groupManagement.php:179
#: plugins/ktcore/admin/groupManagement.php:228
msgid "No such group."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:237
msgid "No such user."
msgstr ""
#: i18n/templates.c:1655
msgid "No transitions defined."
msgstr ""
#: i18n/templates.c:1646
msgid "No transitions lead to this state."
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:204
msgid "No valid LDAP user chosen"
msgstr ""
#: i18n/templates.c:1676 i18n/templates.c:1868 i18n/templates.c:1898
#: i18n/templates.c:1901
msgid "No workflow"
msgstr ""
#: i18n/templates.c:1202 i18n/templates.c:1511
msgid "Normal"
msgstr ""
#: i18n/templates.c:953 i18n/templates.c:995 i18n/templates.c:1031
msgid "Note"
msgstr ""
#: lib/widgets/fieldsetDisplay.inc.php:441
msgid "Note that the options which are available depends on previous choices within this fieldset."
msgstr ""
#: i18n/templates.c:149
msgid "Once the document has been downloaded, you should <a href=\"#link#\">return to the document view</a>."
msgstr ""
#: plugins/ktcore/admin/workflows.php:78
#: plugins/ktcore/admin/workflows.php:372
msgid "Once this transition is complete, which state should the document be in?"
msgstr ""
#: i18n/templates.c:1400
msgid "Order"
msgstr ""
#: i18n/templates.c:1397
msgid "Order fields"
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:67
msgid "Org name changed to"
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:14
#: plugins/ktcore/admin/orgManagement.php:16
msgid "Organisation Management"
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:29 i18n/templates.c:740
msgid "Organisation Name"
msgstr ""
#: i18n/templates.c:731
msgid "Orgnisation Administration"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:47
msgid "Override the checked-out status of documents if a user has failed to do so."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:70
#: plugins/ktcore/admin/userManagement.php:165
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:56
#: i18n/templates.c:1151
msgid "Password"
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:21
msgid "Path"
msgstr ""
#: i18n/templates.c:1700
msgid "Perform Transition"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:49
msgid "Permanently expunge deleted documents."
msgstr ""
#: i18n/templates.c:11
msgid "Permission"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:42
msgid "Permission created"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:61
msgid "Permission deleted"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:37
msgid "Permissions"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:134
#: plugins/ktcore/KTFolderActions.php:140
#: plugins/ktcore/KTFolderActions.php:146
msgid "Permissions updated"
msgstr ""
#: i18n/templates.c:1163
msgid "Please be aware that - depending on your selections - new values may become available."
msgstr ""
#: i18n/templates.c:905
msgid "Please confirm that this is the document that you wish to checkin."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:107
#: plugins/ktcore/admin/documentLinks.php:124
msgid "Please enter information for all fields."
msgstr ""
#: i18n/templates.c:1145
msgid "Please enter your details below to login."
msgstr ""
#: presentation/login.php:107
msgid "Please enter your password."
msgstr ""
#: presentation/login.php:103
msgid "Please enter your username."
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:73
#: plugins/ktcore/admin/roleManagement.php:95
msgid "Please give the role a name."
msgstr ""
#: i18n/templates.c:1778 i18n/templates.c:1784
msgid "Please note"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/search/simpleSearch.php:58
msgid "Please provide a search term"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:113
#: plugins/ktcore/admin/userManagement.php:158
#: plugins/ktcore/admin/userManagement.php:380
#: plugins/ktcore/admin/userManagement.php:391
msgid "Please select a user first."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:195
#: plugins/ktcore/admin/userManagement.php:304
msgid "Please select a user to modify first."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:56
#: plugins/ktcore/admin/groupManagement.php:94
msgid "Please select a valid group."
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:90
#: plugins/ktcore/admin/roleManagement.php:112
msgid "Please select a valid role first."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:139
msgid "Please select one or more link types to delete."
msgstr ""
#: i18n/templates.c:1619
msgid "Please select which roles or groups should be informed when this state is reached."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:69
msgid "Please specify a link type to edit."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:100
msgid "Please specify a link type to update."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:97
#: plugins/ktcore/admin/groupManagement.php:357
msgid "Please specify a name for the group."
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:60
msgid "Please specify a unit name."
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:54
msgid "Please specify a unit."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:54
msgid "Please specify an org name."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:48
msgid "Please specify an organisation."
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:119
msgid "Possible cause"
msgstr ""
#: i18n/templates.c:2024 i18n/templates.c:2027 i18n/templates.c:2036
msgid "Post a reply"
msgstr ""
#: i18n/templates.c:2030
msgid "Posted"
msgstr ""
#: lib/templating/kt3template.inc.php:84
#: lib/templating/kt3template.inc.php:185
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:20
msgid "Preferences"
msgstr ""
#: i18n/templates.c:293
msgid "Preview"
msgstr ""
#: bin/generate-buttons.php:8
msgid "Previous"
msgstr ""
#: i18n/templates.c:1160
msgid "Project Details"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:270
#, php-format
msgid "Provided variable %s is not a valid %s"
msgstr ""
#: i18n/templates.c:1721
msgid "Provider"
msgstr ""
#: i18n/templates.c:1727
msgid "Provider configuration"
msgstr ""
#: lib/authentication/authenticationprovider.inc.php:54
#: lib/authentication/authenticationprovider.inc.php:58
msgid "Provider does not support editing"
msgstr ""
#: bin/generate-buttons.php:23
msgid "Publish"
msgstr ""
#: i18n/templates.c:1916
msgid "Read Document"
msgstr ""
#: i18n/templates.c:80
msgid "Read the admin introduction."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:67
#: plugins/ktcore/KTDocumentActions.php:251
#: plugins/ktcore/KTDocumentActions.php:429
#: plugins/ktcore/KTDocumentActions.php:547
msgid "Reason"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:618
msgid "Reason for transition"
msgstr ""
#: bin/generate-buttons.php:13
msgid "Reject"
msgstr ""
#: bin/generate-buttons.php:25 i18n/templates.c:35 i18n/templates.c:236
#: i18n/templates.c:1313 i18n/templates.c:1325
msgid "Remove"
msgstr ""
#: i18n/templates.c:971
msgid "Remove Link Type(s)"
msgstr ""
#: i18n/templates.c:1247
msgid "Remove conditional"
msgstr ""
#: i18n/templates.c:1190 i18n/templates.c:1265 i18n/templates.c:1499
msgid "Remove fields"
msgstr ""
#: i18n/templates.c:2048
msgid "Remove subscription"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:216
#: plugins/ktcore/admin/groupManagement.php:325
msgid "Removed"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:431
msgid "Removed from groups"
msgstr ""
#: i18n/templates.c:2009
msgid "Replies"
msgstr ""
#: bin/generate-buttons.php:30
msgid "Reply"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:194
msgid "Reply posted"
msgstr ""
#: i18n/templates.c:1823 i18n/templates.c:1826 i18n/templates.c:1829
#: i18n/templates.c:1832 i18n/templates.c:1835 i18n/templates.c:1838
#: i18n/templates.c:1841 i18n/templates.c:1844
msgid "Required"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:225
#, php-format
msgid "Required value %s not set"
msgstr ""
#: bin/generate-buttons.php:32
msgid "Reset"
msgstr ""
#: bin/generate-buttons.php:26
msgid "Restore"
msgstr ""
#: bin/generate-buttons.php:29
msgid "Restore Here"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:48
msgid "Restore old (archived) documents, usually at a user's request."
msgstr ""
#: i18n/templates.c:1112
msgid "Restrict document types"
msgstr ""
#: i18n/templates.c:335
msgid "Return items which match #options# of the <strong>criteria groups</strong> specified."
msgstr ""
#: i18n/templates.c:341
msgid "Return items which match #options# of the criteria specified."
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:83
#, php-format
msgid "Role \"%s\" created."
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:122
#, php-format
msgid "Role \"%s\" deleted. "
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:105
#, php-format
msgid "Role \"%s\" updated."
msgstr ""
#: i18n/templates.c:749
msgid "Role Administration"
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:39
#: plugins/ktcore/admin/roleManagement.php:41
msgid "Role Management"
msgstr ""
#: i18n/templates.c:767
msgid "Role Name"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:38 i18n/templates.c:1622
msgid "Roles"
msgstr ""
#: i18n/templates.c:380
msgid "Run"
msgstr ""
#: i18n/templates.c:377
msgid "Run a saved search"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:31
#: plugins/ktcore/admin/conditions.php:37 i18n/templates.c:1613
#: i18n/templates.c:1631 i18n/templates.c:1652 i18n/templates.c:1667
#: i18n/templates.c:2051 i18n/templates.c:2054
msgid "Save"
msgstr ""
#: i18n/templates.c:1736
msgid "Save Changes"
msgstr ""
#: i18n/templates.c:362
msgid "Saved searches"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:221
msgid "Saving metadata"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:393
msgid "Scanning file"
msgstr ""
#: bin/generate-buttons.php:19 lib/templating/kt3template.inc.php:182
#: plugins/ktcore/KTPortlets.php:11 i18n/templates.c:359
msgid "Search"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:94
msgid "Search Password"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:93
msgid "Search User"
msgstr ""
#: i18n/templates.c:602
msgid "Search for groups"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:65
#: plugins/ktcore/admin/conditions.php:71
msgid "Search not saved"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:67
#: plugins/ktcore/admin/conditions.php:73
msgid "Search saved"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:10
msgid "Security Management"
msgstr ""
#: bin/generate-buttons.php:16
msgid "Select"
msgstr ""
#: i18n/templates.c:1328
msgid "Select Fieldset"
msgstr ""
#: i18n/templates.c:1427
msgid "Select a behaviour from this list to change the items which are available."
msgstr ""
#: i18n/templates.c:1067
msgid "Select a document type from the list below to change its details, or click on the delete button to remove it from the system."
msgstr ""
#: i18n/templates.c:1571
msgid "Select a state to update its properties."
msgstr ""
#: i18n/templates.c:1604
msgid "Select a workflow to modify."
msgstr ""
#: i18n/templates.c:1106
msgid "Select document types allowed in folder"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:89
msgid "Select the fieldsets which you wish to associate with this document type"
msgstr ""
#: i18n/templates.c:653
msgid "Select the groups which should be part of this group."
msgstr ""
#: i18n/templates.c:554
msgid "Select the groups which should contain this user."
msgstr ""
#: i18n/templates.c:1664
msgid "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."
msgstr ""
#: i18n/templates.c:680
msgid "Select the users which should be part of this group."
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:433
msgid "Sending subscriptions"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:91
msgid "Server Type"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:89
msgid "Server name"
msgstr ""
#: i18n/templates.c:1589
msgid "Set controlled actions"
msgstr ""
#: i18n/templates.c:1382
msgid "Set master field"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:484
msgid "Set to complete"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:64
#: plugins/ktcore/admin/groupManagement.php:343
msgid "Should all the members of this group be given <strong>system</strong> administration privilidges?"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:63
#: plugins/ktcore/admin/groupManagement.php:342
msgid "Should all the members of this group be given <strong>unit</strong> administration privilidges?"
msgstr ""
#: i18n/templates.c:1367
msgid "Simple"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/search/simpleSearch.php:50
msgid "Simple Search"
msgstr ""
#: i18n/templates.c:104
msgid "Since a document which is checked out cannot be modified by anyone else, it is important to check them back in as soon as you have made the apppriate changes."
msgstr ""
#: i18n/templates.c:605
msgid "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 may be very slow if you have many groups."
msgstr ""
#: i18n/templates.c:2066
msgid "Since there may be many users in the system, please provider a few letters from the person's user name to begin."
msgstr ""
#: i18n/templates.c:473
msgid "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."
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:99
msgid "Source created"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:70
#: plugins/ktcore/admin/userManagement.php:165
msgid "Specify an initial password for the user."
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:13
msgid "Specify how groups of documents are displayed in browse and search mode."
msgstr ""
#: i18n/templates.c:932
msgid "Specify the details for a new link type below."
msgstr ""
#: i18n/templates.c:941
msgid "Specify the details for the link type below."
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:43
msgid "Specify the different \"link types\" - ways to relate different documents togeter."
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:32
msgid "Specify which organisation units are available."
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:56
msgid "Specify your new password."
msgstr ""
#: i18n/templates.c:1715
msgid "Standard configuration"
msgstr ""
#: i18n/templates.c:1685
msgid "Start Workflow"
msgstr ""
#: i18n/templates.c:1682
msgid "Start workflow on document"
msgstr ""
#: plugins/ktcore/admin/workflows.php:64
msgid "Starting State"
msgstr ""
#: i18n/templates.c:1607 i18n/templates.c:1694
msgid "State"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:206
msgid "Storing contents"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:63
#: plugins/ktstandard/KTDiscussion.php:140 i18n/templates.c:2000
msgid "Subject"
msgstr ""
#: bin/generate-buttons.php:27
msgid "Submit"
msgstr ""
#: bin/generate-buttons.php:11
msgid "Subscribe"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:289
msgid "Subscription Management"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:26 i18n/templates.c:2045
msgid "Subscriptions"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:340
msgid "Subscriptions removed"
msgstr ""
#: plugins/ktcore/admin/documentCheckout.php:118
#, php-format
msgid "Successfully forced \"%s\" to be checked in."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:64
#: plugins/ktcore/admin/groupManagement.php:343
msgid "System Administrators"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:15
msgid "System Name"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:428 i18n/templates.c:173
msgid "Target folder"
msgstr ""
#: i18n/templates.c:65 i18n/templates.c:266
msgid "Test conditions"
msgstr ""
#: plugins/ktcore/folder/BulkUpload.php:20
msgid "The archive file containing the documents you wish to add to the document management system."
msgstr ""
#: i18n/templates.c:455
msgid "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."
msgstr ""
#: i18n/templates.c:464
msgid "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."
msgstr ""
#: plugins/ktcore/folder/addDocument.php:21
msgid "The contents of the document to be added to the document management system."
msgstr ""
#: lib/widgets/fieldsetDisplay.inc.php:278
msgid "The document title is used as the main name of a document through the KnowledgeTree."
msgstr ""
#: plugins/ktcore/admin/documentCheckout.php:67
#: plugins/ktcore/admin/documentCheckout.php:98
msgid "The document you specified appears to be invalid."
msgstr ""
#: i18n/templates.c:146
msgid "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."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:68
#: plugins/ktcore/admin/userManagement.php:122
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:142
msgid "The email address of the user. Notifications and alerts are mailed to this address if <strong>email notifications</strong> is set below. e.g. <strong>jsmith@acme.com</strong>"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:194
msgid "The file name of the uploaded file does not match the file name of the document in the system"
msgstr ""
#: i18n/templates.c:176
msgid "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."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:67
#: plugins/ktcore/admin/userManagement.php:121
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:141
msgid "The full name of the user. This is shown in reports and listings. e.g. <strong>John Smith</strong>"
msgstr ""
#: i18n/templates.c:1850 i18n/templates.c:1877
msgid "The information in this section is stored by the KnowledgeTree™ for every document."
msgstr ""
#: lib/widgets/fieldsetDisplay.inc.php:288
msgid "The information in this section is stored by the KnowledgeTree™ for every document."
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:15
msgid "The internal name used for the permission. This should never be changed."
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:139
msgid "The location of the user within the LDAP directory."
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:60
msgid "The location of this user in the LDAP tree"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:73
#: plugins/ktcore/admin/userManagement.php:124
msgid "The mobile phone number of the user. If the system is configured to send notifications to cellphones, then this number will be SMS'd with notifications. e.g. <strong>999 9999 999</strong>"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:144
msgid "The mobile phone number of the user. If the system is configured to send notifications to cellphones, then this number will have an SMS delivered to it with notifications. e.g. <strong>999 9999 999</strong>"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:29
msgid "The name for the new folder."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:29
msgid "The organisation's visible name. e.g. <strong>Tech Support</strong>"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:187
#: plugins/ktcore/admin/userManagement.php:351
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:79
msgid "The passwords you specified do not match."
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:21
msgid "The path containing the documents to be added to the document management system."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:547
msgid "The reason for the archiving of this document. This will be displayed when the archived document is to be displayed."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:67
msgid "The reason for the checkout of this document for historical purposes, and to inform those who wish to check out this document."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:429
msgid "The reason for this document to be moved."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:251
msgid "The reason for this document to be removed."
msgstr ""
#: lib/widgets/fieldsetDisplay.inc.php:376
msgid "The system rejected your value for this field."
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:63
#: plugins/ktstandard/KTDiscussion.php:140
msgid "The topic of discussion in this thread"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:26
#: plugins/ktcore/admin/unitManagement.php:34
msgid "The unit's visible name. e.g. <strong>Tech Support</strong>"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:171
msgid "The updated document."
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:197
#: plugins/ktcore/folder/addDocument.php:70
msgid "The uploaded file is larger than the MAX_FILE_SIZE directive that was specified in the HTML form"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:196
#: plugins/ktcore/folder/addDocument.php:69
msgid "The uploaded file is larger than the PHP upload_max_filesize setting"
msgstr ""
#: plugins/ktcore/folder/addDocument.php:71
msgid "The uploaded file was not fully uploaded to KnowledgeTree"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:198
msgid "The uploaded file was not fully uploaded to the document management system"
msgstr ""
#: i18n/templates.c:917
msgid "The user who checked this document out is no longer valid."
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:214
msgid "The user's name, or part thereof, to find the user that you wish to add"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:66
#: plugins/ktcore/admin/userManagement.php:120
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:140
msgid "The username the user will enter to gain access to the KnowledgeTree. e.g. <strong>jsmith</strong>"
msgstr ""
#: i18n/templates.c:782
msgid "There are currently no roles created within the system."
msgstr ""
#: i18n/templates.c:2015
msgid "There are no existing threads for this document"
msgstr ""
#: i18n/templates.c:1100
msgid "There are no fieldsets available for adding."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:560
msgid "There was a database error while trying to archive this file"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:97
msgid "There was a problem checking out the document."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:287
msgid "There was a problem deleting the document from storage."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:271
msgid "There was a problem deleting the document from the database."
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:95
#: plugins/ktstandard/KTSubscriptions.php:244
msgid "There was a problem subscribing you to this document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:126
msgid "There was a problem unsubscribing you from this document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:276
msgid "There was a problem unsubscribing you from this folder"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:456
msgid "There was a problem updating the document's location in the database"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:464
msgid "There was a problem updating the document's location in the repository storage"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:106
#: plugins/ktstandard/KTDiscussion.php:183
msgid "There was an error adding the comment to the thread"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:97
msgid "There was an error creating a new thread"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:112
#: plugins/ktstandard/KTDiscussion.php:188
msgid "There was an error updating the thread with the new comment"
msgstr ""
#: i18n/templates.c:869
msgid "These documents are not on the filesystem"
msgstr ""
#: i18n/templates.c:872
msgid "These documents have versions not on the filesystem"
msgstr ""
#: i18n/templates.c:866
msgid "These folders are not on the filesystem"
msgstr ""
#: lib/dashboard/dashlet.inc.php:13
msgid "This Dashlet is incomplete."
msgstr ""
#: i18n/templates.c:1802
msgid "This allows you to have a brief overview of the history of the document."
msgstr ""
#: i18n/templates.c:1406
msgid "This column is not active."
msgstr ""
#: i18n/templates.c:1220
msgid "This conditional fieldset cannot be used"
msgstr ""
#: i18n/templates.c:1343
msgid "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."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:240
#: plugins/ktcore/KTDocumentActions.php:357
msgid "This document can't be deleted because it is checked out"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:56
msgid "This document is already checked out"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:158
msgid "This document is checked out, but not by you"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:153
msgid "This document is not checked out"
msgstr ""
#: i18n/templates.c:1346
msgid "This error prevents this fieldset from being set to complete"
msgstr ""
#: i18n/templates.c:1436
msgid "This field is not controlled by the currently active group."
msgstr ""
#: i18n/templates.c:1253
msgid "This fieldset cannot be made conditional, since it contains fields which are not lookup types."
msgstr ""
#: i18n/templates.c:1904 i18n/templates.c:1910
msgid "This is the data assigned to the <strong>#name#</strong> aspect of this document."
msgstr ""
#: i18n/templates.c:1745
msgid "This lists the older versions of the document, as the metadata about it has been changed."
msgstr ""
#: lib/dashboard/Notification.inc.php:111
msgid "This notification handler does not support publication."
msgstr ""
#: lib/templating/kt3template.inc.php:224
msgid "This page did not produce any content"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:20
msgid "This will download a copy of the document and is not the same as Checking Out a document. Changes to this downloaded file will not be managed in the DMS."
msgstr ""
#: lib/browse/BrowseColumns.inc.php:59
#: plugins/ktcore/folder/addDocument.php:22
msgid "Title"
msgstr ""
#: i18n/templates.c:1055
msgid "To start the process of creating a new document type, please enter a name for the type below."
msgstr ""
#: i18n/templates.c:1310 i18n/templates.c:1322
msgid "Toggle stickiness"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:409
msgid "Transforming file"
msgstr ""
#: i18n/templates.c:1658
msgid "Transition"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:646
msgid "Transition performed"
msgstr ""
#: i18n/templates.c:1697
msgid "Transition to another workflow state"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:617
msgid "Transition to perform"
msgstr ""
#: i18n/templates.c:1574 i18n/templates.c:1640
msgid "Transitions"
msgstr ""
#: i18n/templates.c:1649
msgid "Transitions from this state"
msgstr ""
#: i18n/templates.c:1643
msgid "Transitions to this state"
msgstr ""
#: i18n/templates.c:1208 i18n/templates.c:1517
msgid "Tree"
msgstr ""
#: i18n/templates.c:425 i18n/templates.c:446 i18n/templates.c:830
#: i18n/templates.c:854
msgid "True"
msgstr ""
#: i18n/templates.c:1349
msgid "Try to set to complete"
msgstr ""
#: i18n/templates.c:1199 i18n/templates.c:1286 i18n/templates.c:1508
msgid "Type"
msgstr ""
#: i18n/templates.c:1079
msgid "Type-specific field sets"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:198
#, php-format
msgid "Unable to add user \"%s\" to group \"%s\""
msgstr ""
#: plugins/ktcore/admin/userManagement.php:413
#, php-format
msgid "Unable to add user to group \"%s\""
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:102
msgid "Unable to backup document prior to upload"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:104
msgid "Unable to create replacement"
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:80
msgid "Unable to create role."
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:119
msgid "Unable to delete the role."
msgstr ""
#: lib/widgets/fieldsetDisplay.inc.php:159
#: lib/widgets/fieldsetDisplay.inc.php:165
#: lib/widgets/fieldsetDisplay.inc.php:211
#: lib/widgets/fieldsetDisplay.inc.php:227
#: lib/widgets/fieldsetDisplay.inc.php:234
msgid "Unable to find the document's creator"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:209
#, php-format
msgid "Unable to remove user \"%s\" from group \"%s\""
msgstr ""
#: plugins/ktcore/admin/userManagement.php:424
#, php-format
msgid "Unable to remove user from group \"%s\""
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:102
msgid "Unable to update role."
msgstr ""
#: i18n/templates.c:1412
msgid "Unassigned/Unavailable"
msgstr ""
#: i18n/templates.c:1157
msgid "Undo change"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:78
msgid "Unit"
msgstr ""
#: i18n/templates.c:701
msgid "Unit Administration"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:63
#: plugins/ktcore/admin/groupManagement.php:342
msgid "Unit Administrators"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:16
#: plugins/ktcore/admin/unitManagement.php:18
msgid "Unit Management"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:26
#: plugins/ktcore/admin/unitManagement.php:34 i18n/templates.c:614
#: i18n/templates.c:716
msgid "Unit Name"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:73
#, php-format
msgid "Unit name changed to \"%s\""
msgstr ""
#: plugins/ktcore/admin/documentFields.php:240
msgid "Unknown action specified"
msgstr ""
#: lib/validation/errorviewer.inc.php:66
msgid "Unknown error"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:230
#, php-format
msgid "Unknown validation function for required value %s"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:31
msgid "Unset"
msgstr ""
#: bin/generate-buttons.php:12
msgid "Unsubscribe"
msgstr ""
#: bin/generate-buttons.php:17 i18n/templates.c:416 i18n/templates.c:845
msgid "Update"
msgstr ""
#: bin/generate-buttons.php:14
msgid "Update Password"
msgstr ""
#: i18n/templates.c:1559
msgid "Update workflow properties"
msgstr ""
#: i18n/templates.c:800
msgid "Update your details"
msgstr ""
#: i18n/templates.c:467
msgid "Upload"
msgstr ""
#: i18n/templates.c:413 i18n/templates.c:842
msgid "Use parent's permissions"
msgstr ""
#: i18n/templates.c:296
msgid "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."
msgstr ""
#: i18n/templates.c:443 i18n/templates.c:851 i18n/templates.c:1751
#: i18n/templates.c:1808
msgid "User"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:22
#: plugins/ktcore/admin/userManagement.php:24
#: plugins/ktcore/admin/userManagement.php:54
#: plugins/ktcore/admin/userManagement.php:94
#: plugins/ktcore/admin/userManagement.php:105
#: plugins/ktcore/admin/userManagement.php:150
msgid "User Management"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:384
msgid "User deleted"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:211
#: plugins/ktcore/admin/userManagement.php:327
msgid "User information updated."
msgstr ""
#: i18n/templates.c:848
msgid "User permissions"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:214
msgid "User's name"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:32
#: plugins/ktcore/admin/userManagement.php:66
#: plugins/ktcore/admin/userManagement.php:120
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:140
#: i18n/templates.c:482 i18n/templates.c:1148
msgid "Username"
msgstr ""
#: i18n/templates.c:1628
msgid "Users"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:9
msgid "Users and Groups"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:528
msgid "Validation Failed"
msgstr ""
#: i18n/templates.c:347
msgid "Values"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:14
msgid "Various settings which do not fit into the other categories, including help, etc."
msgstr ""
#: i18n/templates.c:1772
msgid "Version Comparison"
msgstr ""
#: i18n/templates.c:401 i18n/templates.c:824
msgid "View"
msgstr ""
#: i18n/templates.c:107 i18n/templates.c:1931 i18n/templates.c:1937
#: i18n/templates.c:1943
msgid "View Document"
msgstr ""
#: i18n/templates.c:1955 i18n/templates.c:1961
msgid "View Folder"
msgstr ""
#: i18n/templates.c:1922
msgid "View New Folder"
msgstr ""
#: i18n/templates.c:1949
msgid "View New Location"
msgstr ""
#: i18n/templates.c:2006
msgid "Views"
msgstr ""
#: i18n/templates.c:89
msgid "Welcome to the KnowledgeTree 3 Beta"
msgstr ""
#: i18n/templates.c:95
msgid "What's a Beta?"
msgstr ""
#: plugins/ktcore/admin/workflows.php:64
msgid "When a document has this workflow applied to it, to which state should it initially be set"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:78
msgid "Which Unit is this group part of?"
msgstr ""
#: plugins/ktcore/admin/workflows.php:406
msgid "Which condition (stored search) must be satisfied before the transition can take place?"
msgstr ""
#: plugins/ktcore/admin/workflows.php:388
msgid "Which group must the user belong to in order to follow this transition?"
msgstr ""
#: plugins/ktcore/admin/workflows.php:85
#: plugins/ktcore/admin/workflows.php:380
msgid "Which permission must the user have in order to follow this transition?"
msgstr ""
#: plugins/ktcore/admin/workflows.php:396
msgid "Which role must the user have in order to follow this transition?"
msgstr ""
#: i18n/templates.c:1637
msgid "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."
msgstr ""
#: i18n/templates.c:1553 i18n/templates.c:1592 i18n/templates.c:1691
msgid "Workflow"
msgstr ""
#: plugins/ktcore/admin/workflows.php:146
msgid "Workflow created"
msgstr ""
#: i18n/templates.c:1673
msgid "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."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:635
msgid "Workflow started"
msgstr ""
#: plugins/ktcore/admin/workflows.php:180
msgid "Workflow state created"
msgstr ""
#: i18n/templates.c:1865 i18n/templates.c:1895
msgid "Workflow status"
msgstr ""
#: plugins/ktcore/admin/workflows.php:347
msgid "Workflow transition created"
msgstr ""
#: plugins/ktcore/KTAdminPlugins.php:44 plugins/ktcore/admin/workflows.php:29
#: plugins/ktcore/admin/workflows.php:89
#: plugins/ktcore/admin/workflows.php:205
#: plugins/ktcore/admin/workflows.php:411
msgid "Workflows"
msgstr ""
#: i18n/templates.c:863
msgid "Would remove these files"
msgstr ""
#: i18n/templates.c:860
msgid "Would remove these folders (and all their contents)"
msgstr ""
#: i18n/templates.c:1229 i18n/templates.c:1466 i18n/templates.c:1541
msgid "Yes"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:88
#: plugins/ktstandard/KTSubscriptions.php:237
msgid "You are already subscribed to that document"
msgstr ""
#: i18n/templates.c:1790 i18n/templates.c:1793
msgid "You are here"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:68
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:252
msgid "You are not allowed to view this document"
msgstr ""
#: i18n/templates.c:2042
msgid "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."
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:193
#: plugins/ktcore/folder/addDocument.php:66
msgid "You did not select a valid document to upload"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/noAccess.php:28
msgid "You do not have permission to access this page."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:447
msgid "You do not have permission to move a document to this location"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:93
#: plugins/ktstandard/KTSubscriptions.php:242
msgid "You have been subscribed to this document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:124
msgid "You have been unsubscribed from this document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:274
msgid "You have been unsubscribed from this folder"
msgstr ""
#: i18n/templates.c:110
msgid "You have no documents which are currently checked out."
msgstr ""
#: i18n/templates.c:2039
msgid "You have no subscriptions"
msgstr ""
#: presentation/login.php:95
msgid "You must have cookies enabled to use the document management system."
msgstr ""
#: plugins/ktcore/admin/documentCheckout.php:62
#: plugins/ktcore/admin/documentCheckout.php:93
msgid "You must select a document to check in first."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:334
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:161
msgid "You must specify a name for the user."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:336
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:163
msgid "You must specify a new username."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:185
#: plugins/ktcore/admin/userManagement.php:349
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:77
msgid "You must specify a password for the user."
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:110
msgid "You must specify your name."
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:48
#: plugins/ktcore/admin/conditions.php:54
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:55
msgid "You need to have at least 1 condition."
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:119
msgid "You were not subscribed to that document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:269
msgid "You were not subscribed to that folder"
msgstr ""
#: i18n/templates.c:101
msgid "Your Checked-out Documents"
msgstr ""
#: i18n/templates.c:785 i18n/templates.c:797
msgid "Your Details"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:49
msgid "Your Password"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:26
msgid "Your Preferences"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:64
#: plugins/ktstandard/KTDiscussion.php:141
msgid "Your contribution to the discussion in this thread"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:138
msgid "Your details have been updated."
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:35
msgid "Your email address. Notifications and alerts are mailed to this address if <strong>email notifications</strong> is set below. e.g. <strong>jsmith@acme.com</strong>"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:34
msgid "Your full name. This is shown in reports and listings. e.g. <strong>John Smith</strong>"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:37
msgid "Your mobile phone number. If the system is configured to send notifications to cellphones, then this number will be sent an SMS with notifications. e.g. <strong>+27 99 999 9999</strong>"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/preferences/preferences.php:100
msgid "Your password has been changed."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:55
#: plugins/ktcore/admin/userManagement.php:95
msgid "add a new user"
msgstr ""
#: i18n/templates.c:356
msgid "add another set of criteria"
msgstr ""
#: plugins/ktcore/folder/addDocument.php:17
#: plugins/ktcore/folder/addDocument.php:48
msgid "add document"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:26
msgid "add folder"
msgstr ""
#: i18n/templates.c:278
msgid "add new category"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:544
msgid "archiving"
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:18
msgid "bulk import"
msgstr ""
#: plugins/ktcore/folder/BulkUpload.php:17
msgid "bulk upload"
msgstr ""
#: i18n/templates.c:2033
msgid "by #name# at #date#"
msgstr ""
#: i18n/templates.c:815
msgid "change password"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:151
msgid "change user password"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:257
msgid "compare versions"
msgstr ""
#: i18n/templates.c:1766
msgid "compare with current"
msgstr ""
#: i18n/templates.c:1913
msgid "conditional data."
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:38
#, php-format
msgid "confirm expunge of %d documents"
msgstr ""
#: plugins/ktcore/admin/documentCheckout.php:58
msgid "confirm forced check-in"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:41
#, php-format
msgid "confirm restore of %d documents"
msgstr ""
#: i18n/templates.c:1421
msgid "create behaviour"
msgstr ""
#: i18n/templates.c:593
msgid "create group"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:335
msgid "create new group"
msgstr ""
#: i18n/templates.c:755
msgid "create new role"
msgstr ""
#: i18n/templates.c:707
msgid "create new unit"
msgstr ""
#: i18n/templates.c:524 i18n/templates.c:2060
msgid "create user"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:26
msgid "defining search"
msgstr ""
#: i18n/templates.c:956
msgid "deleting a link type will delete <strong>all</strong> links of that type within the system."
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:58
#: plugins/ktstandard/KTDiscussion.php:130
msgid "discussion"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:79
msgid "document details"
msgstr ""
#: i18n/templates.c:1445
msgid "done"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:95 i18n/templates.c:1262
#: i18n/templates.c:1439
msgid "edit"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:172
#: plugins/ktcore/admin/documentFields.php:186
msgid "edit field"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:51
msgid "edit group"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:241
msgid "edit groups"
msgstr ""
#: i18n/templates.c:968
msgid "edit link type"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:51
msgid "editing LDAP details"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:83
msgid "editing LDAP settings"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:367
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:186
msgid "failed to create user."
msgstr ""
#: i18n/templates.c:350
msgid "first select a type of query"
msgstr ""
#: i18n/templates.c:896
msgid "force checkin"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:157
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/view.php:212
msgid "history"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/browse.php:70
#: presentation/lookAndFeel/knowledgeTree/documentmanagement/editDocument.php:61
msgid "invalid folder"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:20
msgid "list"
msgstr ""
#: plugins/ktcore/admin/documentCheckout.php:42
msgid "list checked out documents"
msgstr ""
#: i18n/templates.c:1154
msgid "login"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/noAccess.php:29
msgid "logout"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:132
#: plugins/ktcore/admin/groupManagement.php:232
msgid "manage members"
msgstr ""
#: i18n/templates.c:1871
msgid "manage workflow"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:106
msgid "modify user details"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:368
#: plugins/ktcore/KTDocumentActions.php:420
msgid "move"
msgstr ""
#: i18n/templates.c:1058
msgid "new"
msgstr ""
#: i18n/templates.c:1907
msgid "no value"
msgstr ""
#: i18n/templates.c:629
msgid "not part of a unit"
msgstr ""
#: i18n/templates.c:1034
msgid "please confirm that you want to delete these documents."
msgstr ""
#: i18n/templates.c:998
msgid "please confirm that you want to restore these documents from an archived state."
msgstr ""
#: i18n/templates.c:1166 i18n/templates.c:1442
msgid "save"
msgstr ""
#: i18n/templates.c:536 i18n/templates.c:569 i18n/templates.c:668
#: i18n/templates.c:695
msgid "save changes"
msgstr ""
#: i18n/templates.c:581
msgid "save changes to group"
msgstr ""
#: i18n/templates.c:1979
msgid "search"
msgstr ""
#: i18n/templates.c:608
msgid "search for groups"
msgstr ""
#: i18n/templates.c:476 i18n/templates.c:2069
msgid "search for users"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/search/booleanSearch.php:65
msgid "searching"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:18
msgid "select a group"
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:15
msgid "select a organisation"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/administration/help/manageHelp.php:21
msgid "select a section"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:17
msgid "select a unit"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:23
msgid "select a user"
msgstr ""
#: i18n/templates.c:1775
msgid "showing comparison between versions #from# and #to#"
msgstr ""
#: i18n/templates.c:1739 i18n/templates.c:1796
msgid "showing information for <strong>version #version#</strong>"
msgstr ""
#: plugins/ktcore/admin/workflows.php:212
msgid "state"
msgstr ""
#: i18n/templates.c:1304
msgid "stuck, will never be disabled when synchronising from another source"
msgstr ""
#: i18n/templates.c:1316
msgid "stuck, will never be enabled when synchronising from another source"
msgstr ""
#: i18n/templates.c:1781 i18n/templates.c:1787
msgid "the information for version #version# comes from an older version of KnowledgeTree, and may be incorrect."
msgstr ""
#: i18n/templates.c:1886
msgid "this cannot not change between versions"
msgstr ""
#: lib/widgets/fieldsetDisplay.inc.php:118
#: lib/widgets/fieldsetDisplay.inc.php:121
msgid "unknown type"
msgstr ""
#: i18n/templates.c:737
msgid "update organisation information"
msgstr ""
#: i18n/templates.c:761
msgid "update role information"
msgstr ""
#: i18n/templates.c:713
msgid "update unit information"
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:46
#: plugins/ktcore/admin/documentLinks.php:75
#: plugins/ktcore/admin/deletedDocuments.php:17
msgid "view"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:22
msgid "view fieldsets"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:136
msgid "viewing comments"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:67
msgid "viewing permissions"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:597
msgid "workflow"
msgstr ""