summaryrefslogtreecommitdiff
path: root/lang/tr/language.php
blob: 7581910356c3654dffcf0e13052d5bd0f61b4f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
<?php
// Save this to languages/lang/(lang_code)/language.php where lang_code is the language your are downloading.

$lang=Array(
'
<b>Note 1</b>: if you allow your users to configure modules then assigned
modules won\'t be reflected in the screen until you configure them
from MyTiki->modules.<br/>
<b>Note 2</b>: If you assign modules to groups make sure that you
have turned off the option \'display modules to all groups always\'
from Admin->General
' => '',
' at ' => '',
' error: Can not find assignment ' => '',
' is interactive but has no role assigned' => '',
' is non-interactive and non-autorouted but has no role assigned' => '',
' is not a student.' => '',
' is not mapped' => '',
' is standalone but has transitions' => '',
' line ' => '',
' new topic:' => '',
' not sent' => '',
' or upload a local file from your disk' => '',
' or upload a local image from your disk' => '',
' pages found for title search' => '',
' successfully sent' => '',
' unread private messages' => '',
'"{literal}{toc}{/literal}", "{literal}{maketoc}{/literal}" prints out a table of contents for the current page based on structures (toc) or ! headings (maketoc)' => '',
'#' => '',
'###end###' => '',
'%' => '',
'%A %d of %B, %Y' => '',
'%a %d of %b, %Y[%H:%M %Z]' => '',
'%A %d of %B, %Y[%H:%M:%S %Z]' => '',
'%d points' => '',
'%H:%M %Z' => '',
'%H:%M:%S %Z' => '',
'%m/%d' => '',
'%m/%d/%Y [%H:%M]' => '',
'%s %s removed from %s %s.' => '',
'%s %s successfully deleted.' => '',
'%s <b>%s</b> assigned to %s <b>%s</b>.' => '',
'%s <b>%s</b> removed from %s <b>%s</b>.' => '',
'%s <b>%s</b> successfully deleted.' => '',
'%s changed from %s to %s' => '',
'%s disabled' => '',
'%s enabled' => '',
'%s is an empty archive file' => '',
'%s modification failed.' => '',
'%s modified successfully.' => '',
'&nbsp question(s).' => '',
'\'name\' parameter for bitmodule missed' => '',
'(AT)' => '',
'(comma separated list of URIs)' => '',
'(DOT)' => '',
'(idle for $idletime seconds)' => '',
'(idle for %s seconds)' => '',
'(no roles)' => '',
'(some Unix MTA)' => '',
'(standard)' => '',
'+' => '',
'+1d' => '',
'+1m' => '',
'+7d' => '',
'-1d' => '',
'-1m' => '',
'-7d' => '',
'-Lines: {$oldd} changed to +Lines: {$newd}' => '',
'... but need admin validation' => '',
'/' => '',
'1' => '',
'1 comment' => '',
'1 day' => '',
'1 file attached' => '',
'1 month' => '',
'1 suggestion' => '',
'1 week' => '',
'2' => '',
'3' => '',
'3d browser' => '',
'4' => '',
'5' => '',
'5 minutes' => '',
'<b>*</b>=optional' => '',
'<b>Description</b>' => '',
'<b>enable/disable</b>' => '',
'<b>Feed</b>' => '',
'<b>Item</b>' => '',
'<b>Max number of items</b>' => '',
'<b>Source</b>=URL to article source' => '',
'<b>Subtitle</b>=small line below Title' => '',
'<b>Title</b>' => '',
'<b>Topline</b>=small line above Title' => '',
'<b>Value</b>' => '',
'<span title="set of: imsxeADSXUu">Regex modifiers' => '',
'A' => '',
'A link to this post was sent to the following addresses:' => '',
'A new article was submitted by {$mail_user} to {$mail_site} at {$mail_date|bit_short_datetime}' => '',
'A new message was posted to forum' => '',
'A new message was posted to you at {$mail_machine}' => '',
'A new password and your IP address has been sent ' => '',
'A new password has been sent ' => 'Yeni şifre gönderilmiştir',
'A password and your IP address reminder email has been sent ' => '',
'A password reminder email has been sent ' => '',
'A project with that name already exists' => '',
'A SheetId is required.' => '',
'A user registers' => '',
'A user submits an article' => '',
'A valid email is mandatory to register' => '',
'abort instance' => '',
'aborted' => '',
'About' => '',
'Accept' => '',
'Accept Article' => '',
'Accept dashes and underscores in WikiWords' => '',
'Accept wiki syntax' => '',
'accepted by creator' => '',
'accepted by task user and creator' => '',
'accepted by user' => 'kullanıcı tarafından kabul edilmiştir',
'Accepted friendship request from %s' => '',
'Accepted requests' => '',
'Access Denied' => 'Erişim Engellendi',
'According this order rules will be applied (\'0\' or empty = auto)' => '',
'account' => '',
'Account Information' => '',
'Account name' => '',
'act' => '',
'Act status' => '',
'Action' => '',
'Action options: Label,post,tiki-index.php,page:fieldname,highlight=test' => '',
'Actions' => '',
'Activate' => '',
'Activate all polls' => '',
'Active' => '',
'Active Channels' => '',
'active permissions' => '',
'active perms' => '',
'active process' => '',
'Active?' => '',
'Activities' => '',
'Activity' => '',
'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 standalone and is using the $instance object' => '',
'Activity \'.$res[\'name\'].\' is switch so it must use $instance->setNextActivity($actname) method' => '',
'Activity (desc)' => '',
'Activity completed' => '',
'Activity name already exists' => '',
'Activity=' => '',
'Activs' => '',
'Actual_version' => '',
'add' => 'ekle',
'Add a comment' => 'Yorum ekle',
'Add a directory category' => '',
'Add a File Gallery' => '',
'Add a new group' => '',
'Add a new site' => '',
'Add a new user' => '',
'Add a related category' => '',
'add a site' => 'Site ekle',
'Add a subscription event' => '',
'Add a subscription newsletters' => '',
'Add a transition' => 'Çeviri ekle',
'Add a translation' => '',
'Add all users' => 'Tüm kullanıcıları ekle',
'Add all your site users to this event (broadcast)' => '',
'Add all your site users to this newsletter (broadcast)' => '',
'Add an operator to the system' => '',
'add article' => '',
'Add Articles' => '',
'Add Banned Word' => '',
'Add Blog' => '',
'Add Calendar' => '',
'Add Calendar Item' => '',
'add comment' => '',
'add contacts' => '',
'add email' => '',
'Add email:' => '',
'Add FAQ' => '',
'Add Featured Link' => '',
'Add File Gallery' => '',
'Add Forum' => '',
'Add Hotword' => '',
'Add Image Gallery' => '',
'add item' => '',
'Add messages from this email to the forum' => '',
'add new' => '',
'Add new category' => '',
'Add new group' => '',
'Add new mail account' => '',
'Add new Mail-in account' => '',
'Add new rule' => '',
'Add Newsletter' => '',
'Add notification' => '',
'Add objects to category' => '',
'Add or edit a chart' => '',
'Add or edit a news server' => '',
'Add or edit a process' => '',
'Add or edit a role' => '',
'Add or edit a rule' => '',
'Add or edit a site' => '',
'Add or edit a task' => '',
'Add or edit a URL' => '',
'Add or edit an activity' => '',
'Add or edit an item' => '',
'Add or edit event' => '',
'Add or edit folder' => '',
'add page' => '',
'Add pages to current node' => '',
'Add property' => '',
'Add role' => '',
'Add scaled images size X x Y' => '',
'Add scaled images with bounding box of square size' => '',
'add suggestion' => '',
'add to the set' => '',
'Add top level bookmarks to menu' => '',
'add topic' => '',
'Add transition from:' => '',
'Add transition to:' => '',
'Add transitions' => '',
'Add unsubscribe instructions to each event' => '',
'Add unsubscribe instructions to each newsletter' => '',
'Add URL' => '',
'Add user:' => '',
'Add users' => '',
'Add Watch' => '',
'Added' => '',
'Added users' => '',
'Address book' => '',
'adm' => '',
'admin' => '',
'Admin (click!)' => '',
'admin activities' => '',
'admin admin tpl' => '',
'Admin Article Types' => '',
'admin backups' => '',
'admin Banners' => '',
'admin Banners tpl' => '',
'admin banning tpl' => '',
'admin cache' => '',
'admin cache tpl' => '',
'Admin Calendars' => '',
'admin categories' => '',
'admin categories tpl' => '',
'admin category' => '',
'Admin category relationships' => '',
'Admin chart items' => '',
'Admin charts' => '',
'admin charts template' => '',
'admin charts tpl' => '',
'admin content templates' => '',
'admin content templates template' => '',
'admin content templates tpl' => '',
'Admin cookies' => '',
'Admin directory' => '',
'Admin directory categories' => '',
'admin directory categories tpl' => '',
'Admin Directory Related ' => '',
'Admin Directory Sites' => '',
'Admin Directory Sites tpl' => '',
'admin directory tpl' => '',
'Admin Dirertory Sites' => '',
'admin Drawings' => '',
'admin Drawings tpl' => '',
'Admin dsn' => '',
'admin DynamicContent' => '',
'admin DynamicContent tpl' => '',
'admin Email Notifications' => '',
'Admin ephemerides' => '',
'admin Ephemerides tpl' => '',
'Admin event subscriptions' => '',
'Admin events' => '',
'admin events template' => '',
'Admin external wikis' => '',
'admin ExternalWiki' => '',
'Admin FAQ' => '',
'Admin FAQs' => '',
'admin featured links' => '',
'admin featured links template' => '',
'admin featured links tpl' => '',
'Admin folders and bookmarks' => '',
'admin FortuneCookie' => '',
'admin FortuneCookie tpl' => '',
'Admin Forums' => '',
'admin forums template' => '',
'admin forums tpl' => '',
'admin groups' => '',
'admin groups template' => '',
'admin groups tpl' => '',
'Admin home' => '',
'admin hotwords' => '',
'admin hotwords template' => '',
'admin hotwords tpl' => '',
'admin HTML page dynamic zones' => '',
'Admin HTML pages' => '',
'admin Html Pages template' => '',
'admin HtmlPages' => '',
'admin HtmlPages tpl' => '',
'Admin instance' => '',
'Admin layout' => '',
'Admin layout per section' => '',
'admin live support tpl' => '',
'admin mailin template' => '',
'admin mailin tpl' => '',
'Admin Menu' => '',
'admin menu builder' => '',
'Admin Menus' => '',
'admin menus template' => '',
'admin menus tpl' => '',
'Admin mode off' => '',
'Admin mode on' => '',
'admin modules' => '',
'admin modules template' => '',
'admin modules tpl' => '',
'Admin newsletter subscriptions' => '',
'admin newsletters' => '',
'admin newsletters template' => '',
'admin newsletters tpl' => '',
'admin notifications template' => '',
'admin notifications tpl' => '',
'admin polls' => '',
'admin polls template' => '',
'admin polls tpl' => '',
'Admin posts' => '',
'Admin process activities' => '',
'Admin process roles' => '',
'Admin process sources' => '',
'Admin processes' => '',
'Admin Quicktags' => '',
'Admin quiz' => '',
'admin quizzes' => '',
'admin quizzes tpl' => '',
'admin Referer stats' => '',
'admin Referer stats tpl' => '',
'Admin related categories' => '',
'admin roles' => '',
'admin RSS modules' => '',
'admin RSSmodules template' => '',
'admin RSSmodules tpl' => '',
'admin send objects tpl' => '',
'Admin Shoutbox Words' => '',
'admin shoutbox words template' => '',
'Admin sites' => '',
'Admin structures' => '',
'admin structures template' => '',
'admin structures tpl' => '',
'admin surveys' => '',
'admin surveys tpl' => '',
'Admin templates' => '',
'admin Tiki Shoutbox' => '',
'admin Tiki Shoutbox tpl' => '',
'Admin Topics' => '',
'admin topics template' => '',
'admin topics tpl' => '',
'Admin tracker' => '',
'Admin trackers' => '',
'admin Trackers tpl' => '',
'Admin types' => '',
'admin users' => '',
'admin users template' => '',
'admin users tpl' => '',
'admin Webmail' => '',
'Admin->Modules' => '',
'AdminDSN' => '',
'administer surveys template' => '',
'Administration' => '',
'Administration Features' => '',
'AdmMenu' => '',
'After' => '',
'After page' => '',
'Again' => '',
'Again please' => '',
'age' => '',
'Album title (asc)' => '',
'Algeria' => '',
'Alias' => '',
'All' => '',
'All articles' => '',
'All ephemerides' => '',
'All Fields except gdaltindex must be filled' => '',
'All Fields must be non empty' => '',
'All galleries' => '',
'All games are from' => '',
'All items' => '',
'all permissions in level' => '',
'All posted' => '',
'All posts' => '',
'All project names are converted to lowercase.' => '',
'all shared tasks' => '',
'All tasks' => '',
'all types' => '',
'All users' => '',
'allow' => '',
'Allow anonymous acces' => '',
'Allow Anonymous Poll Voting' => '',
'Allow anonymous users to "Contact Us"' => '',
'Allow attachments' => '',
'Allow comments' => '',
'Allow comments for this type' => '',
'Allow comments to include a rating value' => '',
'Allow HTML' => '',
'Allow messages from other users' => '',
'Allow other user to post in this blog' => '',
'Allow permissions for friendship network' => '',
'Allow ratings by the author' => '',
'Allow same file to be uploaded more than once' => '',
'Allow search' => '',
'Allow secure (https) login' => '',
'Allow sites in this category' => '',
'Allow Smileys' => '',
'Allow students to retake this quiz ' => '',
'Allow students to store partial results and return to quiz.' => '',
'Allow viewing HTML mails?' => '',
'Alt. description (e.g. for text browsers)' => '',
'Altering database table failed' => '',
'American_Samoa' => '',
'An error occured in a database query!' => '',
'an existing poll' => '',
'and' => '',
'and display attachments in listing?' => '',
'and display comments in listing?' => '',
'and display rating results in listing?' => '',
'and its subpages from the structure, now you have two options:' => '',
'Angola' => '',
'announce' => '',
'Anonymous' => '',
'Anonymous editors must input anti-bot code' => '',
'Anonymous Grader' => '',
'Anonymous Peer Reviewer' => '',
'Answer' => '',
'Answers' => '',
'Anti-Bot verification code' => '',
'Antigua' => '',
'any' => '',
'Any 2 versions' => '',
'Any wiki page is changed' => '',
'Anytime' => '',
'Apache has the right to write in your file tree, which enables the installation, removal or nupgrade of packages. When you are done with those operations, think to fix those permissions back to a safe state (by using n"./fixperms fix" for example).' => '',
'Append CSS file to feed urls' => '',
'APPEND:WikiName to append data to a Wiki page (use the body for the data to add)' => '',
'Apply all rules' => '',
'Apply all rules or just this to generate preview' => '',
'Apply template' => '',
'Approval type' => '',
'approve' => '',
'April' => '',
'Arabic' => '',
'archives' => '',
'Are files from repository can be cached' => '',
'Are you sure you want to delete this word?' => '',
'Are you sure you want to remove this module?' => '',
'Are you sure you want to unassign this module?' => '',
'Argentina' => '',
'Armenia' => '',
'arrow' => '',
'article' => '',
'Article comments settings' => '',
'Article image' => '',
'Article is not published yet' => '',
'Article not found' => '',
'Article Topic' => '',
'Article Type' => '',
'Article Types tpl' => '',
'article-put' => '',
'Article/CMS settings' => '',
'Articles' => '',
'Articles (subs)' => '',
'Articles home' => '',
'Articles RSS' => '',
'arts' => '',
'ascending' => '',
'assgn' => '',
'assign' => '',
'assign group' => '',
'assign module' => '',
'Assign new module' => '',
'Assign permissions' => '',
'Assign Permissions (Active)' => '',
'Assign permissions automatically' => '',
'Assign permissions to ' => '',
'Assign permissions to category' => '',
'Assign permissions to group' => '',
'Assign permissions to page' => '',
'Assign permissions to this object' => '',
'assign perms to this group' => '',
'Assign selected to' => '',
'Assign themes to categories' => '',
'Assign themes to objects' => '',
'Assign themes to sections' => '',
'assign to groups' => '',
'Assign user' => '',
'Assigned %s in group %s' => '',
'Assigned categories' => '',
'Assigned items' => '',
'Assigned Modules' => '',
'Assigned objects' => '',
'Assigned sections' => '',
'Assigned To' => '',
'Assigning permissions for <b>all children</b> is recommended for best performance.' => '',
'Assignment' => '',
'Assignment not found' => '',
'Assignments' => '',
'Assignments List' => '',
'assign_perms' => '',
'at tracker' => '',
'at:' => '',
'attach' => '',
'Attach a file to this item' => '',
'attach file' => '',
'attachment' => '',
'Attachment 1' => '',
'Attachment 2' => '',
'Attachment 3' => '',
'Attachment display options (Use numbers to order items, 0 will not be displayed, and negative values display in popups)' => '',
'attachments' => '',
'Attention' => '',
'atts' => '',
'August' => '',
'Australia' => '',
'Austria' => '',
'Authentication method' => '',
'Author' => '',
'Author Name' => '',
'Authoritative status for modified items' => '',
'AuthorName' => '',
'Authors' => '',
'Authors:' => '',
'auto' => '',
'auto routed' => '',
'Auto validate user suggestions' => '',
'auto-link urls' => '',
'AutoLinks' => '',
'Automatic' => '',
'Automatic (uses HTTPS variable)' => '',
'Automatic Mail-in accounts checking disabled' => '',
'Automatic Page Breaks' => '',
'Automatically creates a link to the appropriate SourceForge object' => '',
'Automatically creates a link to the appropriate SourceForge? object' => '',
'Automonospaced text' => '',
'Aux modifiers for preg_replace' => '',
'Av score' => '',
'Av time' => '',
'Available content blocks' => '',
'Available drawings' => '',
'Available FAQs' => '',
'Available File Galleries' => '',
'Available Galleries' => '',
'Available groups' => '',
'Available languages:' => '',
'Available mapfiles' => '',
'Available polls' => '',
'Available Repositories' => '',
'Available scales' => '',
'Available Sheets' => '',
'Available styles:' => '',
'Available templates' => '',
'avatar' => '',
'Avatar Image' => '',
'Average' => '',
'Average article size' => '',
'Average bookmarks per user' => '',
'Average file size' => '',
'Average files per gallery' => '',
'Average image size' => '',
'Average images per gallery' => '',
'Average links per page' => '',
'Average page length' => '',
'Average pageviews per day' => '',
'Average posts per weblog' => '',
'Average posts size' => '',
'Average questions per FAQ' => '',
'Average questions per quiz' => '',
'Average quiz score' => '',
'Average reads per article' => '',
'Average threads per topic' => '',
'Average time per quiz' => '',
'Average topics per forums' => '',
'Average versions per page' => '',
'Average votes per poll' => '',
'avg' => '',
'b=rollback' => '',
'babelfish it' => '',
'back' => '',
'back to' => '',
'back to admin' => '',
'back to forum' => '',
'Back to groups' => '',
'back to homepage' => '',
'Back to list of articles' => '',
'back to mailbox' => '',
'Back to servers' => '',
'Backlinks' => '',
'backlinks to' => '',
'Backups' => '',
'Bahamas' => '',
'Bahrain' => '',
'Bangladesh' => '',
'Banned from sections' => '',
'Banner Information' => '',
'Banner not found' => '',
'Banner raw data' => '',
'Banner stats' => '',
'Banner zones' => '',
'Banners' => '',
'Banning' => '',
'Banning System' => '',
'Barbados' => '',
'Batch upload' => '',
'Batch upload (CSV file)' => '',
'Batch Upload Results' => '',
'BCC' => '',
'be offline' => '',
'be online' => '',
'Before' => '',
'being run' => '',
'Belarus' => '',
'Belgium' => '',
'below your current threshold' => '',
'Bermuda' => '',
'Best day' => '',
'Best language' => '',
'Best Position' => '',
'best regards' => '',
'big grin' => '',
'bigger' => '',
'Block description: ' => '',
'Block Preformatting' => '',
'blog' => '',
'Blog comments settings' => '',
'Blog features' => '',
'Blog heading' => '',
'Blog level comments' => '',
'Blog listing configuration (when listing available blogs)' => '',
'Blog name' => '',
'Blog not found' => '',
'Blog post' => '',
'Blog post:' => '',
'blog posts' => '',
'Blog settings' => '',
'Blog Stats' => '',
'Blog Title' => '',
'Blog title (asc)' => '',
'Blogs' => '',
'Blogs last posts' => '',
'Blogs RSS' => '',
'Body' => '',
'Body:' => '',
'bold' => '',
'Bolivia' => '',
'Bookmarks' => '',
'both' => '',
'Bottom bar' => '',
'Bounding box' => '',
'box' => '',
'Box content' => '',
'Brazil' => '',
'Brazilian Portuguese' => '',
'break friendship' => '',
'Broadcast' => '',
'Broadcast message' => '',
'Broke friendship with %s' => '',
'browse' => '',
'Browse a gallery' => '',
'browse by' => '',
'browse category' => '',
'Browse directory' => '',
'browse gallery' => '',
'browse image' => '',
'Browse in' => '',
'Browser height' => '',
'Browser not supported' => '',
'Browser title' => '',
'Browser width' => '',
'Browsing Gallery' => '',
'Browsing Image' => '',
'Browsing Workitem' => '',
'Brunei' => '',
'by' => '',
'by creator' => '',
'by modificator' => '',
'by the' => '',
'By:' => '',
'Bye bye from ' => '',
'Bye bye from %s at %s' => '',
'Bye bye!' => '',
'bytes' => '',
'Bytes maximum' => '',
'c=compare' => '',
'cache' => '',
'Cache expiration' => '',
'Cache Time' => '',
'Cache wiki pages (global)' => '',
'Cacheable' => '',
'cached' => '',
'Calendar' => '',
'Calendar Interval in daily view' => '',
'Calendars Panel' => '',
'Calendrier' => '',
'Can files from repository be cached' => '',
'Can\'t import remote HTML page' => '',
'Can\'t parse remote HTML page' => '',
'Canada' => '',
'Cancel' => '',
'cancel edit' => '',
'Cancel monitoring' => '',
'cancel request and exit' => '',
'cancel request and leave a message' => '',
'Cancelled' => '',
'Cannot add transition only split activities can have more than one outbound transition' => '',
'cannot be found' => '',
'cannot check if the upload_tmp_dir is accessible via web browser. To be sure you should check your webserver config.' => '',
'Cannot connect to' => '',
'Cannot edit page because it is locked' => '',
'Cannot get image from URL' => '',
'Cannot get messages' => '',
'cannot process upload' => '',
'Cannot read file' => '',
'Cannot rename page because the new name begins with reserved prefix' => '',
'Cannot rename page maybe new page already exists' => '',
'Cannot upload this file maximum upload size exceeded' => '',
'Cannot upload this file not enough quota' => '',
'Cannot write to this file:' => '',
'canRepeat' => '',
'CAS (Central Authentication Service)' => '',
'CAS server hostname' => '',
'CAS server path' => '',
'CAS server port' => '',
'CAS server version' => '',
'Case' => '',
'Case sensitive' => '',
'cat' => '',
'Catalan' => '',
'Categories' => '',
'Categories are disabled' => '',
'Categories:' => '',
'categorize' => '',
'categorize this object' => '',
'Category' => '',
'Category description' => '',
'Category options: parentId' => '',
'Category: wiki, tracker, etc.' => '',
'Cayman_Islands' => '',
'CC' => '',
'cells' => '',
'Center' => '',
'center text' => '',
'Centers the plugin content in the wiki page' => '',
'Chair' => '',
'change' => '',
'Change admin password' => '',
'Change administrative info' => '',
'Change all to db' => '',
'Change all to file' => '',
'Change CAS preferences' => '',
'change email' => '',
'change focus' => '',
'Change information' => '',
'change password' => '',
'Change password enforced' => '',
'Change preferences' => '',
'Change shoutbox general settings' => '',
'Change style only' => '',
'Change user preferences' => '',
'Change your email' => '',
'Change your password' => '',
'changed' => '',
'changed \'%s\' from \'%s\' to \'%s\'' => '',
'Changes' => '',
'Changes on Task' => '',
'Changes since' => '',
'Changes:' => '',
'Channel' => '',
'Channel Information' => '',
'character(s) too long - please edit it.' => '',
'characters long' => '',
'Chart' => '',
'Chart created' => '',
'Chart items' => '',
'ChartMenu' => '',
'Charts' => '',
'Charts Admin' => '',
'Chat' => '',
'Chat Admin' => '',
'Chat Admin tpl' => '',
'Chat Administration' => '',
'Chat channels' => '',
'Chat started' => '',
'ChatAdmin' => '',
'ChatAdmin tpl' => '',
'Chatroom' => '',
'check / uncheck all' => '',
'Check all tiki files' => '',
'Check automatically' => '',
'Check Mail-in accounts' => '',
'Check to enable this rule' => '',
'checkbox' => '',
'Checkbox options: put 1 if you need that next field is on the same row.' => '',
'checked' => '',
'chg' => '',
'Child' => '',
'Child categories' => '',
'Children type' => '',
'Chile' => '',
'China' => '',
'Chinese' => '',
'choose' => '',
'choose a field ...' => '',
'Choose a filter' => '',
'choose a group ...' => '',
'choose a group tracker ...' => '',
'Choose a movie' => '',
'choose a stylesheet' => '',
'choose a users tracker ...' => '',
'Circular reference found some activity has a transition leading to itself' => '',
'Class Name' => '',
'Classified' => '',
'clear' => '',
'Clear all cached pages of this repository' => '',
'clear cache' => '',
'Clear cached version and refresh cache' => '',
'clear stats' => '',
'Click' => '',
'click here' => '',
'Click here for more details.' => '',
'Click here if you\'ve forgotten your password' => '',
'Click here to confirm restoring' => '',
'Click here to confirm your action' => '',
'Click here to create a new backup' => '',
'Click here to create it' => '',
'Click here to delete this category' => '',
'Click here to delete this forum' => '',
'Click here to login using a secure protocol' => '',
'Click here to login using the default security protocol' => '',
'Click here to manage your personal menu' => '',
'Click here to register' => '',
'click here to send us an email' => '',
'Click here to view the Google cache of the page instead.' => '',
'Click on the map or click redraw' => '',
'click on the map to zoom or pan, do not drag' => '',
'Click ratio' => '',
'Click the :: option on the menu for more options.' => '',
'click to edit' => '',
'Click to edit dynamic variable' => '',
'click to navigate' => '',
'click to view' => '',
'Click to zoom' => '',
'Clicks' => '',
'Client' => '',
'clip' => '',
'Close' => '',
'Close all polls but last' => '',
'Close Window' => '',
'closed' => '',
'Cms' => '',
'CMS features' => '',
'CMS settings' => '',
'CMS Stats' => '',
'code' => '',
'Code preview' => '',
'Colombia' => '',
'Colored text' => '',
'column' => '',
'Column is searchable?' => '',
'Column links to edit/view item?' => '',
'Com' => '',
'Comm' => '',
'comma separated username:role' => '',
'comma separated usernames' => '',
'Command' => '',
'comment' => '',
'Comment Can Rate Article' => '',
'Comment on the selected post' => '',
'Comment:' => '',
'Comments' => '',
'Comments below your current threshold' => '',
'Comments default ordering' => '',
'Communcation Center' => '',
'Communications (send/receive objects)' => '',
'Community' => '',
'Community settings' => '',
'Company' => '',
'Company:' => '',
'compare' => '',
'Comparing version {$old.version} with version {$new.version}' => '',
'Comparing versions' => '',
'Compile' => '',
'complete' => '',
'Complete allows <em>anything at all</em>.  I (<a
    href="http:tikiwiki.org/tiki-index.php?page=UserPagerlpowell">rlpowell</a>)
    cannot guarantee that it is bug-free or secure.' => '',
