summaryrefslogtreecommitdiff
path: root/lang/tw/language.php
blob: 8b0037cc3b8e0bb38c56461f8f06aaade76068f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
<?php
// This language is the Traditional 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' => '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' => '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 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' => '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' => '允許其他使用者發表於這個 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 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' => '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' => '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',
'Blog comments settings' => 'Blog評論設定',
'Blog features' => 'Blog 功能',
'Blog heading' => 'Blog 標題',
'Blog level comments' => 'Blog level comments',
'Blog listing configuration (when listing available blogs)' => 'Blog 列表設定 (列出現有 blog時)',
'Blog name' => 'Blog 名稱',
'Blog not found' => '找不到 Blog',
'Blog post' => 'Blog 佈告',
'Blog post:' => 'Blog 佈告:',
'Blog Posts' => 'Blog 佈告',
'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' => 'blogs',
'Blog settings' => 'Blog設定',
'Blogs last posts' => 'Blogs 最新文章',
'Blog Stats' => 'Blog 統計',
'Blog Title' => 'Blog 標題',
'Blog title (asc)' => 'Blog 標題 (升冪)',
'<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' => '瀏覽器不支援',
'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 Blog' => '建立 blog',
'Create a file gallery' => '建立檔案庫',
'Create a gallery' => '建立圖庫',
'Create a new topic' => '建立新主題',
'Create a tag for the current wiki' => '為目前的 wiki 產生一個標籤',
'Create banner' => '建立大標題',
'created' => '建立',
'Created by' => '產生自 ',
'created from import' => '從匯入建立',
'created from notepad' => '由記事本建立',
'created from phpwiki import' => '由 phpwiki 匯入所建立',
'create/edit' => '建立/編輯',
'Create/Edit Blog' => '建立/編輯 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' => '建立新 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' => 'blog列表預設順序',
'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' => 'Diff 至版本',
'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' => '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' => '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' => '編輯 blog',
'Edit Calendar Item' => '編輯行事曆項目',
'edit chart' => '編輯排行榜',
'edit/create' => '編輯/產生',
'Edit/Create user module' => '編輯/建立 使用者模組',
'Edit CSS' => '編輯 CSS',
'Edit desc' => '編輯描述',
'Edit drawings' => '編輯繪圖',
'Edit drawings &amp; 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',
'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 Articles',
'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 獨立的 weblogs',
'Feed for the Wiki' => 'Feed for the Wiki',
'Feed for Weblogs' => 'Feed for Weblogs',
'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可有可無',
'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' => '主 Blog',
'Home Blog (main blog)' => '首頁 Blog (主要 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 大小',
'Img' => '影像',
'img gls' => 'img gls',
'img nc' => 'img nc',
'Imgs' => '影像',
'Import' => '匯入',
'Important' => '重要',
'Import CSV file' => '匯入 CSV 檔案',
'Import / Export' => '匯入-匯出語言',
'Import page' => '匯入頁面 ',
'Import pages from a PHPWiki Dump' => '由 PHPWiki 傾印來匯入頁面',
'Impressions' => '次數',
'in' => '於',
'in:' => '於:',
'Inactive' => '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 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 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' => '最新 blog 佈告',
'last changes' => '最近變動',
'LastChanges' => '最近變動',
'last chart' => '最末張排行榜',
'Last Created blogs' => '最近建立 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' => '最近修改 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' => '列出 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 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 in 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' => '監控此 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' => '最常被瀏覽 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' => '我的 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 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閱讀器',
'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' => '未指定 blog',
'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' => '輸入影像的 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 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' => 'Owner',
'Own Image' => 'Own Image',
'Own image size x' => 'Own image size x',
'Own image size y' => 'Own image size 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)' => '註冊用 Passcode (並非你的使用者密碼)',
'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' => '權限不足, 你無法建立或編輯blog',
'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' => '權限不足, 你無法編輯此 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' => '權限不足, 你無法移除此 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 Name',
'Process roles' => 'Process roles',
'Process Transitions' => '程序的變遷',
'Program' => '方案',
'Program dynamic content for block' => '設計區塊的動態內容',
'Programmed versions' => '計劃的版本',
'Properties' => 'Properties',
'Property' => '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 頁面, 文章或 blog 佈告的影像',
'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',
'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 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' => '待確認的站臺',
'Site title' => '瀏覽器標題',
'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' => '停止監控此 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 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' => '這個 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 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' => 'blog 佈告的總大小',
'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' => '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 Images' => '上傳圖片',
'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 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' => '使用者 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 process',
'valid sites' => '正確的站臺',
'value' => 'value',
'ver' => '版本',
'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' => '觀看 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' => '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' => '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 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' => 'passcode 錯誤, 你必須有 passcode 才能在本站註冊',
'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' => '你可以經由下列的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' => '你無法管理 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' => '你無法在任何 blog 中發表佈告, 請先建立一個 blog',
'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' => '權限不足, 你無法編輯blog',
'You dont have permission to do that' => '你沒有權限',
'You dont have permission to edit messages' => '你沒有編輯訊息的權限',
'You dont have permission to edit this banner' => '權限不足, 你無法編輯此blog',
'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 registration information' => '你的 資訊登記',
'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' => '區域',
);
?>