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
|
<?php // -*- coding:utf-8 -*-
// parameters:
// lang=xx : only tranlates language 'xx',
// if not given all languages are translated
// comments : generate all comments (equal to close&module)
// close : look for similar strings that are allready translated and
// generate a commet if a 'match' is made
// module : generate comments that describes in which .php and/or .tpl
// module(s) a certain string was found (useful for checking
// translations in context)
// patch : looks for the file 'language.patch' in the same directory
// as the corresponding language.php and overrides any strings
// in language.php - good if a user does not agree with
// some translations or if only changes are sent to the maintaner
// Examples:
// http://www.neonchart.com/get_strings.php?lang=sv
// Will translate langauage 'sv' and (almost) avoiding comment generation
// http://www.neonchart.com/get_strings.php?lang=sv&comments
// Will translate langauage 'sv' and generate all possible comments.
// This is the most usefull mode when working on a translation.
// http://www.neonchart.com/get_strings.php?lang=sv&nohelp&nosections
// These options will only provide the minimal amout of comments.
// Usefull mode when preparing a translation for distribution.
// http://www.neonchart.com/get_strings.php?nohelp&nosections
// Prepare all languages for release
$lang=[
// ### start of untranslated words
// ### uncomment value pairs as you translate
"Child categories" => "Child categories",
"Your settings have been updated. <a href='tiki-admin.php?page=general'>Click here</a> or come back later see the changes. That is a known bug that will be fixed in the next release." => "Your settings have been updated. <a href='tiki-admin.php?page=general'>Click here</a> or come back later see the changes. That is a known bug that will be fixed in the next release.",
"The passwords don't match" => "The passwords don't match",
"Your admin password has been changed" => "Your admin password has been changed",
"All Fields must be non empty" => "All Fields must be non empty",
"You do not have permission to use this feature" => "You do not have permission to use this feature",
"No blogId specified" => "No blogId specified",
"No galleryId specified" => "No galleryId specified",
"No forumId specified" => "No forumId specified",
"You do not have permissions to view the maps" => "You do not have permissions to view the maps",
"mapfile name incorrect" => "mapfile name incorrect",
"This mapfile already exists" => "This mapfile already exists",
"You do not have permission to write the mapfile" => "You do not have permission to write the mapfile",
"You do not have permission to delete the mapfile" => "You do not have permission to delete the mapfile",
"You do not have permission to read the mapfile" => "You do not have permission to read the mapfile",
"You do not have permissions to view the layers" => "You do not have permissions to view the layers",
"Could not upload the file" => "Could not upload the file",
"You do not have permissions to delete a file" => "You do not have permissions to delete a file",
"You do not have permissions to create a directory" => "You do not have permissions to create a directory",
"The Directory is not empty" => "The Directory is not empty",
"You do not have permissions to delete a directory" => "You do not have permissions to delete a directory",
"Welcome at Hawiki" => "Welcome at Hawiki",
"This TikiWiki site is prepared for access from a lot of mobile devices, e.g. WAP phones, PDA's, i-mode devices and much more." => "This TikiWiki site is prepared for access from a lot of mobile devices, e.g. WAP phones, PDA's, i-mode devices and much more.",
"You can browse this site on your mobile device by directing your device's browser towards the following URL here on this site:" => "You can browse this site on your mobile device by directing your device's browser towards the following URL here on this site:",
"tiki-mobile.php" => "tiki-mobile.php",
"pageviews" => "pageviews",
"Invalid password. You current password is required to change your email address." => "Invalid password. You current password is required to change your email address.",
"You are not permitted to remove someone else\\'s post!" => "You are not permitted to remove someone else\\'s post!",
"Click to edit dynamic variable" => "Click to edit dynamic variable",
"Update variables" => "Update variables",
"Czech" => "Czech",
"Danish" => "Danish",
"German" => "German",
"English" => "English",
"Greek" => "Greek",
"French" => "French",
"Italian" => "Italian",
"Japanese" => "Japanese",
"Dutch" => "Dutch",
"Norwegian" => "Norwegian",
"Polish" => "Polish",
"Russian" => "Russian",
"Spanish" => "Spanish",
"Swedish" => "Swedish",
"Twi" => "Twi",
"Chinese" => "Chinese",
"Unknown language" => "Unknown language",
"Fatal error: setting next activity to an unexisting activity" => "Fatal error: setting next activity to an unexisting activity",
"Fatal error: nextActivity does not match any candidate in autorouting switch activity" => "Fatal error: nextActivity does not match any candidate in autorouting switch activity",
"Fatal error: non-deterministic decision for autorouting activity" => "Fatal error: non-deterministic decision for autorouting activity",
"Fatal error: trying to send an instance to an activity but no transition found" => "Fatal error: trying to send an instance to an activity but no transition found",
"Cannot add transition only split activities can have more than one outbound transition" => "Cannot add transition only split activities can have more than one outbound transition",
"Circular reference found some activity has a transition leading to itself" => "Circular reference found some activity has a transition leading to itself",
"Process does not have a start activity" => "Process does not have a start activity",
"Process does not have exactly one end activity" => "Process does not have exactly one end activity",
"End activity is not reachable from start activity" => "End activity is not reachable from start activity",
" is interactive but has no role assigned" => " is interactive but has no role assigned",
" is non-interactive and non-autorouted but has no role assigned" => " is non-interactive and non-autorouted but has no role assigned",
" is standalone but has transitions" => " is standalone but has transitions",
" is not mapped" => " is not mapped",
"Activity '.\$res['name'].' is standalone and is using the \$instance object" => "Activity '.\$res['name'].' is standalone and is using the \$instance object",
"Activity '.\$res['name'].' is interactive so it must use the \$instance->complete() method" => "Activity '.\$res['name'].' is interactive so it must use the \$instance->complete() method",
"Activity '.\$res['name'].' is non-interactive so it must not use the \$instance->complete() method" => "Activity '.\$res['name'].' is non-interactive so it must not use the \$instance->complete() method",
"Activity '.\$res['name'].' is switch so it must use \$instance->setNextActivity(\$actname) method" => "Activity '.\$res['name'].' is switch so it must use \$instance->setNextActivity(\$actname) method",
"Process %d has been activated" => "Process %d has been activated",
"Process %d has been deactivated" => "Process %d has been deactivated",
"Process %s %s imported" => "Process %s %s imported",
"Process %s removed" => "Process %s removed",
"Process %s has been updated" => "Process %s has been updated",
"Process %s has been created" => "Process %s has been created",
"Fatal error: cannot execute automatic activity \$activityId" => "Fatal error: cannot execute automatic activity \$activityId",
"%A %d of %B, %Y" => "%A %d of %B, %Y",
"%A %d of %B, %Y[%H:%M:%S %Z]" => "%A %d of %B, %Y[%H:%M:%S %Z]",
"%H:%M:%S %Z" => "%H:%M:%S %Z",
"%a %d of %b, %Y" => "%a %d of %b, %Y",
"%a %d of %b, %Y[%H:%M %Z]" => "%a %d of %b, %Y[%H:%M %Z]",
"%H:%M %Z" => "%H:%M %Z",
"Display Tiki objects that have not been categorized" => "Display Tiki objects that have not been categorized",
"Displays a snippet of code" => "Displays a snippet of code",
"note: those parameters are exclusive" => "note: those parameters are exclusive",
"Creates a definition list" => "Creates a definition list",
"one definition per line" => "one definition per line",
"cells" => "cells",
"heads and cells separated by ~|~" => "heads and cells separated by ~|~",
"one data per line" => "one data per line",
"Split a page into columns" => "Split a page into columns",
"column" => "column",
"Run a sql query" => "Run a sql query",
"sql query" => "sql query",
"Automatically creates a link to the appropriate SourceForge object" => "Automatically creates a link to the appropriate SourceForge object",
"Include a page" => "Include a page",
"Insert theme styled aligned box on wiki page" => "Insert theme styled aligned box on wiki page",
"Include an article" => "Include an article",
"List all pages which link to specific pages" => "List all pages which link to specific pages",
"Search the titles of all pages in this wiki" => "Search the titles of all pages in this wiki",
"No pages found for title search" => "No pages found for title search",
"One page found for title search" => "One page found for title search",
" pages found for title search" => " pages found for title search",
"No categories defined" => "No categories defined",
"Newest first" => "Newest first",
"Oldest first" => "Oldest first",
"Reply to parent comment" => "Reply to parent comment",
"Message Broadcast" => "Message Broadcast",
"View tpl" => "View tpl",
"edit article tpl" => "edit article tpl",
"edit template" => "edit template",
"Compose Message" => "Compose Message",
"compose message tpl" => "compose message tpl",
"messages tpl" => "messages tpl",
"Maps" => "Maps",
"Fields to display:" => "Fields to display:",
"View articles" => "View articles",
"Featured Help" => "Featured Help",
"SearchStats" => "SearchStats",
"Live Support" => "Live Support",
"HTML Pages" => "HTML Pages",
"Help System" => "Help System",
"Show Category Path" => "Show Category Path",
"Show Babelfish Translation URLs" => "Show Babelfish Translation URLs",
"Show Category Objects" => "Show Category Objects",
"Show Babelfish Translation Logo" => "Show Babelfish Translation Logo",
"Show Module Controls" => "Show Module Controls",
"Tiki Calendar" => "Tiki Calendar",
"AutoLinks" => "AutoLinks",
"Hotwords in New Windows" => "Hotwords in New Windows",
"Custom Home" => "Custom Home",
"Dynamic Content System" => "Dynamic Content System",
"Allow Smileys" => "Allow Smileys",
"Banning System" => "Banning System",
"PHPOpenTracker" => "PHPOpenTracker",
"Contact Us" => "Contact Us",
"User Preferences Screen" => "User Preferences Screen",
"Users can Configure Modules" => "Users can Configure Modules",
"User Watches" => "User Watches",
"User Notepad" => "User Notepad",
"Use group homepages" => "Use group homepages",
"Disallow access to the site (except for those with permission)" => "Disallow access to the site (except for those with permission)",
"Message to display when site is closed" => "Message to display when site is closed",
"Disallow access when load is above the threshold (except for those with permission)" => "Disallow access when load is above the threshold (except for those with permission)",
"Max average server load threshold in the last minute" => "Max average server load threshold in the last minute",
"Message to display when server is too busy" => "Message to display when server is too busy",
"Store session data in database" => "Store session data in database",
"Session lifetime in minutes" => "Session lifetime in minutes",
"Use proxy" => "Use proxy",
"Proxy Host" => "Proxy Host",
"Proxy port" => "Proxy port",
"full path to mapfiles" => "full path to mapfiles",
"default mapfile" => "default mapfile",
"Wiki Page for Help" => "Wiki Page for Help",
"Wiki Page for Comments" => "Wiki Page for Comments",
"Feed for mapfiles" => "Feed for mapfiles",
"Strict allows page names with only letters, numbers, underscore, dash, period and semicolon (dash, period and semicolon not allowed at the beginning and the end)." => "Strict allows page names with only letters, numbers, underscore, dash, period and semicolon (dash, period and semicolon not allowed at the beginning and the end).",
"Full adds accented characters." => "Full adds accented characters.",
"Complete allows <em>anything at all</em>. I (<a\n href=\"http:tikiwiki.org/tiki-index.php?page=UserPagerlpowell\">rlpowell</a>)\n cannot guarantee that it is bug-free or secure." => "Complete allows <em>anything at all</em>. I (<a\n href=\"http:tikiwiki.org/tiki-index.php?page=UserPagerlpowell\">rlpowell</a>)\n cannot guarantee that it is bug-free or secure.",
"Note that this does not affect WikiWord recognition, only page names surrounded by (( and ))." => "Note that this does not affect WikiWord recognition, only page names surrounded by (( and )).",
"complete" => "complete",
"Cache wiki pages (global)" => "Cache wiki pages (global)",
"Individual cache" => "Individual cache",
"Link plural WikiWords to their singular forms" => "Link plural WikiWords to their singular forms",
"\\n for rows" => "\\n for rows",
"Wiki Watch" => "Wiki Watch",
"Enable watch by default for author" => "Enable watch by default for author",
"Enable watches on comments" => "Enable watches on comments",
"Enable watches when I am the editor" => "Enable watches when I am the editor",
"admin banning tpl" => "admin banning tpl",
"admin categories" => "admin categories",
"admin categories tpl" => "admin categories tpl",
"admin charts tpl" => "admin charts tpl",
"ChatAdmin" => "ChatAdmin",
"ChatAdmin tpl" => "ChatAdmin tpl",
"admin content templates" => "admin content templates",
"admin content templates tpl" => "admin content templates tpl",
"admin FortuneCookie" => "admin FortuneCookie",
"admin FortuneCookie tpl" => "admin FortuneCookie tpl",
"admin Drawings" => "admin Drawings",
"admin Drawings tpl" => "admin Drawings tpl",
"AdminDSN" => "AdminDSN",
"tiki-admin_dsn tpl" => "tiki-admin_dsn tpl",
"admin ExternalWiki" => "admin ExternalWiki",
"tiki admin external wikis tpl" => "tiki admin external wikis tpl",
"Create/Edit External Wiki" => "Create/Edit External Wiki",
"External Wiki" => "External Wiki",
"admin forums tpl" => "admin forums tpl",
"Display last post titles" => "Display last post titles",
"no display" => "no display",
"Forward messages to this forum to this e-mail address, in a format that can be used for sending back to the inbound forum e-mail address" => "Forward messages to this forum to this e-mail address, in a format that can be used for sending back to the inbound forum e-mail address",
"Originating e-mail address for mails from this forum" => "Originating e-mail address for mails from this forum",
"admin hotwords" => "admin hotwords",
"admin hotwords tpl" => "admin hotwords tpl",
"admin HTML page dynamic zones" => "admin HTML page dynamic zones",
"admin HtmlPages" => "admin HtmlPages",
"admin HtmlPages tpl" => "admin HtmlPages tpl",
"admin featured links" => "admin featured links",
"admin featured links tpl" => "admin featured links tpl",
"WebMail accounts" => "WebMail accounts",
"admin Webmail" => "admin Webmail",
"admin mailin tpl" => "admin mailin tpl",
"admin menu builder" => "admin menu builder",
"Edit tpl" => "Edit tpl",
"admin menus tpl" => "admin menus tpl",
"dynamic collapsed" => "dynamic collapsed",
"admin modules" => "admin modules",
"admin modules tpl" => "admin modules tpl",
"Visibility" => "Visibility",
"Displayed for the eligible users with no personal assigned modules" => "Displayed for the eligible users with no personal assigned modules",
"Displayed now for all eligible users even with personal assigned modules" => "Displayed now for all eligible users even with personal assigned modules",
"Displayed now, can't be unassigned" => "Displayed now, can't be unassigned",
"Not displayed until a user chooses it" => "Not displayed until a user chooses it",
"admin newsletters tpl" => "admin newsletters tpl",
"Users can subscribe/unsubscribe to this list" => "Users can subscribe/unsubscribe to this list",
"Users can subscribe any email address" => "Users can subscribe any email address",
"Add unsubscribe instructions to each newsletter" => "Add unsubscribe instructions to each newsletter",
"Validate email addresses" => "Validate email addresses",
"EMail notifications" => "EMail notifications",
"admin Email Notifications" => "admin Email Notifications",
"admin notifications tpl" => "admin notifications tpl",
"Any wiki page is changed" => "Any wiki page is changed",
"admin polls" => "admin polls",
"admin polls tpl" => "admin polls tpl",
"admin RSS modules" => "admin RSS modules",
"admin RSSmodules tpl" => "admin RSSmodules tpl",
"show publish date" => "show publish date",
"show feed title" => "show feed title",
"show pubdate" => "show pubdate",
"admin structures tpl" => "admin structures tpl",
"admin surveys tpl" => "admin surveys tpl",
"admin topics tpl" => "admin topics tpl",
"admin Trackers tpl" => "admin Trackers tpl",
"admin groups" => "admin groups",
"admin groups tpl" => "admin groups tpl",
"Add new group" => "Add new group",
"admin users" => "admin users",
"admin users tpl" => "admin users tpl",
"Never" => "Never",
"Edit Article" => "Edit Article",
"Default Group" => "Default Group",
"admin backups" => "admin backups",
"admin admin tpl" => "admin admin tpl",
"Trash" => "Trash",
"Made with" => "Made with",
"powered by" => "powered by",
"Execution time" => "Execution time",
"database queries used" => "database queries used",
"Server load" => "Server load",
"-1m" => "-1m",
"-7d" => "-7d",
"-1d" => "-1d",
"admin directory tpl" => "admin directory tpl",
"admin directory categories tpl" => "admin directory categories tpl",
"Admin Directory Related " => "Admin Directory Related ",
"directory admin related tpl" => "directory admin related tpl",
"Admin Directory Sites" => "Admin Directory Sites",
"Admin Directory Sites tpl" => "Admin Directory Sites tpl",
"Validate Sites" => "Validate Sites",
"directory validate sites tpl" => "directory validate sites tpl",
"Article image" => "Article image",
"Publish/Event Date" => "Publish/Event Date",
"Remove Zones (you lose entered info for the banner)" => "Remove Zones (you lose entered info for the banner)",
"edit blog tpl" => "edit blog tpl",
"For more information, please see <a\nhref=\"http:www.tikiwiki.org/tiki-index.php?page=WikiSyntax\">WikiSyntax</a>\non <a href=\"http:www.tikiwiki.org\">TikiWiki.org</a>." => "For more information, please see <a\nhref=\"http:www.tikiwiki.org/tiki-index.php?page=WikiSyntax\">WikiSyntax</a>\non <a href=\"http:www.tikiwiki.org\">TikiWiki.org</a>.",
"dynamic variable" => "dynamic variable",
"admin quizzes tpl" => "admin quizzes tpl",
"Edit Submissions" => "Edit Submissions",
"edit submissions tpl" => "edit submissions tpl",
"EditTemplates" => "EditTemplates",
"EditTemplates tpl" => "EditTemplates tpl",
"admin Ephemerides tpl" => "admin Ephemerides tpl",
"file galleries tpl" => "file galleries tpl",
"The page {\$mail_page} was changed by {\$mail_user} at\n{\$mail_date|bit_short_datetime}" => "The page {\$mail_page} was changed by {\$mail_user} at\n{\$mail_date|bit_short_datetime}",
"You can view the page by following this link:\n {\$mail_machine}/tiki-index.php?page={\$mail_page}" => "You can view the page by following this link:\n {\$mail_machine}/tiki-index.php?page={\$mail_page}",
"You can edit the page by following this link:\n {\$mail_machine}/tiki-editpage.php?page={\$mail_page}" => "You can edit the page by following this link:\n {\$mail_machine}/tiki-editpage.php?page={\$mail_page}",
"You can view a diff back to the previous version by following\nthis link:\n {\$mail_machine}/tiki-pagehistory.php?page={\$mail_page}&diff2={\$mail_last_version}" => "You can view a diff back to the previous version by following\nthis link:\n {\$mail_machine}/tiki-pagehistory.php?page={\$mail_page}&diff2={\$mail_last_version}",
"The new page content follows below." => "The new page content follows below.",
"The map {\$mail_page} was changed by {\$mail_user} at {\$mail_date|bit_short_datetime}" => "The map {\$mail_page} was changed by {\$mail_user} at {\$mail_date|bit_short_datetime}",
"You can view the updated map following this link:" => "You can view the updated map following this link:",
"You can edit the map following this link:" => "You can edit the map following this link:",
"Galaxia Admin Processes" => "Galaxia Admin Processes",
"Galaxia Admin Processes tpl" => "Galaxia Admin Processes tpl",
"Galaxia Monitor Activities" => "Galaxia Monitor Activities",
"Galaxia Monitor Activities tpl" => "Galaxia Monitor Activities tpl",
"Galaxia Monitor Instances" => "Galaxia Monitor Instances",
"Galaxia Monitor Instances tpl" => "Galaxia Monitor Instances tpl",
"Galaxia Monitor Processes" => "Galaxia Monitor Processes",
"Galaxia Monitor Processes tpl" => "Galaxia Monitor Processes tpl",
"Galaxia User Activities" => "Galaxia User Activities",
"Galaxia User Activities tpl" => "Galaxia User Activities tpl",
"Galaxia User Instances" => "Galaxia User Instances",
"Galaxia User Instances tpl" => "Galaxia User Instances tpl",
"Galaxia User Processes" => "Galaxia User Processes",
"Galaxia User Processes tpl" => "Galaxia User Processes tpl",
"galleries tpl" => "galleries tpl",
"ImportingPagesPhpWikiPageAdmin" => "ImportingPagesPhpWikiPageAdmin",
"tiki-import_phpwiki tpl" => "tiki-import_phpwiki tpl",
"List Articles" => "List Articles",
"list articles tpl" => "list articles tpl",
"admin Banners" => "admin Banners",
"admin Banners tpl" => "admin Banners tpl",
"admin cache" => "admin cache",
"admin cache tpl" => "admin cache tpl",
"admin DynamicContent" => "admin DynamicContent",
"admin DynamicContent tpl" => "admin DynamicContent tpl",
"list faqs tpl" => "list faqs tpl",
"Create new FAQ" => "Create new FAQ",
"list posts tpl" => "list posts tpl",
"admin live support tpl" => "admin live support tpl",
"unknown" => "unknown",
"Live support:User window" => "Live support:User window",
"MyTikiDoc" => "MyTikiDoc",
"my bitweaver.tpl" => "my bitweaver.tpl",
"List pages where I am a creator" => "List pages where I am a creator",
"by creator" => "by creator",
"List pages where I am a modificator" => "List pages where I am a modificator",
"by modificator" => "by modificator",
"Configure Newsreader" => "Configure Newsreader",
"configure newsreader server tpl" => "configure newsreader server tpl",
"remove from this page" => "remove from this page",
"remove from this structure" => "remove from this structure",
"Assign permissions" => "Assign permissions",
"this page" => "this page",
"this structure" => "this structure",
"Avatar Image" => "Avatar Image",
"View Results" => "View Results",
"Topic image" => "Topic image",
"received articles tpl" => "received articles tpl",
"Received Pages" => "Received Pages",
"received pages tpl" => "received pages tpl",
"admin Referer stats" => "admin Referer stats",
"admin Referer stats tpl" => "admin Referer stats tpl",
"Your email could not be validated; make sure you email is correct and click register below." => "Your email could not be validated; make sure you email is correct and click register below.",
"Random Image" => "Random Image",
"Search Stats" => "Search Stats",
"search stats tpl" => "search stats tpl",
"Simple search" => "Simple search",
"Send Objects" => "Send Objects",
"admin send objects tpl" => "admin send objects tpl",
"admin Tiki Shoutbox" => "admin Tiki Shoutbox",
"admin Tiki Shoutbox tpl" => "admin Tiki Shoutbox tpl",
"The cord" => "The cord",
"Usage chart image" => "Usage chart image",
"Average posts per weblog" => "Average posts per weblog",
"ThemeControl" => "ThemeControl",
"ThemeControl tpl" => "ThemeControl tpl",
"ThemeControl Objects" => "ThemeControl Objects",
"theme control objects tpl" => "theme control objects tpl",
"theme control sections tpl" => "theme control sections tpl",
"Tiki community" => "Tiki community",
"Image Gallery tpl" => "Image Gallery tpl",
"Image ID" => "Image ID",
"Image ID thumb" => "Image ID thumb",
"User Assigned Modules" => "User Assigned Modules",
"User Assigned Modules tpl" => "User Assigned Modules tpl",
"User Bookmarks tpl" => "User Bookmarks tpl",
"Folder in" => "Folder in",
"Personal Wiki Page" => "Personal Wiki Page",
"User Tasks tpl" => "User Tasks tpl",
"no comments" => "no comments",
"click on the map to zoom or pan, do not drag" => "click on the map to zoom or pan, do not drag",
"Scale" => "Scale",
"select zoom/pan/query and image size" => "select zoom/pan/query and image size",
"Redraw" => "Redraw",
"Click on the map or click redraw" => "Click on the map or click redraw",
"Help" => "Help",
"Overview" => "Overview",
"Legend" => "Legend",
"Layer Manager" => "Layer Manager",
"On" => "On",
"Label" => "Label",
"Download" => "Download",
"Download Layer" => "Download Layer",
"you have requested to download the layer:" => "you have requested to download the layer:",
"from\nthe mapfile:" => "from\nthe mapfile:",
"Here are the files to download, do not forget to rename them:" => "Here are the files to download, do not forget to rename them:",
"Mapfiles" => "Mapfiles",
"Available mapfiles" => "Available mapfiles",
"Mapfile" => "Mapfile",
"stop monitoring this map" => "stop monitoring this map",
"monitor this map" => "monitor this map",
"Create a new mapfile" => "Create a new mapfile",
"Mapfile listing" => "Mapfile listing",
"You can view this map in your browser using" => "You can view this map in your browser using",
"Directories" => "Directories",
"Upload From Disk:" => "Upload From Disk:",
"Upload Files" => "Upload Files",
"Bytes maximum" => "Bytes maximum",
"Create Directory:" => "Create Directory:",
"Create" => "Create",
"view faq" => "view faq",
"view faq tpl" => "view faq tpl",
"topics in this forum" => "topics in this forum",
"new reply" => "new reply",
"IRC log" => "IRC log",
"Select" => "Select",
"Show All" => "Show All",
"Webmail Doc" => "Webmail Doc",
"Webmail Doc tpl" => "Webmail Doc tpl",
"flagged" => "flagged",
"replied" => "replied",
"clip" => "clip",
"Debugger console" => "Debugger console",
"MyMenu" => "MyMenu",
"WfMenu" => "WfMenu",
"WikiMenu" => "WikiMenu",
"Send pages" => "Send pages",
"GalMenu" => "GalMenu",
"Create/Edit blog" => "Create/Edit blog",
"ForMenu" => "ForMenu",
"DirMenu" => "DirMenu",
"Browse directory" => "Browse directory",
"FileGalMenu" => "FileGalMenu",
"Edit mapfiles" => "Edit mapfiles",
"QuizMenu" => "QuizMenu",
"List quizzes" => "List quizzes",
"TrkMenu" => "TrkMenu",
"SrvMenu" => "SrvMenu",
"EphMenu" => "EphMenu",
"ChartMenu" => "ChartMenu",
"AdmMenu" => "AdmMenu",
"UsrMenu" => "UsrMenu",
"Older Messages" => "Older Messages",
"Move module up" => "Move module up",
"Move module down" => "Move module down",
"Move module to opposite side" => "Move module to opposite side",
"Unassign module" => "Unassign module",
"Style" => "Style",
"Last articles" => "Last articles",
"cached" => "cached",
"No attachments for this page" => "No attachments for this page",
"Layer management" => "Layer management",
"Wiki quick help" => "Wiki quick help",
"attachments" => "attachments",
"Favorites" => "Favorites",
"back to homepage" => "back to homepage",
"Please" => "Please",
"log in" => "log in",
"to access full functionalities" => "to access full functionalities",
"left/right" => "left/right",
"Skip to Content" => "Skip to Content",
"Edit a topic" => "Edit a topic",
"UserPreferences tpl" => "UserPreferences tpl",
"change email" => "change email",
"change password" => "change password",
"List Movies" => "List Movies",
"Choose a movie" => "Choose a movie",
"Display" => "Display",
"Edit this Repository:" => "Edit this Repository:",
"Create New Repository:" => "Create New Repository:",
"list repositories" => "list repositories",
"Start page" => "Start page",
"CSS file" => "CSS file",
"Available Repositories" => "Available Repositories",
"CSS File" => "CSS File",
"Edit rules" => "Edit rules",
"Edit Rules for Repository:" => "Edit Rules for Repository:",
"configure repositories" => "configure repositories",
"view repository" => "view repository",
"view/hide copy rules dialog" => "view/hide copy rules dialog",
"copy rules" => "copy rules",
"Preview options" => "Preview options",
"Source repository" => "Source repository",
"Copy" => "Copy",
"Replace" => "Replace",
"Use preg_replace or str_replace to filter text" => "Use preg_replace or str_replace to filter text",
"Case sensitive" => "Case sensitive",
"Use case sensitive str_replace" => "Use case sensitive str_replace",
"<span title=\"set of: imsxeADSXUu\">Regex modifiers" => "<span title=\"set of: imsxeADSXUu\">Regex modifiers",
"Aux modifiers for preg_replace" => "Aux modifiers for preg_replace",
"Code preview" => "Code preview",
"HTLM preview" => "HTLM preview",
"Test file from repository (empty = configured start page)" => "Test file from repository (empty = configured start page)",
"Preview Results" => "Preview Results",
"Rules List" => "Rules List",
"Regex" => "Regex",
"Case" => "Case",
"Create a group for each user <br />(with the same\nname as the user)" => "Create a group for each user <br />(with the same\nname as the user)",
"No repository given" => "No repository given",
"File not found" => "File not found",
"No topic id specified" => "No topic id specified",
"Invalid topic id specified" => "Invalid topic id specified",
"You are not permitted to edit someone else\\'s post!" => "You are not permitted to edit someone else\\'s post!",
"Only an admin can remove a thread." => "Only an admin can remove a thread.",
"Name, path and start page are mandatory fields" => "Name, path and start page are mandatory fields",
"Requested action in not supportted on repository" => "Requested action in not supportted on repository",
"No repository" => "No repository",
"Search is mandatory field" => "Search is mandatory field",
"Missing title or body when trying to post a comment" => "Missing title or body when trying to post a comment",
"The copyright management feature is not enabled." => "The copyright management feature is not enabled.",
"You do not have permission to use this feature." => "You do not have permission to use this feature.",
"You must supply all the information, including title and year." => "You must supply all the information, including title and year.",
"ERROR: Either the subject or body must be non-empty" => "ERROR: Either the subject or body must be non-empty",
"ERROR: No valid users to send the message" => "ERROR: No valid users to send the message",
"You are not logged in" => "You are not logged in",
"This feature is disabled" => "This feature is disabled",
"Permission denied" => "Permission denied",
"Invalid user" => "Invalid user",
"Message will be sent to: " => "Message will be sent to: ",
"Re:" => "Re:",
"No more messages" => "No more messages",
"You do not have permission to use this feature" => "You do not have permission to use this feature",
"Objects in category" => "Objects in category",
"edit" => "edit",
"remove" => "remove",
"TOP" => "TOP",
"No chart indicated" => "No chart indicated",
"Upload failed" => "Upload failed",
"Feature disabled" => "Feature disabled",
"No page indicated" => "No page indicated",
"Password should be at least" => "Password should be at least",
"characters long" => "characters long",
"of" => "of",
"Tag already exists" => "Tag already exists",
"Tag not found" => "Tag not found",
"Non-existent link" => "Non-existent link",
"No menu indicated" => "No menu indicated",
"No newsletter indicated" => "No newsletter indicated",
"No poll indicated" => "No poll indicated",
"No survey indicated" => "No survey indicated",
"No tracker indicated" => "No tracker indicated",
"Group already exists" => "Group already exists",
"The file is not a CSV file or has not a correct syntax" => "The file is not a CSV file or has not a correct syntax",
"No records were found. Check the file please!" => "No records were found. Check the file please!",
"User login is required" => "User login is required",
"Password is required" => "Password is required",
"Email is required" => "Email is required",
"User is duplicated" => "User is duplicated",
"The passwords dont match" => "The passwords dont match",
"User already exists" => "User already exists",
"Permission denied you cannot view this section" => "Permission denied you cannot view this section",
"Unknown group" => "Unknown group",
"Group doesnt exist" => "Group doesnt exist",
"Unknown user" => "Unknown user",
"User doesnt exist" => "User doesnt exist",
"Permission denied you cannot view backlinks for this page" => "Permission denied you cannot view backlinks for this page",
"The page cannot be found" => "The page cannot be found",
"Permission denied you cannot post" => "Permission denied you cannot post",
"Permission denied you cannot edit this post" => "Permission denied you cannot edit this post",
"You can't post in any blog maybe you have to create a blog first" => "You can't post in any blog maybe you have to create a blog first",
"Top visited blogs" => "Top visited blogs",
"Last posts" => "Last posts",
"Top active blogs" => "Top active blogs",
"Permission denied you can not view this section" => "Permission denied you can not view this section",
"Permission denied you cannot access this gallery" => "Permission denied you cannot access this gallery",
"No gallery indicated" => "No gallery indicated",
"Permission denied you cannot remove images from this gallery" => "Permission denied you cannot remove images from this gallery",
"Permission denied you cannot rebuild thumbnails in this gallery" => "Permission denied you cannot rebuild thumbnails in this gallery",
"Permission denied you cannot rotate images in this gallery" => "Permission denied you cannot rotate images in this gallery",
"No image indicated" => "No image indicated",
"Permission denied you cannot move images from this gallery" => "Permission denied you cannot move images from this gallery",
"Permission denied you cannot view the calendar" => "Permission denied you cannot view the calendar",
"Wiki" => "Wiki",
"Image Gallery" => "Image Gallery",
"Articles" => "Articles",
"Blogs" => "Blogs",
"Forums" => "Forums",
"Directory" => "Directory",
"File Gallery" => "File Gallery",
"FAQs" => "FAQs",
"Quizzes" => "Quizzes",
"Trackers" => "Trackers",
"Survey" => "Survey",
"Newsletter" => "Newsletter",
"Ephemerides" => "Ephemerides",
"Charts" => "Charts",
"event without name" => "event without name",
"Sunday" => "Sunday",
"Monday" => "Monday",
"Tuesday" => "Tuesday",
"Wednesday" => "Wednesday",
"Thursday" => "Thursday",
"Friday" => "Friday",
"Saturday" => "Saturday",
"The passwords didn't match" => "The passwords didn't match",
"You can not use the same password again" => "You can not use the same password again",
"Invalid old password" => "Invalid old password",
"Password must contain both letters and numbers" => "Password must contain both letters and numbers",
"Permission denied to use this feature" => "Permission denied to use this feature",
"No channel indicated" => "No channel indicated",
"No nickname indicated" => "No nickname indicated",
"Top articles" => "Top articles",
"Top authors" => "Top authors",
"Permission denied you cannot view this page" => "Permission denied you cannot view this page",
"Message sent to" => "Message sent to",
"This feature has been disabled" => "This feature has been disabled",
"Must enter a name to add a site" => "Must enter a name to add a site",
"Must enter a url to add a site" => "Must enter a url to add a site",
"URL already added to the directory. Duplicate site?" => "URL already added to the directory. Duplicate site?",
"URL cannot be accessed wrong URL or site is offline and cannot be added to the directory" => "URL cannot be accessed wrong URL or site is offline and cannot be added to the directory",
"Must select a category" => "Must select a category",
"Mus enter a name to add a site" => "Mus enter a name to add a site",
"No site indicated" => "No site indicated",
"You can not download files" => "You can not download files",
"Permission denied you cannot edit this article" => "Permission denied you cannot edit this article",
"You do not have permissions to edit banners" => "You do not have permissions to edit banners",
"Banner not found" => "Banner not found",
"You do not have permission to edit this banner" => "You do not have permission to edit this banner",
"Permission denied you cannot create or edit blogs" => "Permission denied you cannot create or edit blogs",
"Permission denied you cannot edit this blog" => "Permission denied you cannot edit this blog",
"You do not have permission to write the style sheet" => "You do not have permission to write the style sheet",
"Invalid request to edit an image" => "Invalid request to edit an image",
"Permission denied you cannot edit images" => "Permission denied you cannot edit images",
"Permission denied you can edit images but not in this gallery" => "Permission denied you can edit images but not in this gallery",
"Failed to edit the image" => "Failed to edit the image",
"Shortname must be 2 Characters" => "Shortname must be 2 Characters",
"You must provide a longname" => "You must provide a longname",
"Language created" => "Language created",
"No content id indicated" => "No content id indicated",
"No question indicated" => "No question indicated",
"No quiz indicated" => "No quiz indicated",
"No structure indicated" => "No structure indicated",
"Permission denied you cannot send submissions" => "Permission denied you cannot send submissions",
"Permission denied you cannot edit submissions" => "Permission denied you cannot edit submissions",
"You have to create a topic first" => "You have to create a topic first",
"You do not have permission to do that" => "You do not have permission to do that",
"You do not have permission to write the template" => "You do not have permission to write the template",
"You do not have permission to read the template" => "You do not have permission to read the template",
"page imported" => "page imported",
"created from import" => "created from import",
"You cannot edit this page because it is a user personal page" => "You cannot edit this page because it is a user personal page",
"The SandBox is disabled" => "The SandBox is disabled",
"Permission denied you cannot edit this page" => "Permission denied you cannot edit this page",
"Cannot edit page because it is locked" => "Cannot edit page because it is locked",
"Permission denied you cannot create galleries and so you cant edit them" => "Permission denied you cannot create galleries and so you cant edit them",
"Permission denied you cannot edit this gallery" => "Permission denied you cannot edit this gallery",
"Permission denied you cannot remove this gallery" => "Permission denied you cannot remove this gallery",
"Top visited file galleries" => "Top visited file galleries",
"Most downloaded files" => "Most downloaded files",
"Last files" => "Last files",
"No forum indicated" => "No forum indicated",
"Last forum topics" => "Last forum topics",
"Most read topics" => "Most read topics",
"Top topics" => "Top topics",
"Forum posts" => "Forum posts",
"Most visited forums" => "Most visited forums",
"No process indicated" => "No process indicated",
"Activity name already exists" => "Activity name already exists",
"No instance indicated" => "No instance indicated",
"indicates if the process is active. Invalid processes cant be active" => "indicates if the process is active. Invalid processes cant be active",
"The process name already exists" => "The process name already exists",
"Process already exists" => "Process already exists",
"No activity indicated" => "No activity indicated",
"You cant execute this activity" => "You cant execute this activity",
"No item indicated" => "No item indicated",
"Top galleries" => "Top galleries",
"Top images" => "Top images",
"Last images" => "Last images",
"page not added (Exists)" => "page not added (Exists)",
"overwriting old page" => "overwriting old page",
"updated by the phpwiki import process" => "updated by the phpwiki import process",
"page created" => "page created",
"created from phpwiki import" => "created from phpwiki import",
"Cannot write to this file:" => "Cannot write to this file:",
"Wiki page" => "Wiki page",
"Page cannot be found" => "Page cannot be found",
"Permission denied you cannot view pages like this page" => "Permission denied you cannot view pages like this page",
"Permission denied you cannot remove articles" => "Permission denied you cannot remove articles",
"Permission denied you cannot remove banners" => "Permission denied you cannot remove banners",
"Permission denied you cannot remove this blog" => "Permission denied you cannot remove this blog",
"Non-existent gallery" => "Non-existent gallery",
"Permission denied you cannot remove files from this gallery" => "Permission denied you cannot remove files from this gallery",
"Permission denied you can't upload files so you can't edit them" => "Permission denied you can't upload files so you can't edit them",
"Permission denied you cannot edit this file" => "Permission denied you cannot edit this file",
"The thumbnail name must be" => "The thumbnail name must be",
"or" => "or",
"You cannot admin blogs" => "You cannot admin blogs",
"Permission denied you cannot remove submissions" => "Permission denied you cannot remove submissions",
"Permission denied you cannot approve submissions" => "Permission denied you cannot approve submissions",
"Permission denied you cannot view pages" => "Permission denied you cannot view pages",
"Permission denied you cannot remove pages" => "Permission denied you cannot remove pages",
"Invalid username or password" => "Invalid username or password",
"Tiki mail-in instructions" => "Tiki mail-in instructions",
"Map" => "Map",
"changed" => "changed",
"Must be logged to use this feature" => "Must be logged to use this feature",
"About" => "About",
"You must log in to use this feature" => "You must log in to use this feature",
"You do not have permission to view other users data" => "You do not have permission to view other users data",
"You must be logged in to subscribe to newsletters" => "You must be logged in to subscribe to newsletters",
"No server indicated" => "No server indicated",
"Cannot connect to" => "Cannot connect to",
"Missing information to read news (server,port,username,password,group) required" => "Missing information to read news (server,port,username,password,group) required",
"Cannot get messages" => "Cannot get messages",
"No note indicated" => "No note indicated",
"merged note:" => "merged note:",
"File is too big" => "File is too big",
"created from notepad" => "created from notepad",
"No name indicated for wiki page" => "No name indicated for wiki page",
"Page already exists" => "Page already exists",
"Permission denied you cannot assign permissions for this page" => "Permission denied you cannot assign permissions for this page",
"Not enough information to display this page" => "Not enough information to display this page",
"Fatal error" => "Fatal error",
"Permission denied you cannot browse this page history" => "Permission denied you cannot browse this page history",
"No article indicated" => "No article indicated",
"Article not found" => "Article not found",
"Article is not published yet" => "Article is not published yet",
"No post indicated" => "No post indicated",
"Blog not found" => "Blog not found",
"No pages indicated" => "No pages indicated",
"day" => "day",
"No result indicated" => "No result indicated",
"Permision denied" => "Permision denied",
"New user registration" => "New user registration",
"You will receive an email with information to login for the first time into this site" => "You will receive an email with information to login for the first time into this site",
"Your Tiki information registration" => "Your Tiki information registration",
"Wrong registration code" => "Wrong registration code",
"Invalid username" => "Invalid username",
"Username is too long" => "Username is too long",
"Username cannot contain whitespace" => "Username cannot contain whitespace",
"Wrong passcode you need to know the passcode to register in this site" => "Wrong passcode you need to know the passcode to register in this site",
"Invalid email address. You must enter a valid email address" => "Invalid email address. You must enter a valid email address",
"Thank you for you registration. You may log in now." => "Thank you for you registration. You may log in now.",
"Your Tiki account information for" => "Your Tiki account information for",
"A password reminder email has been sent " => "A password reminder email has been sent ",
"A new password has been sent " => "A new password has been sent ",
"to the registered email address for" => "to the registered email address for",
"Invalid or unknown username" => "Invalid or unknown username",
"Permission denied you cannot remove versions from this page" => "Permission denied you cannot remove versions from this page",
"Cannot rename page maybe new page already exists" => "Cannot rename page maybe new page already exists",
"No version indicated" => "No version indicated",
"Non-existent version" => "Non-existent version",
"Permission denied you cannot rollback this page" => "Permission denied you cannot rollback this page",
"Post recommendation at" => "Post recommendation at",
"page" => "page",
" successfully sent" => " successfully sent",
"article" => "article",
" not sent" => " not sent",
"You do not have permission to edit messages" => "You do not have permission to edit messages",
"Page must be defined inside a structure to use this feature" => "Page must be defined inside a structure to use this feature",
"You cannot take this quiz twice" => "You cannot take this quiz twice",
"Quiz time limit exceeded quiz cannot be computed" => "Quiz time limit exceeded quiz cannot be computed",
"You cannot take this survey twice" => "You cannot take this survey twice",
"Please create a category first" => "Please create a category first",
"Invalid filename (using filters for filenames)" => "Invalid filename (using filters for filenames)",
"No permission to upload zipped file packages" => "No permission to upload zipped file packages",
"Cannot read file" => "Cannot read file",
"Upload was not successful" => "Upload was not successful",
"Upload was not successful (maybe a duplicate file)" => "Upload was not successful (maybe a duplicate file)",
"Permission denied you cannot upload files" => "Permission denied you cannot upload files",
"Permission denied you can upload files but not to this file gallery" => "Permission denied you can upload files but not to this file gallery",
"Invalid imagename (using filters for filenames)" => "Invalid imagename (using filters for filenames)",
"Error processing zipped image package" => "Error processing zipped image package",
"No permission to upload zipped image packages" => "No permission to upload zipped image packages",
"Permission denied you cannot upload images" => "Permission denied you cannot upload images",
"Permission denied you can upload images but not to this gallery" => "Permission denied you can upload images but not to this gallery",
"Cannot get image from URL" => "Cannot get image from URL",
"cannot process upload" => "cannot process upload",
"You have to provide a name to the image" => "You have to provide a name to the image",
"No url indicated" => "No url indicated",
"Cannot upload this file not enough quota" => "Cannot upload this file not enough quota",
"No user indicated" => "No user indicated",
"Non-existent user" => "Non-existent user",
"No banner indicated" => "No banner indicated",
"blog" => "blog",
"No blog indicated" => "No blog indicated",
"Permission denied you cannot remove the post" => "Permission denied you cannot remove the post",
"No cache information available" => "No cache information available",
"No faq indicated" => "No faq indicated",
" new topic:" => " new topic:",
"Tiki email notification" => "Tiki email notification",
"Cannot upload this file maximum upload size exceeded" => "Cannot upload this file maximum upload size exceeded",
"forum" => "forum",
"Wrong password. Cannot post comment" => "Wrong password. Cannot post comment",
"Please wait 2 minutes between posts" => "Please wait 2 minutes between posts",
"You are not logged in and no user indicated" => "You are not logged in and no user indicated",
"The user has chosen to make his information private" => "The user has chosen to make his information private",
"(AT)" => "(AT)",
"(DOT)" => "(DOT)",
"Your email address has been removed from the list of addresses monitoring this tracker" => "Your email address has been removed from the list of addresses monitoring this tracker",
"Your email address has been added to the list of addresses monitoring this tracker" => "Your email address has been added to the list of addresses monitoring this tracker",
"Cancel monitoring" => "Cancel monitoring",
"Monitor" => "Monitor",
"Your email address has been removed from the list of addresses monitoring this item" => "Your email address has been removed from the list of addresses monitoring this item",
"Your email address has been added to the list of addresses monitoring this item" => "Your email address has been added to the list of addresses monitoring this item",
"No subject" => "No subject",
"Your email was sent" => "Your email was sent",
"Top pages" => "Top pages",
"Last pages" => "Last pages",
"Most relevant pages" => "Most relevant pages",
"Anonymous" => "Anonymous",
"WikiDiff::apply: line count mismatch: %s != %s" => "WikiDiff::apply: line count mismatch: %s != %s",
"WikiDiff::_check: failed" => "WikiDiff::_check: failed",
"WikiDiff::_check: edit sequence is non-optimal" => "WikiDiff::_check: edit sequence is non-optimal",
"WikiDiff Okay: LCS = %s" => "WikiDiff Okay: LCS = %s",
"Gallery" => "Gallery",
"FAQ" => "FAQ",
"Image" => "Image",
"Forum" => "Forum",
"File" => "File",
"Blog" => "Blog",
"Article" => "Article",
"Post" => "Post",
"You are banned from" => "You are banned from",
"locked" => "locked",
"unlocked" => "unlocked",
"no description" => "no description",
"picture not found" => "picture not found",
"drawing not found" => "drawing not found",
"No image yet, sorry." => "No image yet, sorry.",
"Versions are identical" => "Versions are identical",
"Activity" => "Activity",
"Role" => "Role",
"New article submitted at " => "New article submitted at ",
"by" => "by",
"Blog post" => "Blog post",
"continued" => "continued",
"click to edit" => "click to edit",
"new image uploaded by" => "new image uploaded by",
"in" => "in",
"uploaded by" => "uploaded by",
"new item in tracker" => "new item in tracker",
"new subscriptions" => "new subscriptions",
"not specified" => "not specified",
"Wiki Home" => "Wiki Home",
"posted on" => "posted on",
"Return to blog" => "Return to blog",
"Home" => "Home",
"prev" => "prev",
"next" => "next",
"New message arrived from " => "New message arrived from ",
"NONE" => "NONE",
"Newsletter subscription information at " => "Newsletter subscription information at ",
"Welcome to " => "Welcome to ",
"Bye bye from " => "Bye bye from ",
" at " => " at ",
"You can unsubscribe from this newsletter following this link" => "You can unsubscribe from this newsletter following this link",
"Wiki top pages" => "Wiki top pages",
"Relevance" => "Relevance",
"Wiki last pages" => "Wiki last pages",
"Modified" => "Modified",
"Forums last topics" => "Forums last topics",
"Topic date" => "Topic date",
"Forums most read topics" => "Forums most read topics",
"Forums best topics" => "Forums best topics",
"Score" => "Score",
"Forums most visited forums" => "Forums most visited forums",
"Forums with most posts" => "Forums with most posts",
"Posts" => "Posts",
"Wiki top galleries" => "Wiki top galleries",
"Wiki top file galleries" => "Wiki top file galleries",
"Wiki top images" => "Wiki top images",
"Hits" => "Hits",
"Wiki top files" => "Wiki top files",
"Downloads" => "Downloads",
"Wiki last images" => "Wiki last images",
"Upload date" => "Upload date",
"Wiki last files" => "Wiki last files",
"Wiki top articles" => "Wiki top articles",
"Reads" => "Reads",
"Most visited blogs" => "Most visited blogs",
"Visits" => "Visits",
"Most active blogs" => "Most active blogs",
"Blogs last posts" => "Blogs last posts",
"Post date" => "Post date",
"Wiki top authors" => "Wiki top authors",
"Pages" => "Pages",
"Top article authors" => "Top article authors",
"help" => "help",
"view" => "view",
"Tracker was modified at " => "Tracker was modified at ",
"child categories" => "child categories",
"objects in category" => "objects in category",
"Displays the user Avatar" => "Displays the user Avatar",
"username" => "username",
"Insert theme styled box on wiki page" => "Insert theme styled box on wiki page",
"text" => "text",
"Insert list of items for the current/given category into wiki page" => "Insert list of items for the current/given category into wiki page",
"Categories are disabled" => "Categories are disabled",
"Insert the full category path for each category that this wiki page belongs to" => "Insert the full category path for each category that this wiki page belongs to",
"Centers the plugin content in the wiki page" => "Centers the plugin content in the wiki page",
"code" => "code",
"Insert copyright notices" => "Insert copyright notices",
"term" => "term",
"definition" => "definition",
"Example" => "Example",
"Displays the data using the TikiWiki odd/even table style" => "Displays the data using the TikiWiki odd/even table style",
"Displays a graphical GAUGE" => "Displays a graphical GAUGE",
"description" => "description",
"Please choose a module" => "Please choose a module",
"to be used as argument" => "to be used as argument",
"Displays a module inlined in page" => "Displays a module inlined in page",
"Sorry no such module" => "Sorry no such module",
"Displays the data using a monospace font" => "Displays the data using a monospace font",
"Sorts the plugin content in the wiki page" => "Sorts the plugin content in the wiki page",
"data" => "data",
"Missing db param" => "Missing db param",
"Page" => "Page",
"There is an error in the plugin data" => "There is an error in the plugin data",
"no such file" => "no such file",
"Error" => "Error",
"Syntax" => "Syntax",
"Page generation debugging log" => "Page generation debugging log",
"Features state" => "Features state",
"Total" => "Total",
"features matched" => "features matched",
"Watchlist" => "Watchlist",
"List of attached files" => "List of attached files",
"name" => "name",
"uploaded" => "uploaded",
"size" => "size",
"dls" => "dls",
"desc" => "desc",
"Upload file" => "Upload file",
"comment" => "comment",
"attach" => "attach",
"categorize" => "categorize",
"show categories" => "show categories",
"hide categories" => "hide categories",
"categorize this object" => "categorize this object",
"Admin categories" => "Admin categories",
"Posted comments" => "Posted comments",
"Comments" => "Comments",
"Sort" => "Sort",
"Threshold" => "Threshold",
"All" => "All",
"Search" => "Search",
"set" => "set",
"Top" => "Top",
"Vote" => "Vote",
"reply to this" => "reply to this",
"parent" => "parent",
"on" => "on",
"Comments below your current threshold" => "Comments below your current threshold",
"Preview" => "Preview",
"Editing comment" => "Editing comment",
"post new comment" => "post new comment",
"Post new comment" => "Post new comment",
"preview" => "preview",
"post" => "post",
"Smileys" => "Smileys",
"Title" => "Title",
"Comment" => "Comment",
"Posting comments" => "Posting comments",
"Use" => "Use",
"for links" => "for links",
"HTML tags are not allowed inside comments" => "HTML tags are not allowed inside comments",
"Copyrights" => "Copyrights",
"Year" => "Year",
"Authors" => "Authors",
"add" => "add",
"Go back" => "Go back",
"Return to home page" => "Return to home page",
"Broadcast message" => "Broadcast message",
"Tikiwiki.org help" => "Tikiwiki.org help",
"Group" => "Group",
"All users" => "All users",
"Priority" => "Priority",
"Lowest" => "Lowest",
"Low" => "Low",
"Normal" => "Normal",
"High" => "High",
"Very High" => "Very High",
"send" => "send",
"Subject" => "Subject",
"Compose message" => "Compose message",
"To" => "To",
"CC" => "CC",
"BCC" => "BCC",
"Messages" => "Messages",
"Read" => "Read",
"Unread" => "Unread",
"Flagged" => "Flagged",
"Unflagged" => "Unflagged",
"1" => "1",
"2" => "2",
"3" => "3",
"4" => "4",
"5" => "5",
"Containing" => "Containing",
"filter" => "filter",
"delete" => "delete",
"Mark as unread" => "Mark as unread",
"Mark as read" => "Mark as read",
"Mark as unflagged" => "Mark as unflagged",
"Mark as flagged" => "Mark as flagged",
"mark" => "mark",
"from" => "from",
"subject" => "subject",
"date" => "date",
"No messages to display" => "No messages to display",
"Mailbox" => "Mailbox",
"Compose" => "Compose",
"Broadcast" => "Broadcast",
"Read message" => "Read message",
"Prev" => "Prev",
"Next" => "Next",
"Return to messages" => "Return to messages",
"reply" => "reply",
"replyall" => "replyall",
"Unflagg" => "Unflagg",
"Flag this message" => "Flag this message",
"From" => "From",
"Cc" => "Cc",
"Date" => "Date",
"Features" => "Features",
"General" => "General",
"Login" => "Login",
"Image Galleries" => "Image Galleries",
"File Galleries" => "File Galleries",
"Polls" => "Polls",
"RSS" => "RSS",
"Webmail" => "Webmail",
"User files" => "User files",
"Blog settings" => "Blog settings",
"Home Blog (main blog)" => "Home Blog (main blog)",
"Set prefs" => "Set prefs",
"Blog features" => "Blog features",
"Rankings" => "Rankings",
"Blog level comments" => "Blog level comments",
"Post level comments" => "Post level comments",
"Spellchecking" => "Spellchecking",
"Default ordering for blog listing" => "Default ordering for blog listing",
"Creation date (desc)" => "Creation date (desc)",
"Last modification date (desc)" => "Last modification date (desc)",
"Blog title (asc)" => "Blog title (asc)",
"Number of posts (desc)" => "Number of posts (desc)",
"Visits (desc)" => "Visits (desc)",
"Activity (desc)" => "Activity (desc)",
"In blog listing show user as" => "In blog listing show user as",
"Plain text" => "Plain text",
"Link to user information" => "Link to user information",
"User avatar" => "User avatar",
"Set features" => "Set features",
"Blog listing configuration (when listing available blogs)" => "Blog listing configuration (when listing available blogs)",
"title" => "title",
"creation date" => "creation date",
"last modification time" => "last modification time",
"user" => "user",
"posts" => "posts",
"visits" => "visits",
"activity" => "activity",
"Change preferences" => "Change preferences",
"Blog comments settings" => "Blog comments settings",
"Default number of comments per page" => "Default number of comments per page",
"Comments default ordering" => "Comments default ordering",
"Points" => "Points",
"CMS settings" => "CMS settings",
"CMS features" => "CMS features",
"Use templates" => "Use templates",
"Maximum number of articles in home" => "Maximum number of articles in home",
"Article comments settings" => "Article comments settings",
"List articles" => "List articles",
"Topic" => "Topic",
"Author" => "Author",
"Size" => "Size",
"Img" => "Img",
"Number of columns per page when listing categories" => "Number of columns per page when listing categories",
"Links per page" => "Links per page",
"Validate URLs" => "Validate URLs",
"Method to open directory links" => "Method to open directory links",
"replace current window" => "replace current window",
"new window" => "new window",
"inline frame" => "inline frame",
"FAQs settings" => "FAQs settings",
"FAQ comments" => "FAQ comments",
"Tiki sections and features" => "Tiki sections and features",
"Submissions" => "Submissions",
"Chat" => "Chat",
"Shoutbox" => "Shoutbox",
"Newsreader" => "Newsreader",
"Surveys" => "Surveys",
"Featured links" => "Featured links",
"Banners" => "Banners",
"Full Text Search" => "Full Text Search",
"Games" => "Games",
"Search stats" => "Search stats",
"Newsletters" => "Newsletters",
"Live support system" => "Live support system",
"HTML pages" => "HTML pages",
"Workflow" => "Workflow",
"Workflow engine" => "Workflow engine",
"Mini Calendar" => "Mini Calendar",
"Categories" => "Categories",
"Calendar" => "Calendar",
"Content Features" => "Content Features",
"Hotwords" => "Hotwords",
"Edit CSS" => "Edit CSS",
"Drawings" => "Drawings",
"Administration Features" => "Administration Features",
"Banning system" => "Banning system",
"Debugger Console" => "Debugger Console",
"Stats" => "Stats",
"Communications (send/receive objects)" => "Communications (send/receive objects)",
"XMLRPC API" => "XMLRPC API",
"User Features" => "User Features",
"User Bookmarks" => "User Bookmarks",
"User Menu" => "User Menu",
"User Messages" => "User Messages",
"User Tasks" => "User Tasks",
"User Files" => "User Files",
"General Layout options" => "General Layout options",
"Left column" => "Left column",
"Layout per section" => "Layout per section",
"Right column" => "Right column",
"Admin layout per section" => "Admin layout per section",
"Top bar" => "Top bar",
"Bottom bar" => "Bottom bar",
"Update" => "Update",
"File galleries" => "File galleries",
"Home Gallery (main gallery)" => "Home Gallery (main gallery)",
"Galleries features" => "Galleries features",
"Use database to store files" => "Use database to store files",
"Use a directory to store files" => "Use a directory to store files",
"Directory path" => "Directory path",
"Uploaded filenames must match regex" => "Uploaded filenames must match regex",
"Uploaded filenames cannot match regex" => "Uploaded filenames cannot match regex",
"please read" => "please read",
"Gallery listing configuration" => "Gallery listing configuration",
"Name" => "Name",
"Description" => "Description",
"Created" => "Created",
"Last modified" => "Last modified",
"User" => "User",
"Files" => "Files",
"File galleries comments settings" => "File galleries comments settings",
"Forums settings" => "Forums settings",
"Home Forum (main forum)" => "Home Forum (main forum)",
"Set home forum" => "Set home forum",
"Accept wiki syntax" => "Accept wiki syntax",
"Forum quick jumps" => "Forum quick jumps",
"Ordering for forums in the forum listing" => "Ordering for forums in the forum listing",
"Creation Date (desc)" => "Creation Date (desc)",
"Topics (desc)" => "Topics (desc)",
"Threads (desc)" => "Threads (desc)",
"Last post (desc)" => "Last post (desc)",
"Name (desc)" => "Name (desc)",
"Name (asc)" => "Name (asc)",
"Forum listing configuration" => "Forum listing configuration",
"Topics" => "Topics",
"Posts per day" => "Posts per day",
"Last post" => "Last post",
"Image galleries" => "Image galleries",
"Use database to store images" => "Use database to store images",
"Use a directory to store images" => "Use a directory to store images",
"Library to use for processing images" => "Library to use for processing images",
"Uploaded image names must match regex" => "Uploaded image names must match regex",
"Uploaded image names cannot match regex" => "Uploaded image names cannot match regex",
"Remove images in the system gallery not being used in Wiki pages, articles or blog posts" => "Remove images in the system gallery not being used in Wiki pages, articles or blog posts",
"Images" => "Images",
"Image galleries comments settings" => "Image galleries comments settings",
"General preferences and settings" => "General preferences and settings",
"General Preferences" => "General Preferences",
"Theme" => "Theme",
"Slideshows theme" => "Slideshows theme",
"Use URI as Home Page" => "Use URI as Home Page",
"Home page" => "Home page",
"Custom home" => "Custom home",
"Language" => "Language",
"Use database for translation" => "Use database for translation",
"Record untranslated" => "Record untranslated",
"OS" => "OS",
"Unix" => "Unix",
"Windows" => "Windows",
"Unknown/Other" => "Unknown/Other",
"General Settings" => "General Settings",
"Open external links in new window" => "Open external links in new window",
"Display modules to all groups always" => "Display modules to all groups always",
"Use cache for external pages" => "Use cache for external pages",
"Use cache for external images" => "Use cache for external images",
"Use direct pagination links" => "Use direct pagination links",
"Display menus as folders" => "Display menus as folders",
"Use gzipped output" => "Use gzipped output",
"Count admin pageviews" => "Count admin pageviews",
"Server name (for absolute URIs)" => "Server name (for absolute URIs)",
"Browser title" => "Browser title",
"Wiki_Tiki_Title" => "Wiki_Tiki_Title",
"Temporary directory" => "Temporary directory",
"Sender Email" => "Sender Email",
"Contact user" => "Contact user",
"contact feature disabled" => "contact feature disabled",
"Maximum number of records in listings" => "Maximum number of records in listings",
"Date and Time Formats" => "Date and Time Formats",
"Long date format" => "Long date format",
"Short date format" => "Short date format",
"Long time format" => "Long time format",
"Short time format" => "Short time format",
"Date and Time Format Help" => "Date and Time Format Help",
"Time Zone" => "Time Zone",
"Server time zone" => "Server time zone",
"Displayed time zone" => "Displayed time zone",
"Time Zone Map" => "Time Zone Map",
"Change admin password" => "Change admin password",
"New password" => "New password",
"Repeat password" => "Repeat password",
"Change password" => "Change password",
"Sections" => "Sections",
"Poll settings" => "Poll settings",
"Poll comments settings" => "Poll comments settings",
"RSS feeds" => "RSS feeds",
"<b>Feed</b>" => "<b>Feed</b>",
"<b>enable/disable</b>" => "<b>enable/disable</b>",
"<b>Max number of items</b>" => "<b>Max number of items</b>",
"Feed for Articles" => "Feed for Articles",
"Feed for Weblogs" => "Feed for Weblogs",
"Feed for Image Galleries" => "Feed for Image Galleries",
"Feed for File Galleries" => "Feed for File Galleries",
"Feed for the Wiki" => "Feed for the Wiki",
"Feed for individual Image Galleries" => "Feed for individual Image Galleries",
"Feed for individual File Galleries" => "Feed for individual File Galleries",
"Feed for individual weblogs" => "Feed for individual weblogs",
"Feed for forums" => "Feed for forums",
"Feed for individual forums" => "Feed for individual forums",
"Set feeds" => "Set feeds",
"Path" => "Path",
"Quota (Mb)" => "Quota (Mb)",
"Use database to store userfiles" => "Use database to store userfiles",
"Use a directory to store userfiles" => "Use a directory to store userfiles",
"Allow viewing HTML mails?" => "Allow viewing HTML mails?",
"Maximum size for each attachment" => "Maximum size for each attachment",
"Wiki settings" => "Wiki settings",
"Dumps" => "Dumps",
"Generate dump" => "Generate dump",
"Download last dump" => "Download last dump",
"Create a tag for the current wiki" => "Create a tag for the current wiki",
"create" => "create",
"Restore the wiki" => "Restore the wiki",
"Tag Name" => "Tag Name",
"restore" => "restore",
"Remove a tag" => "Remove a tag",
"Wiki comments settings" => "Wiki comments settings",
"Wiki attachments" => "Wiki attachments",
"Export Wiki Pages" => "Export Wiki Pages",
"Export" => "Export",
"Remove unused pictures" => "Remove unused pictures",
"Wiki Home Page" => "Wiki Home Page",
"Wiki Discussion" => "Wiki Discussion",
"Discuss pages on forums" => "Discuss pages on forums",
"Wiki Page Names" => "Wiki Page Names",
"full" => "full",
"strict" => "strict",
"Wiki page list configuration" => "Wiki page list configuration",
"Last modification date" => "Last modification date",
"Creator" => "Creator",
"Last version" => "Last version",
"Status" => "Status",
"Versions" => "Versions",
"Links" => "Links",
"Wiki Features" => "Wiki Features",
"Sandbox" => "Sandbox",
"Last changes" => "Last changes",
"Dump" => "Dump",
"Ranking" => "Ranking",
"History" => "History",
"List pages" => "List pages",
"Backlinks" => "Backlinks",
"Like pages" => "Like pages",
"Undo" => "Undo",
"MultiPrint" => "MultiPrint",
"PDF generation" => "PDF generation",
"Warn on edit" => "Warn on edit",
"mins" => "mins",
"Pictures" => "Pictures",
"Use page description" => "Use page description",
"Show page title" => "Show page title",
"no cache" => "no cache",
"minutes" => "minutes",
"minute" => "minute",
"hour" => "hour",
"hours" => "hours",
"Footnotes" => "Footnotes",
"Users can lock pages (if perm)" => "Users can lock pages (if perm)",
"Use WikiWords" => "Use WikiWords",
"Page creators are admin of their pages" => "Page creators are admin of their pages",
"Tables syntax" => "Tables syntax",
"|| for rows" => "|| for rows",
"Automonospaced text" => "Automonospaced text",
"Wiki History" => "Wiki History",
"Maximum number of versions for history" => "Maximum number of versions for history",
"Never delete versions younger than days" => "Never delete versions younger than days",
"Copyright Management" => "Copyright Management",
"Enable Feature" => "Enable Feature",
"License Page" => "License Page",
"Submit Notice" => "Submit Notice",
"Set" => "Set",
"Administration" => "Administration",
"Banning" => "Banning",
"Add or edit a rule" => "Add or edit a rule",
"Rule title" => "Rule title",
"Username regex matching" => "Username regex matching",
"IP regex matching" => "IP regex matching",
"Banned from sections" => "Banned from sections",
"Rule activated by dates" => "Rule activated by dates",
"Rule active from" => "Rule active from",
"Rule active until" => "Rule active until",
"Custom message to the user" => "Custom message to the user",
"save" => "save",
"Find" => "Find",
"Rules" => "Rules",
"x" => "x",
"User/IP" => "User/IP",
"Action" => "Action",
"No records found" => "No records found",
"Admin Calendars" => "Admin Calendars",
"Create/edit Calendars" => "Create/edit Calendars",
"Custom Locations" => "Custom Locations",
"Custom Categories" => "Custom Categories",
"Custom Languages" => "Custom Languages",
"no" => "no",
"Custom Priorities" => "Custom Priorities",
"yes" => "yes",
"Save" => "Save",
"List of Calendars" => "List of Calendars",
"find" => "find",
"ID" => "ID",
"loc" => "loc",
"cat" => "cat",
"lang" => "lang",
"prio" => "prio",
"action" => "action",
"Current category" => "Current category",
"Edit this category:" => "Edit this category:",
"create new" => "create new",
"Add new category" => "Add new category",
"Parent" => "Parent",
"top" => "top",
"type" => "type",
"Add objects to category" => "Add objects to category",
"directory" => "directory",
"image gal" => "image gal",
"file gal" => "file gal",
"poll" => "poll",
"faq" => "faq",
"quiz" => "quiz",
"Admin chart items" => "Admin chart items",
"charts" => "charts",
"edit chart" => "edit chart",
"Add or edit an item" => "Add or edit an item",
"new" => "new",
"update" => "update",
"Chart items" => "Chart items",
"URL" => "URL",
"No items defined yet" => "No items defined yet",
"Admin charts" => "Admin charts",
"Add or edit a chart" => "Add or edit a chart",
"Active" => "Active",
"Users can vote only one item from this chart per period" => "Users can vote only one item from this chart per period",
"Prevent users from voting same item more than one time" => "Prevent users from voting same item more than one time",
"Users can suggest new items" => "Users can suggest new items",
"Auto validate user suggestions" => "Auto validate user suggestions",
"Ranking shows" => "Ranking shows",
"All items" => "All items",
"Top 10 items" => "Top 10 items",
"Top 20 items" => "Top 20 items",
"Top 40 items" => "Top 40 items",
"Top 50 items" => "Top 50 items",
"Top 100 items" => "Top 100 items",
"Top 250 items" => "Top 250 items",
"Voting system" => "Voting system",
"Vote items" => "Vote items",
"Rank 1..5" => "Rank 1..5",
"Rank 1..10" => "Rank 1..10",
"Ranking frequency" => "Ranking frequency",
"Realtime" => "Realtime",
"Each 5 minutes" => "Each 5 minutes",
"Daily" => "Daily",
"Weekly" => "Weekly",
"Monthly" => "Monthly",
"Show Average" => "Show Average",
"Show Votes" => "Show Votes",
"Use Cookies for unregistered users" => "Use Cookies for unregistered users",
"Users can vote again after" => "Users can vote again after",
"Anytime" => "Anytime",
"5 minutes" => "5 minutes",
"1 day" => "1 day",
"1 week" => "1 week",
"1 month" => "1 month",
"Items" => "Items",
"Ranks" => "Ranks",
"No charts defined yet" => "No charts defined yet",
"Chat Administration" => "Chat Administration",
"Create/edit channel" => "Create/edit channel",
"Refresh rate" => "Refresh rate",
"half a second" => "half a second",
"second" => "second",
"seconds" => "seconds",
"Chat channels" => "Chat channels",
"active" => "active",
"refresh" => "refresh",
"Admin templates" => "Admin templates",
"Edit this template:" => "Edit this template:",
"Create new template" => "Create new template",
"use in cms" => "use in cms",
"use in wiki" => "use in wiki",
"use in newsletters" => "use in newsletters",
"use in HTML pages" => "use in HTML pages",
"template" => "template",
"Templates" => "Templates",
"last modif" => "last modif",
"sections" => "sections",
"Admin cookies" => "Admin cookies",
"Create/edit cookies" => "Create/edit cookies",
"Cookie" => "Cookie",
"Upload Cookies from textfile" => "Upload Cookies from textfile",
"Upload from disk:" => "Upload from disk:",
"upload" => "upload",
"Cookies" => "Cookies",
"Remove all cookies" => "Remove all cookies",
"cookie" => "cookie",
"Admin drawings" => "Admin drawings",
"Available drawings" => "Available drawings",
"Ver" => "Ver",
"Admin dsn" => "Admin dsn",
"Create/edit dsn" => "Create/edit dsn",
"dsn" => "dsn",
"Admin external wikis" => "Admin external wikis",
"URL (use \$page to be replaced by the page name in the URL example: http:www.example.com/tiki-index.php?page=\$page)" => "URL (use \$page to be replaced by the page name in the URL example: http:www.example.com/tiki-index.php?page=\$page)",
"extwiki" => "extwiki",
"Admin Forums" => "Admin Forums",
"Edit this Forum:" => "Edit this Forum:",
"Create New Forum" => "Create New Forum",
"There are individual permissions set for this forum" => "There are individual permissions set for this forum",
"Show description" => "Show description",
"Prevent flooding" => "Prevent flooding",
"Minimum time between posts" => "Minimum time between posts",
"secs" => "secs",
"min" => "min",
"Topics per page" => "Topics per page",
"Section" => "Section",
"None" => "None",
"Create new" => "Create new",
"Moderator user" => "Moderator user",
"Moderator group" => "Moderator group",
"Password protected" => "Password protected",
"No" => "No",
"Topics only" => "Topics only",
"All posts" => "All posts",
"Forum password" => "Forum password",
"Default ordering for topics" => "Default ordering for topics",
"Replies (desc)" => "Replies (desc)",
"Reads (desc)" => "Reads (desc)",
"Default ordering for threads" => "Default ordering for threads",
"Date (desc)" => "Date (desc)",
"Date (asc)" => "Date (asc)",
"Score (desc)" => "Score (desc)",
"Title (desc)" => "Title (desc)",
"Title (asc)" => "Title (asc)",
"Send this forums posts to this email" => "Send this forums posts to this email",
"Prune unreplied messages after" => "Prune unreplied messages after",
"Prune old messages after" => "Prune old messages after",
"days" => "days",
"Topic list configuration" => "Topic list configuration",
"Replies" => "Replies",
"author" => "author",
"Threads can be voted" => "Threads can be voted",
"Add messages from this email to the forum" => "Add messages from this email to the forum",
"POP3 server" => "POP3 server",
"Password" => "Password",
"Use topic smileys" => "Use topic smileys",
"Show topic summary" => "Show topic summary",
"User information display" => "User information display",
"avatar" => "avatar",
"flag" => "flag",
"user level" => "user level",
"email" => "email",
"online" => "online",
"Approval type" => "Approval type",
"All posted" => "All posted",
"Queue anonymous posts" => "Queue anonymous posts",
"Queue all posts" => "Queue all posts",
"Attachments" => "Attachments",
"No attachments" => "No attachments",
"Everybody can attach" => "Everybody can attach",
"Only users with attach permission" => "Only users with attach permission",
"Moderators and admin can attach" => "Moderators and admin can attach",
"Store attachments in:" => "Store attachments in:",
"Database" => "Database",
"Directory (include trailing slash)" => "Directory (include trailing slash)",
"Max attachment size (bytes)" => "Max attachment size (bytes)",
"topics" => "topics",
"coms" => "coms",
"users" => "users",
"age" => "age",
"ppd" => "ppd",
"last post" => "last post",
"hits" => "hits",
"permissions" => "permissions",
"Admin Hotwords" => "Admin Hotwords",
"Add Hotword" => "Add Hotword",
"Add" => "Add",
"Word" => "Word",
"Admin HTML pages" => "Admin HTML pages",
"Edit this page" => "Edit this page",
"View page" => "View page",
"Edit zone" => "Edit zone",
"Zone" => "Zone",
"Content" => "Content",
"Dynamic zones" => "Dynamic zones",
"zone" => "zone",
"content" => "content",
"Mass update" => "Mass update",
"Edit this HTML page:" => "Edit this HTML page:",
"Create new HTML page" => "Create new HTML page",
"Page name" => "Page name",
"Apply template" => "Apply template",
"none" => "none",
"Type" => "Type",
"Dynamic" => "Dynamic",
"Static" => "Static",
"Refresh rate (if dynamic) [secs]" => "Refresh rate (if dynamic) [secs]",
"Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones" => "Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones",
"Admin layout" => "Admin layout",
"layout options" => "layout options",
"Generate positions by hits" => "Generate positions by hits",
"List of featured links" => "List of featured links",
"url" => "url",
"position" => "position",
"Add Featured Link" => "Add Featured Link",
"Edit this Featured Link:" => "Edit this Featured Link:",
"Create new Featured Link" => "Create new Featured Link",
"Position" => "Position",
"disables the link" => "disables the link",
"Link type" => "Link type",
"replace current page" => "replace current page",
"framed" => "framed",
"open new window" => "open new window",
"Add new mail account" => "Add new mail account",
"Account name" => "Account name",
"POP server" => "POP server",
"SMTP server" => "SMTP server",
"Port" => "Port",
"SMTP requires authentication" => "SMTP requires authentication",
"Yes" => "Yes",
"Username" => "Username",
"wiki-get" => "wiki-get",
"wiki-put" => "wiki-put",
"wiki-append" => "wiki-append",
"wiki" => "wiki",
"User accounts" => "User accounts",
"account" => "account",
"Admin Menu" => "Admin Menu",
"List menus" => "List menus",
"Edit this menu" => "Edit this menu",
"Preview menu" => "Preview menu",
"Edit menu options" => "Edit menu options",
"section" => "section",
"option" => "option",
"Some useful URLs" => "Some useful URLs",
"Home Page" => "Home Page",
"Home Blog" => "Home Blog",
"Home Image Gal" => "Home Image Gal",
"Home Image Gallery" => "Home Image Gallery",
"Home File Gal" => "Home File Gal",
"Home File Gallery" => "Home File Gallery",
"User preferences" => "User preferences",
"User prefs" => "User prefs",
"List galleries" => "List galleries",
"List image galleries" => "List image galleries",
"Upload image" => "Upload image",
"Upload" => "Upload",
"Gallery Rankings" => "Gallery Rankings",
"Browse a gallery" => "Browse a gallery",
"Articles home" => "Articles home",
"All articles" => "All articles",
"Submit" => "Submit",
"List Blogs" => "List Blogs",
"Create blog" => "Create blog",
"View a forum" => "View a forum",
"View a thread" => "View a thread",
"View a FAQ" => "View a FAQ",
"Take a quiz" => "Take a quiz",
"Quiz stats" => "Quiz stats",
"Stats for a Quiz" => "Stats for a Quiz",
"Menu options" => "Menu options",
"Admin Menus" => "Admin Menus",
"Edit this Menu:" => "Edit this Menu:",
"Create new Menu" => "Create new Menu",
"dynamic extended" => "dynamic extended",
"fixed" => "fixed",
"Menus" => "Menus",
"options" => "options",
"Admin Modules" => "Admin Modules",
"assign module" => "assign module",
"left modules" => "left modules",
"right modules" => "right modules",
"edit/create" => "edit/create",
"clear cache" => "clear cache",
"\n<b>Note 1</b>: if you allow your users to configure modules then assigned\nmodules won't be reflected in the screen until you configure them\nfrom MyTiki->modules.<br/>\n<b>Note 2</b>: If you assign modules to groups make sure that you\nhave turned off the option 'display modules to all groups always'\nfrom Admin->General\n" => "\n<b>Note 1</b>: if you allow your users to configure modules then assigned\nmodules won't be reflected in the screen until you configure them\nfrom MyTiki->modules.<br/>\n<b>Note 2</b>: If you assign modules to groups make sure that you\nhave turned off the option 'display modules to all groups always'\nfrom Admin->General\n",
"User Modules" => "User Modules",
"Assign new module" => "Assign new module",
"Edit this assigned module:" => "Edit this assigned module:",
"Module Name" => "Module Name",
"left" => "left",
"right" => "right",
"Order" => "Order",
"Cache Time" => "Cache Time",
"Rows" => "Rows",
"Parameters" => "Parameters",
"Groups" => "Groups",
"assign" => "assign",
"Assigned Modules" => "Assigned Modules",
"Left Modules" => "Left Modules",
"order" => "order",
"cache" => "cache",
"Right Modules" => "Right Modules",
"rows" => "rows",
"groups" => "groups",
"up" => "up",
"down" => "down",
"Create new user module" => "Create new user module",
"Edit this user module:" => "Edit this user module:",
"Use wysiwyg editor" => "Use wysiwyg editor",
"Use normal editor" => "Use normal editor",
"Data" => "Data",
"create/edit" => "create/edit",
"Objects that can be included" => "Objects that can be included",
"Available polls" => "Available polls",
"use poll" => "use poll",
"Random image from" => "Random image from",
"All galleries" => "All galleries",
"use gallery" => "use gallery",
"Dynamic content blocks" => "Dynamic content blocks",
"use dynamic content" => "use dynamic content",
"RSS modules" => "RSS modules",
"use rss module" => "use rss module",
"use menu" => "use menu",
"Banner zones" => "Banner zones",
"use banner zone" => "use banner zone",
"Admin newsletter subscriptions" => "Admin newsletter subscriptions",
"list newsletters" => "list newsletters",
"admin newsletters" => "admin newsletters",
"send newsletters" => "send newsletters",
"Add a subscription newsletters" => "Add a subscription newsletters",
"Email" => "Email",
"Add all your site users to this newsletter (broadcast)" => "Add all your site users to this newsletter (broadcast)",
"Add users" => "Add users",
"Subscriptions" => "Subscriptions",
"valid" => "valid",
"subscribed" => "subscribed",
"Admin newsletters" => "Admin newsletters",
"Create/edit newsletters" => "Create/edit newsletters",
"There are individual permissions set for this newsletter" => "There are individual permissions set for this newsletter",
"editions" => "editions",
"last sent" => "last sent",
"subscriptions" => "subscriptions",
"perms" => "perms",
"Add notification" => "Add notification",
"Event" => "Event",
"A user registers" => "A user registers",
"A user submits an article" => "A user submits an article",
"use admin email" => "use admin email",
"event" => "event",
"object" => "object",
"Admin Polls" => "Admin Polls",
"List polls" => "List polls",
"Edit this poll" => "Edit this poll",
"Preview poll" => "Preview poll",
"Edit or add poll options" => "Edit or add poll options",
"Option" => "Option",
"Poll options" => "Poll options",
"votes" => "votes",
"Set last poll as current" => "Set last poll as current",
"Close all polls but last" => "Close all polls but last",
"Activate all polls" => "Activate all polls",
"Create/edit Polls" => "Create/edit Polls",
"current" => "current",
"closed" => "closed",
"PublishDate" => "PublishDate",
"at" => "at",
"Publish" => "Publish",
"Admin RSS modules" => "Admin RSS modules",
"Content for the feed" => "Content for the feed",
"Edit this RSS module:" => "Edit this RSS module:",
"Create new RSS module" => "Create new RSS module",
"Rss channels" => "Rss channels",
"Last update" => "Last update",
"Structures" => "Structures",
"Create new structure" => "Create new structure",
"create new empty structure" => "create new empty structure",
"Destroy the structure leaving the wiki pages" => "Destroy the structure leaving the wiki pages",
"Destroy the structure and remove the pages" => "Destroy the structure and remove the pages",
"Structure" => "Structure",
"export pages" => "export pages",
"dump tree" => "dump tree",
"Create structure from tree" => "Create structure from tree",
"Use single spaces to indent structure levels" => "Use single spaces to indent structure levels",
"tree" => "tree",
"Edit survey questions" => "Edit survey questions",
"List surveys" => "List surveys",
"survey stats" => "survey stats",
"this survey stats" => "this survey stats",
"edit this survey" => "edit this survey",
"admin surveys" => "admin surveys",
"Create/edit questions for survey" => "Create/edit questions for survey",
"Question" => "Question",
"One choice" => "One choice",
"Multiple choices" => "Multiple choices",
"Short text" => "Short text",
"Rate (1..5)" => "Rate (1..5)",
"Rate (1..10)" => "Rate (1..10)",
"Options (if apply)" => "Options (if apply)",
"Questions" => "Questions",
"question" => "question",
"Admin surveys" => "Admin surveys",
"list surveys" => "list surveys",
"Edit this Survey:" => "Edit this Survey:",
"Create New Survey:" => "Create New Survey:",
"There are individual permissions set for this survey" => "There are individual permissions set for this survey",
"open" => "open",
"stat" => "stat",
"questions" => "questions",
"Admin Topics" => "Admin Topics",
"Create a new topic" => "Create a new topic",
"Topic Name" => "Topic Name",
"Upload Image" => "Upload Image",
"List of topics" => "List of topics",
"Active?" => "Active?",
"Articles (subs)" => "Articles (subs)",
"Remove" => "Remove",
"Activate" => "Activate",
"Deactivate" => "Deactivate",
"Edit" => "Edit",
"Admin tracker" => "Admin tracker",
"List trackers" => "List trackers",
"Admin trackers" => "Admin trackers",
"Edit this tracker" => "Edit this tracker",
"View this tracker items" => "View this tracker items",
"Edit tracker fields" => "Edit tracker fields",
"checkbox" => "checkbox",
"text field" => "text field",
"textarea" => "textarea",
"drop down" => "drop down",
"user selector" => "user selector",
"group selector" => "group selector",
"date and time" => "date and time",
"Options (separated by commas used in dropdowns only)" => "Options (separated by commas used in dropdowns only)",
"Is column visible when listing tracker items?" => "Is column visible when listing tracker items?",
"Column links to edit/view item?" => "Column links to edit/view item?",
"Tracker fields" => "Tracker fields",
"isMain" => "isMain",
"Tbl vis" => "Tbl vis",
"Create/edit trackers" => "Create/edit trackers",
"There are individual permissions set for this tracker" => "There are individual permissions set for this tracker",
"Show status when listing tracker items?" => "Show status when listing tracker items?",
"Show creation date when listing tracker items?" => "Show creation date when listing tracker items?",
"Show lastModif date when listing tracker items?" => "Show lastModif date when listing tracker items?",
"Tracker items allow comments?" => "Tracker items allow comments?",
"Tracker items allow attachments?" => "Tracker items allow attachments?",
"trackers" => "trackers",
"created" => "created",
"items" => "items",
"fields" => "fields",
"Admin groups" => "Admin groups",
"Add New Group" => "Add New Group",
"Add New Role" => "Add New Role",
"Edit this group:" => "Edit this group:",
"Desc" => "Desc",
"Include" => "Include",
"List of existing groups" => "List of existing groups",
"Includes" => "Includes",
"Permissions" => "Permissions",
"assign_perms" => "assign_perms",
"Admin users" => "Admin users",
"Add a new user" => "Add a new user",
"Pass" => "Pass",
"Again" => "Again",
"Batch upload (CSV file)" => "Batch upload (CSV file)",
"Overwrite" => "Overwrite",
"Generate a password" => "Generate a password",
"Batch Upload Results" => "Batch Upload Results",
"Added users" => "Added users",
"Rejected users" => "Rejected users",
"Reason" => "Reason",
"Users" => "Users",
"Number of displayed rows" => "Number of displayed rows",
"Last login" => "Last login",
"assign group" => "assign group",
"view info" => "view info",
"Assign permissions to group" => "Assign permissions to group",
"Group Information" => "Group Information",
"Create level" => "Create level",
"all permissions in level" => "all permissions in level",
"File gals" => "File gals",
"Image gals" => "Image gals",
"Comm" => "Comm",
"Cms" => "Cms",
"Content Templates" => "Content Templates",
"DSN" => "DSN",
"ExtWikis" => "ExtWikis",
"Live support" => "Live support",
"level" => "level",
"assgn" => "assgn",
"Assign user" => "Assign user",
"to groups" => "to groups",
"User Information" => "User Information",
"backlinks to" => "backlinks to",
"No backlinks to this page" => "No backlinks to this page",
"Backups" => "Backups",
"List of available backups" => "List of available backups",
"Filename" => "Filename",
"Restoring a backup" => "Restoring a backup",
"Warning!" => "Warning!",
"Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the backup." => "Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the backup.",
"Click here to confirm restoring" => "Click here to confirm restoring",
"Create new backup" => "Create new backup",
"Creating backups may take a long time. If the process is not completed you will see a blank screen. If so you need to increment the maximum script execution time from your php.ini file" => "Creating backups may take a long time. If the process is not completed you will see a blank screen. If so you need to increment the maximum script execution time from your php.ini file",
"Click here to create a new backup" => "Click here to create a new backup",
"Upload a backup" => "Upload a backup",
"Upload backup" => "Upload backup",
"Edit Post" => "Edit Post",
"view blog" => "view blog",
"list blogs" => "list blogs",
"Note: if you want to use images please save the post first and you\nwill be able to edit/post images. Use the <img> snippet to include uploaded images in the textarea editor\nor use the image URL to include images using the WYSIWYG editor. " => "Note: if you want to use images please save the post first and you\nwill be able to edit/post images. Use the <img> snippet to include uploaded images in the textarea editor\nor use the image URL to include images using the WYSIWYG editor. ",
"Quicklinks" => "Quicklinks",
"Use ...page... to separate pages in a multi-page post" => "Use ...page... to separate pages in a multi-page post",
"Upload image for this post" => "Upload image for this post",
"Send trackback pings to:" => "Send trackback pings to:",
"(comma separated list of URIs)" => "(comma separated list of URIs)",
"Spellcheck" => "Spellcheck",
"save and exit" => "save and exit",
"Valid" => "Valid",
"search category" => "search category",
"deep" => "deep",
"Objects" => "Objects",
"Browsing Gallery" => "Browsing Gallery",
"edit gallery" => "edit gallery",
"rebuild thumbnails" => "rebuild thumbnails",
"upload image" => "upload image",
"list gallery" => "list gallery",
"Sort Images by" => "Sort Images by",
"original size" => "original size",
"rotate right" => "rotate right",
"rotate" => "rotate",
"popup" => "popup",
"comments" => "comments",
"Browsing Image" => "Browsing Image",
"return to gallery" => "return to gallery",
"edit image" => "edit image",
"prev image" => "prev image",
"next image" => "next image",
"Klick to enlarge" => "Klick to enlarge",
"first image" => "first image",
"smaller" => "smaller",
"bigger" => "bigger",
"Popup window" => "Popup window",
"popup window" => "popup window",
"last image" => "last image",
"Image Name" => "Image Name",
"Move image" => "Move image",
"move" => "move",
"You can view this image in your browser using" => "You can view this image in your browser using",
"You can include the image in an HTML or Tiki page using" => "You can include the image in an HTML or Tiki page using",
"admin" => "admin",
"Calendars Panel" => "Calendars Panel",
"Navigation Panel" => "Navigation Panel",
"Refresh" => "Refresh",
"Tools Calendars" => "Tools Calendars",
"check / uncheck all" => "check / uncheck all",
"Hide Panels" => "Hide Panels",
"Group Calendars" => "Group Calendars",
"Tiki Calendars" => "Tiki Calendars",
"hide from display" => "hide from display",
"today" => "today",
"+1d" => "+1d",
"+7d" => "+7d",
"+1m" => "+1m",
"browse by" => "browse by",
"week" => "week",
"month" => "month",
"+" => "+",
"Edit Calendar Item" => "Edit Calendar Item",
"If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose)." => "If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose).",
"Category" => "Category",
"or create a new category" => "or create a new category",
"Location" => "Location",
"or create a new location" => "or create a new location",
"Organized by" => "Organized by",
"comma separated usernames" => "comma separated usernames",
"from the list" => "from the list",
"choose" => "choose",
"Participants" => "Participants",
"comma separated username:role" => "comma separated username:role",
"with role" => "with role",
"Required" => "Required",
"with roles" => "with roles",
"Chair" => "Chair",
"Optional" => "Optional",
"Start" => "Start",
"End" => "End",
"Url" => "Url",
"Tentative" => "Tentative",
"Confirmed" => "Confirmed",
"Cancelled" => "Cancelled",
"duplicate" => "duplicate",
"You should first ask that a calendar is created, so you can create events attached to it." => "You should first ask that a calendar is created, so you can create events attached to it.",
"Change password enforced" => "Change password enforced",
"Old password" => "Old password",
"Again please" => "Again please",
"change" => "change",
"Welcome to the Tiki Chat Rooms" => "Welcome to the Tiki Chat Rooms",
"Please select a chat channel" => "Please select a chat channel",
"Nickname" => "Nickname",
"enter chat room" => "enter chat room",
"Chatroom" => "Chatroom",
"Active Channels" => "Active Channels",
"Users in this channel" => "Users in this channel",
"Browser not supported" => "Browser not supported",
"Channel Information" => "Channel Information",
"Channel" => "Channel",
"Ratio" => "Ratio",
"Use :nickname:message for private messages" => "Use :nickname:message for private messages",
"Use [URL|description] or [URL] for links" => "Use [URL|description] or [URL] for links",
"Use (:name:) for smileys" => "Use (:name:) for smileys",
"PDF Settings" => "PDF Settings",
"Font" => "Font",
"Textheight" => "Textheight",
"Height of top Heading" => "Height of top Heading",
"Height of mid Heading" => "Height of mid Heading",
"Height of inner Heading" => "Height of inner Heading",
"tbheight" => "tbheight",
"imagescale" => "imagescale",
"Filter" => "Filter",
"Select Wiki Pages" => "Select Wiki Pages",
"add page" => "add page",
"remove page" => "remove page",
"reset" => "reset",
"Create PDF" => "Create PDF",
"Contact us" => "Contact us",
"Send a message to us" => "Send a message to us",
"Contact us by email" => "Contact us by email",
"Tiki Debugger Console" => "Tiki Debugger Console",
"Close" => "Close",
"Current URL" => "Current URL",
"Command" => "Command",
"exec" => "exec",
"Type <code>help</code> to get list of available commands" => "Type <code>help</code> to get list of available commands",
"Add a new site" => "Add a new site",
"Site added" => "Site added",
"The following site was added and validation by admin may be needed before appearing on the lists" => "The following site was added and validation by admin may be needed before appearing on the lists",
"Country" => "Country",
"Add or edit a site" => "Add or edit a site",
"Is valid" => "Is valid",
"Directory Administration" => "Directory Administration",
"Statistics" => "Statistics",
"invalid sites" => "invalid sites",
"valid sites" => "valid sites",
"There are" => "There are",
"categories" => "categories",
"Users have visited" => "Users have visited",
"sites from the directory" => "sites from the directory",
"Users have searched" => "Users have searched",
"times from the directory" => "times from the directory",
"Menu" => "Menu",
"Admin sites" => "Admin sites",
"Admin category relationships" => "Admin category relationships",
"Validate links" => "Validate links",
"Settings" => "Settings",
"browse" => "browse",
"related" => "related",
"sites" => "sites",
"validate" => "validate",
"Admin directory categories" => "Admin directory categories",
"Parent category" => "Parent category",
"go" => "go",
"Edit this directory category" => "Edit this directory category",
"Add a directory category" => "Add a directory category",
"Children type" => "Children type",
"Most visited sub-categories" => "Most visited sub-categories",
"Category description" => "Category description",
"Random sub-categories" => "Random sub-categories",
"Maximum number of children to show" => "Maximum number of children to show",
"Allow sites in this category" => "Allow sites in this category",
"Show number of sites in this category" => "Show number of sites in this category",
"Editor group" => "Editor group",
"Subcategories" => "Subcategories",
"cType" => "cType",
"allow" => "allow",
"count" => "count",
"editor" => "editor",
"relate" => "relate",
"Admin related categories" => "Admin related categories",
"Add a related category" => "Add a related category",
"Mutual" => "Mutual",
"Related categories" => "Related categories",
"category" => "category",
"all" => "all",
"Sites" => "Sites",
"country" => "country",
"new sites" => "new sites",
"cool sites" => "cool sites",
"add a site" => "add a site",
"any" => "any",
"in entire directory" => "in entire directory",
"in current category" => "in current category",
"search" => "search",
"Sort by" => "Sort by",
"name (desc)" => "name (desc)",
"name (asc)" => "name (asc)",
"hits (desc)" => "hits (desc)",
"hits (asc)" => "hits (asc)",
"creation date (desc)" => "creation date (desc)",
"creation date (asc)" => "creation date (asc)",
"last updated (desc)" => "last updated (desc)",
"last updated (asc)" => "last updated (asc)",
"sort" => "sort",
"Added" => "Added",
"Last updated" => "Last updated",
"Total categories" => "Total categories",
"Total links" => "Total links",
"Links to validate" => "Links to validate",
"Searches performed" => "Searches performed",
"Total links visited" => "Total links visited",
"Directory ranking" => "Directory ranking",
"Search results" => "Search results",
"Validate sites" => "Validate sites",
"list articles" => "list articles",
"view articles" => "view articles",
"Author Name" => "Author Name",
"Review" => "Review",
"Rating" => "Rating",
"Own Image" => "Own Image",
"Use own image" => "Use own image",
"Float text around image" => "Float text around image",
"Own image size x" => "Own image size x",
"Own image size y" => "Own image size y",
"Heading" => "Heading",
"Body" => "Body",
"Use ...page... to separate pages in a multi-page article" => "Use ...page... to separate pages in a multi-page article",
"Allow HTML" => "Allow HTML",
"Edit or create banners" => "Edit or create banners",
"List banners" => "List banners",
"URL to link the banner" => "URL to link the banner",
"Client" => "Client",
"Max impressions" => "Max impressions",
"create zone" => "create zone",
"Show the banner only between these dates" => "Show the banner only between these dates",
"From date" => "From date",
"To date" => "To date",
"Use dates" => "Use dates",
"Show the banner only in this hours" => "Show the banner only in this hours",
"to" => "to",
"Show the banner only on" => "Show the banner only on",
"Mon" => "Mon",
"Tue" => "Tue",
"Wed" => "Wed",
"Thu" => "Thu",
"Fri" => "Fri",
"Sat" => "Sat",
"Sun" => "Sun",
"Select ONE method for the banner" => "Select ONE method for the banner",
"Use HTML" => "Use HTML",
"HTML code" => "HTML code",
"Use image" => "Use image",
"Image:" => "Image:",
"Current Image" => "Current Image",
"Use image generated by URL (the image will be requested at the URL for each impression)" => "Use image generated by URL (the image will be requested at the URL for each impression)",
"Use text" => "Use text",
"Text" => "Text",
"save the banner" => "save the banner",
"Edit Blog" => "Edit Blog",
"Current heading" => "Current heading",
"There are individual permissions set for this blog" => "There are individual permissions set for this blog",
"Number of posts to show" => "Number of posts to show",
"Allow other user to post in this blog" => "Allow other user to post in this blog",
"Use titles in blog posts" => "Use titles in blog posts",
"Allow search" => "Allow search",
"Allow comments" => "Allow comments",
"Blog heading" => "Blog heading",
"Edit Style Sheet" => "Edit Style Sheet",
"Style Sheet" => "Style Sheet",
"save a custom copy" => "save a custom copy",
"Cancel" => "Cancel",
"choose a stylesheet" => "choose a stylesheet",
"try" => "try",
"display" => "display",
"File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model." => "File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model.",
"Show Plugins Help" => "Show Plugins Help",
"Emphasis" => "Emphasis",
"for" => "for",
"italics" => "italics",
"bold" => "bold",
"both" => "both",
"Lists" => "Lists",
"for bullet lists" => "for bullet lists",
"for numbered lists" => "for numbered lists",
"for definiton lists" => "for definiton lists",
"Wiki References" => "Wiki References",
"JoinCapitalizedWords or use" => "JoinCapitalizedWords or use",
"page|desc" => "page|desc",
"for wiki references" => "for wiki references",
"SomeName" => "SomeName",
"prevents referencing" => "prevents referencing",
"creates the editable drawing foo" => "creates the editable drawing foo",
"External links" => "External links",
"use square brackets for an" => "use square brackets for an",
"external link" => "external link",
"link_description" => "link_description",
"Multi-page pages" => "Multi-page pages",
"use ...page... to separate pages" => "use ...page... to separate pages",
"Misc" => "Misc",
"make_headings" => "make_headings",
"makes a horizontal rule" => "makes a horizontal rule",
"underlines text" => "underlines text",
"Title bar" => "Title bar",
"creates a title bar" => "creates a title bar",
"Non cacheable images" => "Non cacheable images",
"displays an image" => "displays an image",
"height width desc link and align are optional" => "height width desc link and align are optional",
"Tables" => "Tables",
"creates a table" => "creates a table",
"displays rss feed with id=n maximum=m items" => "displays rss feed with id=n maximum=m items",
"Simple box" => "Simple box",
"Box content" => "Box content",
"Creates a box with the data" => "Creates a box with the data",
"Dynamic content" => "Dynamic content",
"Will be replaced by the actual value of the dynamic content block with id=n" => "Will be replaced by the actual value of the dynamic content block with id=n",
"Colored text" => "Colored text",
"some text" => "some text",
"Will display using the indicated HTML color" => "Will display using the indicated HTML color",
"Center" => "Center",
"Will display the text centered" => "Will display the text centered",
"Non parsed sections" => "Non parsed sections",
"Prevents parsing data" => "Prevents parsing data",
"Show Text Formatting Rules" => "Show Text Formatting Rules",
"No description available" => "No description available",
"italic" => "italic",
"underline" => "underline",
"table" => "table",
"wiki link" => "wiki link",
"heading1" => "heading1",
"heading" => "heading",
"title bar" => "title bar",
"box" => "box",
"rss feed" => "rss feed",
"dynamic content" => "dynamic content",
"tagline" => "tagline",
"hr" => "hr",
"horizontal ruler" => "horizontal ruler",
"center text" => "center text",
"center" => "center",
"colored text" => "colored text",
"img nc" => "img nc",
"image" => "image",
"special chars" => "special chars",
"special characters" => "special characters",
"Edit Image" => "Edit Image",
"Edit successful!" => "Edit successful!",
"The following image was successfully edited" => "The following image was successfully edited",
"Image Description" => "Image Description",
"Edit or ex/import Languages" => "Edit or ex/import Languages",
"Edit and create Languages" => "Edit and create Languages",
"Im- Export Languages" => "Im- Export Languages",
"Edit and create languages" => "Edit and create languages",
"Create Language" => "Create Language",
"Shortname" => "Shortname",
"like" => "like",
"Longname" => "Longname",
"Select the language to edit" => "Select the language to edit",
"Add a translation" => "Add a translation",
"Edit translations" => "Edit translations",
"Translate recorded" => "Translate recorded",
"Original" => "Original",
"translate" => "translate",
"reset table" => "reset table",
"previous page" => "previous page",
"next page" => "next page",
"Translation" => "Translation",
"Program dynamic content for block" => "Program dynamic content for block",
"Block description: " => "Block description: ",
"Create or edit content" => "Create or edit content",
"You are editing block:" => "You are editing block:",
"create new block" => "create new block",
"Return to block listing" => "Return to block listing",
"Publishing date" => "Publishing date",
"Available content blocks" => "Available content blocks",
"Id" => "Id",
"Publishing Date" => "Publishing Date",
"Edit question options" => "Edit question options",
"list quizzes" => "list quizzes",
"quiz stats" => "quiz stats",
"this quiz stats" => "this quiz stats",
"edit this quiz" => "edit this quiz",
"admin quizzes" => "admin quizzes",
"Create/edit options for question" => "Create/edit options for question",
"points" => "points",
"Admin quizzes" => "Admin quizzes",
"Create/edit quizzes" => "Create/edit quizzes",
"There are individual permissions set for this quiz" => "There are individual permissions set for this quiz",
"Quiz can be repeated" => "Quiz can be repeated",
"Store quiz results" => "Store quiz results",
"Questions per page" => "Questions per page",
"Quiz is time limited" => "Quiz is time limited",
"Maximum time" => "Maximum time",
"quizzes" => "quizzes",
"canRepeat" => "canRepeat",
"timeLimit" => "timeLimit",
"results" => "results",
"Edit quiz questions" => "Edit quiz questions",
"Create/edit questions for quiz" => "Create/edit questions for quiz",
"Reuse question" => "Reuse question",
"use" => "use",
"maxScore" => "maxScore",
"From Points" => "From Points",
"Answer" => "Answer",
"Results" => "Results",
"To Points" => "To Points",
"answer" => "answer",
"Admin structures" => "Admin structures",
"In parent page" => "In parent page",
"Page alias" => "Page alias",
"After page" => "After page",
"create page" => "create page",
"Use pre-existing page" => "Use pre-existing page",
"You will remove" => "You will remove",
"and its subpages from the structure, now you have two options:" => "and its subpages from the structure, now you have two options:",
"Remove only from structure" => "Remove only from structure",
"Remove from structure and remove page too" => "Remove from structure and remove page too",
"list submissions" => "list submissions",
"Edit templates" => "Edit templates",
"Available templates" => "Available templates",
"Template" => "Template",
"Template listing" => "Template listing",
"Admin" => "Admin",
"Admin ephemerides" => "Admin ephemerides",
"All ephemerides" => "All ephemerides",
"Browse" => "Browse",
"del" => "del",
"Admin FAQ" => "Admin FAQ",
"List FAQs" => "List FAQs",
"View FAQ" => "View FAQ",
"Edit this FAQ" => "Edit this FAQ",
"new question" => "new question",
"Edit FAQ questions" => "Edit FAQ questions",
"Use a question from another FAQ" => "Use a question from another FAQ",
"FAQ questions" => "FAQ questions",
"Suggested questions" => "Suggested questions",
"approve" => "approve",
"No suggested questions" => "No suggested questions",
"Create a file gallery" => "Create a file gallery",
"Edit this file gallery:" => "Edit this file gallery:",
"create new gallery" => "create new gallery",
"There are individual permissions set for this file gallery" => "There are individual permissions set for this file gallery",
"Gallery is visible to non-admin users?" => "Gallery is visible to non-admin users?",
"Listing configuration" => "Listing configuration",
"icon" => "icon",
"id" => "id",
"downloads" => "downloads",
"Name-filename" => "Name-filename",
"Filename only" => "Filename only",
"Max description display size" => "Max description display size",
"Max Rows per page" => "Max Rows per page",
"Other users can upload files to this gallery" => "Other users can upload files to this gallery",
"You can access the file gallery using the following URL" => "You can access the file gallery using the following URL",
"Available File Galleries" => "Available File Galleries",
"Actions" => "Actions",
"configure listing" => "configure listing",
"Message queue for" => "Message queue for",
"back to forum" => "back to forum",
"Edit queued message" => "Edit queued message",
"topic" => "topic",
"make this a thread of" => "make this a thread of",
"None, this is a thread message" => "None, this is a thread message",
"summary" => "summary",
"normal" => "normal",
"announce" => "announce",
"hot" => "hot",
"sticky" => "sticky",
"no feeling" => "no feeling",
"frown" => "frown",
"exclaim" => "exclaim",
"idea" => "idea",
"mad" => "mad",
"neutral" => "neutral",
"sad" => "sad",
"happy" => "happy",
"wink" => "wink",
"save and approve" => "save and approve",
"convert to topic" => "convert to topic",
"List of messages" => "List of messages",
"message" => "message",
"new topic" => "new topic",
"no summary" => "no summary",
"attachment" => "attachment",
"No messages queued yet" => "No messages queued yet",
"reject" => "reject",
"Hi {\$mail_user} has sent you this link:" => "Hi {\$mail_user} has sent you this link:",
"Blog post:" => "Blog post:",
"at:" => "at:",
"Somebody or you tried to subscribe this email address at our site:" => "Somebody or you tried to subscribe this email address at our site:",
"To the newsletter:" => "To the newsletter:",
"Description:" => "Description:",
"In order to confirm your subscription you must access the following URL:" => "In order to confirm your subscription you must access the following URL:",
"A new message was posted to forum" => "A new message was posted to forum",
"Message" => "Message",
"Hi," => "Hi,",
"A new message was posted to you at {\$mail_machine}" => "A new message was posted to you at {\$mail_machine}",
"The user" => "The user",
"registered at your site" => "registered at your site",
"Bye bye!" => "Bye bye!",
"This email address has been removed to the list of subscriptors of:" => "This email address has been removed to the list of subscriptors of:",
"Newsletter:" => "Newsletter:",
"Welcome to our newsletter!" => "Welcome to our newsletter!",
"This email address has been added to the list of subscriptors of:" => "This email address has been added to the list of subscriptors of:",
"You can always cancel your subscription using:" => "You can always cancel your subscription using:",
"Hi" => "Hi",
"someone from" => "someone from",
"requested a reminder of the password for the" => "requested a reminder of the password for the",
"since this is your registered email address we inform that the" => "since this is your registered email address we inform that the",
"password for this account is" => "password for this account is",
"A new article was submitted by {\$mail_user} to {\$mail_site} at {\$mail_date|bit_short_datetime}" => "A new article was submitted by {\$mail_user} to {\$mail_site} at {\$mail_date|bit_short_datetime}",
"You can edit the submission following this link:" => "You can edit the submission following this link:",
"Title:" => "Title:",
"Heading:" => "Heading:",
"Body:" => "Body:",
"Information:" => "Information:",
"you or someone registered this email address at" => "you or someone registered this email address at",
"If you want to be a registered user in this site you will have to use the following link to login for the first time:" => "If you want to be a registered user in this site you will have to use the following link to login for the first time:",
"Enjoy the site!" => "Enjoy the site!",
"New blog post: {\$mail_title} by {\$mail_user} at {\$mail_date|bit_short_datetime}" => "New blog post: {\$mail_title} by {\$mail_user} at {\$mail_date|bit_short_datetime}",
"View the blog at:" => "View the blog at:",
"If you don't want to receive these notifications follow this link:" => "If you don't want to receive these notifications follow this link:",
"The page {\$mail_page} was changed by {\$mail_user} at {\$mail_date|bit_short_datetime}" => "The page {\$mail_page} was changed by {\$mail_user} at {\$mail_date|bit_short_datetime}",
"You can edit the page following this link:" => "You can edit the page following this link:",
"Comment:" => "Comment:",
"Diff:" => "Diff:",
"The new page content is:" => "The new page content is:",
"Reported messages for" => "Reported messages for",
"Reported by" => "Reported by",
"Activity completed" => "Activity completed",
"Process" => "Process",
"Admin process activities" => "Admin process activities",
"Add or edit an activity" => "Add or edit an activity",
"end" => "end",
"split" => "split",
"interactive" => "interactive",
"auto routed" => "auto routed",
"Add transitions" => "Add transitions",
"Add transition from:" => "Add transition from:",
"Add transition to:" => "Add transition to:",
"roles" => "roles",
"No roles associated to this activity" => "No roles associated to this activity",
"Add role" => "Add role",
"add new" => "add new",
"add role" => "add role",
"Process activities" => "Process activities",
"Int" => "Int",
"Routing" => "Routing",
"start" => "start",
"switch" => "switch",
"join" => "join",
"standalone" => "standalone",
"Interactive" => "Interactive",
"Automatic" => "Automatic",
"Auto routed" => "Auto routed",
"Manual" => "Manual",
"#" => "#",
"inter" => "inter",
"route" => "route",
"(no roles)" => "(no roles)",
"No activities defined yet" => "No activities defined yet",
"Process Transitions" => "Process Transitions",
"List of transitions" => "List of transitions",
"From:" => "From:",
"Origin" => "Origin",
"No transitions defined yet" => "No transitions defined yet",
"Add a transition" => "Add a transition",
"Admin instance" => "Admin instance",
"Instance" => "Instance",
"Workitems" => "Workitems",
"exception" => "exception",
"completed" => "completed",
"aborted" => "aborted",
"Owner" => "Owner",
"Send all to" => "Send all to",
"Don't move" => "Don't move",
"Activities" => "Activities",
"Act status" => "Act status",
"run" => "run",
"Properties" => "Properties",
"Property" => "Property",
"Value" => "Value",
"Add property" => "Add property",
"value" => "value",
"Admin processes" => "Admin processes",
"Add or edit a process" => "Add or edit a process",
"This process is invalid" => "This process is invalid",
"Process Name" => "Process Name",
"ver:" => "ver:",
"is active?" => "is active?",
"Or upload a process using this form" => "Or upload a process using this form",
"List of processes" => "List of processes",
"Inactive" => "Inactive",
"version" => "version",
"act" => "act",
"val" => "val",
"active process" => "active process",
"invalid" => "invalid",
"invalid process" => "invalid process",
"valid process" => "valid process",
"new minor" => "new minor",
"new major" => "new major",
"activities" => "activities",
"No processes defined yet" => "No processes defined yet",
"Admin process roles" => "Admin process roles",
"Add or edit a role" => "Add or edit a role",
"Process roles" => "Process roles",
"No roles defined yet" => "No roles defined yet",
"Map users to roles" => "Map users to roles",
"Roles" => "Roles",
"map" => "map",
"Map groups to roles" => "Map groups to roles",
"Operation" => "Operation",
"Warning" => "Warning",
"No roles are defined yet so no roles can be mapped" => "No roles are defined yet so no roles can be mapped",
"List of mappings" => "List of mappings",
"No mappings defined yet" => "No mappings defined yet",
"Admin process sources" => "Admin process sources",
"select source" => "select source",
"Shared code" => "Shared code",
"cancel" => "cancel",
"Set next user" => "Set next user",
"Get property" => "Get property",
"Set property" => "Set property",
"Complete" => "Complete",
"Process form" => "Process form",
"Set Next act" => "Set Next act",
"If:SetNextact" => "If:SetNextact",
"Switch construct" => "Switch construct",
"Map process roles" => "Map process roles",
"admin processes" => "admin processes",
"admin activities" => "admin activities",
"admin roles" => "admin roles",
"edit this process" => "edit this process",
"Process:" => "Process:",
"Monitor activities" => "Monitor activities",
"List of activities" => "List of activities",
"proc" => "proc",
"auto" => "auto",
"int" => "int",
"routing" => "routing",
"Instances" => "Instances",
"run activity" => "run activity",
"monitor" => "monitor",
"monitor processes" => "monitor processes",
"monitor activities" => "monitor activities",
"monitor instances" => "monitor instances",
"monitor workitems" => "monitor workitems",
"Monitor instances" => "Monitor instances",
"List of instances" => "List of instances",
"status" => "status",
"act status" => "act status",
"running" => "running",
"No instances created yet" => "No instances created yet",
"Monitor processes" => "Monitor processes",
"Invalid" => "Invalid",
"Activs" => "Activs",
"processes" => "processes",
"being run" => "being run",
"exceptions" => "exceptions",
"Monitor workitems" => "Monitor workitems",
"List of workitems" => "List of workitems",
"instance" => "instance",
"Ins" => "Ins",
"time" => "time",
"stop" => "stop",
"activate" => "activate",
"graph" => "graph",
"export" => "export",
"User Activities" => "User Activities",
"process" => "process",
"user processes" => "user processes",
"user activities" => "user activities",
"user instances" => "user instances",
"User instances" => "User instances",
"Inst Status" => "Inst Status",
"exception instance" => "exception instance",
"exceptions instance" => "exceptions instance",
"send instance" => "send instance",
"run instance" => "run instance",
"abort instance" => "abort instance",
"grab instance" => "grab instance",
"release instance" => "release instance",
"No instances defined yet" => "No instances defined yet",
"User processes" => "User processes",
"Browsing Workitem" => "Browsing Workitem",
"Workitem information" => "Workitem information",
"Galleries" => "Galleries",
"Create a gallery" => "Create a gallery",
"Edit this gallery:" => "Edit this gallery:",
"There are individual permissions set for this gallery" => "There are individual permissions set for this gallery",
"Images per row" => "Images per row",
"Thumbnails size X" => "Thumbnails size X",
"Thumbnails size Y" => "Thumbnails size Y",
"Available scales" => "Available scales",
"No scales available" => "No scales available",
"Add scaled images size X x Y" => "Add scaled images size X x Y",
"Other users can upload images to this gallery" => "Other users can upload images to this gallery",
"You can access the gallery using the following URL" => "You can access the gallery using the following URL",
"Available Galleries" => "Available Galleries",
"Imgs" => "Imgs",
"List" => "List",
"Im- Export languages" => "Im- Export languages",
"Select the language to Import" => "Select the language to Import",
"import" => "import",
"Select the language to Export" => "Select the language to Export",
"Import pages from a PHPWiki Dump" => "Import pages from a PHPWiki Dump",
"Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)" => "Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)",
"Overwrite existing pages if the name is the same" => "Overwrite existing pages if the name is the same",
"Previously remove existing page versions" => "Previously remove existing page versions",
"ver" => "ver",
"excerpt" => "excerpt",
"result" => "result",
"locked by" => "locked by",
"Save to notepad" => "Save to notepad",
"First page" => "First page",
"Previous page" => "Previous page",
"Next page" => "Next page",
"Last page" => "Last page",
"pass" => "pass",
"login" => "login",
"Last Changes" => "Last Changes",
"Today" => "Today",
"Last" => "Last",
"Weeks" => "Weeks",
"Search by Date" => "Search by Date",
"Found" => "Found",
"LastChanges" => "LastChanges",
"Ip" => "Ip",
"hist" => "hist",
"rollback" => "rollback",
"compare" => "compare",
"diff" => "diff",
"source" => "source",
"Pages like" => "Pages like",
"No pages found" => "No pages found",
"edit new article" => "edit new article",
"AuthorName" => "AuthorName",
"Create banner" => "Create banner",
"Method" => "Method",
"Use Dates?" => "Use Dates?",
"Max Impressions" => "Max Impressions",
"Impressions" => "Impressions",
"Clicks" => "Clicks",
"create new blog" => "create new blog",
"Last Modified" => "Last Modified",
"Cache" => "Cache",
"Dynamic content system" => "Dynamic content system",
"Create or edit content block" => "Create or edit content block",
"Current ver" => "Current ver",
"Next ver" => "Next ver",
"Old vers" => "Old vers",
"Program" => "Program",
"Edit this FAQ:" => "Edit this FAQ:",
"Create New FAQ:" => "Create New FAQ:",
"Users can suggest questions" => "Users can suggest questions",
"Available FAQs" => "Available FAQs",
"Listing Gallery" => "Listing Gallery",
"upload file" => "upload file",
"Edit a file using this form" => "Edit a file using this form",
"Gallery Files" => "Gallery Files",
"move selected files" => "move selected files",
"delete selected files" => "delete selected files",
"Move to" => "Move to",
"Filesize" => "Filesize",
"Dls" => "Dls",
"browse gallery" => "browse gallery",
"Gallery Images" => "Gallery Images",
"All games are from" => "All games are from",
"visit the site for more games and fun" => "visit the site for more games and fun",
"Upload a game" => "Upload a game",
"Upload a new game" => "Upload a new game",
"Flash binary (.sqf or .dcr)" => "Flash binary (.sqf or .dcr)",
"Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)" => "Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)",
"Edit game" => "Edit game",
"Played" => "Played",
"times" => "times",
"If you can't see the game then you need a flash plugin for your browser" => "If you can't see the game then you need a flash plugin for your browser",
"edit blog" => "edit blog",
"Blog Title" => "Blog Title",
"edit new submission" => "edit new submission",
"Approve" => "Approve",
"Survey stats" => "Survey stats",
"adm" => "adm",
"Open operator console" => "Open operator console",
"Open client window" => "Open client window",
"Generate HTML" => "Generate HTML",
"Transcripts" => "Transcripts",
"Support tickets" => "Support tickets",
"Online operators" => "Online operators",
"Operator" => "Operator",
"stats" => "stats",
"since" => "since",
"transcripts" => "transcripts",
"Offline operators" => "Offline operators",
"Accepted requests" => "Accepted requests",
"Add an operator to the system" => "Add an operator to the system",
"Operators must be tiki users" => "Operators must be tiki users",
"set as operator" => "set as operator",
"Chat started" => "Chat started",
"User:" => "User:",
"Operator:" => "Operator:",
"Request live support" => "Request live support",
"Request support" => "Request support",
"Open a support ticket instead" => "Open a support ticket instead",
"Your request is being processed" => "Your request is being processed",
"cancel request and exit" => "cancel request and exit",
"cancel request and leave a message" => "cancel request and leave a message",
"Live support:Console" => "Live support:Console",
"be online" => "be online",
"be offline" => "be offline",
"Support requests" => "Support requests",
"Requested" => "Requested",
"Accept" => "Accept",
"Join" => "Join",
"Support chat transcripts" => "Support chat transcripts",
"back to admin" => "back to admin",
"op" => "op",
"started" => "started",
"reason" => "reason",
"msgs" => "msgs",
"Transcript" => "Transcript",
"Prefs" => "Prefs",
"Import" => "Import",
"Upcoming events" => "Upcoming events",
"topic image" => "topic image",
"Remove old events" => "Remove old events",
"duration" => "duration",
"h" => "h",
"Add or edit event" => "Add or edit event",
"Duration" => "Duration",
"Mini Calendar: Preferences" => "Mini Calendar: Preferences",
"Preferences" => "Preferences",
"Calendar Interval in daily view" => "Calendar Interval in daily view",
"Start hour for days" => "Start hour for days",
"End hour for days" => "End hour for days",
"Reminders" => "Reminders",
"no reminders" => "no reminders",
"Import CSV file" => "Import CSV file",
"Admin topics" => "Admin topics",
"Or enter path or URL" => "Or enter path or URL",
"add topic" => "add topic",
"My Tiki" => "My Tiki",
"My Pages" => "My Pages",
"My galleries" => "My galleries",
"My items" => "My items",
"My messages" => "My messages",
"My tasks" => "My tasks",
"My blogs" => "My blogs",
"User Pages" => "User Pages",
"User Galleries" => "User Galleries",
"Assigned items" => "Assigned items",
"at tracker" => "at tracker",
"Unread Messages" => "Unread Messages",
"Tasks" => "Tasks",
"User Blogs" => "User Blogs",
"MyTiki" => "MyTiki",
"Bookmarks" => "Bookmarks",
"Modules" => "Modules",
"Notepad" => "Notepad",
"MyFiles" => "MyFiles",
"My watches" => "My watches",
"Thanks for your subscription. You will receive an email soon to confirm your subscription. No newsletters will be sent to you until the subscription is confirmed." => "Thanks for your subscription. You will receive an email soon to confirm your subscription. No newsletters will be sent to you until the subscription is confirmed.",
"Your email address was removed from the list of subscriptors." => "Your email address was removed from the list of subscriptors.",
"Subscription confirmed!" => "Subscription confirmed!",
"Subscribe to newsletter" => "Subscribe to newsletter",
"Email:" => "Email:",
"Subscribe" => "Subscribe",
"Select news group" => "Select news group",
"Back to servers" => "Back to servers",
"Msgs" => "Msgs",
"Newss from" => "Newss from",
"Back to groups" => "Back to groups",
"Save position" => "Save position",
"Reading article from" => "Reading article from",
"Back to list of articles" => "Back to list of articles",
"First" => "First",
"Newsgroup" => "Newsgroup",
"Configure news servers" => "Configure news servers",
"Select a news server to browse" => "Select a news server to browse",
"server" => "server",
"Add or edit a news server" => "Add or edit a news server",
"News server" => "News server",
"port" => "port",
"Notes" => "Notes",
"quota" => "quota",
"Write a note" => "Write a note",
"No notes yet" => "No notes yet",
"merge selected notes into" => "merge selected notes into",
"Reading note:" => "Reading note:",
"List notes" => "List notes",
"Write note" => "Write note",
"wiki create" => "wiki create",
"wiki overwrite" => "wiki overwrite",
"Assign permissions to " => "Assign permissions to ",
"back" => "back",
"Current permissions for this object" => "Current permissions for this object",
"group" => "group",
"permission" => "permission",
"No individual permissions global permissions apply" => "No individual permissions global permissions apply",
"Assign permissions to this object" => "Assign permissions to this object",
"to group" => "to group",
"Published" => "Published",
"Votes" => "Votes",
"Orphan Pages" => "Orphan Pages",
"Last mod" => "Last mod",
"Last author" => "Last author",
"Last ver" => "Last ver",
"Com" => "Com",
"Vers" => "Vers",
"rename" => "rename",
"unlock" => "unlock",
"lock" => "lock",
"history" => "history",
"similar" => "similar",
"undo" => "undo",
"slides" => "slides",
"discuss" => "discuss",
"wiki help" => "wiki help",
"add comment" => "add comment",
"1 comment" => "1 comment",
"attach file" => "attach file",
"1 file attached" => "1 file attached",
"{\$atts_cnt} files attached" => "{\$atts_cnt} files attached",
"Comparing versions" => "Comparing versions",
"Actual_version" => "Actual_version",
"Version" => "Version",
"Diff to version" => "Diff to version",
"Assign permissions to page" => "Assign permissions to page",
"Current permissions for this page" => "Current permissions for this page",
"Send email notifications when this page changes to" => "Send email notifications when this page changes to",
"add email" => "add email",
"Notifications" => "Notifications",
"Pick your avatar" => "Pick your avatar",
"Your current avatar" => "Your current avatar",
"Pick avatar from the library" => "Pick avatar from the library",
"Hide all" => "Hide all",
"Show all" => "Show all",
"random" => "random",
"Upload your own avatar" => "Upload your own avatar",
"vote" => "vote",
"Vote poll" => "Vote poll",
"Other Polls" => "Other Polls",
"By:" => "By:",
"on:" => "on:",
"reads" => "reads",
"posted by" => "posted by",
"Viewing blog post" => "Viewing blog post",
"Permalink" => "Permalink",
"referenced by" => "referenced by",
"references" => "references",
"view comments" => "view comments",
"print" => "print",
"email this post" => "email this post",
"Print multiple pages" => "Print multiple pages",
"Print Wiki Pages" => "Print Wiki Pages",
"clear" => "clear",
"Quiz result stats" => "Quiz result stats",
"Quiz" => "Quiz",
"Time" => "Time",
"User answers" => "User answers",
"Stats for quizzes" => "Stats for quizzes",
"taken" => "taken",
"Av score" => "Av score",
"Av time" => "Av time",
"Stats for quiz" => "Stats for quiz",
"clear stats" => "clear stats",
"score" => "score",
"details" => "details",
"Stats for this quiz Questions " => "Stats for this quiz Questions ",
"Average" => "Average",
"Top 10" => "Top 10",
"Top 20" => "Top 20",
"Top 50" => "Top 50",
"Top 100" => "Top 100",
"Print" => "Print",
"Received articles" => "Received articles",
"Edit received article" => "Edit received article",
"Use Image" => "Use Image",
"Image x size" => "Image x size",
"Image y size" => "Image y size",
"Image name" => "Image name",
"Image size" => "Image size",
"Accept Article" => "Accept Article",
"Received Articles" => "Received Articles",
"Site" => "Site",
"accept" => "accept",
"Received pages" => "Received pages",
"Edit received page" => "Edit received page",
"Referer stats" => "Referer stats",
"last" => "last",
"Register as a new user" => "Register as a new user",
"register" => "register",
"Your registration code:" => "Your registration code:",
"Passcode to register (not your user password)" => "Passcode to register (not your user password)",
"Registration code" => "Registration code",
"I forgot my password" => "I forgot my password",
"send me my password" => "send me my password",
"Return to HomePage" => "Return to HomePage",
"Remove page" => "Remove page",
"You are about to remove the page" => "You are about to remove the page",
"permanently" => "permanently",
"Remove all versions of this page" => "Remove all versions of this page",
"Rename page" => "Rename page",
"New name" => "New name",
"Rollback page" => "Rollback page",
"to_version" => "to_version",
"searched" => "searched",
"Search in" => "Search in",
"galleries" => "galleries",
"images" => "images",
"files" => "files",
"forums" => "forums",
"faqs" => "faqs",
"blogs" => "blogs",
"blog posts" => "blog posts",
"articles" => "articles",
"No pages matched the search criteria" => "No pages matched the search criteria",
"Send blog post" => "Send blog post",
"A link to this post was sent to the following addresses:" => "A link to this post was sent to the following addresses:",
"Send post to this addresses" => "Send post to this addresses",
"List of email addresses separated by commas" => "List of email addresses separated by commas",
"Send newsletters" => "Send newsletters",
"The newsletter was sent to {\$sent} email addresses" => "The newsletter was sent to {\$sent} email addresses",
"This newsletter will be sent to {\$subscribers} email addresses." => "This newsletter will be sent to {\$subscribers} email addresses.",
"Prepare a newsletter to be sent" => "Prepare a newsletter to be sent",
"Send Newsletters" => "Send Newsletters",
"Sent editions" => "Sent editions",
"sent" => "sent",
"Send objects" => "Send objects",
"Transmission results" => "Transmission results",
"Send objects to this site" => "Send objects to this site",
"site" => "site",
"path" => "path",
"password" => "password",
"Send Wiki Pages" => "Send Wiki Pages",
"Send Articles" => "Send Articles",
"add article" => "add article",
"Tiki Shoutbox" => "Tiki Shoutbox",
"Post or edit a message" => "Post or edit a message",
"with checked" => "with checked",
"ok" => "ok",
"Usage chart" => "Usage chart",
"CMS" => "CMS",
"Site Stats" => "Site Stats",
"Started" => "Started",
"Days online" => "Days online",
"Total pageviews" => "Total pageviews",
"Average pageviews per day" => "Average pageviews per day",
"Best day" => "Best day",
"pvs" => "pvs",
"Worst day" => "Worst day",
"Show chart for the last " => "Show chart for the last ",
"days (0=all)" => "days (0=all)",
"Wiki Stats" => "Wiki Stats",
"Wiki Pages" => "Wiki Pages",
"Size of Wiki Pages" => "Size of Wiki Pages",
"Average page length" => "Average page length",
"Average versions per page" => "Average versions per page",
"Visits to wiki pages" => "Visits to wiki pages",
"Orphan pages" => "Orphan pages",
"Average links per page" => "Average links per page",
"Image galleries Stats" => "Image galleries Stats",
"Average images per gallery" => "Average images per gallery",
"Total size of images" => "Total size of images",
"Average image size" => "Average image size",
"bytes" => "bytes",
"Visits to image galleries" => "Visits to image galleries",
"File galleries Stats" => "File galleries Stats",
"Average files per gallery" => "Average files per gallery",
"Total size of files" => "Total size of files",
"Average file size" => "Average file size",
"Mb" => "Mb",
"Visits to file galleries" => "Visits to file galleries",
"CMS Stats" => "CMS Stats",
"Total reads" => "Total reads",
"Average reads per article" => "Average reads per article",
"Total articles size" => "Total articles size",
"Average article size" => "Average article size",
"Forum Stats" => "Forum Stats",
"Total topics" => "Total topics",
"Average topics per forums" => "Average topics per forums",
"Total threads" => "Total threads",
"Average threads per topic" => "Average threads per topic",
"Visits to forums" => "Visits to forums",
"Blog Stats" => "Blog Stats",
"Weblogs" => "Weblogs",
"Total posts" => "Total posts",
"Total size of blog posts" => "Total size of blog posts",
"Average posts size" => "Average posts size",
"Visits to weblogs" => "Visits to weblogs",
"Poll Stats" => "Poll Stats",
"Total votes" => "Total votes",
"Average votes per poll" => "Average votes per poll",
"Faq Stats" => "Faq Stats",
"Total questions" => "Total questions",
"Average questions per FAQ" => "Average questions per FAQ",
"User Stats" => "User Stats",
"User bookmarks" => "User bookmarks",
"Average bookmarks per user" => "Average bookmarks per user",
"Quiz Stats" => "Quiz Stats",
"Average questions per quiz" => "Average questions per quiz",
"Quizzes taken" => "Quizzes taken",
"Average quiz score" => "Average quiz score",
"Average time per quiz" => "Average time per quiz",
"Stats for surveys" => "Stats for surveys",
"Last taken" => "Last taken",
"Stats for survey" => "Stats for survey",
"Stats for this survey Questions " => "Stats for this survey Questions ",
"Time Left" => "Time Left",
"send answers" => "send answers",
"Result" => "Result",
"Theme Control Center: categories" => "Theme Control Center: categories",
"Theme is selected as follows" => "Theme is selected as follows",
"If a theme is assigned to the individual object that theme is used." => "If a theme is assigned to the individual object that theme is used.",
"If not then if a theme is assigned to the object's category that theme is used" => "If not then if a theme is assigned to the object's category that theme is used",
"If not then a theme for the section is used" => "If not then a theme for the section is used",
"If none of the above was selected the user theme is used" => "If none of the above was selected the user theme is used",
"Finally if the user didn't select a theme the default theme is used" => "Finally if the user didn't select a theme the default theme is used",
"Control by Object" => "Control by Object",
"Control by Sections" => "Control by Sections",
"Assign themes to categories" => "Assign themes to categories",
"Assigned categories" => "Assigned categories",
"theme" => "theme",
"Theme Control Center: Objects" => "Theme Control Center: Objects",
"Control by category" => "Control by category",
"Assign themes to objects" => "Assign themes to objects",
"Object" => "Object",
"Assigned objects" => "Assigned objects",
"Theme Control Center: sections" => "Theme Control Center: sections",
"Control by Categories" => "Control by Categories",
"Assign themes to sections" => "Assign themes to sections",
"Assigned sections" => "Assigned sections",
"This is" => "This is",
"by the" => "by the",
"debug" => "debug",
"Upload File" => "Upload File",
"Browse gallery" => "Browse gallery",
"File Title" => "File Title",
"File Description" => "File Description",
"Now enter the file URL" => "Now enter the file URL",
" or upload a local file from your disk" => " or upload a local file from your disk",
"Batch upload" => "Batch upload",
"Errors detected" => "Errors detected",
"The following file was successfully uploaded" => "The following file was successfully uploaded",
"You can download this file using" => "You can download this file using",
"You can include the file in an HTML/Tiki page using" => "You can include the file in an HTML/Tiki page using",
"You have to create a gallery first!" => "You have to create a gallery first!",
"use filename" => "use filename",
"Now enter the image URL" => "Now enter the image URL",
" or upload a local image from your disk" => " or upload a local image from your disk",
"Upload from disk" => "Upload from disk",
"Thumbnail (optional, overrides automatic thumbnail generation)" => "Thumbnail (optional, overrides automatic thumbnail generation)",
"Upload successful!" => "Upload successful!",
"The following image was successfully uploaded" => "The following image was successfully uploaded",
"Thumbnail" => "Thumbnail",
"You can include the image in an HTML/Tiki page using" => "You can include the image in an HTML/Tiki page using",
"Restore defaults" => "Restore defaults",
"User assigned modules" => "User assigned modules",
"move to right column" => "move to right column",
"unassign" => "unassign",
"move to left column" => "move to left column",
"Assign module" => "Assign module",
"Module" => "Module",
"Column" => "Column",
"Current folder" => "Current folder",
"Folders" => "Folders",
"remove folder" => "remove folder",
"remove bookmark" => "remove bookmark",
"refresh cache" => "refresh cache",
"Admin folders and bookmarks" => "Admin folders and bookmarks",
"Add or edit folder" => "Add or edit folder",
"Add or edit a URL" => "Add or edit a URL",
"Real Name" => "Real Name",
"Avatar" => "Avatar",
"HomePage" => "HomePage",
"Send me a message" => "Send me a message",
"All tasks" => "All tasks",
"mark as done" => "mark as done",
"open tasks" => "open tasks",
"priority" => "priority",
"No tasks entered" => "No tasks entered",
"Add or edit a task" => "Add or edit a task",
"Start date" => "Start date",
"Completed" => "Completed",
"Percentage completed" => "Percentage completed",
"Watches" => "Watches",
"May need to refresh twice to see changes" => "May need to refresh twice to see changes",
"Add top level bookmarks to menu" => "Add top level bookmarks to menu",
"delete selected" => "delete selected",
"Pos" => "Pos",
"Mode" => "Mode",
"replace window" => "replace window",
"User_versions_for" => "User_versions_for",
"Read More" => "Read More",
"Banner stats" => "Banner stats",
"Create new banner" => "Create new banner",
"Banner Information" => "Banner Information",
"Click ratio" => "Click ratio",
"Hours" => "Hours",
"Weekdays" => "Weekdays",
"mon" => "mon",
"tue" => "tue",
"wed" => "wed",
"thu" => "thu",
"fri" => "fri",
"sat" => "sat",
"sun" => "sun",
"Banner raw data" => "Banner raw data",
"Created by" => "Created by",
" on " => " on ",
"Activity=" => "Activity=",
"RSS feed" => "RSS feed",
"Edit blog" => "Edit blog",
"monitor this blog" => "monitor this blog",
"stop monitoring this blog" => "stop monitoring this blog",
"Find:" => "Find:",
"Sort posts by:" => "Sort posts by:",
"read more" => "read more",
"pages" => "pages",
"Trackback pings" => "Trackback pings",
"URI" => "URI",
"Blog name" => "Blog name",
"Cached" => "Cached",
"This is a cached version of the page." => "This is a cached version of the page.",
"Click here to view the Google cache of the page instead." => "Click here to view the Google cache of the page instead.",
"viewed" => "viewed",
"edit items" => "edit items",
"list charts" => "list charts",
"last chart" => "last chart",
"previous chart" => "previous chart",
"Chart created" => "Chart created",
"next chart" => "next chart",
"pos" => "pos",
"pre" => "pre",
"perm" => "perm",
"item" => "item",
"chg" => "chg",
"avg" => "avg",
"cool" => "cool",
"info/vote" => "info/vote",
"Next chart will be generated on" => "Next chart will be generated on",
"View or vote items not listed in the chart" => "View or vote items not listed in the chart",
"Select something to vote on" => "Select something to vote on",
"Item information" => "Item information",
"Chart" => "Chart",
"Item" => "Item",
"Permanency" => "Permanency",
"Previous" => "Previous",
"Dif" => "Dif",
"Best Position" => "Best Position",
"Vote this item" => "Vote this item",
"Highest" => "Highest",
"FAQ Questions" => "FAQ Questions",
"FAQ Answers" => "FAQ Answers",
"Q" => "Q",
"A" => "A",
"Show suggested questions/suggest a question" => "Show suggested questions/suggest a question",
"Hide suggested questions" => "Hide suggested questions",
"Tiki forums" => "Tiki forums",
"Forum List" => "Forum List",
"Edit Forum" => "Edit Forum",
"monitor this forum" => "monitor this forum",
"stop monitoring this forum" => "stop monitoring this forum",
"You have" => "You have",
" unread private messages" => " unread private messages",
"Your message has been queued for approval, the message will be posted after\na moderator approves it." => "Your message has been queued for approval, the message will be posted after\na moderator approves it.",
"You have to enter a title and text" => "You have to enter a title and text",
"Summary" => "Summary",
"Attach file" => "Attach file",
"moderator actions" => "moderator actions",
"move selected topics" => "move selected topics",
"unlock selected topics" => "unlock selected topics",
"lock selected topics" => "lock selected topics",
"delete selected topics" => "delete selected topics",
"merge" => "merge",
"merge selected topics" => "merge selected topics",
"reported messages:" => "reported messages:",
"queued messages:" => "queued messages:",
"Merge into topic" => "Merge into topic",
"mot" => "mot",
"replies" => "replies",
"pts" => "pts",
"No topics yet" => "No topics yet",
"Show posts" => "Show posts",
"Last hour" => "Last hour",
"Last 24 hours" => "Last 24 hours",
"Last 48 hours" => "Last 48 hours",
"Jump to forum" => "Jump to forum",
"prev topic" => "prev topic",
"next topic" => "next topic",
"stars" => "stars",
"monitor this topic" => "monitor this topic",
"stop monitoring this topic" => "stop monitoring this topic",
"private message" => "private message",
"send email to user" => "send email to user",
"Moderator actions" => "Moderator actions",
"Move to topic:" => "Move to topic:",
"reported:" => "reported:",
"queued:" => "queued:",
"this post was reported" => "this post was reported",
"report this post" => "report this post",
"user online" => "user online",
"user offline" => "user offline",
"Tracker" => "Tracker",
"Insert new item" => "Insert new item",
"Tracker Items" => "Tracker Items",
"Filters" => "Filters",
"checked" => "checked",
"unchecked" => "unchecked",
"lastModif" => "lastModif",
"Editing tracker item" => "Editing tracker item",
"Edit item" => "Edit item",
"View item" => "View item",
"Add a comment" => "Add a comment",
"Attach a file to this item" => "Attach a file to this item",
"No attachments for this item" => "No attachments for this item",
"settings" => "settings",
"mailbox" => "mailbox",
"compose" => "compose",
"Contact" => "Contact",
"contacts" => "contacts",
"Messages per page" => "Messages per page",
"pop" => "pop",
"View All" => "View All",
"Msg" => "Msg",
"Mark as Flagged" => "Mark as Flagged",
"sender" => "sender",
"back to mailbox" => "back to mailbox",
"full headers" => "full headers",
"normal headers" => "normal headers",
"reply all" => "reply all",
"forward" => "forward",
"Create/edit contacts" => "Create/edit contacts",
"First Name" => "First Name",
"Contacts" => "Contacts",
"select from address book" => "select from address book",
"cc" => "cc",
"bcc" => "bcc",
"Use HTML mail" => "Use HTML mail",
"The following addresses are not in your address book" => "The following addresses are not in your address book",
"Last Name" => "Last Name",
"add contacts" => "add contacts",
"Attachment 1" => "Attachment 1",
"Attachment 2" => "Attachment 2",
"Attachment 3" => "Attachment 3",
"done" => "done",
"Address book" => "Address book",
"Mail notifications" => "Mail notifications",
"Mail-in" => "Mail-in",
"Content templates" => "Content templates",
"Wiki Import dump" => "Wiki Import dump",
"phpinfo" => "phpinfo",
"External wikis" => "External wikis",
"Syntax highlighting" => "Syntax highlighting",
"MyTiki (click!)" => "MyTiki (click!)",
"My files" => "My files",
"User menu" => "User menu",
"Mini calendar" => "Mini calendar",
"User activities" => "User activities",
"System gallery" => "System gallery",
"Submit article" => "Submit article",
"View submissions" => "View submissions",
"Edit article" => "Edit article",
"Send articles" => "Send articles",
"List blogs" => "List blogs",
"Admin posts" => "Admin posts",
"List forums" => "List forums",
"Admin forums" => "Admin forums",
"Submit a new link" => "Submit a new link",
"Admin directory" => "Admin directory",
"Admin FAQs" => "Admin FAQs",
"Admin quiz" => "Admin quiz",
"Admin (click!)" => "Admin (click!)",
"Theme control" => "Theme control",
"Edit languages" => "Edit languages",
"Click here to manage your personal menu" => "Click here to manage your personal menu",
"Recently visited pages" => "Recently visited pages",
"Received objects" => "Received objects",
"Pages:" => "Pages:",
"Last Sites" => "Last Sites",
"Directory Stats" => "Directory Stats",
"Sites to validate" => "Sites to validate",
"Searches" => "Searches",
"Visited links" => "Visited links",
"Top Sites" => "Top Sites",
"Most commented forums" => "Most commented forums",
"Google Search" => "Google Search",
"Last blog posts" => "Last blog posts",
"Last Created blogs" => "Last Created blogs",
"Last Created FAQs" => "Last Created FAQs",
"Last Created Quizzes" => "Last Created Quizzes",
"Last modified file galleries" => "Last modified file galleries",
"Last Files" => "Last Files",
"Last galleries" => "Last galleries",
"Last Modified Items" => "Last Modified Items",
"Last Modified blogs" => "Last Modified blogs",
"Last submissions" => "Last submissions",
"Last Items" => "Last Items",
"Online users" => "Online users",
"We have" => "We have",
"online users" => "online users",
"logged as" => "logged as",
"Logout" => "Logout",
"Remember me" => "Remember me",
"I forgot my pass" => "I forgot my pass",
"standard" => "standard",
"secure" => "secure",
"stay in ssl mode" => "stay in ssl mode",
"Tiki Logo" => "Tiki Logo",
"new messages" => "new messages",
"new message" => "new message",
"You have 0 new messages" => "You have 0 new messages",
"Waiting Submissions" => "Waiting Submissions",
"submissions waiting to be examined" => "submissions waiting to be examined",
"Old articles" => "Old articles",
"Quick edit a Wiki page" => "Quick edit a Wiki page",
"Random Pages" => "Random Pages",
"in:" => "in:",
"Entire Site" => "Entire Site",
"Image Gals" => "Image Gals",
"Blog Posts" => "Blog Posts",
"Search Wiki PageName" => "Search Wiki PageName",
"Since your last visit" => "Since your last visit",
"Since your last visit on" => "Since your last visit on",
"new images" => "new images",
"wiki pages changed" => "wiki pages changed",
"new files" => "new files",
"new comments" => "new comments",
"new users" => "new users",
"Most Active blogs" => "Most Active blogs",
"Top File Galleries" => "Top File Galleries",
"Top Files" => "Top Files",
"Top games" => "Top games",
"Top Images" => "Top Images",
"Top Pages" => "Top Pages",
"Top Quizzes" => "Top Quizzes",
"Top Visited FAQs" => "Top Visited FAQs",
"User tasks" => "User tasks",
"Whats related" => "Whats related",
"online user" => "online user",
"Send a message to" => "Send a message to",
"Send message" => "Send message",
"More info about" => "More info about",
"idle" => "idle",
"Page generated in" => "Page generated in",
"backlinks" => "backlinks",
"create pdf" => "create pdf",
"pdf" => "pdf",
"monitor this page" => "monitor this page",
"stop monitoring this page" => "stop monitoring this page",
"last modification" => "last modification",
"To edit the copyright notices" => "To edit the copyright notices",
"click here" => "click here",
"The content on this page is licensed under the terms of the" => "The content on this page is licensed under the terms of the",
"The original document is available at" => "The original document is available at",
"This page is being edited by" => "This page is being edited by",
"Proceed at your own peril" => "Proceed at your own peril",
"The SandBox is a page where you can practice your editing skills, use the preview feature to preview the appearance of the page, no versions are stored for this page." => "The SandBox is a page where you can practice your editing skills, use the preview feature to preview the appearance of the page, no versions are stored for this page.",
"Copyright" => "Copyright",
"Year:" => "Year:",
"Authors:" => "Authors:",
"Import page" => "Import page",
"export all versions" => "export all versions",
"Upload picture" => "Upload picture",
"License" => "License",
"Important" => "Important",
"Minor" => "Minor",
"cancel edit" => "cancel edit",
"home" => "home",
"chat" => "chat",
"contact us" => "contact us",
"games" => "games",
"calendar" => "calendar",
"last changes" => "last changes",
"dump" => "dump",
"rankings" => "rankings",
"list pages" => "list pages",
"orphan pages" => "orphan pages",
"sandbox" => "sandbox",
"received pages" => "received pages",
"structures" => "structures",
"Articles Home" => "Articles Home",
"Create/Edit Blog" => "Create/Edit Blog",
"Browse Directory" => "Browse Directory",
"List Quizzes" => "List Quizzes",
"List Trackers" => "List Trackers",
"List Surveys" => "List Surveys",
"debugger console" => "debugger console",
"User Preferences" => "User Preferences",
"Is email public? (uses scrambling to prevent spam)" => "Is email public? (uses scrambling to prevent spam)",
"Pick user Avatar" => "Pick user Avatar",
"Number of visited pages to remember" => "Number of visited pages to remember",
"Your personal Wiki Page" => "Your personal Wiki Page",
"UTC" => "UTC",
"Local" => "Local",
"User information" => "User information",
"private" => "private",
"public" => "public",
"Use dbl click to edit pages" => "Use dbl click to edit pages",
"Change your email" => "Change your email",
"Change your password" => "Change your password",
"Configure this page" => "Configure this page",
"Allow messages from other users" => "Allow messages from other users",
"Send me an email for messages with priority equal or greater than" => "Send me an email for messages with priority equal or greater than",
"Tasks per page" => "Tasks per page",
"My pages" => "My pages",
"User registration and login" => "User registration and login",
"Authentication method" => "Authentication method",
"Just Tiki" => "Just Tiki",
"Web Server" => "Web Server",
"Tiki and PEAR::Auth" => "Tiki and PEAR::Auth",
"Tiki and HTTP Auth" => "Tiki and HTTP Auth",
"Use WebServer authentication for Tiki" => "Use WebServer authentication for Tiki",
"Users can register" => "Users can register",
"Request passcode to register" => "Request passcode to register",
"Prevent automatic/robot registration" => "Prevent automatic/robot registration",
"Validate users by email" => "Validate users by email",
"Remind passwords by email" => "Remind passwords by email",
"Reg users can change theme" => "Reg users can change theme",
"Reg users can change language" => "Reg users can change language",
"Store plaintext passwords" => "Store plaintext passwords",
"Use challenge/response authentication" => "Use challenge/response authentication",
"Force to use chars and nums in passwords" => "Force to use chars and nums in passwords",
"Minimum password length" => "Minimum password length",
"Password invalid after days" => "Password invalid after days",
"Require HTTP Basic authentication" => "Require HTTP Basic authentication",
"Allow secure (https) login" => "Allow secure (https) login",
"Require secure (https) login" => "Require secure (https) login",
"HTTP server name" => "HTTP server name",
"HTTP port" => "HTTP port",
"HTTP URL prefix" => "HTTP URL prefix",
"HTTPS server name" => "HTTPS server name",
"HTTPS port" => "HTTPS port",
"HTTPS URL prefix" => "HTTPS URL prefix",
"Remember me feature" => "Remember me feature",
"Disabled" => "Disabled",
"Only for users" => "Only for users",
"Users and admins" => "Users and admins",
"Duration:" => "Duration:",
"PEAR::Auth" => "PEAR::Auth",
"Create user if not in Tiki?" => "Create user if not in Tiki?",
"Create user if not in Auth?" => "Create user if not in Auth?",
"Just use Tiki auth for admin?" => "Just use Tiki auth for admin?",
"LDAP Host" => "LDAP Host",
"LDAP Port" => "LDAP Port",
"LDAP Scope" => "LDAP Scope",
"LDAP Base DN" => "LDAP Base DN",
"LDAP User DN" => "LDAP User DN",
"LDAP User Attribute" => "LDAP User Attribute",
"LDAP User OC" => "LDAP User OC",
"LDAP Group DN" => "LDAP Group DN",
"LDAP Group Attribute" => "LDAP Group Attribute",
"LDAP Group OC" => "LDAP Group OC",
"LDAP Member Attribute" => "LDAP Member Attribute",
"LDAP Member Is DN" => "LDAP Member Is DN",
"LDAP Admin User" => "LDAP Admin User",
"LDAP Admin Pwd" => "LDAP Admin Pwd",
"topic:" => "topic:",
"forum topic" => "forum topic",
"No thread indicated" => "No thread indicated",
"Edit Templates" => "Edit templates",
"Referer Stats" => "Referer stats",
"Theme Control" => "Theme control",
"###end###"=>"###end###",
];
?>
|