'completed' => '',
'completed (100%)' => '',
'Compose' => '',
'Compose Message' => '',
'compose message tpl' => '',
'compression is handled by' => '',
'coms' => '',
'configure forum' => '',
'configure listing' => '',
'Configure news servers' => '',
'Configure Newsreader' => '',
'configure newsreader server tpl' => '',
'configure polls' => '',
'configure repositories' => '',
'configure rules' => '',
'Configure this page' => '',
'configure this repository' => '',
'Configure/Options' => '',
'Confirm new password' => '',
'Confirmed' => '',
'confused' => '',
'Contact' => '',
'contact feature disabled' => '',
'Contact Us' => '',
'Contact Us (Anonymous)' => '',
'Contact us by email' => '',
'Contact user' => '',
'contacts' => '',
'Containing' => '',
'Content' => '',
'Content Features' => '',
'Content for the feed' => '',
'Content Templates' => '',
'Continue' => '',
'continued' => '',
'Control by Categories' => '',
'Control by category' => '',
'Control by Object' => '',
'Control by Objects' => '',
'Control by Sections' => '',
'Controls recognition of Wiki links using the two parenthesis Wiki link syntax <i>((page name))</i>.' => '',
'convert to topic' => '',
'Cookie' => '',
'Cookies' => '',
'Cook_Islands' => '',
'cool' => '',
'cool sites' => '',
'Copy' => '',
'Copy Calculation' => '',
'copy rules' => '',
'Copyright' => '',
'Copyright Management' => '',
'Copyrights' => '',
'Costa_Rica' => '',
'Could not create $tdo.mid in data directory' => '',
'Could not create $tdo.mif in data directory' => '',
'Could not find the file requested' => '',
'Could not upload the file' => '',
'count' => '',
'Count admin pageviews' => '',
'Country' => '',
'Create' => '',
'Create a file gallery' => '',
'Create a gallery' => '',
'Create a group for each user <br />(with the same
name as the user)' => '',
'Create a group for each user <br />(with the samenname as the user)' => '',
'Create a new image gallery' => '',
'Create a new mapfile' => '',
'Create a new topic' => '',
'Create a new type' => '',
'Create a new wiki page' => '',
'Create a sheet' => '',
'Create a tag for the current wiki' => '',
'create assignment' => '',
'Create banner' => '',
'Create blog' => '',
'Create Directory:' => '',
'Create item' => '',
'Create Language' => '',
'Create level' => '',
'create new' => '',
'Create new backup' => '',
'Create new banner' => '',
'create new block' => '',
'create new blog' => '',
'create new empty structure' => '',
'Create new FAQ' => '',
'Create New FAQ:' => '',
'Create new Featured Link' => '',
'Create new file gallery' => '',
'Create New Forum' => '',
'create new gallery' => '',
'Create New Group' => '',
'Create new HTML page' => '',
'Create new Menu' => '',
'Create New Repository' => '',
'Create New Repository:' => '',
'Create new RSS module' => '',
'create new sheet' => '',
'Create new structure' => '',
'Create New Survey' => '',
'Create New Survey:' => '',
'Create new template' => '',
'create new user' => '',
'Create new user module' => '',
'Create or edit content' => '',
'Create or edit content block' => '',
'create page' => '',
'Create page:' => '',
'Create PDF' => '',
'Create structure from tree' => '',
'Create this page' => '',
'Create trackers' => '',
'Create user if not in Auth?' => '',
'Create user if not in Tiki?' => '',
'Create watch for author on page creation' => '',
'create webhelp' => '',
'create zone' => '',
'create/edit' => '',
'Create/Edit blog' => '',
'Create/edit Calendars' => '',
'Create/edit channel' => '',
'Create/edit contacts' => '',
'Create/edit cookies' => '',
'Create/edit dsn' => '',
'Create/edit events' => '',
'Create/Edit External Wiki' => '',
'Create/edit newsletters' => '',
'Create/edit options for question' => '',
'Create/edit Polls' => '',
'Create/edit questions for quiz' => '',
'Create/edit questions for survey' => '',
'Create/Edit QuickTags' => '',
'Create/edit quizzes' => '',
'Create/edit trackers' => '',
'Created' => '',
'Created account %s <%s>' => '',
'Created by' => '',
'created from import' => '',
'created from notepad' => '',
'created from phpbb import' => '',
'created from phpwiki import' => '',
'created from structure' => '',
'created from structured text import' => '',
'Creates a box with the data' => '',
'Creates a definition list' => '',
'creates a table' => '',
'creates a title bar' => '',
'creates an editable drawing named foo' => '',
'creates the editable drawing foo' => '',
'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' => '',
'creation date' => '',
'creation date (asc)' => '',
'Creation date (desc)' => '',
'Creator' => '',
'Creator can edit' => '',
'Croatia' => '',
'Croatian' => '',
'cry' => '',
'CSS file' => '',
'CSS file to load when browse this repository' => '',
'cType' => '',
'Cuba' => '',
'current' => '',
'Current Activity' => '',
'Current category' => '',
'Current folder' => '',
'Current heading' => '',
'Current Image' => '',
'Current Node' => '',
'Current Objects:' => '',
'Current password (required)' => '',
'Current permissions for categories that this page belongs to' => '',
'Current permissions for this category' => '',
'Current permissions for this object' => '',
'Current permissions for this page' => '',
'Current URL' => '',
'Current ver' => '',
'Current Version' => '',
'Currently unused' => '',
'Custom Categories' => '',
'Custom code' => '',
'Custom Events' => '',
'Custom Home' => '',
'Custom Languages' => '',
'Custom Locations' => '',
'Custom message to the user' => '',
'Custom Priorities' => '',
'Cyprus' => '',
'Czech' => '',
'Czech_Republic' => '',
'd=diff' => '',
'Daily' => '',
'Danish' => '',
'data' => '',
'Database' => '',
'database queries used' => '',
'date' => '',
'Date (asc)' => '',
'Date (desc)' => '',
'date and time' => '',
'Date and Time Format Help' => '',
'Date and Time Formats' => '',
'Date Selector' => '',
'DATE-of' => '',
'day' => '',
'days' => '',
'days (0=all)' => '',
'Days online' => '',
'Deactivate' => '',
'debug' => '',
'Debugger console' => '',
'December' => '',
'deep' => '',
'Default charset for sending mail:' => '',
'Default Group' => '',
'default mapfile' => '',
'Default number of comments per page' => '',
'Default ordering for album listing' => '',
'Default ordering for blog listing' => '',
'Default ordering for threads' => '',
'Default ordering for topics' => '',
'Default RDF version' => '',
'default scale' => '',
'Default sort order' => '',
'Default status displayed in list mode' => '',
'definition' => '',
'del' => '',
'delete' => '',
'delete selected' => '',
'delete selected files' => '',
'delete selected topics' => '',
'Delete this type' => '',
'Demote' => '',
'Denmark' => '',
'desc' => '',
'descending' => '',
'description' => '',
'Description:' => '',
'Destroy the structure and remove the pages' => '',
'Destroy the structure leaving the wiki pages' => '',
'detach' => '',
'details' => '',
'Detect browser language' => '',
'Detected, Version:' => '',
'Dif' => '',
'diff' => '',
'Diff style' => '',
'Diff to version' => '',
'Diff:' => '',
'Direction' => '',
'Directories' => '',
'Directory' => '',
'Directory (include trailing slash)' => '',
'directory admin related tpl' => '',
'Directory Administration' => '',
'Directory category' => '',
'Directory path' => '',
'Directory ranking' => '',
'Directory Stats' => '',
'directory validate sites tpl' => '',
'DirMenu' => '',
'disable' => '',
'Disabled' => '',
'disables the link' => '',
'Disallow access to the site (except for those with permission)' => '',
'Disallow access when load is above the threshold (except for those with permission)' => '',
'Discard to the end from' => '',
'discuss' => '',
'Discuss pages on forums' => '',
'Display' => '',
'Display last post titles' => '',
'Display menus as folders' => '',
'Display modules to all groups always' => '',
'Display only this type' => '',
'Display Tiki objects that have not been categorized' => '',
'Displayed for the eligible users with no personal assigned modules' => '',
'Displayed now for all eligible users even with personal assigned modules' => '',
'Displayed now, can\'t be unassigned' => '',
'Displayed time zone' => '',
'Displays a graphical GAUGE' => '',
'Displays a module inlined in page' => '',
'Displays a snippet of code' => '',
'Displays a SWF on the wiki page' => '',
'Displays an attachment or a list of them' => '',
'displays an image' => '',
'Displays an input form for tracker submit' => '',
'Displays an miniquiz' => '',
'Displays browser client info' => '',
'Displays preformated text/code; no Wiki processing is done inside these sections (as with np), and the spacing is fixed (no word wrapping is done).' => '',
'displays rss feed with id=n maximum=m items' => '',
'Displays text in subscript.' => '',
'Displays the data using a monospace font' => '',
'Displays the data using the TikiWiki odd/even table style' => '',
'Displays the number of registered users' => '',
'Displays the output of a poll, fields are indicated with numeric ids.' => '',
'Displays the output of a tracker content, fields are indicated with numeric ids.' => '',
'Displays the text only if the language matchs' => '',
'Displays the thumbnail for an image' => '',
'Displays the user Avatar' => '',
'Distance (km)' => '',
'dls' => '',
'Documentation' => '',
'Does your mail reader need a special charset' => '',
'Dominican_Republic' => '',
'Don\'t move' => '',
'Don\'t send confirmation mail' => '',
'done' => '',
'Dont forget to use feature you will need to enable it on the <a href="tiki-admin.php?page=features">Features</a> icon.' => '',
'down' => '',
'Download' => '',
'Download last dump' => '',
'Download Layer' => '',
'Download other user\'s file' => '',
'Downloads' => '',
'drawing not found' => '',
'Drawings' => '',
'drop down' => '',
'Dropdown options: list of items separated with commas.' => '',
'dsn' => '',
'Due' => '',
'Due Date' => '',
'Due Date:' => '',
'Dump' => '',
'dump tree' => '',
'Dumps' => '',
'duplicate' => '',
'duration' => '',
'Duration:' => '',
'Dutch' => '',
'Dynamic' => '',
'dynamic collapsed' => '',
'Dynamic content' => '',
'Dynamic content blocks' => '',
'Dynamic Content System' => '',
'dynamic extended' => '',
'dynamic variable' => '',
'Dynamic variables' => '',
'Dynamic zones' => '',
'E-mail' => '',
'Each 5 minutes' => '',
'Ecuador' => '',
'edit' => '',
'Edit a file using this form' => '',
'Edit a topic' => '',
'edit account settings' => '',
'Edit an existing page' => '',
'Edit and create Languages' => '',
'Edit Article' => '',
'edit article tpl' => '',
'Edit Assignment' => '',
'Edit Blog' => '',
'edit blog tpl' => '',
'Edit Calendar Item' => '',
'edit chart' => '',
'Edit CSS' => '',
'Edit existing forums' => '',
'Edit FAQ questions' => '',
'Edit fields' => '',
'Edit fields for tracker' => '',
'Edit Forum' => '',
'edit gallery' => '',
'Edit game' => '',
'Edit group' => '',
'Edit idle timeout' => '',
'edit image' => '',
'Edit information' => '',
'Edit item' => '',
'edit items' => '',
'Edit languages' => '',
'Edit Mail-in account' => '',
'Edit mapfiles' => '',
'Edit menu options' => '',
'edit new article' => '',
'edit new submission' => '',
'Edit or add poll options' => '',
'Edit or create banners' => '',
'Edit or ex/import Languages' => '',
'Edit Post' => '',
'Edit Project' => '',
'Edit question options' => '',
'Edit queued message' => '',
'Edit quiz' => '',
'Edit quiz questions' => '',
'edit quiz questions tpl' => '',
'edit quiz stats tpl' => '',
'Edit received article' => '',
'Edit received page' => '',
'edit repository' => '',
'Edit Repository:' => '',
'Edit rules' => '',
'Edit Rules for Repository:' => '',
'Edit Style Sheet' => '',
'Edit Submissions' => '',
'edit submissions tpl' => '',
'Edit successful!' => '',
'Edit survey questions' => '',
'Edit task' => '',
'edit template' => '',
'Edit templates' => '',
'Edit this assigned module:' => '',
'Edit this category:' => '',
'Edit this directory category' => '',
'Edit this FAQ' => '',
'Edit this FAQ:' => '',
'Edit this Featured Link:' => '',
'Edit this file gallery:' => '',
'Edit this Forum:' => '',
'Edit this gallery:' => '',
'Edit this group:' => '',
'Edit this HTML page:' => '',
'Edit this menu' => '',
'Edit this Menu:' => '',
'Edit this page' => '',
'Edit this poll' => '',
'edit this process' => '',
'edit this quiz' => '',
'Edit this Repository:' => '',
'Edit this RSS module:' => '',
'Edit this sheet:' => '',
'edit this survey' => '',
'Edit this Survey:' => '',
'Edit this template:' => '',
'Edit this tracker' => '',
'Edit this user module:' => '',
'Edit tpl' => '',
'Edit tracker' => '',
'Edit tracker fields' => '',
'Edit Translation:' => '',
'Edit translations' => '',
'edit translations template' => '',
'Edit user' => '',
'edit user files' => '',
'Edit zone' => '',
'edit/create' => '',
'Editing comment' => '',
'Editing reply' => '',
'Editing tracker item' => '',
'editions' => '',
'editor' => '',
'Editor group' => '',
'EditTemplates' => '',
'EditTemplates tpl' => '',
'eek' => '',
'Egypt' => '',
'El_Salvador' => '',
'email' => '',
'Email address' => '',
'Email address options: 0|1|2 where 0 puts the address as plain text, 1 does a hex encoded mailto link (more difficult for web spiders to pick it up and spam) and 2 does the normal href mailto.' => '',
'Email is required' => '',
'Email is set to %s' => '',
'EMail notifications' => '',
'email this post' => '',
'Email:' => '',
'emot' => '',
'Emphasis' => '',
'Empty' => '',
'empty trash' => '',
'Enable auto indexing on file upload or change' => '',
'Enable Feature' => '',
'Enable Mods providing' => '',
'Enable watch by default for author' => '',
'Enable watch events when I am the editor' => '',
'Enable watches on comments' => '',
'Enable watches when I am the editor' => '',
'Enable wiki 3D browser' => '',
'Enabled' => '',
'End' => '',
'End activity is not reachable from start activity' => '',
'End date:' => '',
'End hour for days' => '',
'Ended' => '',
'English' => '',
'English British' => '',
'Enjoy the site!' => '',
'Enlarge area height' => '',
'enter chat room' => '',
'Enter the code you see above' => '',
'Enter the name of the page for which the current page is the translation.' => '',
'Enter the name of this instance' => '',
'Entire Site' => '',
'Ephemerides' => '',
'Ephemerides Admin' => '',
'EphMenu' => '',
'Epilogue:' => '',
'erase' => '',
'Error' => '',
'Error in tracker ID' => '',
'Error Message' => '',
'Error processing zipped image package' => '',
'Error: ' => '',
'Error: Assignment not found.' => '',
'Error: Call to hw_page_fetch_by_id failed!' => '',
'Error: Could not fetch assignment ' => '',
'Error: Could not fetch page' => '',
'ERROR: Either the subject or body must be non-empty' => '',
'Error: Invalid' => '',
'Error: Invalid id for hw_pages table.' => '',
'Error: No' => '',
'Error: No assignment indicated.' => '',
'ERROR: No valid users to send the message' => '',
'Error: nonexistant version specified.' => '',
'Error: This page is being edited by another user.' => '',
'ERROR: you must include a subject or a message at least' => '',
'Errors detected' => '',
'Estonia' => '',
'Event' => '',
'Event ID' => '',
'event without name' => '',
'Event:' => '',
'Events' => '',
'Everybody can attach' => '',
'evil' => '',
'Example' => '',
'exception' => '',
'exception instance' => '',
'exceptions' => '',
'exceptions instance' => '',
'excerpt' => '',
'exclaim' => '',
'exec' => '',
'Executed' => '',
'Execution time' => '',
'Existing page node color' => '',
'Expiration' => '',
'Expiration Date' => '',
'Expiration Time' => '',
'Expire Date' => '',
'ExpireDate' => '',
'expires:' => '',
'Explanation' => '',
'Export' => '',
'export all versions' => '',
'export pages' => '',
'Export Wiki Pages' => '',
'Exterminator' => '',
'external link' => '',
'External links' => '',
'External Wiki' => '',
'External wikis' => '',
'Extra Options' => '',
'extwiki' => '',
'ExtWikis' => '',
'F' => '',
'failed' => '',
'Failed to edit the image' => '',
'FAQ' => '',
'FAQ Answers' => '',
'FAQ comments' => '',
'FAQ questions' => '',
'Faq Stats' => '',
'FAQs' => '',
'FAQs settings' => '',
'Fatal error' => '',
'Fatal error: cannot execute automatic activity $activityId' => '',
'Fatal error: nextActivity does not match any candidate in autorouting switch activity' => '',
'Fatal error: non-deterministic decision for autorouting activity' => '',
'Fatal error: setting next activity to an unexisting activity' => '',
'Fatal error: trying to send an instance to an activity but no transition found' => '',
'Favorites' => '',
'Feature' => '',
'Feature disabled' => '',
'Featured Help' => '',
'Featured links' => '',
'Features' => '',
'features matched' => '',
'Features state' => '',
'February' => '',
'Federated_States_of_Micronesia' => '',
'Feed animation interval (milisecs)' => '',
'Feed for Articles' => '',
'Feed for directories' => '',
'Feed for File Galleries' => '',
'Feed for forums' => '',
'Feed for Image Galleries' => '',
'Feed for individual File Galleries' => '',
'Feed for individual forums' => '',
'Feed for individual Image Galleries' => '',
'Feed for individual weblogs' => '',
'Feed for mapfiles' => '',
'Feed for the Wiki' => '',
'Feed for Weblogs' => '',
'Field' => '',
'Field is hidden? (visible by admin only)' => '',
'Field is mandatory?' => '',
'Field is public? (for use thru trackerlist plugin)' => '',
'fields' => '',
'Fields marked with a * are mandatory.' => '',
'Fields to display on page' => '',
'Fields to display:' => '',
'Fields to show during browsing the gallery' => '',
'Fiji' => '',
'File' => '',
'File %s is not a valid archive' => '',
'File %s not found' => '',
'File checks' => '',
'File Description' => '',
'file gal' => '',
'File Galleries' => '',
'File galleries comments settings' => '',
'File Galleries RSS' => '',
'File galleries search indexing' => '',
'File galleries Stats' => '',
'file galleries tpl' => '',
'File Gallery' => '',
'File Gallery successfully added to the project.' => '',
'File gals' => '',
'File is not readable. Unable to check.' => '',
'File is too big' => '',
'File name of start page' => '',
'File not found' => '',
'File Title' => '',
'File update was succesful' => '',
'File with names appended by -{$user} are modifiable, others are only duplicable and be used as model.' => '',
'file-g' => '',
'FileGalMenu' => '',
'Filename' => '',
'Filename only' => '',
'Files' => '',
'files to index (regexp):' => '',
'Filesize' => '',
'filetype' => '',
'filter' => '',
'Filter Tracker Items' => '',
'Filters' => '',
'Finally if the user didn\'t select a theme the default theme is used' => '',
'Find' => '',
'Find:' => '',
'Finland' => '',
'First' => '',
'first image' => '',
'First Name' => '',
'First Name:' => '',
'First page' => '',
'first uploaded image' => '',
'Fix it' => '',
'Fix UTF-8 Errors in Tables' => '',
'fixed' => '',
'flag' => '',
'Flag this message' => '',
'flagged' => '',
'Flash binary (.sqf or .dcr)' => '',
'Float text around image' => '',
'fname' => '',
'Focus:' => '',
'Folder in' => '',
'Folders' => '',
'Font' => '',
'Footer Rows' => '',
'Footnotes' => '',
'for' => '',
'For an external Wiki, use ExternalWikiName:PageName or ((External Wiki Name: Page Name))' => '',
'for bullet lists' => '',
'for definiton lists' => '',
'for links' => '',
'For more information, please see <a
href="http:www.tikiwiki.org/tiki-index.php?page=WikiSyntax">WikiSyntax</a>
on <a href="http:www.tikiwiki.org">TikiWiki.org</a>.' => '',
'For more information, please see <a href="{$helpurl}WikiSyntax">WikiSyntax</a>' => '',
'for more setup details.' => '',
'for numbered lists' => '',
'for wiki references' => '',
'Force to use chars and nums in passwords' => '',
'Format Cell' => '',
'Format: mm/dd/yyy hh:mm' => '',
'Format: mm/dd/yyyy hh:mm<br />...See strtotime php function' => '',
'ForMenu' => '',
'forum' => '',
'Forum List' => '',
'Forum listing configuration' => '',
'Forum password' => '',
'Forum posts' => '',
'Forum quick jumps' => '',
'Forum Stats' => '',
'forum topic' => '',
'Forums' => '',
'Forums best topics' => '',
'Forums last posts' => '',
'Forums last topics' => '',
'Forums most read topics' => '',
'Forums most visited forums' => '',
'Forums RSS' => '',
'Forums settings' => '',
'Forums with most posts' => '',
'forum_post_thread' => '',
'forum_post_topic' => '',
'forward' => '',
'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' => '',
'Found' => '',
'framed' => '',
'France' => '',
'French' => '',
'French_Polynesia' => '',
'Frequency' => '',
'Frequency should be a positive integer!' => '',
'Fri' => '',
'Friday' => '',
'Friend' => '',
'friends tpl' => '',
'Friendship Network' => '',
'FriendsMenu' => '',
'Frienship request sent to %s' => '',
'from
the mapfile:' => '',
'from' => '',
'From date' => '',
'From Points' => '',
'from the list' => '',
'From:' => '',
'fromnthe mapfile:' => '',
'frown' => '',
'full' => '',
'Full adds accented characters.' => '',
'full headers' => '',
'Full path to gdaltindex' => '',
'full path to mapfiles' => '',
'Full path to ogr2ogr' => '',
'Full side-by-side diff' => '',
'Full Text Search' => '',
'Future vers' => '',
'Galaxia Admin Graph' => '',
'Galaxia Admin Graph tpl' => '',
'Galaxia Admin Processes' => '',
'Galaxia Admin Processes tpl' => '',
'Galaxia Monitor Activities' => '',
'Galaxia Monitor Activities tpl' => '',
'Galaxia Monitor Instances' => '',
'Galaxia Monitor Instances tpl' => '',
'Galaxia Monitor Processes' => '',
'Galaxia Monitor Processes tpl' => '',
'Galaxia User Activities' => '',
'Galaxia User Activities tpl' => '',
'Galaxia User Instances' => '',
'Galaxia User Instances tpl' => '',
'Galaxia User Processes' => '',
'Galaxia User Processes tpl' => '',
'Galleries' => '',
'Galleries features' => '',
'galleries tpl' => '',
'Gallery' => '',
'Gallery Files' => '',
'Gallery Image' => '',
'Gallery Images' => '',
'Gallery is visible to non-admin users?' => '',
'Gallery listing configuration' => '',
'Gallery Rankings' => '',
'GalMenu' => '',
'Games' => '',
'games tpl' => '',
'Gender' => '',
'General' => '',
'General Layout options' => '',
'General Options' => '',
'General Preferences' => '',
'General preferences and settings' => '',
'General Settings' => '',
'Generate a password' => '',
'Generate dump' => '',
'Generate HTML' => '',
'Generate HTML preview' => '',
'Generate positions by hits' => '',
'Generate User Map' => '',
'Genre' => '',
'geo.placename' => '',
'geo.position' => '',
'geo.region' => '',
'Geographic' => '',
'German' => '',
'Germany' => '',
'Get property' => '',
'GET:WikiName to get a wiki page' => '',
'go' => '',
'Go back' => '',
'Go to your <a href="tiki-friends.php">friendship network</a> to accept or refuse this request' => '',
'Google Search' => '',
'grab instance' => '',
'Grade Paper' => '',
'Grading and Feedback' => '',
'Grading method ' => '',
'Grading Queue ' => '',
'graph' => '',
'Greece' => '',
'Greek' => '',
'Group' => '',
'group <b>%s</b> set as the default group of user <b>%s</b>.' => '',
'Group already exists' => '',
'Group Calendars' => '',
'Group doesnt exist' => '',
'Group Homepage' => '',
'Group Information' => '',
'Group Information Tracker' => '',
'Group informations' => '',
'group selector' => '',
'Group Selector: use options for automatic field feeding : you can use 1 for group of creation and 2 for group where modification come from. The default group has to be set, or the first group that come is chosen for a user, or the default group is Registered.' => '',
'Group subscription also subscribes included groups' => '',
'Group tracker item : {$groupitemid}' => '',
'Group tracker item not found' => '',
'Group users' => '',
'Groups' => '',
'Guam' => '',
'Guatemala' => '',
'h' => '',
'Haiti' => '',
'half a second' => '',
'happy' => '',
'has requested an account on' => '',
'Have your article read' => '',
'Have your blog read' => '',
'Have your file downloaded' => '',
'Have your gallery seen by other user' => '',
'Have your image seen' => '',
'Have your profile seen' => '',
'header' => '',
'Header Rows' => '',
'Headers Only' => '',
'Heading' => '',
'Heading only' => '',
'heading1' => '',
'Heading:' => '',
'heads and cells separated by ~|~' => '',
'Hebrew' => '',
'Height of inner Heading' => '',
'Height of mid Heading' => '',
'Height of top Heading' => '',
'height width desc link and align are optional' => '',
'Help' => '',
'Help System' => '',
'Help URL' => '',
'Here are the files to download, do not forget to rename them:' => '',
'Hi' => '',
'Hi {$mail_user} has sent you this link:' => '',
'Hi,' => '',
'Hidden' => '',
'hide' => '',
'Hide all' => '',
'Hide anonymous-only modules from registered users' => '',
'hide categories' => '',
'hide from display' => '',
'Hide Panels' => '',
'Hide Quick Urls' => '',
'hide structures' => '',
'Hide subcategories objects' => '',
'Hide suggested questions' => '',
'High' => '',
'Highest' => '',
'Highlight Group' => '',
'hist' => '',
'History' => '',
'hit' => '',
'Hits' => '',
'hits (asc)' => '',
'hits (desc)' => '',
'Home' => '',
'Home Blog' => '',
'Home Blog (main blog)' => '',
'Home File Gal' => '',
'Home File Gallery' => '',
'Home Forum (main forum)' => '',
'Home Gallery (main gallery)' => '',
'Home Image Gal' => '',
'Home Image Gallery' => '',
'Home page' => '',
'HomePage' => '',
'Homework' => '',
'HomeworkMenu' => '',
'Honduras' => '',
'horizontal ruler' => '',
'hot' => '',
'Hotwords' => '',
'Hotwords in New Windows' => '',
'hour' => '',
'hours' => '',
'hr' => '',
'HTLM preview' => '',
'HTML code' => '',
'HTML Pages' => '',
'HTML preview' => '',
'HTML tags are not allowed inside comments' => '',
'HTML tags are not allowed inside posts' => '',
'HTTP port' => '',
'HTTP server name' => '',
'HTTP URL prefix' => '',
'HTTPS port' => '',
'HTTPS Server' => '',
'HTTPS server name' => '',
'HTTPS URL prefix' => '',
'Human readable repository name' => '',
'Human readable text description of repository' => '',
'Human readable text description of rule' => '',
'Hungarian' => '',
'Hungary' => '',
'I could not create the index file' => '',
'I could not make a copy' => '',
'I do not know where is gdaltindex. Set correctly the Map feature' => '',
'I forgot my pass' => '',
'I forgot my password' => '',
'I have accepted your friendship request!' => '',
'I have broken our friendship!' => '',
'I have refused your friendship request!' => '',
'Iceland' => '',
'icon' => '',
'icons' => '',
'ID' => '',
'idea' => '',
'idle' => '',
'If a theme is assigned to the individual object that theme is used.' => '',
'If any of your forums have attachments stored in the directory you will need to backup these using FTP or SCP.' => '',
'If none of the above was selected the user theme is used' => '',
'If not then a theme for the section is used' => '',
'If not then if a theme is assigned to the object\'s category that theme is used' => '',
'If you can\'t see the game then you need a flash plugin for your browser' => '',
'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 don\'t want to receive these notifications follow this link:' => '',
'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 your site is private or inside your intranet, you should not register!' => '',
'If:SetNextact' => '',
'Ignore category viewing restrictions' => '',
'Ignore individual object permissions' => '',
'Im- Export Languages' => '',
'Image' => '',
'Image caption' => '',
'Image Description' => '',
'image gal' => '',
'Image Galleries' => '',
'Image galleries comments settings' => '',
'Image Galleries RSS' => '',
'Image galleries Stats' => '',
'Image Gallery' => '',
'Image Gallery tpl' => '',
'Image gals' => '',
'Image ID' => '',
'Image ID thumb' => '',
'Image Map Generated in:' => '',
'Image Name' => '',
'Image options: xSize,ySize indicated in pixels.' => '',
'Image size' => '',
'Image x size' => '',
'Image y size' => '',
'Image:' => '',
'Images' => '',
'Images per row' => '',
'imagescale' => '',
'Img' => '',
'img nc' => '',
'img-g' => '',
'Imgs' => '',
'Immediate feedback' => '',
'import' => '',
'Import A PHPBB Dump' => '',
'Import CSV file' => '',
'Import HTML' => '',
'Import page' => '',
'Import pages from a PHPWiki Dump' => '',
'Import pages from a Structured Text Dump' => '',
'Import PHPWiki Dump' => '',
'Import questions from text' => '',
'Import/export' => '',
'Import/export trackers' => '',
'Import/export trackers fields' => '',
'Important' => '',
'ImportingPagesPhpWikiPageAdmin' => '',
'Impose a time limit of ' => '',
'Impossible to change %s from %s to %s' => '',
'Impossible to create new %s with %s %s.' => '',
'Impossible to open %s : %s' => '',
'Impressions' => '',
'in' => '',
'In album listing show user as' => '',
'In blog listing show user as' => '',
'in current category' => '',
'in entire directory' => '',
'In order to confirm your subscription you must access the following URL:' => '',
'In parent page' => '',
'in:' => '',
'Inactive' => '',
'Include' => '',
'Include a page' => '',
'Include all post in a blog' => '',
'Include an article' => '',
'Included group, group users and emails will be refreshed at each newsletter sending' => '',
'Includes' => '',
'Indent text with any number of spaces to turn it into a monospaced block that still follows other Wiki formatting instructions. It will be indended with the same number of spaces that you used.  Note that this mode does not preserve exact spacing and line breaks; use ~pp~...~/pp~ for that.' => '',
'index file (.shp):' => '',
'India' => '',
'indicates if the process is active. Invalid processes cant be active' => '',
'Individual cache' => '',
'Individual Order' => '',
'Indonesia' => '',
'Info' => '',
'Info message' => '',
'info/vote' => '',
'Inform task user by email' => '',
'Information about your site' => '',
'Information:' => '',
'inline frame' => '',
'Input' => '',
'Ins' => '',
'Insert' => '',
'Insert (use \'text\' for figuring the selection)' => '',
'Insert a division block on wiki page' => '',
'Insert Column' => '',
'Insert copyright notices' => '',
'Insert list of items for the current/given category into wiki page' => '',
'Insert Module Output' => '',
'Insert new item' => '',
'Insert Row' => '',
'Insert the full category path for each category that this wiki page belongs to' => '',
'Insert theme styled aligned box on wiki page' => '',
'Insert theme styled box on wiki page' => '',
'Inserts an editable variable' => '',
'Inst Status' => '',
'install' => '',
'Instance' => '',
'Instances' => '',
'Instructions: Type, or paste, your multiple choice questions below.  One line for the question, then start answer choices on subsequent lines.  Separate additional questions with a blank line.  Indicate correct answers by starting them with a "*" (without the quotes) character.' => '',
'Int' => '',
'Integrator' => '',
'inter' => '',
'interactive' => '',
'invalid' => '',
'Invalid directory name' => '',
'Invalid email address. You must enter a valid email address' => '',
'Invalid file name' => '',
'Invalid filename (using filters for filenames)' => '',
'Invalid files to index' => '',
'Invalid imagename (using filters for filenames)' => '',
'Invalid old password' => '',
'Invalid or unknown username' => '',
'Invalid password.  You current password is required to change your email address.' => '',
'Invalid password.  Your current password is required to change administrative information' => '',
'Invalid password. You current password is required to change your email address.' => '',
'invalid process' => '',
'Invalid remote file on url %s' => '',
'Invalid request to edit an image' => '',
'invalid sites' => '',
'Invalid structure_id or page_ref_id' => '',
'Invalid topic id specified' => '',
'Invalid user' => '',
'Invalid user: $a_user' => '',
'Invalid username' => '',
'Invalid username or password' => '',
'Invalid variable value : ' => '',
'Investigate' => '',
'Ip' => '',
'IP regex matching' => '',
'Iran' => '',
'Iraq' => '',
'IRC log' => '',
'Ireland' => '',
'is active?' => '',
'Is case sensitive (for simple replacer)' => '',
'Is column visible when listing tracker items?' => '',
'Is email public? (uses scrambling to prevent spam)' => '',
'Is repository visible to users' => '',
'Is this regular expression or simple search/replacer' => '',
'Is valid' => '',
'isMain' => '',
'Israel' => '',
'Italian' => '',
'italic' => '',
'italics' => '',
'Italy' => '',
'item' => '',
'Item creation' => '',
'Item creator can modify his items?' => '',
'Item information' => '',
'item link' => '',
'Item Link options: trackerId,fieldId links to item from trackerId which fieldId matches the content of that field.' => '',
'Item Modification' => '',
'Items' => '',
'items list' => '',
'Items list options: trackerId,fieldIdThere, fieldIdHere, displayFieldIdThere displays the list of displayFieldIdThere from item in tracker trackerId where fieldIdThere matches fieldIdHere.' => '',
'Ivory_Coast' => '',
'Jamaica' => '',
'January' => '',
'Japan' => '',
'Japanese' => '',
'join' => '',
'JoinCapitalizedWords or use' => '',
'Jordan' => '',
'jscalendar' => '',
'Jukebox' => '',
'Jukebox features' => '',
'Jukebox listing configuration (when listing available albums)' => '',
'Jukebox settings' => '',
'Jukebox tracks location' => '',
'July' => '',
'Jump to forum' => '',
'June' => '',
'Just Tiki' => '',
'Just use Tiki auth for admin?' => '',
'Kazakstan' => '',
'Kenya' => '',
'Kiribati' => '',
'Klick to enlarge' => '',
'Korean' => '',
'Kuwait' => '',
'Label' => '',
'lang' => '',
'Language' => '',
'Language created' => '',
'Language: ' => '',
'Last' => '',
'Last 24 hours' => '',
'Last 48 hours' => '',
'Last actions' => '',
'Last articles' => '',
'Last articles.' => '',
'Last author' => '',
'Last blog posts' => '',
'Last changes' => '',
'last chart' => '',
'Last Created blogs' => '',
'Last Created FAQs' => '',
'Last Created Quizzes' => '',
'Last Edit:' => '',
'Last files' => '',
'Last files uploaded to the file galleries.' => '',
'Last forum posts' => '',
'Last forum topics' => '',
'Last galleries' => '',
'Last hour' => '',
'last image' => '',
'Last images' => '',
'Last images uploaded to the image galleries.' => '',
'Last Items' => '',
'Last login' => '',
'Last mod' => '',
'last modif' => '',
'Last modifed events' => '',
'last modification' => '',
'Last modification date' => '',
'Last modification date (desc)' => '',
'last modification time' => '',
'Last modifications to the Wiki.' => '',
'Last modified' => '',
'Last Modified blogs' => '',
'Last modified by' => '',
'Last modified file galleries' => '',
'Last Modified Items' => '',
'Last Name' => '',
'Last Name:' => '',
'Last page' => '',
'Last pages' => '',
'Last post' => '',
'Last post (desc)' => '',
'Last posts' => '',
'Last posts to weblogs.' => '',
'Last seen on ' => '',
'last sent' => '',
'Last Sites' => '',
'Last sites of directory ".$rc["name"]." .' => '',
'Last sites.' => '',
'Last submissions' => '',
'Last taken' => '',
'Last topics in forums.' => '',
'Last update' => '',
'Last update from CVS' => '',
'Last updated' => '',
'last updated (asc)' => '',
'last updated (desc)' => '',
'last uploaded image' => '',
'Last ver' => '',
'Last version' => '',
'Last visitors' => '',
'Last wiki comments' => '',
'Last `$module_rows` actions' => '',
'Last `$module_rows` articles' => '',
'Last `$module_rows` blog posts' => '',
'Last `$module_rows` changes' => '',
'Last `$module_rows` Created blogs' => '',
'Last `$module_rows` Created FAQs' => '',
'Last `$module_rows` Created Quizzes' => '',
'Last `$module_rows` Files' => '',
'Last `$module_rows` forum posts' => '',
'Last `$module_rows` forum topics' => '',
'Last `$module_rows` galleries' => '',
'Last `$module_rows` Images' => '',
'Last `$module_rows` Items' => '',
'Last `$module_rows` Modified blogs' => '',
'Last `$module_rows` modified events' => '',
'Last `$module_rows` modified file galleries' => '',
'Last `$module_rows` Modified Items' => '',
'Last `$module_rows` Sites' => '',
'Last `$module_rows` submissions' => '',
'Last `$module_rows` visitors' => '',
'Last `$module_rows` wiki comments' => '',
'LastChanges' => '',
'lastModif' => '',
'latin' => '',
'Latitude (WGS84/decimal degrees)' => '',
'Latvia' => '',
'Layer' => '',
'Layer management' => '',
'Layer Manager' => '',
'layout options' => '',
'Layout per section' => '',
'LDAP' => '',
'LDAP Admin Pwd' => '',
'LDAP Admin User' => '',
'LDAP Base DN' => '',
'LDAP Group Attribute' => '',
'LDAP Group DN' => '',
'LDAP Group OC' => '',
'LDAP Host' => '',
'LDAP Member Attribute' => '',
'LDAP Member Is DN' => '',
'LDAP Port' => '',
'LDAP Scope' => '',
'LDAP URL<br/>(if set, this will override the Host and Port below)' => '',
'LDAP User Attribute' => '',
'LDAP User DN' => '',
'LDAP User OC' => '',
'Leave "New password" and "Confirm new password" fields blank to keep current password' => '',
'Leave command blank to delete handler' => '',
'Lebanon' => '',
'left' => '',
'Left column' => '',
'left modules' => '',
'left/right' => '',
'Legend' => '',
'Legend:' => '',
'level' => '',
'Library to use for processing images' => '',
'License' => '',
'License Page' => '',
'like' => '',
'Like pages' => '',
'Limit questions displayed per page to ' => '',
'Line:' => '',
'Lines:' => '',
'Link' => '',
'Link plural WikiWords to their singular forms' => '',
'Link quiz to forum named: ' => '',
'Link to user information' => '',
'Link type' => '',
'Links' => '',
'Links per page' => '',
'Links to a translated content' => '',
'Links to validate' => '',
'linktext' => '',
'link_description' => '',
'List' => '',
'List all members' => '',
'List all pages which link to specific pages' => '',
'List all projects' => '',
'List Articles' => '',
'list articles tpl' => '',
'list assignments' => '',
'List Attachments' => '',
'List banners' => '',
'List Blogs' => '',
'List Calendars' => '',
'list charts' => '',
'List Courses' => '',
'list events' => '',
'List FAQs' => '',
'list faqs tpl' => '',
'List forums' => '',
'List galleries' => '',
'list gallery' => '',
'List image galleries' => '',
'List menus' => '',
'List Movies' => '',
'list newsletters' => '',
'List notes' => '',
'List of activities' => '',
'List of attached files' => '',
'List of available backups' => '',
'List of Calendars' => '',
'List of email addresses separated by commas' => '',
'List of existing groups' => '',
'List of featured links' => '',
'List of instances' => '',
'List of mappings' => '',
'List of maps available.' => '',
'List of messages' => '',
'List of processes' => '',
'List of topics' => '',
'List of transitions' => '',
'List of types' => '',
'List of workitems' => '',
'List pages' => '',
'List pages where I am a creator' => '',
'List pages where I am a modificator' => '',
'List polls' => '',
'list posts tpl' => '',
'List quizzes' => '',
'list quizzes tpl' => '',
'list repositories' => '',
'list submissions' => '',
'List surveys' => '',
'List trackers' => '',
'list trackers tpl' => '',
'List wiki pages' => '',
'Listing configuration' => '',
'Listing Gallery' => '',
'Lists' => '',
'Lithuania' => '',
'Live Support' => '',
'Live support system' => '',
'Live support:Console' => '',
'Live support:User window' => '',
'lname' => '',
'loc' => '',
'Local' => '',
'Location' => '',
'Location : ' => '',
'lock' => '',
'lock selected topics' => '',
'locked' => '',
'locked by' => '',
'log in' => '',
'logged as' => '',
'Login' => '',
'Login and click the link below' => '',
'Login as admin' => '',
'Login through CAS' => '',
'Logout' => '',
'lol' => '',
'Long date format' => '',
'Long time format' => '',
'longdesc' => '',
'Longitude (WGS84/decimal degrees)' => '',
'Longname' => '',
'look under "Articles" on the application menu for links to' => '',
'Low' => '',
'Lowest' => '',
'LRU list length' => '',
'LRU list purging rate' => '',
'Luxemburg' => '',
'mad' => '',
'Made with' => '',
'Mail end of line:' => '',
'Mail notifications' => '',
'Mail-in' => '',
'Mail-in account %s incorrect' => '',
'Mail-in account %s saved' => '',
'Mail-in accounts' => '',
'Mail-in accounts set to be checked every %s minutes' => '',
'Mail-in feature' => '',
'Mailbox' => '',
'make a line break' => '',
'Make friends' => '',
'Make Map' => '',
'make this a thread of' => '',
'Maked as deleted' => '',
'makes a horizontal rule' => '',
'make_headings' => '',
'Malawi' => '',
'Malaysia' => '',
'Malta' => '',
'Manage attachment preferences' => '',
'manage group assignments' => '',
'Manage structures' => '',
'Mandatory' => '',
'Manual' => '',
'Map' => '',
'Map groups to roles' => '',
'Map process roles' => '',
'Map users to roles' => '',
'Map Zone' => '',
'Mapfile' => '',
'Mapfile History' => '',
'Mapfile listing' => '',
'mapfile name incorrect' => '',
'Mapfiles' => '',
'Maps' => '',
'Maps feature is not correctly setup : Maps path is missing.' => '',
'Maps RSS' => '',
'March' => '',
'mark' => '',
'mark as done' => '',
'Mark as flagged' => '',
'Mark as read' => '',
'Mark as unflagged' => '',
'Mark as unread' => '',
'Mark entry as private:' => '',
'Marshall_Islands' => '',
'Mass update' => '',
'Master' => '',
'Mauritius' => '',
'Max attachment size (bytes)' => '',
'Max average server load threshold in the last minute' => '',
'Max description display size' => '',
'Max friendship distance' => '',
'Max impressions' => '',
'Max Rows per page' => '',
'Max. age in hours of syllable search cache' => '',
'Max. number of words containing a syllable' => '',
'Maximum number of articles in home' => '',
'Maximum number of children to show' => '',
'Maximum number of records in listings' => '',
'Maximum number of versions for history' => '',
'Maximum size for each attachment' => '',
'Maximum time' => '',
'maxScore' => '',
'May' => '',
'May need to refresh twice to see changes' => '',
'Mb' => '',
'Member list' => '',
'Member of the default group of creator can modify items?' => '',
'Members' => '',
'Members List' => '',
'Memory usage' => '',
'Menu' => '',
'Menu options' => '',
'Menus' => '',
'merge' => '',
'Merge Cells' => '',
'Merge into topic' => '',
'merge selected notes into' => '',
'merge selected topics' => '',
'merged note:' => '',
'message' => '',
'Message Broadcast' => '',
'Message queue for' => '',
'Message sent to' => '',
'Message to display when server is too busy' => '',
'Message to display when site is closed' => '',
'Message will be sent to: ' => '',
'Messages' => '',
'Messages per page' => '',
'messages tpl' => '',
'Meta Author' => '',
'Meta Description' => '',
'Meta Keywords' => '',
'meta robots' => '',
'Meta Tags' => '',
'Method' => '',
'Method to open directory links' => '',
'Mexico' => '',
'min' => '',
'Mini Calendar' => '',
'Mini Calendar: Preferences' => '',
'Minimum length of search word' => '',
'Minimum password length' => '',
'Minimum time between posts' => '',
'Minor' => '',
'mins' => '',
'minute' => '',
'minutes' => '',
'Misc' => '',
'Missing db param' => '',
'missing fields list' => '',
'Missing information to read news (server,port,username,password,group) required' => '',
'Missing page node color' => '',
'missing poll ID for plugin POLL' => '',
'Missing title or body when trying to post a comment' => '',
'missing tracker ID for plugin TRACKER' => '',
'Missing url parameter for SNARF plugin.' => '',
'Mode' => '',
'moderator actions' => '',
'Moderator group' => '',
'Moderator user' => '',
'Moderators and admin can attach' => '',
'Modified' => '',
'Modified by' => '',
'Modify Structure' => '',
'Mods Admin' => '',
'Mods local directory' => '',
'Mods remote server' => '',
'Module' => '',
'Module Name' => '',
'Modules' => '',
'Mon' => '',
'Monday' => '',
'Monitor' => '',
'Monitor activities' => '',
'monitor instances' => '',
'monitor processes' => '',
'monitor this blog' => '',
'monitor this forum' => '',
'monitor this map' => '',
'monitor this page' => '',
'monitor this topic' => '',
'monitor workitems' => '',
'month' => '',
'Monthly' => '',
'Months' => '',
'more info' => '',
'More info about' => '',
'More info about $other_user' => '',
'Morocco' => '',
'Most active blogs' => '',
'Most commented forums' => '',
'Most downloaded files' => '',
'Most read topics' => '',
'Most relevant pages' => '',
'Most visited blogs' => '',
'Most visited forums' => '',
'Most visited sub-categories' => '',
'Most `$module_rows` visited blogs' => '',
'mot' => '',
'move' => '',
'move %s in %s' => '',
'Move image' => '',
'move into trash' => '',
'Move module down' => '',
'Move module to opposite side' => '',
'Move module up' => '',
'move selected files' => '',
'move selected topics' => '',
'Move to' => '',
'move to left column' => '',
'move to right column' => '',
'Move to topic:' => '',
'Mozambique' => '',
'mr green' => '',
'Msg' => '',
'msgs' => '',
'Multi-page pages' => '',
'Multilingual' => '',
'Multiple choices' => '',
'MultiPrint' => '',
'Mus enter a name to add a site' => '',
'Must be logged to use this feature' => '',
'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. ' => '',
'Must select a category' => '',
'Must select a category. ' => '',
'Mutual' => '',
'My activities' => '',
'my bitweaver.tpl' => '',
'My blogs' => '',
'My files' => '',
'My galleries' => '',
'My instances' => '',
'My items' => '',
'My messages' => '',
'My Pages' => '',
'My tasks' => '',
'My Tiki' => '',
'My watches' => '',
'My Work' => '',
'My workflow' => '',
'MyFiles' => '',
'MyMenu' => '',
'MyTiki' => '',
'MyTiki (click!)' => '',
'MyTiki home' => '',
'MyTikiDoc' => '',
'n for rows' => '',
'n<b>Note 1</b>: if you allow your users to configure modules then assignednmodules won\'t be reflected in the screen until you configure themnfrom MyTiki->modules.<br />n<b>Note 2</b>: If you assign modules to groups make sure that younhave turned off the option \'display modules to all groups always\'nfrom Admin->Generaln' => '',
'name' => '',
'Name (asc)' => '',
'Name (desc)' => '',
'Name of the dump file (it has to be in dump/)' => '',
'Name of the SQL dump file (relative tontiki basedir, e.g. dump/phpbb_db_backup.sql )' => '',
'Name, path and start page are mandatory fields' => '',
'Name-filename' => '',
'Name:' => '',
'Nauru' => '',
'Navigation depth' => '',
'Navigation Panel' => '',
'Nepal' => '',
'Netherlands' => '',
'neutral' => '',
'Never' => '',
'Never delete versions younger than days' => '',
'new' => '',
'New %s created with %s %s.' => '',
'New article post at %s' => '',
'New article post: {$mail_title} by {$mail_user} at {$mail_date|bit_short_datetime}' => '',
'New article submitted at ' => '',
'New article submitted at %s' => '',
'new articles' => '',
'New blog post at %s' => '',
'New blog post: {$mail_title} by {$mail_user} at {$mail_date|bit_short_datetime}' => '',
'new blog posts' => '',
'new blogs' => '',
'New Calendar Item' => '',
'New Class' => '',
'new comments' => '',
'new FAQs' => '',
'new file galleries' => '',
'new files' => '',
'new image galleries' => '',
'new image uploaded by' => '',
'new images' => '',
'new item in tracker' => '',
'New items are created with status' => '',
'New Label' => '',
'New Layer' => '',
'New Legend' => '',
'new major' => '',
'New Mapfile' => '',
'new message' => '',
'New message arrived from ' => '',
'New message arrived from %s' => '',
'new messages' => '',
'new minor' => '',
'New name' => '',
'New Outputformat' => '',
'New password' => '',
'new polls' => '',
'New Projection' => '',
'New Query' => '',
'new question' => '',
'New Reference' => '',
'new reply' => '',
'new repository' => '',
'new rule' => '',
'New Scalebar' => '',
'new sites' => '',
'new subscriptions' => '',
'New task' => '',
'new topic' => '',
'New user registration' => '',
'new users' => '',
'New Web' => '',
'new window' => '',
'New wms Metadata' => '',
'Newest first' => '',
'News from' => '',
'News server' => '',
'Newsgroup' => '',
'Newsletter' => '',
'Newsletter subscription information at ' => '',
'Newsletter:' => '',
'Newsletters' => '',
'Newsreader' => '',
'Newss from' => '',
'New_Caledonia' => '',
'New_Zealand' => '',
'next' => '',
'next chart' => '',
'Next chart will be generated on' => '',
'next image' => '',
'next page' => '',
'next topic' => '',
'Next ver' => '',
'Nicaragua' => '',
'Nickname' => '',
'Nigeria' => '',
'Niue' => '',
'no' => '',
'no / rejected' => '',
'No activities defined yet' => '',
'No activities found' => '',
'No activity indicated' => '',
'No arguments indicated' => '',
'No article body, heading only' => '',
'No article indicated' => '',
'No assignment indicated' => '',
'No attachments' => '',
'No attachments for this item' => '',
'No attachments for this page' => '',
'no avatar' => '',
'No backlinks to this page' => '',
'No banner indicated' => '',
'No blog indicated' => '',
'No blogId specified' => '',
'no cache' => '',
'No cache information available' => '',
'No categories defined' => '',
'No category indicated' => '',
'No category permissions; global permissions apply' => '',
'No change' => '',
'No channel indicated' => '',
'No chart indicated' => '',
'No charts defined yet' => '',
'No comment indicated' => '',
'no comments' => '',
'No content id indicated' => '',
'No date indicated' => '',
'no description' => '',
'No description available' => '',
'no display' => '',
'No entries available yet!' => '',
'No error reporting' => '',
'No Errors detected' => '',
'No event indicated' => '',
'No extra information for that attached file. ' => '',
'No faq indicated' => '',
'no feeling' => '',
'No field indicated' => '',
'No forum indicated' => '',
'No forumId specified' => '',
'No gallery indicated' => '',
'No galleryId specified' => '',
'No homework page indicated!' => '',
'No hw page indicated' => '',
'No image indicated' => '',
'No image yet, sorry.' => '',
'No individual permissions global permissions apply' => '',
'No individual permissions; category or global permissions apply' => '',
'No instance indicated' => '',
'No instances created yet' => '',
'No instances defined yet' => '',
'No instances found' => '',
'No item indicated' => '',
'No items defined yet' => '',
'No mappings defined yet' => '',
'No menu indicated' => '',
'No messages queued yet' => '',
'No messages to display' => '',
'No more messages' => '',
'No name indicated for wiki page' => '',
'No newsletter indicated' => '',
'No nickname indicated' => '',
'No note indicated' => '',
'No notes yet' => '',
'no object here yet' => '',
'No object indicated' => '',
'No page indicated' => '',
'No pages found' => '',
'No pages found for title search' => '',
'No pages indicated' => '',
'No pages links to' => '',
'No pages matched the search criteria' => '',
'No parent specified' => '',
'No permission to upload zipped file packages' => '',
'No permission to upload zipped image packages' => '',
'No permission to view the page' => '',
'No poll indicated' => '',
'No post indicated' => '',
'No process graph is available. Either the process still contains errors, the graph is not generated yet, or <a href="http://www.research.att.com/sw/tools/graphviz/">GraphViz</a> is not properly installed.' => '',
'No process indicated' => '',
'No processes defined yet' => '',
'No project reference assigned' => '',
'No projects found' => '',
'No question indicated' => '',
'No questions group indicated' => '',
'No quiz indicated' => '',
'No records found' => '',
'No records found.' => '',
'No records were found. Check the file please!' => '',
'no reminders' => '',
'No repository' => '',
'No repository given' => '',
'No result indicated' => '',
'No roles are defined yet so no roles can be mapped' => '',
'No roles associated to this activity' => '',
'No roles defined yet' => '',
'No scales available' => '',
'No server indicated' => '',
'No site indicated' => '',
'No structure indicated' => '',
'No subject' => '',
'no such attachment on this page' => '',
'no such file' => '',
'No suggested questions' => '',
'no summary' => '',
'No survey indicated' => '',
'No tasks entered' => '',
'No thread indicated' => '',
'No title indicated' => '',
'No topic id specified' => '',
'No topics yet' => '',
'No tracker indicated' => '',
'No transitions defined yet' => '',
'No type indicated' => '',
'No url indicated' => '',
'No user indicated' => '',
'No valid gdaltindex executable' => '',
'No valid ogr2ogr executable' => '',
'No version indicated' => '',
'Non cacheable images' => '',
'Non parsed sections' => '',
'non-admins can view after the expire date' => '',
'non-admins can view before the publish date' => '',
'Non-existent gallery' => '',
'Non-existent link' => '',
'Non-existent user' => '',
'Non-existent version' => '',
'NONE' => '',
'None, this is a thread message' => '',
'Normal' => '',
'normal headers' => '',
'Norway' => '',
'Norwegian' => '',
'NOT accept' => '',
'not accepted by one user' => '',
'Not Defined' => '',
'Not detected.' => '',
'Not displayed until a user chooses it' => '',
'Not Ended' => '',
'Not enough information to display this page' => '',
'Not Installed' => '',
'Not Interactive' => '',
'Not rated yet' => '',
'Not Set' => '',
'not specified' => '',
'Note that this does not affect WikiWord recognition, only page names surrounded by (( and )).' => '',
'Note, that this can take a very long time. You should check your max_execution_time setting in php.ini.' => '',
'note: colors and ln are exclusive' => '',
'Note: if you want to use images please save the post first and you
will be able to edit/post images. Use the &lt;img&gt; snippet to include uploaded images in the textarea editor
or use the image URL to include images using the WYSIWYG editor. ' => '',
'Note: if you want to use images please save the post first and younwill be able to edit/post images. Use the &lt;img&gt; snippet to include uploaded images in the textarea editornor use the image URL to include images using the WYSIWYG editor. ' => '',
'Note: Remember that this is only a preview, and has not yet been saved!' => '',
'note: those parameters are exclusive' => '',
'Notepad' => '',
'Notes' => '',
'Notifications' => '',
'November' => '',
'Now enter the file URL' => '',
'Now enter the image URL' => '',
'num is optional and is the order number of the attachment in the list. If not provided, a list of all attachments is displayed.  Inline makes the comment be the text of the link.' => '',
'Number Admins' => '',
'Number Members' => '',
'Number of columns per page when listing categories' => '',
'Number of displayed rows' => '',
'Number of friends' => '',
'Number of posts (desc)' => '',
'Number of posts to show' => '',
'Number of tracks (desc)' => '',
'Number of visited pages to remember' => '',
'numeric field' => '',
'Numeric options: 1,size,prepend,append with size in chars, prepend will be displayed before the field append will be displayed just after, and initial 1 to make that next text field or checkbox is in same row. If you indicate only 1 it means next field is in same row too.' => '',
'object' => '',
'Objects' => '',
'Objects in category' => '',
'Objects that can be included' => '',
'October' => '',
'of' => '',
'Offline operators' => '',
'ok' => '',
'Old articles' => '',
'Old password' => '',
'Old vers' => '',
'Older Messages' => '',
'older version' => '',
'Oldest first' => '',
'On' => '',
'On this page you can make your tiki site known to tikiwiki.org. It will get shown there in a list of known tiki sites.' => '',
'on:' => '',
'One choice' => '',
'one data per line' => '',
'one definition per line' => '',
'One page found for title search' => '',
'One page links to' => '',
'online' => '',
'Online operators' => '',
'online user' => '',
'Online users' => '',
'Only an admin can remove a thread.' => '',
'Only for users' => '',
'Only the creator can delete this task' => '',
'Only users with attach permission' => '',
'Only with last version' => '',
'op' => '',
'open' => '',
'open / in process' => '',
'Open a new task' => '',
'Open a support ticket instead' => '',
'Open client window' => '',
'Open external links in new window' => '',
'open new window' => '',
'Open operator console' => '',
'Open page as structure' => '',
'open tasks' => '',
'Operation' => '',
'Operations' => '',
'Operations Log' => '',
'Operator' => '',
'Operator:' => '',
'Operators must be tiki users' => '',
'opp side' => '',
'option' => '',
'Optional' => '',
'options' => '',
'Options (if apply)' => '',
'Options (separated by commas used in dropdowns only)' => '',
'or' => '',
'or create a new category' => '',
'or create a new location' => '',
'Or enter path or URL' => '',
'Or upload a process using this form' => '',
'or use filename' => '',
'Order' => '',
'Ordering for forums in the forum listing' => '',
'Organized by' => '',
'Origin' => '',
'Original' => '',
'Original Image is default scale' => '',
'original size' => '',
'Originating e-mail address for mails from this forum' => '',
'Orphan Pages' => '',
'OS' => '',
'Other' => '',
'Other Polls' => '',
'Other preferences' => '',
'Other users can upload files to this gallery' => '',
'Other users can upload images to this gallery' => '',
'output compression is active.' => '',
'Overview' => '',
'Overwrite' => '',
'Overwrite existing pages if the name is the same' => '',
'Overwrite existing threads if the name isnthe same' => '',
'overwriting old page' => '',
'Own Image' => '',
'Own image size x' => '',
'Own image size y' => '',
'Owner' => '',
'P' => '',
'Package Config' => '',
'page' => '',
'Page alias' => '',
'Page already exists' => '',
'Page cannot be found' => '',
'page created' => '',
'Page creators are admin of their pages' => '',
'Page generated in' => '',
'Page generation debugging log' => '',
'page imported' => '',
'Page must be defined inside a structure to use this feature' => '',
'Page name' => '',
'page not added (Exists)' => '',
'Page not found:' => '',
'Pages' => '',
'Pages like' => '',
'pages link to' => '',
'Pages:' => '',
'pageviews' => '',
'page|desc' => '',
'Pakistan' => '',
'PAM' => '',
'PAM service' => '',
'Pan' => '',
'Panama' => '',
'paper' => '',
'papers' => '',
'Papua_New_Guinea' => '',
'Paraguay' => '',
'Parameters' => '',
'parent' => '',
'Parent category' => '',
'Parent gallery' => '',
'Parent page' => '',
'Participants' => '',
'Pass' => '',
'Passcode to register (not your user password)' => '',
'Passing Percentage' => '',
'Password' => '',
'password for this account is' => '',
'Password invalid after days' => '',
'Password is required' => '',
'Password must contain both letters and numbers' => '',
'Password protected' => '',
'Password should be at least' => '',
'Path' => '',
'Path to repository (local filesystem: relative/absolute web root, remote: prefixed with \'http://\')' => '',
'Path to the tag icon' => '',
'Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)' => '',
'pdf' => '',
'PDF generation' => '',
'PDF Settings' => '',
'PEAR::Auth' => '',
'pending' => '',
'Pending requests' => '',
'Percentage' => '',
'Percentage completed' => '',
'Perform action with checked:' => '',
'Performance issues' => '',
'perm' => '',
'Permalink' => '',
'Permanency' => '',
'permanently' => '',
'Permision denied' => '',
'permission' => '',
'Permission denied' => '',
'Permission denied to use this feature' => '',
'Permission denied you can edit images but not in this gallery' => '',
'Permission denied you can not view this section' => '',
'Permission denied you can upload files but not to this file gallery' => '',
'Permission denied you can upload images but not to this gallery' => '',
'Permission denied you can\'t upload files so you can\'t edit them' => '',
'Permission denied you cannot access this gallery' => '',
'Permission denied you cannot approve submissions' => '',
'Permission denied you cannot assign permissions for this page' => '',
'Permission denied you cannot browse this page history' => '',
'Permission denied you cannot create galleries and so you cant edit them' => '',
'Permission denied you cannot create or edit blogs' => '',
'Permission denied you cannot edit images' => '',
'Permission denied you cannot edit submissions' => '',
'Permission denied you cannot edit this article' => '',
'Permission denied you cannot edit this blog' => '',
'Permission denied you cannot edit this file' => '',
'Permission denied you cannot edit this gallery' => '',
'Permission denied you cannot edit this page' => '',
'Permission denied you cannot edit this post' => '',
'Permission denied you cannot make the map of this gallery' => '',
'Permission denied you cannot move images from this gallery' => '',
'Permission denied you cannot post' => '',
'Permission denied you cannot rebuild thumbnails in this gallery' => '',
'Permission denied you cannot remove articles' => '',
'Permission denied you cannot remove banners' => '',
'Permission denied you cannot remove files from this gallery' => '',
'Permission denied you cannot remove images from this gallery' => '',
'Permission denied you cannot remove pages' => '',
'Permission denied you cannot remove submissions' => '',
'Permission denied you cannot remove the post' => '',
'Permission denied you cannot remove this blog' => '',
'Permission denied you cannot remove this gallery' => '',
'Permission denied you cannot remove versions from this page' => '',
'Permission denied you cannot rename this page' => '',
'Permission denied you cannot rollback this page' => '',
'Permission denied you cannot rotate images in this gallery' => '',
'Permission denied you cannot send submissions' => '',
'Permission denied you cannot upload files' => '',
'Permission denied you cannot upload images' => '',
'Permission denied you cannot view backlinks for this page' => '',
'Permission denied you cannot view pages' => '',
'Permission denied you cannot view pages like this page' => '',
'Permission denied you cannot view the calendar' => '',
'Permission denied you cannot view this page' => '',
'Permission denied you cannot view this section' => '',
'Permission denied you must be a student to view assignments.' => '',
'Permission denied: Students may NOT edit their work after the due date.' => '',
'Permission denied: Students may only view or edit their own work.' => '',
'Permission denied: The teacher must wait until the due date to edit students\' work.' => '',
'Permission denied: You cannot rollback this page.' => '',
'Permission denied: you must be a teacher to access this page.' => '',
'Permission denied: You must be a teacher to edit assignments.' => '',
'Permission denied; you cannot assign permissions for this category' => '',
'permission.' => '',
'permissions' => '',
'perms' => '',
'Perms inherited from closest parent if possible or from global perms' => '',
'perso' => '',
'Personal Calendar' => '',
'Personal Information' => '',
'Personal Wiki Page' => '',
'Peru' => '',
'Phillippines' => '',
'PHP error' => '',
'Php error reporting level for non-admin:' => '',
'PHP settings' => '',
'PHP variable' => '',
'phpinfo' => '',
'PHPLayers' => '',
'PhpLayers Dynamic menus' => '',
'phpLayersMenus' => '',
'PHPOpenTracker' => '',
'Pick avatar from the library' => '',
'Pick user Avatar' => '',
'Pick your avatar' => '',
'Picture' => '',
'picture not found' => '',
'Pictures' => '',
'pixels' => '',
'Plain' => '',
'Plain text' => '',
'Played' => '',
'Please' => '',
'Please also see' => '',
'Please choose a module' => '',
'Please choose your project categories carefully. You cannhowever change this later on your project admin panel.' => '',
'Please contact the Site Administrator' => '',
'Please create a category first' => '',
'Please create a directory named $map_path to hold your map files.' => '',
'Please login' => '',
'Please provide an Id' => '',
'please read' => '',
'Please read the task and work on it!' => '',
'Please register.' => '',
'Please select a chat channel' => '',
'Please supply both files' => '',
'Please wait 2 minutes between posts' => '',
'Plugin ' => '',
'Points' => '',
'Poland' => '',
'Polish' => '',
'poll' => '',
'Poll comments settings' => '',
'Poll options' => '',
'Poll settings' => '',
'Poll Stats' => '',
'Polls' => '',
'pop' => '',
'POP server' => '',
'Pop-up' => '',
'POP3 server' => '',
'popup' => '',
'Popup window' => '',
'Port' => '',
'Portugal' => '',
'Português' => '',
'Pos' => '',
'position' => '',
'Post' => '',
'Post date' => '',
'Post in a blog' => '',
'Post level comments' => '',
'post new comment' => '',
'Post new reply' => '',
'Post or edit a message' => '',
'Post recommendation at' => '',
'posted by' => '',
'Posted comments' => '',
'Posted messages' => '',
'posted on' => '',
'Posting comments' => '',
'Posting replies' => '',
'Posts' => '',
'Posts can be rated' => '',
'Posts per day' => '',
'powered by' => '',
'ppd' => '',
'pre' => '',
'Preferences' => '',
'Prefix for File Galleries' => '',
'Prefix for Project Admin groups' => '',
'Prefix for Project groups' => '',
'Prefix for Wiki project home page' => '',
'Preformated sections' => '',
'Prefs' => '',
'Prepare a event to be sent' => '',
'Prepare a newsletter to be sent' => '',
'PREPEND:WikiName to append the data at the top' => '',
'prev' => '',
'prev image' => '',
'prev topic' => '',
'Prevent automatic/robot registration' => '',
'Prevent flooding' => '',
'Prevent users from voting for the same item more than once' => '',
'Prevent users from voting same item more than one time' => '',
'Prevents parsing data' => '',
'prevents referencing' => '',
'Prevents wiki parsing of the enclosed data.' => '',
'Preview' => '',
'Preview menu' => '',
'Preview options' => '',
'Preview poll' => '',
'Preview Results' => '',
'Previous' => '',
'previous chart' => '',
'previous page' => '',
'Previously remove existing page versions' => '',
'print' => '',
'Print multiple pages' => '',
'Print Wiki Pages' => '',
'prio' => '',
'Priority' => '',
'private' => '',
'private message' => '',
'proc' => '',
'Proceed at your own peril' => '',
'Process' => '',
'Process %d has been activated' => '',
'Process %d has been deactivated' => '',
'Process %s %s imported' => '',
'Process %s has been created' => '',
'Process %s has been updated' => '',
'Process %s removed' => '',
'Process activities' => '',
'Process already exists' => '',
'Process does not have a start activity' => '',
'Process does not have exactly one end activity' => '',
'Process form' => '',
'Process Graph' => '',
'Process Graph for' => '',
'Process Name' => '',
'Process roles' => '',
'Process Transitions' => '',
'Process:' => '',
'processes' => '',
'Program' => '',
'Program dynamic content for block' => '',
'Project Active' => '',
'Project Admin' => '',
'Project Admin Group for ' => '',
'Project Admins group template' => '',
'Project Admins:' => '',
'Project Created:' => '',
'Project Description:' => '',
'Project Group for ' => '',
'Project Info' => '',
'Project Members' => '',
'Project Members group template' => '',
'Project Members:' => '',
'Project Name:' => '',
'Project Object Created Successfully' => '',
'Project Registration' => '',
'Projects' => '',
'Projects Menu' => '',
'Prologue:' => '',
'Promote' => '',
'Properties' => '',
'Property' => '',
'Protect against CSRF with a confirmation step' => '',
'Protect against CSRF with a ticket' => '',
'Provides a list of plugins on this wiki.' => '',
'Proxy Host' => '',
'Proxy port' => '',
'Prune old messages after' => '',
'Prune unreplied messages after' => '',
'pts' => '',
'public' => '',
'Public for group' => '',
'Public tasks' => '',
'Publication Date' => '',
'Publish' => '',
'Publish all' => '',
'Publish an article' => '',
'Publish Date' => '',
'Publish statistics ' => '',
'Publish/Event Date' => '',
'PublishDate' => '',
'Published' => '',
'Publisher' => '',
'Publishing date' => '',
'Puerto_Rico' => '',
'PUT:WikiName to update/create a wiki page (use the body for the page data)' => '',
'Puts a link to an anchor in a wiki page. Use in conjunction with the ANAME plugin, which sets the location and name of the anchor' => '',
'Puts an anchor into a wiki page. Use in conjunction with the ALINK plugin, which makes links to the anchor' => '',
'pvs' => '',
'Q' => '',
'quarter' => '',
'Quatar' => '',
'quater' => '',
'Query' => '',
'Question' => '',
'Question Type' => '',
'Questions' => '',
'Questions per page' => '',
'Queue all posts' => '',
'Queue anonymous posts' => '',
'queued messages:' => '',
'queued:' => '',
'Quick edit a Wiki page' => '',
'Quicklinks' => '',
'QuickTags' => '',
'quiz' => '',
'Quiz can be repeated' => '',
'Quiz is time limited' => '',
'Quiz result stats' => '',
'Quiz stats' => '',
'Quiz time limit exceeded quiz cannot be computed' => '',
'QuizMenu' => '',
'Quizzes' => '',
'Quizzes taken' => '',
'quota' => '',
'Quota (Mb)' => '',
'random' => '',
'Random Image' => '',
'Random image from' => '',
'Random Pages' => '',
'Random sub-categories' => '',
'randomly selected questions.' => '',
'Rank 1..10' => '',
'Rank 1..5' => '',
'Ranking' => '',
'Ranking frequency' => '',
'Ranking shows' => '',
'Rankings' => '',
'Ranks' => '',
'Rate' => '',
'Rate (1..10)' => '',
'Rate (1..5)' => '',
'Rating' => '',
'Ratio' => '',
'razz' => '',
'Re:' => '',
'Read' => '',
'Read an article' => '',
'Read message' => '',
'Read More' => '',
'Read other user\'s blog' => '',
'Read the news' => '',
'Read this first!' => '',
'Reading article from' => '',
'Reading note:' => '',
'Reads' => '',
'Reads (desc)' => '',
'Real Name' => '',
'Realtime' => '',
'Reason' => '',
'Rebuild local list' => '',
'rebuild thumbnails' => '',
'Receive message' => '',
'received' => '',
'Received articles' => '',
'received articles tpl' => '',
'Received objects' => '',
'Received Pages' => '',
'received pages tpl' => '',
'Received task' => '',
'Recently visited pages' => '',
'recommended for best performance' => '',
'Record untranslated' => '',
'redface' => '',
'Redraw' => '',
'Reduce area height' => '',
'referenced by' => '',
'references' => '',
'Referer stats' => '',
'refresh' => '',
'refresh cache' => '',
'Refresh rate' => '',
'Refresh rate (if dynamic) [secs]' => '',
'refuse' => '',
'Refused friendship request from %s' => '',
'Reg users can change language' => '',
'Reg users can change password' => '',
'Reg users can change theme' => '',
'Regex' => '',
'Regex modifiers' => '',
'register' => '',
'Register as a new user' => '',
'Register New Project' => '',
'Register this site at tikiwiki.org' => '',
'Registered' => '',
'registered at your site' => '',
'Registering does not give you any benefits except one more link to your site.' => '',
'Registering is just for us to get an overview of Tiki\'s usage.' => '',
'Registering is voluntary.' => '',
'register_globals should be off by default. See the php manual for details.' => '',
'Registration' => '',
'Registration code' => '',
'Reindex all files for search' => '',
'reject' => '',
'Rejected users' => '',
'relate' => '',
'related' => '',
'Related categories' => '',
'release instance' => '',
'Relevance' => '',
'Reload' => '',
'Remember me' => '',
'Remember me domain' => '',
'Remember me feature' => '',
'Remember me name' => '',
'Remember me path' => '',
'Remind passwords by email' => '',
'Reminders' => '',
'remove' => '',
'Remove a tag' => '',
'Remove all cookies' => '',
'Remove all versions of this page' => '',
'remove bookmark' => '',
'Remove Column' => '',
'remove folder' => '',
'Remove from structure and remove page too' => '',
'remove from this category &amp; all its children' => '',
'remove from this category only' => '',
'remove from this page' => '',
'remove from this structure' => '',
'remove from trash' => '',
'Remove images in the system gallery not being used in Wiki pages, articles or blog posts' => '',
'Remove old events' => '',
'Remove only from structure' => '',
'remove page' => '',
'Remove Row' => '',
'Remove selected from' => '',
'Remove unused pictures' => '',
'Remove with articles' => '',
'Remove Zones (you lose entered info for the banner)' => '',
'Removed' => '',
'Removed %s from group %s' => '',
'rename' => '',
'Rename page' => '',
'Rendering Program Code' => '',
'Repeat password' => '',
'Replace' => '',
'replace current page' => '',
'replace current window' => '',
'replace window' => '',
'Replicate' => '',
'replied' => '',
'Replies' => '',
'Replies (desc)' => '',
'reply' => '',
'reply all' => '',
'Reply to parent comment' => '',
'Reply to parent post' => '',
'Reply to the selected post' => '',
'reply to this' => '',
'replyall' => '',
'Report all errors except notices' => '',
'Report all PHP errors' => '',
'Report PHP errors only for admin' => '',
'report this post' => '',
'Reported by' => '',
'Reported messages for' => '',
'reported messages:' => '',
'reported:' => '',
'Repository name can\'t be an empty' => '',
'Republish' => '',
'Republish all' => '',
'Request friendship from this user' => '',
'Request live support' => '',
'Request passcode to register' => '',
'Request support' => '',
'Request Time' => '',
'Requested' => '',
'requested a reminder of the password for the' => '',
'Requested action in not supported on repository' => '',
'Requested action in not supportted on repository' => '',
'Requested action is not supported on repository' => '',
'Require HTTP Basic authentication' => '',
'Require secure (https) login' => '',
'Required' => '',
'reset' => '',
'Reset Map' => '',
'reset table' => '',
'restore' => '',
'Restore Cells' => '',
'Restore defaults' => '',
'Restore the wiki' => '',
'Restoring a backup' => '',
'Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the backup.' => '',
'Restrict available languages' => '',
'Restrict available themes' => '',
'result' => '',
'results' => '',
'Return to block listing' => '',
'Return to blog' => '',
'return to gallery' => '',
'Return to home page' => '',
'Return to HomePage' => '',
'Return to mailbox' => '',
'Return to messages' => '',
'Reuse question' => '',
'Review' => '',
'revisit after' => '',
'right' => '',
'Right column' => '',
'right modules' => '',
'Rights by creator' => '',
'Risk Faktor' => '',
'Role' => '',
'roles' => '',
'rollback' => '',
'Rollback page' => '',
'rolleyes' => '',
'Romania' => '',
'rotate' => '',
'rotate right' => '',
'route' => '',
'Routing' => '',
'row1col1' => '',
'row1col2' => '',
'row2col1' => '',
'row2col2' => '',
'Rows' => '',
'RSS' => '',
'RSS Articles' => '',
'RSS Blogs' => '',
'Rss channels' => '',
'RSS Directories' => '',
'rss feed' => '',
'rss feed disabled' => '',
'RSS feeds' => '',
'RSS File Galleries' => '',
'RSS Forums' => '',
'RSS Image Galleries' => '',
'RSS Maps' => '',
'RSS modules' => '',
'RSS Wiki' => '',
'Rule activated by dates' => '',
'Rule active from' => '',
'Rule active until' => '',
'Rule order' => '',
'Rule title' => '',
'Rules' => '',
'Rules List' => '',
'run' => '',
'Run a sql query' => '',
'run activity' => '',
'run instance' => '',
'running' => '',
'Russia' => '',
'Russian' => '',
's=source' => '',
'sad' => '',
'safe' => '',
'Samoa' => '',
'Sandbox' => '',
'santa' => '',
'Sat' => '',
'Saturday' => '',
'Saudi_Arabia' => '',
'save' => '',
'save a custom copy' => '',
'save and approve' => '',
'save and exit' => '',
'Save position' => '',
'save the banner' => '',
'Save to notepad' => '',
'Scale' => '',
'Score' => '',
'Score (desc)' => '',
'Score settings' => '',
'Score System' => '',
'Sea Surfing (CSRF) detected. Operation blocked.' => '',
'Search' => '',
'Search : ' => '',
'Search by Date' => '',
'search category' => '',
'Search features' => '',
'Search in' => '',
'Search is mandatory field' => '',
'Search may show forbidden results. Much better performance though.' => '',
'Search refresh rate' => '',
'Search results' => '',
'Search settings' => '',
'Search Stats' => '',
'search stats tpl' => '',
'Search the titles of all pages in this wiki' => '',
'Search Wiki PageName' => '',
'Searchable' => '',
'searched' => '',
'Searches' => '',
'Searches performed' => '',
'SearchStats' => '',
'second' => '',
'seconds' => '',
'Seconds count \'till cached page will be expired' => '',
'secs' => '',
'Section' => '',
'Sections' => '',
'secure' => '',
'Security Admin' => '',
'security admin tpl' => '',
'See other user\'s gallery' => '',
'See other user\'s image' => '',
'See other user\'s profile' => '',
'Select' => '',
'Select a news server to browse' => '',
'select all' => '',
'select from address book' => '',
'Select news group' => '',
'select one' => '',
'Select ONE method for the banner' => '',
'Select something to vote on' => '',
'select source' => '',
'Select the article for which the current article is the translation.' => '',
'Select the language to edit' => '',
'Select the language to Export' => '',
'Select the language to Import' => '',
'Select Wiki Pages' => '',
'select zoom/pan/query and image size' => '',
'semester' => '',
'send' => '',
'Send a message to' => '',
'Send a message to us' => '',
'Send all to' => '',
'send answers' => '',
'Send Articles' => '',
'Send blog post' => '',
'Send email notifications when this page changes to' => '',
'send email to user' => '',
'send event' => '',
'Send events' => '',
'send instance' => '',
'Send me a message' => '',
'Send me an email for messages with priority equal or greater than' => '',
'send me my password' => '',
'Send message' => '',
'Send message with changes' => '',
'send newsletter' => '',
'send newsletters' => '',
'Send Objects' => '',
'Send objects to this site' => '',
'Send pages' => '',
'Send post to this addresses' => '',
'Send task' => '',
'Send this forums posts to this email' => '',
'Send trackback pings to:' => '',
'Send Wiki Pages' => '',
'sender' => '',
'Sender Email' => '',
'sent' => '',
'Sent edition' => '',
'Sent editions' => '',
'separator' => '',
'September' => '',
'Serbian' => '',
'Serbian Latin' => '',
'server' => '',
'Server load' => '',
'Server name (for absolute URIs)' => '',
'Server time zone' => '',
'Session lifetime in minutes' => '',
'session.use_trans_sid should be off by default. See the php manual for details.' => '',
'set' => '',
'set as operator' => '',
'set default groups' => '',
'Set features' => '',
'Set feeds' => '',
'Set home forum' => '',
'Set last poll as current' => '',
'Set Next act' => '',
'Set next user' => '',
'Set of Translations' => '',
'Set prefs' => '',
'Set property' => '',
'Set the default group of the selected users to' => '',
'Setting' => '',
'setting the xbithack option is unsafe. Depending on the file handling of your webserver and your tiki settings, it may be possible that a attacker can upload scripts to file gallery and execute them' => '',
'Settings' => '',
'Settings for searching content' => '',
'shared' => '',
'Shared code' => '',
'shared for group' => '',
'Shared task' => '',
'Sheet Heading' => '',
'Sheets' => '',
'sheets tpl' => '',
'Short date format' => '',
'Short text' => '',
'Short time format' => '',
'Shortname' => '',
'Shortname must be 2 Characters' => '',
'Shoutbox' => '',
'Shoutbox Words' => '',
'show' => '',
'Show a legend under the image' => '',
'Show a small title over the title' => '',
'Show after expire date' => '',
'Show All' => '',
'Show author' => '',
'Show author name' => '',
'Show author\'s avatar' => '',
'Show avatar' => '',
'Show Average' => '',
'Show Babelfish Translation Logo' => '',
'Show Babelfish Translation URLs' => '',
'Show before publish date' => '',
'show categories' => '',
'Show Category Objects' => '',
'Show Category Path' => '',
'Show chart for the last ' => '',
'Show correct answers' => '',
'Show creation date when listing tracker items?' => '',
'Show description' => '',
'Show expire date' => '',
'show feed title' => '',
'Show image' => '',
'Show Image Caption' => '',
'Show lang' => '',
'Show Language' => '',
'Show lastModif date when listing tracker items?' => '',
'Show link to source after article body' => '',
'Show Module Controls' => '',
'Show number of sites in this category' => '',
'Show page title' => '',
'Show Plugins Help' => '',
'Show posts' => '',
'show pubdate' => '',
'show publish date' => '',
'Show Quick Urls' => '',
'Show reads' => '',
'Show size' => '',
'Show source' => '',
'Show status' => '',
'Show status to tracker admin only' => '',
'Show status when listing tracker items?' => '',
'show structures' => '',
'Show students the correct answers ' => '',
'Show students their score ' => '',
'Show subcategories objects' => '',
'Show subtitle' => '',
'Show suggested questions/suggest a question' => '',
'Show Text Formatting Rules' => '',
'Show the banner only between these dates' => '',
'Show the banner only in this hours' => '',
'Show the banner only on' => '',
'Show the language' => '',
'Show the number of times the article was read' => '',
'Show the size of the article' => '',
'Show the subtitle' => '',
'Show topic or own image' => '',
'Show topic summary' => '',
'Show topline' => '',
'Show user avatar' => '',
'Show user\'s info on mouseover' => '',
'Show Votes' => '',
'show:' => '',
'Shows up in the drop down list of article types' => '',
'ShtMenu' => '',
'Shuffle answers' => '',
'Shuffle questions' => '',
'Side-by-side diff' => '',
'Side-by-side view' => '',
'similar' => '',
'Simple box' => '',
'Simple search' => '',
'Simplified Chinese' => '',
'since' => '',
'since this is your registered email address we inform that the' => '',
'Since your last visit' => '',
'Since your last visit on' => '',
'Singapore' => '',
'Site' => '',
'Site added' => '',
'Site ads and banners' => '',
'Site Calendar' => '',
'Site Identity' => '',
'Site Identity Settings' => '',
'Site location bar' => '',
'Site logo' => '',
'Site Logo and Identity' => '',
'Site logo background color' => '',
'Site logo source' => '',
'Site logo title (on mouse over)' => '',
'Site Stats' => '',
'sites' => '',
'sites from the directory' => '',
'Sites to validate' => '',
'size' => '',
'Size of Wiki Pages' => '',
'Skip to Content' => '',
'Skip to navigation' => '',
'Slave' => '',
'slides' => '',
'Slideshows theme' => '',
'Slovak' => '',
'Slovakia' => '',
'Slovenia' => '',
'smaller' => '',
'smile' => '',
'Smileys' => '',
'SMTP requires authentication' => '',
'SMTP server' => '',
'Solicit additional questions from students' => '',
'Solomon_Islands' => '',
'Somalia' => '',
'some text' => '',
'Some useful URLs' => '',
'Somebody or you tried to subscribe this email address at our site:' => '',
'SomeName' => '',
'someone coming from IP Address' => '',
'someone from' => '',
'Sorry no such module' => '',
'Sorry this problems by writing into the database' => '',
'Sorry this task does not exist or you have no rights to view this task' => '',
'Sorry, "$page" has not been created.' => '',
'Sorry, you can\'t use this feature.' => '',
'Sort' => '',
'Sort by' => '',
'Sort Images by' => '',
'Sort posts by:' => '',
'sorted section' => '',
'Sorts the plugin content in the wiki page' => '',
'source' => '',
'Source repository' => '',
'South_Africa' => '',
'South_Korea' => '',
'Spain' => '',
'Spanish' => '',
'special characters' => '',
'special chars' => '',
'Special Operations' => '',
'Specification' => '',
'specified.' => '',
'Spellcheck' => '',
'Spellchecking' => '',
'split' => '',
'Split a page into columns' => '',
'Split a page into rows and columns' => '',
'Split the text in parts visible only under some conditions' => '',
'sql query' => '',
'Square Brackets' => '',
'Sri_Lanka' => '',
'SrvMenu' => '',
'standalone' => '',
'standard' => '',
'stars' => '',
'Start' => '',
'Start date' => '',
'Start date:' => '',
'Start hour for days' => '',
'Start page' => '',
'started' => '',
'stat' => '',
'State' => '',
'Static' => '',
'Statistics' => '',
'Stats' => '',
'Stats for a Quiz' => '',
'Stats for quiz' => '',
'Stats for quizzes' => '',
'Stats for survey' => '',
'Stats for surveys' => '',
'Stats for this quiz Questions ' => '',
'Stats for this survey Questions ' => '',
'Status' => '',
'stay in ssl mode' => '',
'sticky' => '',
'stop' => '',
'stop monitoring this blog' => '',
'stop monitoring this forum' => '',
'stop monitoring this map' => '',
'stop monitoring this page' => '',
'stop monitoring this topic' => '',
'Storage' => '',
'Store attachments in:' => '',
'Store plaintext passwords' => '',
'Store quiz results' => '',
'Store session data in database' => '',
'strict' => '',
'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).' => '',
'Structure' => '',
'Structure ID' => '',
'Structure Layout' => '',
'Structures' => '',
'Structures:' => '',
'Students may only view their own work!' => '',
'Style' => '',
'Style Sheet' => '',
'St_Vincent_Grenadines' => '',
'Subcategories' => '',
'Subgallery' => '',
'Subject' => '',
'Submissions' => '',
'submissions waiting to be examined' => '',
'Submit' => '',
'Submit a new link' => '',
'Submit article' => '',
'Submit Notice' => '',
'submitted' => '',
'Subscribe' => '',
'Subscribe group' => '',
'Subscribe to event' => '',
'Subscribe to newsletter' => '',
'subscribed' => '',
'Subscription confirmed!' => '',
'Subscriptions' => '',
'subset of chars: imsxeADSXUu, which is regex modifiers' => '',
'Subtitle' => '',
'Suggested questions' => '',
'suggestions' => '',
'summary' => '',
'Sun' => '',
'Sunday' => '',
'Support chat transcripts' => '',
'Support requests' => '',
'Support tickets' => '',
'Surinam' => '',
'surprised' => '',
'Survey' => '',
'survey stats' => '',
'Surveys' => '',
'Sweden' => '',
'Swedish' => '',
'switch' => '',
'Switch construct' => '',
'Switzerland' => '',
'Syntax' => '',
'Syntax error' => '',
'Syntax highlighting' => '',
'SysLog' => '',
'system' => '',
'System Admin' => '',
'system admin tpl' => '',
'System gallery' => '',
'system logs' => '',
'system logs tpl' => '',
'table' => '',
'table new' => '',
'Table of contents' => '',
'Tables' => '',
'Tables syntax' => '',
'Tag already exists' => '',
'Tag Name' => '',
'Tag not found' => '',
'tagline' => '',
'Taiwan' => '',
'Take a quiz' => '',
'Take care when you register your project, the project namencannot be changed afterwards. Please also provide an accurate nproject description. If you havent worked out these details pleasendo so before your register the project.' => '',
'take survey' => '',
'taken' => '',
'Takes regex expressions and parses the content between the REGEX tags and replaces the text.' => '',
'Task' => '',
'Task accepted by creator' => '',
'Task accepted by task user' => '',
'Task entries:' => '',
'Task help' => '',
'Task is accepted by user and creator' => '',
'Task is not accepted by you, read the task and accept or reject it' => '',
'Task is not accepted/rejected by other user' => '',
'Task is rejected by one user' => '',
'Task list' => '',
'Task NOT accepted by creator' => '',
'Task NOT accepted by task user' => '',
'Task saved' => '',
'Task user' => '',
'Tasks' => '',
'Tasks per page' => '',
'tbheight' => '',
'Tbl vis' => '',
'template' => '',
'Template listing' => '',
'Template Viewing' => '',
'Templates' => '',
'Templates compiler' => '',
'Temporary directory' => '',
'Tentative' => '',
'term' => '',
'Test file from repository (empty = configured start page)' => '',
'Test file from repository to generate preview for (empty = configured start page)' => '',
'Test-time Options' => '',
'text' => '',
'Text cut here' => '',
'text field' => '',
'Text options: 1,size,prepend,append,max with size in chars, prepend will be displayed before the field append will be displayed just after, max is the maximum number of characters that can be saved, and initial 1 to make that next text field or checkbox is in same row. If you indicate only 1 it means next field is in same row too.' => '',
'Text to replace' => '',
'Text to search for' => '',
'textarea' => '',
'Textarea options: options,width,height,max with option is 1 or 0, rest is size indicated in chars and lines, max is the maximum number of characters that can be saved.' => '',
'Textheight' => '',
'Thailand' => '',
'Thank you for installing TikiWiki' => '',
'Thank you for you registration. You may log in now.' => '',
'Thank you for your submission' => '',
'Thanks for your subscription. You will receive an email soon to confirm your subscription. No events 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.' => '',
'That is not an image (or you have php < 4.0.5)' => '',
'That tracker don\'t use extras.' => '',
'The content on this page is licensed under the terms of the' => '',
'The copyright management feature is not enabled.' => '',
'The cord' => '',
'The Directory is not empty' => '',
'The event was sent to {$sent} email addresses' => '',
'The file is not a CSV file or has not a correct syntax' => '',
'The file you are trying to upload is too big.' => '',
'The file you are trying to upload was only partially uploaded.' => '',
'The following addresses are not in your address book' => '',
'The following file was successfully uploaded' => '',
'the following groups:' => '',
'The following image was successfully edited' => '',
'The following image was successfully uploaded' => '',
'The following site was added and validation by admin may be needed before appearing on the lists' => '',
'The game file must have .swf or .dcr extension' => '',
'The language can\'t be changed as its set of translations has already this language' => '',
'The map {$mail_page} was changed by {$mail_user} at {$mail_date|bit_short_datetime}' => '',
'The name is not valid. Please, enter the name again' => '',
'The new page content follows below.' => '',
'The new page content is:' => '',
'The newsletter was sent to {$edition.users} email addresses' => '',
'The newsletter was sent to {$sent} email addresses' => '',
'The object doesn\'t exist' => '',
'The object doesn\'t have a language' => '',
'The object has already a translation for this language' => '',
'The object is already in the set of translations' => '',
'The original document is available at' => '',
'The page cannot be found' => '',
'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}' => '',
'The page {$mail_page} was changed by {$mail_user} atn{$mail_date|bit_short_datetime}' => '',
'The page {$mail_page} was commented by {$mail_user} at {$mail_date|bit_short_datetime}' => '',
'The page {$mail_page} was created by {$mail_user} at {$mail_date|bit_short_datetime}' => '',
'The passwords did not match' => '',
'The passwords didn\'t match' => '',
'The passwords don\'t match' => '',
'The passwords dont match' => '',
'The Path to store files in the filegallery should be outside the tiki root directory' => '',
'The Path to store files in the imagegallery should be outside the tiki root directory' => '',
'The person who submits an article of this type can edit it' => '',
'The priority is' => '',
'The process name already exists' => '',
'The registration mail can\'t be sent. Contact the administrator' => '',
'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 disabled' => '',
'The SNARF plugin replaces itself with the HTML body of a URL.  Arbitrary regex replacement can be done on this content using regex and regexres, the latter being used as the second argument to preg_replace.' => '',
'The task title must have at least 3 characters' => '',
'The text in RED is' => '',
'The text is' => '',
'The thumbnail name must be' => '',
'The uploaded file ist not recognized as a image' => '',
'The user' => '',
'The user has choosen to make his information private' => '',
'The user has chosen to make his information private' => '',
'Theme' => '',
'Theme control' => '',
'Theme Control Center: categories' => '',
'Theme Control Center: Objects' => '',
'Theme Control Center: sections' => '',
'theme control objects tpl' => '',
'theme control sections tpl' => '',
'Theme is selected as follows' => '',
'ThemeControl' => '',
'ThemeControl Objects' => '',
'ThemeControl tpl' => '',
'There are' => '',
'There are individual permissions set for this blog' => '',
'There are individual permissions set for this event' => '',
'There are individual permissions set for this file gallery' => '',
'There are individual permissions set for this forum' => '',
'There are individual permissions set for this gallery' => '',
'There are individual permissions set for this newsletter' => '',
'There are individual permissions set for this quiz' => '',
'There are individual permissions set for this sheet' => '',
'There are individual permissions set for this survey' => '',
'There are individual permissions set for this tracker' => '',
'There are no channels setup, please contact a site admin' => '',
'There are no wiki pages similar to \'{$page}\'' => '',
'There is an error in the plugin data' => '',
'There is no available poll template.' => '',
'There was a problem with your upload.' => '',
'this category &amp; all its children' => '',
'this category only' => '',
'This data is put in a CODE caption.' => '',
'This email address has been added to the list of subscriptors of:' => '',
'This email address has been removed to the list of subscriptors of:' => '',
'This event will be sent to {$subscribers} email addresses.' => '',
'This feature has been disabled' => '',
'This feature is disabled' => '',
'This feature is for admins only' => '',
'This file is modified.' => '',
'This function converts ISO-8859-1 encoded strings in your tables to UTF-8' => '',
'This function is deprecated in favor of the improved quizzes outside of the Homework feature.' => '',
'This group is invalid' => '',
'This instance of activity is already complete' => '',
'This is' => '',
'This is a cached version of the page.' => '',
'This is not a TikiWiki File. Check if this file was uploaded and if it is dangerous.' => '',
'This mapfile already exists' => '',
'This may be necessary if you created content with tiki &lt; 1.8.4 and Default Charset settings in apache set to ISO-8859-1' => '',
'This message will be send to users if you are makeing changes of assigned tasks' => '',
'This module requires parameters trackerId and name set' => '',
'This newsletter will be sent to {$subscribers} email addresses.' => '',
'this page' => '',
'This page is being edited by' => '',
'This page is to configure settings of RSS feeds generated/exported by Tiki. To read/import RSS feeds, look for "RSS modules" on the application menu, or' => '',
'this post was reported' => '',
'This process is invalid' => '',
'this quiz stats' => '',
'This script cannot be called directly' => '',
'this structure' => '',
'this survey stats' => '',
'This task is public to a special group' => '',
'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 user is your friend' => '',
'Threaded' => '',
'Threads (desc)' => '',
'Threads can be voted' => '',
'Threshold' => '',
'Thu' => '',
'Thumbnail' => '',
'Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)' => '',
'Thumbnail (optional, overrides automatic thumbnail generation)' => '',
'Thumbnails size X' => '',
'Thumbnails size Y' => '',
'Thursday' => '',
'tiki admin external wikis template' => '',
'tiki admin external wikis tpl' => '',
'tiki admin quicktags template' => '',
'Tiki and HTTP Auth' => '',
'Tiki and PAM' => '',
'Tiki and PEAR::Auth' => '',
'Tiki Calendar' => '',
'Tiki Calendars' => '',
'Tiki community' => '',
'Tiki Debugger Console' => '',
'Tiki email notification' => '',
'Tiki forums' => '',
'Tiki Logo' => '',
'Tiki mail-in auto-reply' => '',
'Tiki mail-in auto-reply.' => '',
'Tiki mail-in instructions' => '',
'Tiki preferences value field in db is set to be max. 250 characters long by default until now. That applies for the custom code content too. Check this field if you want to update your preferences database table to support more than 250 chars (although it was tested and works fine with mysql, it\'s recommended to backup your data manually before any database update)' => '',
'Tiki Projects' => '',
'Tiki RSS Feed Error Message' => '',
'Tiki RSS feed for articles' => '',
'Tiki RSS feed for blog: ' => '',
'Tiki RSS feed for directory sites' => '',
'Tiki RSS feed for file galleries' => '',
'Tiki RSS feed for forum: ' => '',
'Tiki RSS feed for forums' => '',
'Tiki RSS feed for image galleries' => '',
'Tiki RSS feed for maps' => '',
'Tiki RSS feed for the file gallery: ' => '',
'Tiki RSS feed for the image gallery: ' => '',
'Tiki RSS feed for the wiki pages' => '',
'Tiki RSS feed for weblogs' => '',
'Tiki sections and features' => '',
'Tiki Sheet' => '',
'Tiki Shoutbox' => '',
'Tiki site registered' => '',
'Tiki Template Viewing' => '',
'Tiki User Registration Request' => '',
'Tiki variable' => '',
'tiki-admin_dsn tpl' => '',
'tiki-import_phpbb tpl' => '',
'tiki-import_phpwiki tpl' => '',
'tiki-mobile.php' => '',
'TikiSheet' => '',
'TikiTabs' => '',
'TikiWiki Assistant' => '',
'TikiWiki Mods' => '',
'TikiWiki Mods Configuration' => '',
'TikiWiki settings' => '',
'tikiwiki.org' => '',
'Tikiwiki.org help' => '',
'time' => '',
'Time Left' => '',
'time taken' => '',
'Time Zone' => '',
'Time Zone Map' => '',
'timeLimit' => '',
'times' => '',
'times from the directory' => '',
'Tip' => '',
'Tip: hold down CTRL to select multiple categories' => '',
'Tip: uncheck the above checkbox to uncategorize this page/object' => '',
'Title' => '',
'Title (asc)' => '',
'Title (desc)' => '',
'Title bar' => '',
'Title:' => '',
'To' => '',
'to access full functionalities' => '',
'to add/remove blogs, go to "Create/Edit blog" under "Blogs" on the application menu, or' => '',
'to add/remove FAQs, look for "Admin FAQs" under "FAQs" on the application menu, or' => '',
'to add/remove file galleries, go to "File Galleries" on the application menu, or' => '',
'to add/remove forums, look for "Admin forums" under "Forums" on the application menu, or' => '',
'to add/remove image galleries, go to "Image Galleries" on the application menu, or' => '',
'to add/remove polls, look for "Polls" under "Admin" on the application menu, or' => '',
'to be used as argument' => '',
'to configure your directory, find "Admin directory" under "Directory" on the application menu, or' => '',
'to configure your trackers, look for "Admin trackers" under "Trackers" on the application menu, or' => '',
'To date' => '',
'To edit the copyright notices' => '',
'to group' => '',
'to groups' => '',
'To install, remove or upgrade packages you need to give the apache user the rightnto write files in your web tree (you can use "./fixperms.sh open" to set it up). After installation you need to remove thatnpermission (using "./fixperms fix").' => '',
'To Points' => '',
'To the event:' => '',
'To the newsletter:' => '',
'to the registered email address for' => '',
'To validate that account, please follow the link:' => '',
'today' => '',
'Tonga' => '',
'Tools Calendars' => '',
'TOP' => '',
'Top $module_rows Sites' => '',
'Top 10' => '',
'Top 10 items' => '',
'Top 100' => '',
'Top 100 items' => '',
'Top 20' => '',
'Top 20 items' => '',
'Top 250 items' => '',
'Top 40 items' => '',
'Top 50' => '',
'Top 50 items' => '',
'Top active blogs' => '',
'Top article authors' => '',
'Top articles' => '',
'Top authors' => '',
'Top bar' => '',
'Top File Galleries' => '',
'Top Files' => '',
'Top Forum Posters' => '',
'Top galleries' => '',
'Top games' => '',
'Top images' => '',
'Top page' => '',
'Top pages' => '',
'Top Quizzes' => '',
'Top Sites' => '',
'Top topics' => '',
'Top users' => '',
'Top visited blogs' => '',
'Top Visited FAQs' => '',
'Top visited file galleries' => '',
'Top `$module_rows` articles' => '',
'Top `$module_rows` File Galleries' => '',
'Top `$module_rows` files' => '',
'Top `$module_rows` Forum Posters' => '',
'Top `$module_rows` galleries' => '',
'Top `$module_rows` games' => '',
'Top `$module_rows` Images' => '',
'Top `$module_rows` Pages' => '',
'Top `$module_rows` Quizzes' => '',
'Top `$module_rows` topics' => '',
'Top `$module_rows` Visited FAQs' => '',
'Topic' => '',
'Topic date' => '',
'Topic image' => '',
'Topic list configuration' => '',
'Topic Name' => '',
'topic:' => '',
'Topics' => '',
'Topics (desc)' => '',
'topics in this forum' => '',
'Topics only' => '',
'Topics per page' => '',
'Topline' => '',
'Total' => '',
'Total articles size' => '',
'Total categories' => '',
'Total links' => '',
'Total links visited' => '',
'Total pageviews' => '',
'Total posts' => '',
'Total questions' => '',
'Total reads' => '',
'Total size of blog posts' => '',
'Total size of files' => '',
'Total size of images' => '',
'Total threads' => '',
'Total topics' => '',
'Total votes' => '',
'to_version' => '',
'Trackback pings' => '',
'Tracker' => '',
'Tracker fields' => '',
'Tracker Items' => '',
'Tracker items allow attachments?' => '',
'Tracker items allow comments?' => '',
'Tracker items allow ratings?' => '',
'Tracker was modified at ' => '',
'Trackeritem' => '',
'Trackers' => '',
'Tracks' => '',
'Traditional Chinese' => '',
'Transcript' => '',
'Transcripts' => '',
'translate' => '',
'Translate in' => '',
'Translate recorded' => '',
'Translation' => '',
'Translation of:' => '',
'Transmission results' => '',
'Trash' => '',
'trashed by' => '',
'tree' => '',
'Trinidad_Tobago' => '',
'TrkMenu' => '',
'try' => '',
'Try to convert HTML to wiki' => '',
'Tue' => '',
'Tuesday' => '',
'Turkey' => '',
'Tuvalu' => '',
'Tuvaluan' => '',
'Twi' => '',
'twisted' => '',
'type' => '',
'Type <code>help</code> to get list of available commands' => '',
'Ukraine' => '',
'Ukrainian' => '',
'Unable to send mail. User has not configured email' => '',
'unassign' => '',
'Unassign module' => '',
'Unassign this module' => '',
'Unavailable - please set your e-mail below' => '',
'unchecked' => '',
'underline' => '',
'underlines text' => '',
'Undo' => '',
'undo trash' => '',
'Unexistant gallery' => '',
'Unexistant link' => '',
'Unexistant user' => '',
'Unexistant version' => '',
'Unflag' => '',
'Unflagg' => '',
'Unflagged' => '',
'unicode' => '',
'Unified diff' => '',
'United_Arab_Emirates' => '',
'United_Kingdom' => '',
'United_States' => '',
'Unix' => '',
'unknown' => '',
'unknown error' => '',
'Unknown group' => '',
'Unknown language' => '',
'Unknown user' => '',
'Unknown/Other' => '',
'unlimited' => '',
'unlock' => '',
'unlock selected topics' => '',
'unlocked' => '',
'Unpublish' => '',
'Unpublish all' => '',
'Unread' => '',
'Unread Messages' => '',
'unsafe' => '',
'up' => '',
'Upcoming events' => '',
'Update' => '',
'Update remote index' => '',
'Update variables' => '',
'Updated' => '',
'updated by the phpbb import process' => '',
'updated by the phpwiki import process' => '',
'updated from structured text import' => '',
'upload' => '',
'Upload a backup' => '',
'Upload a game' => '',
'Upload a new game' => '',
'Upload backup' => '',
'Upload Cookies from textfile' => '',
'Upload date' => '',
'Upload failed' => '',
'Upload file' => '',
'Upload Files' => '',
'Upload from disk' => '',
'Upload From Disk:' => '',
'Upload image' => '',
'Upload image for this post' => '',
'Upload new file to gallery' => '',
'Upload new image to gallery' => '',
'Upload picture' => '',
'Upload successful!' => '',
'Upload was not successful' => '',
'Upload was not successful (maybe a duplicate file)' => '',
'Upload your own avatar' => '',
'uploaded' => '',
'uploaded by' => '',
'Uploaded filenames cannot match regex' => '',
'Uploaded filenames must match regex' => '',
'Uploaded image names cannot match regex' => '',
'Uploaded image names must match regex' => '',
'upload_tmp_dir is probably within your TikiWiki directory. There is a risk that someone can upload any file to this directory and access them via web browser' => '',
'URI' => '',
'URL' => '',
'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)' => '',
'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. ' => '',
'URL cannot be accessed: wrong URL or site is offline and cannot be added to the directory' => '',
'URL to link the banner' => '',
'URL:' => '',
'Uruguay' => '',
'Usage' => '',
'Usage chart' => '',
'Usage chart image' => '',
'Use' => '',
'Use %1 for where internal file name should be substituted (example: "strings %1" to convert the document to text using the unix strings command)' => '',
'Use (:name:) for smileys' => '',
'Use (:smileyname:) for smileys' => '',
'use ...page... to separate pages' => '',
'Use ...page... to separate pages in a multi-page article' => '',
'Use ...page... to separate pages in a multi-page post' => '',
'Use :nickname:message for private messages' => '',
'Use a directory to store files' => '',
'Use a directory to store images' => '',
'Use a directory to store userfiles' => '',
'Use a question from another FAQ' => '',
'use admin email' => '',
'use banner zone' => '',
'Use cache for external images' => '',
'Use cache for external pages' => '',
'Use case sensitive str_replace' => '',
'Use challenge/response authentication' => '',
'Use Cookies for unregistered users' => '',
'Use database for translation' => '',
'Use database to store files' => '',
'Use database to store images' => '',
'Use database to store userfiles' => '',
'Use dates' => '',
'Use Dates?' => '',
'Use dbl click to edit pages' => '',
'Use direct pagination links' => '',
'Use double-click to edit pages' => '',
'use dynamic  content' => '',
'Use external link icons' => '',
'use filename' => '',
'use gallery' => '',
'Use group homepages' => '',
'Use gzipped output' => '',
'Use HTML' => '',
'Use HTML mail' => '',
'Use image' => '',
'Use image generated by URL (the image will be requested at the URL for each impression)' => '',
'use in cms' => '',
'use in events' => '',
'use in HTML pages' => '',
'use in newsletters' => '',
'use in wiki' => '',
'use menu' => '',
'Use normal editor' => '',
'Use own image' => '',
'Use page description' => '',
'use phplayermenu' => '',
'use poll' => '',
'Use pre-existing page' => '',
'Use preg_replace or str_replace to filter text' => '',
'Use proxy' => '',
'Use rating' => '',
'use rss module' => '',
'Use single spaces to indent structure levels' => '',
'use square brackets for an' => '',
'use square brackets for an external link: [URL] or [URL|link_description] or [URL|description|nocache]  (that last form prevents the local Wiki from caching the page; please use that form for large pages!).' => '',
'Use Tabs' => '',
'Use templates' => '',
'Use text' => '',
'Use the subject to indicate the operation to apply:' => '',
'Use this section to set the language of the version you are currently working on.' => '',
'Use this thread to discuss the %s page.' => '',
'Use this tree to copy the structure' => '',
'Use titles in blog posts' => '',
'Use topic smileys' => '',
'Use tracker for more group information' => '',
'Use tracker for more user information' => '',
'Use URI as Home Page' => '',
'Use WebServer authentication for Tiki' => '',
'Use wiki page name or full URL' => '',
'Use Wiki paragraph formatting' => '',
'Use WikiWords' => '',
'Use wysiwyg editor' => '',
'Use [URL|description] or [URL] for links' => '',
'Use [[foo] to show [foo].' => '',
'Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones' => '',
'user' => '',
'User $a_user can not receive messages' => '',
'User %s already exists' => '',
'User accounts' => '',
'User Activities' => '',
'User already exists' => '',
'User answers' => '',
'User Assigned Modules' => '',
'User Assigned Modules tpl' => '',
'User avatar' => '',
'User Blogs' => '',
'User Bookmarks' => '',
'User Bookmarks tpl' => '',
'User Calendar' => '',
'User Calendar Doc' => '',
'User Calendar Doc tpl' => '',
'User Calendar Preferences Doc tpl' => '',
'User doesnt exist' => '',
'User Features' => '',
'User files' => '',
'User Galleries' => '',
'User identity features' => '',
'User Information' => '',
'User information - Click for more info' => '',
'User information display' => '',
'User informations' => '',
'user instances' => '',
'User is duplicated' => '',
'user level' => '',
'User list' => '',
'User login is required' => '',
'User Map Generated in:' => '',
'User Menu' => '',
'User Messages' => '',
'User Modules' => '',
'User Notepad' => '',
'user offline' => '',
'user online' => '',
'User Pages' => '',
'User preferences' => '',
'User Preferences Screen' => '',
'User prefs' => '',
'user processes' => '',
'User registration and login' => '',
'user selector' => '',
'User Selector: use options for automatic field feeding : you can use 1 for author login or 2 for modificator login.' => '',
'User Stats' => '',
'User Tasks' => '',
'User Tasks tpl' => '',
'User tracker item : {$usersitemid}' => '',
'User Watches' => '',
'User Watches tpl' => '',
'User\'s Page' => '',
'User/IP' => '',
'User:' => '',
'username' => '',
'Username cannot contain whitespace' => '',
'Username is too long' => '',
'Username regex matching' => '',
'UserPage prefix' => '',
'UserPreferences tpl' => '',
'users' => '',
'Users &amp; groups' => '',
'Users and admins' => '',
'Users can Configure Modules' => '',
'Users can lock pages (if perm)' => '',
'Users can register' => '',
'Users can subscribe any email address' => '',
'Users can subscribe/unsubscribe to this list' => '',
'Users can suggest new items' => '',
'Users can suggest questions' => '',
'Users can vote again after' => '',
'Users can vote for only one item from this chart per period' => '',
'Users can vote only one item from this chart per period' => '',
'Users choose project categories' => '',
'Users have searched' => '',
'Users have visited' => '',
'Users HomePage' => '',
'users in group' => '',
'Users in this channel' => '',
'Users Information Tracker' => '',
'Users see and add events in their timezone' => '',
'User_versions_for' => '',
'Uses Slideshow' => '',
'UsrMenu' => '',
'UTC' => '',
'UTF-8 Errors fixed' => '',
'v' => '',
'v=view' => '',
'val' => '',
'valid' => '',
'valid process' => '',
'valid sites' => '',
'validate' => '',
'Validate email address (may not work)' => '',
'Validate email addresses' => '',
'Validate links' => '',
'Validate Sites' => '',
'Validate URLs' => '',
'Validate users by email' => '',
'Value' => '',
'Vanuatu' => '',
'Venezuela' => '',
'Ver' => '',
'ver:' => '',
'Vers' => '',
'version' => '',
'Version 1.0' => '',
'Version 2.0' => '',
'Version:' => '',
'Versions' => '',
'Versions are identical' => '',
'Very High' => '',
'very low' => '',
'view' => '',
'View a FAQ' => '',
'View a forum' => '',
'View a thread' => '',
'View All' => '',
'View articles' => '',
'view blog' => '',
'view comments' => '',
'View Details' => '',
'View extra information' => '',
'view faq' => '',
'view faq tpl' => '',
'view info' => '',
'View inserted item' => '',
'View item' => '',
'View or vote items not listed in the chart' => '',
'View page' => '',
'view repository' => '',
'View Results' => '',
'View source code after rules applied' => '',
'View submissions' => '',
'View Task' => '',
'View template' => '',
'View the article at:' => '',
'View the blog at:' => '',
'View the Map Only' => '',
'View the tracker item at:' => '',
'view this repository' => '',
'View this tracker items' => '',
'View tpl' => '',
'view webhelp' => '',
'view/hide copy rules dialog' => '',
'viewed' => '',
'Viewing blog post' => '',
'Visibility' => '',
'Visible' => '',
'visit the site for more games and fun' => '',
'Visited links' => '',
'Visits' => '',
'Visits (desc)' => '',
'Visits to file galleries' => '',
'Visits to forums' => '',
'Visits to image galleries' => '',
'Visits to weblogs' => '',
'Visits to wiki pages' => '',
'Vote' => '',
'Vote items' => '',
'Vote poll' => '',
'Vote this item' => '',
'votes' => '',
'Voting system' => '',
'waiting' => '',
'waiting / not started' => '',
'waiting for me' => '',
'waiting for other user' => '',
'Waiting requests' => '',
'Waiting Submissions' => '',
'Wales' => '',
'Warn on edit' => '',
'Warn on edit conflict' => '',
'Warning' => '',
'Warning!' => '',
'Warning: If you try to convert large tables, raise the maximum execution time in your php.ini!' => '',
'Warning: Make a backup of your Database before using this function!' => '',
'was moved into trash' => '',
'Watches' => '',
'Watchlist' => '',
'We have' => '',
'Web Server' => '',
'Weblogs' => '',
'Webmail' => '',
'WebMail accounts' => '',
'Webmail Doc' => '',
'Webmail Doc template' => '',
'Webmail Doc tpl' => '',
'Webmaster' => '',
'Wed' => '',
'Wednesday' => '',
'week' => '',
'Weekdays' => '',
'Weekly' => '',
'Weeks' => '',
'Welcome at Hawiki' => '',
'Welcome to ' => '',
'Welcome to %s at %s' => '',
'Welcome to our event!' => '',
'Welcome to our newsletter!' => '',
'Welcome to the Tiki Chat Rooms' => '',
'WfMenu' => '',
'What field is used for default sort?' => '',
'What is default sort order in list?' => '',
'Whats related' => '',
'Wiki' => '',
'Wiki 3D browser configuration' => '',
'Wiki attachments' => '',
'Wiki comments settings' => '',
'wiki create' => '',
'Wiki Discussion' => '',
'Wiki Features' => '',
'wiki help' => '',
'Wiki History' => '',
'Wiki Home' => '',
'Wiki Home Page' => '',
'Wiki Import dump' => '',
'Wiki last files' => '',
'Wiki last images' => '',
'Wiki last pages' => '',
'wiki link' => '',
'Wiki Link Format' => '',
'wiki link\'' => '',
'wiki overwrite' => '',
'Wiki page' => '',
'Wiki page %s changed' => '',
'Wiki Page for Comments' => '',
'Wiki Page for Help' => '',
'Wiki page list configuration' => '',
'Wiki Page Names' => '',
'Wiki Pages' => '',
'wiki pages changed' => '',
'Wiki quick help' => '',
'Wiki References' => '',
'Wiki RSS' => '',
'Wiki settings' => '',
'Wiki Stats' => '',
'Wiki top articles' => '',
'Wiki top authors' => '',
'Wiki top file galleries' => '',
'Wiki top files' => '',
'Wiki top galleries' => '',
'Wiki top images' => '',
'Wiki top pages' => '',
'Wiki Watch' => '',
'wiki-append' => '',
'wiki-get' => '',
'wiki-put' => '',
'WikiDiff Okay: LCS = %s' => '',
'WikiDiff::apply: line count mismatch: %s != %s' => '',
'WikiDiff::_check: edit sequence is non-optimal' => '',
'WikiDiff::_check: failed' => '',
'WikiMenu' => '',
'wiki_page_changed' => '',
'Wiki_Tiki_Title' => '',
'Will be replaced by the actual value of the dynamic content block with id=n' => '',
'Will display the text centered' => '',
'Will display using the indicated HTML color' => '',
'Windows' => '',
'wink' => '',
'with checked' => '',
'with role' => '',
'with roles' => '',
'with values' => '',
'Word' => '',
'Workflow' => '',
'Workflow engine' => '',
'Workitem information' => '',
'Workitems' => '',
'Worst day' => '',
'Write a note' => '',
'Write note' => '',
'Wrong passcode you need to know the passcode to register in this site' => '',
'Wrong password. Cannot post comment' => '',
'Wrong registration code' => '',
'x' => '',
'XMLRPC API' => '',
'XY-Size' => '',
'Year' => '',
'Year:' => '',
'Years' => '',
'yes' => '',
'You are about to remove the page' => '',
'You are banned from' => '',
'You are editing block:' => '',
'You are not logged in' => '',
'You are not logged in and no user indicated' => '',
'You are not permitted to edit someone else\'s post!' => '',
'You are not permitted to edit someone else\'s post!' => '',
'You are not permitted to remove someone else\'s post!' => '',
'You are not permitted to remove someone else\'s post!' => '',
'You can access the file gallery using the following URL' => '',
'You can access the gallery using the following URL' => '',
'You can access the sheet using the following URL' => '',
'You can always cancel your subscription using:' => '',
'You can browse the generated WebHelp here' => '',
'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 download this file using' => '',
'You can edit the map following this link:' => '',
'You can edit the page by following this link:
    {$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|escape:"url"}' => '',
