knowledgeTree.po
126 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
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
# 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: 2006-01-23 18:27+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:411
#: lib/documentmanagement/documentutil.inc.php:429
#, php-format
msgid " (trigger %s)"
msgstr ""
#: i18n/templates.c:2264
msgid "#itemCount# items, #batchSize# per page"
msgstr ""
#: i18n/templates.c:707
msgid "#name#'s authentication is handled by the <strong>#provider#</strong>."
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:112
#, php-format
msgid "%d documents expunged."
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:94
#, php-format
msgid "%d documents made active."
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:190
#, php-format
msgid "%d documents restored."
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:354
#, php-format
msgid "%d successful, %d failures"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:90
#, php-format
msgid "%s could not be made \"live\"."
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:57
#: plugins/ktcore/admin/deletedDocuments.php:83
#: plugins/ktcore/admin/deletedDocuments.php:133
#, php-format
msgid "%s is not a deleted document. Aborting expunge"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:157
#, php-format
msgid "%s is not a deleted document. Aborting restore"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:50
#: plugins/ktcore/admin/archivedDocuments.php:76
#, php-format
msgid "%s is not an archived document. Aborting restore."
msgstr ""
#: i18n/templates.c:2069
msgid "© 2006 <a href=\"http://www.ktdms.com/\">The Jam Warehouse Software (Pty) Ltd.</a> All Rights Reserved."
msgstr ""
#: i18n/templates.c:1673
msgid "<strong>or</strong> to a new behaviour called"
msgstr ""
#: i18n/templates.c:1475 i18n/templates.c:1490
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:61
msgid "A brief description of the information stored in this field."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:32
#: plugins/ktcore/admin/documentFields.php:58
msgid "A brief description of the information stored in this fieldset."
msgstr ""
#: i18n/templates.c:98
msgid "A checked-out document may not be modified by others. Please ensure that you check-in your documents to the repository as soon as you have finished working with them."
msgstr ""
#: i18n/templates.c:1508
msgid "A fieldset is a collection of fields that comprise a defined set of document metadata. You may add, edit or delete members of this fieldset collection below."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:33
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:423
msgid "A human-readable name for the state."
msgstr ""
#: plugins/ktcore/admin/workflows.php:71
msgid "A human-readable name for the transition."
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:31
#: plugins/ktcore/admin/documentFields.php:56
#: plugins/ktcore/admin/documentFields.php:60
msgid "A human-readable name, used in add and edit forms."
msgstr ""
#: plugins/ktstandard/KTEmail.php:212
msgid "A message for those who receive the document"
msgstr ""
#: lib/alert/AlertContent.inc:81
#, php-format
msgid "A new document '%s' has been added to folder '%s'%s.<br>Please clear this subscription alert by clicking on the following link: "
msgstr ""
#: lib/alert/AlertContent.inc:70
#, php-format
msgid "A new folder ' %s ' has been added to folder ' %s '%s.<br>Please clear this subscription alert by clicking on the following link: %s"
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:50
#: plugins/ktcore/admin/documentLinks.php:79
msgid "A short brief description of the relationship implied by this link type."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:60
#: plugins/ktcore/admin/groupManagement.php:339
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/authentication/authenticationadminpage.inc.php:15
msgid "A short name which helps identify this source of authentication data."
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:23
msgid "A short, human-readable name for the document type."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:49
#: plugins/ktcore/admin/documentLinks.php:78
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/workflows.php:204
msgid "A state by that name already exists"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:35
msgid "A system fieldset is one that is never displayed to a user, and is used only by the document management system."
msgstr ""
#: plugins/ktcore/admin/workflows.php:377
msgid "A transition by that name already exists"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:375
msgid "A user with that username already exists"
msgstr ""
#: lib/browse/BrowseColumns.inc.php:34
msgid "Abstract"
msgstr ""
#: i18n/templates.c:2087
msgid "Action"
msgstr ""
#: i18n/templates.c:1844
msgid "Actions controlled"
msgstr ""
#: plugins/ktcore/admin/workflows.php:310
msgid "Actions set"
msgstr ""
#: bin/generate-buttons.php:5 i18n/templates.c:392 i18n/templates.c:488
#: i18n/templates.c:1055 i18n/templates.c:1406 i18n/templates.c:1553
#: i18n/templates.c:2372
msgid "Add"
msgstr ""
#: bin/generate-buttons.php:10
msgid "Add Comment"
msgstr ""
#: i18n/templates.c:41 i18n/templates.c:278
msgid "Add Field to set"
msgstr ""
#: i18n/templates.c:1112
msgid "Add Link Type"
msgstr ""
#: i18n/templates.c:314
msgid "Add New Subcategory"
msgstr ""
#: i18n/templates.c:935
msgid "Add a Role"
msgstr ""
#: plugins/ktcore/folder/addDocument.php:40
#: plugins/ktcore/folder/addDocument.php:72 i18n/templates.c:1049
#: i18n/templates.c:1052
msgid "Add a document"
msgstr ""
#: i18n/templates.c:1106
msgid "Add a link type"
msgstr ""
#: i18n/templates.c:479
msgid "Add a new dynamic permission"
msgstr ""
#: i18n/templates.c:1439 i18n/templates.c:1520 i18n/templates.c:1760
msgid "Add a new field"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:333
#: plugins/ktcore/admin/groupManagement.php:336 i18n/templates.c:755
msgid "Add a new group"
msgstr ""
#: i18n/templates.c:1970
msgid "Add a new source"
msgstr ""
#: i18n/templates.c:626
msgid "Add a new user"
msgstr ""
#: i18n/templates.c:887
msgid "Add a unit"
msgstr ""
#: i18n/templates.c:662
msgid "Add a user"
msgstr ""
#: i18n/templates.c:668
msgid "Add a user from an authentication source"
msgstr ""
#: i18n/templates.c:1967
msgid "Add an authentication source"
msgstr ""
#: i18n/templates.c:395
msgid "Add another set of criteria"
msgstr ""
#: plugins/ktstandard/KTEmail.php:211
msgid "Add extra email addresses here"
msgstr ""
#: i18n/templates.c:1457 i18n/templates.c:1526 i18n/templates.c:1778
msgid "Add field"
msgstr ""
#: i18n/templates.c:224 i18n/templates.c:227
msgid "Add folder"
msgstr ""
#: i18n/templates.c:674
msgid "Add from source"
msgstr ""
#: i18n/templates.c:1550
msgid "Add new values"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:68
msgid "Add or remove groups from the system."
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:65
msgid "Add or remove users from the system."
msgstr ""
#: i18n/templates.c:50 i18n/templates.c:59 i18n/templates.c:287
#: i18n/templates.c:296
msgid "Add to Fieldset"
msgstr ""
#: i18n/templates.c:329
msgid "Add to category"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:213
#: plugins/ktcore/admin/groupManagement.php:322
msgid "Added"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:454
msgid "Added to groups"
msgstr ""
#: config/siteMap.inc:42 lib/dispatcher.inc.php:245
msgid "Administration"
msgstr ""
#: config/siteMap.inc:45 search/booleanSearch.php:28
#: search/booleanSearch.php:71 i18n/templates.c:2258
msgid "Advanced Search"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:449
msgid "All done..."
msgstr ""
#: i18n/templates.c:563 i18n/templates.c:566
msgid "Allocate Groups to Role"
msgstr ""
#: plugins/ktcore/KTPermissions.php:86 plugins/ktcore/KTPermissions.php:87
#: i18n/templates.c:509
msgid "Allocate Roles"
msgstr ""
#: i18n/templates.c:590 i18n/templates.c:593
msgid "Allocate User to Role"
msgstr ""
#: i18n/templates.c:524
msgid "Allocated users"
msgstr ""
#: plugins/ktcore/KTPermissions.php:377 plugins/ktcore/KTPermissions.php:419
msgid "Allocation changed."
msgstr ""
#: plugins/ktcore/KTPermissions.php:231
msgid "Already using a different descriptor."
msgstr ""
#: i18n/templates.c:677
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:116
msgid "An error occurred while storing the new file"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:131
msgid "An error occurred while storing this document in the database"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:217
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:204
msgid "An internal error occurred receiving the uploaded document"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:290
msgid "An invalid email address was given"
msgstr ""
#: bin/generate-buttons.php:21
msgid "Approve"
msgstr ""
#: bin/generate-buttons.php:33 i18n/templates.c:209 i18n/templates.c:212
msgid "Archive"
msgstr ""
#: plugins/ktcore/folder/BulkUpload.php:41
msgid "Archive file"
msgstr ""
#: lib/alert/AlertContent.inc:63
msgid "Archived Document"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:110
msgid "Archived Document Restoration"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:19
#: plugins/ktcore/admin/archivedDocuments.php:36 i18n/templates.c:1160
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:1334
msgid "Assign"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:53
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:1670
msgid "Assign to behaviour"
msgstr ""
#: i18n/templates.c:725 i18n/templates.c:836
msgid "Assigned Groups"
msgstr ""
#: i18n/templates.c:1892
msgid "Assigned Permissions"
msgstr ""
#: i18n/templates.c:1304 i18n/templates.c:1307
msgid "Associate Fieldsets"
msgstr ""
#: plugins/ktstandard/KTEmail.php:210
msgid "Attach document"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:36
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:11
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:38
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:71
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:111
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:125
#: i18n/templates.c:704
msgid "Authentication"
msgstr ""
#: i18n/templates.c:1961
msgid "Authentication Sources"
msgstr ""
#: login.php:121
msgid "Authentication failure. Please try again."
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:24
msgid "Authentication provider"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:87
msgid "Available Fieldsets"
msgstr ""
#: i18n/templates.c:572 i18n/templates.c:722 i18n/templates.c:833
msgid "Available Groups"
msgstr ""
#: i18n/templates.c:599 i18n/templates.c:863
msgid "Available Users"
msgstr ""
#: bin/generate-buttons.php:9
#: presentation/lookAndFeel/knowledgeTree/noAccess.php:29
msgid "Back"
msgstr ""
#: i18n/templates.c:1337
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:358
msgid "Became conditional"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:373
msgid "Became no longer conditional"
msgstr ""
#: i18n/templates.c:1499
msgid "Become conditional"
msgstr ""
#: bin/generate-buttons.php:40
msgid "Begin"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:68
#: plugins/ktstandard/KTDiscussion.php:146
msgid "Body"
msgstr ""
#: config/siteMap.inc:46 i18n/templates.c:371 i18n/templates.c:1385
msgid "Boolean Search"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:33
#: plugins/ktcore/admin/managePermissions.php:48
msgid "Both names not given"
msgstr ""
#: view.php:34 bin/generate-buttons.php:34 browse.php:83 edit.php:41
#: search/simpleSearch.php:46 search/booleanSearch.php:22
msgid "Browse"
msgstr ""
#: lib/templating/kt3template.inc.php:76
msgid "Browse Collections"
msgstr ""
#: lib/templating/kt3template.inc.php:174
msgid "Browse Documents"
msgstr ""
#: plugins/ktcore/KTPortlets.php:39
msgid "Browse Documents By"
msgstr ""
#: i18n/templates.c:20
msgid "Built-in"
msgstr ""
#: i18n/templates.c:356
msgid "Built-in set."
msgstr ""
#: i18n/templates.c:491 i18n/templates.c:500
msgid "Bulk import"
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:86
#: plugins/ktcore/folder/BulkUpload.php:94
msgid "Bulk import failed"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:36 i18n/templates.c:1964
msgid "By default, KnowledgeTree controls its own users and groups and stores all information about them inside the database. In many situations, an organisation will already have a list of users and groups, and needs to use that existing information to allow access to the DMS. These <strong>Authentication Sources</strong> allow the system administrator to specify additional sources of authentication data."
msgstr ""
#: plugins/ktstandard/KTEmail.php:210
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:188 i18n/templates.c:203
#: i18n/templates.c:215 i18n/templates.c:242 i18n/templates.c:260
#: i18n/templates.c:587 i18n/templates.c:614 i18n/templates.c:686
#: i18n/templates.c:701 i18n/templates.c:737 i18n/templates.c:752
#: i18n/templates.c:770 i18n/templates.c:848 i18n/templates.c:878
#: i18n/templates.c:947 i18n/templates.c:1004 i18n/templates.c:1100
#: i18n/templates.c:2351
msgid "Cancel"
msgstr ""
#: i18n/templates.c:326
msgid "Category"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:591
msgid "Category added"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:596
msgid "Category removed."
msgstr ""
#: i18n/templates.c:1427 i18n/templates.c:1484 i18n/templates.c:1544
#: i18n/templates.c:1748
msgid "Change"
msgstr ""
#: i18n/templates.c:710 i18n/templates.c:716
msgid "Change #name#'s Groups"
msgstr ""
#: lib/authentication/builtinauthenticationprovider.inc.php:20
#, php-format
msgid "Change %s's password"
msgstr ""
#: i18n/templates.c:1685
msgid "Change Assignments for this field."
msgstr ""
#: i18n/templates.c:1250 i18n/templates.c:1256
msgid "Change Document Type"
msgstr ""
#: i18n/templates.c:743
msgid "Change Group Details"
msgstr ""
#: i18n/templates.c:1121
msgid "Change Link Type"
msgstr ""
#: i18n/templates.c:827
msgid "Change Sub-Groups in #name#"
msgstr ""
#: i18n/templates.c:692
msgid "Change User Details"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:152
msgid "Change User Password"
msgstr ""
#: i18n/templates.c:992 i18n/templates.c:995
msgid "Change User's Password"
msgstr ""
#: i18n/templates.c:941
msgid "Change a role's details"
msgstr ""
#: i18n/templates.c:893
msgid "Change a unit's details"
msgstr ""
#: i18n/templates.c:1640
msgid "Change master field"
msgstr ""
#: i18n/templates.c:917
msgid "Change organisation details"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:118
msgid "Change the help files that are displayed to users."
msgstr ""
#: i18n/templates.c:740
msgid "Change the system's information about group <strong>#name</strong>"
msgstr ""
#: i18n/templates.c:998
msgid "Change the user's password. Password rules may have been defined that this new password must abide by."
msgstr ""
#: i18n/templates.c:1628
msgid "Change to complex"
msgstr ""
#: i18n/templates.c:1619
msgid "Change to simple"
msgstr ""
#: i18n/templates.c:974
msgid "Change your password"
msgstr ""
#: i18n/templates.c:977 i18n/templates.c:989
msgid "Change your password."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:547
msgid "Changed to complex"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:534
msgid "Changed to simple"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:130
#: plugins/ktcore/admin/documentTypes.php:149
msgid "Changes not saved"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:102
#: plugins/ktcore/admin/documentFields.php:241
#: plugins/ktcore/admin/workflows.php:139
#: plugins/ktcore/admin/workflows.php:179
#: plugins/ktcore/admin/workflows.php:282
#: plugins/ktcore/admin/workflows.php:296
#: plugins/ktcore/admin/workflows.php:348
#: plugins/ktcore/admin/workflows.php:538
msgid "Changes saved"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:586
msgid "Changes saved."
msgstr ""
#: i18n/templates.c:1631
msgid "Changing the conditional type set will remove all existing field ordering!"
msgstr ""
#: i18n/templates.c:1643
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:1607
msgid "Check completeness"
msgstr ""
#: lib/alert/AlertContent.inc:60
msgid "Checked In Document"
msgstr ""
#: lib/alert/AlertContent.inc:61
msgid "Checked Out Document"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:106
msgid "Checked Out Document Control"
msgstr ""
#: i18n/templates.c:1058
msgid "Checked Out Documents"
msgstr ""
#: i18n/templates.c:1067 i18n/templates.c:1091
msgid "Checked out by"
msgstr ""
#: i18n/templates.c:134 i18n/templates.c:137
msgid "Checkin"
msgstr ""
#: i18n/templates.c:128
msgid "Checking in a document updates the document and allows others to check out the document."
msgstr ""
#: i18n/templates.c:140
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:146 i18n/templates.c:149
msgid "Checkout"
msgstr ""
#: i18n/templates.c:2195 i18n/templates.c:2201 i18n/templates.c:2204
#: i18n/templates.c:2210 i18n/templates.c:2216 i18n/templates.c:2222
#: i18n/templates.c:2228 i18n/templates.c:2234 i18n/templates.c:2240
#: i18n/templates.c:2243 i18n/templates.c:2246 i18n/templates.c:2249
#: i18n/templates.c:2252
msgid "Clear Alert"
msgstr ""
#: bin/generate-buttons.php:43
msgid "Clear All"
msgstr ""
#: i18n/templates.c:2312 i18n/templates.c:2315
msgid "Close this thread"
msgstr ""
#: i18n/templates.c:1706
msgid "Collections of fields are associated into fieldsets. These represent a set of related information which can be associated with a document and thus comprise part of the document's metadata."
msgstr ""
#: plugins/ktstandard/KTEmail.php:212 i18n/templates.c:2096
msgid "Comment"
msgstr ""
#: i18n/templates.c:2030
msgid "Compare"
msgstr ""
#: i18n/templates.c:1613
msgid "Complex"
msgstr ""
#: i18n/templates.c:470 i18n/templates.c:485
msgid "Condition"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:172
msgid "Condition is a saved search, but not a condition"
msgstr ""
#: i18n/templates.c:1610
msgid "Conditional type"
msgstr ""
#: i18n/templates.c:1487
msgid "Conditionality"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:83 i18n/templates.c:431
msgid "Conditions"
msgstr ""
#: plugins/ktcore/admin/conditions.php:12
msgid "Conditions Management"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:115
msgid "Configuration updated"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:59
msgid "Configure the document metadata: Document Types, Document Fieldsets, Link Types and Workflows."
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:101
msgid "Configure the process documents go through."
msgstr ""
#: i18n/templates.c:1178 i18n/templates.c:1193
msgid "Confirm De-archival"
msgstr ""
#: i18n/templates.c:1226
msgid "Confirm Expunge"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:47
#, php-format
msgid "Confirm Expunge of %d documents"
msgstr ""
#: i18n/templates.c:1079
msgid "Confirm Forced Check-in"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:71
#: plugins/ktcore/admin/userManagement.php:166 preferences.php:58
msgid "Confirm Password"
msgstr ""
#: i18n/templates.c:1232 i18n/templates.c:1244
msgid "Confirm Restore"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:40
#: plugins/ktcore/admin/deletedDocuments.php:123
#: plugins/ktcore/admin/deletedDocuments.php:125
#, php-format
msgid "Confirm Restore of %d documents"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:71
#: plugins/ktcore/admin/userManagement.php:166 preferences.php:58
msgid "Confirm the password specified above."
msgstr ""
#: i18n/templates.c:2027
msgid "Content Version"
msgstr ""
#: i18n/templates.c:2093
msgid "Content version"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:71
msgid "Control Units"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:51
msgid "Control which users can log in, and are part of which groups and organisational units, from these management panels."
msgstr ""
#: i18n/templates.c:1355
msgid "Convert"
msgstr ""
#: i18n/templates.c:1349
msgid "Convert to Trees."
msgstr ""
#: i18n/templates.c:461 i18n/templates.c:1025
msgid "Copy"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:355
msgid "Could not become conditional"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:42
msgid "Could not create document type"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:188
msgid "Could not create field"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:47
msgid "Could not create folder in the document management system"
msgstr ""
#: plugins/ktcore/admin/workflows.php:164
msgid "Could not create workflow"
msgstr ""
#: plugins/ktcore/admin/workflows.php:215
msgid "Could not create workflow state"
msgstr ""
#: plugins/ktcore/admin/workflows.php:403
msgid "Could not create workflow transition"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:557
msgid "Could not delete fieldset"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:68
msgid "Could not delete specified item"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:55
#: plugins/ktcore/admin/manageHelp.php:64
#: plugins/ktcore/admin/manageHelp.php:77
msgid "Could not find specified item"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:118
msgid "Could not save document type changes"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:238
msgid "Could not save field changes"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:99
msgid "Could not save fieldset changes"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:370
msgid "Could not stop being conditional"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:521
msgid "Could not to complete"
msgstr ""
#: i18n/templates.c:107
msgid "Crash Course in KnowledgeTree"
msgstr ""
#: i18n/templates.c:8 i18n/templates.c:1271 i18n/templates.c:1733
#: i18n/templates.c:1808 i18n/templates.c:1856
msgid "Create"
msgstr ""
#: i18n/templates.c:368
msgid "Create Fieldset"
msgstr ""
#: i18n/templates.c:359
msgid "Create a new Fieldset"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:36
#: plugins/ktcore/admin/conditions.php:25
#: plugins/ktcore/admin/conditions.php:26
#: plugins/ktcore/admin/conditions.php:34 i18n/templates.c:434
msgid "Create a new condition"
msgstr ""
#: i18n/templates.c:1805
msgid "Create a new document field set"
msgstr ""
#: i18n/templates.c:1730
msgid "Create a new document fieldset"
msgstr ""
#: i18n/templates.c:1262
msgid "Create a new document type"
msgstr ""
#: i18n/templates.c:5
msgid "Create a new permission"
msgstr ""
#: i18n/templates.c:407
msgid "Create a new saved search"
msgstr ""
#: i18n/templates.c:1820
msgid "Create a new state"
msgstr ""
#: i18n/templates.c:2300 i18n/templates.c:2303
msgid "Create a new thread"
msgstr ""
#: i18n/templates.c:1835
msgid "Create a new transition"
msgstr ""
#: i18n/templates.c:680 i18n/templates.c:2345
msgid "Create a new user"
msgstr ""
#: i18n/templates.c:1853
msgid "Create a new workflow"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:78
msgid "Create or delete permissions."
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:80
msgid "Create or delete roles"
msgstr ""
#: i18n/templates.c:1823
msgid "Create state"
msgstr ""
#: i18n/templates.c:1838
msgid "Create transition"
msgstr ""
#: browse.php:161 search/simpleSearch.php:67 search/booleanSearch.php:86
msgid "Created"
msgstr ""
#: i18n/templates.c:2132 i18n/templates.c:2159
msgid "Created by"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:397
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:190
msgid "Created new user"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:122
msgid "Created replacement."
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:183
msgid "Creating database entry"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:433
msgid "Creating transaction"
msgstr ""
#: browse.php:163 lib/browse/Criteria.inc:630 search/simpleSearch.php:70
#: search/booleanSearch.php:89 i18n/templates.c:2282
msgid "Creator"
msgstr ""
#: i18n/templates.c:383 i18n/templates.c:1397
msgid "Criteria"
msgstr ""
#: i18n/templates.c:377 i18n/templates.c:1391
msgid "Criteria Group"
msgstr ""
#: i18n/templates.c:1586
msgid "Current Conditional Fieldsets"
msgstr ""
#: i18n/templates.c:29 i18n/templates.c:266
msgid "Current Fields in Set"
msgstr ""
#: i18n/templates.c:1946
msgid "Current workflow settings"
msgstr ""
#: lib/templating/kt3template.inc.php:78
#: lib/templating/kt3template.inc.php:168 admin.php:34 admin.php:57
msgid "DMS Administration"
msgstr ""
#: lib/alert/AlertContent.inc:52
msgid "DMS Subscription Alert"
msgstr ""
#: lib/templating/kt3template.inc.php:75
#: lib/templating/kt3template.inc.php:171
#: lib/templating/kt3template.inc.php:186 preferences.php:25
#: preferences.php:49 dashboard.php:65 help.php:38
msgid "Dashboard"
msgstr ""
#: lib/validation/errorviewer.inc.php:87
msgid "Database error:"
msgstr ""
#: i18n/templates.c:2090
msgid "Date"
msgstr ""
#: lib/browse/Criteria.inc:633
msgid "Date Created"
msgstr ""
#: lib/browse/Criteria.inc:642
msgid "Date Modified"
msgstr ""
#: bin/generate-buttons.php:15 i18n/templates.c:17 i18n/templates.c:164
#: i18n/templates.c:167 i18n/templates.c:353 i18n/templates.c:422
#: i18n/templates.c:644 i18n/templates.c:653 i18n/templates.c:800
#: i18n/templates.c:815 i18n/templates.c:956 i18n/templates.c:962
#: i18n/templates.c:1145 i18n/templates.c:1721 i18n/templates.c:1796
#: i18n/templates.c:2039
msgid "Delete"
msgstr ""
#: lib/foldermanagement/folderutil.inc.php:198
msgid "Delete Aborted. Unexpected failure to delete document: "
msgstr ""
#: i18n/templates.c:617
msgid "Delete Files and Folders"
msgstr ""
#: i18n/templates.c:23
msgid "Delete Permission"
msgstr ""
#: i18n/templates.c:1283
msgid "Delete Type"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:14
#: plugins/ktcore/admin/deletedDocuments.php:43
#: plugins/ktcore/admin/deletedDocuments.php:119 i18n/templates.c:1199
msgid "Deleted Documents"
msgstr ""
#: i18n/templates.c:158
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:190
#: plugins/ktcore/KTDocumentActions.php:592
msgid "Describe the changes made to the document."
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:154
msgid "Describe the reason for closing this thread"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:190 i18n/templates.c:1139
#: i18n/templates.c:1538
msgid "Description"
msgstr ""
#: plugins/ktcore/admin/workflows.php:78
#: plugins/ktcore/admin/workflows.php:430
msgid "Destination State"
msgstr ""
#: browse.php:352
msgid "Destination folder"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:77
msgid "Details updated"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:72
msgid "Different field types can have different properties."
msgstr ""
#: i18n/templates.c:1562
msgid "Disable"
msgstr ""
#: i18n/templates.c:1298
msgid "Disassociate Fieldsets"
msgstr ""
#: lib/actions/documentaction.inc.php:141 lib/actions/folderaction.inc.php:137
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:2369
msgid "Distinguished Name (LDAP DN)"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:60
msgid "Distinguished name"
msgstr ""
#: i18n/templates.c:1064
msgid "Document"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:287
#, php-format
msgid "Document \"%s\" Deleted."
msgstr ""
#: view.php:43 edit.php:49
msgid "Document Actions"
msgstr ""
#: plugins/ktcore/admin/documentCheckout.php:41
#: plugins/ktcore/admin/documentCheckout.php:57
msgid "Document Checkout"
msgstr ""
#: lib/browse/Criteria.inc:648
msgid "Document Contents"
msgstr ""
#: lib/templating/kt3template.inc.php:177
msgid "Document Details"
msgstr ""
#: plugins/ktcore/admin/manageConditionals.php:23
#: plugins/ktcore/admin/documentFields.php:20 i18n/templates.c:1316
msgid "Document Field Management"
msgstr ""
#: i18n/templates.c:1781
msgid "Document Fields"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:93 i18n/templates.c:1703
msgid "Document Fieldsets"
msgstr ""
#: view.php:182 view.php:225
msgid "Document History"
msgstr ""
#: i18n/templates.c:2018 i18n/templates.c:2081
msgid "Document History for KnowledgeTree New UI Presentation"
msgstr ""
#: i18n/templates.c:1103
msgid "Document Link Type Management"
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:42
#: plugins/ktcore/admin/documentLinks.php:71
msgid "Document Links"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:58
#: plugins/ktcore/admin/manageConditionals.php:22 i18n/templates.c:1313
msgid "Document Metadata and Workflow Configuration"
msgstr ""
#: i18n/templates.c:1085 i18n/templates.c:1166 i18n/templates.c:1187
#: i18n/templates.c:1205 i18n/templates.c:1223 i18n/templates.c:1241
msgid "Document Name"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:56
msgid "Document Storage"
msgstr ""
#: lib/browse/Criteria.inc:636 plugins/ktcore/KTPortlets.php:50
#: plugins/ktcore/folder/BulkImport.php:33
#: plugins/ktcore/folder/BulkUpload.php:48
#: plugins/ktcore/folder/addDocument.php:52 i18n/templates.c:1280
#: i18n/templates.c:1286 i18n/templates.c:2138 i18n/templates.c:2168
msgid "Document Type"
msgstr ""
#: edit.php:136
msgid "Document Type Changed. Please review the information below, and update as appropriate."
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:18
#: plugins/ktcore/admin/documentTypes.php:67
msgid "Document Type Management"
msgstr ""
#: browse.php:141 plugins/ktcore/KTCorePlugin.php:89 i18n/templates.c:1259
#: i18n/templates.c:1331
msgid "Document Types"
msgstr ""
#: plugins/ktcore/folder/addDocument.php:52
msgid "Document Types, defined by the administrator, are used to categorise documents. Please select a Document Type from the list below."
msgstr ""
#: i18n/templates.c:1928
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 ""
#: plugins/ktcore/KTDocumentActions.php:556
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:398
msgid "Document created"
msgstr ""
#: i18n/templates.c:1937
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:1007
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:351
#: plugins/ktcore/KTDocumentActions.php:404
msgid "Document to move"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:57
msgid "Document type could not be deleted"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:45
msgid "Document type created"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:61
msgid "Document type deleted"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:52
msgid "Document type still in use, could not be deleted"
msgstr ""
#: i18n/templates.c:1319
msgid "Document types"
msgstr ""
#: i18n/templates.c:1202
msgid "Documents which are deleted by users are hidden from view but still available for restoration. Since \"soft deletes\" consume system resources, it is possible to <strong>expunge</strong> these documents. Alternatively, you can <strong>restore</strong> them as necessary."
msgstr ""
#: lib/foldermanagement/folderutil.inc.php:185
msgid "Documents: "
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:92
msgid "Domain"
msgstr ""
#: i18n/templates.c:113 i18n/templates.c:125
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:170
msgid "Dynamic permission added"
msgstr ""
#: bin/generate-buttons.php:20 i18n/templates.c:350 i18n/templates.c:419
#: i18n/templates.c:443 i18n/templates.c:452 i18n/templates.c:548
#: i18n/templates.c:551 i18n/templates.c:641 i18n/templates.c:650
#: i18n/templates.c:791 i18n/templates.c:806 i18n/templates.c:902
#: i18n/templates.c:908 i18n/templates.c:926 i18n/templates.c:929
#: i18n/templates.c:953 i18n/templates.c:959 i18n/templates.c:1013
#: i18n/templates.c:1142 i18n/templates.c:1592
msgid "Edit"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:242
#, php-format
msgid "Edit %s's groups"
msgstr ""
#: i18n/templates.c:1679
msgid "Edit Behaviour"
msgstr ""
#: i18n/templates.c:1346
msgid "Edit Categorisation"
msgstr ""
#: i18n/templates.c:1658
msgid "Edit Complex Conditional Metadata"
msgstr ""
#: config/siteMap.inc:39
msgid "Edit Document"
msgstr ""
#: i18n/templates.c:1529
msgid "Edit Field"
msgstr ""
#: i18n/templates.c:26 i18n/templates.c:263
msgid "Edit Fieldset"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:57
#, php-format
msgid "Edit Group (%s)"
msgstr ""
#: i18n/templates.c:530
msgid "Edit Groups"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:118
msgid "Edit Help files"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:39
msgid "Edit LDAP info"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:626 i18n/templates.c:311
msgid "Edit Lookup Tree"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:104
#: plugins/ktcore/admin/conditions.php:82
msgid "Edit Search"
msgstr ""
#: i18n/templates.c:689
msgid "Edit User Details"
msgstr ""
#: i18n/templates.c:527
msgid "Edit Users"
msgstr ""
#: i18n/templates.c:1115
msgid "Edit a link type"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:97
#: plugins/ktcore/admin/conditions.php:75
msgid "Edit an existing condition"
msgstr ""
#: i18n/templates.c:440
msgid "Edit existing conditions"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:46
msgid "Edit help item"
msgstr ""
#: i18n/templates.c:1997
msgid "Edit provider configuration"
msgstr ""
#: i18n/templates.c:1991
msgid "Edit standard configuration"
msgstr ""
#: i18n/templates.c:1868
msgid "Edit state properties"
msgstr ""
#: i18n/templates.c:1919
msgid "Edit transition properties"
msgstr ""
#: i18n/templates.c:1814
msgid "Edit workflow properties"
msgstr ""
#: i18n/templates.c:2000
msgid "Editing"
msgstr ""
#: i18n/templates.c:1688
msgid "Editing Fieldset Rules (Simple)"
msgstr ""
#: i18n/templates.c:1664
msgid "Editing behaviour <strong>Jack</strong>"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:38
msgid "Editing: "
msgstr ""
#: bin/generate-buttons.php:38 i18n/templates.c:2273
msgid "Email"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:68
#: plugins/ktcore/admin/userManagement.php:122
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:142
#: preferences.php:34
msgid "Email Address"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:69
#: plugins/ktcore/admin/userManagement.php:123
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:143
#: preferences.php:35
msgid "Email Notifications"
msgstr ""
#: plugins/ktstandard/KTEmail.php:211
msgid "Email addresses"
msgstr ""
#: i18n/templates.c:2270
msgid "Email document"
msgstr ""
#: plugins/ktstandard/KTEmail.php:261
msgid "Email sent"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:251
msgid "Empty lookup not added"
msgstr ""
#: i18n/templates.c:1574
msgid "Enable"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:26
msgid "Enter part of the group's name. e.g. <strong>ad</strong> will match <strong>administrators</strong>."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:30
msgid "Enter part of the person's username. e.g. <strong>ra</strong> will match <strong>brad</strong>."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:476
msgid "Error adding Fields"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:615
msgid "Error building tree. Is this a valid tree-lookup field?"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:545
msgid "Error changing to complex"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:532
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/ktstandard/KTDiscussion.php:231
msgid "Error getting permission"
msgstr ""
#: plugins/ktcore/admin/workflows.php:280
msgid "Error saving state"
msgstr ""
#: plugins/ktcore/admin/workflows.php:308
msgid "Error saving state enabled actions"
msgstr ""
#: plugins/ktcore/admin/workflows.php:536
msgid "Error saving transition"
msgstr ""
#: plugins/ktcore/admin/workflows.php:294
msgid "Error saving transitions"
msgstr ""
#: plugins/ktcore/admin/workflows.php:136
msgid "Error saving workflow"
msgstr ""
#: plugins/ktcore/admin/workflows.php:177
msgid "Error saving workflow controlled actions"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:495
msgid "Error setting master field"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:93
msgid "Error updating item"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:57
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:338
msgid "Existing Fieldsets"
msgstr ""
#: i18n/templates.c:413
msgid "Existing Searches"
msgstr ""
#: i18n/templates.c:1709
msgid "Existing document fieldsets"
msgstr ""
#: i18n/templates.c:1274
msgid "Existing document types"
msgstr ""
#: i18n/templates.c:1784
msgid "Existing generic document fields"
msgstr ""
#: i18n/templates.c:1433 i18n/templates.c:1511 i18n/templates.c:1754
msgid "Existing members"
msgstr ""
#: i18n/templates.c:1649
msgid "Existing ordering"
msgstr ""
#: i18n/templates.c:2
msgid "Existing permissions"
msgstr ""
#: i18n/templates.c:1976
msgid "Existing sources"
msgstr ""
#: i18n/templates.c:1826
msgid "Existing states"
msgstr ""
#: i18n/templates.c:2276
msgid "Existing threads"
msgstr ""
#: i18n/templates.c:1841
msgid "Existing transitions"
msgstr ""
#: i18n/templates.c:1859
msgid "Existing workflows"
msgstr ""
#: bin/generate-buttons.php:28 i18n/templates.c:1208
msgid "Expunge"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:304
#, php-format
msgid "Failed to add %s to %s"
msgstr ""
#: plugins/ktcore/KTPermissions.php:372 plugins/ktcore/KTPermissions.php:414
msgid "Failed to change the role allocation."
msgstr ""
#: plugins/ktcore/KTPermissions.php:212
msgid "Failed to create the role allocation."
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:55
msgid "Failed to delete search"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:113
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 ""
#: browse.php:455
msgid "Failed to move the folder: "
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:315
#, php-format
msgid "Failed to remove %s from %s"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:191
msgid "Failed to restore"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:115
msgid "Failed to set group details."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:60
msgid "Failed to update org name."
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:66
msgid "Failed to update unit name."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:207
#: plugins/ktcore/admin/userManagement.php:342 preferences.php:105
msgid "Failed to update user."
msgstr ""
#: preferences.php:147
msgid "Failed to update your details."
msgstr ""
#: lib/foldermanagement/folderutil.inc.php:210
msgid "Failure deleting folders."
msgstr ""
#: plugins/ktcore/KTPermissions.php:465
msgid "Failure to generate folderlisting."
msgstr ""
#: i18n/templates.c:476 i18n/templates.c:1019
msgid "False"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:470
msgid "Field cannot be its own parent field"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:192
#: plugins/ktcore/admin/documentFields.php:194
msgid "Field created"
msgstr ""
#: i18n/templates.c:62 i18n/templates.c:299
msgid "Field has conditions attached to it."
msgstr ""
#: i18n/templates.c:1646
msgid "Field ordering"
msgstr ""
#: i18n/templates.c:1532
msgid "Field properties"
msgstr ""
#: i18n/templates.c:1718 i18n/templates.c:1793
msgid "Fields"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:479
msgid "Fields ordered"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:385
msgid "Fields removed"
msgstr ""
#: i18n/templates.c:1343
msgid "Fields that have lookup categories."
msgstr ""
#: i18n/templates.c:32 i18n/templates.c:44 i18n/templates.c:269
#: i18n/templates.c:281
msgid "Fields which are currently not included in any set can be added to this set."
msgstr ""
#: i18n/templates.c:1295 i18n/templates.c:1415 i18n/templates.c:1460
#: i18n/templates.c:1736
msgid "Fieldset"
msgstr ""
#: i18n/templates.c:71 i18n/templates.c:308
msgid "Fieldset cannot be made conditional. One of the fields must not be a lookup."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:151
msgid "Fieldset created"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:559
msgid "Fieldset deleted"
msgstr ""
#: i18n/templates.c:1430 i18n/templates.c:1505 i18n/templates.c:1751
msgid "Fieldset members"
msgstr ""
#: i18n/templates.c:1418 i18n/templates.c:1469 i18n/templates.c:1739
msgid "Fieldset properties"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:152
msgid "Fieldsets associated."
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:133
msgid "Fieldsets removed."
msgstr ""
#: i18n/templates.c:1589
msgid "Fieldsets that are marked as conditional."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:189
#: plugins/ktcore/folder/addDocument.php:43
msgid "File"
msgstr ""
#: lib/browse/Criteria.inc:645
msgid "File Size"
msgstr ""
#: i18n/templates.c:2129 i18n/templates.c:2156
msgid "File is a"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:209
msgid "File uploads are disabled in your PHP configuration"
msgstr ""
#: i18n/templates.c:578 i18n/templates.c:581 i18n/templates.c:605
#: i18n/templates.c:608 i18n/templates.c:728 i18n/templates.c:731
#: i18n/templates.c:839 i18n/templates.c:842 i18n/templates.c:869
#: i18n/templates.c:872
msgid "Filter"
msgstr ""
#: i18n/templates.c:122
msgid "Find out what's new in <strong>KT 3</strong>."
msgstr ""
#: plugins/ktcore/KTPortlets.php:48 i18n/templates.c:1325
msgid "Folder"
msgstr ""
#: browse.php:121
msgid "Folder Actions"
msgstr ""
#: lib/dashboard/Notification.inc.php:154
#: lib/subscriptions/subscriptions.inc.php:643
msgid "Folder added"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:27
msgid "Folder name"
msgstr ""
#: i18n/templates.c:446
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:218
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 ""
#: lib/foldermanagement/folderutil.inc.php:188
msgid "Folders: "
msgstr ""
#: i18n/templates.c:1097
msgid "Force Checkin"
msgstr ""
#: i18n/templates.c:1127
msgid "From this panel you can edit or delete existing link types."
msgstr ""
#: i18n/templates.c:1715 i18n/templates.c:1790
msgid "Generic"
msgstr ""
#: i18n/templates.c:2123 i18n/templates.c:2150
msgid "Generic Information"
msgstr ""
#: i18n/templates.c:467 i18n/templates.c:482
msgid "Group"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:372
#, php-format
msgid "Group \"%s\" created."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:383
#, php-format
msgid "Group \"%s\" deleted."
msgstr ""
#: i18n/templates.c:773
msgid "Group Administration"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:15
#: plugins/ktcore/admin/groupManagement.php:17
#: plugins/ktcore/admin/groupManagement.php:48
#: plugins/ktcore/admin/groupManagement.php:332
msgid "Group Management"
msgstr ""
#: i18n/templates.c:647
msgid "Group Memberships"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:26
#: plugins/ktcore/admin/groupManagement.php:60
#: plugins/ktcore/admin/groupManagement.php:339 i18n/templates.c:785
msgid "Group Name"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:118
msgid "Group details updated."
msgstr ""
#: i18n/templates.c:656 i18n/templates.c:1883
msgid "Groups"
msgstr ""
#: i18n/templates.c:824
msgid "Groups may contain other groups, allowing for a convenient way to build tree's of users and efficiently assign security privileges."
msgstr ""
#: i18n/templates.c:542
msgid "Groups:"
msgstr ""
#: plugins/ktcore/admin/workflows.php:464
msgid "Guard Condition."
msgstr ""
#: plugins/ktcore/admin/workflows.php:446
msgid "Guard Group."
msgstr ""
#: plugins/ktcore/admin/workflows.php:85
#: plugins/ktcore/admin/workflows.php:438
msgid "Guard Permission."
msgstr ""
#: plugins/ktcore/admin/workflows.php:454
msgid "Guard Role."
msgstr ""
#: lib/alert/AlertContent.inc:116
#, php-format
msgid "Hello %s"
msgstr ""
#: config/siteMap.inc:55 help.php:39
msgid "Help"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:20
#: plugins/ktcore/admin/manageHelp.php:22
#: plugins/ktcore/admin/manageHelp.php:37
msgid "Help Administration"
msgstr ""
#: i18n/templates.c:92
msgid "Help! Something went wrong!"
msgstr ""
#: dashboard.php:64
msgid "Home"
msgstr ""
#: i18n/templates.c:341
msgid "Human Name"
msgstr ""
#: lib/browse/Criteria.inc:639
msgid "ID"
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 ""
#: preferences.php:35
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:86
msgid "If this is your first KnowledgeTree installation, or if you've just upgraded from KnowledgeTree 2.x, we've put together some information to help you familiarise yourself with the new system."
msgstr ""
#: i18n/templates.c:116
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:221
msgid "If you do not intend to add a folder, you should <a href=\"#link#\">cancel this action</a>."
msgstr ""
#: i18n/templates.c:206
msgid "If you do not intend to archive this document, you should <a href=\"#link#\">cancel the archive</a>."
msgstr ""
#: i18n/templates.c:161
msgid "If you do not intend to delete this document, you should <a href=\"#link#\">cancel the deletion</a>."
msgstr ""
#: i18n/templates.c:131 i18n/templates.c:143
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:173 i18n/templates.c:194
msgid "If you do not intend to move this document, you should <a href=\"#link#\">cancel the move</a>."
msgstr ""
#: i18n/templates.c:497
msgid "Import"
msgstr ""
#: i18n/templates.c:512
msgid "In many cases, workflow actions will be assigned to certain <strong>roles</strong> (e.g. Manager, Interviewer, Researcher, Journalist). You can assign these roles to specific groups in particular areas of the document management system."
msgstr ""
#: i18n/templates.c:1163
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:2267
msgid "In some circumstances it is useful to view all documents of a given <strong>document type</strong>. Select a <strong>document type</strong> from the list below to view all relevant documents."
msgstr ""
#: i18n/templates.c:1463
msgid "Incomplete"
msgstr ""
#: i18n/templates.c:1874
msgid "Inform Which Users?"
msgstr ""
#: i18n/templates.c:1022
msgid "Inherited from"
msgstr ""
#: i18n/templates.c:458
msgid "Inherited from:"
msgstr ""
#: i18n/templates.c:671
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 ""
#: browse.php:509
msgid "Invalid Document selected."
msgstr ""
#: edit.php:102 edit.php:153 edit.php:222
msgid "Invalid Document."
msgstr ""
#: browse.php:501
msgid "Invalid Folder selected."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:26
msgid "Invalid Organisation"
msgstr ""
#: plugins/ktcore/KTPermissions.php:195 plugins/ktcore/KTPermissions.php:224
msgid "Invalid Role."
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:55
#: plugins/ktcore/admin/deletedDocuments.php:81
#: plugins/ktcore/admin/deletedDocuments.php:131
msgid "Invalid document id specified. Aborting expunge"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:155
msgid "Invalid document id specified. Aborting restore"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:48
#: plugins/ktcore/admin/archivedDocuments.php:74
msgid "Invalid document id specified. Aborting restore."
msgstr ""
#: view.php:280
msgid "Invalid document to compare against."
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:56
#: plugins/ktcore/folder/BulkUpload.php:71
msgid "Invalid document type provided"
msgstr ""
#: edit.php:237
msgid "Invalid document type specified for change."
msgstr ""
#: browse.php:396
msgid "Invalid document."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:576
msgid "Invalid field."
msgstr ""
#: browse.php:279
msgid "Invalid folder selected."
msgstr ""
#: browse.php:451
msgid "Invalid folder."
msgstr ""
#: plugins/ktcore/admin/workflows.php:333
msgid "Invalid groups specified"
msgstr ""
#: help.php:60 help.php:61 help.php:86 help.php:87
msgid "Invalid help location specified."
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:43
#, php-format
msgid "Invalid identifier provided for: %s"
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:59
msgid "Invalid path provided"
msgstr ""
#: plugins/ktcore/admin/workflows.php:326
msgid "Invalid roles specified"
msgstr ""
#: edit.php:133
msgid "Invalid type selected."
msgstr ""
#: plugins/ktcore/admin/workflows.php:340
msgid "Invalid users specified"
msgstr ""
#: i18n/templates.c:1061
msgid "It may be necessary to override the <strong>checked-out</strong> status of a document if: <ul> <li>the local copy of the checked-out document has been lost;</li> <li>the user who did the check-out is not currently available to check it back in.</li> </ul> Use the <strong>force checkin</strong> action in the listing below to override the checked-out status."
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:70
msgid "Item deleted"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:95
msgid "Item updated"
msgstr ""
#: i18n/templates.c:77
msgid "Items that require your attention"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:607
msgid "Keyword moved to base of tree."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:602
msgid "Keywords added to category."
msgstr ""
#: i18n/templates.c:884
msgid "KnowledgeTree allows administrators the ability to create <strong>Units</strong> that model the organisation's business units. Units may have their own administrators and users and groups may be assigned to these units."
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:2366
msgid "LDAP User Name"
msgstr ""
#: browse.php:162 search/simpleSearch.php:68 search/simpleSearch.php:69
#: search/booleanSearch.php:87 search/booleanSearch.php:88
msgid "Last Modified"
msgstr ""
#: i18n/templates.c:2291
msgid "Last activity"
msgstr ""
#: i18n/templates.c:2135 i18n/templates.c:2165
msgid "Last update by"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:97
msgid "Link Type Management"
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:129
msgid "Link Type created."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:113
msgid "Link Type updated."
msgstr ""
#: i18n/templates.c:323
msgid "Link free keywords."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:148
msgid "Link types deleted."
msgstr ""
#: i18n/templates.c:1292
msgid "Linked Fieldsets"
msgstr ""
#: i18n/templates.c:1070 i18n/templates.c:1088 i18n/templates.c:1169
#: i18n/templates.c:1190
msgid "Location"
msgstr ""
#: bin/generate-buttons.php:41 i18n/templates.c:1358
msgid "Login"
msgstr ""
#: login.php:115 login.php:126
msgid "Login failed. Please check your username and password, and try again."
msgstr ""
#: config/siteMap.inc:58 lib/templating/kt3template.inc.php:83
msgid "Logout"
msgstr ""
#: i18n/templates.c:1451 i18n/templates.c:1772
msgid "Lookup"
msgstr ""
#: i18n/templates.c:1547
msgid "Lookup Values"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:257
msgid "Lookup added"
msgstr ""
#: i18n/templates.c:1352
msgid "Lookup fields without categories."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:343
msgid "Lookup stickiness toggled"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:306
msgid "Lookups disabled"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:324
msgid "Lookups enabled"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:288
msgid "Lookups removed"
msgstr ""
#: i18n/templates.c:53 i18n/templates.c:290
msgid "Make this fieldset conditional"
msgstr ""
#: i18n/templates.c:347
msgid "Manage"
msgstr ""
#: i18n/templates.c:1124
msgid "Manage Existing Link Types"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:68
msgid "Manage Groups"
msgstr ""
#: plugins/ktcore/KTPermissions.php:301 plugins/ktcore/KTPermissions.php:302
#, php-format
msgid "Manage Groups for Role"
msgstr ""
#: i18n/templates.c:1340
msgid "Manage Lookup Trees"
msgstr ""
#: i18n/templates.c:905 i18n/templates.c:911
msgid "Manage Members"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:11
#: plugins/ktcore/admin/managePermissions.php:12
msgid "Manage Permissions"
msgstr ""
#: i18n/templates.c:821
msgid "Manage Sub-Groups in #name#"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:65 i18n/templates.c:794
#: i18n/templates.c:809
msgid "Manage Users"
msgstr ""
#: plugins/ktcore/KTPermissions.php:255 plugins/ktcore/KTPermissions.php:256
#, php-format
msgid "Manage Users for Role"
msgstr ""
#: i18n/templates.c:851 i18n/templates.c:857
msgid "Manage Users in #name#"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:57
msgid "Manage checked-out, archived and deleted documents."
msgstr ""
#: plugins/ktcore/admin/manageConditionals.php:102 i18n/templates.c:1616
msgid "Manage complex conditional"
msgstr ""
#: i18n/templates.c:1493
msgid "Manage conditional"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:447
msgid "Manage conditional field"
msgstr ""
#: plugins/ktcore/admin/manageConditionals.php:64
#: plugins/ktcore/admin/manageConditionals.php:100 i18n/templates.c:1595
msgid "Manage conditional fieldset"
msgstr ""
#: i18n/templates.c:65 i18n/templates.c:302
msgid "Manage conditions."
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:84
msgid "Manage criteria which determine whether a user is permitted to perform a system action."
msgstr ""
#: i18n/templates.c:1556
msgid "Manage lookup tree"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:231
#, php-format
msgid "Manage members of %s"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:131
#, php-format
msgid "Manage members of group %s"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:125
msgid "Manage plugins"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:122
msgid "Manage saved searches - searches available by default to all users."
msgstr ""
#: plugins/ktcore/admin/manageConditionals.php:66 i18n/templates.c:1625
msgid "Manage simple conditional"
msgstr ""
#: i18n/templates.c:797 i18n/templates.c:812
msgid "Manage sub-groups"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:82
msgid "Manage subscriptions"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:90
msgid "Manage the different classes of document which can be added to the system."
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:94
msgid "Manage the different types of information that can be associated with classes of documents."
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:98
msgid "Manage the different ways documents can be associated with one another."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:497
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:575
msgid "Member groups"
msgstr ""
#: i18n/templates.c:602 i18n/templates.c:866
msgid "Member users"
msgstr ""
#: i18n/templates.c:2024
msgid "Metadata Version"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:60
msgid "Miscellaneous"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:73
#: plugins/ktcore/admin/userManagement.php:124
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:144
#: preferences.php:36
msgid "Mobile Number"
msgstr ""
#: lib/alert/AlertContent.inc:59
msgid "Modified Document"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:54
#: 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:176 i18n/templates.c:185
#: i18n/templates.c:197 i18n/templates.c:200 i18n/templates.c:233
#: i18n/templates.c:239 i18n/templates.c:248 i18n/templates.c:257
#: i18n/templates.c:2042
msgid "Move"
msgstr ""
#: i18n/templates.c:230 i18n/templates.c:245
msgid "Move Files and Folders"
msgstr ""
#: bin/generate-buttons.php:39
msgid "Move Here"
msgstr ""
#: browse.php:343
msgid "Move cancelled."
msgstr ""
#: browse.php:461
msgid "Move completed."
msgstr ""
#: lib/alert/AlertContent.inc:62
msgid "Moved Document"
msgstr ""
#: i18n/templates.c:170 i18n/templates.c:191
msgid "Moving a document relocates the document within the document repository."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:589
msgid "Must enter a name for the new category."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:574
msgid "Must select a field to edit."
msgstr ""
#: lib/browse/Criteria.inc:624
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:15
#: plugins/ktcore/admin/documentTypes.php:23
#: 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:423
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:141
#: preferences.php:33 i18n/templates.c:362 i18n/templates.c:635
#: i18n/templates.c:1136 i18n/templates.c:1421 i18n/templates.c:1442
#: i18n/templates.c:1535 i18n/templates.c:1712 i18n/templates.c:1742
#: i18n/templates.c:1763 i18n/templates.c:1787 i18n/templates.c:1985
#: i18n/templates.c:2363
msgid "Name"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:121
msgid "Name changed."
msgstr ""
#: plugins/ktcore/admin/conditions.php:35
msgid "Name of condition"
msgstr ""
#: i18n/templates.c:344 i18n/templates.c:365 i18n/templates.c:1424
#: i18n/templates.c:1745
msgid "Namespace"
msgstr ""
#: bin/generate-buttons.php:31 i18n/templates.c:410 i18n/templates.c:437
msgid "New"
msgstr ""
#: lib/alert/AlertContent.inc:56
msgid "New Document"
msgstr ""
#: lib/alert/AlertContent.inc:53
msgid "New Folder"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:110
#: plugins/ktcore/admin/manageHelp.php:111
msgid "New Help File"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:40
msgid "New Saved Search"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:122
msgid "New thread created"
msgstr ""
#: i18n/templates.c:110
msgid "New to Document Management, or to KnowledgeTree™ 3? We've written some quick documentation to help you along"
msgstr ""
#: bin/generate-buttons.php:7
msgid "Next"
msgstr ""
#: i18n/templates.c:1481 i18n/templates.c:1727 i18n/templates.c:1802
msgid "No"
msgstr ""
#: i18n/templates.c:428
msgid "No Saved Searches have been defined."
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:50
msgid "No Such search"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:72
msgid "No Unit"
msgstr ""
#: browse.php:241 browse.php:338
msgid "No action selected."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:265
msgid "No action specified"
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:39
msgid "No action specified."
msgstr ""
#: i18n/templates.c:1979
msgid "No additional authentication sources have been defined."
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:63
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:88
msgid "No authentication provider chosen"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:90
#: plugins/ktstandard/KTDiscussion.php:186
msgid "No body provided"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:81
msgid "No description given"
msgstr ""
#: edit.php:98 edit.php:149 edit.php:218
msgid "No document specified for editing."
msgstr ""
#: i18n/templates.c:1076
msgid "No documents are currently checked out."
msgstr ""
#: i18n/templates.c:1175
msgid "No documents are marked as archived."
msgstr ""
#: i18n/templates.c:1214
msgid "No documents are marked as deleted."
msgstr ""
#: i18n/templates.c:2261
msgid "No documents or folders available in this location."
msgstr ""
#: i18n/templates.c:1196 i18n/templates.c:1229 i18n/templates.c:1247
msgid "No documents were selected."
msgstr ""
#: i18n/templates.c:35 i18n/templates.c:272
msgid "No fields associated with this fieldset."
msgstr ""
#: i18n/templates.c:1310
msgid "No fieldsets are available to be added. To add a fieldset, please go to DMS Administration"
msgstr ""
#: i18n/templates.c:1301
msgid "No fieldsets are currently associated with this type."
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:203
msgid "No file was selected to be uploaded to the document management system"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:205
msgid "No file was uploaded"
msgstr ""
#: browse.php:347
msgid "No folder selected."
msgstr ""
#: i18n/templates.c:47 i18n/templates.c:56 i18n/templates.c:284
#: i18n/templates.c:293
msgid "No free fields."
msgstr ""
#: i18n/templates.c:320
msgid "No free keywords. Use the \"unlink\" action on a keyword to make it available."
msgstr ""
#: help.php:51 help.php:52
msgid "No help page specified."
msgstr ""
#: i18n/templates.c:2036
msgid "No items in the category."
msgstr ""
#: i18n/templates.c:80
msgid "No items require your attention."
msgstr ""
#: i18n/templates.c:1157
msgid "No link administrator changeable link types available."
msgstr ""
#: plugins/ktcore/admin/documentFields.php:282
#: plugins/ktcore/admin/documentFields.php:299
#: plugins/ktcore/admin/documentFields.php:317
#: plugins/ktcore/admin/documentFields.php:335
msgid "No lookups selected"
msgstr ""
#: i18n/templates.c:1634
msgid "No master field is set, please select the master field"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:41 edit.php:227
msgid "No name given"
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:59
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:84
msgid "No name provided"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:418
msgid "No reason given"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:237
msgid "No reason provided"
msgstr ""
#: plugins/ktstandard/KTEmail.php:244
msgid "No recipients set"
msgstr ""
#: i18n/templates.c:560
msgid "No roles defined in the Role Administration area."
msgstr ""
#: i18n/templates.c:818
msgid "No search specified, or no results for your search."
msgstr ""
#: i18n/templates.c:659 i18n/templates.c:2360
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:86
#: plugins/ktstandard/KTDiscussion.php:182
msgid "No subject provided"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:322
msgid "No subscriptions were chosen"
msgstr ""
#: browse.php:250
msgid "No such action."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:126
#: plugins/ktcore/admin/groupManagement.php:177
#: plugins/ktcore/admin/groupManagement.php:226
msgid "No such group."
msgstr ""
#: plugins/ktcore/KTPermissions.php:251 plugins/ktcore/KTPermissions.php:297
#: plugins/ktcore/KTPermissions.php:343 plugins/ktcore/KTPermissions.php:385
msgid "No such role allocation."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:237
msgid "No such user."
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:87
msgid "No title given"
msgstr ""
#: i18n/templates.c:1913
msgid "No transitions defined."
msgstr ""
#: i18n/templates.c:1904
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:1934 i18n/templates.c:2144 i18n/templates.c:2174
#: i18n/templates.c:2177
msgid "No workflow"
msgstr ""
#: i18n/templates.c:1448 i18n/templates.c:1769
msgid "Normal"
msgstr ""
#: i18n/templates.c:1130 i18n/templates.c:1181 i18n/templates.c:1217
#: i18n/templates.c:1235
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:155
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:430
msgid "Once this transition is complete, which state should the document be in?"
msgstr ""
#: i18n/templates.c:1973
msgid "Only the standard database authentication is currently available. If you need to use a different authentication type (e.g. LDAP) you will need to ensure that the Plugin is enabled."
msgstr ""
#: i18n/templates.c:1655
msgid "Order"
msgstr ""
#: i18n/templates.c:1652
msgid "Order fields"
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:65
msgid "Org name changed to"
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:12
#: plugins/ktcore/admin/orgManagement.php:14
msgid "Organisation Management"
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:27 i18n/templates.c:923
msgid "Organisation Name"
msgstr ""
#: i18n/templates.c:914
msgid "Orgnisation Administration"
msgstr ""
#: i18n/templates.c:545
msgid "Override Parent Allocation"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:107
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 preferences.php:57
#: i18n/templates.c:1367
msgid "Password"
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:26
msgid "Path"
msgstr ""
#: i18n/templates.c:1958
msgid "Perform Transition"
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/KTCorePlugin.php:78
msgid "Permissions"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:143
#: plugins/ktcore/KTFolderActions.php:149
msgid "Permissions updated"
msgstr ""
#: i18n/templates.c:2051 i18n/templates.c:2057
msgid "Please note"
msgstr ""
#: i18n/templates.c:1379
msgid "Please be aware that - depending on your selections - new values may become available."
msgstr ""
#: i18n/templates.c:1472
msgid "Please complete the following fields to edit the fieldset's properties and then click <strong>Change</strong>. Required fields are marked with a red square."
msgstr ""
#: i18n/templates.c:665
msgid "Please complete the form below to add a new user. Fields marked with a red square are required. By default, users are created using KnowledgeTree's builtin authentication provider. Should you wish to use an external authentication provider such as LDAP, please ensure that the provider's plugin is registered and enabled."
msgstr ""
#: i18n/templates.c:695
msgid "Please complete the form below to edit the user. Fields marked with a red square are required. By default, users are created using KnowledgeTree's builtin authentication provider. Should you wish to use an external authentication provider such as LDAP, please ensure that the provider's plugin is registered and enabled."
msgstr ""
#: i18n/templates.c:1082
msgid "Please confirm that this is the document that you wish to check-in."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:104
#: plugins/ktcore/admin/documentLinks.php:121
msgid "Please enter information for all fields."
msgstr ""
#: i18n/templates.c:764
msgid "Please enter the Group's details below and then click <strong>create group</strong>. Fields marked with a red square are required."
msgstr ""
#: i18n/templates.c:1361
msgid "Please enter your details below to login."
msgstr ""
#: login.php:110
msgid "Please enter your password."
msgstr ""
#: login.php:106
msgid "Please enter your username."
msgstr ""
#: i18n/templates.c:623
msgid "Please give a reason for deleting these files. This will be recorded in the documents' \"Transaction History\""
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:73
#: plugins/ktcore/admin/roleManagement.php:95
msgid "Please give the role a name."
msgstr ""
#: i18n/templates.c:236
msgid "Please give these final details."
msgstr ""
#: i18n/templates.c:518
msgid "Please note that changing role allocations may take a some time, depending on the number of folders below this one."
msgstr ""
#: search/simpleSearch.php:55
msgid "Please provide a search term"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:113
#: plugins/ktcore/admin/userManagement.php:158
#: plugins/ktcore/admin/userManagement.php:404
#: plugins/ktcore/admin/userManagement.php:415
msgid "Please select a user first."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:195
#: plugins/ktcore/admin/userManagement.php:323
msgid "Please select a user to modify first."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:54
#: plugins/ktcore/admin/groupManagement.php:92
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:136
msgid "Please select one or more link types to delete."
msgstr ""
#: i18n/templates.c:1877
msgid "Please select which roles or groups should be informed when this state is reached."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:66
msgid "Please specify a link type to edit."
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:97
msgid "Please specify a link type to update."
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:95
#: plugins/ktcore/admin/groupManagement.php:355
msgid "Please specify a name for the group."
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:58
msgid "Please specify a unit name."
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:52
msgid "Please specify a unit."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:52
msgid "Please specify an org name."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:46
msgid "Please specify an organisation."
msgstr ""
#: plugins/ktcore/admin/plugins.php:19
msgid "Plugins"
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:119
msgid "Possible cause"
msgstr ""
#: i18n/templates.c:2306 i18n/templates.c:2309 i18n/templates.c:2324
msgid "Post a reply"
msgstr ""
#: i18n/templates.c:2318
msgid "Posted"
msgstr ""
#: config/siteMap.inc:52 lib/templating/kt3template.inc.php:82
#: lib/templating/kt3template.inc.php:183 preferences.php:18
msgid "Preferences"
msgstr ""
#: i18n/templates.c:332
msgid "Preview"
msgstr ""
#: bin/generate-buttons.php:8
msgid "Previous"
msgstr ""
#: i18n/templates.c:1376
msgid "Project Details"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:274
#, php-format
msgid "Provided variable %s is not a valid %s"
msgstr ""
#: i18n/templates.c:1988
msgid "Provider"
msgstr ""
#: i18n/templates.c:1994
msgid "Provider configuration"
msgstr ""
#: lib/authentication/authenticationprovider.inc.php:56
#: lib/authentication/authenticationprovider.inc.php:60
msgid "Provider does not support editing"
msgstr ""
#: bin/generate-buttons.php:23
msgid "Publish"
msgstr ""
#: i18n/templates.c:2192
msgid "Read Document"
msgstr ""
#: i18n/templates.c:119
msgid "Read the admin introduction."
msgstr ""
#: browse.php:353 browse.php:473 plugins/ktcore/KTDocumentActions.php:82
#: plugins/ktcore/KTDocumentActions.php:266
#: plugins/ktcore/KTDocumentActions.php:406
#: plugins/ktcore/KTDocumentActions.php:521
#: plugins/ktstandard/KTDiscussion.php:154
msgid "Reason"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:592
msgid "Reason for transition"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:125
msgid "Register new plugins, disable plugins, and so forth"
msgstr ""
#: bin/generate-buttons.php:13
msgid "Reject"
msgstr ""
#: bin/generate-buttons.php:25 i18n/templates.c:38 i18n/templates.c:275
#: i18n/templates.c:1568 i18n/templates.c:1580
msgid "Remove"
msgstr ""
#: i18n/templates.c:1154
msgid "Remove Link Type(s)"
msgstr ""
#: i18n/templates.c:1496
msgid "Remove conditional"
msgstr ""
#: i18n/templates.c:1436 i18n/templates.c:1517 i18n/templates.c:1757
msgid "Remove fields"
msgstr ""
#: i18n/templates.c:2336
msgid "Remove subscription"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:214
#: plugins/ktcore/admin/groupManagement.php:323
msgid "Removed"
msgstr ""
#: lib/alert/AlertContent.inc:57 lib/alert/AlertContent.inc:58
msgid "Removed Document"
msgstr ""
#: lib/alert/AlertContent.inc:54 lib/alert/AlertContent.inc:55
msgid "Removed Folder"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:455
msgid "Removed from groups"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:105
msgid "Replacement already exists."
msgstr ""
#: i18n/templates.c:2288
msgid "Replies"
msgstr ""
#: bin/generate-buttons.php:30
msgid "Reply"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:210
msgid "Reply posted"
msgstr ""
#: i18n/templates.c:2099 i18n/templates.c:2102 i18n/templates.c:2105
#: i18n/templates.c:2108 i18n/templates.c:2111 i18n/templates.c:2114
#: i18n/templates.c:2117 i18n/templates.c:2120
msgid "Required"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:229
#, php-format
msgid "Required value %s not set"
msgstr ""
#: bin/generate-buttons.php:32
msgid "Reset"
msgstr ""
#: bin/generate-buttons.php:26 i18n/templates.c:1211
msgid "Restore"
msgstr ""
#: bin/generate-buttons.php:29
msgid "Restore Here"
msgstr ""
#: i18n/templates.c:1172
msgid "Restore from Archive"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:110
msgid "Restore old (archived) documents, usually at a user's request."
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:113
msgid "Restore or Expunge Deleted Documents"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:113
msgid "Restore previously deleted documents, or permanently expunge them."
msgstr ""
#: lib/alert/AlertContent.inc:64
msgid "Restored Document"
msgstr ""
#: i18n/templates.c:1328
msgid "Restrict document types"
msgstr ""
#: i18n/templates.c:374 i18n/templates.c:1388
msgid "Return items which match #options# of the <strong>criteria groups</strong> specified."
msgstr ""
#: i18n/templates.c:380
msgid "Return items which match #options# of the criteria specified below."
msgstr ""
#: i18n/templates.c:1394
msgid "Return items which match #options# of the criteria specified."
msgstr ""
#: i18n/templates.c:521
msgid "Role"
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:932
msgid "Role Administration"
msgstr ""
#: plugins/ktcore/admin/roleManagement.php:39
#: plugins/ktcore/admin/roleManagement.php:40
msgid "Role Management"
msgstr ""
#: i18n/templates.c:950
msgid "Role Name"
msgstr ""
#: plugins/ktcore/KTPermissions.php:217
msgid "Role allocation created."
msgstr ""
#: plugins/ktcore/KTPermissions.php:243
msgid "Role now uses parent."
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:80 i18n/templates.c:1880
msgid "Roles"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:38
#: plugins/ktcore/admin/conditions.php:37 i18n/templates.c:1871
#: i18n/templates.c:1889 i18n/templates.c:1910 i18n/templates.c:1925
#: i18n/templates.c:2339 i18n/templates.c:2342
msgid "Save"
msgstr ""
#: i18n/templates.c:2006
msgid "Save Changes"
msgstr ""
#: search/booleanSearch.php:74
msgid "Saved Search"
msgstr ""
#: search/booleanSearch.php:75
msgid "Saved Search: "
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:15
msgid "Saved Searches"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:121 i18n/templates.c:401
msgid "Saved searches"
msgstr ""
#: i18n/templates.c:404
msgid "Saved searches are searches which are particular to your location For example, you could define a search which returns all documents in a particular workflow state, or all documents which are considered \"common\" within your organisation (leave policy, newsletters, etc.) based on a category or fieldset value."
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:219
msgid "Saving metadata"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:403
msgid "Scanning file"
msgstr ""
#: bin/generate-buttons.php:19 lib/templating/kt3template.inc.php:180
#: plugins/ktcore/KTPortlets.php:11 i18n/templates.c:398 i18n/templates.c:1412
msgid "Search"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:58
msgid "Search Deleted"
msgstr ""
#: i18n/templates.c:416
msgid "Search Name"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:94
msgid "Search Password"
msgstr ""
#: search/booleanSearch.php:72
msgid "Search Results"
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:93
msgid "Search User"
msgstr ""
#: i18n/templates.c:776
msgid "Search for groups"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:141
#: plugins/ktcore/admin/savedSearch.php:171
#: plugins/ktcore/admin/conditions.php:118
#: plugins/ktcore/admin/conditions.php:148
msgid "Search not saved"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:143
#: plugins/ktcore/admin/savedSearch.php:173
#: plugins/ktcore/admin/conditions.php:120
#: plugins/ktcore/admin/conditions.php:150
msgid "Search saved"
msgstr ""
#: lib/browse/Criteria.inc:657
msgid "Searchable Text"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:52
msgid "Security Management"
msgstr ""
#: bin/generate-buttons.php:16
msgid "Select"
msgstr ""
#: i18n/templates.c:1583
msgid "Select Fieldset"
msgstr ""
#: i18n/templates.c:1682
msgid "Select a behaviour from this list to change the items which are available."
msgstr ""
#: i18n/templates.c:1277
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:1829
msgid "Select a state to update its properties."
msgstr ""
#: i18n/templates.c:1862
msgid "Select a workflow to modify."
msgstr ""
#: i18n/templates.c:1322
msgid "Select document types allowed in folder"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:87
msgid "Select the fieldsets which you wish to associate with this document type"
msgstr ""
#: i18n/templates.c:830
msgid "Select the groups from the left-hand list that you would like to add to this group and then click the <strong>right pointing arrows</strong>. Once you have added all the groups that you require, press <strong>save changes</strong>. Only groups that are logically capable of being included in this group will be available to be added."
msgstr ""
#: i18n/templates.c:569
msgid "Select the groups which should be part of this role."
msgstr ""
#: i18n/templates.c:719
msgid "Select the groups which this user should belong to from the left-hand list and then click the <strong>right pointing arrows</strong>. Once you have added all the groups that you require, press <strong>save changes</strong>."
msgstr ""
#: i18n/templates.c:1922
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:860
msgid "Select the users which should be part of this group from the left-hand list and then click the <strong>right pointing arrows</strong>. Once you have added all the users that you require, press <strong>save changes</strong>."
msgstr ""
#: i18n/templates.c:596
msgid "Select the users which should be part of this role."
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:443
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:1847
msgid "Set controlled actions"
msgstr ""
#: i18n/templates.c:1637
msgid "Set master field"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:515
msgid "Set to complete"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:62
#: plugins/ktcore/admin/groupManagement.php:341
msgid "Should all the members of this group be given <strong>system</strong> administration privileges?"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:61
#: plugins/ktcore/admin/groupManagement.php:340
msgid "Should all the members of this group be given <strong>unit</strong> administration privileges?"
msgstr ""
#: i18n/templates.c:1622
msgid "Simple"
msgstr ""
#: search/simpleSearch.php:47
msgid "Simple Search"
msgstr ""
#: i18n/templates.c:779
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 action may take some time if you have many groups)."
msgstr ""
#: i18n/templates.c:2354
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:629
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:101
msgid "Source created"
msgstr ""
#: i18n/templates.c:620
msgid "Specify Reason for Delete"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:70
#: plugins/ktcore/admin/userManagement.php:165
msgid "Specify an initial password for the user."
msgstr ""
#: i18n/templates.c:761
msgid "Specify group details"
msgstr ""
#: i18n/templates.c:1109
msgid "Specify the details for a new link type below."
msgstr ""
#: i18n/templates.c:1118
msgid "Specify the details for the link type below."
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:71
msgid "Specify which organisation units are available."
msgstr ""
#: preferences.php:57
msgid "Specify your new password."
msgstr ""
#: i18n/templates.c:1982
msgid "Standard configuration"
msgstr ""
#: i18n/templates.c:1943
msgid "Start Workflow"
msgstr ""
#: i18n/templates.c:1940
msgid "Start workflow on document"
msgstr ""
#: plugins/ktcore/admin/workflows.php:64
msgid "Starting State"
msgstr ""
#: i18n/templates.c:1865 i18n/templates.c:1952 i18n/templates.c:2294
msgid "State"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:204
msgid "Storing contents"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:67
#: plugins/ktstandard/KTDiscussion.php:145 i18n/templates.c:2279
msgid "Subject"
msgstr ""
#: bin/generate-buttons.php:27
msgid "Submit"
msgstr ""
#: bin/generate-buttons.php:11
msgid "Subscribe"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:301
msgid "Subscription Management"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:47 i18n/templates.c:2333
msgid "Subscriptions"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:352
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:62
#: plugins/ktcore/admin/groupManagement.php:341
msgid "System Administrators"
msgstr ""
#: plugins/ktcore/admin/managePermissions.php:15
msgid "System Name"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:405 i18n/templates.c:179
#: i18n/templates.c:251
msgid "Target folder"
msgstr ""
#: i18n/templates.c:68 i18n/templates.c:305
msgid "Test conditions"
msgstr ""
#: plugins/ktcore/folder/BulkUpload.php:41
msgid "The archive file containing the documents you wish to add to the document management system."
msgstr ""
#: i18n/templates.c:494
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:503
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:43
msgid "The contents of the document to be added to the document management system."
msgstr ""
#: lib/alert/AlertContent.inc:108
#, php-format
msgid "The document '%s' has been archived%s.<br>Please clear this subscription alert by clicking on the following link: "
msgstr ""
#: lib/alert/AlertContent.inc:96
#, php-format
msgid "The document '%s' has been checked in%s.<br>Please clear this subscription alert by clicking on the following link: "
msgstr ""
#: lib/alert/AlertContent.inc:100
#, php-format
msgid "The document '%s' has been checked out%s.<br>Please clear this subscription alert by clicking on the following link: "
msgstr ""
#: lib/alert/AlertContent.inc:92
#, php-format
msgid "The document '%s' has been modified%s.<br>Please clear this subscription alert by clicking on the following link: "
msgstr ""
#: lib/alert/AlertContent.inc:104
#, php-format
msgid "The document '%s' has been moved from folder '%s' to folder '%s'%s.<br>Please clear this subscription alert by clicking on the following link: "
msgstr ""
#: lib/alert/AlertContent.inc:89
#, php-format
msgid "The document '%s' has been removed from folder '%s'%s.<br>Your subscription to this document has been removed also."
msgstr ""
#: lib/alert/AlertContent.inc:85
#, php-format
msgid "The document '%s' has been removed from folder '%s'.<br>Please clear this subscription alert by clicking on the following link: "
msgstr ""
#: lib/alert/AlertContent.inc:112
#, php-format
msgid "The document '%s' has been restored from the archive%s.<br>Please clear this subscription alert by clicking on the following link: "
msgstr ""
#: lib/widgets/fieldsetDisplay.inc.php:278
msgid "The document title is used as the main name of a document throughout KnowledgeTree™."
msgstr ""
#: plugins/ktcore/folder/addDocument.php:44
msgid "The document title is used as the main name of a document throughout 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:152
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:212
msgid "The file name of the uploaded file does not match the file name of the document in the system"
msgstr ""
#: lib/alert/AlertContent.inc:77
#, php-format
msgid "The folder '%s' has been removed from folder '%s'%s.<br>Please clear this subscription alert by clicking on the following link: "
msgstr ""
#: lib/alert/AlertContent.inc:74
#, php-format
msgid "The folder '%s' has been removed from folder '%s'%s.<br>Your subscription to this folder has been removed also."
msgstr ""
#: i18n/templates.c:182
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 ""
#: browse.php:352
msgid "The folder which will contain the previously selected files and folders."
msgstr ""
#: i18n/templates.c:2003
msgid "The following document metadata is available for editing."
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:2126 i18n/templates.c:2153
msgid "The information in this section is stored by KnowledgeTree™ for every document."
msgstr ""
#: lib/widgets/fieldsetDisplay.inc.php:288
msgid "The information in this section is stored by 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:27
msgid "The name for the new folder."
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:27
msgid "The organisation's visible name. e.g. <strong>Tech Support</strong>"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:187
#: plugins/ktcore/admin/userManagement.php:370 preferences.php:80
msgid "The passwords you specified do not match."
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:26
msgid "The path containing the documents to be added to the document management system."
msgstr ""
#: browse.php:353
msgid "The reason for moving these documents and folders, for historical purposes."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:521
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:82
msgid "The reason for the checkout of this document for historical purposes, and to inform those who wish to check out this document."
msgstr ""
#: browse.php:473
msgid "The reason for the deletion of these documents and folders for historical purposes."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:406
msgid "The reason for this document to be moved."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:266
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:67
#: plugins/ktstandard/KTDiscussion.php:145
msgid "The topic of discussion in this thread"
msgstr ""
#: plugins/ktcore/authentication/authenticationadminpage.inc.php:24
msgid "The type of source (e.g. <strong>LDAP</strong>)"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:24
#: plugins/ktcore/admin/unitManagement.php:32
msgid "The unit's visible name. e.g. <strong>Tech Support</strong>"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:189
msgid "The updated document."
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:201
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:200
msgid "The uploaded file is larger than the PHP upload_max_filesize setting"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:202
msgid "The uploaded file was not fully uploaded to the document management system"
msgstr ""
#: i18n/templates.c:1094
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 KnowledgeTree. e.g. <strong>jsmith</strong>"
msgstr ""
#: i18n/templates.c:965
msgid "There are currently no roles created within the system."
msgstr ""
#: i18n/templates.c:2297
msgid "There are no existing threads for this document"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:534
msgid "There was a database error while trying to archive this file"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:117
msgid "There was a problem checking out the document."
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:584
msgid "There was a problem deleting the document from storage."
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:562
msgid "There was a problem deleting the document from the database."
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:115
#: plugins/ktstandard/KTSubscriptions.php:258
msgid "There was a problem subscribing you to this document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:145
msgid "There was a problem unsubscribing you from this document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:289
msgid "There was a problem unsubscribing you from this folder"
msgstr ""
#: browse.php:401 plugins/ktcore/KTDocumentActions.php:433
msgid "There was a problem updating the document's location in the database"
msgstr ""
#: browse.php:407 plugins/ktcore/KTDocumentActions.php:441
msgid "There was a problem updating the document's location in the repository storage"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:110
#: plugins/ktstandard/KTDiscussion.php:199
msgid "There was an error adding the comment to the thread"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:101
msgid "There was an error creating a new thread"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:116
#: plugins/ktstandard/KTDiscussion.php:204
#: plugins/ktstandard/KTDiscussion.php:249
msgid "There was an error updating the thread with the new comment"
msgstr ""
#: i18n/templates.c:1043
msgid "These documents are not on the filesystem"
msgstr ""
#: i18n/templates.c:1046
msgid "These documents have versions not on the filesystem"
msgstr ""
#: i18n/templates.c:1040
msgid "These folders are not on the filesystem"
msgstr ""
#: lib/dashboard/dashlet.inc.php:13
msgid "This Dashlet is incomplete."
msgstr ""
#: lib/email/Email.inc:213
msgid "This bug can be found on this page"
msgstr ""
#: i18n/templates.c:1661
msgid "This column is not active."
msgstr ""
#: i18n/templates.c:1466
msgid "This conditional fieldset cannot be used"
msgstr ""
#: i18n/templates.c:1598
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:255
#: plugins/ktcore/KTDocumentActions.php:334
msgid "This document can't be deleted because it is checked out"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:71
msgid "This document is already checked out"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:176
msgid "This document is checked out, but not by you"
msgstr ""
#: i18n/templates.c:1253
msgid "This document is currently of type #doctype#. If this is incorrect, you can change it here."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:171
msgid "This document is not checked out"
msgstr ""
#: i18n/templates.c:1601
msgid "This error prevents this fieldset from being set to complete"
msgstr ""
#: i18n/templates.c:1691
msgid "This field is not controlled by the currently active group."
msgstr ""
#: i18n/templates.c:1502
msgid "This fieldset cannot be made conditional, since it contains fields which are not lookup types."
msgstr ""
#: lib/browse/FolderBrowser.inc:112
msgid "This folder does not exist"
msgstr ""
#: i18n/templates.c:2180 i18n/templates.c:2186
msgid "This is the data assigned to the <strong>#name#</strong> aspect of this document."
msgstr ""
#: lib/dashboard/Notification.inc.php:111
msgid "This notification handler does not support publication."
msgstr ""
#: lib/templating/kt3template.inc.php:222
msgid "This page did not produce any content"
msgstr ""
#: i18n/templates.c:2015
msgid "This page lists versions of document metadata and allows you to compare a metadata version with the current metadata content."
msgstr ""
#: i18n/templates.c:2078
msgid "This page provides details of all activities that have been carried out on the document."
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:32
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 ""
#: plugins/ktstandard/KTDiscussion.php:255
msgid "Thread closed"
msgstr ""
#: lib/browse/Criteria.inc:627 lib/browse/BrowseColumns.inc.php:64
#: plugins/ktcore/folder/addDocument.php:44
msgid "Title"
msgstr ""
#: i18n/templates.c:1523
msgid "To add a new field, enter the field's name, description and field type below and then click <strong>Add field</strong>. If the field type requires additional lookup values you will be prompted to enter them."
msgstr ""
#: i18n/templates.c:74
msgid "To customise a help file, please visit that file via the help system and click on <strong>customise this help file</strong>."
msgstr ""
#: i18n/templates.c:1265
msgid "To start the process of creating a new document type, please enter a name for the type below."
msgstr ""
#: i18n/templates.c:1565 i18n/templates.c:1577
msgid "Toggle stickiness"
msgstr ""
#: i18n/templates.c:2075
msgid "Transaction History"
msgstr ""
#: lib/browse/Criteria.inc:654
msgid "Transaction Text"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:419
msgid "Transforming file"
msgstr ""
#: i18n/templates.c:1916
msgid "Transition"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:633
msgid "Transition performed"
msgstr ""
#: i18n/templates.c:1955
msgid "Transition to another workflow state"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:590
msgid "Transition to perform"
msgstr ""
#: i18n/templates.c:1832 i18n/templates.c:1898
msgid "Transitions"
msgstr ""
#: i18n/templates.c:1907
msgid "Transitions from this state"
msgstr ""
#: i18n/templates.c:1901
msgid "Transitions to this state"
msgstr ""
#: i18n/templates.c:1454 i18n/templates.c:1775
msgid "Tree"
msgstr ""
#: i18n/templates.c:473 i18n/templates.c:1016
msgid "True"
msgstr ""
#: i18n/templates.c:1604
msgid "Try to set to complete"
msgstr ""
#: i18n/templates.c:1445 i18n/templates.c:1541 i18n/templates.c:1766
msgid "Type"
msgstr ""
#: i18n/templates.c:1289
msgid "Type-specific field sets"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:196
#, php-format
msgid "Unable to add user \"%s\" to group \"%s\""
msgstr ""
#: plugins/ktcore/admin/userManagement.php:437
#, php-format
msgid "Unable to add user to group \"%s\""
msgstr ""
#: plugins/ktcore/KTPermissions.php:238
msgid "Unable to change role allocation."
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:120
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/KTPermissions.php:479
msgid "Unable to get documents in folder: "
msgstr ""
#: plugins/ktcore/KTPermissions.php:473
msgid "Unable to locate folder: "
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:207
#, php-format
msgid "Unable to remove user \"%s\" from group \"%s\""
msgstr ""
#: plugins/ktcore/admin/userManagement.php:448
#, 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:1667
msgid "Unassigned/Unavailable"
msgstr ""
#: i18n/templates.c:1373
msgid "Undo change"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:76
msgid "Unit"
msgstr ""
#: i18n/templates.c:881
msgid "Unit Administration"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:61
#: plugins/ktcore/admin/groupManagement.php:340
msgid "Unit Administrators"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:14
#: plugins/ktcore/admin/unitManagement.php:16
msgid "Unit Management"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:24
#: plugins/ktcore/admin/unitManagement.php:32 i18n/templates.c:788
#: i18n/templates.c:899
msgid "Unit Name"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:71
#, php-format
msgid "Unit name changed to \"%s\""
msgstr ""
#: plugins/ktcore/admin/documentFields.php:271
msgid "Unknown action specified"
msgstr ""
#: lib/validation/errorviewer.inc.php:66
msgid "Unknown error"
msgstr ""
#: lib/validation/dispatchervalidation.inc.php:234
#, 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:455 i18n/templates.c:1031
msgid "Update"
msgstr ""
#: bin/generate-buttons.php:14
msgid "Update Password"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:99
#: plugins/ktcore/admin/conditions.php:77
msgid "Update Saved Search"
msgstr ""
#: i18n/templates.c:1817
msgid "Update workflow properties"
msgstr ""
#: i18n/templates.c:986
msgid "Update your details"
msgstr ""
#: i18n/templates.c:506
msgid "Upload"
msgstr ""
#: i18n/templates.c:533
msgid "Use Parent"
msgstr ""
#: i18n/templates.c:554 i18n/templates.c:557
msgid "Use parent's allocation"
msgstr ""
#: i18n/templates.c:464 i18n/templates.c:1028
msgid "Use parent's permissions"
msgstr ""
#: i18n/templates.c:335
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:254
msgid "Use the folder collection and path below to browse to the folder you wish to move the documents into."
msgstr ""
#: i18n/templates.c:2021 i18n/templates.c:2084
msgid "User"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:20
#: plugins/ktcore/admin/userManagement.php:22
#: plugins/ktcore/admin/userManagement.php:52
#: 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:408
msgid "User deleted"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:211
#: plugins/ktcore/admin/userManagement.php:346
msgid "User information updated."
msgstr ""
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:214
msgid "User's name"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:30
#: plugins/ktcore/admin/userManagement.php:66
#: plugins/ktcore/admin/userManagement.php:120
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:140
#: i18n/templates.c:638 i18n/templates.c:1364
msgid "Username"
msgstr ""
#: i18n/templates.c:1886
msgid "Users"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:50
msgid "Users and Groups"
msgstr ""
#: i18n/templates.c:854
msgid "Users may be associated with Groups which are then used to grant these users security privileges."
msgstr ""
#: i18n/templates.c:713 i18n/templates.c:746 i18n/templates.c:758
msgid "Users may be classed together as Groups and these groups may be used to set security privileges throughout the document management system."
msgstr ""
#: i18n/templates.c:539
msgid "Users:"
msgstr ""
#: lib/documentmanagement/documentutil.inc.php:620
msgid "Validation Failed"
msgstr ""
#: i18n/templates.c:386 i18n/templates.c:1400
msgid "Values"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:61
msgid "Various settings which do not fit into the other categories, including managing help and saved searches."
msgstr ""
#: i18n/templates.c:2045
msgid "Version Comparison"
msgstr ""
#: i18n/templates.c:2012
msgid "Version History"
msgstr ""
#: i18n/templates.c:449 i18n/templates.c:1010
msgid "View"
msgstr ""
#: config/siteMap.inc:38 i18n/templates.c:101 i18n/templates.c:2207
#: i18n/templates.c:2213 i18n/templates.c:2219
msgid "View Document"
msgstr ""
#: i18n/templates.c:2231 i18n/templates.c:2237
msgid "View Folder"
msgstr ""
#: i18n/templates.c:2198
msgid "View New Folder"
msgstr ""
#: i18n/templates.c:2225
msgid "View New Location"
msgstr ""
#: i18n/templates.c:425
msgid "View Results"
msgstr ""
#: i18n/templates.c:2285
msgid "Views"
msgstr ""
#: i18n/templates.c:515
msgid "Warning:"
msgstr ""
#: i18n/templates.c:83
msgid "Welcome to the KnowledgeTree 3 Beta"
msgstr ""
#: i18n/templates.c:89
msgid "What is 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:76
msgid "Which Unit is this group part of?"
msgstr ""
#: plugins/ktcore/admin/workflows.php:464
msgid "Which condition (stored search) must be satisfied before the transition can take place?"
msgstr ""
#: plugins/ktcore/admin/workflows.php:446
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:438
msgid "Which permission must the user have in order to follow this transition?"
msgstr ""
#: plugins/ktcore/admin/workflows.php:454
msgid "Which role must the user have in order to follow this transition?"
msgstr ""
#: i18n/templates.c:1895
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:1811 i18n/templates.c:1850 i18n/templates.c:1949
msgid "Workflow"
msgstr ""
#: browse.php:164
msgid "Workflow State"
msgstr ""
#: plugins/ktcore/admin/workflows.php:166
msgid "Workflow created"
msgstr ""
#: i18n/templates.c:1931
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:615
msgid "Workflow started"
msgstr ""
#: lib/browse/Criteria.inc:651
msgid "Workflow state"
msgstr ""
#: plugins/ktcore/admin/workflows.php:218
msgid "Workflow state created"
msgstr ""
#: i18n/templates.c:2141 i18n/templates.c:2171
msgid "Workflow status"
msgstr ""
#: plugins/ktcore/admin/workflows.php:405
msgid "Workflow transition created"
msgstr ""
#: plugins/ktcore/KTCorePlugin.php:101 plugins/ktcore/admin/workflows.php:29
#: plugins/ktcore/admin/workflows.php:89
#: plugins/ktcore/admin/workflows.php:243
#: plugins/ktcore/admin/workflows.php:469
msgid "Workflows"
msgstr ""
#: i18n/templates.c:1037
msgid "Would remove these files"
msgstr ""
#: i18n/templates.c:1034
msgid "Would remove these folders (and all their contents)"
msgstr ""
#: i18n/templates.c:1478 i18n/templates.c:1724 i18n/templates.c:1799
msgid "Yes"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:108
#: plugins/ktstandard/KTSubscriptions.php:251
msgid "You are already subscribed to that document"
msgstr ""
#: i18n/templates.c:2063 i18n/templates.c:2066
msgid "You are here"
msgstr ""
#: view.php:70 view.php:264
msgid "You are not allowed to view this document"
msgstr ""
#: i18n/templates.c:2330
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:197
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/ktstandard/KTDiscussion.php:234
msgid "You do not have permission to close this thread"
msgstr ""
#: lib/foldermanagement/folderutil.inc.php:190
msgid "You do not have permission to delete these items. "
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:424
msgid "You do not have permission to move a document to this location"
msgstr ""
#: browse.php:383
msgid "You do not have permission to move items to this location"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:113
#: plugins/ktstandard/KTSubscriptions.php:256
msgid "You have been subscribed to this document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:143
msgid "You have been unsubscribed from this document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:287
msgid "You have been unsubscribed from this folder"
msgstr ""
#: i18n/templates.c:104
msgid "You have no documents which are currently checked out."
msgstr ""
#: i18n/templates.c:2327
msgid "You have no subscriptions"
msgstr ""
#: i18n/templates.c:980
msgid "You may change details about yourself by editing the entries below. Once you have completed the form, click on <strong>Update your details</strong>."
msgstr ""
#: i18n/templates.c:968
msgid "You may change your password by entering it in the fields below. Your system administrator may have defined certain rules (such as minimum password length) that your password must abide by."
msgstr ""
#: login.php:98
msgid "You must have cookies enabled to use the document management system."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:297
msgid "You must provide a name"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:302
msgid "You must provide a username"
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/documentTypes.php:142
msgid "You must select at least one fieldset"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:353
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:161
msgid "You must specify a name for the user."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:355
#: 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:368
msgid "You must specify a password for the user."
msgstr ""
#: preferences.php:78
msgid "You must specify a password."
msgstr ""
#: preferences.php:122
msgid "You must specify your name."
msgstr ""
#: browse.php:490
msgid "You must supply a reason"
msgstr ""
#: plugins/ktcore/admin/savedSearch.php:128
#: plugins/ktcore/admin/savedSearch.php:155
#: plugins/ktcore/admin/conditions.php:105
#: plugins/ktcore/admin/conditions.php:131 search/booleanSearch.php:60
msgid "You need to have at least 1 condition."
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:138
msgid "You were not subscribed to that document"
msgstr ""
#: plugins/ktstandard/KTSubscriptions.php:282
msgid "You were not subscribed to that folder"
msgstr ""
#: i18n/templates.c:95
msgid "Your Checked-out Documents"
msgstr ""
#: i18n/templates.c:971 i18n/templates.c:983
msgid "Your Details"
msgstr ""
#: preferences.php:48
msgid "Your Password"
msgstr ""
#: preferences.php:24
msgid "Your Preferences"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:68
#: plugins/ktstandard/KTDiscussion.php:146
msgid "Your contribution to the discussion in this thread"
msgstr ""
#: preferences.php:151
msgid "Your details have been updated."
msgstr ""
#: preferences.php:34
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 ""
#: preferences.php:33
msgid "Your full name. This is shown in reports and listings. e.g. <strong>John Smith</strong>"
msgstr ""
#: preferences.php:36
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 ""
#: preferences.php:109
msgid "Your password has been changed."
msgstr ""
#: preferences.php:87
#, php-format
msgid "Your password is too short - passwords must be at least %d characters long."
msgstr ""
#: plugins/ktcore/admin/userManagement.php:53
#: plugins/ktcore/admin/userManagement.php:95
msgid "add a new user"
msgstr ""
#: i18n/templates.c:1409
msgid "add another set of criteria"
msgstr ""
#: plugins/ktcore/folder/addDocument.php:39
#: plugins/ktcore/folder/addDocument.php:71
msgid "add document"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:24
msgid "add folder"
msgstr ""
#: i18n/templates.c:317
msgid "add new category"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:518
msgid "archiving"
msgstr ""
#: config/siteMap.inc:37
msgid "browse documents"
msgstr ""
#: plugins/ktcore/folder/BulkImport.php:23
msgid "bulk import"
msgstr ""
#: plugins/ktcore/folder/BulkUpload.php:38
msgid "bulk upload"
msgstr ""
#: i18n/templates.c:2321
msgid "by #name# at #date#"
msgstr ""
#: i18n/templates.c:1001
msgid "change password"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:151
msgid "change user password"
msgstr ""
#: view.php:270
msgid "compare versions"
msgstr ""
#: i18n/templates.c:2033
msgid "compare with current"
msgstr ""
#: i18n/templates.c:2189
msgid "conditional data."
msgstr ""
#: plugins/ktcore/admin/deletedDocuments.php:49
#, 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:42
#, php-format
msgid "confirm restore of %d documents"
msgstr ""
#: i18n/templates.c:1676
msgid "create behaviour"
msgstr ""
#: i18n/templates.c:767
msgid "create group"
msgstr ""
#: i18n/templates.c:938
msgid "create new role"
msgstr ""
#: i18n/templates.c:890
msgid "create new unit"
msgstr ""
#: i18n/templates.c:683 i18n/templates.c:2348
msgid "create user"
msgstr ""
#: search/booleanSearch.php:29
msgid "defining search"
msgstr ""
#: i18n/templates.c:1133
msgid "deleting a link type will delete <strong>all</strong> links of that type within the system."
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:62
#: plugins/ktstandard/KTDiscussion.php:134
msgid "discussion"
msgstr ""
#: view.php:81
msgid "document details"
msgstr ""
#: i18n/templates.c:1700
msgid "done"
msgstr ""
#: plugins/ktcore/admin/documentTypes.php:93 i18n/templates.c:1514
#: i18n/templates.c:1694
msgid "edit"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:202
#: plugins/ktcore/admin/documentFields.php:216
msgid "edit field"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:49
msgid "edit group"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:241
msgid "edit groups"
msgstr ""
#: i18n/templates.c:1148 i18n/templates.c:1151
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/KTDocumentActions.php:20
#, php-format
msgid "fDocumentId=%d"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:391
#: plugins/ktstandard/ldap/ldapauthenticationprovider.inc.php:186
msgid "failed to create user."
msgstr ""
#: i18n/templates.c:389 i18n/templates.c:1403
msgid "first select a type of query"
msgstr ""
#: i18n/templates.c:1073
msgid "force checkin"
msgstr ""
#: view.php:160 view.php:215
msgid "history"
msgstr ""
#: i18n/templates.c:536
msgid "inherited from parent folder."
msgstr ""
#: browse.php:110 edit.php:62
msgid "invalid folder"
msgstr ""
#: plugins/ktcore/admin/archivedDocuments.php:21
msgid "list"
msgstr ""
#: plugins/ktcore/admin/documentCheckout.php:42
msgid "list checked out documents"
msgstr ""
#: i18n/templates.c:1370
msgid "login"
msgstr ""
#: presentation/lookAndFeel/knowledgeTree/noAccess.php:29
msgid "logout"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:130
#: plugins/ktcore/admin/groupManagement.php:230
msgid "manage members"
msgstr ""
#: i18n/templates.c:2147
msgid "manage workflow"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:106
msgid "modify user details"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:345
#: plugins/ktcore/KTDocumentActions.php:397
msgid "move"
msgstr ""
#: i18n/templates.c:1268
msgid "new"
msgstr ""
#: plugins/ktcore/KTPermissions.php:176
msgid "no groups"
msgstr ""
#: i18n/templates.c:2183
msgid "no value"
msgstr ""
#: i18n/templates.c:803
msgid "not part of a unit"
msgstr ""
#: i18n/templates.c:1220
msgid "please confirm that you want to delete these documents."
msgstr ""
#: i18n/templates.c:1184
msgid "please confirm that you want to restore these documents from an archived state."
msgstr ""
#: i18n/templates.c:1238
msgid "please confirm that you want to restore these documents."
msgstr ""
#: i18n/templates.c:1382 i18n/templates.c:1697
msgid "save"
msgstr ""
#: i18n/templates.c:584 i18n/templates.c:611 i18n/templates.c:698
#: i18n/templates.c:734 i18n/templates.c:845 i18n/templates.c:875
msgid "save changes"
msgstr ""
#: i18n/templates.c:749
msgid "save changes to group"
msgstr ""
#: i18n/templates.c:2255
msgid "search"
msgstr ""
#: i18n/templates.c:782
msgid "search for groups"
msgstr ""
#: i18n/templates.c:632 i18n/templates.c:2357
msgid "search for users"
msgstr ""
#: plugins/ktcore/admin/groupManagement.php:16
msgid "select a group"
msgstr ""
#: plugins/ktcore/admin/orgManagement.php:13
msgid "select a organisation"
msgstr ""
#: plugins/ktcore/admin/manageHelp.php:21
msgid "select a section"
msgstr ""
#: plugins/ktcore/admin/unitManagement.php:15
msgid "select a unit"
msgstr ""
#: plugins/ktcore/admin/userManagement.php:21
msgid "select a user"
msgstr ""
#: i18n/templates.c:2048
msgid "showing comparison between versions #from# and #to#"
msgstr ""
#: i18n/templates.c:2009 i18n/templates.c:2072
msgid "showing information for <strong>version #version#</strong>"
msgstr ""
#: plugins/ktcore/admin/workflows.php:250
msgid "state"
msgstr ""
#: i18n/templates.c:1559
msgid "stuck, will never be disabled when synchronising from another source"
msgstr ""
#: i18n/templates.c:1571
msgid "stuck, will never be enabled when synchronising from another source"
msgstr ""
#: i18n/templates.c:2054 i18n/templates.c:2060
msgid "the information for version #version# comes from an older version of KnowledgeTree and may be incorrect."
msgstr ""
#: i18n/templates.c:2162
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:920
msgid "update organisation information"
msgstr ""
#: i18n/templates.c:944
msgid "update role information"
msgstr ""
#: i18n/templates.c:896
msgid "update unit information"
msgstr ""
#: plugins/ktcore/admin/documentLinks.php:43
#: plugins/ktcore/admin/documentLinks.php:72
#: plugins/ktcore/admin/deletedDocuments.php:16
msgid "view"
msgstr ""
#: plugins/ktcore/admin/documentFields.php:26
msgid "view fieldsets"
msgstr ""
#: plugins/ktstandard/KTDiscussion.php:140
msgid "viewing comments"
msgstr ""
#: plugins/ktcore/KTFolderActions.php:65
msgid "viewing permissions"
msgstr ""
#: plugins/ktcore/KTDocumentActions.php:570
msgid "workflow"
msgstr ""