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
|
<?php
// This language is the Chinese translation of bitweaver and
// it was exported from the bitweaver database on 2008-08-25 08:08
$lang=Array(
'+1d' => '+1天',
'+1m' => '+1月',
'+7d' => '+7天',
'A' => 'A',
'aborted' => '失败',
'abort instance' => 'abort instance',
'About' => '关于',
'accept' => '接受',
'Accept Article' => '接受文章',
'Accepted requests' => '已接受要求',
'Accept wiki syntax' => '接受 wiki 语法',
'account' => '账号',
'Account name' => '账号名称',
'act' => 'act',
'action' => '动作',
'Actions' => '行动',
'activate' => 'activate',
'Activate all polls' => '启动所有投票',
'active' => '启动',
'Active?' => '启用中?',
'Active Channels' => '激活的频道',
'active process' => '活动的进程',
'activities' => 'activities',
'activity' => '活动力',
'Activity completed' => '活动完毕',
'Activity (desc)' => '活动 (降序)',
'Activity name already exists' => 'Activity name already exists',
'Activs' => 'Activs',
'act status' => 'act status',
'Actual_version' => '实际版本',
'Add' => '增加',
'Add a comment' => '增加一个评论',
'Add a directory category' => '增加目录类别',
'Add all your site users to this newsletter (broadcast)' => '加入你所有的用户至此邮件列表 (广播)',
'Add a new group' => '增加新群组',
'Add a new site' => '增加新的站点',
'Add a new user' => '增加用户',
'Add an operator to the system' => '增加系统操作员',
'Add a related category' => '加入相关类别',
'add article' => '加入文章',
'add a site' => '增加一个站点',
'Add a subscription newsletters' => '增加订阅邮件列表',
'Add a transition' => '增加变迁',
'Add a translation' => '增加一个翻译',
'add comment' => '增加评论',
'add contacts' => '增加到通讯簿',
'Added' => '增加',
'Added users' => '加入的用户',
'add email' => '增加email',
'Add Featured Link' => '加入主打链接',
'Add Hotword' => '加入热门词汇',
'Add messages from this email to the forum' => '将来自此 email 的消息增加至论坛',
'add new' => '新增加',
'Add new category' => '加入新类别',
'Add New Group' => '增加新群组',
'Add New Role' => '增加新群组',
'Add new mail account' => '增加新的邮件账号',
'Add notification' => '增加通知',
'Add objects to category' => '增加对象到分类中',
'Add or edit a category' => '增加或编辑一个分类',
'Add or edit a chart' => '增加或编辑排行榜',
'Add or edit an activity' => '增加或编辑活动',
'Add or edit a news server' => '增加或编辑 news 服务器',
'Add or edit an item' => '增加或编辑一个项目',
'Add or edit a process' => '管理或编辑进程',
'Add or edit a role' => 'Add or edit a role',
'Add or edit a rule' => '增加或编辑规则',
'Add or edit a site' => '增加或编辑站点',
'Add or edit a task' => '建立或编辑一个任务',
'Add or edit a URL' => '增加或编辑一个URL',
'Add or edit event' => '建立或编辑事件',
'Add or edit folder' => '增加或编辑文件夹',
'add page' => '增加页面',
'Add property' => '添加属性',
'Address book' => '通讯簿',
'add role' => '增加角色',
'Add scaled images size X x Y' => '增加图像尺寸大小 X x Y',
'add topic' => '增加主题',
'Add top level bookmarks to menu' => '增加最高一层的书签至菜单',
'Add transition from:' => '建立变迁自:',
'Add transitions' => '建立变迁',
'Add transition to:' => '建立变迁至:',
'Add users' => '增加用户',
'adm' => 'adm',
'Admin' => '管理',
'admin activities' => 'admin activities',
'Admin Calendars' => '管理日历',
'Admin categories' => '管理类别',
'Admin category relationships' => '管理类别关系',
'Admin chart items' => '管理排行榜项目',
'Admin charts' => '管理排行榜',
'Admin chat' => '管理聊天室',
'Admin (click!)' => '管理 (点击!)',
'Admin content' => '管理内容',
'admin content templates' => '管理内容模版',
'Admin cookies' => '管理 Cookies',
'Admin directory' => '管理目录',
'Admin directory categories' => '管理目录分类',
'Admin drawings' => '管理绘图',
'Admin dsn' => '管理 dsn',
'Admin ephemerides' => '管理日历',
'Admin external wikis' => '管理外部 wiki',
'Admin FAQ' => '管理 FAQ',
'Admin FAQs' => '管理 FAQs',
'Admin folders and bookmarks' => '管理数据夹与书签',
'Admin forums' => '管理论坛',
'Admin groups' => '管理员群组',
'Admin Hotwords' => '管理热门词汇',
'admin HTML page dynamic zones' => '管理 HTML 页面动态区域',
'Admin HTML pages' => '管理 HTML 页面',
'Admin instance' => '管理实体',
'Administration' => '系统管理',
'Administration Features' => '管理功能',
'Admin layout' => '管理版面配置',
'Admin layout per section' => '管理每区段的版面配置',
'Admin Menu' => '管理菜单',
'Admin Menus' => '管理菜单',
'Admin Modules' => '管理模块',
'Admin newsletters' => '管理邮件列表',
'Admin newsletter subscriptions' => '管理邮件列表订阅',
'Admin Polls' => '管理投票',
'Admin posts' => '管理日志',
'Admin process activities' => '管理程序活动',
'admin processes' => 'admin processes',
'Admin process roles' => 'Admin process roles',
'Admin process sources' => 'Admin process sources',
'Admin quiz' => '管理测验',
'Admin quizzes' => '管理测验',
'Admin related categories' => '管理相关分类',
'admin roles' => 'admin roles',
'Admin RSS modules' => '管理 RSS 模块',
'Admin sites' => '管理站点',
'Admin structures' => '管理结构',
'Admin surveys' => '管理调查',
'Admin templates' => '管理模板',
'Admin topics' => '管理主题',
'Admin tracker' => '管理追踪',
'Admin trackers' => '管理追踪',
'Admin users' => '管理员',
'AdmMenu' => 'AdmMenu',
'After page' => '在页面后',
'Again' => '再次输入',
'Again please' => '请再输入一次',
'age' => '年龄',
'A link to this post was sent to the following addresses' => '已经发送一个至此日志的链接至下列地址',
'all' => '全部',
'All articles' => '所有文章',
'All ephemerides' => '所有日历',
'All galleries' => '所有的图库',
'All games are from' => '所有游戏来自',
'All items' => '所有项目',
'allow' => '允许',
'Allow comments' => '允许评论',
'Allowed HTML:' => '允许 HTML:',
'Allow HTML' => '允许 HTML',
'Allow messages from other users' => '允许其它用户的消息',
'Allow other user to post in this blog' => '允许其它用户在这个日志中发表文章',
'Allow search' => '允许查找',
'Allow secure (https) login' => '允许安全 (https) 登录',
'Allow sites in this category' => '在这个分类允许的站点数',
'Allow Smileys' => '允许表情符号',
'Allow viewing HTML mails' => '允许查看 HTML 邮件',
'Allow viewing HTML mails?' => '允许阅读 HTML 邮件?',
'Allow viwing HTML mails?' => '允许查看 HTML 邮件?',
'Allow wiki markup' => '允许 wiki 标记语言',
'All pages' => '所有页面',
'all permissions in level' => '本层级所有权限',
'All posted' => '所有文章',
'All posts' => '全部文章',
'All tasks' => '所有任务',
'All users' => '所有用户',
'and its subpages from the structure, now you have two options:' => '以及结构中的子页面, 你有两个选择:',
'A new article was submitted by {$mail_user} to {$mail_site} at {$mail_date|bit_short_datetime}' => '{$mail_user} 传送新文章至 {$mail_site} 于 {$mail_date|bit_short_datetime}',
'A new message was posted to forum' => '新消息发表于论坛',
'A new message was posted to you at {$mail_machine}' => '有新消息于 {$mail_machine} 发表给你',
'A new password has been sent ' => '新密码已经发送 ',
'announce' => '公布',
'Anonymous' => 'Anonymous',
'Anonymous users can edit pages' => '允许匿名用户编辑页面',
'Anonymous users cannot edit pages' => '匿名用户无法编辑页面',
'answer' => '答案',
'any' => '任何',
'Anytime' => '随时',
'A password reminder email has been sent ' => '已发送密码提示信件 ',
'Apply template' => '套用模板',
'Approval type' => '批准方式',
'Approve' => '批准',
'April' => '四月',
'Archived page:' => '保存的页面:',
'Article' => '文章',
'Article comments settings' => '文章评论设置',
'Article image' => '文章图片',
'Article is not published yet' => '文章尚未被发表',
'Article not found' => '找不到文章',
'articles' => '文章',
'Articles Home' => '文章首页',
'Articles listing configuration' => '文章列表设置',
'Articles (subs)' => '文章 (评论数)',
'assign' => '指定',
'assigned' => '指定',
'Assigned categories' => '已指定的分类',
'Assigned items' => '指定项目',
'Assigned Modules' => '指定模块',
'Assigned objects' => '指定对象',
'Assigned sections' => '指定区块',
'assign group' => '指定群组',
'Assign module' => '指定模块',
'Assign new module' => '指定新模块',
'Assign permissions to ' => '指定权限给',
'Assign permissions to group' => '指定权限给群组',
'Assign permissions to page' => '指定权限到页面',
'Assign permissions to this object' => '指定此对象的权限',
'Assign permissions to thispage' => '指定此页面的权限',
'Assign permissions to this page' => '指定权限给此页面',
'assign_perms' => '指定权限',
'Assign themes to categories' => '指定分类的主题',
'Assign themes to objects' => '指定对象的主题',
'Assign themes to sections' => '指定区块的主题',
'Assign user' => '指定用户',
'at' => ' 在 ',
'at:' => '于:',
'(AT)' => '(AT)',
'attach' => '附件',
'Attach a file to this item' => '添加一个文件至此项目',
'Attach file' => '附加文件',
'attachment' => '附件',
'Attachments' => '附件',
'at tracker' => '在追踪中',
'{$atts_cnt} files attached' => '{$atts_cnt} 个附加文件',
'August' => '八月',
'A user registers' => '有用户注册',
'A user submits an article' => '有用户发送文章',
'Authentication method' => '认证方式',
'author' => '作者',
'AuthorName' => '作者名称',
'Author Name' => '作者',
'Authors' => '作者',
'Authors:' => '作者:',
'auto' => 'auto',
'Automatic' => '自动',
'Automonospaced text' => '自动使用固定宽度文字',
'Auto routed' => '自动建立路径',
'Auto validate user suggestions' => '自动确认用户的建议',
'Available content blocks' => '现有的内容区块',
'Available drawings' => '现存绘图',
'Available FAQs' => '现有的 FAQs',
'Available File Galleries' => '现有文件库',
'Available Galleries' => '目前所有的图库',
'Available polls' => '现有的投票',
'Available scales' => '现有的比率',
'Available templates' => '现有模板',
'Avatar' => '头像',
'Avatar Image' => '个人头像',
'Average' => '平均',
'Average article size' => '平均文章大小',
'Average bookmarks per user' => '用户平均书签数',
'Average file size' => '平均文件大小',
'Average files per gallery' => '文件库平均文件数',
'Average image size' => '平均图像大小',
'Average images per gallery' => '平均图库图像数',
'Average links per page' => '平均每页链接数',
'Average page length' => '平均页面长度',
'Average pageviews per day' => '每天平均页面浏览数',
'Average posts pero weblog' => '每 weblog 平均日志数',
'Average posts per weblog' => '网络日志平均发表数',
'Average posts size' => '平均日志大小',
'Average questions per FAQ' => 'FAQ 平均问题数',
'Average questions per quiz' => '每测验平均问题数',
'Average quiz score' => '平均测验分数',
'Average reads per article' => '文章平均阅读数',
'Average threads per topic' => '主题平均讨论帖数',
'Average time per quiz' => '每测验平均回答时间',
'Average topics per forums' => '论坛平均主题数',
'Average versions per page' => '平均每页版本数',
'Average votes per poll' => '投票平均票数',
'avg' => '平均',
'Av score' => '平均分数',
'Av time' => '平均时间',
'b' => 'b',
'back' => '返回',
'backlinks' => '反向链接',
'backlinks to' => '反向链接至',
'back to admin' => '回到管理接口',
'back to forum' => '回到论坛',
'Back to groups' => '回到讨论群',
'back to homepage' => '回到首页',
'Back to list of articles' => '返回文章列表',
'back to mailbox' => '返回邮件夹',
'Back to servers' => '返回服务器列表',
'Backups' => '备份',
'Banned from sections' => '禁用下列区段',
'Banner Information' => '大标题信息',
'Banner not found' => '找不到大标题',
'Banner raw data' => '大标题原始资料',
'Banners' => '大标题',
'Banner stats' => '大标题统计',
'Banner zones' => '大标题区域',
'Banning' => '禁用',
'Banning system' => '禁用系统',
'Batch upload' => '批次上传',
'Batch upload (CSV file)' => '批次上传 (CSV 文件)',
'Batch Upload Results' => '批次上传结果',
'bcc' => 'BCC',
'being run' => 'being run',
'<b>enable/disable</b>' => '<b>打开/关闭</b>',
'be offline' => '正离线中',
'be online' => '正在在线',
'Best day' => '最好的一天',
'Best Position' => '最佳排名',
'<b>Feed</b>' => '<b>Feed</b>',
'bigger' => '放大',
'>Block description: ' => '>区块描述: ',
'Block description: ' => '区块描述: ',
'Blog' => '日志',
'Blog comments settings' => '日志评论设置',
'Blog features' => '日志功能',
'Blog heading' => 'Blog 标题',
'Blog level comments' => 'Blog level comments',
'Blog listing configuration (when listing available blogs)' => 'Blog 列表设置 (列出现有 blog时)',
'Blog name' => '日志名称',
'Blog not found' => '找不到日志',
'Blog post' => 'Blog 日志',
'Blog post:' => 'Blog 日志:',
'Blog Posts' => '日志',
'blog_ranking_last_posts' => 'blog_ranking_last_posts',
'blog_ranking_top_active_blogs' => 'blog_ranking_top_active_blogs',
'blog_ranking_top_blogs' => 'blog_ranking_top_blogs',
'blogs' => '日志',
'Blog settings' => '日志设置',
'Blogs last posts' => 'Blogs 最新文章',
'Blog Stats' => '日志统计',
'Blog Title' => '日志标题',
'Blog title (asc)' => '日志标题 (升序)',
'<b>Max number of items</b>' => '<b>最大项目数</b>',
'Body' => '内容',
'Body:' => '本文:',
'bold' => '粗体',
'Bookmakrs' => '书签',
'Bookmarks' => '书签',
'both' => '粗斜体',
'Bottom bar' => '最下列',
'box' => '盒',
'Box content' => '方块内容',
'Broadcast' => '广播',
'Broadcast message' => '广播消息',
'Browse' => '浏览',
'Browse a gallery' => '浏览图库',
'browse by' => '浏览单位',
'Browse Directory' => '浏览目录',
'Browse gallery' => '浏览图库',
'Browser not supported' => '浏览器不支持',
'Browser title' => '浏览器标题',
'Browsing Gallery' => '浏览图库',
'Browsing Image' => '浏览图像',
'Browsing Workitem' => 'Browsing Workitem',
'by' => '由',
'By:' => 'By:',
'Bye bye!' => 'Bye bye!',
'Bye bye from ' => 'Bye bye from ',
'by %s' => '由 %s',
'bytes' => '字节',
'by the' => '由',
'Cache' => '缓冲',
'Cached' => '已缓冲',
'Cache Time' => '缓冲时间',
'Cache wiki pages' => '缓冲 wiki 页面',
'calendar' => '日历',
'Calendar Interval in daily view' => '每日查看中的日历周期',
'Calendars Panel' => '日历控制面板',
'cancel' => '取消',
'cancel edit' => '取消编辑',
'Cancelled' => '取消',
'Cancel monitoring' => '取消监视',
'cancel request and exit' => '取消要求并离开',
'cancel request and leave a message' => '取消要求并留言',
'Cannot connect to' => '无法连接至 ',
'Cannot edit page because it is locked' => '页面被锁定,你无法编辑此页面',
'Cannot get file from URL' => '无法由URL取得文件',
'Cannot get image from URL' => '无法由URL取得图像',
'Cannot get messages' => '无法取得消息',
'cannot process upload' => '无法进行上传',
'Cannot read file' => '无法读取文件',
'Cannot rename page maybe new page already exists' => '无法更名页面, 也许已存在同名页面',
'Cannot upload this file maximum upload size exceeded' => '无法上传文件, 超过最大文件大小限制',
'Cannot upload this file not enough quota' => '无法上传文件, 磁盘配额不足',
'Cannot write to this file:' => '无法写入此文件:',
'can_repeat' => '允许重复',
'cat' => '类别',
'categories' => '分类',
'Categories are disabled' => '类别功能已关闭',
'categorize' => '类别',
'categorize this object' => '分类这个对象',
'category' => '分类',
'Category description' => '分类描述',
'cc' => 'CC',
'center' => 'center',
'Centers the plugin content in the wiki page' => 'plugin 内容置中于 wiki 页面',
'center text' => '置中文字',
'Chair' => '席位',
'change' => '更改',
'Change admin password' => '更改管理员密码',
'changed' => '更改',
'change email' => '更改 email',
'Change password' => '更改密码',
'Change password enforced' => '强制更改密码',
'Change preferences' => '更改参数',
'Change your email' => '更改你的 email',
'Change your password' => '更改你的密码',
'Channel' => '频道',
'Channel Information' => '频道信息',
'characters long' => '字符长',
'chars' => 'chars',
'Chart' => '排行榜',
'Chart created' => '排行榜已建立',
'Chart items' => '排行榜项目',
'ChartMenu' => 'ChartMenu',
'charts' => '排行榜',
'chat' => '聊天室',
'Chat Administration' => '闲谈管理',
'Chat channels' => '聊天频道',
'Chatroom' => '聊天室',
'Chat started' => '对谈已开始',
'checkbox' => '复选框',
'checked' => '勾选的',
'check / uncheck all' => '全选/全取消',
'chg' => '异动',
'child categories' => '子类别',
'Children type' => '子类型',
'choose' => '选择',
'choose a stylesheet' => '选择样式表',
'clear' => '清除',
'clear cache' => '清除缓冲',
'clear stats' => '清除统计',
'click here' => '点击此处',
'Click here to confirm restoring' => '点选这里以确定复原',
'Click here to create a new backup' => '点击这里建立新备份',
'Click here to manage your personal menu' => '点击此处可管理你的个人菜单',
'Click here to view the Google cache of the page instead.' => '点击这里浏览 Google 页面存档.',
'Click ratio' => '点击率',
'Clicks' => '点击',
'click to edit' => '点击可编辑',
'Click twice if once is not enough !' => '如果一次不够, 请点击两次!',
'Client' => '用户',
'clip' => '回形针',
'Close' => '关闭',
'Close all polls but last' => '关闭所有投票除了最后一个',
'closed' => '关闭',
'CMS' => 'cms',
'CMS features' => 'CMS 功能',
'CMS settings' => 'CMS设置',
'CMS Stats' => 'CMS 统计',
'code' => '代码',
'col' => 'col',
'colored text' => '上色文字',
'Column' => '列',
'Column links to edit/view item?' => '字段是否链接到 编辑/查看 项目?',
'Com' => 'Com',
'Comm' => 'Comm',
'Command' => '命令',
'(comma separated list of URIs)' => '(comma separated list of URIs)',
'comma separated username:role' => '以逗点分隔的 用户名称:角色',
'comma separated usernames' => '以逗点分隔的用户名称',
'Comment' => '评论',
'Comment:' => '评论:',
'comments' => '评论',
'Comments below your current threshold' => '目前起算点以下的评论',
'Comments default ordering' => '默认评论排序',
'Communications (send/receive objects)' => '通讯 (发送/接受 对象)',
'compare' => '比较',
'Comparing versions' => '比较版本',
'Complete' => 'Complete',
'Completed' => '完成',
'compose' => '编写',
'Compose message' => '撰写消息',
'coms' => 'coms',
'configure listing' => '设置列表',
'Configure modules' => '设置模块',
'Configure news servers' => '设置 news 服务器',
'Configure this page' => '设置本页面',
'Confirmed' => '已确认',
'Contact' => '联系',
'contact feature disabled' => '联系功能已关闭',
'Contacts' => '通讯簿',
'contact us' => '连络我们',
'Contact us by email' => '使用email与我们联系',
'Contact user' => '联系用户',
'Containing' => '包含',
'content' => '内容',
'Content Features' => '内容功能',
'Content for the feed' => 'Feed 的内容',
'Content templates' => '内容模版',
'continued' => '待续',
'Control by Categories' => '由分类控制',
'Control by category' => '由分类控制',
'Control by Object' => '由对象控制',
'Control by Sections' => '由区块控制',
'convert to topic' => '转换至主题',
'cookie' => 'cookie',
'Cookies' => 'Cookies',
'cool' => '酷',
'cool sites' => '酷站点',
'Copyright' => '版权所有',
'Copyright Management' => '版权管理',
'Copyrights' => '版权所有',
'count' => '次',
'Count admin pageviews' => '计算管理页面浏览数',
'country' => '国家',
'create' => '建立',
'Create a file gallery' => '建立文件库',
'Create a gallery' => '建立图库',
'Create a new topic' => '建立新主题',
'Create a tag for the current wiki' => '为目前的 wiki 建立一个标签',
'Create banner' => '建立大标题',
'Create blog' => '建立日志',
'created' => '建立',
'Created by' => '建立自 ',
'created from import' => '从导入建立',
'created from notepad' => '由记事本建立',
'created from phpwiki import' => '由 phpwiki 导入所建立',
'create/edit' => '建立/编辑',
'Create/Edit Blog' => '建立/编辑日志',
'Create/edit Calendars' => '建立/编辑日历',
'Create/edit channel' => '建立/编辑 频道',
'Create/edit contacts' => '建立/编辑 通讯簿',
'Create/edit cookies' => '建立/编辑 cookies',
'Create/edit dsn' => '建立/编辑 dsn',
'Create/edit extwiki' => '建立/编辑 外部wiki',
'Create/edit Faq' => '建立/增加 FAQ',
'Create/edit Forums' => '建立/编辑论坛',
'Create/edit HTML pages' => '建立/编辑 HTML 页面',
'Create/edit Menus' => '建立/编辑 菜单',
'Create/edit newsletters' => '建立/编辑邮件列表',
'Create/edit options for question' => '建立/编辑 问题的选项',
'Create/edit Polls' => '建立/编辑 投票',
'Create/edit questions for quiz' => '建立/编辑 测验的选项',
'Create/edit questions for survey' => '建立/编辑 调查的问题',
'Create/edit quizzes' => '增加/编辑 测验',
'Create/edit RSS module' => '建立/编辑 RSS 模块',
'Create/edit surveys' => '建立/编辑 调查',
'Create/edit templates' => '建立/编辑模板',
'Create/edit trackers' => '建立/编辑追踪',
'Create Language' => '建立语言',
'Create level' => '建立等级',
'Create new' => '建立新的',
'Create new backup' => '建立新备份',
'Create new banner' => '建立新标题',
'create new block' => '建立新区块',
'create new blog' => '建立新日志',
'create new empty structure' => '建立新的空结构',
'Create New FAQ:' => '建立新 FAQ:',
'Create new Featured Link' => '建立新主打链接',
'Create New Forum' => '建立新论坛',
'create new gallery' => '建立新图库',
'Create new HTML page' => '建立新 HTML 页面',
'Create new Menu' => '建立新菜单',
'Create new RSS module' => '建立新 RSS 模块',
'Create new structure' => '建立新的结构',
'Create New Survey:' => '建立新调查:',
'Create new template' => '建立新模板',
'Create new user module' => '建立新的用户模块',
'Create or edit a file gallery using this form' => '使用此窗体建立或编辑一个文件库',
'Create or edit a gallery using this form' => '使用此窗体建立或编辑一个图库',
'Create or edit content' => '建立或编辑内容',
'Create or edit content block' => '建立或编辑内容区块',
'create page' => '建立页面',
'create pdf' => '建立 pdf',
'Creates a box with the data' => '根据资料建立方块',
'creates a table' => '建立表格',
'creates a title bar' => '建立标题列',
'creates the editable drawing foo' => '建立可编辑的暂时图像',
'Create structure from tree' => '由树系建立结构',
'create tag' => '建立 tag',
'Create user if not in Auth?' => '如果 Auth 中无用户则建立账号?',
'create zone' => '建立区域',
'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档中最大执行时间的设置',
'creation date' => '建立日期',
'creation date (asc)' => '建立日期 (升序)',
'creation date (desc)' => '建立日期 (降序)',
'Creator' => '建立者',
'cType' => 'cType',
'current' => '目前',
'Current category' => '目前分类',
'Current folder' => '目标数据夹',
'Current heading' => '目前标题',
'Current Image' => '当前图像',
'Current page:' => '目前页面:',
'Current permissions for this object' => '此对象目前的权限',
'Current permissions for this page' => '本页面权限设置',
'Current URL' => '目前的 URL',
'Current ver' => '目前版本',
'current_version' => '目前版本',
'Current version' => '目前版本',
'Custom Categories' => '自订类别',
'Custom home' => '自订首页',
'Custom Languages' => '自订语系',
'Custom Locations' => '自订位置',
'Custom message to the user' => '给用户的自订消息',
'Custom Priorities' => '自订优先级',
'Daily' => '每日',
'Data' => '资料',
'Database' => '数据库',
'Date' => '日期',
'date and time' => '日期和时间',
'Date and Time Format Help' => '日期与时间格式说明',
'Date and Time Formats' => '日期与时间格式',
'Date (asc)' => '日期 (升序)',
'Date (desc)' => '日期 (降序)',
'day' => '日',
'days' => '数日',
'days (0=all)' => '天 (0=全部)',
'Days online' => '在线天数',
'dcs' => 'dcs',
'Deactivate' => '停止',
'debug' => '除错',
'debugger console' => '除错器控制台',
'December' => '十二月',
'deep' => 'deep',
'Default number of comments per page' => '默认每页评论数目',
'Default ordering for blog listing' => '日志列表默认顺序',
'Default ordering for threads' => '默认讨论帖排列顺序',
'Default ordering for topics' => '默认主题排列顺序',
'definition' => '定义',
'del' => '清除',
'delete' => '删除',
'delete selected' => '删除选择项目',
'delete selected files' => '删除选择的文件',
'delete selected topics' => '删除选择的主题',
'Desc' => '降序',
'Describe topics in listing' => '在列表中描述主题',
'Description' => '描述',
'Description:' => '描述:',
'Destroy the structure and remove the pages' => '删除结构与页面',
'Destroy the structure leaving the wiki pages' => '删除结构, 保留 wiki 页面',
'details' => '细节',
'Dif' => '差异',
'diff' => '比对差异',
'Diff:' => '差异:',
'Diff of %s.' => '%s 的差异.',
'Diff to version' => '差异至版本',
'directory' => '目录',
'Directory Administration' => '目录管理',
'Directory (include trailing slash)' => '目录 (包含结尾的/)',
'Directory path' => '目录路径',
'Directory ranking' => '目录排名',
'Directory Stats' => '目录状态',
'DirMenu' => 'DirMenu',
'Disabled' => '关闭',
'disables the link' => '关闭此链接',
'discuss' => '讨论',
'Discuss pages on forums' => '在论坛上讨论页面',
'dispay' => '显示',
'display' => '显示',
'Displayed time zone' => '显示时区',
'Display menus as folders' => '用数据夹方式显示菜单',
'Display modules to all groups always' => '对所有的群组都显示模块',
'Displays a graphical GAUGE' => '显示图型化表计',
'Displays a module inlined in page' => '以 inline 方式在页面上显示模块',
'displays an image' => '显示图像',
'displays rss feed with id=n maximum=m items' => '显示 id=n 最大值=m 的 rss feed',
'Displays the data using a monospace font' => '以定宽字显示数据',
'Displays the user Avatar' => '显示用户头像',
'Dls' => '下载数',
'done' => '完成',
'Don\'t move' => '不要移动',
'(DOT)' => '(DOT)',
'down' => '下',
'Download last dump' => '下载最后的转储',
'downloads' => '下载数',
'drawing not found' => '找不到绘图',
'Drawings' => '绘图',
'drop down' => '下拉菜单',
'DSN' => 'dsn',
'dump' => '转储',
'Dumps' => '转储',
'dump tree' => '转储树系',
'duplicate' => '重复',
'Duration' => '期间',
'Duration:' => '持续时间:',
'Dynamic' => '动态',
'dynamic collapsed' => '动态展开',
'dynamic content' => '动态内容',
'Dynamic content blocks' => '动态内容区块',
'Dynamic content system' => '动态内容系统',
'dynamic extended' => '动态延伸',
'Dynamic zones' => '动态区域',
'Each 5 minutes' => '每 5 分钟',
'Edit' => '编辑',
'Edit a file using this form' => '使用此窗体编辑文件',
'Edit and create languages' => '编辑或建立语言',
'Edit article' => '编辑文章',
'Edit blog' => '编辑日志',
'Edit Calendar Item' => '编辑日历项目',
'edit chart' => '编辑排行榜',
'edit/create' => '编辑/建立',
'Edit/Create user module' => '编辑/建立 用户模块',
'Edit CSS' => '编辑 CSS',
'Edit desc' => '编辑描述',
'Edit drawings' => '编辑绘图',
'Edit drawings & pictures' => '编辑绘图和图片',
'Edit FAQ questions' => '编辑 FAQ 问题',
'Edit Forum' => '编辑论坛',
'edit gallery' => '编辑图库',
'Edit game' => '编辑游戏',
'Edit Image' => '编辑图像',
'Editing comment' => '编辑评论',
'Editing tracker item' => '编辑追踪项目',
'editions' => '版本',
'Edit item' => '编辑项目',
'edit items' => '编辑项目',
'Edit languages' => '编辑语言',
'Edit menu options' => '编辑菜单项目',
'edit new article' => '编辑新文章',
'edit new submission' => '建立新的意见',
'editor' => '编辑',
'Edit or add category' => '编辑或增加分类',
'Edit or add poll options' => '编辑或加入投票项',
'Edit or create banners' => '编辑或建立大标题',
'Edit or ex/import Languages' => '编辑或 导出/导入语言',
'Editor group' => '编辑员群组',
'Edit Post' => '编辑文章',
'Edit question options' => '编辑问题选项',
'Edit queued message' => '编辑队列中消息',
'Edit quiz questions' => '编辑测验问题',
'Edit received article' => '编辑接收的文章',
'Edit received page' => '编辑收到的页面',
'Edit Style Sheet' => '编辑样式表',
'Edit successful!' => '编辑成功!',
'Edit survey questions' => '编辑调查问题',
'Edit templates' => '编辑模板',
'Edit this assigned module:' => '编辑指定的模块:',
'Edit this category:' => '编辑此类别:',
'Edit this directory category' => '编辑目录类别',
'Edit this FAQ' => '编辑这个 FAQ',
'Edit this FAQ:' => '编辑此 FAQ:',
'Edit this Featured Link:' => '编辑此主打链接:',
'Edit this file gallery:' => '编辑此文件库:',
'Edit this Forum:' => '编辑此论坛:',
'Edit this gallery:' => '编辑此图库:',
'Edit this group:' => '编辑此群组:',
'Edit this HTML page' => '编辑此 HTML 页面',
'Edit this HTML page:' => '编辑此 HTML 页面:',
'Edit this menu' => '编辑此菜单',
'Edit this Menu:' => '编辑此菜单:',
'Edit this page' => '编辑此页面',
'Edit this poll' => '编辑这个投票',
'edit this process' => 'edit this process',
'edit this quiz' => '编辑这个测验',
'Edit this RSS module:' => '编辑此 RSS 模块:',
'edit this survey' => '编辑这个调查',
'Edit this Survey:' => '编辑此调查:',
'Edit this template:' => '编辑此模板:',
'Edit this tracker' => '编辑此追踪',
'Edit this user module:' => '编辑此用户模块:',
'Edit tracker fields' => '编辑追踪字段',
'Edit translations' => '编辑一个翻译',
'Edit zone' => '编辑区域',
'Email' => '电子邮件',
'Email:' => 'Email:',
'Email is required' => '需要 email',
'email this post' => 'email 此文章',
'Emphasis' => '强调',
'Enable Feature' => '启用功能',
'Enable watch by default for author' => '作者默认启动监视',
'Enable watches on comments' => '启动对评论的监视',
'Enable watches when I am the editor' => '当我是编辑者时启动监视',
'end' => '结束',
'##end###' => '###end###',
'End hour for days' => '每天结束时间',
'Enjoy the site!' => '好好享受本站的资源!',
'enter chat room' => '进入聊天室',
'Entire Site' => '整个网站',
'Ephemerides' => '日历',
'EphMenu' => 'EphMenu',
'Error' => '错误',
'ERROR: Either the subject or body must be non-empty' => '错误: 标题或内文不可以为空',
'ERROR: No valid users to send the message' => '错误: 没有可发送消息的合法用户',
'Error processing zipped image package' => '处理 zip 压缩的图像包时发生错误',
'Errors detected' => '侦测到错误',
'event' => '事件',
'event without name' => '无名事件',
'Everybody can attach' => '允许任何人附件',
'Example' => '范例',
'exception' => '例外',
'exception instance' => 'exception instance',
'exceptions' => 'exceptions',
'exceptions instance' => 'exceptions instance',
'excerpt' => '引用',
'exclaim' => '惊叫',
'exec' => '执行',
'export' => '导出',
'export all versions' => '导出所有版本',
'export pages' => '导出页面',
'Export Wiki Pages' => '导出 Wiki 页面',
'external link' => '外部链接',
'External links' => '外部链接',
'External wikis' => '外部 wikis',
'extwiki' => '外部wiki',
'ExtWikis' => '外部 Wiki',
'Failed to edit the image' => '编辑图像失败',
'faq' => 'FAQ',
'FAQ Answers' => 'FAQ 答案',
'FAQ comments' => 'FAQ 评论',
'FAQ Questions' => 'FAQ 问题',
'faqs' => 'FAQs',
'FAQs settings' => 'FAQs 设置',
'Faq Stats' => 'Faq 统计',
'Fatal error' => '内部错误',
'Favorites' => '我的最爱',
'feat' => 'feat',
'Featured Help' => '主打说明',
'Feature disabled' => '功能已关闭',
'Featured links' => '主打链接',
'Features' => '功能',
'features matched' => '符合的功能',
'Features state' => '功能状态',
'February' => '二月',
'Feed for Articles' => 'Feed for 文章',
'Feed for File Galleries' => 'Feed for 文件库',
'Feed for forums' => 'Feed for 论坛',
'Feed for Image Galleries' => 'Feed for 图片夹',
'Feed for individual File Galleries' => 'Feed for 独立的文件库',
'Feed for individual forums' => 'Feed for 独立论坛',
'Feed for individual Image Galleries' => 'Feed for 独立的图片夹',
'Feed for individual weblogs' => 'Feed for 独立的日志',
'Feed for the Wiki' => 'Feed for the Wiki',
'Feed for Weblogs' => 'Feed for 网络日志',
'fields' => '字段',
'File' => '文件',
'File Description' => '文件描述',
'file gal' => '文件库',
'File galleries' => '文件总览',
'File galleries comments settings' => '文件总览评论设置',
'File galleries Stats' => '文件库统计',
'File Gallery' => '文件库',
'FileGalMenu' => 'FileGalMenu',
'filegal_ranking_last_files' => 'filegal_ranking_last_files',
'filegal_ranking_top_files' => 'filegal_ranking_top_files',
'filegal_ranking_top_galleries' => 'filegal_ranking_top_galleries',
'File gals' => '文件库',
'file gls' => '文件总览',
'File is too big' => '文件过大',
'Filename' => '文件',
'Filename only' => '仅档名',
'files' => '文件',
'Filesize' => '文件大小',
'File Title' => '文件标题',
'File with names appended by -{$user} are modifiable, others are only duplicable and be used as model.' => '檔名有附加 -{$user} 可以修改, 其它只能做为样本复制',
'Filter' => '过滤器',
'Filters' => '过滤器',
'Finally if the user didn\'t select a theme the default theme is used' => '最后, 如果用户没有设置主题, 则使用默认的主题',
'find' => '查找',
'Find:' => '查找:',
'First' => '第一个',
'first image' => '第一张图像',
'First Name' => '名',
'First page' => '首页',
'fixed' => '固定',
'flag' => '国旗',
'Flagged' => '已标记',
'Flag this message' => '标记此消息',
'Flash binary (.sqf or .dcr)' => 'Flash 文件(.sqf 或 .dcr)',
'Float text around image' => '文绕图',
'Folder in' => '资料夹于',
'Folders' => '资料夹',
'Font' => '字型',
'Footnotes' => '脚注',
'for' => '表示',
'for bullet lists' => '表示无序列表',
'Force to use chars and nums in passwords' => '强制在密码中使用字符和数字',
'for definiton lists' => '表示定义列表',
'for links' => '表示链接',
'ForMenu' => 'ForMenu',
'for numbered lists' => '表示有序列表',
'|| for rows' => '|| 表示一列',
'
for rows' => '
表示一列',
'Forum' => '论坛',
'Forum List' => '论坛列表',
'Forum listing configuration' => '论坛列表设置',
'Forum password' => '论坛密码',
'Forum posts' => '论坛文章数',
'Forum quick jumps' => '论坛快速跳转',
'forums' => '论坛',
'Forums best topics' => '论坛最佳话题',
'Forum settings' => '论坛设置',
'Forums last topics' => '论坛最新话题',
'Forums most read topics' => '论坛最热门话题',
'Forums most visited forums' => '最热门论坛',
'Forums settings' => '论坛设置',
'Forum Stats' => '论坛统计',
'Forums with most posts' => '最多文章论坛',
'forum topic' => '论坛主题',
'forward' => '转寄',
'Forward messages to this forum to this email' => '转发此论坛的消息至此 email',
'for wiki references' => '表示 wiki 引用',
'Found' => '找到',
'framed' => '页框',
'Frequency' => '频率',
'fri' => '五',
'Friday' => '星期五',
'frms' => 'frms',
'From' => '由',
'From:' => '自:',
'From date' => '开始日期',
'From Points' => '从分数',
'from the list' => '从列表',
'frown' => '皱眉',
'full' => '完整',
'full headers' => '完整标头',
'Full Text Search' => '全文搜索',
'galleries' => '图库',
'Galleries features' => '图库功能',
'Gallery' => '图库',
'Gallery Files' => '文件库文件',
'Gallery Images' => '图库图像',
'Gallery is visible to non-admin users?' => '允许非管理员用户看到?',
'Gallery listing configuration' => '图库列表设置',
'Gallery Rankings' => '图库排名',
'GalMenu' => 'GalMenu',
'gal_ranking_last_images' => 'gal_ranking_last_images',
'gal_ranking_top_galleries' => 'gal_ranking_top_galleries',
'gal_ranking_top_images' => 'gal_ranking_top_images',
'games' => '游戏',
'General' => '一般',
'General Layout options' => '一般版面配置选项',
'General Preferences' => '一般参数',
'General preferences and settings' => '一般参数设置',
'General Settings' => '一般设置',
'Generate a password' => '产生一个密码',
'Generate dump' => '建立转储',
'Generate HTML' => '建立 HTML',
'Generate positions by hits' => '由点击数建立位置',
'Get property' => 'Get property',
'go' => '查找',
'Google Search' => 'Google 查找',
'grab instance' => 'grab instance',
'gral' => 'gral',
'graph' => 'graph',
'group' => '群组',
'Group already exists' => '群组已经存在',
'Group Calendars' => '群组日历',
'Group doesnt exist' => '群组不存在',
'Group Information' => '群组信息',
'groups' => '群组',
'group selector' => '群组选择器',
'h' => 'h',
'h1' => 'h1',
'h2' => 'h2',
'h3' => 'h3',
'half a second' => '半秒',
'happy' => '快乐',
'HasImg' => '有图像',
'heading' => '标题',
'Heading:' => '标题:',
'heading1' => '标题1',
'heading2' => '标题2',
'heading3' => '标题3',
'Height of inner Heading' => '内层标题大小',
'Height of mid Heading' => '中层标题大小',
'Height of top Heading' => '最上层标题大小',
'height width desc link and align are optional' => 'height width desc link and align are optional',
'help' => '说明',
'Hi' => 'Hi',
'Hi,' => 'Hi,',
'Hide all' => '隐藏全部',
'hide categories' => '隐藏类别',
'Hide comments' => '隐藏评论',
'hide from display' => '不显示',
'Hide Panels' => '隐藏面板',
'Hide Post Form' => '隐藏发表窗体',
'Hide suggested questions' => '隐藏建议的问题',
'High' => '高',
'Highest' => '最高',
'Hi {$mail_user} has sent you this link:' => 'Hi {$mail_user} 寄给你这个链接:',
'hist' => '历史记录',
'history' => '历史记录',
'History of' => '历史纪录',
'hits' => '点击数',
'hits (asc)' => '点击数 (升序)',
'hits (desc)' => '点击数 (降序)',
'home' => '首页',
'Home Blog' => '主日志',
'Home Blog (main blog)' => '首页日志(主要日志)',
'Home File Gal' => '主文件库',
'Home File Gallery' => '主文件库',
'Home Forum (main forum)' => '首页论坛 (主论坛)',
'Home Gallery (main gallery)' => '首页图库 (主图库)',
'Home Image Gal' => '主图片夹',
'Home Image Gallery' => '主图片夹',
'HomePage' => '首页',
'Home Page' => '首页',
'horizontal ruler' => '水平尺标',
'hot' => '热门',
'Hotwords' => '热门词汇',
'Hotwords in new window' => '热门词汇于新窗口中',
'Hotwords in New Windows' => '以新窗口显示热门词汇',
'hour' => '小时',
'Hours' => '小时',
'hr' => 'hr',
'HTML code' => 'HTML代码',
'HTML pages' => 'HTML 页面',
'HTML tags are not allowed inside comments' => '不允许评论中使用 HTML 标签',
'HTTP port' => 'HTTP 端口',
'HTTP server name' => 'HTTP 服务器名称',
'HTTPS port' => 'HTTPS 端口',
'HTTPS server name' => 'HTTPS 服务器名称',
'HTTPS URL prefix' => 'HTTPS URL 前缀',
'HTTP URL prefix' => 'HTTP URL 前缀',
'i' => 'i',
'icon' => '图示',
'id' => '编号',
'idea' => '点子',
'idle' => '发呆',
'If a theme is assigned to the individual object that theme is used.' => '如果指定单独对象的主题,则使用该主题.',
'If none of the above was selected the user theme is used' => '如果以上都没有设置, 则采用用户的主题',
'If not then a theme for the section is used' => '如不成立, 则使用区块的主题',
'If not then if a theme is assigned to the object\'s category that theme is used' => '如不成立, 那么如果指定对象分类的主题, 则使用该主题',
'I forgot my pass' => '忘记密码',
'>I forgot my password' => '>我忘记了密码',
'I forgot my password' => '我忘记了密码',
'If:SetNextact' => 'If:SetNextact',
'If you can\'t see the game then you need a flash plugin for your browser' => '如果你无法看到游戏那么你必须在你的浏览器中加入 flash 外挂模块',
'If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose).' => '如果你更改了日历选项, 请重新整理以取得正确的类别, 地点, 以及人名列表(如果适用于你所选的日历类型)',
'If you don\'t want to receive these notifications follow this link:' => '如果你不想再收到这些通知请使用此链接:',
'If you want to be a registered user in this site you will have to use' => '如果你想成为本站的注册用户, 你必须使用',
'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:' => '如果你要成为本站的注册用户, 必须使用以下链接进行第一次登录:',
'image' => '图像',
'Image:' => '图像:',
'Image Description' => '图像描述',
'image gal' => '图库',
'Image galleries' => '图片夹',
'Image galleries comments settings' => '图片夹评论设置',
'Image galleries Stats' => '图片夹统计',
'Image Gallery' => '图片夹',
'Image Gals' => '图库',
'Image ID' => '图像 ID',
'Image ID thumb' => '图像 ID 缩列图',
'Image name' => '图像名称',
'images' => '图像',
'imagescale' => '图像比率',
'Image size' => '图像大小',
'Images per row' => '每列图像数',
'Image x size' => '图像 x 大小',
'Image y size' => '图像 y 大小',
'Im- Export Languages' => '导入-导出语言',
'Img' => '图像',
'img gls' => 'img gls',
'img nc' => 'img nc',
'Imgs' => '图像',
'Import' => '导入',
'Important' => '重要',
'Import CSV file' => '导入 CSV 文件',
'Import page' => '导入页面 ',
'Import pages from a PHPWiki Dump' => '由 PHPWiki 转储来导入页面',
'Impressions' => '次数',
'in' => '于',
'in:' => '在:',
'Inactive' => '停止活动',
'In blog listing show user as' => '在 blog 列表中显示用户为',
'Include' => '包含',
'Includes' => '包含',
'in current category' => '在目前分类',
'Index page' => '索引页面',
'indicates if the process is active. Invalid processes cant be active' => 'indicates if the process is active. Invalid processes cant be active',
'in entire directory' => '在整个目录中',
'Information:' => '信息:',
'info/vote' => '信息/投票',
'inline frame' => '行内页框',
'In order to confirm your subscription you must access the following URL:' => '你必须连接至以下的 URL 以确认订阅:',
'In parent page' => '在父页面中',
'Ins' => 'Ins',
'Insert copyright notices' => '插入版权申明',
'Insert list of items for the current/given category into wiki page' => '插入目前/指定类别的项目列表至 wiki 页面',
'Insert new item' => '插入新项目',
'Insert the full category path for each category that this wiki page belongs to' => '插入此 wiki 页面所属的所有类别完整路径',
'Insert theme styled box on wiki page' => 'wiki 页面上插入采用主题样式的方块',
'instance' => 'instance',
'Instances' => 'Instances',
'Inst Status' => 'Inst Status',
'int' => 'int',
'inter' => 'inter',
'Interactive' => '交互式',
'Invalid' => 'Invalid',
'Invalid email address. You must enter a valid email address' => '不正确的 email. 请输入正确的 email 地址',
'Invalid filename (using filters for filenames)' => '不合法檔名 (使用档名过滤器)',
'Invalid imagename (using filters for filenames)' => '图像名称不合法 (使用档名过滤器)',
'Invalid old password' => '旧密码错误',
'Invalid or unknown username' => '用户名称错误',
'invalid process' => '停止的进程',
'Invalid request to edit an image' => '不正确的编辑图像请求',
'invalid sites' => '不正确的站点',
'Invalid user' => '不合法的用户',
'Invalid username' => '不合法的用户名称',
'Invalid username or password' => '用户名称或密码错误',
'Ip' => 'Ip',
'IP regex matching' => 'IP 符合正则表达式',
'IRC log' => 'IRC 纪录',
'is active?' => '是活动的吗?',
'Is column visible when listing tracker items?' => '当列出追踪项目时是否可以看见字段?',
'Is email public? (uses scrambling to prevent spam)' => '公开 email? (使用扰乱法以避免spam)',
'is_main' => 'is_main',
'Is valid' => '是正确的',
'italic' => '斜体',
'italics' => '斜体',
'Item' => '项目',
'Item information' => '项目信息',
'items' => '项目',
'January' => '一月',
'Join' => '加入',
'JoinCapitalizedWords' => '连在一起的大写字',
'JoinCapitalizedWords or use' => '连在一起的大写字或使用',
'July' => '七月',
'Jump to forum' => '跳跃至论坛',
'June' => '六月',
'Klick to enlarge' => '点击放大',
'lang' => '语系',
'Language' => '语言',
'Language created' => '语言已建立',
'last' => '最近',
'Last 24 hours' => '前 24 小时',
'Last 48 hours' => '前 48 小时',
'Last author' => '最近作者',
'Last blog posts' => '最新发表日志',
'last changes' => '最近修改',
'LastChanges' => '最近修改',
'last chart' => '最末张排行榜',
'Last Created blogs' => '最近建立的日志',
'Last Created FAQs' => '最近建立 FAQS',
'Last Created Quizzes' => '最近建立的测验',
'Last Files' => '最新文件',
'Last forum topics' => '最新论坛主题',
'Last galleries' => '最新图库',
'Last hour' => '前 1 小时',
'last image' => '最后图像',
'Last images' => '最新图像',
'Last Items' => '上一个项目',
'last_login' => '上次登录',
'Last login' => '最近登录',
'Last mod' => '最近修改',
'last modif' => '最近修改',
'last modification' => '最后修改',
'Last modification date' => '上次修改日期',
'Last modification date (desc)' => '最近修改日期 (降序)',
'last modification time' => '最后修改时间',
'last_modified' => '上次修改',
'Last Modified' => '最近修改',
'Last Modified blogs' => '最近修改的日志',
'Last Modified Items' => '上一个修改项目',
'Last Name' => '姓',
'Last page' => '末页',
'Last pages' => '最新页面',
'last post' => '最新发表',
'Last post (desc)' => '最近发表日志 (降序)',
'Last posts' => '最新发表',
'last sent' => '上次发送',
'Last Sites' => '最新站点',
'Last submissions' => '最近送交文章',
'Last taken' => '最近参加的调查',
'Last update' => '最近更新',
'Last updated' => '最近更新',
'last updated (asc)' => '最后更新 (升序)',
'last updated (desc)' => '最后更新 (降序)',
'Last ver' => '最近版本',
'Last version' => '最近版本',
'layout options' => '版面配置选项',
'Layout per section' => '每区段版面配置',
'LDAP Admin Pwd' => 'LDAP 管理员密码',
'LDAP Admin User' => 'LDAP 管理员',
'LDAP Base DN' => 'LDAP 主 DN',
'LDAP Group Atribute' => 'LDAP 群组属性',
'LDAP Group DN' => 'LDAP 群组 DN',
'LDAP Group OC' => 'LDAP 群组 OC',
'LDAP Host' => 'LDAP 主机',
'LDAP Member Attribute' => 'LDAP 成员属性',
'LDAP Member Is DN' => 'LDAP Member Is DN',
'LDAP Port' => 'LDAP 连接端口',
'LDAP Scope' => 'LDAP 领域',
'LDAP User Attribute' => 'LDAP 用户属性',
'LDAP User DN' => 'LDAP 用户 DN',
'LDAP User OC' => 'LDAP 用户 OC',
'left' => '左',
'Left column' => '左栏',
'Left Modules' => '左方模块',
'level' => '层级',
'Library to use for processing images' => '用于处理图像的链接库',
'License' => '授权',
'License Page' => '授权页面',
'like' => '如同',
'Like pages' => '相似页面',
'link_description' => '链接描述',
'Links' => '链接',
'Links/Commands' => '链接/命令',
'Links per page' => '每页链接数',
'Links to validate' => '待确认链接',
'Link to user information' => '链接至用户信息',
'Link type' => '链接类型',
'List' => '列表',
'list articles' => '列出文章',
'List banners' => '列出大标题',
'List blogs' => '列出日志',
'list charts' => '列出排行榜',
'List FAQs' => '列出 FAQs',
'List forums' => '列出论坛',
'List galleries' => '列出文件库',
'list gallery' => '列出图库',
'List image galleries' => '列出图库',
'Listing configuration' => '列表设置',
'Listing Gallery' => '列出文件库',
'List menus' => '列出菜单',
'list newsletters' => '列出邮件列表',
'List notes' => '列出备忘录',
'List of activities' => 'List of activities',
'List of attached files' => '附件列表',
'List of available backups' => '列出现有的备份',
'List of Calendars' => '日历列表',
'List of email addresses separated by commas' => 'email 地址列表, 由逗点分隔',
'List of existing groups' => '现存群组列表',
'List of featured links' => '列出主打链接',
'List of instances' => 'List of instances',
'List of mappings' => 'List of mappings',
'List of messages' => '消息列表',
'List of processes' => '进程列表',
'List of topics' => '主题列表',
'List of transitions' => '变迁列表',
'List of workitems' => 'List of workitems',
'list pages' => '列出页面',
'list_pages' => '列出页面',
'List polls' => '列出投票',
'List Quizzes' => '列出测验',
'Lists' => '项目',
'list submissions' => '列出submission',
'List Surveys' => '列出调查',
'List Trackers' => '列出追踪项目',
'Live support' => '在线支持',
'Live support:Console' => '在线支持:操作台',
'Live support system' => '在线支持系统',
'Live support:User window' => '在线支持:用户窗口',
'loc' => '位置',
'Local' => '本地',
'Location' => '地点',
'lock' => '锁定',
'locked' => '锁定',
'locked by' => '由锁定',
'lock selected topics' => '锁定选择的主题',
'logged as' => '登录为',
'login' => '登录',
'log in' => '登录',
'Logout' => '注销',
'Long date format' => '长日期格式',
'Longname' => '完整名称',
'Long time format' => '长时间格式',
'Low' => '低',
'Lowest' => '最低',
'mad' => '疯狂',
'mailbox' => '邮箱',
'Mail-in' => 'Mail-in',
'Mailin accounts' => 'Mailin 账号',
'Mail notifications' => '邮件通知',
'make_headings' => '建立标题',
'make this a thread of' => '设为讨论帖',
'Manual' => '手动',
'map' => 'map',
'Map groups to roles' => 'Map groups to roles',
'Map process roles' => 'Map process roles',
'Map users to roles' => 'Map users to roles',
'March' => '三月',
'mark' => '标计',
'mark as done' => '标记为已完成',
'Mark as Flagged' => '设为已标记',
'Mark as read' => '设为阅读',
'Mark as unflagged' => '设为未标记',
'Mark as unread' => '设为未读',
'Mass update' => '大量更新',
'Max attachment size (bytes)' => '最大附件大小 (bytes)',
'Max description display size' => '最大描述显示大小',
'Max Impressions' => '最大次数',
'Maximum number of articles in home' => '首页最大文章数',
'Maximum number of children to show' => '最大展示的分类数目',
'Maximum number of records in listings' => '最多列表中条目数',
'Maximum number of versions for history' => '最大历史记录中版本数',
'Maximum size for each attachment' => '每个附件的最大大小',
'Maximum time' => '最大时间',
'Max Rows per page' => '每页最大行数',
'maxScore' => '最高分数',
'May' => '五月',
'May need to refresh twice to see changes' => '可能需要更新两次才看得到修改',
'Mb' => 'Mb',
'Menu' => '菜单',
'Menu options' => '菜单项目',
'Menus' => '菜单',
'merge' => '合并',
'merged note:' => '合并记事:',
'Merge into topic' => '合并至主题',
'merge selected notes into' => '合并选择的记事至',
'merge selected topics' => '合并选择的主题',
'Message' => '消息',
'Message queue for' => '消息队列',
'Messages' => '消息',
'Message sent to' => '消息发送至',
'Messages per page' => '每页消息数',
'Message will be sent to: ' => '消息将发送至: ',
'Method' => '方法',
'Method to open directory links' => '打开目录链接的方法',
'min' => '分',
'Mini calendar' => '迷你日历',
'Mini Calendar: Preferences' => '迷你日历: 个人参数',
'Minimum password length' => '最小密码长度',
'Minimum time between posts' => '发表日志的最小间隔时间',
'Minor' => '次要',
'mins' => '分',
'minute' => '分',
'minutes' => '分',
'Misc' => '其它',
'Missing db param' => '缺少数据库参数',
'Missing information to read news (server,port,username,password,group) required' => '缺少读取news所需信息(服务器,连接端口,用户名称,密码,群组)',
'Missing title or body when trying to post a comment' => '发表评论没有标题或内文',
'Mode' => '模式',
'Moderator' => '板主',
'Moderator actions' => '板主命令',
'Moderator group' => '管理员群组',
'Moderators and admin can attach' => '只允许板主与管理员',
'Moderator user' => '管理员账号',
'Modified' => '已变更',
'Module' => '模块',
'Module Name' => '模块名称',
'Modules' => '模块',
'mon' => '一',
'Monday' => '星期一',
'monitor' => '监视',
'monitor activities' => 'monitor activities',
'Monitor instances' => 'Monitor instances',
'Monitor processes' => 'Monitor processes',
'monitor this blog' => '监视此日志',
'monitor this forum' => '监视此论坛',
'monitor this page' => '监视此页面',
'monitor this topic' => '监视此主题',
'Monitor workitems' => 'Monitor workitems',
'month' => '月',
'Monthly' => '每月',
'More info about' => '更多信息:',
'Most Active blogs' => '最活跃 blog',
'Most commented forums' => '最多评论论坛',
'Most downloaded files' => '最多下载文件',
'Most read topics' => '最多阅读主题',
'Most relevant pages' => '最相关页面',
'Most visited blogs' => '最多访问的日志',
'Most visited forums' => '最多访客论坛',
'Most visited sub-categories' => '最常被访问的子分类',
'mot' => 'mot',
'move' => '移动',
'Move image' => '移动图像',
'move selected files' => '移动选择的文件',
'move selected topics' => '移动选择的主题',
'Move to' => '移动至',
'move to left column' => '移至左行',
'move to right column' => '移至右行',
'Move to topic:' => '移动至主题:',
'Msg' => '消息',
'Msgs' => '消息',
'Multi-page pages' => '多页式页面',
'Multiple choices' => '多重选择',
'MultiPrint' => '多重打印',
'Mus enter a name to add a site' => '增加站点时必须输入名称',
'Must be logged to use this feature' => '必须登录才能使用此功能',
'Mutual' => '共同',
'My blogs' => '我的日志',
'My files' => '我的文件',
'MyFiles' => '我的文件',
'My galleries' => '我的图库',
'My items' => '我的事项',
'MyMenu' => 'MyMenu',
'My messages' => '我的消息',
'My pages' => '我的页面',
'My tasks' => '我的任务',
'My watches' => '我的监视',
'Name' => '名称',
'name (asc)' => '名称 (升序)',
'name (desc)' => '名称 (降序)',
'Name-filename' => '名称-檔名',
'Navigation Panel' => '导览面板',
'neutral' => '中立',
'Never' => '从不',
'Never delete versions younger than days' => '永不删除少于几天的版本',
'new' => '增加',
'New article submitted at ' => '新文章发表于 ',
'New blog post: {$mail_title} by {$mail_user} at {$mail_date|bit_short_datetime}' => '新 blog 日志: {$mail_title} 由 {$mail_user} 发表于 {$mail_date|bit_short_datetime}',
'new comments' => '新评论',
'new files' => '新文件',
'new images' => '新图像',
'new image uploaded by' => '新图像上传自',
'new item in tracker' => '追踪系统中有新项目',
'new major' => 'new major',
'new message' => '件新消息',
'New message arrived from ' => '收到新消息: ',
'new messages' => '新消息',
'new minor' => 'new minor',
'New name' => '新名称',
'New password' => '新密码',
'new question' => '新问题',
'Newsgroup' => '讨论群',
'new sites' => '新站点',
'Newsletter' => '邮件列表',
'Newsletter:' => '邮件列表:',
'Newsletters' => '邮件列表',
'Newsletter subscription information at ' => '邮件列表注册信息在 ',
'Newsreader' => '新闻阅读器',
'News server' => 'News 服务器',
'new subscriptions' => '新订阅',
' new topic:' => ' 新主题:',
'new topic' => '新主题',
'New user registration' => '新用户注册',
'new users' => '新用户',
'new window' => '新的窗口',
'Next' => '下一个',
'next chart' => '下一张排行榜',
'Next chart will be generated on' => '下一排行榜将建立于',
'next image' => '下一个图像',
'Next page' => '后一页',
'next topic' => '后一主题',
'Next ver' => '下一个版本',
'Next version' => '下一个版本',
'Nickname' => '昵称',
'No' => '否',
'No activities defined yet' => '尚未定义活动',
'No activity indicated' => 'No activity indicated',
'No article indicated' => '未指定文章',
'No attachments' => '禁止附件',
'No attachments for this item' => '此项目无附件',
'No attachments for this page' => '此页面无附件',
'No backlinks to this page' => '此页面并无反向链接',
'No banner indicated' => '未指定大标题',
'No blog indicated' => '未指定日志',
'no cache' => '无缓冲',
'No cache information available' => '无可用缓冲信息',
'No categories defined' => '尚未定义类别',
'No channel indicated' => '未指定频道',
'No chart indicated' => '未指定排行榜',
'No charts defined yet' => '尚未定义排行榜',
'No content id indicated' => '未指定内容编号',
'no description' => '无描述',
'No description available' => '没有描述',
'No faq indicated' => '未指定faq',
'no feeling' => '没感觉',
'No file' => '没有文件',
'No forum indicated' => '未指定论坛',
'No gallery indicated' => '未指定图库',
'No image indicated' => '未指定图像',
'No image uploaded' => '没有上传图像',
'No image yet, sorry.' => '尚无图像, 抱歉.',
'No individual permissions global permissions apply' => '不采用单独的权限设置,采用全体权限设置',
'No individual permissions global permissions to all pages apply' => '统一对页面使用全局权限(不使用单独页面权限)',
'No instance indicated' => 'No instance indicated',
'No instances created yet' => 'No instances created yet',
'No instances defined yet' => 'No instances defined yet',
'No item indicated' => '未指定项目',
'No items defined yet' => '尚未定义项目',
'No mappings defined yet' => 'No mappings defined yet',
'No menu indicated' => '未指定菜单',
'No messages queued yet' => '尚无消息队列',
'No messages to display' => '没有消息可显示',
'No more messages' => '没有消息了',
'No name indicated for wiki page' => '尚未指定 wiki 页面名称',
'Non cacheable images' => '无可缓冲的图像',
'none' => '无',
'None, this is a thread message' => '不, 这不是讨论帖',
'No newsletter indicated' => '未指定邮件列表',
'No nickname indicated' => '未指定昵称',
'No note indicated' => '未指定备忘录',
'No notes yet' => '尚无记事',
'Non parsed sections' => '不分析的区段',
'No page indicated' => '没有指定页面',
'No pages found' => '查无此页',
'No pages indicated' => '未指定页面',
'No pages matched the search criteria' => '找不到符合条件的页面',
'No permission to upload zipped file packages' => '没有权限上传 zip 压缩的文件包',
'No permission to upload zipped image packages' => '没有权限上传 zip 压缩的图像包',
'No poll indicated' => '未指定投票',
'No post indicated' => '未指定日志',
'No processes defined yet' => 'No processes defined yet',
'No process indicated' => '未指定程序',
'No question indicated' => '未指定问题',
'No quiz indicated' => '未指定测验',
'No records found' => '查无记录',
'No records were found. Check the file please!' => '找不到纪录, 请检查文件!',
'no reminders' => '没有提醒',
'No result indicated' => '未指定结果',
'normal' => '正常',
'normal headers' => '一般标头',
'(no roles)' => '(无角色)',
'No roles are defined yet so no roles can be mapped' => 'No roles are defined yet so no roles can be mapped',
'No roles associated to this activity' => '没有与此活动相关的角色',
'No roles defined yet' => 'No roles defined yet',
'No scales available' => '没有可用的比率',
'No server indicated' => '未指定服务器',
'No site indicated' => '未指定站点',
'No structure indicated' => '未指定结构',
'No subject' => '无标题',
'no such file' => '无此文件',
'No suggested questions' => '无建议的问题',
'no summary' => '无总结',
'No survey indicated' => '未指定调查',
'No tasks entered' => '尚未输入工作',
'Not enough information to display this page' => '没有足够信息显示此页面',
'Notepad' => '笔记本',
'Notes' => '备忘录',
'No thread indicated' => '未指定讨论帖',
'Notifications' => '提醒',
'No topics yet' => '尚无主题',
'No tracker indicated' => '未指定追踪',
'No transitions defined yet' => '尚未定义变迁',
' not sent' => ' 未发送',
'not specified' => '未指定',
'No url indicated' => '未指定url',
'No user indicated' => '未指定用户',
'November' => '十一月',
'No version indicated' => '未指定版本',
'Now enter the file URL' => '输入这个文件的 URL',
'Now enter the image URL' => '输入图像的地址',
'Number of columns per page when listing categories' => '当列出分类时每页字段数',
'Number of displayed rows' => '显示的列数',
'Number of posts (desc)' => '日志数 (降序)',
'Number of posts to show' => '显示的日志数',
'Number of visited pages to remember' => '记录访问过的页面数',
'Object' => '对象',
'Objects' => '对象',
'objects in category' => '类别中的对象',
'Objects that can be included' => '允许包含的对象',
'objs' => 'objs',
'October' => '十月',
'of' => 'of',
'Offline operators' => '离线操作员',
'ok' => 'ok',
'Old articles' => '旧文章',
'Old password' => '旧密码',
'Old vers' => '旧版本',
'Old versions' => '旧版本',
' on ' => 'on',
'on:' => 'on:',
'One choice' => '单一选择',
'online' => '在线',
'Online operators' => '在线操作员',
'online user' => '在线用户',
'online users' => '在线用户',
'Only for users' => '仅用于用户',
'Only users with attach permission' => '只允许有附件权限的用户',
'op' => 'op',
'open' => '开放',
'Open a support ticket instead' => '改为打开要求标签',
'Open client window' => '打开客户端窗口',
'Open external links in new window' => '于新窗口打开外部链接',
'open new window' => '打开新窗口',
'Open operator console' => '打开操作控制台',
'open tasks' => '打开任务',
'Operation' => 'Operation',
'Operator' => '操作员',
'Operator:' => '操作员:',
'Option' => '选项',
'Optional' => '非必须',
'options' => '选项',
'Options (if apply)' => '选项 (如果有)',
'Options (separated by commas used in dropdowns only)' => '选项 (仅用于下拉菜单, 使用逗号分开)',
'or' => '或',
'or create a new category' => '或建立新类别',
'or create a new location' => '或建立新地点',
'order' => '顺序',
'Ordering for forums in the forum listing' => '在论坛列表中论坛的顺序',
'Or enter path or URL' => '或 输入路径 或 URL',
'Organized by' => '组织方式',
'Origin' => '原始',
'Original' => '原始',
'original size' => '原始大小',
'orphan pages' => '孤立页面',
' or upload a local file from your disk' => '或由你的磁盘上传一个本地的文件',
' or upload a local image from your disk' => ' 或从你的磁盘上传图像',
'Or upload a process using this form' => '或用这个表单提交一个进程',
'or use square brackets for an' => '或使用方括号表示',
'OS' => '操作系统',
'Other Polls' => '其它投票',
'Other users can upload files to this gallery' => '允许其它用户上传文件到此文件库',
'Other users can upload images to this gallery' => '允许其它用户上传图像至此图库',
'Overwrite' => '覆盖',
'Overwrite existing pages if the name is the same' => '当名称一样时覆写已存在的页面',
'overwriting old page' => '覆写旧页面',
'Owner' => '所有者',
'Own Image' => '已有图像',
'Own image size x' => '已有图像尺寸 x',
'Own image size y' => '已有图像尺寸 y',
'Page' => '页面',
'Page alias' => '页面别名',
'Page already exists' => '页面已存在',
'Page cannot be found' => '找不到页面',
'page created' => '页面已建立',
'Page creators are admin of their pages' => '页面建立者也是页面管理员',
'page|desc' => '页面|描述',
'Page generated in' => '本页面建立花费',
'Page generation debugging log' => '页面生成除错用纪录',
'page imported' => '导入的页面',
'Page must be defined inside a structure to use this feature' => '页面必须定义在结构中才能使用此功能',
'Page name' => '页面名称',
'page not added (Exists)' => '未加入页面 (已存在)',
'pages' => '页面',
'Pages:' => '页面:',
'Pages like' => '相似页面',
'pageviews' => '浏览数',
'Parameters' => '参数',
'Parent' => '父系',
'Parent category' => '父分类',
'Participants' => '参与者',
'pass' => '密码',
'Passcode to register (not your user password)' => '注册用 通行码 (并非你的用户密码)',
'password' => '密码',
'password for this account is' => '此账号的密码是',
'Password invalid after days' => '密码在几天后到期',
'Password is required' => '需要密码',
'Password must contain both letters and numbers' => '密码必须含有字母及数字',
'Password protected' => '受密码保护',
'Password should be at least' => '密码应至少有',
'path' => '路径',
'Path to where the dumped files are' => '转储文件的路径',
'pdf' => 'pdf',
'PDF Export' => '输出为 PDF',
'PDF generation' => '建立 PDF',
'PDF Settings' => 'PDF 设置',
'PEAR::Auth' => 'PEAR::Auth',
'Percentage completed' => '完成百分比',
'perm' => '权限',
'Permalink' => '固定链接',
'Permanency' => '耐久度',
'permanently' => '永久地',
'Permision denied' => '权限不足',
'permission' => '权限',
'Permission denied' => '权限不足',
'Permission denied to use this feature' => '权限不足, 无法使用本功能',
'Permission denied you can edit images but not in this gallery' => '权限不足, 你可以编辑图像, 但不得编辑此图库',
'Permission denied you cannot access this gallery' => '权限不足, 你无法访问这个图库',
'Permission denied you cannot approve submissions' => '权限不足, 你无法审核意见',
'Permission denied you cannot assign permissions for this page' => '权限不足, 你无法指定此页面的权限',
'Permission denied you cannot browse this gallery' => '权限不足, 你无法浏览这个图库',
'Permission denied you cannot browse this page history' => '权限不足, 你无法查看本页历史',
'Permission denied you cannot create galleries and so you cant edit them' => '权限不足, 你无法建立和编辑文件库',
'Permission denied you cannot create or edit blogs' => '权限不足, 你无法建立或编辑日志',
'Permission denied you cannot edit images' => '权限不足, 你无法编辑图像',
'Permission denied you cannot edit submissions' => '权限不足, 你无法编辑意见',
'Permission denied you cannot edit this article' => '权限不足,你无法编辑此文章',
'Permission denied you cannot edit this blog' => '权限不足, 你无法编辑此日志',
'Permission denied you cannot edit this file' => '权限不足, 你无法编辑此文件',
'Permission denied you cannot edit this gallery' => '权限不足, 你无法编辑此文件库',
'Permission denied you cannot edit this page' => '权限不足, 你无法编辑此页面',
'Permission denied you cannot edit this post' => '权限不足, 你无法编辑此日志',
'Permission denied you cannot move images from this gallery' => '权限不足, 你无法移动本图库中文件',
'Permission denied you cannot post' => '权限不足, 你无法发表日志',
'Permission denied you cannot rebuild thumbnails in this gallery' => '权限不足, 你无法建立此图库的缩列图',
'Permission denied you cannot remove articles' => '权限不足,你无法移除文章',
'Permission denied you cannot remove banners' => '权限不足, 你无法移除大标题',
'Permission denied you cannot remove files from this gallery' => '权限不足, 你无法移除此文件库中的文件',
'Permission denied you cannot remove images from this gallery' => '权限不足, 你无法删除本图库中图像',
'Permission denied you cannot remove pages' => '权限不足, 你无法移除页面',
'Permission denied you cannot remove submissions' => '权限不足, 你无法移除意见',
'Permission denied you cannot remove the post' => '权限不足, 你无法移除此日志',
'Permission denied you cannot remove this blog' => '权限不足, 你无法移除此日志',
'Permission denied you cannot remove this gallery' => '权限不足, 你无法移除此文件库',
'Permission denied you cannot remove versions from this page' => '权限不足, 你无法移除本页版本',
'Permission denied you cannot rollback this page' => '权限不足,你无法复原这个页面',
'Permission denied you cannot rotate images in this gallery' => '权限不足, 你无法旋转此图库中的图像',
'Permission denied you cannot send submissions' => '权限不足, 你无法送出意见',
'Permission denied you cannot upload files' => '权限不足, 你无法上传文件',
'Permission denied you cannot upload images' => '权限不足, 你无法上传图像',
'Permission denied you cannot view backlinks for this page' => '权限不足, 你无法查看此页面的反向链接',
'Permission denied you cannot view pages' => '权限不足, 你无法查看页面',
'Permission denied you cannot view pages like this page' => '权限不足, 你无法查看此页面的相似页面',
'Permission denied you cannot view the calendar' => '权限不足, 你无法使用日历',
'Permission denied you cannot view this page' => '权限不足, 你无法查看此页面',
'Permission denied you can not view this section' => '权限不足, 你无法浏览这个区块',
'Permission denied you cannot view this section' => '权限不足, 你无法查看这个区段',
'Permission denied you can\'t upload files so you can\'t edit them' => '权限不足, 你无法上传文件也无法编辑',
'Permission denied you cant view this section' => '权限不足, 你无法查看这个区段',
'Permission denied you can upload files but not to this file gallery' => '权限不足, 你可以上传文件, 但不能上传至此文件库',
'Permission denied you can upload images but not to this gallery' => '权限不足, 你无法在此图库中上传图像',
'Permissions' => '权限',
'perms' => '权限',
'phpinfo' => 'phpinfo',
'PHPOpenTracker' => 'PHPOpenTracker',
'Pick avatar from the library' => '从内建头像中选取',
'Pick user Avatar' => '选择用户的头像',
'Pick your avatar' => '选择你的头像',
'picture not found' => '找不到图片',
'Pictures' => '图片',
'Plain text' => '纯文字',
'Played' => '已玩',
'Please' => '请',
'Please choose a module' => '请选择模块',
'Please create a category first' => '请先建立一个类别',
'please read' => '请阅读',
'Please select a chat channel' => '请选择一个聊天频道',
'Please wait 2 minutes between posts' => '请间隔两分钟再发表日志',
'PluginsHelp' => 'Plugins说明',
'points' => '分',
'poll' => '投票',
'Poll comments settings' => '投票评论设置',
'Poll options' => '投票选项',
'Polls' => '投票',
'Poll settings' => '投票设置',
'Poll Stats' => '投票统计',
'pop' => 'pop',
'POP3 server' => 'POP3 服务器',
'POP server' => 'POP 服务器',
'popup' => '弹出',
'popup window' => '弹出窗口',
'port' => '连接端口',
'pos' => '排名',
'post' => '发表',
'Post date' => '发表日期',
'posted by' => '发表自',
'Posted comments' => '已发表评论',
'posted on' => '发表于',
'Posting comments' => '发表评论',
'Post level comments' => 'Post level comments',
'Post new comment' => '发表新评论',
'Post or edit a message' => '发表或编辑消息',
'Post recommendation at' => '发表建议于',
'posts' => '日志数',
'Posts per day' => '每日发表数',
'ppd' => '每日发表数',
'pre' => 'pre',
'Preferences' => '使用参数',
'Prefs' => '个人参数',
'Prepare a newsletter to be sent' => '准备将要送出的邮件列表',
'Prev' => '前一个',
'Prevent automatic/robot registration' => '防止自动/机器人注册',
'Prevent flooding' => '防止灌水',
'Prevents parsing data' => '防止分析数据',
'prevents referencing' => '防止引用',
'Prevent users from voting same item more than one time' => '防止用户投相同项目一次以上',
'preview' => '预览',
'Preview menu' => '预览菜单',
'Preview poll' => '查看投票',
'prev image' => '前一个图像',
'Previous' => '先前排名',
'previous chart' => '前一排行榜',
'Previously remove existing page versions' => '事先移除已存在的页面版本',
'Previous page' => '前一页',
'prev topic' => '前一主题',
'Print' => '打印',
'printable' => '可打印',
'Print multiple pages' => '打印多重页面',
'Print Wiki Pages' => '打印 Wiki 页面',
'prio' => '优先级',
'priority' => '优先级',
'private' => '私人',
'private message' => '私人消息',
'proc' => 'proc',
'Proceed at your own peril' => '请自己小心',
'process' => 'process',
'Process:' => 'Process:',
'Process activities' => '程序的活动',
'Process already exists' => 'Process already exists',
'processes' => 'processes',
'Process form' => 'Process form',
'Process Name' => '进程名称',
'Process roles' => 'Process roles',
'Process Transitions' => '程序的变迁',
'Program' => '方案',
'Program dynamic content for block' => '设计区块的动态内容',
'Programmed versions' => '计划的版本',
'Properties' => '属性',
'Property' => '属性',
'Prune old messages after' => '删去旧消息于',
'Prune unreplied messages after' => '删去未回复的消息于',
'pts' => 'pts',
'public' => '公开',
'Publish' => '发表',
'PublishDate' => '发表日期',
'Publish Date' => '发表日期',
'Published' => '发表',
'Publishing Date' => '发表日期',
'pvs' => 'pvs',
'Q' => 'Q',
'question' => '问题',
'questions' => '问题',
'Questions per page' => '每页问题数',
'Queue all posts' => '保留所有文章',
'Queue anonymous posts' => '保留匿名文章',
'queued:' => '队列中:',
'queued messages:' => '队列中消息:',
'Quick edit a Wiki page' => '快速编辑 Wiki 页面',
'Quicklinks' => '快速链接',
'Quiz' => '测验',
'Quiz can be repeated' => '可以重复参加测验',
'Quiz is time limited' => '测验有时间限制',
'QuizMenu' => 'QuizMenu',
'Quiz result stats' => '测验结果统计',
'Quiz Stats' => '测验统计',
'Quiz time limit excedeed quiz cannot be computed' => '测验时间限制已超过,测验不列入计算',
'quizzes' => '测验',
'Quizzes taken' => '已参加过的测验',
'quota' => '配额',
'Quota (Mb)' => '配额 (Mb)',
'quote' => 'quote',
'random' => '随机',
'Random Image' => '随机图像',
'Random image from' => '随机图像 由',
'Random Pages' => '随机页面',
'Random sub-categories' => '随机子分类',
'Rank 1..10' => '排名 1..10',
'Rank 1..5' => '排名 1..5',
'Ranking' => '排名',
'Ranking frequency' => '排行榜频率',
'rankings' => '排名',
'Ranking shows' => '显示排行榜',
'Ranks' => '排名',
'Rate (1..10)' => '评比 (1..10)',
'Rate (1..5)' => '评比 (1..5)',
'Rating' => '排行',
'Ratio' => '比率',
'Re:' => 'Re:',
'Read' => '阅读',
'Reading article from' => '阅读文章由',
'Reading note:' => '阅读备忘录:',
'Read message' => '阅读消息',
'read more' => '详细阅读',
'reads' => '阅读',
'Reads (desc)' => '阅读 (降序)',
'Real Name' => '真实姓名',
'Realtime' => '实时',
'reason' => '原因',
'rebuild thumbnails' => '重建缩列图',
'Received Articles' => '已接收文章',
'Received objects' => '接收的对象',
'received pages' => '已接收页面',
'Recently visited pages' => '最近访问页面',
'Record untranslated' => '记录未翻译项目',
'referenced by' => '参考自',
'references' => '参考',
'Referer stats' => '参照页统计',
'Refresh' => '重新整理',
'refresh cache' => '重新整理缓冲',
'Refresh rate' => '刷新率',
'Refresh rate (if dynamic) [secs]' => '更新频率 (如果为动态) [秒]',
'register' => '注册',
'Register as a new user' => '注册新用户',
'registered at your site' => '在你的站点注册',
'Registration code' => '注册码',
'Reg users can change language' => '允许注册用户更改语言',
'Reg users can change theme' => '允许注册用户更改主题',
'reject' => '驳回',
'Rejected users' => '驳回的用户',
'relate' => '相关',
'related' => '相关',
'Related categories' => '相关分类',
'release instance' => 'release instance',
'Relevance' => '相当',
'Remember me' => '记住我的身份',
'Remember me feature' => '记忆登录功能',
'Reminders' => '提醒',
'Remind passwords by email' => '用email提示密码',
'Remove' => '移除',
'Remove all cookies' => '移除所有cookies',
'Remove all versions of this page' => '移除这个页面的所有版本',
'Remove a tag' => '移除一个标记',
'remove bookmark' => '移除书签',
'remove folder' => '移除资料夹',
'Remove from structure and remove page too' => '由结构移除并也移除页面',
'Remove images in the system gallery not being used in Wiki pages, articles or blog posts' => '移除系统图库中没有用于 Wiki 页面, 文章或 日志的图像',
'Remove old events' => '移除旧事件',
'Remove only from structure' => '仅由结构移除',
'Remove page' => '移除页面',
'Remove unused pictures' => '移除未使用的图片',
'>Remove Zones (you lose entered info for the banner)' => '>移除区域 (会留此标题的信息)',
'rename' => '更名',
'Rename page' => '页面更名',
'Renders a graph' => '建立图',
'Repeat password' => '再次输入密码',
'replace current page' => '取代目前页面',
'replace current window' => '取代目前窗口',
'replace window' => '取代窗口',
'replied' => '已回复',
'replies' => '回复数',
'Replies (desc)' => '回复 (降序)',
'reply' => '回复',
'replyall' => '回复全部',
'reply all' => '全部回复',
'reply to this' => '回复这篇',
'reported:' => '已回报项目:',
'Reported by' => '回报自',
'reported messages:' => '回报的消息:',
'Reported messages for' => '回报消息',
'report this post' => '回报此文章',
'Requested' => '已要求',
'requested a reminder of the password for the' => '要求发送密码提示',
'Request live support' => '要求在线支持',
'Request passcode to register' => '须用 passcode 才能注册',
'Request support' => '要求支持',
'Required' => '必须',
'Require HTTP Basic authentication' => '需要 HTTP 基本认证',
'Require secure (https) login' => '需要安全 (https) 登录',
'reset' => '重新设置',
'reset table' => '重设表格',
'restore' => '回复',
'Restore defaults' => '回复默认值',
'Restore the wiki' => '回复此 wiki',
'Restoring a backup' => '复原一个备份',
'Result' => '结果',
'Results' => '结果',
'Return to block listing' => '返回区块列表',
'Return to blog' => '返回 blog',
'return to gallery' => '返回图库',
'Return to HomePage' => '回首页',
'Return to messages' => '返回消息列表',
'Reuse question' => '重复使用问题',
'Review' => '评论',
'right' => '右',
'Right column' => '右栏',
'Right Modules' => '右方模块',
'Role' => 'Role',
'Roles' => 'Roles',
'rollback' => '复原',
'Rollback page' => '回复页面',
'Rollback_page' => '复原页面',
'rotate' => '旋转',
'rotate left' => '向左旋转',
'rotate right' => '向右旋转',
'route' => '路径',
'routing' => 'routing',
'rows' => '行',
'RSS' => 'RSS',
'Rss channels' => 'Rss频道',
'RSS feed' => 'RSS feed',
'RSS feeds' => 'RSS feeds',
'RSS modules' => 'RSS 模块',
'Rule activated by dates' => '规则依日期启用',
'Rule active from' => '规则起始日期',
'Rule active until' => '规则结束日期',
'Rules' => '规则',
'Rule title' => '规则名称',
'run' => '执行',
'run activity' => 'run activity',
'run instance' => 'run instance',
'running' => 'running',
'sad' => '难过',
'sandbox' => '测试沙箱',
'sat' => '六',
'Saturday' => '星期六',
'Save' => '保存',
'save a custom copy' => '另存自订备份',
'save and approve' => '保存并核可',
'save and exit' => '保存并离开',
'Save position' => '保存位置',
'save the banner' => '保存大标题',
'Save to notepad' => '保存到笔记本',
'score' => '分数',
'Score (desc)' => '分数 (降序)',
'search' => '查找',
'Search by Date' => '以日期查找',
'search category' => '查找类别',
'searched' => '查找',
'Searches' => '查找',
'Searches performed' => '查找已执行',
'Search in' => '查找于',
'Search results' => '查找结果',
'Search stats' => '查找统计',
'SearchStats' => 'SearchStats',
'Search Wiki PageName' => '查找 Wiki 页面名称',
'second' => '秒',
'seconds' => '秒',
'secs' => '秒',
'section' => '区段',
'sections' => '区段',
'secure' => '安全',
'Select' => '选择',
'Select a news server to browse' => '选择要浏览的 news 服务器',
'select from address book' => '由通讯簿中选择',
'Select news group' => '选择 news 讨论群',
'Select ONE method for the banner' => '选择大标题的模式',
'Select something to vote on' => '选择要投的项目',
'select source' => 'select source',
'Select the language to edit' => '选择要编辑的语言',
'Select the language to Export' => '选择要导出的语言',
'Select the language to Import' => '选择要导入的语言',
'Select Wiki Pages' => '选择 Wiki 页面',
'send' => '发送',
'Send all to' => '全部发送到',
'Send a message to' => '发送消息至',
'Send a message to us' => '发送消息给我们',
'send answers' => '公布答案',
'Send articles' => '发送文章',
'Send blog post' => '发送 blog 日志',
'Send email notifications when this page changes to' => '页面修改时发送 email 提醒',
'send email to user' => '发送 email 至用户',
'sender' => '寄件者',
'Sender Email' => '发送者 Email',
'send instance' => 'send instance',
'Send me a message' => '发送消息给我',
'Send me an email for messages with priority equal or greater than' => '发送 email 通知, 当消息优先级大于等于',
'send me my password' => '发给我密码',
'Send message' => '发送消息',
'Send Newsletters' => '送出邮件列表',
'Send objects' => '发送对象',
'Send objects to this site' => '发送对象到这个网站',
'Send post to this addresses' => '发送日志至此地址',
'Send this forums posts to this email' => '发送此论坛文章到这个电子邮件',
'Send trackback pings to:' => 'Send trackback pings to:',
'Send Wiki Pages' => '发送 Wiki 页面',
'sent' => '送出',
'Sent editions' => '送出版本',
'September' => '九月',
'server' => '服务器',
'Server name (for absolute URIs)' => '服务器名称 (绝对 URI 使用)',
'Server time zone' => '服务器时区',
'Set' => '设置',
'set as operator' => '设为操作员',
'Set features' => '设置功能',
'Set feeds' => '设置 feeds',
'Set home forum' => '设置首页论坛',
'Set last poll as current' => '设置最后一个投票为目前的投票',
'Set Next act' => 'Set Next act',
'Set next user' => 'Set next user',
'Set prefs' => '设置参数',
'Set property' => 'Set property',
'settings' => '设置',
'Shared code' => 'Shared code',
'Short date format' => '短日期格式',
'Shortname' => '简称',
'Shortname must be 2 Characters' => '缩写必须是两个字符',
'Short text' => '简短文字',
'Short time format' => '短时间格式',
'Shoutbox' => 'Shoutbox',
'Show all' => '显示全部',
'Show Average' => '显示平均',
'show categories' => '显示类别',
'Show Category Objects' => '显示类别对象',
'Show Category Path' => '显示类别路径',
'Show chart for the last ' => '显示排行榜于最近 ',
'Show comments' => '显示评论',
'Show creation date when listing tracker items?' => '当列出追踪项目时追踪建立日期?',
'Show description' => '显示描述',
'Show last_modified date when listing tracker items?' => '当列出追踪项目时显示上次修改日期?',
'Show number of sites in this category' => '在这个分类里展示站点数',
'Show page title' => '显示页面标题',
'Show Plugins Help' => '显示外挂模块说明',
'Show Post Form' => '显示发表窗体',
'Show posts' => '显示发表数',
'Show status when listing tracker items?' => '当列出追踪项目时显示状态?',
'Show suggested questions/suggest a question' => '显示建议的问题/建议一个问题',
'Show Text Formatting Rules' => '显示文字排版规则',
'Show the banner only between these dates' => '只在这些日期显示大标题',
'Show the banner only in this hours' => '只在这些时间显示大标题',
'Show the banner only on' => '显示大标题的日子',
'Show topic summary' => '显示主题统计',
'Show Votes' => '显示票数',
'similar' => '相似',
'Simple box' => '简单方块',
'since' => '自',
'since this is your registered email address we inform that the' => '由于这是你的注册 email 地址, 我们就发送至此',
'Since your last visit' => '自从你上次访问',
'Since your last visit on' => '自从你上次访问由',
'site' => '网站',
'Site added' => '增加的站点',
'Sites' => '站点',
'sites from the directory' => '个站点由这个目录',
'Site Stats' => '网站统计',
'Sites to validate' => '待确认的站点',
'Size' => '大小',
'Size of Wiki Pages' => 'Wiki 页面大小',
'slides' => '幻灯片',
'Slideshows theme' => '幻灯片主题',
'smaller' => '缩小',
'Smileys' => '表情符号',
'SMTP requires authentication' => 'SMTP 需要认证',
'SMTP server' => 'SMTP 服务器',
'Somebody or you tried to subscribe this email address at our site:' => '某人或是你试图以此 email 地址订阅本站的邮件列表:',
'SomeName' => '某个名称',
'someone from' => '某人来自',
'some text' => '某些文字',
'Some useful URLs' => '一些有用的 URL',
'Sorry no such module' => '抱歉, 没有这个模块',
'sort' => '排序',
'Sort by' => '排序依据',
'Sort Images by' => '排列图像顺序',
'Sort posts by:' => '日志排序方式:',
'Sorts the plugin content in the wiki page' => '在 wiki 页面中排序外挂模块内容',
'source' => '来源',
'special characters' => '特殊字符',
'special chars' => '特殊字符',
'Spellcheck' => '拼字检查 ',
'Spellchecking' => '拼字检查',
'split' => '分割',
'SrvMenu' => 'SrvMenu',
'standalone' => '独立',
'standard' => '标准',
'stars' => '星',
'start' => '开始',
'Start date' => '开始日期',
'Started' => '已开始',
'Start hour for days' => '每天开始时间',
'stat' => '状态',
'Static' => '静态',
'Statistics' => '统计',
'stats' => '统计',
'Stats for a Quiz' => '测验统计',
'Stats for quiz' => '测验统计',
'Stats for quizzes' => '测验统计',
'Stats for survey' => '调查结果',
'Stats for surveys' => '调查结果',
'Stats for this quiz Questions ' => '此测验问题统计资料 ',
'Stats for this survey Questions ' => '这次调查问题的结果',
'status' => '状态',
'stay in ssl mode' => '保留在 ssl 模式',
'sticky' => '便签',
'stop' => 'stop',
'stop monitoring this blog' => '停止监视此日志',
'stop monitoring this forum' => '停止监视此论坛',
'stop monitoring this page' => '停止监视此页面',
'stop monitoring this topic' => '停止监视此主题',
'Store attachments in:' => '保存附件于:',
'Store plaintext passwords' => '保存明文密码',
'Store quiz results' => '保存测验结果',
'strict' => '严谨',
'Structure' => '结构',
'structures' => '结构',
'Style Sheet' => '样式表',
'sub categories' => '子类别',
'Subcategories' => '子分类',
'subject' => '主题',
'Submissions' => '提交',
'submissions waiting to be examined' => '等待检查的文章',
'Submit' => '提交',
'Submit a new link' => '送出新链接',
'Submit article' => '传送文章',
'Submit Notice' => '发送时提示',
'subs' => 'subs',
'Subscribe' => '订阅',
'subscribed' => '订阅',
'Subscribe to newsletter' => '订阅邮件列表',
'Subscription confirmed!' => '订阅已确认!',
'subscriptions' => '订阅',
' successfully sent' => ' 成功发送',
'suggested' => '建议',
'Suggested questions' => '建议问题',
'Summary' => '总计',
'sun' => '日',
'Sunday' => '星期日',
'Support chat transcripts' => '支持交谈纪录',
'Support requests' => '支持要求',
'Support tickets' => '支持标签',
'Survey' => '调查',
'Surveys' => '调查',
'Survey stats' => '调查结果',
'switch' => '转换',
'Switch construct' => 'Switch construct',
'Syntax' => '语法',
'Syntax highlighting' => '语法强调',
'System gallery' => '系统图库',
'table' => '表格',
'Tables' => '表格',
'Tables syntax' => '表格语法',
'Tag already exists' => '标签已经存在',
'tagline' => 'tagline',
'Tag Name' => '标签名称',
'Tag not found' => '找不到标签',
' tags. Example: {tr}The newsletter was sent to {$sent} email addresses' => ' 标签. 范例: {tr}本邮件列表发送至 {$sent} email 地址',
'Take a quiz' => '参加测验',
'taken' => '参加过',
'Tasks' => '任务',
'Tasks per page' => '每页任务数',
'tbheight' => '表格大小',
'tbl' => 'tbl',
'Tbl vis' => 'Tbl vis',
'Template' => '模板',
'Template listing' => 'Template列表',
'Templates' => '模板',
'Temporary directory' => '暂存目录',
'Tentative' => '暂定',
'term' => '名词',
'Text' => '文字',
'textarea' => '文本区',
'text field' => '文本框',
'TextFormattingRules' => '文字格式化原则',
'Textheight' => '文字高度',
'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.' => '感谢你的订阅. 你会收到一封信件以确认你的订阅. 在订阅确认前不会收到邮件列表.',
'Thank you for you registration. You may log in now.' => '感谢你的注册. 你现在可以登录了.',
'The content on this page is licensed under the terms of the' => '本页面的内容根据以下条款授权',
'The copyright management feature is not enabled.' => '版权管理功能并未启动.',
'The cord' => 'The cord',
'The file is not a CSV file or has not a correct syntax' => '文件不是 CSV 文件, 或是语法错误',
'The following addresses are not in your address book' => '下列地址不在你的通讯簿中',
'The following file was successfully uploaded' => '下列的文件已成功上传',
'The following image was successfully edited' => '下列图像已成功编辑',
'The following image was successfully uploaded' => '下列图像已成功上传',
'the following link to login for the first time' => '以下的链接来进行第一次登录',
'The following site was added and validation by admin may be needed before appearing on the lists' => '已加入以下站点, 需等待管理员确认后才会显示在列表上',
'theme' => '主题',
'Theme control' => '主题控制',
'Theme Control Center: categories' => '主题控制台: 分类',
'Theme Control Center: Objects' => '主题控制台: 对象',
'Theme Control Center: sections' => '主题控制台: 区块',
'Theme is selected as follows' => '主题选择如下',
'The new page content is:' => '新的页面内容:',
'The newsletter was sent to {$sent} email addresses' => '邮件列表已发送至 {$sent} email 地址',
'The original document is available at' => '原始文件位于',
'The page cannot be found' => '找不到页面',
'The page {$mail_page} was changed by {$mail_user} at {$mail_date|bit_short_datetime}' => '此页面 {$mail_page} 由 {$mail_user} 更改于 {$mail_date|bit_short_datetime}',
'The passwords didn\'t match' => '密码不符',
'The passwords don\'t match' => '密码错误',
'The passwords dont match' => '密码错误',
'The process name already exists' => 'The process name already exists',
'There are' => '有',
'There are individual permissions set for this blog' => '这个日志有独立的权限设置',
'There are individual permissions set for this file gallery' => '这个文件库有独立的权限设置',
'There are individual permissions set for this forum' => '这个论坛有独立权限设置',
'There are individual permissions set for this gallery' => '这个图库有独立的权限设置',
'There are individual permissions set for this newsletter' => '此邮件列表有独立的权限设置',
'There are individual permissions set for this quiz' => '这个测验有单独权限设置',
'There are individual permissions set for this survey' => '此调查有独立的权限设置',
'There are individual permissions set for this tracker' => '这个追踪项目有独立的权限设置',
'There is an error in the plugin data' => '外挂模块数据发生错误',
'The SandBox is disabled' => '测试沙箱功能已关闭',
'The thumbnail name must be' => '缩列图的名称必须是',
'The user' => '用户',
'The user has choosen to make his information private' => '此用户选择保密个人信息',
'This email address has been added to the list of subscriptors of:' => '此 email 地址已被加入订阅列表:',
'This email address has been removed to the list of subscriptors of:' => '此 email 地址已被移出订阅列表:',
'This feature has been disabled' => '这个功能已被关闭',
'This feature is disabled' => '这个功能已经关闭',
'This is' => '这是',
'This is a cached version of the page.' => '这是本页面的缓冲版本',
'This newsletter will be sent to {$subscribers} email addresses.' => '邮件列表已发送至 {$subscribers} email 地址.',
'This page is being edited by' => '此页面被编辑中:',
'this post was reported' => '本文章已被回报',
'This process is invalid' => '这个进程已失效',
'this quiz stats' => '这个测验的统计',
'this survey stats' => '这次调查结果',
'Threads can be voted' => '讨论帖可投票',
'Threads (desc)' => '讨论 (降序)',
'Threshold' => '起算点',
'thu' => '四',
'Thumbnail' => '缩列图',
'Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)' => '缩列图 (如果game的名称为foo.swf 则缩列图必须命名为 foo.swf.gif 或 foo.swf.png 或 foo.swf.jpg)',
'Thumbnail (optional, overrides automatic thumbnail generation)' => '缩列图 (选择性, 覆盖自动缩列图建立)',
'Thumbnails size X' => '缩列图尺寸 X',
'Thumbnails size Y' => '缩列图尺寸 Y',
'Thursday' => '星期四',
'Time' => '时间',
'Time Left' => '剩余时间',
'time_limit' => '时间限制',
'times' => '次',
'times from the directory' => '次由这个目录',
'Time Zone' => '时区',
'Time Zone Map' => '时区对应',
'title' => '标题',
'Title:' => '标题:',
'Title (asc)' => '标题 (升序)',
'title bar' => '标题列',
'Title_bar' => '标题列',
'Title (desc)' => '标题 (降序)',
'to' => '至',
'to access full functionalities' => '以使用完整功能',
'to be used as argument' => '用为参数',
'To date' => '结束日期',
'Today' => '今日',
'To edit the copyright notices' => '要编辑版权宣告',
'Toggle display of comment zone' => '开关批注区域的显示',
'to group' => '给群组',
'to groups' => '给群组',
'to insert a random tagline' => '插入随机的tagline',
'Tools Calendars' => '工具日历',
'top' => 'TOP',
'Top 10' => '前10名',
'Top 100' => '前100名',
'Top 100 items' => '前 100 项',
'Top 10 items' => '前 10 项',
'Top 20' => '前20名',
'Top 20 items' => '前 20 项',
'Top 250 items' => '前 250 项',
'Top 40 items' => '前 40 项',
'Top 50' => '前50名',
'Top 50 items' => '前 50 项',
'Top active blogs' => '最活跃 blog',
'Top article authors' => '文章最多作者',
'Top articles' => '最热门文章',
'Top authors' => '最多产作者',
'Top bar' => '最上列',
'Top File Galleries' => '最热门文件库',
'Top Files' => '最热门文件',
'Top galleries' => '最热门图库',
'Top games' => '最热门游戏',
'topic' => '主题',
'topic:' => '主题:',
'Topic date' => '主题日期',
'topic image' => '主题图像',
'Topic list configuration' => '主题列表设置',
'Topic Name' => '主题名称',
'topics' => '主题',
'Topics (desc)' => '主题 (降序)',
'Topics only' => '仅主题',
'Topics per page' => '每页主题数',
'Top Images' => '最热门图像',
'To Points' => '至分数',
'Top Pages' => '最热门页面',
'Top Quizzes' => '最热门测验',
'Top Sites' => '热门站点',
'Top topics' => '最热门主题',
'Top visited blogs' => '最热门 blog',
'Top Visited FAQs' => '最热门 FAQs',
'Top visited file galleries' => '最常被浏览图库',
'Total' => '全部',
'Total articles size' => '全部文章大小',
'Total categories' => '所有分类',
'Total links' => '全部链接',
'Total links visited' => '全部被访问链接',
'Total pageviews' => '全部页面浏览数',
'Total posts' => '总发表日志数',
'Total questions' => '全部问题数',
'Total reads' => '全部阅读数',
'Total size of blog posts' => '日志的总大小',
'Total size of files' => '全部文件的总大小',
'Total size of images' => '所有图像大小',
'Total threads' => '总讨论帖数',
'Total topics' => '全部主题',
'Total votes' => '总票数',
'To the newsletter:' => '订阅的邮件列表:',
'to the registered email address for' => '至注册的 email 地址:',
'to_version' => '至版本',
'Trackback pings' => '跟踪插件',
'Tracker' => '追踪',
'Tracker fields' => '追踪字段',
'Tracker Items' => '追踪项目',
'Tracker items allow attachments?' => '允许追踪项目包含附件?',
'Tracker items allow comments?' => '允许对追踪项目发表评论?',
'trackers' => '追踪系统',
'Tracker was modified at ' => '追踪修改于 ',
'Transcript' => '纪录',
'transcripts' => '纪录',
'translate' => '翻译',
'Translate recorded' => '已记录翻译',
'Translation' => '翻译',
'Transmission results' => '传送结果',
'Trash' => '垃圾箱',
'trckrs' => 'trckrs',
'tree' => '树系',
'TrkMenu' => 'TrkMenu',
'try' => '测试',
'tue' => '二',
'Tuesday' => '星期二',
'Type' => '类型',
'Type <code>help</code> to get list of available commands' => '输入 <code>help</code> 可取得完整指令列表',
'ul' => 'ul',
'unassign' => '未指定',
'unchecked' => '未勾选的',
'underline' => '底线',
'underlines text' => '文字加底线',
'undo' => '回复',
'Unexistant gallery' => '文件库不存在',
'Unexistant link' => '不存在的链接',
'Unexistant user' => '不存在的用户',
'Unexistant version' => '不存在版本',
'Unflagg' => '解除标记',
'Unflagged' => '已解除标记',
'Unix' => 'Unix',
'unknown' => '不明',
'Unknown group' => '不明群组',
'Unknown/Other' => '未知/其它',
'Unknown user' => '不明用户',
'Unlimited' => '未限制',
'unlock' => '解除锁定',
'unlocked' => '解锁',
'unlock selected topics' => '解锁选择的主题',
'Unread' => '未阅读',
'Unread Messages' => '未读消息',
' unread private messages' => ' 未读的私人消息',
'up' => '上',
'Upcoming events' => '近期事件',
'update' => '更新',
'updated by the phpwiki import process' => '由 phpwiki 导入程序所更新',
'Upload' => '上传',
'Upload a backup' => '上传一个备份',
'Upload a game' => '上传一个游戏',
'Upload a new game' => '上传一个新游戏',
'Upload backup' => '上传备份',
'Upload Cookies from textfile' => '由文字文件上传 Cookies',
'Upload date' => '上传日期',
'uploaded' => '已上传',
'uploaded by' => '上传自',
'Uploaded filenames cannot match regex' => '上传文件名称不得符合正则表达式',
'Uploaded filenames must match regex' => '上传文件名称必须符合正则表达式',
'Uploaded image names cannot match regex' => '上传图像名称不得符合正则表达式',
'Uploaded image names must match regex' => '上传图像名称必须符合正则表达式',
'Upload failed' => '上传失败',
'Upload File' => '上传文件',
'Upload from disk' => '由磁盘上传',
'Upload from disk:' => '由磁盘上传: ',
'upload image' => '上传图像',
'Upload image for this post' => '上传图像至此文章',
'Upload picture' => '上传图片',
'Upload successful!' => '上传成功!',
'Upload was not successful' => '上传失败',
'Upload was not successful (maybe a duplicate file)' => '上传不成功 (可能是文件重复)',
'Upload your own avatar' => '上传你自己的头像',
'URI' => 'URI',
'Url' => 'Url',
'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 to link the banner' => '链接此标题的 URL',
'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 来取代 page, 例如: http://www.example.com/wiki/index.php?page=$page)',
'Usage chart' => '使用排行榜',
'Usage chart image' => '使用纪录图表',
'use' => '使用',
'Use a directory to store files' => '使用文件目录来保存文件',
'Use a directory to store images' => '使用文件目录来保存图像',
'Use a directory to store userfiles' => '使用目录保存用户文件',
'use admin email' => '使用管理员电子邮件',
'Use a question from another FAQ' => '使用来自其它 FAQ 的问题',
'use banner zone' => '使用大标题区域',
'Use cache for external images' => '缓冲外部图像',
'Use cache for external pages' => '缓冲外部页面',
'Use challenge/response authentication' => '使用安全响应认证',
'Use Cookies for unregistered users' => '未注册用户使用 cookies',
'Use database for translation' => '使用数据库存放翻译',
'Use database to store files' => '使用数据库来保存文件',
'Use database to store images' => '使用数据库来保存图像',
'Use database to store userfiles' => '使用数据库保存用户文件',
'Use dates' => '使用日期',
'Use Dates?' => '使用日期?',
'Use dbl click to edit pages' => '双击鼠标编辑页面',
'Use direct pagination links' => '使用直接页数链接',
'use dynamic content' => '使用动态内容',
'use filename' => '使用文件名称',
'use gallery' => '使用图库',
'Use gzipped output' => '使用 gzipp 压缩输出',
'Use HTML' => '使用HTML',
'Use HTML mail' => '使用 HTML 邮件',
'Use Image' => '使用图像',
'Use image generated by URL (the image will be requested at the URL for each impression)' => '使用由URL建立的图像 (图像每次都会从URL提取)',
'UseImg' => '使用图像',
'use in cms' => '使用于 cms',
'use in HTML pages' => '使用于 HTML 页面',
'use in newsletters' => '使用于邮件列表',
'use in wiki' => '使用于 wiki',
'Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones' => '使用 {literal}{{/literal}ed id=name} 或 {literal}{{/literal}ted id=name}以加入动态区域',
'use menu' => '使用菜单',
'Use (:name:) for smileys' => '使用 (:名称:) 表示表情符号',
'Use :nickname:message for private messages' => '用 :昵称:消息 来发送个人消息',
'Use normal editor' => '使用一般编辑器',
'Use own image' => '使用已有图像',
'Use page description' => '使用页面描述',
'use ...page... to separate pages' => '使用 ...页面... 分隔页面',
'Use ...page... to separate pages in a multi-page article' => '使用 ...页面... 将页面分隔为多重页面',
'Use ...page... to separate pages in a multi-page post' => '使用 ...页面... 将页面分隔为多重页面',
'Use PHPOpenTracker' => '使用 PHPOpenTracker',
'use poll' => '使用投票',
'Use pre-existing page' => '使用已存在的页面',
'User' => '用户',
'User:' => '用户:',
'User accounts' => '用户账号',
'User activities' => '用户行动',
'User already exists' => '用户已经存在',
'User answers' => '用户答案',
'User assigned modules' => '用户指定模块',
'User avatar' => '用户头像',
'User Blogs' => '用户日志',
'User bookmarks' => '用户书签',
'User can Configure Modules' => '允许用户设置模块',
'User doesnt exist' => '用户不存在',
'User Features' => '用户功能',
'userfiles' => '用户文件',
'User Files' => '用户文件',
'User Galleries' => '用户列表',
'User information' => '用户信息',
'User information display' => '显示用户数据',
'User instances' => 'User instances',
'User/IP' => '用户/IP',
'User is duplicated' => '用户重复',
'user level' => '用户等级',
'User login is required' => '需要用户登录',
'User menu' => '用户菜单',
'User Messages' => '用户消息',
'User Modules' => '用户模块',
'Username' => '用户名称',
'Username cannot contain whitespace' => '用户名称不能含有空格',
'Username is too long' => '用户名称过长',
'Username regex matching' => '用户名称符合正则表达式',
'User Notepad' => '用户记事本',
'user offline' => '用户已离线',
'user online' => '用户在在线',
'User Pages' => '用户页面',
'User Preferences' => '用户参数',
'User Preferences Screen' => '用户参数画面',
'User prefs' => '用户参数',
'User processes' => 'User processes',
'User registration and login' => '用户注册与登录',
'Users' => '用户',
'Users and admins' => '用户与管理员',
'Users can Configure Modules' => '允许用户设置模块',
'Users can lock pages (if perm)' => '允许用户锁定页面 (如果有权限)',
'Users can register' => '允许用户注册',
'Users can save pages to notepad' => '允许用户保存页面至记事本',
'Users can suggest new items' => '用户可以建议新选项',
'Users can suggest questions' => '允许用户建议问题',
'Users can vote again after' => '允许再次投票于',
'Users can vote only one item from this chart per period' => '用户每一单位时间只能从这个排行榜中投一项',
'user selector' => '用户选择器',
'Users have searched' => '用户已查找',
'Users have visited' => '用户已访问',
'Users in this channel' => '频道中的用户',
'use rss module' => '使用 rss 模块',
'User Stats' => '用户统计',
'User tasks' => '用户任务',
'User versions' => '用户版本',
'User_versions_for' => 'User_versions_for',
'User Watches' => '用户监视',
'Use single spaces to indent structure levels' => '使用单一空格缩排结构层级',
'use square brackets for an' => '使用方括号表示',
'Use templates' => '使用模板',
'Use text' => '使用文字',
'Use titles in blog posts' => '使用 blog 文章标题',
'Use topic smileys' => '主题可使用表情符号',
'Use URI as Home Page' => '使用 URI 当首页',
'Use [URL|description] or [URL] for links' => '使用 [URL|描述] 或 [URL] 表示链接',
'Use WikiWords' => '使用 WikiWords',
'Use wysiwyg editor' => '使用所见即所得编辑器',
'UsrMenu' => 'UsrMenu',
'UTC' => 'UTC',
'val' => 'val',
'Valid' => 'Valid',
'validate' => '确认',
'Validate links' => '确认链接',
'Validate sites' => '确认站点',
'Validate URLs' => '确认 URLs',
'Validate users by email' => '用email确认用户',
'valid process' => '有效的进程',
'valid sites' => '正确的站点',
'value' => '值',
'ver' => '版本',
'ver:' => '版本:',
'Vers' => '版本',
'Version' => '版本',
'Versions' => '版本',
'Versions are identical' => '版本相同',
'Very High' => '非常高',
'view' => '查看',
'View a FAQ' => '查看 FAQ',
'View a forum' => '进入论坛',
'View All' => '查看全部',
'view articles' => '显示文章',
'View a thread' => '查看帖子',
'view blog' => '查看日志',
'view comments' => '查看评论',
'viewed' => '被浏览',
'View FAQ' => '查看 FAQ',
'view info' => '查看信息',
'Viewing blog post' => '查看 blog 日志',
'View item' => '查看项目',
'View or vote items not listed in the chart' => '查看或投票项目不列在排行榜中',
'View page' => '查看页面',
'View submissions' => '查看意见',
'View the blog at:' => '查看此 blog 于:',
'View this tracker items' => '浏览此追踪项目',
'Visited links' => '已访问链接',
'visits' => '浏览数',
'Visits (desc)' => '访问 (降序)',
'Visits to file galleries' => '文件库访问数',
'Visits to forums' => '论坛访问数',
'Visits to image galleries' => '图像库访问数',
'Visits to weblogs' => '日志访问数',
'Visits to wiki pages' => 'wiki 页面访问数',
'visit the site for more games and fun' => '访问这个网站以取得更多游戏',
'vote' => '投票',
'Vote items' => '投票项目',
'Vote poll' => '投票',
'Votes' => '投票',
'Vote this item' => '投此项目',
'Voting system' => '投票系统',
'Waiting Submissions' => '等待送交文章',
'Warning' => 'Warning',
'Warning!' => '警告!',
'Warn on edit' => '编辑警告',
'Watches' => '监视',
'Watchlist' => '监视列表',
'Weblogs' => '网络日志',
'Webmail' => 'Webmail',
'Web Server' => '网站服务器',
'wed' => '三',
'Wednesday' => '星期三',
'week' => '周',
'Weekdays' => '工作日',
'Weekly' => '每周',
'Weeks' => '数周',
'We have' => '我们有',
'Welcome to ' => '欢迎来到 ',
'Welcome to our newsletter!' => '欢迎加入我们的邮件列表!',
'WfMenu' => 'WfMenu',
'wiki' => 'wiki',
'wiki-append' => 'wiki-append',
'Wiki attachments' => 'Wiki 附件',
'Wiki comments settings' => 'Wiki 评论设置',
'wiki create' => 'wiki 建立',
'WikiDiff::apply: line count mismatch: %s != %s' => 'WikiDiff::apply: 行数不符: %s != %s',
'WikiDiff::_check: edit sequence is non-optimal' => 'WikiDiff::_check: 编辑序列并非最佳',
'WikiDiff::_check: failed' => 'WikiDiff::_check: 失败',
'WikiDiff Okay: LCS = %s' => 'WikiDiff Okay: LCS = %s',
'Wiki Discussion' => 'Wiki 讨论',
'Wiki Features' => 'Wiki 功能',
'wiki-get' => 'wiki-get',
'wiki help' => 'wiki 说明',
'Wiki History' => 'Wiki 历史',
'Wiki Home' => 'Wiki 首页',
'Wiki Home Page' => 'Wiki 首页',
'Wiki Import dump' => 'Wiki 导入转储',
'Wiki last files' => 'Wiki 最新文件',
'Wiki last images' => 'Wiki 最新图像',
'Wiki last pages' => 'Wiki 末页',
'wiki link' => 'wiki 链接',
'WikiMenu' => 'WikiMenu',
'wiki overwrite' => 'wiki 覆写',
'Wiki page' => 'Wiki 页面',
'Wiki page list configuration' => 'Wiki 页面列表设置',
'Wiki Page Names' => 'Wiki 页面名称',
'Wiki Pages' => 'wiki 页面',
'wiki pages changed' => 'wiki 页面已修改',
'wiki-put' => 'wiki-put',
'Wiki quick help' => 'Wiki 快速说明',
'Wiki References' => 'Wiki 参考',
'Wiki settings' => 'Wiki 设置',
'Wiki Stats' => 'Wiki 统计',
'Wiki top articles' => 'Wiki 最热门文章',
'Wiki top authors' => 'Wiki 最佳作者',
'Wiki top file galleries' => 'Wiki 最热门文件库',
'Wiki top files' => 'Wiki 最热门文件',
'Wiki top galleries' => 'Wiki 最热门图库',
'Wiki top images' => 'Wiki 最热门图像',
'Wiki top pages' => 'Wiki 首页',
'Wiki Watch' => 'Wiki 监视',
'Will be replaced by the actual value of the dynamic content block with id=n' => '将会用 id=n 的动态内容区块实际值来取代',
'Will display the text centered' => '将置中显示文字',
'Will display using the indicated HTML color' => '将使用指定的 HTML 色彩显示',
'Windows' => 'Windows',
'wink' => '眨眼',
'with checked' => '并检查',
'with role' => '以角色',
'with roles' => '附带角色',
'Word' => '词汇',
'Workflow' => '工作流程',
'Workflow engine' => '工作流程引擎',
'Workitem information' => 'Workitem information',
'Workitems' => '工作项目',
'Worst day' => '最差的一天',
'Write a note' => '写个备忘录',
'Write note' => '写备忘录',
'Wrong passcode you need to know the passcode to register in this site' => '通行码 错误, 你必须有 通行码 才能在本站注册',
'Wrong password. Cannot post comment' => '密码错误. 无法发表评论',
'Wrong registration code' => '注册码错误',
'x' => 'x',
'XMLRPC API' => 'XMLRPC API',
'xx' => 'xx',
'xxx' => 'xxx',
'Year' => '年',
'Year:' => '年:',
'Yes' => '是',
'You are about to remove the page' => '你即将删除此页面',
'You are banned from' => '你被禁止使用',
'You are editing block:' => '你正在编辑区块:',
'You are not logged in' => '你尚未登录',
'You are not logged in and no user indicated' => '你尚未登录及指定用户',
'You can access the file gallery using the following URL' => '你可以由下列URL进入这个文件库',
'You can access the gallery using the following URL' => '你可以经由下列的链接进入此图库',
'You can always cancel your subscription using:' => '你可以这样取消你的订阅:',
'You can browse this site on your mobile device by directing your device\'s browser towards the following URL here on this site:' => '你可以使用移动装置连接至以下的 URL 来浏览本站:',
'You can download this file using' => '你可以下载这个文件使用',
'You can edit the page following this link:' => '你可以使用此链接编辑页面:',
'You can edit the submission following this link:' => '你可以使用此链接修改送出的资料:',
'You cannot admin blogs' => '你无法管理日志',
'You can not download files' => '你无法下载文件',
'You cannot edit this page because it is a user personal page' => '你无法编辑此页面, 因为这是用户个人页面',
'You cannot take this quiz twice' => '你不能重复参加这个测验',
'You cannot take this survey twice' => '你不能重复参加这个调查',
'You can not use the same password again' => '请勿再使用相同的密码',
'You cant download files' => '你无法下载文件',
'You cant execute this activity' => 'You cant execute this activity',
'You can\'t post in any blog maybe you have to create a blog first' => '你无法在任何日志中发表日志, 请先建立一个日志',
'You cant use the same password again' => '你不能再次使用相同的密码',
'You can unsubscribe from this newsletter following this link' => '你可以使用以下的链接停止订阅本邮件列表',
'You can view this image in your browser using' => '你可以查看此图像在你的浏览器中使用',
'You do not have permission to use this feature.' => '你没有权限使用此功能.',
'You dont have permissions to edit banners' => '权限不足, 你无法编辑大标题',
'You dont have permission to do that' => '你没有权限',
'You dont have permission to edit messages' => '你没有编辑消息的权限',
'You dont have permission to edit this banner' => '权限不足, 你无法编辑此大标题',
'You dont have permission to read the template' => '权限不足, 你无法读取模板',
'You dont have permission to use this feature' => '你没有使用此功能的权限',
'You dont have permission to view other users data' => '你没有权限查看其它用户的数据',
'You dont have permission to write the style sheet' => '你没有权限写入样式表',
'You dont have permission to write the template' => '权限不足, 你无法写入模板',
'You have' => '你有',
'You have to create a gallery first!' => '你必须先建立图库!',
'You have to create a topic first' => '你必须先建立主题',
'You have to enter a title and text' => '请输入标题与内容',
'You have to provide a name to the file' => '你必须为这个文件取一个名称',
'You have to provide a name to the image' => '你必须为此图像取个名字',
'You must be logged in to subscribe to newsletters' => '你必须登录才能订阅邮件列表',
'You must log in to use this feature' => '你必须登录才能使用此功能',
'You must provide a longname' => '必须提供完整名称',
'You must supply all the information, including title and year.' => '你必须提供所有信息, 包含标题与年份.',
'you or someone registered this email address at' => '你或是某位注册此 email 地址的人',
'Your current avatar' => '你目前的头像',
'Your email address has been added to the list of addresses monitoring this item' => '你的 email 地址已经加入监视此项目的列表',
'Your email address has been added to the list of addresses monitoring this tracker' => '你的 email 地址已经加入监视此追踪的列表',
'Your email address has been removed from the list of addresses monitoring this item' => '你的 email 地址已经从监视此项目的列表中移除',
'Your email address has been removed from the list of addresses monitoring this tracker' => '你的 email 地址已经从监视此追踪的列表中移除',
'Your email address was removed from the list of subscriptors.' => '你的email地址已从订阅者名单中移除',
'Your email could not be validated; make sure you email is correct and click register below.' => '你的 email 无法确认; 请确认你的 email 输入正确并按下注册键.',
'Your email was sent' => 'email 已发送',
'Your personal Wiki Page' => '你的个人 Wiki 页面',
'Your registration code:' => '你的注册码:',
'Your request is being processed' => '你的要求正在处理',
'You should first ask that a calendar is created, so you can create events attached to it.' => '你必须在建立日历时先询问, 以便建立要附加上去的事件',
'You will receive an email with information to login for the first time into this site' => '你将会收到 email 说明初次登录本站的信息',
'You will receive an email with your password soon' => '你很快就会收到含有密码的 email',
'You will remove' => '将会移除',
'zone' => '区域',
);
?>
|