summaryrefslogtreecommitdiff
path: root/lang/cn/language.php
blob: 40ccbbf3208a49722f829881a60f997c705f0143 (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
<?php
/*
*******************************************************
* Project : Tikiwiki v1.6.1 -Tau Ceti-                *
* Version : (This file) 1.5                           *
*******************************************************
* Translator : Wells Wang                             *
* Email      : webmaster@webtechina.com               *
* Homepage   : www.webtechina.com  www.osall.com      *
* Date       : 2002-06-23  (Version 1.0)              *
*              2002-06-24  (Version 1.1)              *
*              2002-06-25  (Version 1.2)              *
*              2002-06-26  (Version 1.3)              *
*              2002-06-27  (Version 1.4)              *
*              2002-06-28  (Version 1.5)              *
*******************************************************
* Simplification Chinese Language Pack for Tikiwiki   *
* Version 1.6.1 .                                     *
* You can visit the DEMO site :                       *
*      http://www.osall.com/tiki                      *
*******************************************************
*/
$lang=Array(
"User_versions_for" => "User_versions_for",
"Version" => "版本",
"Date" => "日期",
"Page" => "页",
"Ip" => "IP",
"Comment" => "评论",
"Action" => "�作",
"view" => "查看",
"No records found" => "没有找到记录",
"Administration" => "系统管�",
"Links/Commands" => "链接/命令",//perhaps not used
"Preferences" => "使用å??好",
"Wiki Features" => "Wiki 功能",
"Admin users" => "管�者",
"Generate dump" => "生� dump",
"Download last dump" => "下载最新的 dump",
"Create a tag for the current wiki" => "为当�的wiki创建一个tag",
"create tag" => "创建tag",//perhaps not used
"Restore the wiki" => "��这个wiki",
"restore" => "��",
"Tag Name" => "Tag å??ç§°",
"remove" => "删除",
"Anonymous users can edit pages" => "匿å??æµ?览者å?¯ä»¥ç¼–辑页é?¢",//perhaps not used
"Users can register" => "�览者�以注册",
"Open external links in new window" => "在新窗�中打开外部链接",
"Maximum number of versions for history" => "历�记录中的版本的最大数目",
"Maximum number of records in listings" => "列表中的版本最大数目",
"Wiki_Tiki_Title" => "Wiki_Tiki_标题",
"Change preferences" => "修改å??好设定",
"Last changes" => "最近的修改",
"Dump" => "Dump",
"Ranking" => "排å??",
"History" => "历�",
"List pages" => "列出页�",
"Backlinks" => "Backlinks",
"Like pages" => "相似页�",
"Search" => "�索",
"Image Galleries" => "图�陈列",
"User versions" => "用户版本",//perhaps not used
"Set features" => "特性设定",
"Change admin password" => "改�系统管�员密�",
"Again" => "�次输入",
"change" => "修改",
"name" => "å??ç§°",
"desc" => "æ??è¿°",
"action" => "�作",
"assign" => "指定",
"prev" => "上一个",
"next" => "下一个",
"backlinks to" => "backlinks to",
"No backlinks to this page" => "此页�没有backlinks",
"Edit" => "编辑",
"Allow HTML" => "�许 HTML",
"preview" => "预览",
"save" => "ä¿?å­˜",
"TextFormattingRules" => "文本格�规则",
"Emphasis" => "加强",
"italics" => "斜体",
"for" => "表示为",
"bold" => "粗体",
"both" => "两者都选",
"Lists" => "项目",
"for bullet lists" => "圆点型列表",
"for numbered lists" => "编�性列表",
"term" => "term",
"definition" => "定义",
"for definiton lists" => "定义型列表",
"References" => "�考",//perhaps not used
"JoinCapitalizedWords" => "缩写",//perhaps not used
"or use square brackets for an" => "或使用空格代替一个",//perhaps not used
"external link" => "外部链接",
"link_description" => "链接注释",
"Misc" => "其它",
"make_headings" => "表示标题",
"makes a horizontal rule" => "表示分隔线",
"Title_bar" => "标题�",//perhaps not used
"title" => "标题",
"creates a title bar" => "创建一个标题�",
"Images" => "图�",
"img" => "图片",//perhaps not used
"displays an image" => "显示一个图片",
"height width desc link and align are optional" => "高度ã€?宽度ã€?æ??è¿°ã€?链接以å?Šå¯¹é½?æ–¹å¼?都是å?¯é€‰é¡¹",
"Tables" => "表格",
"creates a table" => "创建一个表格",
"Last Changes" => "最近修改",
"Today" => "今天",
"days" => "天",
"Days" => "天",
"Last" => "最近",
"Week" => "周",
"Weeks" => "周",
"Month" => "月",
"All" => "全部",
"User" => "用户",
"Pages like" => "相似页�",
"No pages found" => "没有找到页�",
"Pages" => "页",
"Hits" => "点击数",
"Last modified" => "最�修改",
"Last author" => "最近作者",
"Last version" => "最近版本",
"Status" => "状�",
"Versions" => "版本",
"Links" => "链接",
"Size" => "大�",
"printable" => "�以打�",//perhaps not used
"edit" => "编辑",
"remove page" => "删除页�",
"unlock" => "解除�定",
"lock" => "�定",
"permissions" => "��",
"history" => "历�记录",
"backlinks" => "backlinks",
"like pages" => "相似页�",//perhaps not used
"History of" => "历�资料",//perhaps not used
"Actual_version" => "实际版本",
"current_version" => "当�版本",
"rollback" => "回退",
"diff" => "��点",
"Preview" => "预览",
"all" => "全部",
"pages" => "页�",
"Top" => "Top",
"All pages" => "所有页�",//perhaps not used
"Remove page" => "删除页�",
"version" => "版本",
"You are about to remove the page" => "您将删除此页�",
"permanently" => "永久的",
"Remove all versions of this page" => "删除这个页�翢的所有版本",
"Rollback_page" => "�原页�",//perhaps not used
"to_version" => "to_version",
"Search results" => "�索结果",
"Last modification date" => "上次修改日期",
"No pages matched the search criteria" => "没有匹��索�件的页�",
"Register as a new user" => "注册一个新用户",
"Name" => "å??ç§°",
"Password" => "密�",
"Email" => "电�邮件",
"register" => "注册",
"email" => "电�邮件",
"last_login" => "上次登录",
"Groups" => "群组",
"delete" => "删除",
"assign group" => "指定群组",
"Add a new user" => "新增一个用户",
"Pass" => "密�",
"Add" => "加入",
"Admin groups" => "管�员群组",
"Permissions" => "��",
"Add a new group" => "新增一个群组",
"Group" => "群组",
"Desc" => "æ??è¿°",
"Galleries" => "图�库",
"Create or edit a gallery using this form" => "创建或编辑一个使用此样�的图库",
"Max Rows per page" => "�页最大列数",
"Images per row" => "�列图片数",
"Thumbnails size X" => "缩略图宽度X",
"Thumbnails size Y" => "缩略图高度Y",
"Other users can upload images to this gallery" => "其它用户�以上传图片到这个图库",
"edit/create" => "编辑/创建",
"You can access the gallery using the following URL" => "您�以通过以下的URL进入这个图库",
"Available Galleries" => "当�所有的图库",
"Find" => "寻找",
"Description" => "æ??è¿°",
"Created" => "创建于",
"Theme" => "布景主题",
"Remove" => "删除",
"Browse" => "�览",
"changed" => "修改",
"versions" => "版本",//perhaps not used
"Current permissions for this page" => "这个页�当�的��设定",
"Perm" => "��",//perhaps not used
"No individual permissions global permissions to all pages apply" => "没有�独的��设定,全部页�采用全局��设定",//perhaps not used
"Assign permissions to thispage" => "指定这个页�的��",//perhaps not used
"Cache" => "缓存",
"URL" => "URL",
"Last updated" => "最近修改",
"home" => "首页",
"last changes" => "最近修改",
"dump" => "dump",
"ranking" => "排å??",//perhaps not used
"list_pages" => "列表页�",//perhaps not used
"my galleries" => "我的图库",//perhaps not used
"upload image" => "上传图片",
"admin" => "管�员",
"users" => "用户",
"groups" => "群组",
"cache" => "缓存",
"Upload Image" => "上传图片",
"Image Name" => "图片å??ç§°",
"Image Description" => "图片æ??è¿°",
"Gallery" => "图�库",
"Now enter the image URL" => "现在输入图片的URL",
" or upload a local image from your disk" => " 或从您的�盘上传本地的图片",
"Upload from disk:" => "由�盘上传: ",
"upload" => "上传",
"Upload successful!" => "上传�功!",
"The following image was successfully uploaded" => "下列图片被�功上传",
"Thumbnail" => "缩略图",
"You can view this image in your browser using" => "您�以在您的�览器中查看此图片",
"You can include the image in an HTML/Tiki page using" => "您�以将此图片包�在HTML/Tiki的页�中",
"Browsing Gallery" => "�览图库",
"edit gallery" => "编辑图库",
"rebuild thumbnails" => " �建缩略图",
"list gallery" => "列出图库",
"Sort Images by" => "排列图片以",
"hits" => "点击",
"Browsing Image" => "�览图片",
"return to gallery" => "回到图库",
"Move image" => "移动图片",
"move" => "移动",
"You can include the image in an HTML or Tiki page using" => "您�以将此图片包�在HTML/Tiki的页�中",
"Cached" => "已缓存",
"This is a cached version of the page." => "这是一个缓存页�",
"Admin Modules" => "管�员模组",
"assign module" => "指定模组",
"left modules" => "左边的模组",
"right modules" => "�边的模组",
"clear cache" => "清除缓存",
"User Modules" => "用户模组",
"order" => "次�",
"x" => "x",
"rows" => "列",
"down" => "下",
"up" => "上",
"create/edit" => "建立/编辑",
"url" => "url",
"browse gallery" => "�览图库",
"ID" => "ID",
"Filesize" => "文件大�",
"Menu" => "��",
"Top Images" => "热门图片",
"Top Pages" => "热门页�",
"search" => "�索",
"Login" => "登录",
"logged as" => "登录为",
"Logout" => "登出",
"user" => "用户",
"pass" => "密�",
"login" => "登录",
"Admin" => "管�员",
"modules" => "模组",//perhaps not used
"links" => "链接",//perhaps not used
"system gallery" => "系统图库",//perhaps not used
"Top galleries" => "热门图库",
"Online users" => "在线用户",
"Last galleries" => "最新图库",
"My Pages" => "我的页�",
"My galleries" => "我的图库",
"Featured links" => "功能链接",
"You dont have permission to use this feature" => "您没有��使用这个功能",
"Tag already exists" => "Tag已�存在",
"Tag not found" => "没有找到Tag",
"The passwords dont match" => "两个密��匹�",
"User already exists" => "用户已�存在",
"This feature is disabled" => "这个功能已�关闭",
"No page indicated" => "没有指定页�",
"Permission denied you cannot view backlinks for this page" => "���足,您无法查看这个页�的链接",
"The page cannot be found" => "这个页�无法找到",
"Page cannot be found" => "页�无法找到",
"Cannot edit page because it is locked" => "无法编辑被�定的页�",
"Permission denied you cannot edit this page" => "���足,您无法编辑此页�",
"Anonymous users cannot edit pages" => "匿å??用户无法编辑此页é?¢",
"Permission denied you cannot view this page" => "���足,您无法查看这个页�",
"Permission denied you cannot view pages like this page" => "���足,您无法查看这个页�的相似页�",
"Permission denied you cannot view pages" => "���足,您无法查看页�",
"Permission denied you cannot browse this page history" => "���足,您无法查看这个页�的历�记录",
"Permission denied you cannot remove versions from this page" => "���足,您无法删除这个页�的版本",
"No version indicated" => "未指定版本",
"Unexistant version" => "�存在的版本",
"Permission denied you cannot rollback this page" => "���足,您无法回�这个页�",
"No user indicated" => "未指定用户",
"Unexistant user" => "�存在的用户",
"Group already exists" => "群组已�存在",
"Invalid username or password" => "ä¸?正确的用户å??称或密ç ?",
"Unknown group" => "未知的群组",
"Group doesnt exist" => "群组�存在",
"Unknown user" => "未知的用户",
"User doesnt exist" => "用户�存在",
"Permission denied you cannot assign permissions for this page" => "���足,您无法指定这个页�的��",
"No image indicated" => "未指定图片",
"Permission denied you cannot browse this gallery" => "���足,您无法�览这个图库",
"Permission denied you cannot move images from this gallery" => "���足,您无法由这个图库移动图片",
"Permission denied you cannot access this gallery" => "���足,您无法进入这个图库",
"Permission denied you cannot upload images" => "���足,您无法上传图片",
"No gallery indicated" => "未指定图库",
"Permission denied you cannot remove images from this gallery" => "���足,您无法由这个图库删除图片",
"Permission denied you can upload images but not to this gallery" => "���足,您虽然�以上传图片但这个图库除外",
"No cache information available" => "没有�用的缓存信�",
"view info" => "查看信�",
"Admin Topics" => "主题管�",
"Image" => "图片",
"Active?" => "�用?",
"Activate" => "�用",
"Deactivate" => "�用",
"Title" => "标题",
"Author Name" => "作者å??ç§°",
"Topic" => "主题",
"Own Image" => "自有图片",
"Use own image" => "使用自有图片",
"Own image size x" => "自有图片宽度",
"Own image size y" => "自有图片高度",
"Heading" => "标题",
"Body" => "內容",
"Publish Date" => "�表日期",
"By:" => "作者:",
"on:" => "�表于:",
"reads" => "阅读",
"Articles" => "篇数",
"PublishDate" => "�表日期",
"AuthorName" => "作者å??ç§°",
"Reads" => "阅读次数",
"HasImg" => "有图片",//perhaps not used
"UseImg" => "使用图片",//perhaps not used
"Read" => "阅读",
"Read More" => " 阅读全文.. ",
"Submissions" => "æ??交",
"Approve" => "批准",
"Edit Blog" => "编辑网络日志",
"Number of posts to show" => "显示布告数",
"Allow other user to post in this blog" => "�许其他用户在这个网络日志里�布告",
"Blogs" => "网络日志",
"Last Modified" => "最近修改",
"Public" => "公开",//perhaps not used
"Posts" => "布告数",
"Visits" => "�览数",
"Activity" => "活跃度",
"Post" => "�表布告",
"Edit Post" => "编辑文档",
"Blog" => "网络日志",
"Data" => "资料",
"Created by" => "创建者 ",
" on " => " on ",
"posts" => "布告数",
"visits" => "�览数",
"Activity=" => "活跃度=",
"Description:" => "æ??è¿°:",
"Find:" => "寻找:",
"find" => "寻找",
"Sort posts by:" => "排列布告者:",
"Id" => "Id",
"Blog Title" => "网络日志标题",
"Hotwords" => "热门字",
"User preferences screen" => "用户å??好界é?¢",
"Display modules to all groups always" => "永远在所有群组中显示模组",
"Use cache for external pages" => "对外部页�使用缓存",
"Use cache for external images" => "对外部图片使用缓存",
"Language" => "语言",
"Dumps" => "Dumps",
"create" => "建立",
"Sandbox" => "沙盒",
"Maximum number of articles in home" => "首页的最大文档数",
"Admin Hotwords" => "热门字管�",
"Word" => "�语",
"Module Name" => "模组å??ç§°",
"Position" => "ä½?ç½®",
"Order" => "次�",
"Cache Time" => "缓存时间",
"Rows" => "列",
"The SandBox is a page where you can practice your editing skills, use the preview feature
to preview the appeareance of the page, no versions are stored for this page." => "沙盒是一个�以练习编辑技巧的页�, 使用预览的功能
�预览这个页�的样�, 而这个页�将�会被�存.",//perhaps not used
"User Preferences" => "用户å??好",
"User Information" => "用户信�",
"Last login" => "最近登录",
"Real Name" => "真实姓å??",
"HomePage" => "主页",
"Your personal Wiki Page" => "您的个人 Wiki 页�",
"set" => "设定",
"Change your password" => "修改您的 密�",
"Old password" => "旧密�",
"New password" => "新密�",
"Again please" => "请�输入一次",
"Configure this page" => "设定这个页�",
"User Pages" => "用户页�",
"User Blogs" => "用户的网络日志",
"hotwords" => "热门字",//perhaps not used
"list pages" => "列出页�",
"sandbox" => "沙盒",
"user preferences" => "用户页�",//perhaps not used
"You cannot edit this page because it is a user personal page" => "您无法编辑此页因为这是用户的个人页�",
"The SandBox is disabled" => "沙盒功能被关闭",
"Cannot get image from URL" => "无法由URL获得图片",
"cannot process upload" => "无法进行上传",
"You have to provide a name to the image" => "您必须为您的图片指定一个å??ç§°",
"No blog indicated" => "未指定网络日志",
"Blog not found" => "找�到网络日志",
"Permission denied you cannot remove the post" => "���足,您无法删除此布告",
"You cannot admin blogs" => "您无法管�网络日志",
"No image uploaded" => "没有图片被上传",
"You are not logged in" => "您尚未登录",
"You dont have permission to view other users data" => "您没有��去查看其他用户的资料",
"The passwords didn't match" => "两个密��匹�",
"Invalid old password" => "旧密��正确",
"Permission denied you cannot edit this article" => "���足,您无法编辑此文档",
"Permission denied you cannot remove articles" => "���足,您无法删除此文档",
"No article indicated" => "未指定文档",
"Article not found" => "找�到文档",
"Article is not published yet" => "文档尚未被�表",
"Permission denied you cannot send submissions" => "æ?ƒé™?ä¸?足,您无法å?‘出æ??交的文档",
"Permission denied you cannot edit submissions" => "æ?ƒé™?ä¸?足,您无法编辑æ??交的文档",
"Permission denied you cannot remove submissions" => "æ?ƒé™?ä¸?足,您无法删除æ??交的文档",
"Permission denied you cannot approve submissions" => "æ?ƒé™?ä¸?足,您无法批准æ??交的文档",
"Permission denied you cannot create or edit blogs" => "���足,您无法建立或编辑网络日志",
"Permission denied you cannot edit this blog" => "���足,您无法编辑这个网络日志",
"Permission denied you cannot remove this blog" => "���足,您无法删除这个网络日志",
"Permission denied you cannot post" => "���足,您无法�表布告",
"Permission denied you cannot edit this post" => "���足,您无法编辑这个布告",
"You can't post in any blog maybe you have to create a blog first" => "您无法在任一个网络日志里�表布告 也许您必须先建立一个网络日志",
"Rankings" => "排å??",
"Top 10" => "Top 10",
"Top 20" => "Top 20",
"Top 50" => "Top 50",
"Top 100" => "Top 100",
"Banners" => "Banners",
"Client" => "客户",
"Zone" => "Zone",
"Method" => "方法",
"Use Dates?" => "使用日期?",
"Max Impressions" => "Max Impressions",
"Impressions" => "Impressions",
"Clicks" => "点击数",
"Stats" => "统计",
"Create new banner" => "建立新 banner",
"Click ratio" => "点击率",
"Use dates" => "使用日期",
"Hours" => "å°?æ—¶",
"From" => "从",
"to" => "到",
"Weekdays" => "工作日",
"mon" => "周一",
"tue" => "周二",
"wed" => "周三",
"thu" => "周四",
"fri" => "周五",
"sat" => "周六",
"sun" => "周日",
"Banner raw data" => "Banner 原始资料",
"Search in" => "�索",
"galleries" => "图库",
"images" => "图片",
"blogs" => "网络日志",
"blog posts" => "日志布告",
"articles" => "文档",
"Found" => "找到",
"in" => "在",
"Template" => "模�",
"Dynamic content system" => "动�內容系统",
"create new block" => "建立新��",
"Available content blocks" => "�用的內容��",
"Current version" => "当�版本",//perhaps not used
"Next version" => "下一个版本",//perhaps not used
"Programmed versions" => "计划的版本",//perhaps not used
"Old versions" => "旧版本",//perhaps not used
"Edit desc" => "编辑æ??è¿°",//perhaps not used
"Program" => "方案",
"Wiki" => "Wiki",
"XMLRPC API" => "XMLRPC API",
"Edit templates" => "编辑模�",
"Edit Templates" => "编辑模�",
"Index page" => "索引页�",//perhaps not used
"Home Gallery (main gallery)" => "图库首页 (主图库)",
"Galleries features" => "图库功能",
"Remove images in the system gallery not being used in Wiki pages, articles or blog posts" => "删除在系统图库中没有被用在wiki页�, 文档或网络日志系统中的图片",
"CMS features" => "CMS 功能",
"Home Blog (main blog)" => "网络日志首页 (主网络日志)",
"Set prefs" => "设定å??好",
"Blog features" => "网络日志功能",
"URL to link the banner" => "banner的URL链接",
"Max impressions" => "最大�象点击数",
"create zone" => "创建 zone",
"Show the banner only between these dates" => "仅在这段时间内显示 banner",
"From date" => "从",
"To date" => "到",
"Show the banner only in this hours" => "仅在这个时间段内显示 banner",
"from" => "ç”±",
"Mon" => "周一",
"Tue" => "周二",
"Wed" => "周三",
"Thu" => "周四",
"Fri" => "周五",
"Sat" => "周六",
"Sun" => "周日",
"Select ONE method for the banner" => "为banner选择一个方法",
"Use HTML" => "使用 HTML",
"HTML code" => "HTML 代�",
"Use image" => "使用图片",
"Image:" => "图片:",
"Current Image" => "当�图片",
"Use image generated by URL (the image will be requested at the URL for each impression)" => "使用由URL生�的图片 (�次显示都会去请求这个URL)",
"Use text" => "使用文字",
"Text" => "文字",
"save the banner" => "储存banner",
">Remove Zones (you lose entered info for the banner)" => ">删除 Zones (您会丢失关于这个banner的所有信�)",
"Program dynamic content for block" => "编写��的动�内容",
">Block description: " => ">æ?¿å?—æ??è¿°: ",//perhaps not used
"You are editing block:" => "您正在编辑��:",
"Return to block listing" => "回到��列表",
"Publishing date" => "�表日期",
"Publishing Date" => "�表日期",
"Users" => "用户",
"Modules" => "模组",
"System gallery" => "系统图库",
"Topics" => "主题",
"Edit article" => "编辑文档",
"Admin content" => "內容管�",//perhaps not used
"Last submissions" => "最近æ??交的文档",
"Top articles" => "热门文档",
"Old articles" => "旧文档",
"Waiting Submissions" => "等待æ??交的文档",
"We have" => "我们有",
"submissions waiting to be examined" => "待检查的已æ??交文档",
"Most visited blogs" => "最常被�览的网络日志",
"Most Active blogs" => "最活跃的网络日志",
"Last Modified blogs" => "最近被修改的网络日志",
"Last Created blogs" => "最近被建立的网络日志",
"My blogs" => "我的日志",
"in:" => "在:",
"go" => "go",
"rankings" => "排å??",
"Upload image" => "上传图片",
"CMS" => "文档中心",
"Articles Home" => "文档首页",
"List articles" => "列出文档",
"Submit article" => "æ??交文档",
"View submissions" => "æµ?览æ??交的文档",
"List blogs" => "网络日志列表",
"Create/Edit Blog" => "建立/编辑网络日志",
"You dont have permissions to edit banners" => "您没有��编辑banner",
"Banner not found" => "找�到 Banner",
"You dont have permission to edit this banner" => "您没有��编辑这个banner",
"Permission denied you cannot remove banners" => "���足,您无法删除banner",
"No banner indicated" => "未指定banner",
"Feature disabled" => "功能已关闭",
"You dont have permission to write the template" => "您没有��写入模�",
"You dont have permission to read the template" => "您没有��读�模�",
"No content id indicated" => "未指定 content id",
"List" => "列表",
"Last mod" => "最近修改",
"Last ver" => "最近版本",
"Com" => "评论",
"Vers" => "版本",
"Create or edit content" => "建立或编辑內容",
"position" => "ä½?ç½®",
"disables the link" => "关闭这个链接",
"files" => "文件",
"General" => "一般",
"File galleries" => "下载中心",
"Comments" => "评论",
"Image galleries" => "图�库",
"type" => "类型",
"Page generated in" => "生�本页耗时",
"seconds" => "ç§’",
"Wiki comments settings" => "Wiki 评论设定",
"Default number of comments per page" => "默认�页评论数目",
"Comments default ordering" => "默认评论次�",
"Points" => "点数",
"Warn on edit" => "编辑时的警告",
"comments" => "评论",
"Show comments" => "显示评论",//perhaps not used
"Hide comments" => "��评论",//perhaps not used
"Post new comment" => "�表新评论",
"post" => "�表",
"Posting comments" => "�表评论",
"Use" => "使用",
"or" => "或",
"for links" => "for links",
"HTML tags are not allowed inside comments" => "在评论中��许有HTML标签",
"Sort by" => "排列�由",
"Threshold" => "�题",
"Containing" => "包�",
"Vote" => "投票",
"reply to this" => "回�这篇",
"by" => "作者:",
"Score" => "分数",
"on" => "�表于:",
"Comments below your current threshold" => "您当�的�题的评论",
"File Galleries" => "下载中心",
"Create or edit a file gallery using this form" => "使用这个格�建立或编辑一个文件库",
"Other users can upload files to this gallery" => "其他用户�以上传文件到这个文件库",
"You can access the file gallery using the following URL" => "您�以进入这个文件库通过以下的URL",
"Available File Galleries" => "�用的文件库",
"Files" => "文件",
"Upload File" => "上传文件",
"File Title" => "文件标题",
"File Description" => "文件æ??è¿°",
"File Gallery" => "下载中心",
"Now enter the file URL" => "现在输入这个文件的URL",
" or upload a local file from your disk" => "或由您的�盘上传一个本地的文件",
"The following file was successfully uploaded" => "下列的文件被�功的上传",
"You can download this file using" => "您�以下载这个文件通过",
"You can include the file in an HTML/Tiki page using" => "您�以将这个文件包�在一个 HTML/Tiki 页�通过",
"Listing Gallery" => "文件库列表",
"upload file" => "上传文件",
"Dls" => "下载次数",
"Top Files" => "热门文件",
"Last Files" => "最新文件",
"Top File Galleries" => "热门文件库",
"Last modified file galleries" => "最近更新的文件库",
"Image Gals" => "图�库",
"List galleries" => "文件库列表",
"Upload file" => "上传文件",
"Unexistant link" => "�存在的链接",
"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" => "���足,您无法删除这个图库",
"Permission denied you can upload files but not to this file gallery" => "���足,您�以上传文件但这个文件库除外",
"Cannot get file from URL" => "�能通过URL获得文件",//perhaps not used
"Unexistant gallery" => "�存在的图库",
"Permission denied you cannot remove files from this gallery" => "���足,您无法由这个图库删除文件",
"You cant download files" => "您无法下载文件",//perhaps not used
"No file" => "没有文件",//perhaps not used
"Generate positions by hits" => "由点击数生��置",
"Add Featured Link" => "加入功能链接",
"Rollback page" => "回�页�",
"List of existing groups" => "已存在群组的列表",
"Create/edit Forums" => "建立/编辑 论�",
"There are individual permissions set for this forum" => "这个论�有独立��设定",
"Prevent flooding" => "防止�水",
"Minimum time between posts" => "�表布告的最宿间隔时间",
"Topics per page" => "�页主题数",
"Moderator" => "版主",//perhaps not used
"Default ordering for topics" => "默认的主题排列次�",
"Replies (desc)" => "回� (��)",
"Reads (desc)" => "阅读次数 (��)",
"Last post (desc)" => "最近�表帖� (��)",
"Title (desc)" => "标题 (��)",
"Title (asc)" => "标题 (��)",
"Default ordering for threads" => "默认的帖�顺�",
"Date (desc)" => "日期 (��)",
"Score (desc)" => "分数 (��)",
"Send this forums posts to this email" => "��这个论�的文档到这个电�邮件",
"Prune unreplied messages after" => "在这之�删去未回�的消�:",
"Prune old messages after" => "在这之�删去旧消�:",
"Save" => "储存",
"topics" => "主题",
"coms" => "coms",
"age" => "æ—¶é—´",
"ppd" => "ppd",
"last post" => "最近�表帖�",
"perms" => "��",
"forums" => "论�",
"Assign permissions to group" => "授�给群组",
"Group Information" => "群组信�",
"Forums" => "论�",
"Comm" => "Comm",
"Cms" => "Cms",
"Chat" => "�天",
"Assign user" => "指定用户",
"to groups" => "给群组",
"prev image" => "上一个图片",
"next image" => "下一个图片",
"Template listing" => "模�列表",
"Upload from disk" => "由�盘上传",
"Thumbnail (optional, overrides automatic thumbnail generation)" => "缩略图 (�选, 覆盖自动生�缩略图选项)",
"There are inddividual permissions set for this gallery" => "这个图库有独立��设定",//perhaps not used
"Gallery is visible to non-admin users?" => "图库能够被�管�员用户看到?",
" modified" => " 修改",
"Imgs" => "图片",
"Current ver" => "当�版本",
"Next ver" => "下一个版本",
"Old vers" => "旧版本",
"group" => "群组",
"permission" => "��",
"No indivual permissions global permissions apply" => "没有�独的��设定,采用全局��设定",//perhaps not used
"Assign permissions to this page" => "授�给这页",
"Show Post Form" => "显示�帖输入框",
"Hide Post Form" => "���帖输入框",
"Forum List" => "论�列表",
"Edit Forum" => "编辑论�",
"Editing comment" => "编辑评论",
"post new comment" => "�表新评论",
"smileys" => "笑脸符�",
"Type" => "类型",
"normal" => "正常",
"announce" => "公告",
"hot" => "热帖",
"sticky" => "置顶",
"locked" => "�定",
"Sort" => "排列",
"message" => "消�",
"score" => "分数",
"author" => "作者",
"Non cacheable images" => "�缓存图片",
"RSS feeds" => "RSS feeds",
"displays rss feed with id=n maximum=m items" => "显示 rss feed 的 id=n maximum=m �数",
"Simple box" => "简�的框格",
"Box content" => "框格中的内容",
"Creates a box with the data" => "创建一个带框格的文本",
"Dynamic content" => "动�内容",
"Will be replaced by the actual value of the dynamic content block with id=n" => "将会被动�内容的实际值(id=n)所代替",
"Send objects" => "��对象",
"Transmission results" => "传输结果",
"Send objects to this site" => "��对象到这个网站",
"site" => "网站",
"path" => "路径",
"username" => "用户å??ç§°",
"password" => "密�",
"send" => "��",
"Send Wiki Pages" => "�� Wiki 页�",
"add page" => "加入页�",
"clear" => "清除",
"Edit received page" => "编辑接收的页�",
"comment" => "评论",
"Site" => "网站",
"accept" => "接收",
"Current category" => "当�分类",
"Child categories" => "�分类",
"Edit or add category" => "编辑或新增分类",
"Objects in category" => "分类中的对象",
"Add objects to category" => "新增对象到分类中",
"filter" => "过滤器",
"add" => "新增",
"sub categories" => "�分类",
"There are inddividual permissions set for this blog" => "这个网络日志有�独的��设定",//perhaps not used
"Features" => "功能",
"Tiki sections and features" => "Tiki 分区和功能",
"Polls" => "投票",
"Communications (send/receive objects)" => "通讯 (��/接收 对象)",
"Categories" => "分类",
"Layout options" => "版�选项",//perhaps not used
"Left column" => "左�",
"Right column" => "��",
"Top bar" => "Top bar",
"Bottom bar" => "Bottom bar",
"General preferences and settings" => "一般å??好设定",
"Image Gallery" => "图�库",
"Forum" => "论�",
"Custom home" => "自订的主页",
"Wiki settings" => "Wiki 设定",
"Never delete versions younger than days" => "永�删除比days更新的版本",
"Set" => "设定",
"wiki" => "wiki",
"polls" => "投票",//perhaps not used
"Image galleries comments settings" => "图�库评论设定",
"features" => "features",//perhaps not used
"File galleries comments settings" => "文件库评论设定",
"cms" => "cms",//perhaps not used
"CMS settings" => "CMS设定",
"Article comments settings" => "文档评论设定",
"Poll settings" => "投票设定",
"Poll comments settings" => "投票评论设定",
"image galleries" => "图�库",//perhaps not used
"Blog settings" => "网络日志设定",
"Blog comments settings" => "网络日志评论设定",
"general" => "一般",//perhaps not used
"Forums settings" => "论�设定",
"Home Forum (main forum)" => "Home Forum (主论�)",
"Set home forum" => "设定主论�",
"Ordering for forums in the forum listing" => "在论�列表中论�的次�",
"Creation Date (desc)" => "建立 日期 (��)",
"Topics (desc)" => "主题 (��)",
"Threads (desc)" => "�题 (��)",
"Visits (desc)" => "�览数 (��)",
"Name (desc)" => "å??ç§° (é™?åº?)",
"Name (asc)" => "å??ç§° (å?‡åº?)",
"file galleries" => "文件库",//perhaps not used
"rss" => "rss",//perhaps not used
"<b>Feed</b>" => "<b>Feed</b>",
"<b>enable/disable</b>" => "<b>开�/关闭</b>",
"<b>Max number of items</b>" => "<b>最大物件数</b>",
"Feed for Articles" => "Feed for Articles",
"Feed for Weblogs" => "Feed for 网络日志",
"Feed for Image Galleries" => "Feed for 图�库",
"Feed for File Galleries" => "Feed for 文件库",
"Feed for the Wiki" => "Feed for the Wiki",
"Feed for individual Image Galleries" => "Feed for �独的图�库",
"Feed for individual File Galleries" => "Feed for �独的文件库",
"Feed for individual weblogs" => "Feed for �独的网络日志",
"Set feeds" => "设定 feeds",
"Objects that can be included" => "能够被包�的对象",
"Available polls" => "�用的投票",
"use poll" => "使用投票",
"Dynamic content blocks" => "动�內容��",
"use dynamic  content" => "使用动�內容",
"RSS modules" => "RSS模组",
"use rss module" => "使用rss模组",
"Banner zones" => "Banner zones",
"use banner zone" => "使用banner zone",
"Error" => "错误",
"Return to home page" => "返回首页",
"Block description: " => "æ?¿å?—æ??è¿°: ",
"Smileys" => "笑脸符�",
"There are inddividual permissions set for this file gallery" => "这个文件库有独立��设定",//perhaps not used
"Create/edit channel" => "建立/编辑频�",
"Active" => "�用",
"Refresh rate" => "刷新频率",
"half a second" => "0.5ç§’",
"second" => "ç§’",
"description" => "æ??è¿°",
"active" => "�用",
"refresh" => "刷新",
"enter chat room" => "进入�天室",
"Chatroom" => "�天室",
"Active Channels" => "�用的频�",
"Channel Information" => "频�信�",
"Content for the feed" => "��的内容",
"Create/edit RSS module" => "建立/编辑 RSS 模组",
"minute" => "分",
"minutes" => "分",
"hour" => "å°?æ—¶",
"hours" => "å°?æ—¶",
"day" => "æ—¥",
"Last update" => "最近更新",
"Create/edit Menus" => "建立/编辑��",
"dynamic collapsed" => "动�colapsed",
"dynamic extended" => "动�扩展",
"fixed" => "固定",
"options" => "选项",
"List menus" => "列出��",
"Edit this menu" => "编辑这个��",
"Preview menu" => "预览��",
"Edit menu options" => "编辑��选项",
"section" => "æ ?ç›®",
"option" => "选项",
"Some useful URLs" => "一些有用的URL",
"Home Page" => "首页",
"Home Blog" => "网络日志首页",
"Home Image Gal" => "图�库首页",
"Home Image Gallery" => "图�库首页",
"Home File Gal" => "下载中心首页",
"Home File Gallery" => "下载中心首页",
"User preferences" => "用户å??好",
"User prefs" => "用户å??好",
"Wiki Home" => "Wiki 首页",
"List image galleries" => "列出图�库",
"Gallery Rankings" => "图库排å??",
"Browse a gallery" => "�览图库",
"Articles home" => "文章库首页",
"All articles" => "所有文档",
"Submit" => "æ??交",
"List Blogs" => "列出网络日志",
"Create blog" => "建立网络日志",
"View a forum" => "进入论�",
"View a thread" => "�览�题",
"Create/edit Polls" => "建立/编辑投票",
"current" => "当�",
"closed" => "关闭",
"votes" => "票",
"Publish" => "�表",
"List polls" => "列出投票",
"Edit this poll" => "编辑这个投票",
"Preview poll" => "阅览这个投票",
"Edit or add poll options" => "编辑或加入投票选项",
"Option" => "选项",
"vote" => "投票",
"Results" => "结果",
"Total" => "全部",
"Other Polls" => "其他投票",
"Published" => "�表",
"Votes" => "投票",
"back" => "返回",
"Current permissions for this object" => "此对象当�的��",
"Assign permissions to this object" => "指定此对象的��",
"Wiki Pages" => "Wiki 页�",
"Blog Posts" => "日志布告",
"chat" => "�天",
"categories" => "分类",
"received pages" => "已接收页�",
"Menus" => "��",
"Admin chat" => "管��天室",//perhaps not used
"Admin forums" => "管�论�",
"Templates" => "模�",
"Random Pages" => "�机页�",
"Last blog posts" => "最新日志布告",
"Last forum topics" => "最新论�主题",
"Most read topics" => "�览最多的主题",
"Top topics" => "最佳�题",
"Most visited forums" => "�览最多的论�",
"Most commented forums" => "最多评论论�",
"Received objects" => "接收到的对象",
"Pages:" => "页�:",
"Username is too long" => "用户å??称太长",
"Invalid username" => "ä¸?有效的用户å??ç§°",
"Permission denied you cannot view this section" => "���足,您无法查看这个�目",
"Permission denied you cant view this section" => "���足,您无法查看这个�目",//perhaps not used
"No menu indicated" => "未指定��",
"No poll indicated" => "未指定投票",
"Not enough information to display this page" => "没有足夠信��显示此页",
"Fatal error" => "內部错误",
"This feature has been disabled" => "这个功能已被关闭",
"No forum indicated" => "未指出论�",
"Please wait 2 minutes between posts" => "请间隔两分钟���表帖�",
"No thread indicated" => "未指定�题",
"Permission denied to use this feature" => "���足,您无法使用此功能",
"No channel indicated" => "未指定频�",
"No nickname indicated" => "未指定昵称",
"Search by Date" => "以日期�索",
"LastChanges" => "最近修改",
"Generate a password" => "生�一个密�",
"faqs" => "faqs",
"File gals" => "下载中心",
"Image gals" => "图�库",
"FAQs" => "FAQs",
"of" => "of",
"Comparing versions" => "比较版本",
"compare" => "比较",
"RSS" => "RSS",
"Article" => "文档",
"Review" => "Review",
"Rating" => "排å??",
"Quicklinks" => "快速链接",
"Spellcheck" => "拼字检查 ",
"Wiki References" => "Wiki �考",
"JoinCapitalizedWords or use" => "缩写或使用",
"for wiki references" => "for wiki �考",
"prevents referencing" => "阻止�考",
"External links" => "外部链接",
"use square brackets for an" => "使用空格",
"Title bar" => "标题",
"Colored text" => "�色文字",
"Will display using the indicated HTML color" => "将会使用指定的HTML颜色显示",
"Center" => "居中",
"Will display the text centered" => "将会居中显示文本",
"Filter" => "过滤",
"Send Articles" => "��文档",
"add article" => "加入文档",
"Img" => "图�",
"deep" => "深度",
"Allowed HTML:" => "�许 HTML:",//perhaps not used
"undo" => "回�",
"Users can configure modules" => "用户能够设定模组",
"User bookmarks" => "用户书签",
"Games" => "游�",
"Validate users by email" => "用email审核用户",
"Remind passwords by email" => "用emailæ??示密ç ?",
"Undo" => "��",
"MultiPrint" => "MultiPrint",
"Spellchecking" => "拼字检查",
"FAQs settings" => "FAQs 设定",
"FAQ comments" => "FAQ 评论",
"Feed for forums" => "Feed for 论�",
"Feed for individual forums" => "Feed for 独立论�",
"User Bookmarks" => "用户书签",
"Configure modules" => "设定模组",//perhaps not used
"Number of visited pages to remember" => "记��览的页�数",
"to insert a random tagline" => "�入一个�机的tagline",//perhaps not used
"Users in this channel" => "这个频�里的用户",
"Use :nickname:message for private messages" => "使用 :nickname:message ����人消�",
"Use [URL|description] or [URL] for links" => "使用 [URL|注释] 或 [URL] ���文本链接",
"Use (:name:) for smileys" => "使用 (:name:) ��笑脸符�",
"Admin cookies" => "管� cookies",
"Create/edit cookies" => "建立/编辑 cookies",
"Cookie" => "Cookie",
"Upload Cookies from textfile" => "通过文本文件上传 Cookies",
"Cookies" => "Cookies",
"cookie" => "cookie",
"Orphan Pages" => "孤立页�",
"Edit received article" => "编辑已接收文档",
"Use Image" => "使用图片",
"yes" => "是",
"no" => "å?¦",
"Image x size" => "图�宽度",
"Image y size" => "图�高度",
"Image name" => "图片å??ç§°",
"Image size" => "图片大�",
"Accept Article" => "接收文档",
"Filename" => "文件",
"Restoring a backup" => "��一个备份",
"Warning!" => "警告!",
"Restoring a backup destoys all the data in your Tiki database.
All your tables will be replaced with the information in the backup." => "æ?¢å¤?一个备份将会破å??您现有的数æ?®åº“中的资料.
所有的数�表将会被备份中的资料所�代.",//perhaps not used
"Click here to confirm restoring" => "点击这里以确认��",
"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" => "创建一个备份将会花上一段较长的时间.如果进程没有正常结�,您将看到一个空白的页�。
如果这样的�,您就必须修改php.ini中的脚本执行最大时间�让脚本正常结�。",//perhaps not used
"Click here to create a new backup" => "点击这里创建新备份",
"Upload a backup" => "上传一个备份",
"Upload backup" => "上传备份",
"All games are from" => "所有游��自",
"visit the site for more games and fun" => "访问这个网站�获得更多游�和�趣",
"Upload a game" => "上传一个游�",
"Upload a new game" => "上传一个新游�",
"Flash binary (.sqf or .dcr)" => "Flash binary (.sqf 或者 .dcr)",
"Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)" => "缩略图 (如果游æˆ?命为foo.swf 则缩略图必须命å??为 foo.swf.gif 或 foo.swf.png 或 foo.swf.jpg)",
"Edit game" => "编辑游�",
"Played" => "已玩",
"times" => "次",
"If you can't see the game then you need a flash plugin for your browser" => "如果您无法看到游�那么您必须为您的�览器安装 flash �件",
"Create/edit Faq" => "建立/新增 Faq",
"created" => "建立",
"questions" => "问题",
"List FAQs" => "列出 FAQs",
"View FAQ" => "查看 FAQ",
"Edit this FAQ" => "编辑这个 FAQ",
"new question" => "新问题",
"Edit FAQ questions" => "编辑 FAQ 问题",
"Answer" => "回答",
"Use a question from another FAQ" => "使用�自其它 FAQ 的问题",
"Question" => "问题",
"use" => "使用",
"FAQ questions" => "FAQ 问题",
"question" => "问题",
"FAQ Questions" => "FAQ 问题",
"FAQ Answers" => "FAQ 答案",
"Print multiple pages" => "打�多个页�",
"Print Wiki Pages" => "打� Wiki 页�",
"print" => "打�",
">I forgot my password" => ">忘记密�",//perhaps not used
"send me my password" => "寄回我的 密�",
"I forgot my password" => "忘记密�",
"Return to HomePage" => "回到首页",
"Add or edit folder" => "新增或编辑文件夹",
"Add or edit a URL" => "新增或编辑一个URL",
"User assigned modules" => "用户指定模组",
"Restore defaults" => "��默认值",
"column" => "列",//perhaps not used
"Assign module" => "指定模组",
"Module" => "模组",
"Column" => "列",
"Site Stats" => "网站统计",
"Started" => "开始",
"Days online" => "在线天数",
"Total pageviews" => "全部页��览数",
"Average pageviews per day" => "�日平�页��览数",
"Best day" => "最好的一天",
"Worst day" => "最差的一天",
"Show chart for the last " => "显示最近的图表 ",
"days (0=all)" => "天 (0=全部)",
"dispay" => "dispay",//perhaps not used
"Wiki Stats" => "Wiki 统计",
"Size of Wiki Pages" => "Wiki Pages 的大�",
"Average page length" => "平�页�长度",
"Average versions per page" => "�页版本的平�值",
"Visits to wiki pages" => "wiki pages的�览数",
"Orphan pages" => "孤立页�",
"Average links per page" => "�页平�链接",
"Image galleries Stats" => "图�库统计",
"Average images per gallery" => "�图库平�图片数",
"Total size of images" => "全部图片的总大�",
"Average image size" => "平�图片大�",
"Visits to image galleries" => "图�库�览数",
"File galleries Stats" => "文件库统计",
"Average files per gallery" => "�个文件库平�图片数",
"Total size of files" => "全部文件的总大�",
"Average file size" => "平�文件大�",
"Visits to file galleries" => "文件库�览数",
"Downloads" => "下载数",
"CMS Stats" => "CMS 统计",
"Total reads" => "总�览数",
"Average reads per article" => "平��篇文档�览数",
"Total articles size" => "全部文档大�",
"Average article size" => "平�文档大�",
"Forum Stats" => "论�统计",
"Total topics" => "全部主题",
"Average topics per forums" => "�论�平�主题数",
"Total threads" => "总�题数",
"Average threads per topic" => "�主题平��题数",
"Visits to forums" => "论��览数",
"Blog Stats" => "网络日志统计",
"Weblogs" => "网络日志",
"Total posts" => "总�表布告数",
"Average posts per weblog" => "�个网络日志平��表数",//perhaps not used
"Total size of blog posts" => "网络日志 布告的总大�",
"Average posts size" => "平�布告大�",
"Visits to weblogs" => "网络日志�览数",
"Poll Stats" => "投票统计",
"Total votes" => "总票数",
"Average votes per poll" => "�个投票平�票数",
"Faq Stats" => "Faq 统计",
"Total questions" => "全部问题数",
"Average questions per FAQ" => "�个FAQ平�问题数",
"User Stats" => "用户统计",
"Average bookmarks per user" => "�个用户平�书签数",
"user bookmarks" => "用户书签",//perhaps not used
"stats" => "统计",
"games" => "游�",
"orphan pages" => "孤立页�",
"Backups" => "备份",
"Admin FAQs" => "管� FAQs",
"Admin Cookies" => "管� Cookies",//perhaps not used
"I forgot my pass" => "忘记密�",
"Recently visited pages" => "最近�览页�",
"Last Created FAQs" => "最近建立FAQS",
"Top Visited FAQs" => "最热门FAQs",
"Quick edit a Wiki page" => "快速编辑一个Wiki页�",
"Bookmarks" => "书签",
"mark" => "标计",
"new" => "新增",
"Permision denied" => "���足",
"Upload failed" => "上传失败",
"No faq indicated" => "未指定faq",
"No pages indicated" => "未指定页�",
"You must log in to use this feature" => "您必须登录以使用此功能",
"No url indicated" => "未指定url",
"The thumbnail name must be" => "缩略图的�称必须是",
"Passcode to register (not your user password)" => "注册用通行��(�是您的用户密�)",
"Link type" => "链接类型",
"replace current page" => "替�当�页�",
"framed" => "framed",
"open new window" => "开�新窗�",
"Include" => "包�",
"Includes" => "包�",
"uploaded" => "已上传",
"size" => "大�",
"dls" => "dls",
"No attachments for this page" => "此页�没有附件",//perhaps not used
"attach" => "附件",
"Entire site" => "整个网站",//perhaps not used
"Quizzes" => "�测验",
"content templates" => "內容模�",//perhaps not used
"shoutbox" => "�事",//perhaps not used
"drawings" => "绘图",//perhaps not used
"HTML pages" => "HTML页�",
"assigned" => "指定",//perhaps not used
"edit image" => "编辑图片",
"Browse gallery" => "�览图库",
"Articles (subs)" => "文档 (æ??交的)",
"Apply template" => "套用模�",
"none" => "æ— ",
"Search stats" => "�索统计",
"Hotwords in new window" => "在新窗�打开热门字",
"Allow smileys" => "�许笑脸符�",
"Shoutbox" => "�事",
"Drawings" => "绘图",
"Referer stats" => "�访网站统计",
"Referer Stats" => "�访网站统计",
"General Layout options" => "一般版�选项",
"Layout per section" => "��目的版�数",
"Admin layout per section" => "管���目的版�数",
"Home page" => "首页",
"Use URI as Home Page" => "使用URI当作首页",
"Request passcode to register" => "需�通行���能注册",
"Count admin pageviews" => "计算管�员�览数",
"Browser title" => "�览器标题",
"Reg users can change theme" => "注册用户�以改�布景主题",
"Reg users can change language" => "注册用户�以改�语言",
"Wiki attachments" => "Wiki 附件",
"Use a directory to store files" => "使用文件夹�储存文件",
"Path" => "路径",
"Use templates" => "使用模�",
"Show page title" => "显示页�标题",
"Use database to store images" => "使用数�库�储存图片",
"Use a directory to store images" => "使用文件夹�储存图片",
"Directory path" => "文件夹路径",
"Uploaded image names must match regex" => "上传图片å??称必须符å?ˆæ­£åˆ™è¡¨è¾¾å¼?",
"Uploaded image names cannot match regex" => "上传图片å??ç§°ä¸?能符å?ˆæ­£åˆ™è¡¨è¾¾å¼?",
"Use database to store files" => "使用数�库�储存文件",
"Uploaded filenames must match regex" => "上传文件å??称必须符å?ˆæ­£åˆ™è¡¨è¾¾å¼?",
"Uploaded filenames cannot match regex" => "上传文件å??ç§°ä¸?能符å?ˆæ­£åˆ™è¡¨è¾¾å¼?",
"Default ordering for blog listing" => "网络日志列表的默认次�",
"Creation date (desc)" => "建立日期 (��)",
"Last modification date (desc)" => "最近修改日期 (��)",
"Blog title (asc)" => "网络日志标题 (��)",
"Number of posts (desc)" => "布告数 (��)",
"Activity (desc)" => "活跃度 (��)",
"Parameters" => "å?‚æ•°",
"Random image from" => "�机图片 由",
"use gallery" => "使用图库",
"use menu" => "使用��",
"cancel edit" => "�消编辑",
"Upload" => "上传",
"View a FAQ" => "查看 FAQ",
"Take a quiz" => "进行测验",
"Quiz stats" => "测验统计",
"Stats for a Quiz" => "测验统计",
"list quizzes" => "列出问题",
"quiz stats" => "测验统计",
"admin quizzes" => "管�测验",
"Create/edit quizzes" => "新增/编辑问题",
"There are individual permissions set for this quiz" => "这个测验有�独��设定",
"Quiz can be repeated" => "问题�以��",
"Store quiz results" => "储存测验的结果",
"Questions per page" => "�页问题数",
"Quiz is time limited" => "测验有时间�制",
"Maximum time" => "最大时间",
"can_repeat" => "�以��",
"time_limit" => "时间�制",
"results" => "结果",
"this quiz stats" => "这个测验的统计",
"edit this quiz" => "编辑这个测验",
"Reuse question" => "��使用问题",
"Questions" => "问题",
"maxScore" => "最高分数",
"text" => "文本",
"points" => "分",
"Time Left" => "剩余时间",
"send answers" => "��答案",
"Result" => "结果",
"To Points" => "从",
"From Points" => "到",
"answer" => "答案",
"Stats for quizzes" => "测验统计",
"Quiz" => "测验",
"taken" => "访问",
"Av score" => "平�分数",
"Av time" => "平�时间",
"Stats for quiz" => "测验统计",
"clear stats" => "清除统计",
"date" => "日期",
"time" => "æ—¶é—´",
"result" => "结果",
"details" => "细节",
"del" => "清除",
"Stats for this quiz Questions " => "这个测验问题的统计 ",
"Average" => "平�",
"Quiz result stats" => "测验结果统计",
"Time" => "æ—¶é—´",
"User answers" => "用户答案",
"Users can suggest questions" => "用户�以建议问题",
"suggested" => "建议",//perhaps not used
"underline" => "下划线",
"table" => "表格",
"wiki link" => "wiki 链接",
"heading1" => "标题1",
"heading2" => "标题2",//perhaps not used
"heading3" => "标题3",//perhaps not used
"title bar" => "标题�",
"box" => "带框文字",
"rss feed" => "rss feed",
"dynamic content" => "动�內容",
"tagline" => "tagline",
"hr" => "分隔线",
"center text" => "居中文字",
"colored text" => "�色文字",
"image" => "图片",
"special chars" => "特殊字符",
"Suggested questions" => "建议问题",
"approve" => "核准",
"Show suggested questions/suggest a question" => "显示建议问题/建议一个问题",
"Hide suggested questions" => "��建议问题",
"Admin templates" => "管�模�",
"Create/edit templates" => "建立/编辑模�",
"use in cms" => "在 cms 使用",
"use in wiki" => "在 wiki 使用",
"use in HTML pages" => "在 HTML 页�使用",
"template" => "模�",
"last modif" => "最近修改",
"sections" => "æ ?ç›®",
"Usage chart" => "使用图表",
"Quiz Stats" => "测验统计",
"Average questions per quiz" => "�个测验平�问题数",
"Quizzes taken" => "测验花费",
"Average quiz score" => "平�测验分数",
"Average time per quiz" => "�个测验平�回答时间",
"Mail notifications" => "邮件æ??示",
"Add notification" => "新增æ??示",
"Event" => "事件",
"A user registers" => "有用户注册",
"A user submits an article" => "有用户�表文档",
"use admin email" => "使用管�员电�邮件",
"event" => "事件",
"object" => "对象",
"categorize" => "类别",
"show categories" => "显示类别",
"hide categories" => "��类别",
"categorize this object" => "对这个对象分类",
"Admin categories" => "类别管�",
"Tiki Shoutbox" => "Tiki �事",
"Post or edit a message" => "�表或编辑消�",
"Messages" => "消�",
"Edit Image" => "编辑图片",
"Edit successful!" => "编辑�功!",
"The following image was successfully edited" => "下列图片已被�功编辑",
"creates the editable drawing foo" => "创建�编辑的绘图foo",
"underlines text" => "带下划线的文本",
"Admin HTML pages" => "管� HTML 页�",
"Create/edit HTML pages" => "建立/编辑 HTML 页�",
"Page name" => "页é?¢å??ç§°",
"Dynamic" => "动�",
"Static" => "统计",
"Refresh rate (if dynamic) [secs]" => "刷新频率 (如果动�的�) [秒]",
"Content" => "內容",
"content" => "內容",
"Admin HTML page dynamic zones" => "Admin HTML page dynamic zones",
"Edit this HTML page" => "编辑这个HTML 页�",//perhaps not used
"View page" => "查看页�",
"Edit zone" => "编辑 zone",
"Dynamic zones" => "动� zones",
"zone" => "zone",
"Mass update" => "大�更新",
"layout options" => "版�选项",
"searched" => "�索",
"Available drawings" => "�用的图�",
"last" => "最近",
"Admin Menu" => "管���",
"Admin drawings" => "管�绘图",
"Content templates" => "內容模�",
"Entire Site" => "整个网站",
"Send articles" => "��文档",
"Received articles" => "已接收文档",
"Admin topics" => "管�主题",
"Admin posts" => "管�布告",
"List Quizzes" => "列出测验",
"Last Created Quizzes" => "最近建立的测验",
"Top Quizzes" => "热门测验",
"Top games" => "热门游�",
"Since your last visit" => "自从您上次访问",
"Since your last visit on" => "自从您上次访问由",
"new images" => "新图片",
"wiki pages changed" => "wiki 页�已修改",
"new files" => "新文件",
"new comments" => "新评论",
"new users" => "新用户",
"Google Search" => "Google �索",
"Username cannot contain whitespace" => "用户姓å??ä¸?能包å?«ç©ºæ ¼",
"Wrong passcode you need to know the passcode to register in this site" => "错误的通行��您必须知�通行���能在这个网站注册",
"No quiz indicated" => "未指定测验",
"You cannot take this quiz twice" => "您��以���这个测验",
"Quiz time limit excedeed quiz cannot be computed" => "测验时间�制已过,测验无法被计算",
"No result indicated" => "未指定结果",
"You dont have permission to edit messages" => "您没有��编辑消�",
"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" => "编辑图片失败",
"No question indicated" => "未指定问题",
"feat" => "功能",//perhaps not used
"Full Text Search" => "全文�索",
"Trackers" => "跟踪�务",
"Surveys" => "问�调查",
"Newsletters" => "订阅简报",
"Use gzipped output" => "使用gzipped压缩输出",
"Use direct pagination links" => "使用页�链接",
"Slideshows theme" => "Slideshows 布景主题",
"Server name (for absolute URIs)" => "æœ?务器å?? (ç»?对 URI 路径)",
"Server time zone" => "�务器时区",
"Displayed time zone" => "显示时区",
"Long date format" => "长日期格�",
"Short date format" => "短日期格�",
"Long time format" => "长时间格�",
"Short time format" => "短时间格�",
"User registration and login" => "用户注册和登录",
"Store plaintext passwords" => "以明��存密�",
"Use challenge/response authentication" => "使用 询问/回应 的验�",
"Force to use chars and nums in passwords" => "�制密��能使用字符和数字",
"Minimum password length" => "密�最短字符数",
"Password invalid after days" => "密�失效天数",
"Require HTTP Basic authentication" => "需�HTTP验�",
"Allow secure (https) login" => "�许安全HTTP(https)登录",
"Require secure (https) login" => "需�安全HTTP(https)登录",
"HTTP server name" => "HTTPæœ?务器å??ç§°",
"HTTP port" => "HTTP端�",
"HTTP URL prefix" => "HTTP URL �缀",
"HTTPS server name" => "HTTPSæœ?务器å??ç§°",
"HTTPS port" => "HTTPS端�",
"HTTPS URL prefix" => "HTTPS URL �缀",
"Export Wiki Pages" => "导出 Wiki 页�",
"Export" => "导出",
"Remove unused pictures" => "删除�用的图片",
"Wiki Home Page" => "Wiki 主页",
"Wiki Page Names" => "Wiki 页é?¢å??ç§°",
"full" => "全部",
"strict" => "�制",
"Pictures" => "图片",
"Use page description" => "使用页�注释",
"gral" => "一般",//perhaps not used
"file gls" => "文件库",//perhaps not used
"trckrs" => "跟踪",//perhaps not used
"Blog level comments" => "网络日志级的评论",
"Post level comments" => "布告级的评论",
"frms" => "论�",//perhaps not used
"img gls" => "图�库",//perhaps not used
"webmail" => "webmail",//perhaps not used
"Webmail" => "Webmail",
"Allow viwing HTML mails?" => "�许�览 HTML 格�的邮件?",//perhaps not used
"Maximum size for each attachment" => "�个附件的最大大�",
"use in newsletters" => "在简报中使用",
"Section" => "æ ?ç›®",
"None" => "没有",
"Create new" => "新建",
"list newsletters" => "简报目录",
"admin newsletters" => "管�简报",
"send newsletters" => "��简报",
"Newsletter" => "简报",
"Add a subscription newsletters" => "添加一个订阅的简报",
"Add all your site users to this newsletter (broadcast)" => "将这个站点的所有用户添加到一个邮件列表 (广播)",
"Add users" => "添加用户",
"valid" => "有效",
"subscribed" => "已订阅",
"Create/edit newsletters" => "创建/编辑简报",
"There are individual permissions set for this newsletter" => "这个简报有独立的��控管",
"Users can subscribe any email addresss" => "用户å?¯ä»¥æ??交任何EMAIL地å?€",
"Frequency" => "频率",
"editions" => "版本",
"last sent" => "最近��",
"subscriptions" => "订阅",
"List surveys" => "调查列表",
"survey stats" => "调查统计",
"this survey stats" => "这个调查的统计",
"edit this survey" => "编辑这个调查",
"admin surveys" => "管�调查",
"One choice" => "�选题",
"Multiple choices" => "多选题",
"Short text" => "文本输入",
"Rate (1..5)" => "评分 (1..5)",
"Rate (1..10)" => "评分 (1..10)",
"Options (if apply)" => "选项(多个选项间用,分隔)",
"list surveys" => "调查列表",
"Create/edit surveys" => "创建/编辑调查",
"There are individual permissions set for this survey" => "这个调查有独立的��控管",
"open" => "打开",
"status" => "状�",
"List trackers" => "用户跟踪系统列表",
"Admin trackers" => "管�跟踪�务",
"Edit this tracker" => "编辑这个跟踪",
"View this tracker items" => "查看这个跟踪项目",
"Edit tracker fields" => "编辑跟踪范围",
"checkbox" => "�选框",
"text field" => "文本框",
"textarea" => "文本域",
"drop down" => "下拉��",
"user selector" => "用户选择",
"group selector" => "选择��组",
"date and time" => "日期和时间",
"Options (separated by commas used in dropdowns only)" => "选项(用,分隔。仅在下拉��中有效)",
"Is column visible when listing tracker items?" => "在显示跟踪项目的时候,此列是���?",
"Column links to edit/view item?" => "是�将此列链接到编辑/查看项目?",
"Tracker fields" => "跟踪范围",
"is_main" => "is_main",
"Tbl vis" => "Tbl vis",
"Create/edit trackers" => "创建/编辑跟踪�务",
"There are inddividual permissions set for this tracker" => "这个跟踪�务有独立的��控管",//perhaps not used
"Show status when listing tracker items?" => "显示跟踪项目的�时显示状�?",
"Show creation date when listing tracker items?" => "显示跟踪项目的�时显示创建时间?",
"Show last_modified date when listing tracker items?" => "显示跟踪项目的�时显示最�修改时间?",
"Tracker items allow comments?" => "�许跟踪�务有评论功能?",
"Tracker items allow attachments?" => "�许跟踪�务有附件功能?",
"items" => "项目",
"fields" => "范围",
"search category" => "�索分类",
"Change password enforced" => "强制修改 密�",
"Page alias" => "Page alias",
"page" => "页�",
"page|desc" => "页�|注释",
"SomeName" => "æŸ?些å??ç§°",
"some text" => "�些文本",
"Non parsed sections" => "�解��目",
"Prevents parsing data" => "阻止资料的解�",
"b" => "b",//perhaps not used
"i" => "i",//perhaps not used
"ul" => "u",//perhaps not used
"a" => "URL",//perhaps not used
"h1" => "h1",//perhaps not used
"h2" => "h2",//perhaps not used
"h3" => "h3",//perhaps not used
"tbl" => "表格",//perhaps not used
"dcs" => "动�内容",//perhaps not used
"center" => "居中",
"col" => "颜色",//perhaps not used
"img nc" => "img nc",
"chars" => "特殊字符",//perhaps not used
"The SandBox is a page where you can practice your editing skills, use the preview feature to preview the appeareance of the page, no versions are stored for this page." => "沙盒是一个�以练习编辑技巧的页�, 使用预览的功能�预览这个页�的样�, 而这个页�将�会被�存.",
"Import page" => "导入页�",
"export all versions" => "导出所有版本",
"Upload picture" => "上传图片",
"Import pages from a PHPWiki Dump" => "从 PHPWiki Dump 中导入页�",
"Path to where the dumped files are" => "Dump文件的路径",//perhaps not used
"Overwrite existing pages if the name is the same" => "如果文件å??相å?Œåˆ™è¦†ç›–旧文件",
"Previously remove existing page versions" => "预先删除存在的页�版本",
"import" => "导入",
"ver" => "版本",
"excerpt" => "引用",
"Survey stats" => "调查统计",
"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." => "感谢您的æ??交。您很快将会收到关于您的æ??交的确认信。
�有在您确认之��会收到您所订阅的邮件",//perhaps not used
"Your email address was removed from the list of subscriptors." => "您的EMAIL地�已�从邮件列表中删除。",
"Subscription confirmed!" => "您的æ??交已被确认!",
"Subscribe to newsletter" => "订阅简报",
"Email:" => "Email:",
"Subscribe" => "订阅",
"similar" => "类似的",
"slides" => "slides",
"export" => "导出",
"Pick your avatar" => "选择您的头�",
"Pick user Avatar" => "选择用户头�",
"Your current avatar" => "您现在的头�",
"Upload your own avatar" => "上传您自己的头�",
"File" => "文件",
"Send newsletters" => "��简报",
"cancel" => "�消",
"Prepare a newsletter to be sent" => "准备���的简报",
"Subject" => "标题",
"Send Newsletters" => "��简报",
"Sent editions" => "已��的版本",
"subject" => "标题",
"sent" => "已��",
"Average posts pero weblog" => "平��个网络日志中的布告数",
"Stats for surveys" => "调查统计",
"Survey" => "问�调查",
"Last taken" => "最近访问",
"Stats for survey" => "调查统计",
"Stats for this survey Questions " => "关于这个调查问题的统计",
"Batch upload" => "批�上传",
"Avatar" => "头�",
"at tracker" => "在跟踪�务中",
"view comments" => "查看评论",
"Insert new item" => "�入新的项目",
"Tracker Items" => "跟踪项目",
"Filters" => "过滤器",
"any" => "任何",
"checked" => "被选中的",
"unchecked" => "没有选中的",
"last_modified" => "最�修改的",
"Editing tracker item" => "编辑跟踪项目",
"Edit item" => "编辑项目",
"View item" => "查看项目",
"Add a comment" => "添加评论",
"posted on" => "�表于",
"Attach a file to this item" => "添加附件",
"Attachments" => "附件",
"No attachments for this item" => "这个项目没有附件",
"settings" => "设置",
"mailbox" => "邮箱",
"compose" => "撰写",
"contacts" => "�系人",
"Add new mail account" => "添加新的邮箱��",
"Account name" => "å¸?å?·å??ç§°",
"POP server" => "POP �务器",
"SMTP server" => "SMTP �务器",
"Port" => "端�",
"SMTP requires authentication" => "SMTP �务需�用户验�",
"Yes" => "是",
"No" => "å?¦",
"Username" => "用户å??",
"Messages per page" => "�页显示消�数",
"User accounts" => "用户��",
"account" => "��",
"pop" => "pop",
"View All" => "查看所有",
"Unread" => "未读",
"Flagged" => "标记的",
"Msg" => "消�",
"First" => "第一�",
"Prev" => "上一�",
"Mark as Flagged" => "打上标记",
"Mark as unflagged" => "除去标记",
"Mark as read" => "标记为已读",
"Mark as unread" => "标记为未读",
"ok" => "ok",
"sender" => "�信人",
"Next" => "下一�",
"back to mailbox" => "回到邮箱",
"full headers" => "显示所有header信�",
"normal headers" => "普通的header信�",
"reply" => "回�",
"reply all" => "回�所有",
"forward" => "转�",
"To" => "收件人",
"Cc" => "抄�",
"Create/edit contacts" => "创建/编辑�系人",
"Nickname" => "昵称",
"Contacts" => "�系人",
"First Name" => "å??",
"select from address book" => "从地�簿中选择",
"cc" => "抄�",
"bcc" => "暗�",
"Use HTML mail" => "使用HTML格�的邮件",
"The following addresses are not in your address book" => "您的地�簿中没有下列邮箱",
"Last Name" => "å§“",
"add contacts" => "添加�系人",
"Attachment 1" => "附件 1",
"Attachment 2" => "附件 2",
"Attachment 3" => "附件 3",
"done" => "完�",
"Address book" => "地�簿",
"Viewing blog post" => "查看网络日志布告",
"Return to blog" => "回到网络日志",
"Wiki Import dump" => "Wiki 导入 dump",
"phpinfo" => "phpinfo",
"List Trackers" => "跟踪�务列表",
"List Surveys" => "问�调查列表",
"Last Modified Items" => "最近修改项目",
"Last Items" => "最近项目",
"standard" => "标准",
"secure" => "安全",
"stay in ssl mode" => "�留 ssl 模�",
"Missing title or body when trying to post a comment" => "�表评论时缺少标题或正文",
"No newsletter indicated" => "没有指定简报",
"No survey indicated" => "没有指定问�调查",
"No tracker indicated" => "没有指定跟踪�务",
"You cant use the same password again" => "您�能�次使用相�密�",//perhaps not used
"Password should be at least" => "至少得有密�",
"characters long" => "字符串长度",
"Password must contain both letters and numbers" => "密�必须�时包�字符和数字",
"You dont have permission to do that" => "抱歉,您没有��",
"You must be logged in to subscribe to newsletters" => "您必须登录��能订阅邮件",
"You cannot take this survey twice" => "您�能对一个调查投两次票",
"You have to provide a name to the file" => "您必须为这个文件æ??供一个文件å??",//perhaps not used
"No item indicated" => "没有指定项目",
"No post indicated" => "没有指定帖�",
"parent" => "父",
"directory" => "站点目录",
"userfiles" => "用户文件",//perhaps not used
"Directory" => "站点目录",
"User Messages" => "用户消�",
"User Tasks" => "用户计划任务",
"Newsreader" => "阅读新闻",
"Contact" => "�系",
"User Notepad" => "用户写字�",
"User files" => "用户文件",
"User menu" => "用户��",
"Mini calendar" => "迷您日历",
"Ephemerides" => "行事历",
"Theme control" => "管�布景主题",
"Theme Control" => "管�布景主题",
"OS" => "�作系统",
"Unix" => "Unix",
"Windows" => "Windows",
"Unknown/Other" => "未知/其他",
"Use database for translation" => "使用数�库�翻译",
"Record untranslated" => "未翻译的记录",
"Temporary directory" => "临时文件夹",
"Map" => "地图",
"Help" => "帮助",
"Contact user" => "站点�系人",
"contact feature disabled" => "�系人功能已关闭",
"Remember me feature" => "记�登录功能",
"Disabled" => "关闭",
"Only for users" => "仅适用于用户",
"Users and admins" => "用户和管�员",
"Duration:" => "期�:",
"week" => "周",
"Remove a tag" => "删除一个tag",
"mins" => "分钟",
"Cache wiki pages" => "缓存 wiki 页�",
"no cache" => "没有缓存",
"Footnotes" => "脚注",
"Users can save pages to notepad" => "用户能��存页�到写字�",//perhaps not used
"Users can lock pages (if perm)" => "用户能够�定页� (如果有��)",
"Tables syntax" => "表格语法",
"|| for rows" => "|| 表示行",
"\n for rows" => "\n 表示行",//perhaps not used
"Wiki History" => "Wiki 历�",
"Forum settings" => "论�设定",//perhaps not used
"Allow wiki markup" => "�许 wiki 标记",//perhaps not used
"Describe topics in listing" => "在列表中æ??述主题",//perhaps not used
"Allow viewing HTML mails" => "�许查看HTML格�的邮件",//perhaps not used
"Unlimited" => "æ— é™?",//perhaps not used
"Number of columns per page when listing categories" => "显示分类时�一页显示的列数",
"Links per page" => "�一页的链接数",
"Validate URLs" => "验�URL",
"Method to open directory links" => "打开站点目录链接的方法",
"replace current window" => "当�窗�",
"new window" => "新窗�",
"inline frame" => "嵌入帧",
"Quota (Mb)" => "大��制 (Mb)",
"Use database to store userfiles" => "使用数�库�存用户文件",
"Use a directory to store userfiles" => "使用一个文件夹�存用户文件",
"top" => "top",
"subs" => "æ??交",
"objs" => "对象",
"article" => "文章",
"blog" => "网络日志",
"image gal" => "图�库",
"file gal" => "下载中心",
"forum" => "论�",
"poll" => "调查",
"faq" => "FAQ",
"quiz" => "测验",
"Chat Administration" => "�天室管�",
"Chat channels" => "�天频�",
"Admin content templates" => "内容模�管�",
"Remove all cookies" => "删除所有的cookie",
"Edit drawings &amp; pictures" => "编辑绘图和图片",//perhaps not used
"Admin Forums" => "论�管�",
"secs" => "ç§’",
"min" => "分",
"Add Hotword" => "添加热门字",
"Edit this page" => "编辑本页",
"Admin layout" => "管�版�",
"List of featured links" => "功能链接列表",
"Admin Menus" => "管�员��",
"
<b>Note 1</b>: if you allow your users to configure modules then assigned
modules won't be reflected in the screen until you configure them
from MyTiki->modules.<br />
<b>Note 2</b>: If you assign modules to groups make sure that you
have turned off the option 'display modules to all groups always'
from Admin->General
" => "
<b>注 1</b>: 如果您å…?许用户é…?置模组,那么å?ªæœ‰åœ¨MyTiki->模组中é…?置过å?Žï¼Œæ‰€æŒ‡å®šçš„æ¨¡ç»„æ‰?会有å??应。<br />
<b>注 2</b>: 如果您将一些模组指定给�些群组,那么请确认您在 管�员->一般 中关闭了'永远在所有群组中显示模组'这个选项
",//perhaps not used
"left" => "å·¦",
"right" => "å?³",
"Assigned Modules" => "指定模组",
"Left Modules" => "左边的模组",
"Right Modules" => "�边的模组",
"Edit/Create user module" => "编辑创建用户模组",
"All galleries" => "所有的陈列库",
"Admin newsletter subscriptions" => "管�简报的订阅状况",
"Admin newsletters" => "管�简报",
"Admin Polls" => "管�调查",
"Poll options" => "调查选项",
"Set last poll as current" => "将最近一次的调查设�当�调查",
"Close all polls but last" => "结�除了最近的调查之外的所有调查",
"Activate all polls" => "激活所有调查",
"at" => "在",
"Admin RSS modules" => "管� RSS 模组",
"Rss channels" => "Rss 通�",
"Structures" => "结构",
"Create new structure" => "创建新的结构",
"Structure" => "结构",
"Edit survey questions" => "编辑调查问题",
"Create/edit questions for survey" => "为调查创建/编辑问题",
"Admin surveys" => "管�调查",
"Create a new topic" => "创建一个新的主题",
"Topic Name" => "主题å??ç§°",
"List of topics" => "主题列表",
"Admin tracker" => "管�跟踪�务",
"There are individual permissions set for this tracker" => "这个跟踪�务有独立的��控管",
"trackers" => "跟踪�务",
"assign_perms" => "授�",
"Create level" => "创建等级",
"all permissions in level" => "所有��在等级",
"update" => "æ›´æ–°",
"Content Templates" => "内容模�",
"DSN" => "DSN",
"level" => "等级",
"assgn" => "指定",
"List of available backups" => "�用备份列表",
"Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the 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" => "创建一个备份将会花上一段较长的时间.如果进程没有正常结�,您将看到一个空白的页�。
如果这样的�,您就必须修改php.ini中的脚本执行最大时间�让脚本正常结�。",
"view blog" => "查看网络日志",
"list blogs" => "网络日志列表",
"Objects" => "对象",
"original size" => "原始大�",
"rotate right" => "�旋",
"rotate left" => "左旋",//perhaps not used
"Klick to enlarge" => "点击放大",
"smaller" => "æ›´å°?",
"bigger" => "更大",
"Welcome to the Tiki Chat Rooms" => "欢迎�到 Tiki �天室",
"Please select a chat channel" => "请选择一个�天频�",
"Browser not supported" => "�览器�支�",
"Channel" => "频�",
"Ratio" => "比率",
"Directory Administration" => "目录管�",
"Statistics" => "统计",
"There are" => "一共有",
"invalid sites" => "无效站点",
"valid sites" => "有效站点",
"Users have visited" => "用户�览过这个站点目录中的",
"sites from the directory" => "个站点",
"Users have searched" => "用户在这个文件夹中�索过",
"times from the directory" => "次",
"Admin sites" => "管�站点",
"Admin category relationships" => "管�分类关系",
"Validate links" => "验�链接",
"Settings" => "设定",
"browse" => "�览",
"related" => "相关",
"sites" => "站点",
"validate" => "验�",
"Admin directory categories" => "管�目录分类",
"Parent category" => "父分类",
"Add or edit a category" => "添加或编辑一个分类",
"Children type" => "�类型",
"Most visited sub-categories" => "�览次数最多的�分类",
"Category description" => "分类æ??è¿°",
"Random sub-categories" => "�机�分类",
"Maximum number of children to show" => "显示的最大�分类数",
"Allow sites in this category" => "�许这个分类中的站点",
"Show number of sites in this category" => "显示这个分类中的站点数",
"Editor group" => "编辑者群组",
"Subcategories" => "�分类",
"cType" => "�类型",
"allow" => "�许",
"count" => "计数",
"editor" => "编辑者",
"relate" => "相关",
"Admin related categories" => "管�相关分类",
"Category" => "分类",
"Mutual" => "共有的",
"Related categories" => "相关分类",
"category" => "分类",
"Add or edit a site" => "添加或修改一个站点",
"Country" => "国家或地区",
"Is valid" => "是有效的",
"Sites" => "站点",
"country" => "国家或地区",
"Validate sites" => "验�站点",
"list articles" => "文章列表",
"view articles" => "�览文章",
"There are individual permissions set for this blog" => "这个网络日志有独立的��控管",
"data" => "æ•°æ?®",
"Create/edit options for question" => "为问题创建/编辑选项",
"Create/edit questions for quiz" => "为测验创建/编辑问题",
"In parent page" => "在父页�",
"After page" => "在页�之�",
"create page" => "创建页�",
"You will remove" => "您将会删除",
"and its subpages from the structure, now you have two options:" => "和它在这个结构中的�页�,现在您有两个选择:",
"Remove only from structure" => "仅在结构中删除",
"Remove from structure and remove page too" => "在结构中删除的�时删除页�",
"list submissions" => "æ??交记录列表",
"There are individual permissions set for this file gallery" => "这个文件库有独立的��控管",
"There are individual permissions set for this gallery" => "这个图�库有独立的��控管",
"Availible scales" => "�用比例",//perhaps not used
"No scales availible" => "没有�用比例",//perhaps not used
"Add scaled images size X x Y" => "添加图�缩放比例",
"Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)" => "Dump文件的存储路径 (相对于tiki的所在路径,以/结尾,例如:dump/)",
"hist" => "历�",
"edit new article" => "编辑新文章",
"Create banner" => "创建Banner",
"edit blog" => "编辑网络日志",
"Create or edit content block" => "创建或编辑内容��",
"Available FAQs" => "现有的FAQ",
"edit new submission" => "编辑新æ??交的内容",
"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." => "感谢您的æ??交。您很快将会收到关于您的æ??交的确认信。
�有在您确认之��会收到您所订阅的邮件。",
"Assign permissions to " => "授�给 ",
"to group" => "给群组",
"rename" => "é‡?命å??",
"Diff to version" => "��之处,对于版本",
"source" => "�",
"Assign permissions to page" => "授�给页�",
"Send email notifications when this page changes to" => "��EMAIL通知,当本页改�到",
"add email" => "添加邮箱",
"Notifications" => "通知",
"Pick avatar from the library" => "从库中选择头�",
"Received Articles" => "接收到的文章",
"Received pages" => "接收到的页�",
"wiki pages" => "wiki 页�",//perhaps not used
"Relevance" => "关�度",
"locked by" => "�定者",
"Save to notepad" => "�存到写字�",
"pvs" => "pvs",
"display" => "显示",
"Mb" => "å…†",
"bytes" => "字节",
"This is" => "这是",
"by the" => "开�者:",
"use filename" => "使用文件å??",
"unassign" => "去除指定",
"Current folder" => "当�文件夹",
"User information" => "用户信�",
"private" => "�密",
"public" => "公开",
"Use dbl click to edit pages" => "通过�击鼠标编辑页�",
"Allow messages from other users" => "�许其他用户��的消�",
"Send me an email for messages with priority equal or greater than" => "��Email给我,通知优先级等于或大于",
"Tasks per page" => "�页显示任务数",
"My Tiki" => "我的 Tiki",
"My pages" => "我的页�",
"My messages" => "我的消�",
"My tasks" => "我的计划任务",
"My items" => "我的项目",
"Print" => "打�",
"replies" => "回�",
"pts" => "分数",
"quote" => "�制",//perhaps not used
"private message" => "悄悄�",
"Tasks" => "计划任务",
"All tasks" => "所有任务",
"mark as done" => "标记为已完�",
"open tasks" => "打开任务",
"start" => "开始",
"priority" => "优先级",
"completed" => "已完�",
"Add or edit a task" => "添加或编辑一个任务",
"Start date" => "开始日期",
"Completed" => "已完�",
"Priority" => "优先级",
"Percentage completed" => "完�百分比",
"in entire directory" => "在整个目录中",
"in current category" => "在当�分类中",
"name (desc)" => "å??ç§° (é™?åº?)",
"name (asc)" => "å??ç§° (å?‡åº?)",
"hits (desc)" => "点击数 (��)",
"hits (asc)" => "点击数 (��)",
"creation date (desc)" => "创建日期 (��)",
"creation date (asc)" => "创建日期 (��)",
"last updated (desc)" => "最近修改 (��)",
"last updated (asc)" => "最近修改 (��)",
"Added" => "添加",
"new sites" => "æ–°ç«™",
"cool sites" => "é…·ç«™",
"add a site" => "添加站点",
"Total categories" => "全部分类",
"Total links" => "全部链接",
"Links to validate" => "待验�的链接",
"Searches performed" => "�索次数",
"Total links visited" => "链接访问总数",
"Add a new site" => "添加新站点",
"Site added" => "站点已添加",
"The following site was added and validation by admin may be needed before appearing on the lists" => "以下站点已添加,但在列表中显示之�还需通过管�员的验�。",
"Directory ranking" => "目录排å??",
"Mailin accounts" => "Mailin ��",
"wiki-get" => "wiki-get",
"wiki-put" => "wiki-put",
"wiki-append" => "wiki-append",
"Send me a message" => "给我��一�消�",
"Lowest" => "最低",
"Low" => "低",
"Normal" => "普通",
"High" => "高",
"Very High" => "最高",
"Read message" => "读消�",
"Return to messages" => "回到消�页�",
"replyall" => "全部回�",
"Unflagg" => "�消标记",
"Flag this message" => "标记这�消�",
"Compose message" => "撰写消�",
"CC" => "抄�",
"BCC" => "暗�",
"Unflagged" => "�消标记",
"1" => "1",
"2" => "2",
"3" => "3",
"4" => "4",
"5" => "5",
"Mark as flagged" => "标记",
"No messages to display" => "没有消�",
"Mailbox" => "邮箱",
"Compose" => "撰写",
"Broadcast" => "广播",
"Broadcast message" => "广播消�",
"All users" => "所有用户",
"Contact us" => "�系我们",
"Send a message to us" => "给我们��一�消�",
"Contact us by email" => "通过EMAIL�系我们",
"User Galleries" => "用户图库",
"Assigned items" => "指定的项目",
"Unread Messages" => "未读消�",
"Edit or ex/import Languages" => "编辑或导入/导出语言",
"Edit and create Languages" => "编辑和创建语言",
"Im- Export Languages" => "导入/导出语言",
"Edit and create languages" => "编辑和创建语言",
"Create Language" => "创建语言",
"Shortname" => "简称",
"like" => "�",
"Longname" => "å…¨å??",
"Select the language to edit" => "选择�编辑的语言",
"Add a translation" => "添加一个翻译项",
"Edit translations" => "编辑翻译项",
"Translate recorded" => "翻译记录",
"Original" => "原文",
"Translation" => "翻译结果",
"translate" => "翻译",
"reset table" => "�置数�表",
"previous page" => "上一页",
"next page" => "下一页",
"Im- Export languages" => "导入/导出语言",
"Select the language to Import" => "选择�导入的语言",
"Select the language to Export" => "选择�导出的语言",
"MyTiki" => "我的Tiki",
"Prefs" => "选项",
"Notepad" => "写字�",
"MyFiles" => "我的文件",
"Calendar" => "�日历",
"Configure news servers" => "设置新闻组�务",
"Select a news server to browse" => "选择��览的新闻组�务器",
"server" => "�务器",
"Add or edit a news server" => "添加或编辑一个新闻组�务器",
"News server" => "新闻组�务器",
"port" => "端�",
"Select news group" => "选择一个新闻组",
"Back to servers" => "回到�务器页�",
"Msgs" => "消�",
"Newss from" => "新闻�自",
"Back to groups" => "回到组页�",
"Save position" => "�存�置",
"Reading article from" => "阅读文章,�自",
"Back to list of articles" => "回到文章列表页�",
"Newsgroup" => "新闻组",
"Notes" => "注解",
"quota" => "�制",
"Write a note" => "写注解",
"Reading note:" => "阅读注解:",
"List notes" => "注解列表",
"Write note" => "填写注解",
"User Files" => "用户文件",
"Theme Control Center: categories" => "布景主题管�中心: 分类",
"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 a theme for the section 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" => "最�,如果用户没有选择自己的布景主题,将使用系统默认的布景主题",
"Control by Object" => "由对象控制",
"Control by Sections" => "由�目控制",
"Assign themes to categories" => "为分类指定布景主题",
"Assigned categories" => "指定的分类",
"theme" => "布景主题",
"Admin ephemerides" => "管�行事历",
"All ephemerides" => "行事历所有内容",
"Theme Control Center: Objects" => "布景主题控制中心: 对象",
"Control by category" => "由以下分类控制:",
"Assign themes to objects" => "为对象指定布景主题",
"Object" => "对象",
"Assigned objects" => "指定的对象",
"Theme Control Center: sections" => "布景主题控制中心: �目",
"Control by Categories" => "由分类控制",
"Assign themes to sections" => "为�目指定布景主题",
"Assigned sections" => "指定的�目",
"Mini Calendar: Preferences" => "迷您日历: 选项",
"Daily" => "�天",
"Weekly" => "�周",
"Calendar Interval in daily view" => "列表中显示的时间间隔",
"Start hour for days" => "开始钟点",
"End hour for days" => "结�钟点",
"Upcoming events" => "�将�生的事件",
"Reminders" => "æ??醒",
"no reminders" => "没有æ??醒",
"Import CSV file" => "导入 CSV 文件",
"Or enter path or URL" => "或者输入路径或URL",
"add topic" => "添加主题",
"topic image" => "主题图片",
"User Menu" => "用户��",
"May need to refresh twice to see changes" => "�能需�刷新两次�能看到�化",
"Add top level bookmarks to menu" => "添加顶级的书签到��中",
"Pos" => "ä½?ç½®",
"Mode" => "模�",
"Add or edit an item" => "添加或编辑项目",
"replace window" => "替�窗�",
"Mini Calendar" => "迷您日历",
"Import" => "导入",
"Remove old events" => "删除旧事件",
"duration" => "期�",
"topic" => "主题",
"h" => "h",
"Add or edit event" => "添加或编辑事件",
"Start" => "开始",
"Duration" => "期�",
"Admin external wikis" => "管�外部wiki",
"Create/edit extwiki" => "创建/编辑外部wiki",
"URL (use \$page to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=\$page)" => "URL (在URL中使用 \$page 替æ?¢é¡µé?¢å??称,例å­?:http://www.example.com/wiki/index.php?page=\$page)",
"extwiki" => "外部wiki",
"Admin dsn" => "管� dsn",
"Create/edit dsn" => "创建/编辑 dsn",
"dsn" => "dsn",
"Rename page" => "é‡?命å??页é?¢",
"New name" => "æ–°å??å­—",
"Mail-in" => "Mail-in",
"External wikis" => "外部 wiki",
"contact us" => "�系我们",
"My files" => "我的文件",
"structures" => "结构",
"List forums" => "论�列表",
"Browse Directory" => "�览目录",
"Admin directory" => "管�目录",
"Admin quiz" => "管�测验",
"Admin (click!)" => "管���(点击!)",
"Edit languages" => "编辑语言",
"online users" => "在线用户",
"Remember me" => "记�我的登录",
"Tiki Logo" => "Tiki Logo",
"User tasks" => "用户任务",
"You have" => "您有",
"new message" => "新消�",
"Last Sites" => "最新的站点",
"Top Sites" => "热门站点",
"Directory Stats" => "目录统计",
"Sites to validate" => "待验�的站点",
"Searches" => "�索",
"Visited links" => "访问的链接",
"TOP" => "TOP",
"Permission denied you can not view this section" => "没有��,您�能访问此�目",
"Permission denied you cannot rebuild thumbnails in this gallery" => "没有��,您�能给这个图库�建缩略图",
"Permission denied you cannot rotate images in this gallery" => "没有��,您�能在这个图库旋转图�",
"You can not use the same password again" => "您�能�次使用旧密�",
"Permission denied" => "���足",
"Mus enter a name to add a site" => "必须输入一个å??å­—æ‰?能添加站点",
"Must enter a url to add a site" => "必须输入一个URL�能添加站点",
"Must select a category" => "必须选择一个分类",
"You can not download files" => "您�能下载文件",
"No structure indicated" => "没有指定结构",
"Invalid email address. You must enter a valid email address" => "无效的EMAIL地�,您必须输入一个有效的EMAIL地�",
"No site indicated" => "没有指定站点",
"Must enter a name to add a site" => "必须输入一个å??å­—æ‰?能添加站点",
"URL already added to the directory. Duplicate site?" => "目录中已�有这个URL,是��的站点�?",
"URL cannot be accessed wrong URL or site is offline and cannot be added to the directory" => "URL ��达,�能是因为输入了错误的URL或者站点暂时无法连接。URL地�将�能被输入到目录库中",
"You are not logged in and no user indicated" => "您还没有登录,或者没有指定用户",
"The user has choosen to make his information private" => "用户无法�密自己的用户信�",
"Shortname must be 2 Characters" => "简称必须是两个英文字符",
"You must provide a longname" => "您必须指定一个全å??",
"Language created" => "语言被创建",
"Page must be defined inside a structure to use this feature" => "�使用这个功能的�,页�必须被指定在一个结构中",
"Must be logged to use this feature" => "必须登录��能使用这个功能",
"No server indicated" => "没有指定�务器",
"Cannot connect to" => "�能连接到",
"Missing information to read news (server,port,username,password,group) required" => "缺少新闻组æœ?务器的设定信æ?¯(æœ?务器å??,端å?£,用户å??,密ç ?,新闻组)",
"Cannot get messages" => "�能得到消�",
"File is too big" => "文件太大",
"No note indicated" => "没有指定注解",
"PEAR::Auth" => "PEAR::Auth",
"Create user if not in Tiki?" => "�在Tiki时创建用户�?",
"Create user if not in Auth?" => "Create user if not in Auth?",
"Just use Tiki auth for admin?" => "仅使用Tiki验��验�Admin身份?",
"LDAP Host" => "LDAP 主机",
"LDAP Port" => "LDAP 端�",
"LDAP Scope" => "LDAP 范围",
"LDAP Base DN" => "LDAP æ ¹ DN",
"LDAP User DN" => "LDAP 用户 DN",
"LDAP User Attribute" => "LDAP 用户属性",
"LDAP User OC" => "LDAP 用户 OC",
"LDAP Group DN" => "LDAP 组 DN",
"LDAP Group Atribute" => "LDAP 组属性",
"LDAP Group OC" => "LDAP 组 OC",
"LDAP Member Attribute" => "LDAP �员属性e",
"LDAP Member Is DN" => "LDAP �员是 DN",
"LDAP Admin User" => "LDAP 管�员��",
"LDAP Admin Pwd" => "LDAP 管�员密�",
"MyTiki (click!)" => "我的TiKi(点击!)",
"Library to use for processing images" => "选择处�图�的PHP库",
"draws" => "绘图",//perhaps not used
"create new gallery" => "创建新库",
"Actions" => "�作",
"List Games" => "游�列表",//perhaps not used
"Gallery Images" => "图片列表",
"Wiki top pages" => "Wiki 热门页�",
"Wiki top galleries" => "热门图库",
"Forums last topics" => "论�新贴",
"Forum posts" => "论�帖�数",
"Wiki top articles" => "热门文章",
"Top images" => "热门图片",//perhaps not used
"Last images" => "最新图片",//perhaps not used
"Wiki top files" => "热门文件",
"Top pages" => "热门页�",
"Last pages" => "最新页�",
"Most relevant pages" => "相关性最强页�",
"Top authors" => "�表最多作者",
"Top visited blogs" => "热门日志",
"Last posts" => "最新日志布告",
"Top active blogs" => "最活跃的日志",
"Top visited file galleries" => "热门文件库",//perhaps not used
"Most downloaded files" => "热门文件",//perhaps not used
"Last files" => "最新文件",//perhaps not used
"Topic date" => "�表日期",
"Forums best topics" => "最佳�题",
"Forums most read topics" => "阅读次数最多的帖�",
"Forums with most posts" => "帖�最多的论�",
"Forums most visited forums" => "�览最多的论�",
"Wiki last pages" => "Wiki 最新页�",
"Modified" => "修改时间",
"Wiki top authors" => "�表最多的作者",
"Wiki top images" => "热门图片",
"Wiki last images" => "最新图片",
"Upload date" => "上传时间",
"Top article authors" => "�表最多的作者",
"Blogs last posts" => "日志中的最新布告",
"Post date" => "�表时间",
"Most active blogs" => "最活跃的日志",
"Wiki top file galleries" => "热门文件库",
"Wiki last files" => "最新上传文件",
"You will receive an email with your password soon" => "You will receive an email with your password soon",//perhaps not used
"Thank you for you registration. You may log in now." => "Thank you for you registration. You may log in now.",
"Batch upload (CSV file)" => "Batch upload (CSV file)",
"Overwrite" => "Overwrite",
"Displays the user Avatar" => "Displays the user Avatar",
"Centers the plugin content in the wiki page" => "Centers the plugin content in the wiki page",
"Displays a snippet of code.
Set optional paramater -+ln+- to 1 if you need line numbering feature." => "Displays a snippet of code.
Set optional paramater -+ln+- to 1 if you need line numbering feature.",//perhaps not used
"No description available" => "No description available",
"Displays a graphical GAUGE" => "Displays a graphical GAUGE",
"Renders a graph" => "Renders a graph",
"Insert copyright notices" => "Insert copyright notices",
"Displays a module inlined in page" => "Displays a module inlined in page",
"Insert theme styled box on wiki page" => "Insert theme styled box on wiki page",
"PluginsHelp" => "PluginsHelp",
"Wiki quick help" => "Wiki quick help",
"create new empty structure" => "create new empty structure",
"Create structure from tree" => "Create structure from tree",
"Use single spaces to indent structure levels" => "Use single spaces to indent structure levels",
"tree" => "tree",
"Admin structures" => "Admin structures",
"Click twice if once is not enough !" => "Click twice if once is not enough !",
"Toggle display of comment zone" => "Toggle display of comment zone",
"Copyrights" => "Copyrights",
"Go back" => "Go back",
"In blog listing show user as" => "In blog listing show user as",
"Plain text" => "Plain text",
"Link to user information" => "Link to user information",
"User avatar" => "User avatar",
"Blog listing configuration (when listing available blogs)" => "Blog listing configuration (when listing available blogs)",
"creation date" => "creation date",
"last modification time" => "last modification time",
"activity" => "activity",
"Articles listing configuration" => "Articles listing configuration",
"Author" => "Author",
"Edit css" => "Edit css",
"Workflow engine" => "Workflow engine",
"Use PHPOpenTracker" => "Use PHPOpenTracker",
"Charts" => "Charts",
"User watches" => "User watches",
"Live support system" => "Live support system",
"Banning system" => "Banning system",
"please read" => "please read",
"Gallery listing configuration" => "Gallery listing configuration",
"Accept wiki syntax" => "Accept wiki syntax",
"Forum quick jumps" => "Forum quick jumps",
"Forum listing configuration" => "Forum listing configuration",
"Posts per day" => "Posts per day",
"Last post" => "Last post",
"Display menus as folders" => "Display menus as folders",
"Sender Email" => "Sender Email",
"Repeat password" => "Repeat password",
"Sections" => "Sections",
"Authentication method" => "Authentication method",
"Just Tiki" => "Just Tiki",
"Web Server" => "Web Server",
"Tiki and PEAR::Auth" => "Tiki and PEAR::Auth",
"Tiki and HTTP Auth" => "Tiki and HTTP Auth",
"Use WebServer authentication for Tiki" => "Use WebServer authentication for Tiki",
"Prevent automatic/robot registration" => "Prevent automatic/robot registration",
"Allow viewing HTML mails?" => "Allow viewing HTML mails?",
"PDF Export" => "PDF Export",
"Wiki Discussion" => "Wiki Discussion",
"Discuss pages on forums" => "Discuss pages on forums",
"Wiki page list configuration" => "Wiki page list configuration",
"Creator" => "Creator",
"PDF generation" => "PDF generation",
"Page creators are admin of their pages" => "Page creators are admin of their pages",
"Automonospaced text" => "Automonospaced text",
"Copyright Management" => "Copyright Management",
"Enable Feature" => "Enable Feature",
"License Page" => "License Page",
"Submit Notice" => "Submit Notice",
"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",
"User/IP" => "User/IP",
"Admin Calendars" => "Admin Calendars",
"Create/edit Calendars" => "Create/edit Calendars",
"Custom Locations" => "Custom Locations",
"Custom Categories" => "Custom Categories",
"Custom Languages" => "Custom Languages",
"Custom Priorities" => "Custom Priorities",
"List of Calendars" => "List of Calendars",
"loc" => "loc",
"cat" => "cat",
"lang" => "lang",
"prio" => "prio",
"Admin chart items" => "Admin chart items",
"charts" => "charts",
"edit chart" => "edit chart",
"Chart items" => "Chart items",
"No items defined yet" => "No items defined yet",
"Admin charts" => "Admin charts",
"Add or edit a chart" => "Add or edit a chart",
"Users can vote only one item from this chart per period" => "Users can vote only one item from this chart per period",
"Prevent users from voting same item more than one time" => "Prevent users from voting same item more than one time",
"Users can suggest new items" => "Users can suggest new items",
"Auto validate user suggestions" => "Auto validate user suggestions",
"Ranking shows" => "Ranking shows",
"All items" => "All items",
"Top 10 items" => "Top 10 items",
"Top 20 items" => "Top 20 items",
"Top 40 items" => "Top 40 items",
"Top 50 items" => "Top 50 items",
"Top 100 items" => "Top 100 items",
"Top 250 items" => "Top 250 items",
"Voting system" => "Voting system",
"Vote items" => "Vote items",
"Rank 1..5" => "Rank 1..5",
"Rank 1..10" => "Rank 1..10",
"Ranking frequency" => "Ranking frequency",
"Realtime" => "Realtime",
"Each 5 minutes" => "Each 5 minutes",
"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",
"Edit drawings" => "Edit drawings",
"Ver" => "Ver",
"Show description" => "Show description",
"Moderator user" => "Moderator user",
"Moderator group" => "Moderator group",
"Password protected" => "Password protected",
"Topics only" => "Topics only",
"All posts" => "All posts",
"Forum password" => "Forum password",
"Date (asc)" => "Date (asc)",
"Topic list configuration" => "Topic list configuration",
"Replies" => "Replies",
"Threads can be voted" => "Threads can be voted",
"Forward messages to this forum to this email" => "Forward messages to this forum to this email",
"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",
"user level" => "user level",
"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",
"Directory (include trailing slash)" => "Directory (include trailing slash)",
"Max attachment size (bytes)" => "Max attachment size (bytes)",
"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",
"Menu options" => "Menu options",
"Use wysiwyg editor" => "Use wysiwyg editor",
"Use normal editor" => "Use normal editor",
"Subscriptions" => "Subscriptions",
"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",
"export pages" => "export pages",
"dump tree" => "dump tree",
"stat" => "stat",
"Batch Upload Results" => "Batch Upload Results",
"Added users" => "Added users",
"Rejected users" => "Rejected users",
"Reason" => "Reason",
"Number of displayed rows" => "Number of displayed rows",
"Workflow" => "Workflow",
"ExtWikis" => "ExtWikis",
"Live support" => "Live support",
"Use ...page... to separate pages in a multi-page post" => "Use ...page... to separate pages in a multi-page post",
"Upload image for this post" => "Upload image for this post",
"Send trackback pings to:" => "Send trackback pings to:",
"(comma separated list of URIs)" => "(comma separated list of URIs)",
"save and exit" => "save and exit",
"rotate" => "rotate",
"popup" => "popup",
"first image" => "first image",
"last image" => "last image",
"Popup window" => "Popup window",
"popup window" => "popup window",
"Calendars Panel" => "Calendars Panel",
"Navigation Panel" => "Navigation Panel",
"Hide Panels" => "Hide Panels",
"Refresh" => "Refresh",
"Group Calendars" => "Group Calendars",
"check / uncheck all" => "check / uncheck all",
"Tools Calendars" => "Tools Calendars",
"hide from display" => "hide from display",
"Tiki Calendars" => "Tiki Calendars",
"today" => "today",
"+1d" => "+1d",
"+7d" => "+7d",
"+1m" => "+1m",
"browse by" => "browse by",
"month" => "month",
"+" => "+",
"Edit Calendar Item" => "Edit Calendar Item",
"If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose)." => "If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose).",
"or create a new category" => "or create a new category",
"Location" => "Location",
"or create a new location" => "or create a new location",
"Organized by" => "Organized by",
"comma separated usernames" => "comma separated usernames",
"from the list" => "from the list",
"choose" => "choose",
"Participants" => "Participants",
"comma separated username:role" => "comma separated username:role",
"Chair" => "Chair",
"Required" => "Required",
"Optional" => "Optional",
"with roles" => "with roles",
"End" => "End",
"Url" => "Url",
"Tentative" => "Tentative",
"Confirmed" => "Confirmed",
"Cancelled" => "Cancelled",
"duplicate" => "duplicate",
"You should first ask that a calendar is created, so you can create events attached to it." => "You should first ask that a calendar is created, so you can create events attached to it.",
"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",
"Select Wiki Pages" => "Select Wiki Pages",
"reset" => "reset",
"Add a related category" => "Add a related category",
"sort" => "sort",
"Float text around image" => "Float text around image",
"Use ...page... to separate pages in a multi-page article" => "Use ...page... to separate pages in a multi-page article",
"Edit or create banners" => "Edit or create banners",
"List banners" => "List banners",
"Show the banner only on" => "Show the banner only on",
"Current heading" => "Current heading",
"Use titles in blog posts" => "Use titles in blog posts",
"Allow search" => "Allow search",
"Allow comments" => "Allow comments",
"Blog heading" => "Blog heading",
"Edit Style Sheet" => "Edit Style Sheet",
"Style Sheet" => "Style Sheet",
"save a custom copy" => "save a custom copy",
"Cancel" => "Cancel",
"choose a stylesheet" => "choose a stylesheet",
"try" => "try",
"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.",
"Multi-page pages" => "Multi-page pages",
"use ...page... to separate pages" => "use ...page... to separate pages",
"italic" => "italic",
"heading" => "heading",
"horizontal ruler" => "horizontal ruler",
"special characters" => "special characters",
"Edit question options" => "Edit question options",
"Admin quizzes" => "Admin quizzes",
"quizzes" => "quizzes",
"Edit quiz questions" => "Edit quiz questions",
"Available templates" => "Available templates",
"Copyright" => "Copyright",
"License" => "License",
"Important" => "Important",
"Minor" => "Minor",
"Admin FAQ" => "Admin FAQ",
"No suggested questions" => "No suggested questions",
"Listing configuration" => "Listing configuration",
"icon" => "icon",
"id" => "id",
"downloads" => "downloads",
"Name-filename" => "Name-filename",
"Filename only" => "Filename only",
"Max description display size" => "Max description display size",
"configure listing" => "configure listing",
"Message queue for" => "Message queue for",
"back to forum" => "back to forum",
"Edit queued message" => "Edit queued message",
"make this a thread of" => "make this a thread of",
"None, this is a thread message" => "None, this is a thread message",
"summary" => "summary",
"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",
"attachment" => "attachment",
"No messages queued yet" => "No messages queued yet",
"reject" => "reject",
"adm" => "adm",
"Reported messages for" => "Reported messages for",
"Reported by" => "Reported by",
"Activity completed" => "Activity completed",
"Process" => "Process",
"Admin process activities" => "Admin process activities",
"Add or edit an activity" => "Add or edit an activity",
"end" => "end",
"switch" => "switch",
"split" => "split",
"join" => "join",
"standalone" => "standalone",
"interactive" => "interactive",
"auto routed" => "auto routed",
"Add transitions" => "Add transitions",
"Add transition from:" => "Add transition from:",
"Add transition to:" => "Add transition to:",
"roles" => "roles",
"No roles associated to this activity" => "No roles associated to this activity",
"Add role" => "Add role",
"add new" => "add new",
"add role" => "add role",
"Process activities" => "Process activities",
"Int" => "Int",
"Routing" => "Routing",
"Interactive" => "Interactive",
"Automatic" => "Automatic",
"Auto routed" => "Auto routed",
"Manual" => "Manual",
"#" => "#",
"inter" => "inter",
"route" => "route",
"(no roles)" => "(no roles)",
"code" => "code",
"No activities defined yet" => "No activities defined yet",
"Process Transitions" => "Process Transitions",
"List of transitions" => "List of transitions",
"From:" => "From:",
"Origin" => "Origin",
"No transitions defined yet" => "No transitions defined yet",
"Add a transition" => "Add a transition",
"Admin instance" => "Admin instance",
"Instance" => "Instance",
"Workitems" => "Workitems",
"exception" => "exception",
"aborted" => "aborted",
"Owner" => "Owner",
"Send all to" => "Send all to",
"Don't move" => "Don't move",
"Activities" => "Activities",
"Act status" => "Act status",
"run" => "run",
"Properties" => "Properties",
"Property" => "Property",
"Value" => "Value",
"Add property" => "Add property",
"value" => "value",
"Admin processes" => "Admin processes",
"Add or edit a process" => "Add or edit a process",
"This process is invalid" => "This process is invalid",
"Process Name" => "Process Name",
"ver:" => "ver:",
"is active?" => "is active?",
"Or upload a process using this form" => "Or upload a process using this form",
"List of processes" => "List of processes",
"Inactive" => "Inactive",
"act" => "act",
"val" => "val",
"active process" => "active process",
"invalid" => "invalid",
"invalid process" => "invalid process",
"valid process" => "valid process",
"new minor" => "new minor",
"new major" => "new major",
"activities" => "activities",
"No processes defined yet" => "No processes defined yet",
"Admin process roles" => "Admin process roles",
"Add or edit a role" => "Add or edit a role",
"Process roles" => "Process roles",
"No roles defined yet" => "No roles defined yet",
"Map users to roles" => "Map users to roles",
"Roles" => "Roles",
"Anonymous" => "Anonymous",
"map" => "map",
"Map groups to roles" => "Map groups to roles",
"Operation" => "Operation",
"Role" => "Role",
"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",
"Process:" => "Process:",
"Monitor activities" => "Monitor activities",
"List of activities" => "List of activities",
"proc" => "proc",
"auto" => "auto",
"int" => "int",
"routing" => "routing",
"Instances" => "Instances",
"run activity" => "run activity",
"monitor" => "monitor",
"monitor processes" => "monitor processes",
"monitor activities" => "monitor activities",
"monitor instances" => "monitor instances",
"monitor workitems" => "monitor workitems",
"Monitor instances" => "Monitor instances",
"List of instances" => "List of instances",
"act status" => "act status",
"running" => "running",
"No instances created yet" => "No instances created yet",
"Monitor processes" => "Monitor processes",
"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",
"stop" => "stop",
"activate" => "activate",
"graph" => "graph",
"User Activities" => "User Activities",
"process" => "process",
"user processes" => "user processes",
"user activities" => "user activities",
"user instances" => "user instances",
"User instances" => "User instances",
"Inst Status" => "Inst Status",
"exception instance" => "exception instance",
"exceptions instance" => "exceptions instance",
"send instance" => "send instance",
"run instance" => "run instance",
"abort instance" => "abort instance",
"grab instance" => "grab instance",
"release instance" => "release instance",
"No instances defined yet" => "No instances defined yet",
"User processes" => "User processes",
"Browsing Workitem" => "Browsing Workitem",
"Workitem information" => "Workitem information",
"Available scales" => "Available scales",
"No scales available" => "No scales available",
"First page" => "First page",
"Previous page" => "Previous page",
"Next page" => "Next page",
"Last page" => "Last page",
"create new blog" => "create new blog",
"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",
"unlocked" => "unlocked",
"with checked" => "with checked",
"Open operator console" => "Open operator console",
"Open client window" => "Open client window",
"Generate HTML" => "Generate HTML",
"Transcripts" => "Transcripts",
"Support tickets" => "Support tickets",
"Online operators" => "Online operators",
"Operator" => "Operator",
"Accepted requests" => "Accepted requests",
"since" => "since",
"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:",
"Request live support" => "Request live support",
"Request support" => "Request support",
"Open a support ticket instead" => "Open a support ticket instead",
"Your request is being processed" => "Your request is being processed",
"cancel request and exit" => "cancel request and exit",
"cancel request and leave a message" => "cancel request and leave a message",
"Live support:Console" => "Live support:Console",
"be online" => "be online",
"be offline" => "be offline",
"Support requests" => "Support requests",
"Requested" => "Requested",
"Accept" => "Accept",
"Join" => "Join",
"Support chat transcripts" => "Support chat transcripts",
"back to admin" => "back to admin",
"op" => "op",
"started" => "started",
"reason" => "reason",
"msgs" => "msgs",
"Transcript" => "Transcript",
"My watches" => "My watches",
"No notes yet" => "No notes yet",
"merge selected notes into" => "merge selected notes into",
"wiki create" => "wiki create",
"wiki overwrite" => "wiki overwrite",
"No individual permissions global permissions apply" => "No individual permissions global permissions apply",
"discuss" => "discuss",
"attachments" => "attachments",
"Vote poll" => "Vote poll",
"posted by" => "posted by",
"Permalink" => "Permalink",
"referenced by" => "referenced by",
"references" => "references",
"email this post" => "email this post",
"Your registration code:" => "Your registration code:",
"Registration code" => "Registration code",
"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 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.",
"create pdf" => "create pdf",
"pdf" => "pdf",
"monitor this page" => "monitor this page",
"stop monitoring this page" => "stop monitoring this page",
"last modification" => "last modification",
"To edit the copyright notices" => "To edit the copyright notices",
"click here" => "click here",
"The content on this page is licensed under the terms of the" => "The content on this page is licensed under the terms of the",
"Theme is selected as follows" => "Theme is selected as follows",
"Errors detected" => "Errors detected",
"You have to create a gallery first!" => "You have to create a gallery first!",
"move to right column" => "move to right column",
"move to left column" => "move to left column",
"Folders" => "Folders",
"remove folder" => "remove folder",
"remove bookmark" => "remove bookmark",
"refresh cache" => "refresh cache",
"Admin folders and bookmarks" => "Admin folders and bookmarks",
"Is email public? (uses scrambling to prevent spam)" => "Is email public? (uses scrambling to prevent spam)",
"Edit CSS" => "Edit CSS",
"No tasks entered" => "No tasks entered",
"Watches" => "Watches",
"RSS feed" => "RSS feed",
"Edit blog" => "Edit blog",
"monitor this blog" => "monitor this blog",
"stop monitoring this blog" => "stop monitoring this blog",
"read more" => "read more",
"references" => "references",
"Trackback pings" => "Trackback pings",
"URI" => "URI",
"Blog name" => "Blog name",
"viewed" => "viewed",
"edit items" => "edit items",
"list charts" => "list charts",
"last chart" => "last chart",
"previous chart" => "previous chart",
"Chart created" => "Chart created",
"next chart" => "next chart",
"pos" => "pos",
"pre" => "pre",
"perm" => "perm",
"item" => "item",
"chg" => "chg",
"avg" => "avg",
"cool" => "cool",
"info/vote" => "info/vote",
"Next chart will be generated on" => "Next chart will be generated on",
"View or vote items not listed in the chart" => "View or vote items not listed in the chart",
"Select something to vote on" => "Select something to vote on",
"Item information" => "Item information",
"Chart" => "Chart",
"Item" => "Item",
"Permanency" => "Permanency",
"Previous" => "Previous",
"Dif" => "Dif",
"Best Position" => "Best Position",
"Vote this item" => "Vote this item",
"Highest" => "Highest",
"Q" => "Q",
"A" => "A",
"Tiki forums" => "Tiki forums",
"monitor this forum" => "monitor this forum",
"stop monitoring this forum" => "stop monitoring this forum",
" unread private messages" => " unread private messages",
"You have to enter a title and text" => "You have to enter a title and text",
"Summary" => "Summary",
"Attach file" => "Attach file",
"moderator actions" => "moderator actions",
"move selected topics" => "move selected topics",
"unlock selected topics" => "unlock selected topics",
"lock selected topics" => "lock selected topics",
"delete selected topics" => "delete selected topics",
"merge" => "merge",
"merge selected topics" => "merge selected topics",
"reported messages:" => "reported messages:",
"queued messages:" => "queued messages:",
"Merge into topic" => "Merge into topic",
"mot" => "mot",
"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",
"stars" => "stars",
"monitor this topic" => "monitor this topic",
"stop monitoring this topic" => "stop monitoring this topic",
"send email to user" => "send email to user",
"user online" => "user online",
"user offline" => "user offline",
"prev topic" => "prev topic",
"next topic" => "next topic",
"Moderator actions" => "Moderator actions",
"delete selected" => "delete selected",
"Move to topic:" => "Move to topic:",
"reported:" => "reported:",
"queued:" => "queued:",
"this post was reported" => "this post was reported",
"report this post" => "report this post",
"IRC log" => "IRC log",
"Select" => "Select",
"Tracker" => "Tracker",
"Syntax" => "Syntax",
"Example" => "Example",
"Somebody or you tried to subscribe this email address at our site:" => "Somebody or you tried to subscribe this email address at our site:",
"To the newsletter:" => "To the newsletter:",
"In order to confirm your subscription you must access the following URL:" => "In order to confirm your subscription you must access the following URL:",
"A new message was posted to forum" => "A new message was posted to forum",
"Message" => "Message",
"The user" => "The user",
"registered at your site" => "registered at your site",
"Bye bye!" => "Bye bye!",
"This email address has been removed to the list of subscriptors of:" => "This email address has been removed to the list of subscriptors of:",
"Newsletter:" => "Newsletter:",
"Welcome to our newsletter!" => "Welcome to our newsletter!",
"This email address has been added to the list of subscriptors of:" => "This email address has been added to the list of subscriptors of:",
"You can always cancel your subscription using:" => "You can always cancel your subscription using:",
"Hi" => "Hi",
"someone from" => "someone from",
"requested a reminder of the password for the" => "requested a reminder of the password for the",
"since this is your registered email address we inform that the" => "since this is your registered email address we inform that the",
"password for this account is" => "password for this account is",
"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" => "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" => "the following link to login for the first time",
"Enjoy the site!" => "Enjoy the site!",
"Banning" => "Banning",
"Syntax highlighting" => "Syntax highlighting",
"new messages" => "new messages",
"online user" => "online user",
"Send a message to" => "Send a message to",
"Send message" => "Send message",
"More info about" => "More info about",
"idle" => "idle",
"calendar" => "calendar",
"User activities" => "User activities",
"Submit a new link" => "Submit a new link",
"The copyright management feature is not enabled." => "The copyright management feature is not enabled.",
"You do not have permission to use this feature." => "You do not have permission to use this feature.",
"You must supply all the information, including title and year." => "You must supply all the information, including title and year.",
"Invalid user" => "Invalid user",
"Message will be sent to: " => "Message will be sent to: ",
"ERROR: Either the subject or body must be non-empty" => "ERROR: Either the subject or body must be non-empty",
"ERROR: No valid users to send the message" => "ERROR: No valid users to send the message",
"No more messages" => "No more messages",
"No chart indicated" => "No chart indicated",
"The file is not a CSV file or has not a correct syntax" => "The file is not a CSV file or has not a correct syntax",
"No records were found. Check the file please!" => "No records were found. Check the file please!",
"User login is required" => "User login is required",
"Password is required" => "Password is required",
"Email is required" => "Email is required",
"User is duplicated" => "User is duplicated",
"blog_ranking_top_blogs" => "blog_ranking_top_blogs",
"blog_ranking_last_posts" => "blog_ranking_last_posts",
"blog_ranking_top_active_blogs" => "blog_ranking_top_active_blogs",
"Permission denied you cannot view the calendar" => "Permission denied you cannot view the calendar",
"event without name" => "event without name",
"Message sent to" => "Message sent to",
"You dont have permission to write the style sheet" => "You dont have permission to write the style sheet",
"You have to create a topic first" => "You have to create a topic first",
"page imported" => "page imported",
"created from import" => "created from import",
"filegal_ranking_top_galleries" => "filegal_ranking_top_galleries",
"filegal_ranking_top_files" => "filegal_ranking_top_files",
"filegal_ranking_last_files" => "filegal_ranking_last_files",
"No process indicated" => "No process indicated",
"Activity name already exists" => "Activity name already exists",
"No instance indicated" => "No instance indicated",
"The process name already exists" => "The process name already exists",
"Process already exists" => "Process already exists",
"No activity indicated" => "No activity indicated",
"You cant execute this activity" => "You cant execute this activity",
"gal_ranking_top_galleries" => "gal_ranking_top_galleries",
"gal_ranking_top_images" => "gal_ranking_top_images",
"gal_ranking_last_images" => "gal_ranking_last_images",
"page not added (Exists)" => "page not added (Exists)",
"overwriting old page" => "overwriting old page",
"updated by the phpwiki import process" => "updated by the phpwiki import process",
"page created" => "page created",
"created from phpwiki import" => "created from phpwiki import",
"Cannot write to this file:" => "Cannot write to this file:",
"Wiki page" => "Wiki page",
"Permission denied you can't upload files so you can't edit them" => "Permission denied you can't upload files so you can't edit them",
"Permission denied you cannot edit this file" => "Permission denied you cannot edit this file",
"Permission denied you cannot remove pages" => "Permission denied you cannot remove pages",
"Tiki mail-in instructions" => "Tiki mail-in instructions",
"About" => "About",
"merged note:" => "merged note:",
"No name indicated for wiki page" => "No name indicated for wiki page",
"Page already exists" => "Page already exists",
"created from notepad" => "created from notepad",
"Wrong registration code" => "Wrong registration code",
"New user registration" => "New user registration",
"You will receive an email with information to login for the first time into this site" => "You will receive an email with information to login for the first time into this site",
"Your Tiki information registration" => "Your Tiki information registration",
"Your Tiki account information for" => "Your Tiki account information for",
"A password reminder email has been sent " => "A password reminder email has been sent ",
"A new password has been sent " => "A new password has been sent ",
"to the registered email address for" => "to the registered email address for",
"Invalid or unknown username" => "Invalid or unknown username",
"Cannot rename page maybe new page already exists" => "Cannot rename page maybe new page already exists",
"Post recommendation at" => "Post recommendation at",
" successfully sent" => " successfully sent",
" not sent" => " not sent",
"Please create a category first" => "Please create a category first",
"Permission denied you cannot upload files" => "Permission denied you cannot upload files",
"No permission to upload zipped file packages" => "No permission to upload zipped file packages",
"Cannot read file" => "Cannot read file",
"Upload was not successful" => "Upload was not successful",
"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",
"Cannot upload this file not enough quota" => "Cannot upload this file not enough quota",
"No item indicated" => "No item indicated",
"Wrong password. Cannot post comment" => "Wrong password. Cannot post comment",
"Cannot upload this file maximum upload size exceeded" => "Cannot upload this file maximum upload size exceeded",
" new topic:" => " new topic:",
"Tiki email notification" => "Tiki email notification",
"Re:" => "Re:",
"topic:" => "topic:",
"forum topic" => "forum topic",
"Your email address has been removed from the list of addresses monitoring this tracker" => "Your email address has been removed from the list of addresses monitoring this tracker",
"Your email address has been added to the list of addresses monitoring this tracker" => "Your email address has been added to the list of addresses monitoring this tracker",
"Cancel monitoring" => "Cancel monitoring",
"Monitor" => "Monitor",
"Your email address has been removed from the list of addresses monitoring this item" => "Your email address has been removed from the list of addresses monitoring this item",
"Your email address has been added to the list of addresses monitoring this item" => "Your email address has been added to the list of addresses monitoring this item",
"No subject" => "No subject",
"Your email was sent" => "Your email was sent",
"no such file" => "no such file",
"January" => "January",
"February" => "February",
"March" => "March",
"April" => "April",
"May" => "May",
"June" => "June",
"July" => "July",
"August" => "August",
"September" => "September",
"October" => "October",
"November" => "November",
"December" => "December",
"Sunday" => "Sunday",
"Monday" => "Monday",
"Tuesday" => "Tuesday",
"Wednesday" => "Wednesday",
"Thursday" => "Thursday",
"Friday" => "Friday",
"Saturday" => "Saturday",
"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",
"Current page:" => "Current page:",
"version %s" => "version %s",
"last modified on %s" => "last modified on %s",
"by %s" => "by %s",
"Archived page:" => "Archived page:",
"Versions are identical" => "Versions are identical",
"Diff of %s." => "Diff of %s.",
"FAQ" => "FAQ",
"No image yet, sorry." => "No image yet, sorry.",
"You are banned from" => "You are banned from",
"no description" => "no description",
"picture not found" => "picture not found",
"drawing not found" => "drawing not found",
"help" => "help",
" tags. Example: {tr}The newsletter was sent to {\$sent} email addresses" => " tags. Example: {tr}The newsletter was sent to {\$sent} email addresses",
"indicates if the process is active. Invalid processes cant be active" => "indicates if the process is active. Invalid processes cant be active",
"New article submitted at " => "New article submitted at ",
"Blog post" => "Blog post",
"continued" => "continued",
"click to edit" => "click to edit",
"new image uploaded by" => "new image uploaded by",
"uploaded by" => "uploaded by",
"new item in tracker" => "new item in tracker",
"new subscriptions" => "new subscriptions",
"not specified" => "not specified",
"Home" => "Home",
"NONE" => "NONE",
"Newsletter subscription information at " => "Newsletter subscription information at ",
"Welcome to " => "Welcome to ",
" at " => " at ",
"Bye bye from " => "Bye bye from ",
"You can unsubscribe from this newsletter following this link" => "You can unsubscribe from this newsletter following this link",
"Tracker was modified at " => "Tracker was modified at ",
"Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature." => "Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature.",
"Sorry no such module" => "Sorry no such module",
"Please choose a module" => "Please choose a module",
"to be used as argument" => "to be used as argument",
"Missing db param" => "Missing db param",
"There is an error in the plugin data" => "There is an error in the plugin data",
"Change your email" => "Change your email",
"Edit this assigned module:" => "Edit this assigned module:",
"##end###" => "###end###");
?>