summaryrefslogtreecommitdiff
path: root/lang/ar/language.php
blob: 82bd98ab551818fa5ca25df25ac87f52bb86496d (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
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
<?php // -*- coding:utf-8 -*-
// parameters:
// lang=xx    : only tranlates language 'xx',
//              if not given all languages are translated
// comments   : generate all comments (equal to close&module)
// close      : look for similar strings that are already translated and
//              generate a comment if a 'match' is made
// module     : generate comments that describe in which .php and/or .tpl
//              module(s) a certain string was found (useful for checking
//              translations in context)
// patch      : looks for the file 'language.patch' in the same directory
//              as the corresponding language.php and overrides any strings
//              in language.php - good if a user does not agree with
//              some translations or if only changes are sent to the maintainer
// spelling   : generates a file 'spellcheck_me.txt' that contains the
//              words used in the translation. It is then easy to check this
//              file for spelling errors (corrections must be done in
//              'language.php, however)
// groupwrite : Sets the generated files permissions to allow the generated
//              language.php also be group writable. This is good for
//              translators if they do not have root access to tiki but
//              are in the same group as the webserver. Please remember
//              to have write access removed when translation is finished
//              for security reasons. (Run script again without this
//              parameter)
// Examples:
// http://www.neonchart.com/get_strings.php?lang=sv
// Will translate langauage 'sv' and (almost) avoiding comment generation

// http://www.neonchart.com/get_strings.php?lang=sv&comments
// Will translate langauage 'sv' and generate all possible comments.
// This is the most usefull mode when working on a translation.

// http://www.neonchart.com/get_strings.php?lang=sv&nohelp&nosections
// These options will only provide the minimal amout of comments.
// Usefull mode when preparing a translation for distribution.

// http://www.neonchart.com/get_strings.php?nohelp&nosections
// Prepare all languages for release 


$lang=Array(
// ### Start of unused words
// ### Please remove manually!
// ### N.B. Legitimate strings may be marked// ### as unused!
// ### Please see http://tikiwiki.org/tiki-index.php?page=UnusedWords for further info
"All Fields must be non empty" => "يجب الا تترك حقول فارغة",
"You do not have permission to write the mapfile" => "ليس لديك صلاحية كتابة ملف التوجيه",
"pageviews" => "استعراضات الصفحة",
"Invalid password. You current password is required to change your email address." => "كلمة السر خاطئة. كلمة سرك الحالية ضرورية لتغيير عنوان بريدك الإلكتروني.",
"Twi" => "صيني تايواني",
"note: those parameters are exclusive" => "ملاحظة: هذه المعاملات خاصة",
"Split a page into columns" => "تقيسم صفحة إلى أعمدة",
"column" => "عمود",
"Automatically creates a link to the appropriate SourceForge? object" => "يخلق آلياً رابط لكائن SourceForge? المناسب",
"Reply to parent comment" => "إجابة عن التعليق السابق",
"compose message tpl" => "حرر قالب لرسالة",
"messages tpl" => "قوالب الرسائل",
"Fields to display:" => "حقول للعرض",
"View articles" => "تصفح المقالات",
"admin HtmlPages" => "صفحات ال HTML الخاصة بالمدير",
"Admin Dirertory Sites" => "دليل المدير للمواقع",
"change password" => "تغيير الرمز السري",
"HTLM preview" => "عرض كود ال HTML",
"You are not permitted to edit someone else\\'s post!" => "لا يسمح لك بتعديل المشاركات التي لم ترسل من قبلك",
"Only an admin can remove a thread." => "يحق لمدير النظام فقط حذف المشاركات",
"Name, path and start page are mandatory fields" => "إن كل من حقل الاسم, المسار و صفحة البداية هي حقول إجبارية",
"Unexistant link" => "الرابط غبر موجود",
"URL cannot be accessed wrong URL or site is offline and cannot be added to the directory" => "تعذر الوصول إلى هذا العنوان. إما العنوان خاطئ أو أن الموقع خارج الخدمة حالياً. لا يمكن إضافة هذا الموقع إلى الدليل",
"Mus enter a name to add a site" => "عليك أن تدخل اسماً لتضيف الموقع",
"Wiki page" => "صفحة ويكي",
"Unexistant gallery" => "مجموعة غير موجودة",
"A password reminder email has been sent " => "لقد تم إرسال رسالة البريد الالكتروني الخاص بالتذكير بكلمة المرور",
"A new password has been sent " => "لقد تم إرسال كلمة مرور جديدة.",
"Unexistant version" => "نسخة غير موجودة",
"Upload was not successful (maybe a duplicate file)" => "لم تتم عملية التحميل بنجاح (ربما اسم ملف مكرر) ",
"Unexistant user" => "مستخدم غير موجود",
"The user has choosen to make his information private" => "لقد اختار هذا المستخدم جعل معلوماته خاصة",
"New message arrived from " => "الرسالة الجديدة قادمة من ",
"Welcome to " => "أهلاً إلى",
"Bye bye from " => "وداعاً من ",
"categorize" => "صنف",
"Posted comments" => "التعليقات المضافه",
"reply to this" => "الاجابه عليه",
"Admin (click!)" => "مدير (اضغط!)",
// ### end of unused words

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

// ###
// ### start of possibly untranslated words
// ###

"Syntax" => "Syntax",
"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}",
"Compose message" => "Compose message",
"Flagged" => "Flagged",
// ###
// ### end of possibly untranslated words
// ###

"Cannot write to this file:" => "تعذرت عملية الكتابة على هذا الملف:",
"Cannot upload this file maximum upload size exceeded" => "لا يمكن تحميل هذا الملف لقد تم تجاوز الحد الأعلى لحجم التحميل",
"Re:" => "رد:",
"Missing title or body when trying to post a comment" => "لم يتم كتابة موضوع أو جسم التعليق قبل إرساله",
"The copyright management feature is not enabled." => "ميزة إدارة حقوق النسخ غير فعالة",
"You do not have permission to use this feature." => "ليست لديك الصلاحيات التي تخولك استخدام هذه الميزة",
"You must supply all the information, including title and year." => "عليك تعبئة كل المعلومات بمافيها العنوان و السنة",
"You do not have permission to use this feature" => "أنت لا تملك الصلاحيات التي تخولك استخدام هذه الميزة",
"Czech" => "تشيكي",
"Danish" => "دانمركي",
"German" => "ألماني",
"English" => "إنجليزي",
"Spanish" => "إسباني",
"Greek" => "يوناني",
"French" => "فرنسي",
"Italian" => "إيطالي",
"Japanese" => "ياباني",
"Dutch" => "ألماني",
"Norwegian" => "نرويجي",
"Polish" => "بولندي",
"Russian" => "روسي",
"Swedish" => "سويدي",
"Chinese" => "صيني",
"Activity" => "نشاط",
"Process %d has been activated" => "العملية %d أطلقت",
"Process %d has been deactivated" => "‎العملية %d أوقفت",
"Process %s %s imported" => "العملية %s %s جلبت",
"Process %s removed" => "العملية %s حذفت",
"Process %s has been updated" => "العملية %s تم تحديثها",
"Process %s has been created" => "العملية %s تم إنشائها",
"click to edit" => "اضغط لتغيير",
"uploaded by" => "حمل من قبل",
"new subscriptions" => "اشتراكات جديدة",
"Wiki Home" => "الصفحة الرئيسية للويكي",
"Home" => "الصفحة الرئيسية",
"Blogs" => "المدونات",
"Articles" => "المقالات",
"Read" => "مفتوحه",
"No image yet, sorry." => "لا يوجد اي صورة.",
"This feature is disabled" => "تم توقيف هذه الميزة عن العمل",
"NONE" => "لا احد",
"Most relevant pages" => "صفحات مرتبطة",
"Wiki last pages" => "آخر صفحات الويكي",
"Modified" => "معدّل",
"Forums last topics" => "آخر مواضيع اامنتدى",
"Topic date" => "تاريخ الموضوع",
"Forums most read topics" => "المواضيع الأكثر قراءة في المنتدى",
"Reads" => "قراءات",
"Forums best topics" => "أفضل مواضيع المنتدى",
"Forums most visited forums" => "المنتديات الأكثر زيارة",
"Wiki top images" => "صفوة الصور في الويكي",
"Wiki last images" => "آخر صور الويكي",
"Upload date" => "تاريخ التحميل",
"Wiki last files" => "آخر ملفات الويكي",
"Wiki top authors" => "صفوة الكتاب في الويكي",
"Pages" => "صفحلت",
"Top article authors" => "صفوة كتاب المقالات",
"Login" => "دخول",
"Image Gallery" => "مجموعة الصور",
"Image" => "صورة",
"Article" => "مقالة",
"Wiki" => "ويكي",
"Directory" => "الدليل",
"FAQ" => "س و ج",
"Forum" => "المنتدى",
"File" => "الملف",
"help" => "مساعدة",
"Priority" => "الاهمية",
"locked" => "مقفول",
"unlocked" => "غير مقفول",
"You are not logged in" => "أنت لم تقوم بتسجيل دخولك",
"Permission denied" => "أنت لا تملك الصلاحيات التي تخولك القيام بهذا العمل",
"no description" => "بدون شرح",
"picture not found" => "لم يعثر عن الصورة",
"drawing not found" => "لم يعثر عن الرسم",
"Click to edit dynamic variable" => "إضغط هنا لتحرير المتغيرات الديناميكية",
"Update variables" => "تعديل المتغيرات",
"Unknown language" => "لغة غير معروفة",
"Title" => "العنوان",
"Author" => "المؤلف",
"Include a page" => "قم بضم صفحة",
"comment" => "تعليق",
"username" => "اسم المستخدم",
"List all pages which link to specific pages" => "عرض كل الصفحات المرتبطة بصفحات معينة",
"Page cannot be found" => "تعذر العثور على الصفحة",
"text" => "نص",
"Display Tiki objects that have not been categorized" => "قم بعرض كائنات تيكي التي لم يتم تصنيفها بعد",
"Displays a snippet of code" => "يعرض قصاصة من الكود",
"code" => "رمز",
"Insert copyright notices" => "ادخل ملاحظات حقوق الطبع",
"Example" => "مثال",
"Creates a definition list" => "ينشأ قائمة تعريف",
"definition" => "تعريف",
"one definition per line" => "تعريف واحد لكل سطر",
"cells" => "خلايا",
"heads and cells separated by ~|~" => "الرءوس والخلايا مفصولة بعلامة ~|~",
"Displays a graphical GAUGE" => "اظهر المؤشر البياني",
"description" => "شرح",
"Please choose a module" => "الرجاء اختيار النموذج او الوحدة",
"No version indicated" => "لم يتم تحديد النسخة",
"data" => "المعلومات",
"one data per line" => "بيان واحد لكل سطر",
"Run a sql query" => "تنفيذ طلب sql",
"sql query" => "استعلام sql",
"Search the titles of all pages in this wiki" => "البحث عن عناوين كل الصفحات في هذا الويكي",
"No pages found for title search" => "لم يعثر على أي صفحة توافق العنوان",
"One page found for title search" => "تم العثور على صفحة واحدة تناسب العنوان",
" pages found for title search" => " صفحة/صفحات تناسب العنوان",
"ERROR: Either the subject or body must be non-empty" => "رسالة خطأ: لا يمكن ترك كل من العنوان و جسم الموضوع فارغين",
"ERROR: No valid users to send the message" => "رسالة خطأ: لا يتواجد مستخدمين لترسل هذه الرسالة",
"Invalid user" => "اسم المستخدم غير صحيح",
"Message will be sent to: " => "سوف يتم ارسال الرسالة إلى:",
"No more messages" => "لا يوجد المزيد من الرسائل",
"edit" => "تحرير",
"no such file" => "لا يوجد مثل هذا الملف",
"Error" => "خطأ",
"List of attached files" => "قائمه الملفات الملحقة",
"name" => "الاسم",
"uploaded" => "رفعت",
"size" => "الحجم",
"attach" => "ملحق",
"show categories" => "اظهر التصنيفات",
"hide categories" => "اخفي التصنيفات",
"categorize this object" => "صنف هذا الموضوع",
"No categories defined" => "لم يتم تحديد أي تصنيف",
"Admin categories" => "تصنيفات المسؤول",
"Vote" => "تصويت",
"Messages" => "الرسائل",
"All" => "كل",
"Sort" => "رتب",
"Newest first" => "الحديث أولا",
"Oldest first" => "القديم أولا",
"Top" => "اعلى",
"prev" => "السابق",
"Page" => "الصفحه",
"next" => "التالي",
"new reply" => "إضافة رد",
"Editing comment" => "تغيير التعليق",
"Post new comment" => "اضافه تعليق جديد",
"Preview" => "استعرض",
"preview" => "استعرض",
"post" => "اضافة",
"Smileys" => "الرسوم الضاحكه",
"Comment" => "تعليق",
"Posting comments" => "اضافة تعليقات",
"Use" => "استخدام",
"or" => "أو",
"Go back" => "الرجوع",
"Return to home page" => "الرجوع الى الصفحة الرئيسية",
"Copyrights" => "حقوق الطبع",
"Year" => "السنه",
"Authors" => "المؤلف",
"add" => "اضف",
"Total" => "المجموع",
"Subject" => "الموضوع",
"New user registration" => "تسجيل مستخدم جديد",
"You will receive an email with information to login for the first time into this site" => "سوف تصلك رسالة على البريد الالكتروني تحوي معلومات لدخولك لأول مرة على هذا الموقع ",
"Thank you for you registration. You may log in now." => "شكراً على تسجيلك , بمكنك الدخول الآن . ",
"Comments" => "تعليقات",
"Download" => "تنزيل",
"Download Layer" => "تنزيل الطبقة",
"you have requested to download the layer:" => "لقد طلبتم تنزيل الطبقة:",
"Mapfiles" => "ملفات التوجيه",
"Mapfile" => "ملف التوجيه",
"Available mapfiles" => "ملفات التوجيه الموجودة",
"Mapfile listing" => "عرض ملفات التوجيه",
"view" => "عرض",
"Message Broadcast" => "إذاعة رسالة",
"edit template" => "تحرير القالب",
"Group" => "المجموعة",
"All users" => "جميع المشاركين",
"Lowest" => "الاقل",
"Low" => "قليل",
"Normal" => "عادي",
"High" => "مهم",
"Very High" => "مهم جدا",
"send" => "ارسل",
"Compose Message" => "تحرير رسالة",
"To" => "الى",
"CC" => "نسخه",
"BCC" => "نسخة سريه",
"Unread" => "غير مفتوحه",
"Containing" => "تحتوي",
"remove" => "حذف",
"Chat" => "محادثة",
"Categories" => "التصنيفات",
"Shoutbox" => "صندوق المحادثة",
"Menu" => "قائمة",
"Contact us" => "اتصل بنا",
"Stats" => "الحالة",
"Games" => "ألعاب",
"Calendar" => "التقويم",
"Newsreader" => "قارىء الأخبار",
"Image Galleries" => "مجموعة الصور",
"Forums" => "المنتديات",
"File Galleries" => "مجموعة الملفات",
"FAQs" => "الأسئلة كثيرة الورود",
"Maps" => "خرائط",
"Quizzes" => "الأحجيات",
"Trackers" => "متعب الأثر",
"Ephemerides" => "التقويم الفلكي",
"Charts" => "الرسوم البيانية",
"Monday" => "الإثنين",
"Tuesday" => "الثلاثاء",
"Wednesday" => "الأربعاء",
"Thursday" => "الخميس",
"Friday" => "الجمعة",
"Saturday" => "السبت",
"Sunday" => "الأحد",
"Top topics" => "الموضوعات الأكثر شعبية",
"Last forum topics" => "آخر موضوعات المنتدى",
"Most read topics" => "الموضوعات الأكثر قراءةً",
"Most visited forums" => "المنتديات الأكثر زيارةً",
"Online users" => "المستخدمين المتواجدين",
"We have" => "لدينا",
"online users" => "مستخدمين متواجدين",
"logged as" => "مسجل باسم",
"Logout" => "خروج",
"user" => "مستخدم",
"pass" => "كلمة السر",
"login" => "تسجيل دخول",
"Remember me" => "تذكرني",
"register" => "تسجيل",
"I forgot my pass" => "نسيت كلمة السر",
"Register as a new user" => "تسجيل مستخدم جديد",
"Username" => "اسم المستخدم",
"Password" => "كلمة السر",
"Repeat password" => "اعادة كلمة السر",
"Email" => "البريد الالكتروني",
"Generate a password" => "توليد كلمة سر",
"Search" => "البحث",
"Top articles" => "أفضل المقالات",
"Top galleries" => "المجموعات الأكثر شعبيةً",
"Execution time" => "زمن التنفيذ",
"page" => "صفحة",
"rename" => "تغيير الاسم",
"unlock" => "إلغاء القفل",
"lock" => "قفل",
"history" => "تاريخ الصفحة",
"similar" => "صفحات مشابهة",
"undo" => "تراجع",
"export" => "تصدير",
"discuss" => "ناقش",
"add comment" => "أضف تعليق",
"attach file" => "ارفاق ملف",
"Newsletter" => "النشرة",
"Please" => "من فضلكم",
"log in" => "دخول",
"left/right" => "يسار/يمين",
"Article image" => "صورة المقالة",
"Featured Help" => "مساعدة مخصصة",
"Live Support" => "دعم مباشر",
"Help System" => "نظام المساعدة",
"Show Category Path" => "عرض مسار الفئة",
"Show Babelfish Translation URLs" => " Babelfish إظهار روابط الترجمة",
"HTML Pages" => "صفحات HTML",
"Contact Us" => "إتصل بنا",
"File Gallery" => "مجموعة الملفات",
"Use proxy" => "proxy استعمال",
"Proxy Host" => "Proxy اسم/عنوان",
"Create a group for each user <br />(with the same\nname as the user)" => "إنشاء مجموعة لكل مستخدم<br />(بنفس الاسم الخاص بالمستخدم)",
"day" => "يوم",
"SearchStats" => "إحصائيات البحث",
"View tpl" => "عرض القالب",
"Child categories" => "التصنيفات الفرعية",
"article" => "مقالة",
"forum" => "منتدى",
"admin content templates" => "محتوى قوالب المدير",
"Users can subscribe any email address" => "المشتركون يستطيعون التسجيل بأي عنوان بريد إلكتروني",
"Validate email addresses" => "تفعيل عنوان البريد الالكتروني",
"External Wiki" => "ويكي خارجية",
"Display last post titles" => "عرض عناوين آخر التدخلات",
"no display" => "بدون عرض",
"Copy" => "إقتباس",
"Replace" => "تعويض",
"Preview Results" => "عرض النتائج",
"Rules List" => "قائمة القوانين",
"EMail notifications" => "إخطارات البريد الإلكترونيّ",
"admin Email Notifications" => "تنبيه المديربالبريد الالكتروني ",
"Any wiki page is changed" => "أي تغيير على صفحان الويكي",
"show publish date" => "عرض تاريخ النشر",
"admin groups" => "مجموعات الإدارة",
"Add new group" => "إضافة مجموعة جديدة",
"admin users" => "مستخدمي الإدارة ",
"Never" => "أبدا",
"Edit Article" => "تغيير مقال",
"edit article tpl" => "تحرير قالب النص",
"Default Group" => "المجموعة الافتراضية",
"Trash" => "مهملات",
"Validate Sites" => "تفعيل المواقع",
"EditTemplates" => "تحرير القوالب",
"Map" => "خريطة",
"Survey" => "إستبيان",
"topics in this forum" => "العناوين في هذا المنتدى",
"No chart indicated" => "لم يتم الآشارة إلى الرسم البياني",
"Upload failed" => "فشلت عملية رفع الملفات إلى المخدم",
"Feature disabled" => "الميزة معطلة عن العمل",
"No page indicated" => "لم يتم الآشارة إلى صفحة ما",
"The passwords don't match" => "كلمات السر غير متوافقة",
"Password should be at least" => "كلمة السر يجب أن تكون على الأقل بطول",
"characters long" => "أحرف",
"Your admin password has been changed" => "كلمة السر الاشرافية تم تعديلها",
"Tag already exists" => "هذا الواصف مستجدم مسبقاً",
"Tag not found" => "تعذر التعرف على الواصف",
"Search is mandatory field" => "حقل البحث هو حقل إجباري",
"No menu indicated" => "لم يتم الآشارة إلى قائمة",
"No newsletter indicated" => "لم يتم الآشارة إلى نشرة",
"No poll indicated" => "لم يتم الآشارة إلى استطلاع الرأي",
"page not added (Exists)" => "لم يتم إضافة الصفحة (موجودة(",
"No survey indicated" => "لم يتم الآشارة إلى الاستبيان",
"No tracker indicated" => "لم يتم الآشارة إلى متقص الأثر",
"Group already exists" => "هذه المجموعة موجودة سلفاً",
"The file is not a CSV file or has not a correct syntax" => "هذا الملف ليس ملف CSV صحيح أو أن صيغته غير صحيحة",
"No records were found. Check the file please!" => "لم يتم العثور على أي سجل. تحقق من الملف من فضلك",
"User login is required" => " تسجيل الدخول للمستخدم ضروري لإتمام العملية",
"Password is required" => "كلمة السر ضرورية لإتمام العملية",
"Email is required" => "البريد الإلكتروني ضروري لإتمام العملية",
"User already exists" => "أسم المستخدم الذي اخترته موجود مسبقاً",
"The passwords dont match" => "كلمتا السر غير متطابقتين",
"Password must contain both letters and numbers" => "يجب أن تحتوي كلمة السر على كل من الأحرف و الأرقام",
"Permission denied you cannot view this section" => "أنت لا تملك الصلاحيات التي تخولك مشاهدة هذا القسم",
"Unknown group" => "المجموعة غير معروفة",
"Group doesnt exist" => "المجموعة غير موجودة",
"Unknown user" => "اسم المستخدم غير معروف",
"User doesnt exist" => "اسم المستخدم غير موجود",
"Permission denied you cannot view backlinks for this page" => "أنت لا تملك الصلاحيات التي تخولك استعراض روابط الرجوع في هذه الصفحة",
"The page cannot be found" => "تعذر العثور على الصفحة",
"Permission denied you cannot post" => "أنت لا تملك الصلاحيات التي تخولك من إرسال مشاركة",
"Permission denied you cannot edit this post" => "أنت لا تملك الصلاحيات التي تخولك تعديل هذه المشاركة",
"Last posts" => "آخر المشاركات",
"No blogId specified" => "لم يتم تحديد blogId",
"TOP" => "إلى الأعلى",
"Permission denied you cannot access this gallery" => "أنت لا تملك الصلاحيات التي تخولك الوصول إلى مجموعة الصور",
"No gallery indicated" => "لم يتم تحديد مجموعة الصور",
"Permission denied you cannot view this page" => "أنت لا تملك الصلاحيات التي تخولك من مشاهدة هذه الصفحة",
"Permission denied you can not view this section" => "أنت لا تملك الصلاحيات التي تخولك من مشاهدة هذا القسم",
"Permission denied you cannot remove images from this gallery" => "أنت لا تملك الصلاحيات التي تخولك حذف صور من مجموعة الصور هذه",
"Permission denied you cannot rebuild thumbnails in this gallery" => "أنت لا تملك الصلاحيات التي تخولك إعادة بناء الفهرس المختصر لمجموعة الصور هذه",
"Permission denied you cannot rotate images in this gallery" => "أنت لا تملك الصلاحيات التي تخولك تدوير صور هذه المجموعة",
"No image indicated" => "لم يتم الإشارة إلى الصورة",
"Permission denied you cannot move images from this gallery" => "أنت لا تملك الصلاحيات التي تخولك نقل صور من هذه المجموعة",
"Permission denied you cannot view the calendar" => "أنت لا تملك الصلاحيات التي تخولك مشاهدة التقويم",
"event without name" => "أحداث غير محددة",
"The passwords didn't match" => "لم تتطابق كلمتا السر",
"You can not use the same password again" => "لا يمكنك استخدام كلمة السر ذاتها مجدداً",
"Invalid old password" => "كلمة السر القديمة غير صحيحة",
"Permission denied to use this feature" => "أنت لا تملك الصلاحيات التي تخولك من استخدام هذه الميزة",
"No channel indicated" => "لم يتم الإشارة إلى قناة",
"No nickname indicated" => "لم يتم الإشارة إلى اللقب",
"Top authors" => "أفضل الكتاب",
"Message sent to" => "تم إرسال الرسالة إلى",
"This feature has been disabled" => "لقد تم تعطيل هذه الميزة عن العمل",
"Must enter a name to add a site" => "عليك أن تدخل اسماً لتضيف الموقع",
"Must enter a url to add a site" => "عليك أن تدخل عنواناً لتضيف الموقع",
"URL already added to the directory. Duplicate site?" => "العنوان موجود سلفاً في الدليل. هل تريد إضافته مرة أخرى؟",
"Must select a category" => "عليك أن تختار تصنيفاُ",
"No site indicated" => "لم يتم الإشارة إلى الموقع",
"You can not download files" => "عذراً. لا يمكنك تحميل ملفات",
"Permission denied you cannot edit this article" => "أنت لا تملك الصلاحيات التي تخولك من تحرير هذه المقالة",
"You do not have permissions to edit banners" => "أنت لا تملك الصلاحيات التي تخولك من تعديل الإعلانات الرأسية",
"Banner not found" => "تعذر العثور على الإعلان",
"You do not have permission to edit this banner" => "أنت لا تملك الصلاحيات التي تخولك من تعديل هذا الإعلان",
"Invalid request to edit an image" => "طلب تعديل الصورة غير صحيح",
"Permission denied you cannot edit images" => "أنت لا تملك الصلاحيات التي تخولك منتعديل الصور",
"Permission denied you can edit images but not in this gallery" => "أنت تملك صلاحيات تعديل الصور و لكن ليس في هذه المجموعة",
"Failed to edit the image" => "فشلت عملية تعديل الصورة",
"Shortname must be 2 Characters" => "الاسم المختصر يجب أن يتكون من حرفين",
"You must provide a longname" => "عليك أن تملئ حقل الاسم الكامل",
"Language created" => "تم إنشاء اللغة",
"No question indicated" => "لم يتم الإشارة إلى سؤال",
"No quiz indicated" => "لم يتم الإشارة إلى أحجية",
"No structure indicated" => "لم يتم الإشارة إلى بنية",
"You have to create a topic first" => "عليك أن تنشئ الموضوع أولاً",
"You do not have permission to do that" => "أنت لا تملك الصلاحيات التي تخولك من عمل ذلك",
"You do not have permission to write the template" => "أنت لا تملك الصلاحيات التي تخولك من كتابة قالب",
"You do not have permission to read the template" => "أنت لا تملك الصلاحيات التي تخولك من قراءة قالب",
"No topic id specified" => "لم يتم تحديد معرف للموضوع",
"Invalid topic id specified" => "المعرف الذي تم تحديده للموضوع غير صالح",
"Article not found" => "لم يتم العثور على المقالة",
"Permission denied you cannot edit this page" => "أنت لا تملك الصلاحيات التي تخولك من تعديل هذه الصفحة",
"page imported" => "تم استيراد الصفحة",
"You cannot edit this page because it is a user personal page" => "لا يمكنك تعديل هذه الصفحة لأنها من صفحات المستخدمين الخاصة",
"Cannot edit page because it is locked" => "لا يمكنك تعديل هذه الصفحة لأنها مقفلة",
"Permission denied you cannot create galleries and so you cant edit them" => "أنت لا تملك الصلاحيات التي تخولك من إنشاء مجموعات صور و بالتالي لا يمكنك تعديلها",
"Permission denied you cannot edit this gallery" => "أنت لا تملك الصلاحيات التي تخولك من يعديل مجموعة الصور هذه",
"Permission denied you cannot remove this gallery" => "أنت لا تملك الصلاحيات التي تخولك من حذف مجموعة الصور هذه",
"Top visited file galleries" => "مجموعات الملفات الأكثر زيارة",
"Most downloaded files" => "الملفات الأكثر تحميلاً",
"Last files" => "آخر الملفات",
"No galleryId specified" => "لم يتم تحديد اسم المعرض",
"No forum indicated" => "لم يتم الإشارة إلى منتدى",
"Forum posts" => "مشاركات المنتدى",
"No forumId specified" => "لم يتم تحديد اسم المنتدى",
"Invalid username" => "اسم مستخدم خاطئ ",
"No process indicated" => "لم يتم الإشارة إلى عملية",
"Activity name already exists" => "اسم الفعالية موجود سلفاً",
"No activity indicated" => "لم يتم الإشارة إلى فعالية",
"The process name already exists" => "اسم العملية موجود مسبقاً",
"Process already exists" => "العملية موجودة مسبقاً",
"You cant execute this activity" => "لا يمكنك تنفيذ هذه الفعالية",
"No user indicated" => "لم يتم تحديد المستخدم",
"No item indicated" => "لم يتم الإشارة إلى عنصر",
"Top images" => "الصور الأكثر شعبيةً",
"Last images" => "آخر الصور",
"overwriting old page" => "إعادة كتابة محتويات صفحة قديمة",
"page created" => "تم إنشاء الصفحة",
"Permission denied you cannot view pages like this page" => "أنت لا تملك الصلاحيات التي تخولك من عرض صفحات مثل هذه الصفحة",
"Permission denied you cannot remove articles" => "أنت لا تملك الصلاحيات التي تخولك من حذف مقالات",
"Permission denied you cannot remove banners" => "أنت لا تملك الصلاحيات التي تخولك من حذف إعلانات",
"Permission denied you cannot remove files from this gallery" => "أنت لا تملك الصلاحيات التي تخولك من حذف ملفات من هذه المجموعة",
"Permission denied you can't upload files so you can't edit them" => "أنت لا تملك الصلاحيات التي تخولك من رفع الملفات إلى الموقع و بالتالي لا يمكنك تعديلها",
"Permission denied you cannot edit this file" => "أنت لا تملك الصلاحيات التي تخولك من تعديل هذا الملف",
"Permission denied you cannot view pages" => "أنت لا تملك الصلاحيات التي تخولك من استعراض صفحات",
"Permission denied you cannot remove pages" => "أنت لا تملك الصلاحيات التي تخولك من حذف صفحات",
"Invalid username or password" => "اسم مستخدم أو كلمة مرور خاطئة",
"You do not have permissions to view the maps" => "لا توجد لديك صلاحية رؤية ملفات التوجيه",
"mapfile name incorrect" => "اسم ملف التوجيه خاطئ",
"This mapfile already exists" => "ملف التوجيه هذا موجود أصلا",
"You do not have permission to delete the mapfile" => "ليس لديك صلاحية حذف ملف التوجيه",
"You do not have permission to read the mapfile" => "ليس لديك صلاحية قراءة ملف التوجيه",
"You do not have permissions to view the layers" => "ليس لديك صلاحية عرض الطبقات",
"Could not upload the file" => "رفع الملف غير ممكن",
"You do not have permissions to delete a file" => "ليس لديك صلاحية حذف ملف",
"File not found" => "تعذر العثور على الملف",
"You do not have permissions to create a directory" => "ليس لديك صلاحية تكوين مجلد جديد",
"The Directory is not empty" => "المجلد غير فارغ",
"You do not have permissions to delete a directory" => "ليس لديك صلاحية حذف مجلد",
"Must be logged to use this feature" => "يجب أن تكون مسجلاً للدخول لاستخدام هذه الميزة",
"Welcome at Hawiki" => "مرحبا بك في Hawiki",
"You must log in to use this feature" => "يجب أن تكون مسجلاً للدخول لاستخدام هذه الميزة",
"You do not have permission to view other users data" => "لا تملك الصلاحيات التي تخولك عرض بيانات المستخدمبن الآخرين",
"You must be logged in to subscribe to newsletters" => "يجب أن تكون مسجلاً للدخول لتتمكن من الاشتراك برسائل الأخبار",
"No server indicated" => "لم يتم تحديد المخدم",
"Cannot connect to" => "لا يمكن الاتصال ب",
"Missing information to read news (server,port,username,password,group) required" => "المعلومات اللازمة لقرائة الأخبار ناقصة (المخدم , المنفذ , اسم المستخدم , كلمة المرور , المجموعة ) مطلوبة ",
"File is too big" => "الملف كبير جداً",
"No name indicated for wiki page" => "لم يتم تحيد اسم صفحة الويكي",
"Page already exists" => "الصفحة موجودة مسبقاً",
"Permission denied you cannot assign permissions for this page" => "لا تخولك صلاحياتك من تعديل صلاحيات هذه الصفحة ",
"Not enough information to display this page" => "معلومات غير كافية لعرض هذه الصفحة",
"Permission denied you cannot browse this page history" => "لا تخولك صلاحياتك من استعراض تاريخ هذه الصفحة",
"No article indicated" => "لم يتم تحديد المقالة",
"Article is not published yet" => "المقالة لم تنشرحتى الآن",
"No pages indicated" => "لم يتم تحديد الصفحات",
"No result indicated" => "لم يتم تحديد النتيجة",
"Wrong registration code" => "رمز تسجيل خاطئ",
"Username is too long" => "اسم المستخدم طويل جداً",
"Username cannot contain whitespace" => "لا يمكن أن يحوي اسم المستخدم فراغات",
"Wrong passcode you need to know the passcode to register in this site" => "رمز مرور خاطئ يجب أن تعرف رمز المرور لتتمكن من التسجيل في هذا الموقع",
"Invalid email address. You must enter a valid email address" => "عنوان بريد الكتروني خاطئ, عليك ادخال عنوان بريد الكتروني صحيح",
"Invalid or unknown username" => "اسم مستخدم خاطئ أو غير معروف",
"Cannot rename page maybe new page already exists" => "لا يمكن إعادة تسمية الصفحة قد يكون الاسم موجود مسبقاً",
" successfully sent" => " تمت عملية الإرسال بنجاح",
" not sent" => " لم يتم الارسال",
"You do not have permission to edit messages" => "لا تملك الصلاحيات التي تخولك تعديل الرسائل ",
"You cannot take this quiz twice" => "لا يمكنك اخذ هذا الاختبار مرتين",
"Upload was not successful" => "لم تتم عملية التحميل بنجاح",
"Cannot read file" => "لا يمكن قراءة الماف",
"Permission denied you cannot upload files" => "تم رفض سماحية الوصول لا يمكنك تحميل ملفات",
"Permission denied you cannot upload images" => "تم رفض سماحية الوصول لا يمكنك تحميل صور",
"cannot process upload" => "لا يمكن معلجة تحميل",
"You have to provide a name to the image" => "عليك أن تحدد اسماً للصورة",
"You are not logged in and no user indicated" => "لم تقم بتسجيل الدخول و لم يتم تحديد المستخدم",
"You are not permitted to remove someone else\\'s post!" => "لا تمتلك الصلاحية لحذف إرسال أو إرسالات شخص آخر !",
"Cancel monitoring" => "الغاء المراقبة",
"Monitor" => "المراقب",
"No subject" => "بدون موضوع",
"Your email was sent" => "قد ارسلت رسالتك",
"Top pages" => "اعلى الصفحات",
"Last pages" => "اخر الصفحات",
"###end###"=>"###end###");
?>