'You can edit the page following this link:' => '',
'You can edit the submission following this link:' => '',
'You can include the file in an HTML/Tiki page using' => '',
'You can include the image in a tiki page using one of these lines' => '',
'You can include the image in an HTML or Tiki page using' => '',
'You can include the image in an HTML page using one of these lines' => '',
'You can include the image in an HTML/Tiki page using' => '',
'You can include the image in an Wiki page using' => '',
'You can not download files' => '',
'You can not use the same password again' => '',
'You can only view this task' => '',
'You can remove this module in' => '',
'you can see users rank by score in the module users_rank, for that go to' => '',
'You can unsubscribe from this event following this link' => '',
'You can unsubscribe from this newsletter following this link' => '',
'You can view a diff back to the previous version by following
this link:
    {$mail_machine}/tiki-pagehistory.php?page={$mail_page}&diff2={$mail_last_version}' => '',
'You can view a diff back to the previous version by following this link:' => '',
'You can view a diff back to the previous version by followingnthis link:n    {$mail_machine}/tiki-pagehistory.php?page={$mail_page|escape:"url"}&diff2={$mail_last_version}' => '',
'You can view the page by following this link:
    {$mail_machine}/tiki-index.php?page={$mail_page}' => '',
'You can view the page by following this link:' => '',
'You can view the page by following this link:n    {$mail_machine}/tiki-index.php?page={$mail_page|escape:"url"}' => '',
'You can view the updated map following this link:' => '',
'You can view this image in your browser using' => '',
'You can view this map in your browser using' => '',
'You can\'t post in any blog maybe you have to create a blog first' => '',
'You cannot add sites until Directory Categories are setup.' => '',
'You cannot admin blogs' => '',
'You cannot edit this page because it is a user personal page' => '',
'You cannot take this quiz twice' => '',
'You cannot take this survey twice' => '',
'You cant execute this activity' => '',
'You couldn\'t abort a instance' => '',
'You couldn\'t exception a instance' => '',
'You do not have permission to delete the mapfile' => '',
'You do not have permission to do that' => '',
'You do not have permission to edit messages' => '',
'You do not have permission to edit this banner' => '',
'You do not have permission to read the mapfile' => '',
'You do not have permission to read the template' => '',
'You do not have permission to use this feature' => '',
'You do not have permission to use this feature.' => '',
'You do not have permission to view other users data' => '',
'You do not have permission to write the mapfile' => '',
'You do not have permission to write the style sheet' => '',
'You do not have permission to write the template' => '',
'You do not have permission to write to the mapfile' => '',
'You do not have permissions to create a directory' => '',
'You do not have permissions to create an index file' => '',
'You do not have permissions to delete a directory' => '',
'You do not have permissions to delete a file' => '',
'You do not have permissions to edit banners' => '',
'You do not have permissions to view the layers' => '',
'You do not have permissions to view the maps' => '',
'You don\'t get any emails, we don\'t sell the data about your site.' => '',
'You don\'t have permission to edit quizzes.' => '',
'You don\'t have permission to use this feature' => '',
'You don\'t have permission to use this feature.' => '',
'You dont have permission to do that' => '',
'You dont have permission to use this feature' => '',
'You have' => '',
'You have 0 new messages' => '',
'you have requested to download the layer:' => '',
'You have to create a gallery first!' => '',
'You have to create a topic first' => '',
'You have to enable cookies to be able to login to this site' => '',
'You have to enter a title and text' => '',
'You have to indicate a group' => '',
'You have to provide a hotword and a URL' => '',
'You have to provide a name to the image' => '',
'You have to provide a word' => '',
'You have to type a searchword' => '',
'You have {$unread} unread private messages' => '',
'You must be a student to edit homework pages.' => '',
'You must be a student to view homework assignments.' => '',
'You must be a student to view this page!' => '',
'You must be a student to view this page.' => '',
'You must be a teacher or grader to access this page.' => '',
'You must be logged in to subscribe to events' => '',
'You must be logged in to subscribe to newsletters' => '',
'You must be logged in to use this feature' => '',
'You must log in to use this feature' => '',
'You must provide a longname' => '',
'You must provide a project description' => '',
'You must provide a project name' => '',
'You must select a file for upload.' => '',
'You must specify a page name, it will be created if it doesn\'t exist.' => '',
'You must specify the object language' => '',
'You must supply all the information, including title and year.' => '',
'You need to change chmod \'whelp\' manually to 777' => '',
'You need to run setup.sh :<br />./setup.sh $APACHEUSER all<br />Common Apache users are www-data, apache or nobody' => '',
'You need to supply information for : ' => '',
'you or someone registered this email address at' => '',
'You received a new task' => '',
'You reivied this task, please read and execute it' => '',
'You send this task to a other user' => '',
'You sent a request with the subject:' => '',
'You should ask an admin to create them.' => '',
'You should first ask that a calendar is created, so you can create events attached to it.' => '',
'You will receive an email with information to login for the first time into this site' => '',
'You will remove' => '',
'You\'re already friend of %s' => '',
'You\'re invited to join my network of friends!' => '',
'You\'ve to finish your work on' => '',
'You\'ve to start your work at least on' => '',
'Your account request have been stored and will be activated by the admin as soon as possible.' => '',
'Your admin password has been changed' => '',
'Your current avatar' => '',
'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 tracker' => '',
'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 tracker' => '',
'Your email address was removed from the list of subscriptors.' => '',
'Your email could not be validated; make sure you email is correct and click register below.' => '',
'Your email was sent' => '',
'Your file gallery storage is set to "{$fgal_use_dir}", you will need to backup this using FTP or SCP.' => '',
'Your friends' => '',
'Your image gallery storage is set to "{$gal_use_dir}", you will need to backup this using FTP or SCP.' => '',
'Your message has been queued for approval, the message will be posted after
a moderator approves it.' => '',
'Your message has been queued for approval, the message will be posted afterna moderator approves it.' => '',
'Your personal tracker information' => '',
'Your personal Wiki Page' => '',
'Your PHP installation does not have zlib enabled.' => '',
'Your project was successfully submitted.  It may be subjectnto approval. Once available, you can create/link your project objectsnto your project page.' => '',
'Your registration code:' => '',
'Your request is being processed' => '',
'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 Tiki account information for' => '',
'Your Tiki account information for %s' => '',
'Your Tiki information registration' => '',
'your Tikiwiki' => '',
'Yugoslavia' => '',
'Zambia' => '',
'Zimbabwe' => '',
'Zone' => '',
'Zoom in x2' => '',
'Zoom in x3' => '',
'Zoom in x4' => '',
'Zoom out x2' => '',
'Zoom out x3' => '',
'Zoom out x4' => '',
'n for rows' => '',
'__WARNING__: No such module $plugin! ' => '',
'{$atts_cnt} files attached' => '',
'{if $editFileId}Edit File: {$fileInfo.filename}{else}Upload File{/if}' => '',
'{literal}{CODE()}some code{CODE} {/literal} will render "some code" as program code. This plugin has other options; see <a href="{$helpurl}PluginCode">PluginCode</a>.' => '',
'{literal}{MODULE(module=>some_module)}text{MODULE}{/literal}  can be used to insert the output of module "some_module" into your Wiki page. See <a href="{$helpurl}PluginModule">PluginModule</a> for more information. ' => '',
'|| for rows' => '',
'~np~{~/np~ARTICLES(max=>3,topic=>topicName)}{ARTICLES} Insert articles into a wikipage' => '',
'~np~{~/np~RSS(id=>feedId,max=>3,date=>1,body=>1)}{RSS} Insert rss feed output into a wikipage' => '',
);
?>