aboutsummaryrefslogtreecommitdiffstats
path: root/includes/api/i18n/zh-hant.json
blob: 2f03f115f15abeedd3b7daace3e7345e2e213aec (plain) (blame)
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
{
	"@metadata": {
		"authors": [
			"A2093064",
			"Arthur2e5",
			"Corainn",
			"Cwlin0416",
			"Diskdance",
			"EagerLin",
			"Jasonzhuocn",
			"Kly",
			"LNDDYL",
			"Lakejason0",
			"Liuxinyu970226",
			"Macofe",
			"Matma Rex",
			"Sanmosa",
			"Sidishandsome",
			"SunAfterRain",
			"Tranve",
			"Wbxshiori",
			"WhitePhosphorus",
			"Willy1018",
			"Winston Sung",
			"Winstonyin",
			"Wwycheuk",
			"Xiplus",
			"Zhxy 519",
			"列维劳德",
			"捍粵者",
			"星海",
			"烈羽",
			"張詠涵"
		]
	},
	"apihelp-main-extended-description": "<div class=\"hlist plainlinks api-main-links\">\n* [[mw:Special:MyLanguage/API:Main_page|說明文件]]\n* [[mw:Special:MyLanguage/API:Etiquette|Etiquette 與使用指南]]\n* [[mw:Special:MyLanguage/API:FAQ|常見問題]]\n* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-api 郵寄清單]\n* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-api-announce API公告]\n* [https://phabricator.wikimedia.org/maniphest/query/GebfyV4uCaLd/#R 報告錯誤及請求功能]\n</div>\n<strong>狀態資訊:</strong>MediaWiki API 已是成熟、穩定,並積極支援以改善的介面。儘管我們儘可能避免,但仍偶有需要重大變更的情況,請訂閱[https://lists.wikimedia.org/hyperkitty/list/mediawiki-api-announce@lists.wikimedia.org/ mediawiki-api-announce 郵寄清單]以便獲得更新通知。\n\n<strong>錯誤的請求:</strong>當 API 收到錯誤的請求,會發出以「MediaWiki-API-Error」為鍵的 HTTP 標頭欄位,隨後標頭欄位的值,以及傳回的錯誤碼會設為相同值。詳細資訊請參閱 [[mw:Special:MyLanguage/API:Errors_and_warnings|API: 錯誤與警告]]。\n\n<p class=\"mw-apisandbox-link\"><strong>測試:</strong>要簡化 API 請求的測試過程,請見 [[Special:ApiSandbox]]。</p>",
	"apihelp-main-param-action": "要執行的動作。",
	"apihelp-main-param-format": "輸出的格式。",
	"apihelp-main-param-maxlag": "最大延遲可在當 MediaWiki 安裝於資料庫複寫叢集時使用。為了保存引起更多站台複寫延遲的操作,此參數可讓客戶端等待至複寫延遲小於指定值為止。在過渡延遲的情況下,錯誤碼 <samp>maxlag</samp> 會帶有著像是 <samp>Waiting for $host: $lag seconds lagged</samp> 的訊息內容回傳。<br />請查看[[mw:Special:MyLanguage/Manual:Maxlag_parameter|手冊:Maxlag 參數]]來獲取更多資訊。",
	"apihelp-main-param-smaxage": "將HTTP暫存控制頭欄位設為<code>s-maxage</code>秒。錯誤不會做暫存。",
	"apihelp-main-param-maxage": "將HTTP暫存控制頭欄位設為<code>max-age</code>秒。錯誤不會做暫存。",
	"apihelp-main-param-assert": "如果設定為<kbd>user</kbd>,則驗證使用者是否已登入(包括以臨時使用者身分登入);如果設定為<kbd>anon</kbd>,則驗證使用者是否<em>未</em>登入;如果設定為<kbd>bot</kbd>,則驗證使用者是否擁有機器人使用者權限。",
	"apihelp-main-param-assertuser": "確認目前使用者就是指定的使用者。",
	"apihelp-main-param-requestid": "在此處提供的任何值都將包括在響應之中。可用於區分請求。",
	"apihelp-main-param-servedby": "在結果中包括提出請求的主機名。",
	"apihelp-main-param-curtimestamp": "在結果中包括目前的時間戳記。",
	"apihelp-main-param-responselanginfo": "在結果中包括<var>uselang</var>和<var>errorlang</var>所用的語言。",
	"apihelp-main-param-origin": "當使用跨網域 AJAX 請求(cross-domain AJAX request、CORS)來存取 API 時,設定此為起始網域。這必須包含在任何預檢請求裡,因此得是請求 URI 的一部份(不是 POST 主體)。\n\n對於已認證請求,這必須準確地符合在 <code>Origin</code> 標頭裡其一的起始點,因此會被設定成像是 <kbd>https://zh.wikipedia.org</kbd> 或是 <kbd>https://meta.wikimedia.org</kbd>。如果此參數不符合 <code>Origin</code> 標頭,會回傳 403 錯誤回應。若此參數符合 <code>Origin</code> 標頭且起始點被列為允許,將會設定 <code>Access-Control-Allow-Origin</code> 與 <code>Access-Control-Allow-Credentials</code> 標頭。\n\n對於非認證請求,會指定值 <kbd>*</kbd>。這會產生 <code>Access-Control-Allow-Origin</code> 標頭有被設定;但 <code>Access-Control-Allow-Credentials</code> 會是 <code>false</code> 值,且所有使用者指定資料會受限制。",
	"apihelp-main-param-uselang": "訊息翻譯採用的語言。使用 <kbd>[[Special:ApiHelp/query+siteinfo|action=query&meta=siteinfo&siprop=languages]]</kbd> 會回傳語言代碼清單。您可以指定 <kbd>user</kbd> 來使用目前使用者的語言偏好設定,或是指定 <kbd>content</kbd> 來使用此 wiki 的內容語言。",
	"apihelp-main-param-variant": "語言變種。僅當基礎語言支持變種轉換時起作用。",
	"apihelp-main-param-errorformat": "用於警告和錯誤文字輸出的格式",
	"apihelp-main-paramvalue-errorformat-plaintext": "包括HTML標籤的wikitext被移除並且實體被替換。",
	"apihelp-main-paramvalue-errorformat-wikitext": "未解析的 wikitext。",
	"apihelp-main-paramvalue-errorformat-raw": "訊息鍵與參數。",
	"apihelp-main-paramvalue-errorformat-none": "沒有文字輸出,僅有錯誤代碼。",
	"apihelp-main-paramvalue-errorformat-bc": "MediaWiki 1.29 之前使用的格式。會忽略 <var>errorlang</var> 與 <var>errorsuselocal</var>。",
	"apihelp-main-param-errorlang": "警告與錯誤採用的語言。使用 <kbd>[[Special:ApiHelp/query+siteinfo|action=query&meta=siteinfo&siprop=languages]]</kbd> 會回傳語言代碼清單。指定 <kbd>content</kbd> 可以使用此 wiki 的內容語言,或是指定 <kbd>uselang</kbd> 來使用與 <var>uselang</var> 參數相同的值。",
	"apihelp-main-param-errorsuselocal": "若有指定,錯誤文字會使用來自 {{ns:MediaWiki}} 命名空間的本地自定義訊息。",
	"apihelp-acquiretempusername-summary": "啟用建立臨時帳號功能且目前使用者已登出時,取得臨時使用者的使用者名稱並將其儲存在目前連線階段中。如果已儲存名稱則回傳相同名稱。",
	"apihelp-acquiretempusername-extended-description": "如果使用者稍後執行了會導致臨時帳號建立的操作,則儲存的使用者名稱將會直接用於建立該臨時帳號。相關名稱也可以在預覽中使用。但要注意,此時該帳號依然尚未建立,並且該名稱對其他使用者不可見。",
	"apihelp-block-summary": "封鎖使用者。",
	"apihelp-block-param-user": "要封鎖的使用者。",
	"apihelp-block-param-userid": "改成指定<kbd>$1user=#<var>ID</var></kbd>。",
	"apihelp-block-param-expiry": "到期時間。可以是相對時間(例如:<kbd>5 months</kbd> 或 <kbd>2 weeks</kbd>)或是絕對時間(例如:<kbd>2014-09-18T12:34:56Z</kbd>)。如果設定成<kbd>infinite</kbd>、<kbd>indefinite</kbd>或<kbd>never</kbd>,封鎖將會無期限。",
	"apihelp-block-param-reason": "封鎖原因。",
	"apihelp-block-param-anononly": "僅封鎖匿名使用者(即禁止使用此 IP 位址的匿名使用者編輯,包含臨時帳號)。",
	"apihelp-block-param-nocreate": "禁止建立帳號。",
	"apihelp-block-param-autoblock": "自動封鎖最後使用的 IP 位址,以及在這之後嘗試登入的 IP 位址。",
	"apihelp-block-param-noemail": "禁止使用者透過 Wiki 寄送電子郵件。 (需要 <code>blockemail</code> 權限)。",
	"apihelp-block-param-hidename": "隱藏封鎖日誌的使用者名稱。 (需要 <code>hideuser</code> 權限)。",
	"apihelp-block-param-allowusertalk": "允許使用者編輯自己的討論頁(依據<var>[[mw:Special:MyLanguage/Manual:$wgBlockAllowsUTEdit|$wgBlockAllowsUTEdit]]</var>的設定)。",
	"apihelp-block-param-reblock": "若使用者已被封鎖,覆寫既有的封鎖設定值。",
	"apihelp-block-param-watchuser": "監視使用者或 IP 位址的使用者頁面與對話頁面。",
	"apihelp-block-param-watchlistexpiry": "監視清單期限時間戳記。忽略此參數會維持目前期限不變。",
	"apihelp-block-param-tags": "在封鎖日誌裡更改套用到項目的標籤。",
	"apihelp-block-param-partial": "封鎖使用者訪問特殊頁面或命名空間,而不是整個網站。",
	"apihelp-block-param-pagerestrictions": "封鎖使用者做出編輯的標題清單。僅在 <var>partial</var> 被設定為 true 時套用。",
	"apihelp-block-param-namespacerestrictions": "封鎖使用者做出編輯的命名空間 ID 清單。僅在 <var>partial</var> 被設定為 true 時套用。",
	"apihelp-block-param-actionrestrictions": "封鎖使用者做出執行的操作清單。僅在 <var>partial</var> 被設定為 true 時套用。",
	"apihelp-block-example-ip-simple": "帶有原因封鎖 IP 位址 <kbd>192.0.2.5</kbd> 三天。",
	"apihelp-block-example-user-complex": "帶有原因永久封鎖用戶 <kbd>Vandal</kbd>,並防止建立新帳號及發送電子郵件。",
	"apihelp-changeauthenticationdata-summary": "為目前使用者變更身分核對資料。",
	"apihelp-changeauthenticationdata-example-password": "嘗試更改目前使用者的密碼至 <kbd>ExamplePassword</kbd>。",
	"apihelp-changecontentmodel-summary": "變更頁面的內容模型",
	"apihelp-changecontentmodel-param-title": "您所想要更改內容模組的頁面標題。不能與 <var>$1pageid</var> 同時使用。",
	"apihelp-changecontentmodel-param-pageid": "您所想要更改內容模組的頁面 ID。不能與 <var>$1title</var> 同時使用。",
	"apihelp-changecontentmodel-param-summary": "編輯摘要與日誌項目原因",
	"apihelp-changecontentmodel-param-tags": "更改標籤來套用到日誌項目並編輯。",
	"apihelp-changecontentmodel-param-model": "新內容的內容模組。",
	"apihelp-changecontentmodel-param-bot": "標記帶有機器人標籤的內容模組。",
	"apihelp-changecontentmodel-example": "更改有 <code>text</code> 內容模組的主要頁面",
	"apihelp-checktoken-summary": "檢查來自 <kbd>[[Special:ApiHelp/query+tokens|action=query&meta=tokens]]</kbd> 的權杖有效性。",
	"apihelp-checktoken-param-type": "要測試的權杖類型。",
	"apihelp-checktoken-param-token": "要測試的權杖。",
	"apihelp-checktoken-param-maxtokenage": "權杖的有效期間,以秒為單位。",
	"apihelp-checktoken-example-simple": "測試 <kbd>csrf</kbd> 權杖的有效性。",
	"apihelp-clearhasmsg-summary": "清除目前使用者的 <code>hasmsg</code> 標記。",
	"apihelp-clearhasmsg-example-1": "清除目前使用者的 <code>hasmsg</code> 標記。",
	"apihelp-clientlogin-summary": "使用互動流程來登入 wiki。",
	"apihelp-clientlogin-example-login": "開始以使用者 <kbd>Example</kbd> 與密碼 <kbd>ExamplePassword</kbd> 來登入至 wiki 的過程。",
	"apihelp-clientlogin-example-login2": "在 <samp>UI</samp> 回應雙因素驗證後繼續登入,提供 <kbd>987654</kbd> 的 <var>OATHToken</var>。",
	"apihelp-compare-summary": "比較 2 個頁面間的差異。",
	"apihelp-compare-extended-description": "「from」以及「to」的修訂編號,頁面標題或頁面ID為必填。",
	"apihelp-compare-param-fromtitle": "要比對的第一個標題。",
	"apihelp-compare-param-fromid": "要比對的第一個頁面 ID。",
	"apihelp-compare-param-fromrev": "要比對的第一個修訂。",
	"apihelp-compare-param-frompst": "預先儲存轉換<var>fromtext-&#x7B;slot}</var>",
	"apihelp-compare-param-fromslots": "覆蓋由 <var>fromtitle</var>、<var>fromid</var> 或 <var>fromrev</var> 指定的修訂內容。\n\n此參數指定要變動的槽位。使用 <var>fromtext-&#x7B;slot}</var>、<var>fromcontentmodel-&#x7B;slot}</var>、與 <var>fromcontentformat-&#x7B;slot}</var> 來指定各槽位的內容。",
	"apihelp-compare-param-fromtext-{slot}": "指定槽位的文字。若忽略的話,槽位會從修訂中移除。",
	"apihelp-compare-param-fromsection-{slot}": "當 <var>fromtext-&#x7B;slot}</var> 是單一段落的內容時,這代表是段落的識別碼。這會合併至由 <var>fromtitle</var>、<var>fromid</var>、<var>fromrev</var> 指定的修訂,就像用於段落編輯。",
	"apihelp-compare-param-fromcontentmodel-{slot}": "<var>fromtext-&#x7B;slot}</var> 內容模組。若不提供,則會根據其它參數猜測。",
	"apihelp-compare-param-fromcontentformat-{slot}": "<var>fromtext-&#x7B;slot}</var> 的內容序列化格式。",
	"apihelp-compare-param-fromtext": "指定 <kbd>fromslots=main</kbd> 並改用 <var>fromtext-main</var>。",
	"apihelp-compare-param-fromcontentmodel": "指定 <kbd>fromslots=main</kbd> 並改使用 <var>fromcontentmodel-main</var>。",
	"apihelp-compare-param-fromcontentformat": "指定 <kbd>fromslots=main</kbd> 並改使用 <var>fromcontentformat-main</var>。",
	"apihelp-compare-param-fromsection": "僅使用 'from' 內容的指定段落。",
	"apihelp-compare-param-totitle": "要比對的第二個標題。",
	"apihelp-compare-param-toid": "要比對的第二個頁面 ID。",
	"apihelp-compare-param-torev": "要比對的第二個修訂。",
	"apihelp-compare-param-torelative": "使用判定自 <var>fromtitle</var>、<var>fromid</var>、或 <var>fromrev</var> 之修訂相關的修訂。所有其它的 'to' 選項將會忽略。",
	"apihelp-compare-param-topst": "在 <var>totext</var> 執行預先儲存轉換。",
	"apihelp-compare-param-toslots": "覆蓋由 <var>totitle</var>、<var>toid</var> 或 <var>torev</var> 指定的修訂內容。\n\n此參數指定要變動的槽位。使用 <var>totext-&#x7B;slot}</var>、<var>tocontentmodel-&#x7B;slot}</var>、與 <var>tocontentformat-&#x7B;slot}</var> 來指定各槽位的內容。",
	"apihelp-compare-param-totext-{slot}": "指定槽位的文字。若忽略的話,槽位會從修訂中移除。",
	"apihelp-compare-param-tosection-{slot}": "當 <var>totext-&#x7B;slot}</var> 是單一段落的內容時,這代表是段落的識別碼。這會合併至由 <var>totitle</var>、<var>toid</var>、<var>torev</var> 指定的修訂,就像用於段落編輯。",
	"apihelp-compare-param-tocontentmodel-{slot}": "<var>totext-&#x7B;slot}</var> 內容模組。若不提供,則會基於其它參數來猜測。",
	"apihelp-compare-param-tocontentformat-{slot}": "<var>totext-&#x7B;slot}</var> 的內容序列化格式。",
	"apihelp-compare-param-totext": "指定 <kbd>toslots=main</kbd> 並改用 <var>totext-main</var>。",
	"apihelp-compare-param-tocontentmodel": "指定 <kbd>toslots=main</kbd> 並改使用 <var>tocontentmodel-main</var>。",
	"apihelp-compare-param-tocontentformat": "指定 <kbd>toslots=main</kbd> 並改使用 <var>tocontentformat-main</var>。",
	"apihelp-compare-param-tosection": "僅使用 'to' 內容的指定段落。",
	"apihelp-compare-param-prop": "要取得的資訊部份。",
	"apihelp-compare-paramvalue-prop-diff": "HTML 差異。",
	"apihelp-compare-paramvalue-prop-diffsize": "以位元組為單位的 HTML 差異大小。",
	"apihelp-compare-paramvalue-prop-rel": "'from' 之前與 'to' 之後修訂的修訂 ID,若有的話。",
	"apihelp-compare-paramvalue-prop-ids": "「from」與「to」修訂的頁面與修訂 ID。",
	"apihelp-compare-paramvalue-prop-title": "「from」與「to」修訂的頁面標題。",
	"apihelp-compare-paramvalue-prop-user": "「from」與「to」修訂的使用者名稱與 ID。若是已刪除修訂的使用者,會回傳 <samp>fromuserhidden</samp> 或 <samp>touserhidden</samp> 屬性。",
	"apihelp-compare-paramvalue-prop-comment": "「from」與「to」修訂的註釋。若修訂裡註釋已被刪除,會回傳 <samp>fromcommenthidden</samp> 或 <samp>tocommenthidden</samp> 屬性。",
	"apihelp-compare-paramvalue-prop-parsedcomment": "「from」與「to」修訂的解析註釋。若是已刪除修訂的註釋,會回傳 <samp>fromcommenthidden</samp> 或 <samp>tocommenthidden</samp> 屬性。",
	"apihelp-compare-paramvalue-prop-size": "「from」與「to」修訂的大小。",
	"apihelp-compare-paramvalue-prop-timestamp": "「from」和「to」修訂版本的時間戳。",
	"apihelp-compare-param-difftype": "返回格式化為行內HTML的比較結果。",
	"apihelp-compare-param-slots": "回傳這些槽位的個別差異,而不是由所有槽位所合併出的單一差異。",
	"apihelp-compare-example-1": "建立修訂 1 與 1 的差異檔",
	"apihelp-createaccount-summary": "建立新使用者帳號。",
	"apihelp-createaccount-param-preservestate": "如果 <kbd>[[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]]</kbd> 回傳 <samp>hasprimarypreservedstate</samp> 的 true 值,標記成 <samp>primary-required</samp> 的請求會被忽略。若回傳用於 <samp>preservedusername</samp> 的非零值,使用者名稱必須用於 <var>username</var> 參數。",
	"apihelp-createaccount-example-create": "開始建立使用者 <kbd>Example</kbd> 與密碼 <kbd>ExamplePassword</kbd> 的過程。",
	"apihelp-cspreport-summary": "由瀏覽器所使用來回報違反內容安全方針。此模組應永不使用,除了是在被由兼容內容安全方針的網路瀏覽器所使用情況下。",
	"apihelp-cspreport-param-reportonly": "標記為來自監視方針而非強制方針的回報",
	"apihelp-cspreport-param-source": "生成觸發此報告之 CSP 標頭的事物",
	"apihelp-delete-summary": "刪除頁面。",
	"apihelp-delete-param-title": "您欲刪除的頁面標題。 無法與 <var>$1pageid</var> 同時使用。",
	"apihelp-delete-param-pageid": "您欲刪除頁面的頁面 ID。 無法與 <var>$1title</var> 同時使用。",
	"apihelp-delete-param-reason": "刪除的原因。 若未設定,將會使用自動產生的原因。",
	"apihelp-delete-param-tags": "在刪除日誌裡更改套用到項目的標籤。",
	"apihelp-delete-param-deletetalk": "如存在,刪除關聯討論頁。",
	"apihelp-delete-param-watch": "加入目前頁面至您的監視清單。",
	"apihelp-delete-param-watchlist": "使用偏好設定無條件地將頁面加入至或移除自目前使用者的監視清單(略過機器人使用者),或不更改監視。",
	"apihelp-delete-param-watchlistexpiry": "監視清單期限時間戳記。忽略此參數會維持目前期限不變。",
	"apihelp-delete-param-unwatch": "從您的監視清單中移除目前頁面。",
	"apihelp-delete-param-oldimage": "由 [[Special:ApiHelp/query+imageinfo|action=query&prop=imageinfo&iiprop=archivename]] 所提供要刪除的舊圖片名稱。",
	"apihelp-delete-example-simple": "刪除[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]。",
	"apihelp-delete-example-reason": "刪除[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]],原因<kbd>Preparing for move</kbd>。",
	"apihelp-disabled-summary": "已停用此模組。",
	"apihelp-edit-summary": "建立與編輯頁面。",
	"apihelp-edit-param-title": "您欲編輯的頁面標題。 無法與 <var>$1pageid</var> 同時使用。",
	"apihelp-edit-param-pageid": "您欲編輯頁面的頁面 ID。 無法與 <var>$1title</var> 同時使用。",
	"apihelp-edit-param-section": "章節標籤。<kbd>0</kbd> 代表最上層章節,<kbd>new</kbd> 代表新章節。通常是正整數但也可以是非數字。",
	"apihelp-edit-param-sectiontitle": "使用<var>$1section=new</var>的新章節的標題。",
	"apihelp-edit-param-text": "頁面內容。",
	"apihelp-edit-param-summary": "編輯摘要。\n\n未提供本參數或本參數為空時,[[mw:Special:MyLanguage/Autosummary|會自動生成編輯摘要]]。\n\n使用<var>$1section=new</var>且未提供<var>$1sectiontitle</var>時,本參數的值用於填入章節標題,同時會自動生成編輯摘要。",
	"apihelp-edit-param-tags": "更改套用到修訂的標籤。",
	"apihelp-edit-param-minor": "標記此編輯為小編輯。",
	"apihelp-edit-param-notminor": "不要標記此編輯為小編輯,即使有設定到「{{int:tog-minordefault}}」使用者偏好設定。",
	"apihelp-edit-param-bot": "標記此編輯為機器人編輯。",
	"apihelp-edit-param-baserevid": "基於修訂的 ID,可用來檢測編輯衝突。也可透過 [[Special:ApiHelp/query+revisions|action=query&prop=revisions]] 取得。若有設定 basetimestamp 的話,自我衝突會導致編輯失敗。",
	"apihelp-edit-param-basetimestamp": "基於修訂的時間戳記,可用來檢測編輯衝突。也可透過 [[Special:ApiHelp/query+revisions|action=query&prop=revisions&rvprop=timestamp]] 取得。自我衝突則會被忽略。",
	"apihelp-edit-param-starttimestamp": "當編輯程序開始的時間戳記,用於偵測編輯衝突。當編輯程序開始時(例如:當載入要編輯的頁面內容),使用 <var>[[Special:ApiHelp/main|curtimestamp]]</var> 可以取得一個適當值。",
	"apihelp-edit-param-recreate": "覆蓋有關頁面在此期間已被刪除的任何錯誤。",
	"apihelp-edit-param-createonly": "若頁面已存在,則不編輯頁面。",
	"apihelp-edit-param-nocreate": "若頁面不存在,則產生錯誤。",
	"apihelp-edit-param-watch": "加入目前頁面至您的監視清單。",
	"apihelp-edit-param-unwatch": "從您的監視清單中移除目前頁面。",
	"apihelp-edit-param-watchlist": "使用偏好設定無條件地將頁面加入至或移除自目前使用者的監視清單(略過機器人使用者),或不更改監視。",
	"apihelp-edit-param-watchlistexpiry": "監視清單期限時間戳記。忽略此參數會維持目前期限不變。",
	"apihelp-edit-param-md5": "$1text 參數、或是 $1prependtext 和 $1appendtext 參數連接的 MD5 雜湊。若有設定,除非雜湊正確否則編輯不會完成。",
	"apihelp-edit-param-prependtext": "將該文字添加到該頁面或章節的開始。覆蓋$1text。",
	"apihelp-edit-param-appendtext": "將該文字添加到該頁面或章節的結尾。覆蓋$1text。\n\n採用$1section=new來添加一個新的章節,而不是這個參數。",
	"apihelp-edit-param-undo": "復原此修訂。覆寫 $1text、$1prependtext 與 $1appendtext。",
	"apihelp-edit-param-undoafter": "撤銷從 $1undo 至此為止的所有修訂。若不設定則僅會撤銷一次修訂。",
	"apihelp-edit-param-redirect": "自動化解決重新導向。",
	"apihelp-edit-param-contentformat": "用於輸入文字的內容序列化格式。",
	"apihelp-edit-param-contentmodel": "新內容的內容模組。",
	"apihelp-edit-param-returnto": "頁面標題。如果要儲存的編輯是臨時帳號建立的,API可能會額外在回應中添加客戶端應當訪問以完成登入的URL。如果提供了該參數,URL將重新導向到給定頁面,而不是剛剛編輯的頁面。",
	"apihelp-edit-param-returntoquery": "URL查詢參數(帶前導<kbd>?</kbd>)。如果要儲存的編輯是臨時帳號建立的,API可能會額外在回應中添加客戶端應當訪問以完成登入的URL。如果提供了該參數,URL將重新導向到具有給定查詢參數的頁面。",
	"apihelp-edit-param-returntoanchor": "URL片段(帶前導<kbd>#</kbd>)。如果要儲存的編輯是臨時帳號建立的,API可能會額外在回應中添加客戶端應當訪問以完成登入的URL。如果提供了該參數,URL將重新導向到具有給定片段的頁面。",
	"apihelp-edit-param-token": "權杖應用為發送的最後參數,或至少在 $1text 參數之後。",
	"apihelp-edit-example-edit": "編輯頁面",
	"apihelp-edit-example-prepend": "前置頁面的 <kbd>_&#95;NOTOC_&#95;</kbd>。",
	"apihelp-edit-example-undo": "撤銷從 13579 至 13585 之間的修訂,並帶自動生成的摘要。",
	"apihelp-emailuser-summary": "寄送電子郵件給使用者。",
	"apihelp-emailuser-param-target": "電子郵件的收件使用者。",
	"apihelp-emailuser-param-subject": "郵件主旨。",
	"apihelp-emailuser-param-text": "郵件內容。",
	"apihelp-emailuser-param-ccme": "寄送一份此郵件的複本給我。",
	"apihelp-emailuser-example-email": "寄送電子郵件給使用者 <kbd>WikiSysop</kbd> 使用內容 <kbd>Content</kbd>",
	"apihelp-expandtemplates-summary": "展開所有於 wikitext 中模板。",
	"apihelp-expandtemplates-param-title": "頁面標題。",
	"apihelp-expandtemplates-param-text": "要轉換的 Wikitext。",
	"apihelp-expandtemplates-param-revid": "修訂 ID,用於 <code><nowiki>{{REVISIONID}}</nowiki></code> 和相似變數。",
	"apihelp-expandtemplates-param-prop": "所要取得的資訊部份。\n\n請注意若沒有選定值,結果會包含wikitext,但輸出內容會採用棄用格式。",
	"apihelp-expandtemplates-paramvalue-prop-wikitext": "展開的 wikitext。",
	"apihelp-expandtemplates-paramvalue-prop-categories": "任何呈現在輸入中,且未在 wikitext 輸出裡表現出的分類。",
	"apihelp-expandtemplates-paramvalue-prop-properties": "透過在 wikitext 裡擴充魔術字所定義的頁面屬性。",
	"apihelp-expandtemplates-paramvalue-prop-volatile": "輸出內容是否易變,且是否不應在頁面其它位置裡重複使用。",
	"apihelp-expandtemplates-paramvalue-prop-ttl": "結果的快取應失效後的最長時間。",
	"apihelp-expandtemplates-paramvalue-prop-modules": "已請求添加至輸出內容之解析器功能的任何 ResourceLoader 模組。要載入請使用 <code>mw.loader.using()</code>。<kbd>jsconfigvars</kbd> 或 <kbd>encodedjsconfigvars</kbd> 其一必須與 <kbd>modules</kbd> 一同被請求。",
	"apihelp-expandtemplates-paramvalue-prop-jsconfigvars": "指定頁面的 JavaScript 設置變量。",
	"apihelp-expandtemplates-paramvalue-prop-encodedjsconfigvars": "指定頁面的 JavaScript 設置變量為 JSON 字串。",
	"apihelp-expandtemplates-paramvalue-prop-parsetree": "輸出的 XML 解析樹狀。",
	"apihelp-expandtemplates-param-includecomments": "輸出裡是否包含 HTML 註解。",
	"apihelp-expandtemplates-param-generatexml": "產生 XML 解析樹狀(以 $1prop=parsetree 取代)。",
	"apihelp-expandtemplates-param-showstrategykeys": "是否在jsconfigvars中包含內部合併策略資訊。",
	"apihelp-expandtemplates-example-simple": "展開 wikitext<kbd><nowiki>{{Project:Sandbox}}</nowiki></kbd>。",
	"apihelp-feedcontributions-summary": "回傳使用者貢獻摘要。",
	"apihelp-feedcontributions-param-feedformat": "摘要的格式。",
	"apihelp-feedcontributions-param-user": "要取得哪些使用者的貢獻。",
	"apihelp-feedcontributions-param-namespace": "要篩選貢獻的命名空間。",
	"apihelp-feedcontributions-param-year": "起始年份(更早之前)。",
	"apihelp-feedcontributions-param-month": "起始月份(更早之前)。",
	"apihelp-feedcontributions-param-tagfilter": "篩選有這些標籤的貢獻。",
	"apihelp-feedcontributions-param-deletedonly": "僅顯示已刪除的貢獻。",
	"apihelp-feedcontributions-param-toponly": "只顯示最新修訂的編輯。",
	"apihelp-feedcontributions-param-newonly": "只顯示建立頁面的編輯。",
	"apihelp-feedcontributions-param-hideminor": "隱藏小編輯。",
	"apihelp-feedcontributions-param-showsizediff": "顯示修訂版本之間的差異大小。",
	"apihelp-feedcontributions-example-simple": "返回使用者<kbd>Example</kbd>的貢獻。",
	"apihelp-feedrecentchanges-summary": "返回近期變更摘要。",
	"apihelp-feedrecentchanges-param-feedformat": "摘要格式。",
	"apihelp-feedrecentchanges-param-namespace": "用於限制結果的命名空間。",
	"apihelp-feedrecentchanges-param-invert": "除所選定者外的所有命名空間。",
	"apihelp-feedrecentchanges-param-associated": "包含相關的(對話或主要)命名空間。",
	"apihelp-feedrecentchanges-param-days": "用於限制結果的天數。",
	"apihelp-feedrecentchanges-param-limit": "回傳的結果數量上限。",
	"apihelp-feedrecentchanges-param-from": "顯示自那時以來的更改。",
	"apihelp-feedrecentchanges-param-hideminor": "隱藏小更改。",
	"apihelp-feedrecentchanges-param-hidebots": "隱藏由機器人做的變更。",
	"apihelp-feedrecentchanges-param-hideanons": "隱藏匿名使用者做的變更。",
	"apihelp-feedrecentchanges-param-hideanons-temp": "隱藏匿名使用者和臨時帳號做出的變更。",
	"apihelp-feedrecentchanges-param-hideliu": "隱藏已註冊使用者做的變更。",
	"apihelp-feedrecentchanges-param-hidepatrolled": "隱藏已巡查的變更。",
	"apihelp-feedrecentchanges-param-hidemyself": "隱藏由目前使用者做出的更改。",
	"apihelp-feedrecentchanges-param-hidecategorization": "隱藏分類成員更改。",
	"apihelp-feedrecentchanges-param-tagfilter": "按標籤篩選。",
	"apihelp-feedrecentchanges-param-inverttags": "除用所選標記的編輯外的所有編輯。",
	"apihelp-feedrecentchanges-param-target": "僅顯示從該頁面所連結頁面上的變更。",
	"apihelp-feedrecentchanges-param-showlinkedto": "改成顯示出連結到所選頁面的那些頁面之變更。",
	"apihelp-feedrecentchanges-example-simple": "顯示近期變更。",
	"apihelp-feedrecentchanges-example-30days": "顯示近期30天內的變動",
	"apihelp-feedwatchlist-summary": "返回監視清單摘要。",
	"apihelp-feedwatchlist-param-feedformat": "摘要的格式。",
	"apihelp-feedwatchlist-param-hours": "列出在幾小時內的頁面變動。",
	"apihelp-feedwatchlist-param-linktosections": "若可以的話,直接連結至更改過的段落。",
	"apihelp-feedwatchlist-example-default": "顯示監視清單摘要。",
	"apihelp-feedwatchlist-example-all6hrs": "顯示過去 6 小時在監視頁面的所有更改。",
	"apihelp-filerevert-summary": "回退檔案至舊的版本。",
	"apihelp-filerevert-param-filename": "目標檔案名稱,不需包含「File:」這樣的前綴字元。",
	"apihelp-filerevert-param-comment": "上載意見。",
	"apihelp-filerevert-param-archivename": "要復原的修訂存檔名稱。",
	"apihelp-filerevert-example-revert": "回退 <kbd>Wiki.png</kbd> 至 <kbd>2011-03-05T15:27:40Z</kbd> 的版本。",
	"apihelp-help-summary": "顯示指定模組的說明。",
	"apihelp-help-param-modules": "顯示說明的模組(<var>action</var> 與 <var>format</var> 參數的值、或 <kbd>main</kbd>)。可透過 <kbd>+</kbd> 來指定子模組。",
	"apihelp-help-param-submodules": "包含用於命名模組之子模組的說明。",
	"apihelp-help-param-recursivesubmodules": "包含遞迴子模組的說明。",
	"apihelp-help-param-helpformat": "說明輸出的格式。",
	"apihelp-help-param-wrap": "在標準 API 回應結構裡包裹輸出。",
	"apihelp-help-param-toc": "在 HTML 輸出裡包含目錄。",
	"apihelp-help-example-main": "主模組使用說明",
	"apihelp-help-example-submodules": "用於 <kbd>action=query</kbd> 與其所有子模組的幫助。",
	"apihelp-help-example-recursive": "一個頁面中的所有說明。",
	"apihelp-help-example-help": "說明模組自身的說明。",
	"apihelp-help-example-query": "兩個查詢子模組的說明。",
	"apihelp-imagerotate-summary": "旋轉一張或多張圖片。",
	"apihelp-imagerotate-param-rotation": "順時針旋轉圖片的度數。",
	"apihelp-imagerotate-param-tags": "在更新日誌裡套用到項目的標籤。",
	"apihelp-imagerotate-example-simple": "<kbd>90</kbd> 度旋轉 <kbd>File:Example.png</kbd>。",
	"apihelp-imagerotate-example-generator": "<kbd>180</kbd> 度旋轉所有在 <kbd>Category:Flip</kbd> 裡的圖片。",
	"apihelp-import-summary": "從其它 wiki 或 XML 檔案來匯入頁面。",
	"apihelp-import-extended-description": "請注意當發送用於 <var>xml</var> 參數的檔案時,必須以 HTTP POST 作為檔案上傳(註:使用 multipart/form-data)。",
	"apihelp-import-param-summary": "匯入摘要。",
	"apihelp-import-param-xml": "上載的 XML 檔。",
	"apihelp-import-param-interwikiprefix": "用於上傳匯入:套用到未知使用者名稱的跨 wiki 字首(若 <var>$1assignknownusers</var> 有設定,也包含已知使用者)。",
	"apihelp-import-param-assignknownusers": "分配編輯至所命名使用者已存在本地的本地使用者。",
	"apihelp-import-param-interwikisource": "用於跨 wiki 匯入:匯入的來源 wiki。",
	"apihelp-import-param-interwikipage": "用於跨 wiki 匯入:匯入的頁面。",
	"apihelp-import-param-fullhistory": "用於跨 wiki 匯入:完整匯入歷史,而不只是最新版本。",
	"apihelp-import-param-templates": "用於跨 wiki 匯入:匯入一切包含的模板。",
	"apihelp-import-param-namespace": "匯入至此命名空間。無法與 <var>$1rootpage</var> 一起使用。",
	"apihelp-import-param-rootpage": "匯入作為此頁面的子頁面。無法與 <var>$1namespace</var> 一起使用。",
	"apihelp-import-param-tags": "更改標籤套用到在匯入日誌裡的項目,以及在匯入頁面裡的無效修訂。",
	"apihelp-import-example-import": "以完整歷史紀錄匯入 [[meta:Help:ParserFunctions]] 至命名空間 100。",
	"apihelp-linkaccount-summary": "從第三方供應者來連結帳號至目前的使用者。",
	"apihelp-linkaccount-example-link": "開始從<kbd>Example</kbd>連結至帳號",
	"apihelp-login-summary": "登入並取得身分核對 cookies",
	"apihelp-login-extended-description": "此操作僅用於與 [[Special:BotPasswords]] 一起使用,用於主帳號登入的功能已棄用,並且可能會在不帶有警告的情況下失敗。要安全登入主帳號,請使用 <kbd>[[Special:ApiHelp/clientlogin|action=clientlogin]]</kbd>。",
	"apihelp-login-extended-description-nobotpasswords": "此操作已被棄用,且可能在不帶警告的情況下失敗。要安全登入請使用 <kbd>[[Special:ApiHelp/clientlogin|action=clientlogin]]</kbd>。",
	"apihelp-login-param-name": "使用者名稱。",
	"apihelp-login-param-password": "密碼。",
	"apihelp-login-param-domain": "域名(非必填)。",
	"apihelp-login-param-token": "在首次請求獲得的登入權杖。",
	"apihelp-login-example-login": "登入",
	"apihelp-logout-summary": "登出並清除 session 資料。",
	"apihelp-logout-example-logout": "登出當前使用者",
	"apihelp-managetags-summary": "執行相關到更改標籤的管理任務。",
	"apihelp-managetags-param-operation": "要執行哪個操作:",
	"apihelp-managetags-paramvalue-operation-create": "建立一個新的變更標籤供手動使用。",
	"apihelp-managetags-paramvalue-operation-delete": "從資料庫中移除一個變更標籤,包括移除已使用在所有修訂版本、近期變更記錄和日誌記錄上的該標籤。",
	"apihelp-managetags-paramvalue-operation-activate": "啟用一個變更標籤,允許使用者手動應用它。",
	"apihelp-managetags-paramvalue-operation-deactivate": "停用一個變更標籤,阻止使用者手動應用它。",
	"apihelp-managetags-param-tag": "要創建、刪除、啟用或停用的標籤。要標籤創建,標籤必須不存在。要標籤刪除,標籤必須存在。要標籤啟用,標籤必須存在且不能被任何擴充使用到。要標籤停用,標籤必須目前為啟用並且有被手動定義。",
	"apihelp-managetags-param-reason": "創建、刪除、啟用、或停用標籤的原因(可選)。",
	"apihelp-managetags-param-ignorewarnings": "是否在處理期間發生問題時忽略任何警告。",
	"apihelp-managetags-param-tags": "在標籤管理日誌裡更改套用到項目的標籤。",
	"apihelp-managetags-example-create": "建立名為 <kbd>spam</kbd> 的標籤,原因:<kbd>For use in edit patrolling</kbd>",
	"apihelp-managetags-example-delete": "以原因 <kbd>Misspelt</kbd> 來刪除 <kbd>vandlaism</kbd> 標籤",
	"apihelp-managetags-example-activate": "啟用名為 <kbd>spam</kbd> 的標籤,原因:<kbd>For use in edit patrolling</kbd>",
	"apihelp-managetags-example-deactivate": "停用名為 <kbd>spam</kbd> 的標籤,原因:<kbd>No longer required</kbd>",
	"apihelp-mergehistory-summary": "合併頁面歷史",
	"apihelp-mergehistory-param-from": "要合併歷史的頁面標題。不能與 <var>$1fromid</var> 一起使用。",
	"apihelp-mergehistory-param-fromid": "要合併歷史的頁面之頁面 ID。不能與 <var>$1from</var> 一起使用。",
	"apihelp-mergehistory-param-to": "要合併歷史的頁面標題。不能與 <var>$1toid</var> 一起使用。",
	"apihelp-mergehistory-param-toid": "要合併歷史的頁面之頁面 ID。不能與 <var>$1to</var> 一起使用。",
	"apihelp-mergehistory-param-timestamp": "要從來源頁面歷史裡移動至目標頁面歷史之修訂的時間戳記。若省略掉的話,來源頁面的整個頁面歷史將會合併至目標頁面。",
	"apihelp-mergehistory-param-reason": "合併歷史的原因。",
	"apihelp-mergehistory-example-merge": "將<kbd>Oldpage</kbd>的整個歷史合併至<kbd>Newpage</kbd>。",
	"apihelp-mergehistory-example-merge-timestamp": "將<kbd>Oldpage</kbd>直至<kbd>2015-12-31T04:37:41Z</kbd>的頁面修訂版本合併至<kbd>Newpage</kbd>。",
	"apihelp-move-summary": "移動頁面。",
	"apihelp-move-param-from": "重新命名本頁面的標題。不能與 <var>$1fromid</var> 一起出現。",
	"apihelp-move-param-fromid": "重新命名本頁面的 ID 。不能與 <var>$1fromid</var> 一起出現。",
	"apihelp-move-param-to": "將本頁面的標題重新命名為",
	"apihelp-move-param-reason": "重新命名的原因。",
	"apihelp-move-param-movetalk": "如果討論頁存在,變更討論頁名稱。",
	"apihelp-move-param-movesubpages": "如果適用,則重新命名子頁面。",
	"apihelp-move-param-noredirect": "不要建立重新導向。",
	"apihelp-move-param-watch": "將頁面和重定向加入目前使用者的監視清單。",
	"apihelp-move-param-unwatch": "從目前使用者的監視清單中移除頁面和重定向。",
	"apihelp-move-param-watchlist": "使用偏好設定無條件地將頁面加入至或移除自目前使用者的監視清單(略過機器人使用者),或不更改監視。",
	"apihelp-move-param-watchlistexpiry": "監視清單期限時間戳記。忽略此參數會維持目前期限不變。",
	"apihelp-move-param-ignorewarnings": "忽略所有警告。",
	"apihelp-move-param-tags": "更改標籤套用到在移動日誌裡的項目,以及在目標頁面裡的無效修訂。",
	"apihelp-move-example-move": "將<kbd>Badtitle</kbd>移動至<kbd>Goodtitle</kbd>,不留下重定向。",
	"apihelp-opensearch-summary": "使用 OpenSearch 協定搜尋本 wiki。",
	"apihelp-opensearch-param-search": "搜尋字串。",
	"apihelp-opensearch-param-limit": "回傳的結果數量上限。",
	"apihelp-opensearch-param-namespace": "搜尋的命名空間。若 <var>$1search</var> 以有效的命名空間前綴為開頭則會被忽略。",
	"apihelp-opensearch-param-suggest": "不再使用。",
	"apihelp-opensearch-param-redirects": "如何處理重新導向:",
	"apihelp-opensearch-paramvalue-redirects-return": "返回重新導向本身。",
	"apihelp-opensearch-paramvalue-redirects-resolve": "返回目標頁面。可能返回少於$1limit個結果。",
	"apihelp-opensearch-param-redirects-append": "由於歷史原因,$1format=json預設為\"return\",其他格式預設為\"resolve\"。",
	"apihelp-opensearch-param-format": "輸出的格式。",
	"apihelp-opensearch-param-warningsaserror": "若警告以 <kbd>format=json</kbd> 提升時,回傳 API 錯誤而非忽略掉。",
	"apihelp-opensearch-example-te": "找出以 <kbd>Te</kbd> 為開頭的頁面。",
	"apihelp-options-summary": "更改目前使用者的偏好設定。",
	"apihelp-options-extended-description": "僅有註冊在核心或是已安裝擴充功能之一、或是帶有 <code>userjs-</code> 前綴的鍵之選項(由使用者手稿所使用)可被設定。",
	"apihelp-options-param-reset": "重設偏好設定為網站預設值。",
	"apihelp-options-param-resetkinds": "當設定 <var>$1reset</var> 選項時,要重設的選項類型清單。",
	"apihelp-options-param-change": "更改清單,格式化為「名稱 = 值」(例如:skin=vector)。如果未提供值(甚至沒有等號),像是:optionname|otheroption|...,那麼選項將會重新設定成預設值。如果傳遞的任何值包含豎線字元(<kbd>|</kbd>),請使用[[Special:ApiHelp/main#main/datatypes|替代多值分隔符號]]以便正確操作。",
	"apihelp-options-param-optionname": "選項名稱,其應設定為由 <var>$1optionvalue</var> 所提供的值。",
	"apihelp-options-param-optionvalue": "由 <var>$1optionname</var> 所指定,用於選項的值。當設定了 <var>$1optionname</var>;但省略了 <var>$1optionvalue</var> 時,該選項會重設成預設值。",
	"apihelp-options-param-global": "該如何使用 GlobalPreferences 擴充來全域設定選項。\n\n* <kbd>ignore</kbd>:不做出任何行為,會保持選項先前的值。\n* <kbd>override</kbd>:新增一個本地端覆蓋\n* <kbd>update</kbd>:全域更改選項",
	"apihelp-options-example-reset": "重設所有偏好設定",
	"apihelp-options-example-change": "更改<kbd>skin</kbd>和<kbd>hideminor</kbd>偏好設定。",
	"apihelp-options-example-complex": "重置所有偏好設定,然後再設定 <kbd>skin</kbd> 與 <kbd>nickname</kbd>。",
	"apihelp-paraminfo-summary": "獲得有關 API 模組的資訊。",
	"apihelp-paraminfo-param-modules": "模組名稱(<var>action</var> 與 <var>format</var> 參數的值、或是 <kbd>main</kbd>)清單。能以 <kbd>+</kbd> 指定子模組、或以 <kbd>+*</kbd> 指定所有子模組、或是以 <kbd>+**</kbd> 指定所有遞迴子模組。",
	"apihelp-paraminfo-param-helpformat": "說明字串的格式。",
	"apihelp-paraminfo-param-querymodules": "查詢模組名稱清單(<var>prop</var>、<var>meta</var>、或 <var>list</var> 參數的值)。使用 <kbd>$1modules=query+foo</kbd>,而非 <kbd>$1querymodules=foo</kbd>。",
	"apihelp-paraminfo-param-mainmodule": "如同取得有關主要(最高級別)模組的資訊。可改用 <kbd>$1modules=main</kbd>。",
	"apihelp-paraminfo-param-pagesetmodule": "如同取得有關頁面設定模組(提供 titles= 與友人)的資訊。",
	"apihelp-paraminfo-param-formatmodules": "格式模組名稱清單(<var>format</var> 參數的值)。請改用 <var>$1modules</var> 。",
	"apihelp-paraminfo-example-1": "顯示 <kbd>[[Special:ApiHelp/parse|action=parse]]</kbd>、<kbd>[[Special:ApiHelp/jsonfm|format=jsonfm]]</kbd>、<kbd>[[Special:ApiHelp/query+allpages|action=query&list=allpages]]</kbd>、和 <kbd>[[Special:ApiHelp/query+siteinfo|action=query&meta=siteinfo]]</kbd> 的資訊。",
	"apihelp-paraminfo-example-2": "顯示 <kbd>[[Special:ApiHelp/query|action=query]]</kbd> 所有子模組的資訊。",
	"apihelp-parse-summary": "解析內容併回傳解析器輸出。",
	"apihelp-parse-extended-description": "查看 <kbd>[[Special:ApiHelp/query|action=query]]</kbd> 的各種道具模組來從目前頁面版本取得資訊。\n\n以下有幾種方式來解析指定文字:\n# 要指定頁面或修訂,請使用 <var>$1page</var>、<var>$1pageid</var>、或是 <var>$1oldid</var>。\n# 要指定明確內容,請使用 <var>$1text</var>、<var>$1title</var>、<var>$1revid</var> 以及 <var>$1contentmodel</var>。\n# 要指定解析的摘要,<var>$1prop</var> 應提供一個空值。",
	"apihelp-parse-param-title": "文字所屬的頁面標題。若省略,需要指定 <var>$1contentmodel</var>,且 [[API]] 會用為標題使用。",
	"apihelp-parse-param-text": "要解析的文字。使用 <var>$1title</var> 或 <var>$1contentmodel</var> 來控制內容模組。",
	"apihelp-parse-param-revid": "修訂 ID,用於 <code><nowiki>{{REVISIONID}}</nowiki></code> 和相似變數。",
	"apihelp-parse-param-summary": "解析摘要。",
	"apihelp-parse-param-page": "解析此頁面的內容。不能與 <var>$1text</var> 和 <var>$1title</var> 一起使用。",
	"apihelp-parse-param-pageid": "解析此頁面的內容。覆蓋 <var>$1page</var>。",
	"apihelp-parse-param-redirects": "若 <var>$1page</var> 或者 <var>$1pageid</var> 被設定成重新導向,則解析它。",
	"apihelp-parse-param-oldid": "解析此修訂的內容。覆蓋 <var>$1page</var> 與 <var>$1pageid</var>。",
	"apihelp-parse-param-prop": "要取得的資訊部份:",
	"apihelp-parse-paramvalue-prop-text": "提供 wikitext 的解析文字。",
	"apihelp-parse-paramvalue-prop-langlinks": "在已解析的 wikitext 提供語言連結。",
	"apihelp-parse-paramvalue-prop-categories": "在已解析的 wikitext 提供分類。",
	"apihelp-parse-paramvalue-prop-categorieshtml": "提供分類的 HTML 版本。",
	"apihelp-parse-paramvalue-prop-links": "在已解析的 wikitext 提供內部連結。",
	"apihelp-parse-paramvalue-prop-templates": "在已解析的 wikitext 提供模板。",
	"apihelp-parse-paramvalue-prop-images": "在已解析的 wikitext 提供圖片。",
	"apihelp-parse-paramvalue-prop-externallinks": "在已解析的 wikitext 提供外部連結。",
	"apihelp-parse-paramvalue-prop-sections": "在已解析的 wikitext 提供段落。",
	"apihelp-parse-paramvalue-prop-revid": "添加已解析頁面的修訂 ID。",
	"apihelp-parse-paramvalue-prop-displaytitle": "添加已解析 wikitext 的標題。",
	"apihelp-parse-paramvalue-prop-subtitle": "為解析頁面添加頁面副標題。",
	"apihelp-parse-paramvalue-prop-headitems": "提供放置頁面裡的 <code>&lt;head&gt;</code> 之項目。",
	"apihelp-parse-paramvalue-prop-headhtml": "給予頁面已解析的 doctype、開啟的 <code>&lt;html&gt;</code>、<code>&lt;head&gt;</code> 元素、以及開啟的 <code>&lt;body&gt;</code>。",
	"apihelp-parse-paramvalue-prop-modules": "在頁面提供使用的 ResourceLoader 模組。要載入請使用 <code>mw.loader.using()</code>。<kbd>jsconfigvars</kbd> 或 <kbd>encodedjsconfigvars</kbd> 其一必須與 <kbd>modules</kbd> 一同被請求。",
	"apihelp-parse-paramvalue-prop-jsconfigvars": "針對頁面提供指定的 JavaScript 設置變數。若要套用,請使用 <code>mw.config.set()</code>。",
	"apihelp-parse-paramvalue-prop-encodedjsconfigvars": "指定頁面的 JavaScript 設置變量為 JSON 字串。",
	"apihelp-parse-paramvalue-prop-indicators": "提供使用在頁面的頁面狀態指示 HTML。",
	"apihelp-parse-paramvalue-prop-iwlinks": "在已解析的 wikitext 提供跨 wiki 連結。",
	"apihelp-parse-paramvalue-prop-wikitext": "指定被解析的原始 wikitext。",
	"apihelp-parse-paramvalue-prop-properties": "指定多項定義在已解析原始 wikitext 的屬性。",
	"apihelp-parse-paramvalue-prop-limitreportdata": "取得結構化限制報告。當有設定 <var>$1disablelimitreport</var> 時,則不會給予資料。",
	"apihelp-parse-paramvalue-prop-limitreporthtml": "取得限制報告的 HTML 版本。當有設定 <var>$1disablelimitreport</var> 時,則不會給予資料。",
	"apihelp-parse-paramvalue-prop-parsetree": "修訂內容的 XML 解析樹狀(需要內容模型 <code>$1</code>)",
	"apihelp-parse-paramvalue-prop-parsewarnings": "提供發生在解析內容時的警告(以 wikitext)。",
	"apihelp-parse-paramvalue-prop-parsewarningshtml": "提供發生在解析內容時的警告(以 HTML)。",
	"apihelp-parse-param-wrapoutputclass": "要包在解析器輸出內容的 CSS 類別。",
	"apihelp-parse-param-usearticle": "使用 ArticleParserOptions 掛鉤來確保所使用選項與條目頁面檢視所使用選項相符",
	"apihelp-parse-param-parsoid": "使用[[mw:Parsoid|Parsoid]]生成符合[[mw:Specs/HTML|MediaWiki的DOM規範]]的 HTML。",
	"apihelp-parse-param-pst": "在解析之前執行在輸入裡的預先儲存轉換。僅當與文字使用時有效。",
	"apihelp-parse-param-onlypst": "在輸入裡進行預先儲存轉換(pre-save transform、PST)但不解析。在 PST 已套用後回傳相同的 wikitext。僅與 <var>$1text</var> 使用時有效。",
	"apihelp-parse-param-effectivelanglinks": "包含由擴充提供的語言連結(與 <kbd>$1prop=langlinks</kbd> 一起使用)。",
	"apihelp-parse-param-section": "僅解析帶有此識別碼的段落之內容。\n\n當為 <kbd>new</kbd> 時,解析 <var>$1text</var> 與 <var>$1sectiontitle</var>,如同添加新段落至頁面裡。\n\n<kbd>new</kbd> 僅在有指定 <var>text</var> 時允許。",
	"apihelp-parse-param-sectiontitle": "新段落標題當 <var>section</var> 為 <kbd>new</kbd> 時。\n\n不像頁面編輯,當省略或為空時不會退至 <var>summary</var>。",
	"apihelp-parse-param-disablelimitreport": "從解析輸出內容裡省略限制報告(\"NewPP limit report\")。",
	"apihelp-parse-param-disablepp": "請改用<var>$1disablelimitreport</var>。",
	"apihelp-parse-param-disableeditsection": "從解析輸出內容省略編輯段落連結。",
	"apihelp-parse-param-disablestylededuplication": "不要在解析結果去除重複的行內樣式表。",
	"apihelp-parse-param-showstrategykeys": "是否在jsconfigvars中包含內部合併策略資訊。",
	"apihelp-parse-param-generatexml": "產生 XML 解析樹狀(需要被 <kbd>$2prop=parsetree</kbd> 給取代的 <code>$1</code> 內容模型)。",
	"apihelp-parse-param-preview": "在預覽模式下解析。",
	"apihelp-parse-param-sectionpreview": "在段落預覽模式下解析(要同時啟用預覽模式)。",
	"apihelp-parse-param-disabletoc": "在輸出裡忽略目錄。",
	"apihelp-parse-param-useskin": "為解析器輸出應用選擇的外觀。會影響以下屬性:<kbd>text</kbd>、<kbd>langlinks</kbd>、<kbd>headitems</kbd>、<kbd>modules</kbd>、<kbd>jsconfigvars</kbd>和<kbd>indicators</kbd>。",
	"apihelp-parse-param-contentformat": "用於輸入文字的內容序列格式。僅與 $1text 一起使用時有效。",
	"apihelp-parse-param-contentmodel": "輸入文字的內容模組。若省略則必須指定 $1title,且預設會是指定標題的模組。僅在與 $1text 一起使用時有效。",
	"apihelp-parse-example-page": "解析頁面。",
	"apihelp-parse-example-text": "解析 wikitext。",
	"apihelp-parse-example-texttitle": "解析 wikitext,指定頁面標題。",
	"apihelp-parse-example-summary": "解析摘要。",
	"apihelp-patrol-summary": "巡查頁面或修訂。",
	"apihelp-patrol-param-rcid": "要巡查的最近變更 ID。",
	"apihelp-patrol-param-revid": "要巡查的修訂 ID。",
	"apihelp-patrol-param-tags": "在巡查日誌裡更改套用到項目的標籤。",
	"apihelp-patrol-example-rcid": "巡查一次近期變更。",
	"apihelp-patrol-example-revid": "巡查一個修訂。",
	"apihelp-protect-summary": "變更頁面的保護層級。",
	"apihelp-protect-param-title": "要(解除)保護頁面的標題。 不能與 $1pageid 一起使用。",
	"apihelp-protect-param-pageid": "要(解除)保護頁面的 ID。 不能與 $1title 一起使用。",
	"apihelp-protect-param-protections": "保護層級清單,格式為 <kbd>action=level</kbd>(例如 <kbd>edit=sysop</kbd>)。<kbd>all</kbd> 層級代表所有人都可以進行行動,亦即無限制。\n\n<strong>注意:</strong>未列入清單項目的限制皆會移除。",
	"apihelp-protect-param-expiry": "期限時間戳記,若只設定一個時間戳記,該時間戳記將會套用至所有的保護層級。 使用 <kbd>infinite</kbd>、<kbd>indefinite</kbd>、<kbd>infinity</kbd> 或 <kbd>never</kbd> 來設定保護層級期限為永遠。",
	"apihelp-protect-param-reason": "(解除)保護的原因。",
	"apihelp-protect-param-tags": "修改標籤以套用於保護日誌裡的項目。",
	"apihelp-protect-param-cascade": "啟用連鎖保護(也就是保護包含於此頁面的頁面)。如果所有提供的保護等級不支援連鎖,就將其忽略。",
	"apihelp-protect-param-watch": "如果被設定,就將被(解除)保護的頁面加至目前使用者的監視列表。",
	"apihelp-protect-param-watchlist": "使用偏好設定無條件地將頁面加入至或移除自目前使用者的監視清單(略過機器人使用者),或不更改監視。",
	"apihelp-protect-param-watchlistexpiry": "監視清單期限時間戳記。忽略此參數會維持目前期限不變。",
	"apihelp-protect-example-protect": "保護一個頁面。",
	"apihelp-protect-example-unprotect": "透過設定為 <kbd>all</kbd>(註:代表任何人都可以執行操作),來解除對頁面的保護。",
	"apihelp-protect-example-unprotect2": "透過設定為沒有限制,來解除對頁面的保護。",
	"apihelp-purge-summary": "為指定標題清除快取。",
	"apihelp-purge-param-forcelinkupdate": "更新連結表格,並更新其它次級資料。",
	"apihelp-purge-param-forcerecursivelinkupdate": "如同 <kbd>forcelinkupdate</kbd>,並更新任何使用此頁面作為模板的頁面之連結表。",
	"apihelp-purge-example-simple": "重新整理[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]和<kbd>API</kbd>頁面。",
	"apihelp-purge-example-generator": "重新整理主要命名空間的前10個頁面。",
	"apihelp-query-summary": "擷取來自及有關MediaWiki的數據。",
	"apihelp-query-extended-description": "所有資料變動將會先使用查詢來取得權杖,以避免來自惡意網站的濫用行為。",
	"apihelp-query-param-prop": "替已查詢頁面所要取得的屬性。",
	"apihelp-query-param-list": "要取得的清單。",
	"apihelp-query-param-meta": "要取得的詮釋資料。",
	"apihelp-query-param-indexpageids": "包含一個列出所有回傳頁面 ID 的額外 pageids 段落 。",
	"apihelp-query-param-export": "匯出所有指定或已產生頁面的目前修訂。",
	"apihelp-query-param-exportnowrap": "回傳不包裹在 XML 結果裡的匯出 XML(與 [[Special:Export]] 格式相同)。僅能與 $1export 一起使用。",
	"apihelp-query-param-exportschema": "指名在匯出時 XML 傾印格式的特定版本。僅能以 <var>$1export</var> 來使用。",
	"apihelp-query-param-iwurl": "若標題是跨 wiki 連結,是否取得完整的 URL。",
	"apihelp-query-param-rawcontinue": "回傳原始的 <samp>query-continue</samp> 資料來繼續。",
	"apihelp-query-example-revisions": "取得[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的[[Special:ApiHelp/query+siteinfo|網站資訊]]和[[Special:ApiHelp/query+revisions|修訂版本]]。",
	"apihelp-query-example-allpages": "索取以 <kbd>API/</kbd> 為開頭的頁面修訂。",
	"apihelp-query+allcategories-summary": "列舉所有分類。",
	"apihelp-query+allcategories-param-from": "起始列舉的分類。",
	"apihelp-query+allcategories-param-to": "終止列舉的分類。",
	"apihelp-query+allcategories-param-prefix": "搜尋以此值為開頭的所有分類標題。",
	"apihelp-query+allcategories-param-dir": "排序的方向。",
	"apihelp-query+allcategories-param-min": "僅回傳至少有這樣多成員的分類。",
	"apihelp-query+allcategories-param-max": "僅回傳最多有這樣多成員的分類。",
	"apihelp-query+allcategories-param-limit": "要回傳的分類數量。",
	"apihelp-query+allcategories-param-prop": "要取得的屬性。",
	"apihelp-query+allcategories-paramvalue-prop-size": "在分類裡添加頁面數。",
	"apihelp-query+allcategories-paramvalue-prop-hidden": "標記由 <code>_&#95;HIDDENCAT_&#95;</code> 隱藏的分類。",
	"apihelp-query+allcategories-example-size": "列出分類以及各包含多少頁面的資訊。",
	"apihelp-query+allcategories-example-generator": "替以 <kbd>List</kbd> 開頭的分類索取該分類頁面本身的資訊。",
	"apihelp-query+alldeletedrevisions-summary": "依使用者或所在命名空間來列出所有已刪除的修訂。",
	"apihelp-query+alldeletedrevisions-paraminfo-useronly": "僅與 <var>$3user</var> 一同使用。",
	"apihelp-query+alldeletedrevisions-paraminfo-nonuseronly": "不能與 <var>$3user</var> 一同使用。",
	"apihelp-query+alldeletedrevisions-param-start": "起始列舉的時間戳記。",
	"apihelp-query+alldeletedrevisions-param-end": "終止列舉的時間戳記。",
	"apihelp-query+alldeletedrevisions-param-from": "在此標題開始列出。",
	"apihelp-query+alldeletedrevisions-param-to": "在此標題停止列出。",
	"apihelp-query+alldeletedrevisions-param-prefix": "搜尋以此值為開頭的所有頁面標題。",
	"apihelp-query+alldeletedrevisions-param-tag": "僅列出以此標籤所標記的修訂。",
	"apihelp-query+alldeletedrevisions-param-user": "只列出該用者的修訂。",
	"apihelp-query+alldeletedrevisions-param-excludeuser": "不要列出該用者的修訂。",
	"apihelp-query+alldeletedrevisions-param-namespace": "僅列出此命名空間的頁面。",
	"apihelp-query+alldeletedrevisions-param-miser-user-namespace": "<strong>注意:</strong>出於 [[mw:Special:MyLanguage/Manual:$wgMiserMode|miser 模式]]緣故,同時使用 <var>$1user</var> 與 <var>$1namespace</var> 可能會導致在繼續之前,傳回少於 <var>$1limit</var> 筆的結果,並可能不會傳回任何结果。",
	"apihelp-query+alldeletedrevisions-param-generatetitles": "當作為產生器時使用,產生標題而非修訂 ID。",
	"apihelp-query+alldeletedrevisions-example-user": "列出由使用者 <kbd>Example</kbd> 做出的最近 50 個貢獻。",
	"apihelp-query+alldeletedrevisions-example-ns-main": "列出在主命名空間的前 50 個已刪除修訂。",
	"apihelp-query+allfileusages-summary": "列出所有檔案用途,包含不存在的。",
	"apihelp-query+allfileusages-param-from": "要起始列舉的檔案標題。",
	"apihelp-query+allfileusages-param-to": "要終止列舉的檔案標題。",
	"apihelp-query+allfileusages-param-prefix": "搜尋以此值為開頭的所有檔案標題。",
	"apihelp-query+allfileusages-param-unique": "僅秀出各別的檔案標題。不可與 $1prop=ids 一同使用。\n當作為產生器使用時,會產生目標頁面而非來源頁面。",
	"apihelp-query+allfileusages-param-prop": "要包含到的資訊部份:",
	"apihelp-query+allfileusages-paramvalue-prop-ids": "添加使用中頁面的頁面 ID(不能與 $1unique 一起使用)。",
	"apihelp-query+allfileusages-paramvalue-prop-title": "添加檔案標題。",
	"apihelp-query+allfileusages-param-limit": "要回傳的項目總數。",
	"apihelp-query+allfileusages-param-dir": "列出時所採用的方向。",
	"apihelp-query+allfileusages-example-b": "列出檔案標題,包含頁面 ID 以 <kbd>B</kbd> 為起始的遺失項目。",
	"apihelp-query+allfileusages-example-unique": "列出唯一的檔案標題。",
	"apihelp-query+allfileusages-example-unique-generator": "取得所有檔案標題,標記為遺失。",
	"apihelp-query+allfileusages-example-generator": "取得包含檔案的頁面。",
	"apihelp-query+allimages-summary": "按順序列舉所有圖片。",
	"apihelp-query+allimages-param-sort": "作為排序順序的屬性。",
	"apihelp-query+allimages-param-dir": "列出時所採用的方向。",
	"apihelp-query+allimages-param-from": "要開始列舉的圖片標題。僅能與 $1sort=name 一起使用。",
	"apihelp-query+allimages-param-to": "要停止列舉的圖片標題。僅能與 $1sort=name 一起使用。",
	"apihelp-query+allimages-param-start": "要開始列舉的時間戳記。僅能與 $1sort=timestamp 一起使用。",
	"apihelp-query+allimages-param-end": "要停止列舉的時間戳記。僅能與 $1sort=timestamp 一起使用。",
	"apihelp-query+allimages-param-prefix": "搜尋所有以此值為開頭的圖片。僅能與 $1sort=name 一起使用。",
	"apihelp-query+allimages-param-minsize": "限制圖片至少要有這樣多的位元組。",
	"apihelp-query+allimages-param-maxsize": "限制圖片最多只能這樣多的位元組。",
	"apihelp-query+allimages-param-sha1": "圖片的 SHA1 雜湊值。覆蓋 $1sha1base36。",
	"apihelp-query+allimages-param-sha1base36": "以 base 36 的圖片 SHA1 雜湊值(使用在 MediaWiki)。",
	"apihelp-query+allimages-param-user": "只返回此使用者上傳的最新版本的檔案。只能與$1sort=timestamp一起使用。不能與$1filterbots一起使用。",
	"apihelp-query+allimages-param-filterbots": "如何篩選由機器人上傳的檔案。僅能與 $1sort=timestamp 一起使用,且不可與 $1user 一起使用。",
	"apihelp-query+allimages-param-mime": "所要搜尋的 MIME 類型,例如:<kbd>image/jpeg</kbd>。",
	"apihelp-query+allimages-param-limit": "要回傳的圖片總數。",
	"apihelp-query+allimages-example-b": "搜尋以字母 <kbd>B</kbd> 為開頭的所有檔案清單。",
	"apihelp-query+allimages-example-recent": "顯示近期已上傳檔案的清單,類似於 [[Special:NewFiles]]。",
	"apihelp-query+allimages-example-mimetypes": "顯示帶有 MIME 類型為 <kbd>image/png</kbd> 或 <kbd>image/gif</kbd> 的檔案清單",
	"apihelp-query+allimages-example-generator": "顯示 4 個以 <kbd>T</kbd> 為開頭的檔案之資訊。",
	"apihelp-query+alllinks-summary": "列舉所有指向所指定命名空間的連結。",
	"apihelp-query+alllinks-param-from": "要起始列舉的連結標題。",
	"apihelp-query+alllinks-param-to": "要終止列舉的連結標題。",
	"apihelp-query+alllinks-param-prefix": "搜尋以此值為開頭的所有連結標題。",
	"apihelp-query+alllinks-param-unique": "僅秀出各別的連結標題。不可與 <kbd>$1prop=ids</kbd> 一同使用。\n當作為產生器使用時,會產生目標頁面而非來源頁面。",
	"apihelp-query+alllinks-param-prop": "要包含的資訊部份:",
	"apihelp-query+alllinks-paramvalue-prop-ids": "添加連結頁面的頁面 ID(不能與 <var>$1unique</var> 一起使用)。",
	"apihelp-query+alllinks-paramvalue-prop-title": "添加連結標題。",
	"apihelp-query+alllinks-param-namespace": "要列舉的命名空間。",
	"apihelp-query+alllinks-param-limit": "要回傳的項目總數。",
	"apihelp-query+alllinks-param-dir": "列出時所採用的方向。",
	"apihelp-query+alllinks-example-b": "列出連結標題,包含頁面 ID 以 <kbd>B</kbd> 為起始的遺失項目。",
	"apihelp-query+alllinks-example-unique": "列出唯一的連結標題。",
	"apihelp-query+alllinks-example-unique-generator": "取得所有已連結標題,標記為遺失。",
	"apihelp-query+alllinks-example-generator": "取得包含連結的頁面。",
	"apihelp-query+allmessages-summary": "返回來自該網站的訊息。",
	"apihelp-query+allmessages-param-messages": "要輸出的訊息。<kbd>*</kbd>(預設)代表著所有訊息。",
	"apihelp-query+allmessages-param-prop": "要取得的屬性。",
	"apihelp-query+allmessages-param-enableparser": "設定成啟用解析器,將會處理訊息的 wikitext(替代魔術字、處理模板、等等其它)。",
	"apihelp-query+allmessages-param-nocontent": "若有設定,請不要包含在輸出裡的訊息內容。",
	"apihelp-query+allmessages-param-includelocal": "另外包含本地訊息,也就是不會存在於軟體但存在像是 {{ns:MediaWiki}} 命名空間的訊息。\n此列出所有 {{ns:MediaWiki}} 命名空間頁面,因此也會列出那些不會像是 [[MediaWiki:Common.js|Common.js]] 的實際訊息。",
	"apihelp-query+allmessages-param-args": "要替代訊息的引數。",
	"apihelp-query+allmessages-param-filter": "僅回傳名稱包含此字串的訊息。",
	"apihelp-query+allmessages-param-customised": "僅回傳在此自定義狀況下的訊息。",
	"apihelp-query+allmessages-param-lang": "以此語言來回傳訊息。",
	"apihelp-query+allmessages-param-from": "以此訊息來回傳訊息開頭。",
	"apihelp-query+allmessages-param-to": "以此訊息來回傳訊息結尾。",
	"apihelp-query+allmessages-param-title": "當解析訊息時作為脈絡的頁面名稱(用於 $1enableparser 選項)。",
	"apihelp-query+allmessages-param-prefix": "回傳帶有前綴的訊息。",
	"apihelp-query+allmessages-example-ipb": "顯示以 <kbd>ipb-</kbd> 起始的訊息。",
	"apihelp-query+allmessages-example-de": "顯示在德語裡的 <kbd>august</kbd> 與 <kbd>mainpage</kbd> 訊息。",
	"apihelp-query+allpages-summary": "依序列舉在指定命名空間的所有頁面。",
	"apihelp-query+allpages-param-from": "起始列舉的頁面標題。",
	"apihelp-query+allpages-param-to": "終止列舉的頁面標題。",
	"apihelp-query+allpages-param-prefix": "搜尋以此值為開頭的所有頁面標題。",
	"apihelp-query+allpages-param-namespace": "要列舉的命名空間。",
	"apihelp-query+allpages-param-filterredir": "要列出的頁面。",
	"apihelp-query+allpages-param-minsize": "限制頁面至少要有這樣多的位元組。",
	"apihelp-query+allpages-param-maxsize": "限制頁面最多只能這樣多的位元組。",
	"apihelp-query+allpages-param-prtype": "僅限受保護的頁面。",
	"apihelp-query+allpages-param-prlevel": "篩選基於保護級別的保護(必須與 $1prtype= 參數一起使用)。",
	"apihelp-query+allpages-param-prfiltercascade": "基於 cascadingness 的篩選保護(當 $1prtype 未設定時忽略)。",
	"apihelp-query+allpages-param-limit": "要回傳的頁面總數。",
	"apihelp-query+allpages-param-dir": "列出時所採用的方向。",
	"apihelp-query+allpages-param-filterlanglinks": "篩選基於頁面是否有語言連結。請注意這可能不會考慮由擴充所添加的語言連結。",
	"apihelp-query+allpages-param-prexpiry": "要在頁面上過濾的保護期限:",
	"apihelp-query+allpages-paramvalue-prexpiry-indefinite": "只取得帶無限期保護的頁面。",
	"apihelp-query+allpages-paramvalue-prexpiry-definite": "只取得帶指定保護期限的頁面。",
	"apihelp-query+allpages-paramvalue-prexpiry-all": "取得任意保護期限的頁面。",
	"apihelp-query+allpages-example-b": "顯示以字母 <kbd>B</kbd> 為開頭的所有頁面清單。",
	"apihelp-query+allpages-example-generator": "顯示 4 個以 <kbd>T</kbd> 為開頭的頁面之資訊。",
	"apihelp-query+allpages-example-generator-revisions": "顯示前 2 個以 <kbd>Re</kbd> 為開頭的非重新導向頁面內容。",
	"apihelp-query+allredirects-summary": "列出至命名空間的所有重新導向。",
	"apihelp-query+allredirects-param-from": "要起始列舉的重新導向標題。",
	"apihelp-query+allredirects-param-to": "要終止列舉的重新導向標題。",
	"apihelp-query+allredirects-param-prefix": "搜尋以此值為開頭的所有目標頁面。",
	"apihelp-query+allredirects-param-unique": "僅秀出各別的目標頁面。不可與 $1prop=ids|fragment|interwiki 一同使用。\n當作為產生器使用時,會產生目標頁面而非來源頁面。",
	"apihelp-query+allredirects-param-prop": "要包含的資訊部份:",
	"apihelp-query+allredirects-paramvalue-prop-ids": "添加重新導向頁面的頁面 ID(不能與 <var>$1unique</var> 一起使用)。",
	"apihelp-query+allredirects-paramvalue-prop-title": "添加重新導向的標題。",
	"apihelp-query+allredirects-paramvalue-prop-fragment": "添加來自重新導向的部份(不能與 <var>$1unique</var> 一起使用)。",
	"apihelp-query+allredirects-paramvalue-prop-interwiki": "添加來自重新導向的跨 wiki 前綴(不能與 <var>$1unique</var> 一起使用)。",
	"apihelp-query+allredirects-param-namespace": "要列舉的命名空間。",
	"apihelp-query+allredirects-param-limit": "要回傳的項目總數。",
	"apihelp-query+allredirects-param-dir": "列出時所採用的方向。",
	"apihelp-query+allredirects-example-b": "列出目標頁面,包含頁面 ID 以 <kbd>B</kbd> 為起始的遺失項目。",
	"apihelp-query+allredirects-example-unique": "列出唯一目標頁面。",
	"apihelp-query+allredirects-example-unique-generator": "取得所有目標頁面,標記為遺失。",
	"apihelp-query+allredirects-example-generator": "取得包含重新導向的頁面。",
	"apihelp-query+allrevisions-summary": "列出所有修訂版本。",
	"apihelp-query+allrevisions-param-start": "起始列舉的時間戳記。",
	"apihelp-query+allrevisions-param-end": "終止列舉的時間戳記。",
	"apihelp-query+allrevisions-param-user": "只列出該用者的修訂。",
	"apihelp-query+allrevisions-param-excludeuser": "不要列出該用者的修訂。",
	"apihelp-query+allrevisions-param-namespace": "僅列出此命名空間的頁面。",
	"apihelp-query+allrevisions-param-generatetitles": "當作為產生器時使用,產生標題而非修訂 ID。",
	"apihelp-query+allrevisions-example-user": "列出由使用者 <kbd>Example</kbd> 做出的最近 50 個貢獻。",
	"apihelp-query+allrevisions-example-ns-any": "列出在任何命名空間的前 50 個修訂。",
	"apihelp-query+mystashedfiles-summary": "取得在目前使用者上傳儲藏裡的檔案清單。",
	"apihelp-query+mystashedfiles-param-prop": "要索取的檔案屬性。",
	"apihelp-query+mystashedfiles-paramvalue-prop-size": "索取檔案大小與圖片尺寸。",
	"apihelp-query+mystashedfiles-paramvalue-prop-type": "索取檔案的 MIME 類型以及媒體類型。",
	"apihelp-query+mystashedfiles-param-limit": "要取得的檔案數量。",
	"apihelp-query+mystashedfiles-example-simple": "取得檔案鍵、檔案大小、以及在目前使用者上傳儲藏裡的檔案像素尺寸。",
	"apihelp-query+alltransclusions-summary": "列出所有嵌入(頁面使用 &#123;&#123;x&#125;&#125; 來內嵌),包含不存在的。",
	"apihelp-query+alltransclusions-param-from": "要起始列舉的嵌入標題。",
	"apihelp-query+alltransclusions-param-to": "要終止列舉的嵌入標題。",
	"apihelp-query+alltransclusions-param-prefix": "搜尋以此值為開頭的所有嵌入標題。",
	"apihelp-query+alltransclusions-param-unique": "僅秀出各別的嵌入標題。不可與 $1prop=ids 一同使用。\n當作為產生器使用時,會產生目標頁面而非來源頁面。",
	"apihelp-query+alltransclusions-param-prop": "要包含到的資訊部份:",
	"apihelp-query+alltransclusions-paramvalue-prop-ids": "添加嵌入頁面的頁面 ID(不能與 $1unique 一起使用)。",
	"apihelp-query+alltransclusions-paramvalue-prop-title": "添加嵌入的標題。",
	"apihelp-query+alltransclusions-param-namespace": "要列舉的命名空間。",
	"apihelp-query+alltransclusions-param-limit": "要回傳的項目總數。",
	"apihelp-query+alltransclusions-param-dir": "列出時所採用的方向。",
	"apihelp-query+alltransclusions-example-b": "列出嵌入標題,包含頁面 ID 以 <kbd>B</kbd> 為起始的遺失項目。",
	"apihelp-query+alltransclusions-example-unique": "列出獨一嵌入標題。",
	"apihelp-query+alltransclusions-example-unique-generator": "取得所有嵌入標題,標記為遺失。",
	"apihelp-query+alltransclusions-example-generator": "取得包含嵌入的頁面。",
	"apihelp-query+allusers-summary": "列舉所有已註冊使用者。",
	"apihelp-query+allusers-param-from": "起始列舉的使用者名稱。",
	"apihelp-query+allusers-param-to": "終止列舉的使用者名稱。",
	"apihelp-query+allusers-param-excludenamed": "排除指名帳號的使用者。",
	"apihelp-query+allusers-param-excludetemp": "排除臨時帳號的使用者。",
	"apihelp-query+allusers-param-prefix": "搜尋以此值為開頭的所有使用者。",
	"apihelp-query+allusers-param-dir": "排序的方向。",
	"apihelp-query+allusers-param-group": "只包含指定組中的使用者。不包含隱性或自動提升的使用者群組,例如*、使用者或自動確認使用者。",
	"apihelp-query+allusers-param-excludegroup": "排除指定群組中的使用者",
	"apihelp-query+allusers-param-rights": "僅包含有指定權限的使用者。不包含透過由隱含或是自動晉升群組所授予的權限,像是:*、使用者、或是自動確認。",
	"apihelp-query+allusers-param-prop": "要包含的資訊部份:",
	"apihelp-query+allusers-paramvalue-prop-blockinfo": "添加有關使用者目前封鎖的資訊。",
	"apihelp-query+allusers-paramvalue-prop-groups": "列出使用者所在的群組。這會使用到較多伺服器資源,並且可能會回傳少於限制條件的結果。",
	"apihelp-query+allusers-paramvalue-prop-implicitgroups": "列出使用者自動列入的所有群組。",
	"apihelp-query+allusers-paramvalue-prop-rights": "列出使用者所擁有的權限。",
	"apihelp-query+allusers-paramvalue-prop-editcount": "添加使用者的編輯次數。",
	"apihelp-query+allusers-paramvalue-prop-registration": "若可能的話,添加當使用者註冊時的時間戳記(可能為空白)。",
	"apihelp-query+allusers-paramvalue-prop-centralids": "替使用者添加中心 ID 與附加狀態。",
	"apihelp-query+allusers-param-limit": "要回傳的使用者名稱總數。",
	"apihelp-query+allusers-param-witheditsonly": "僅列出有做過編輯的使用者。",
	"apihelp-query+allusers-param-activeusers": "僅列出在最近 $1 {{PLURAL:$1|天|天}}裡活躍的使用者。",
	"apihelp-query+allusers-param-attachedwiki": "與 <kbd>$1prop=centralids</kbd> 使用,另外表明使用者是否附加於由此 ID 所識別出的 wiki。",
	"apihelp-query+allusers-example-y": "列出以<kbd>Y</kbd>開頭的使用者。",
	"apihelp-query+authmanagerinfo-summary": "取得目前身分核對狀態的資訊。",
	"apihelp-query+authmanagerinfo-param-securitysensitiveoperation": "測試使用者的目前驗證狀態是否足夠於指定的安全敏感操作。",
	"apihelp-query+authmanagerinfo-param-requestsfor": "索取關於指定驗證操作所需的驗證請求方面資訊。",
	"apihelp-query+authmanagerinfo-example-login": "索取當開始登入時可能會用到的請求。",
	"apihelp-query+authmanagerinfo-example-login-merged": "以表單欄位合併,檢索當開始登入時可能使用到的請求。",
	"apihelp-query+authmanagerinfo-example-securitysensitiveoperation": "測試用於操作 <kbd>foo</kbd> 的認證是否足夠。",
	"apihelp-query+backlinks-summary": "找出連結至指定頁面的所有頁面。",
	"apihelp-query+backlinks-param-title": "要搜尋的標題。不能與 <var>$1pageid</var> 一起使用。",
	"apihelp-query+backlinks-param-pageid": "要搜尋的頁面 ID。不能與 <var>$1title</var> 一起使用。",
	"apihelp-query+backlinks-param-namespace": "要列舉的命名空間。",
	"apihelp-query+backlinks-param-dir": "列出時所採用的方向。",
	"apihelp-query+backlinks-param-filterredir": "如何篩選重新導向。當 <var>$1redirect</var> 啟用時若設定成 <kbd>nonredirects</kbd>,這僅會套用到第二級別。",
	"apihelp-query+backlinks-param-limit": "要回傳的總頁面。若 <var>$1redirect</var> 有啟用,套用至各個層級(這代表會回傳多至 2 * <var>$1limit</var> 個結果)。",
	"apihelp-query+backlinks-param-redirect": "若連結頁面為重新導向,則找尋連結至該重新導向的所有頁面。最大限制為一半。",
	"apihelp-query+backlinks-example-simple": "顯示至[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的連結。",
	"apihelp-query+backlinks-example-generator": "取得關於連結至[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的頁面的資訊。",
	"apihelp-query+blocks-summary": "列出所有被封鎖使用者與 IP 位址。",
	"apihelp-query+blocks-param-start": "起始列舉的時間戳記。",
	"apihelp-query+blocks-param-end": "終止列舉的時間戳記。",
	"apihelp-query+blocks-param-ids": "要列出的封鎖 ID 清單(可選)。",
	"apihelp-query+blocks-param-users": "要搜尋的使用者清單(可選)。",
	"apihelp-query+blocks-param-ip": "取得套用在此 IP 位址或 CIDR 範圍的所有封鎖與所包含的範圍封鎖。不可與 <var>$3users</var> 一起使用。CIDR 範圍不可超過 IPv4/$1 或 IPv6/$2。",
	"apihelp-query+blocks-param-limit": "能列出封鎖的最大數量。",
	"apihelp-query+blocks-param-prop": "要取得的屬性。",
	"apihelp-query+blocks-paramvalue-prop-id": "添加封鎖 ID。",
	"apihelp-query+blocks-paramvalue-prop-user": "添加已封鎖使用者的使用者名稱。",
	"apihelp-query+blocks-paramvalue-prop-userid": "添加已封鎖使用者的使用者 ID。",
	"apihelp-query+blocks-paramvalue-prop-by": "加入執行封鎖的使用者名稱。",
	"apihelp-query+blocks-paramvalue-prop-byid": "新增執行封鎖者的使用者ID。",
	"apihelp-query+blocks-paramvalue-prop-timestamp": "添加當封鎖生效的時間戳記。",
	"apihelp-query+blocks-paramvalue-prop-expiry": "添加當封鎖到期的時間戳記。",
	"apihelp-query+blocks-paramvalue-prop-reason": "添加封鎖的原因。",
	"apihelp-query+blocks-paramvalue-prop-range": "添加受封鎖影響的 IP 地址範圍。",
	"apihelp-query+blocks-paramvalue-prop-flags": "以自動封鎖、僅限匿名、或其它來標記該禁令。",
	"apihelp-query+blocks-paramvalue-prop-restrictions": "若封鎖非整個網站範圍,添加部份封鎖限制。",
	"apihelp-query+blocks-param-show": "僅顯示符合這些標準的項目。\n例如僅想查看在 IP 地址的無限期封鎖,請設定 <kbd>$1show=ip|!temp</kbd>。",
	"apihelp-query+blocks-example-simple": "列出封鎖。",
	"apihelp-query+blocks-example-users": "列出使用者 <kbd>Alice</kbd> 與 <kbd>Bob</kbd> 的封鎖。",
	"apihelp-query+categories-summary": "列出頁面隸屬的所有分類。",
	"apihelp-query+categories-param-prop": "為各分類所要取得的額外屬性:",
	"apihelp-query+categories-paramvalue-prop-sortkey": "添加用於分類的排序鍵值(十六進位字串)與排序鍵值字首(人類可讀的部份)。",
	"apihelp-query+categories-paramvalue-prop-timestamp": "添加當添加分類時的時間戳記。",
	"apihelp-query+categories-paramvalue-prop-hidden": "標記由 <code>_&#95;HIDDENCAT_&#95;</code> 隱藏的分類。",
	"apihelp-query+categories-param-show": "要顯示出的分類種類。",
	"apihelp-query+categories-param-limit": "要回傳的分類數量。",
	"apihelp-query+categories-param-categories": "僅列出這些分類。在檢查某一分類裡是否擁有某一頁面時很有用。",
	"apihelp-query+categories-param-dir": "列出時所採用的方向。",
	"apihelp-query+categories-example-simple": "取得屬於在頁面 <kbd>Albert Einstein</kbd> 的分類清單。",
	"apihelp-query+categories-example-generator": "取得使用在 <kbd>Albert Einstein</kbd> 頁面裡所有分類的相關資訊。",
	"apihelp-query+categoryinfo-summary": "回傳有關指定分類的資訊。",
	"apihelp-query+categoryinfo-example-simple": "取得有關 <kbd>Category:Foo</kbd> 與 <kbd>Category:Bar</kbd> 的資訊。",
	"apihelp-query+categorymembers-summary": "在指定的分類中列出所有頁面。",
	"apihelp-query+categorymembers-param-title": "所要列舉的分類(必要)。必須包含 <kbd>{{ns:category}}:</kbd> 前綴。不可與 <var>$1pageid</var> 一同使用。",
	"apihelp-query+categorymembers-param-pageid": "要列舉的分類之頁面 ID。不能與 <var>$1title</var> 同時使用。",
	"apihelp-query+categorymembers-param-prop": "要包含的資訊部份:",
	"apihelp-query+categorymembers-paramvalue-prop-ids": "添加頁面 ID。",
	"apihelp-query+categorymembers-paramvalue-prop-title": "添加標題與頁面的命名空間 ID。",
	"apihelp-query+categorymembers-paramvalue-prop-sortkey": "添加使用來在分類裡排序的排序鍵值(十六進位字串)。",
	"apihelp-query+categorymembers-paramvalue-prop-sortkeyprefix": "添加用於在分類裡排序的排序鍵值字首(排序鍵值中人類可讀的部份)。",
	"apihelp-query+categorymembers-paramvalue-prop-type": "添加頁面已被分類的類型(<samp>page</samp>、<samp>subcat</samp> 或 <samp>file</samp>)。",
	"apihelp-query+categorymembers-paramvalue-prop-timestamp": "添加在頁面有被包含時的時間戳記。",
	"apihelp-query+categorymembers-param-namespace": "僅包含在這些命名空間的頁面。請注意可能會使用 <kbd>$1type=subcat</kbd> 或 <kbd>$1type=file</kbd>,而非 <kbd>$1namespace=14</kbd> 或 <kbd>6</kbd>。",
	"apihelp-query+categorymembers-param-type": "包含的分類成員類型。當有設定 <kbd>$1sort=timestamp</kbd> 時忽略。",
	"apihelp-query+categorymembers-param-limit": "回傳的頁面數量上限。",
	"apihelp-query+categorymembers-param-sort": "作為排序順序的屬性。",
	"apihelp-query+categorymembers-param-dir": "排序的方向。",
	"apihelp-query+categorymembers-param-start": "起始列出的時間戳記。僅能與 <kbd>$1sort=timestamp</kbd> 一起使用。",
	"apihelp-query+categorymembers-param-end": "結束列出的時間戳記。僅能與 <kbd>$1sort=timestamp</kbd> 一起使用。",
	"apihelp-query+categorymembers-param-starthexsortkey": "開始列出的排序鍵值,由 <kbd>$1prop=sortkey</kbd> 所回傳。僅能與 <kbd>$1sort=sortkey</kbd> 一起使用。",
	"apihelp-query+categorymembers-param-endhexsortkey": "終止列出的排序鍵值,由 <kbd>$1prop=sortkey</kbd> 所回傳。僅能與 <kbd>$1sort=sortkey</kbd> 一起使用。",
	"apihelp-query+categorymembers-param-startsortkeyprefix": "開始列出的排序鍵值字首,僅能與 <kbd>$1sort=sortkey</kbd> 一起使用。覆蓋 <var>$1starthexsortkey</var>。",
	"apihelp-query+categorymembers-param-endsortkeyprefix": "終止列出 <strong>before</strong> 的排序鍵值字首(並不是 <strong>at</strong>,若此值有出現將不會被包含到!),僅能與 $1sort=sortkey 一起使用。覆蓋 $1endhexsortkey。",
	"apihelp-query+categorymembers-param-startsortkey": "請改用 $1starthexsortkey。",
	"apihelp-query+categorymembers-param-endsortkey": "請改用 $1endhexsortkey。",
	"apihelp-query+categorymembers-example-simple": "取得在 <kbd>Category:Physics</kbd> 裡前 10 項的頁面。",
	"apihelp-query+categorymembers-example-generator": "取得在 <kbd>Category:Physics</kbd> 裡前 10 個頁面的頁面資訊。",
	"apihelp-query+contributors-summary": "取得頁面上已登入貢獻者以及已登出貢獻者數量的清單。",
	"apihelp-query+contributors-summary-tempusers-enabled": "取得頁面的已登入貢獻者(包括臨時使用者)清單以及已登出貢獻者的計數。",
	"apihelp-query+contributors-param-group": "僅包含在指定群組的使用者。不包含隱含或是自動晉升群組,像是:*、使用者、或是自動確認。",
	"apihelp-query+contributors-param-excludegroup": "排除在指定群組的使用者。不包含隱含或是自動晉升群組,像是:*、使用者、或是自動確認。",
	"apihelp-query+contributors-param-rights": "僅包含有指定權限的使用者。不包含透過由隱含或是自動晉升群組所授予的權限,像是:*、使用者、或是自動確認。",
	"apihelp-query+contributors-param-excluderights": "排除有指定權限的使用者。不包含透過由隱含或是自動晉升群組所授予的權限,像是:*、使用者、或是自動確認。",
	"apihelp-query+contributors-param-limit": "要回傳的貢獻人員數量。",
	"apihelp-query+contributors-example-simple": "顯示頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的貢獻者。",
	"apihelp-query+deletedrevisions-summary": "取得已刪除修訂的資訊。",
	"apihelp-query+deletedrevisions-extended-description": "能以多種方式使用:\n# 透過設定標題或頁面 ID,來取得頁面集的已刪除修訂。排序是依照標題和時間戳記。\n# 透過以修訂 ID 來設定它們的 ID,來取得已刪除修訂集的相關資料。排序是依照修訂 ID。",
	"apihelp-query+deletedrevisions-param-start": "要開始列舉的時間戳記。當處理修訂 ID 清單時會被忽略。",
	"apihelp-query+deletedrevisions-param-end": "要停止列舉的時間戳記。當處理修訂 ID 清單時會被忽略。",
	"apihelp-query+deletedrevisions-param-tag": "僅列出以此標籤所標記的修訂。",
	"apihelp-query+deletedrevisions-param-user": "只列出該用者的修訂。",
	"apihelp-query+deletedrevisions-param-excludeuser": "不要列出該用者的修訂。",
	"apihelp-query+deletedrevisions-example-titles": "列出頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]及其討論頁的已刪除修訂,包含內容。",
	"apihelp-query+deletedrevisions-example-revids": "列出已刪除修訂 <kbd>123456</kbd> 的資訊。",
	"apihelp-query+deletedrevs-summary": "列出已刪除的修訂。",
	"apihelp-query+deletedrevs-extended-description": "以三種模式操作:\n# 列出指定標題的已刪除修訂,按時間戳記排序。\n# 列出指定使用者的已刪除貢獻,按時間戳記排序(無指定標題)。\n# 列出在指定命名空間內的所有已刪除修訂,按標題與時間戳記排序(無指定標題、未設定 $1user)。\n\n一些參數僅套用於某些模式,並且其它模式裡會被忽略。",
	"apihelp-query+deletedrevs-paraminfo-modes": "{{PLURAL:$1|模式|模式}}:$2",
	"apihelp-query+deletedrevs-param-start": "起始列舉的時間戳記。",
	"apihelp-query+deletedrevs-param-end": "終止列舉的時間戳記。",
	"apihelp-query+deletedrevs-param-from": "在此標題開始列出。",
	"apihelp-query+deletedrevs-param-to": "在此標題停止列出。",
	"apihelp-query+deletedrevs-param-prefix": "搜尋以此值為開頭的所有頁面標題。",
	"apihelp-query+deletedrevs-param-unique": "各頁面僅列出一個修訂。",
	"apihelp-query+deletedrevs-param-tag": "僅列出以此標籤所標記的修訂。",
	"apihelp-query+deletedrevs-param-user": "只列出該用者的修訂。",
	"apihelp-query+deletedrevs-param-excludeuser": "不要列出該用者的修訂。",
	"apihelp-query+deletedrevs-param-namespace": "僅列出此命名空間的頁面。",
	"apihelp-query+deletedrevs-param-limit": "要列出的最大修訂數量。若有使用 <var>$2prop=content</var>,則限制為 $1。",
	"apihelp-query+deletedrevs-param-prop": "要取得的屬性:",
	"apihelp-query+deletedrevs-paramvalue-prop-revid": "添加被刪除修訂的修訂ID。",
	"apihelp-query+deletedrevs-paramvalue-prop-parentid": "添加上一修訂的修訂ID至頁面。",
	"apihelp-query+deletedrevs-paramvalue-prop-user": "添加做出修訂的使用者。",
	"apihelp-query+deletedrevs-paramvalue-prop-userid": "添加做出修訂的使用者ID。",
	"apihelp-query+deletedrevs-paramvalue-prop-comment": "添加修訂摘要。",
	"apihelp-query+deletedrevs-paramvalue-prop-parsedcomment": "添加解析過的修訂摘要。",
	"apihelp-query+deletedrevs-paramvalue-prop-minor": "如果修訂是小編輯則加標籤。",
	"apihelp-query+deletedrevs-paramvalue-prop-len": "添加修訂長度(位元組)。",
	"apihelp-query+deletedrevs-paramvalue-prop-sha1": "添加修訂的SHA-1(base 16)。",
	"apihelp-query+deletedrevs-paramvalue-prop-content": "添加修訂內容。若有使用此選項,出自於效能因素會將 <var>$2limit</var> 強制設成 $1。",
	"apihelp-query+deletedrevs-paramvalue-prop-token": "提供編輯權杖。",
	"apihelp-query+deletedrevs-paramvalue-prop-tags": "修訂標籤。",
	"apihelp-query+deletedrevs-example-mode1": "列出最近已刪除的對頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]和<kbd>Talk:Main Page</kbd>的貢獻,帶內容(模式1)。",
	"apihelp-query+deletedrevs-example-mode2": "列出最近前 50 個已刪除掉由 <kbd>Bob</kbd> 所做出的貢獻(模式 2)。",
	"apihelp-query+deletedrevs-example-mode3-main": "列出在主命名空間的前 50 個已刪除修訂(模式 3)。",
	"apihelp-query+deletedrevs-example-mode3-talk": "列出在{{ns:talk}}命名空間的前 50 個已刪除頁面(模式 3)。",
	"apihelp-query+disabled-summary": "已停用此查詢模組。",
	"apihelp-query+duplicatefiles-summary": "基於雜湊值來列出指定檔案裡的所有重複檔案。",
	"apihelp-query+duplicatefiles-param-limit": "要回傳的重複檔案數量。",
	"apihelp-query+duplicatefiles-param-dir": "列出時所採用的方向。",
	"apihelp-query+duplicatefiles-param-localonly": "僅查看在本地端儲存庫的檔案。",
	"apihelp-query+duplicatefiles-example-simple": "尋找重複 [[:File:Albert Einstein Head.jpg]] 的檔案。",
	"apihelp-query+duplicatefiles-example-generated": "查看全部有重複到的檔案。",
	"apihelp-query+embeddedin-summary": "找出內嵌(嵌入)指定頁面的所有頁面。",
	"apihelp-query+embeddedin-param-title": "要搜尋的標題。不能與 $1pageid 一起使用。",
	"apihelp-query+embeddedin-param-pageid": "要搜尋的頁面 ID。不能與 $1title 一起使用。",
	"apihelp-query+embeddedin-param-namespace": "要列舉的命名空間。",
	"apihelp-query+embeddedin-param-dir": "列出時所採用的方向。",
	"apihelp-query+embeddedin-param-filterredir": "如何過濾重新導向。",
	"apihelp-query+embeddedin-param-limit": "要回傳的頁面總數。",
	"apihelp-query+embeddedin-example-simple": "顯示嵌入 <kbd>Template:Stub</kbd> 的頁面。",
	"apihelp-query+embeddedin-example-generator": "取得有關嵌入 <kbd>Template:Stub</kbd> 的頁面之資訊。",
	"apihelp-query+extlinks-summary": "回傳所有指定頁面的外部 URL (非 interwiki)。",
	"apihelp-query+extlinks-param-limit": "要回傳的連結數量。",
	"apihelp-query+extlinks-param-protocol": "URL協定。如果為空並且設定了<var>$1query</var>,協定為<kbd>http</kbd>和<kbd>https</kbd>。將此參數和<var>$1query</var>都留空以列出所有外部連結。",
	"apihelp-query+extlinks-param-query": "不以協議來搜尋字串,對於檢查某頁面是否包含某個外部 URL 時很有用。",
	"apihelp-query+extlinks-param-expandurl": "以規範協議的擴充協議關聯 URL。",
	"apihelp-query+extlinks-example-simple": "取得頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的外部連結列表。",
	"apihelp-query+exturlusage-summary": "列舉包含指定 URL 的頁面。",
	"apihelp-query+exturlusage-param-prop": "要包含的資訊部份:",
	"apihelp-query+exturlusage-paramvalue-prop-ids": "添加頁面 ID。",
	"apihelp-query+exturlusage-paramvalue-prop-title": "添加標題與頁面的命名空間 ID。",
	"apihelp-query+exturlusage-paramvalue-prop-url": "添加用於頁面的 URL。",
	"apihelp-query+exturlusage-param-protocol": "URL協定。如果為空並且設定了<var>$1query</var>,協定為<kbd>http</kbd>和<kbd>https</kbd>。將此參數和<var>$1query</var>都留空以列出所有外部連結。",
	"apihelp-query+exturlusage-param-query": "不帶協定的搜尋字串。請查看 [[Special:LinkSearch]]。請留空以列出所有外部連結。",
	"apihelp-query+exturlusage-param-namespace": "要列舉的頁面命名空間。",
	"apihelp-query+exturlusage-param-limit": "要回傳的頁面數量。",
	"apihelp-query+exturlusage-param-expandurl": "以規範協議的擴充協議關聯 URL。",
	"apihelp-query+exturlusage-example-simple": "顯示連結至 <kbd>https://www.mediawiki.org</kbd> 的頁面。",
	"apihelp-query+filearchive-summary": "依序列舉所有已刪除檔案。",
	"apihelp-query+filearchive-param-from": "起始列舉的圖片標題。",
	"apihelp-query+filearchive-param-to": "終止列舉的圖片標題。",
	"apihelp-query+filearchive-param-prefix": "搜尋以此值為開頭的所有圖片標題。",
	"apihelp-query+filearchive-param-limit": "要回傳的圖片總數。",
	"apihelp-query+filearchive-param-dir": "列出時所採用的方向。",
	"apihelp-query+filearchive-param-sha1": "圖片的 SHA1 雜湊值。覆蓋 $1sha1base36。",
	"apihelp-query+filearchive-param-sha1base36": "以 base 36 的圖片 SHA1 雜湊值(使用在 MediaWiki)。",
	"apihelp-query+filearchive-param-prop": "要取得的圖片資訊:",
	"apihelp-query+filearchive-paramvalue-prop-sha1": "替圖片添加 SHA-1 雜湊值。",
	"apihelp-query+filearchive-paramvalue-prop-timestamp": "添加上傳版本的時間戳記。",
	"apihelp-query+filearchive-paramvalue-prop-user": "添加上傳該圖片版本的使用者。",
	"apihelp-query+filearchive-paramvalue-prop-size": "添加圖片大小(位元組)、高度、寬度、頁面計數(若可套用的話)。",
	"apihelp-query+filearchive-paramvalue-prop-dimensions": "大小的別名。",
	"apihelp-query+filearchive-paramvalue-prop-description": "添加圖片版本的描述。",
	"apihelp-query+filearchive-paramvalue-prop-parseddescription": "解析版本的描述。",
	"apihelp-query+filearchive-paramvalue-prop-mime": "添加圖片的 MIME。",
	"apihelp-query+filearchive-paramvalue-prop-mediatype": "添加圖片的媒體類型。",
	"apihelp-query+filearchive-paramvalue-prop-metadata": "列出圖片版本的 Exif 詮釋資料。",
	"apihelp-query+filearchive-paramvalue-prop-bitdepth": "添加版本的位元深度。",
	"apihelp-query+filearchive-paramvalue-prop-archivename": "添加非最新版本的存檔版本檔案名稱。",
	"apihelp-query+filearchive-example-simple": "顯示所有已刪除檔案的清單。",
	"apihelp-query+filerepoinfo-summary": "回傳有關在 wiki 上圖片儲存庫的詮釋資料。",
	"apihelp-query+filerepoinfo-param-prop": "要取得的儲存庫屬性(可用屬性在其它 wiki 上可能會有差別)。",
	"apihelp-query+filerepoinfo-paramvalue-prop-apiurl": "儲存庫 API 的 URL - 對於從主機取得圖片資訊很有用。",
	"apihelp-query+filerepoinfo-paramvalue-prop-articlepath": "儲存庫 wiki 的 <var>[[mw:Special:MyLanguage/Manual:$wgArticlePath|$wgArticlePath]]</var> 或同等內容。",
	"apihelp-query+filerepoinfo-paramvalue-prop-canUpload": "檔案是否可上傳至此儲存庫,例如透過 CORS 與共享驗證。",
	"apihelp-query+filerepoinfo-paramvalue-prop-displayname": "人類可讀的儲存庫 wiki 名稱。",
	"apihelp-query+filerepoinfo-paramvalue-prop-favicon": "儲存庫 wiki 的網頁圖標 URL,來自於 <var>[[mw:Special:MyLanguage/Manual:$wgFavicon|$wgFavicon]]</var>。",
	"apihelp-query+filerepoinfo-paramvalue-prop-fetchDescription": "當檢視本地端檔案描述頁面時,是否從該儲存庫檢索檔案描述頁面。",
	"apihelp-query+filerepoinfo-paramvalue-prop-initialCapital": "檔案是否隱式地以大寫字母開頭。",
	"apihelp-query+filerepoinfo-paramvalue-prop-local": "儲存庫是否為本地端。",
	"apihelp-query+filerepoinfo-paramvalue-prop-name": "儲存庫的要點 - 使用在像是 <var>[[mw:Special:MyLanguage/Manual:$wgForeignFileRepos|$wgForeignFileRepos]]</var> 與 [[Special:ApiHelp/query+imageinfo|imageinfo]] 所回傳的值。",
	"apihelp-query+filerepoinfo-paramvalue-prop-rootUrl": "圖片路徑的根 URL 路徑。",
	"apihelp-query+filerepoinfo-paramvalue-prop-scriptDirUrl": "用於儲存庫 wiki 的 MediaWiki 安裝之根 URL 路徑。",
	"apihelp-query+filerepoinfo-paramvalue-prop-server": "儲存庫 wiki 的 <var>[[mw:Special:MyLanguage/Manual:$wgServer|$wgServer]]</var> 或同等內容。",
	"apihelp-query+filerepoinfo-paramvalue-prop-thumbUrl": "縮圖路徑的根 URL 路徑。",
	"apihelp-query+filerepoinfo-paramvalue-prop-url": "公共區域 URL 路徑。",
	"apihelp-query+filerepoinfo-example-simple": "取得檔案儲存庫的資訊。",
	"apihelp-query+fileusage-summary": "尋找使用到指定檔案的所有頁面。",
	"apihelp-query+fileusage-param-prop": "要取得的屬性。",
	"apihelp-query+fileusage-paramvalue-prop-pageid": "各頁面的頁面 ID。",
	"apihelp-query+fileusage-paramvalue-prop-title": "各頁面的標題。",
	"apihelp-query+fileusage-paramvalue-prop-redirect": "若頁面為重新導向,則做出標記。",
	"apihelp-query+fileusage-param-namespace": "僅包含這些命名空間的頁面。",
	"apihelp-query+fileusage-param-limit": "要回傳的數量。",
	"apihelp-query+fileusage-param-show": "只顯示符合以下標準的項:",
	"apihelp-query+fileusage-paramvalue-show-redirect": "只顯示重新導向。",
	"apihelp-query+fileusage-paramvalue-show-!redirect": "僅顯示非重新導向。",
	"apihelp-query+fileusage-example-simple": "取得使用到 [[:File:Example.jpg]] 的頁面清單。",
	"apihelp-query+fileusage-example-generator": "取得使用到 [[:File:Example.jpg]] 的頁面相關資訊。",
	"apihelp-query+imageinfo-summary": "回傳檔案資訊與上傳日誌。",
	"apihelp-query+imageinfo-param-prop": "要取得的檔案資訊:",
	"apihelp-query+imageinfo-paramvalue-prop-timestamp": "添加上傳版本的時間戳記。",
	"apihelp-query+imageinfo-paramvalue-prop-user": "添加上傳了各檔案版本的使用者。若是已刪除修訂的使用者,會回傳 <samp>userhidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-userid": "添加上傳了各檔案版本的使用者 ID。若修訂裡使用者已被刪除,會回傳 <samp>userhidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-comment": "版本的註釋。若是已刪除修訂的註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-parsedcomment": "解析版本上的註釋。若是已刪除修訂的解析註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-canonicaltitle": "添加檔案的規範標題。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-url": "提供檔案與描述頁面的 URL。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-size": "添加以位元組為單位的檔案大小、高度、寬度、頁面計數(若可套用的話)。",
	"apihelp-query+imageinfo-paramvalue-prop-dimensions": "大小的別名。",
	"apihelp-query+imageinfo-paramvalue-prop-sha1": "替檔案添加 SHA-1 雜湊值。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-mime": "替檔案添加 MIME 類型。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-thumbmime": "添加圖片縮圖的 MIME 類型(需要 url 與參數 $1urlwidth)。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-mediatype": "添加檔案的媒體類型。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-metadata": "列出檔案版本的 Exif 詮釋資料。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-commonmetadata": "列出檔案版本的檔案格式通用詮釋資料。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-extmetadata": "列出結合多個來源的格式化詮釋資料。結果內容為 HTML 格式。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-archivename": "添加非最新版本的存檔版本檔案名稱。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-bitdepth": "添加版本的位元深度。若是已刪除修訂的檔案,會回傳 <samp>filehidden</samp> 屬性。",
	"apihelp-query+imageinfo-paramvalue-prop-uploadwarning": "由 Special:Upload 頁面所使用來取得有關現有檔案的資訊。不適用於 MediaWiki 核心之外。",
	"apihelp-query+imageinfo-paramvalue-prop-badfile": "無論檔案是否在 [[MediaWiki:Bad image list]] 都添加",
	"apihelp-query+imageinfo-param-limit": "每個檔案要回傳的檔案修訂數量。",
	"apihelp-query+imageinfo-param-start": "列出的起始時間戳記。",
	"apihelp-query+imageinfo-param-end": "列出的終止時間戳記。",
	"apihelp-query+imageinfo-param-urlwidth": "若 $2prop=url 有設定,會回傳前至縮放成此寬度圖片的 URL。\n出於效能因素,若有使用此項目時不會回傳超過 $1 張縮放圖片。",
	"apihelp-query+imageinfo-param-urlheight": "與 $1urlwidth 相似。",
	"apihelp-query+imageinfo-param-metadataversion": "要使用的詮釋資料版本。若有指定 <kbd>latest</kbd>,會使用最新版本。預設為 <kbd>1</kbd>,以便向下兼容。",
	"apihelp-query+imageinfo-param-extmetadatalanguage": "要檢索 extmetadata 的語言。此會影響檢索到的翻譯,若有多個可用語言的話,還會影響到像是數字與各種值的格式。",
	"apihelp-query+imageinfo-param-extmetadatamultilang": "若用於 extmetadata 屬性的翻譯可用,則全部索取。",
	"apihelp-query+imageinfo-param-extmetadatafilter": "若有指定且非空,僅會為 $1prop=extmetadata 回傳這些鍵。",
	"apihelp-query+imageinfo-param-urlparam": "處理器特定參數字串。例如 PDFs 可使用 <kbd>page15-100px</kbd>。必須要使用到 <var>$1urlwidth</var> 且要與 <var>$1urlparam</var> 一致。",
	"apihelp-query+imageinfo-param-badfilecontexttitle": "若有設定 <kbd>$2prop=badfile</kbd>,此頁面使用在當評估 [[MediaWiki:Bad image list]] 的時候",
	"apihelp-query+imageinfo-param-localonly": "僅查看在本地端儲存庫的檔案。",
	"apihelp-query+imageinfo-example-simple": "取得關於 [[:File:Albert Einstein Head.jpg]] 目前版本的資訊.",
	"apihelp-query+imageinfo-example-dated": "索取 [[:File:Test.jpg]] 自 2008 年以來的版本資訊。",
	"apihelp-query+images-summary": "回傳指定頁面中包含的所有檔案。",
	"apihelp-query+images-param-limit": "要回傳的檔案數量。",
	"apihelp-query+images-param-images": "僅列出這些檔案。在檢查某一頁面是否擁有某一檔案時很有用。",
	"apihelp-query+images-param-dir": "列出時所採用的方向。",
	"apihelp-query+images-example-simple": "取得頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]上使用的檔案列表。",
	"apihelp-query+images-example-generator": "取得有關[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]使用的檔案的資訊。",
	"apihelp-query+imageusage-summary": "尋找使用到指定圖片標題的所有頁面。",
	"apihelp-query+imageusage-param-title": "要搜尋的標題。不能與 $1pageid 一起使用。",
	"apihelp-query+imageusage-param-pageid": "要搜尋的頁面 ID。不能與 $1title 一起使用。",
	"apihelp-query+imageusage-param-namespace": "要列舉的命名空間。",
	"apihelp-query+imageusage-param-dir": "列出時所採用的方向。",
	"apihelp-query+imageusage-param-filterredir": "如何篩選重新導向。當 $1redirect 啟用時若設定成非重新導向,這僅會套用到第二級別。",
	"apihelp-query+imageusage-param-limit": "要回傳的總頁面。若 <var>$1redirect</var> 有啟用,套用至各個層級(這代表會回傳多至 2 * <var>$1limit</var> 個結果)。",
	"apihelp-query+imageusage-param-redirect": "若連結頁面為重新導向,則找尋連結至該重新導向的所有頁面。最大限制為一半。",
	"apihelp-query+imageusage-example-simple": "顯示有使用 [[:File:Albert Einstein Head.jpg]] 的頁面。",
	"apihelp-query+imageusage-example-generator": "取得關於有使用到 [[:File:Albert Einstein Head.jpg]] 的頁面資訊.",
	"apihelp-query+info-summary": "取得基本頁面訊息。",
	"apihelp-query+info-param-prop": "要取得的額外屬性:",
	"apihelp-query+info-paramvalue-prop-protection": "列出各頁面的保護層級。",
	"apihelp-query+info-paramvalue-prop-talkid": "各非對話頁的對話頁頁面 ID。",
	"apihelp-query+info-paramvalue-prop-watched": "列出各頁面的監視狀態。",
	"apihelp-query+info-paramvalue-prop-watchers": "監視者的數目,如有允許的話。",
	"apihelp-query+info-paramvalue-prop-visitingwatchers": "有訪問頁面近期編輯數的各頁面監視者數目,如有允許的話。",
	"apihelp-query+info-paramvalue-prop-notificationtimestamp": "各頁面的監視清單通知時間戳記。",
	"apihelp-query+info-paramvalue-prop-subjectid": "各對話頁的父頁面頁面 ID。",
	"apihelp-query+info-paramvalue-prop-associatedpage": "[[:mw:Special:MyLanguage/Help:Associated_pages|關聯主題或討論頁]]的字首標題。",
	"apihelp-query+info-paramvalue-prop-url": "替各頁面給予一個完整 URL、一個編輯 URL,以及一個規範 URL。",
	"apihelp-query+info-paramvalue-prop-readable": "使用者是否可閱讀此頁面。請改用 <kbd>intestactions=read</kbd>。",
	"apihelp-query+info-paramvalue-prop-preload": "提供由EditFormPreloadText返回的文字。請改用<kbd>preloadcontent</kbd>,它也支持其他類型的預載入文字。",
	"apihelp-query+info-paramvalue-prop-preloadcontent": "提供當頁面不存在或添加新章節時要在編輯器中顯示的內容。",
	"apihelp-query+info-paraminfo-preloadcontentonly": "僅當<var>$3prop</var>包含<var>preloadcontent</var>時使用。",
	"apihelp-query+info-param-preloadcustom": "用作預載入內容的自訂頁面的標題。",
	"apihelp-query+info-param-preloadparams": "用作預載入內容的自訂頁面的參數。",
	"apihelp-query+info-param-preloadnewsection": "返回用於頁面上新章節的預載入內容,而不是新頁面。",
	"apihelp-query+info-paramvalue-prop-editintro": "以HTML形式提供編輯此頁面或修訂版本時應向使用者顯示的介紹訊息。",
	"apihelp-query+info-paraminfo-editintroonly": "僅當<var>$3prop</var>包含<var>editintro</var>時使用。",
	"apihelp-query+info-param-editintrostyle": "一些介紹性訊息帶有可選的包裝外框。使用<kbd>moreframes</kbd>包含或<kbd>lessframes</kbd>省略。",
	"apihelp-query+info-param-editintroskip": "要從回應中刪除的介紹訊息列表。如果特定訊息與您的工具不相關,或者資訊以不同方式傳達,請使用此選項。",
	"apihelp-query+info-param-editintrocustom": "用作附加介紹訊息的自訂頁面的標題。",
	"apihelp-query+info-paramvalue-prop-displaytitle": "在頁面標題實際顯示處提供方式。",
	"apihelp-query+info-paramvalue-prop-varianttitles": "指定網站內容語言裡所有變體的顯示標題。",
	"apihelp-query+info-paramvalue-prop-linkclasses": "若它們出現在名為 <var>$1linkcontext</var> 的頁面上,給予使用於連結到此頁面的額外 CSS 類別(例如:連結色彩)。",
	"apihelp-query+info-param-linkcontext": "當 <var>$1prop</var> 包含 <var>linkclasses</var> 時,在確認的額外 CSS 類別(例如:連結色彩)時使用的上下文標題。",
	"apihelp-query+info-param-testactions": "測試目前使用者是否可執行頁面上的某項操作。",
	"apihelp-query+info-param-testactionsdetail": "<var>$1testactions</var> 的詳情級別。使用[[Special:ApiHelp/main|主模組]]的 <var>errorformat</var> 與 <var>errorlang</var> 參數來控制訊息所回傳格式。",
	"apihelp-query+info-paramvalue-testactionsdetail-boolean": "回傳各操作的布林值。",
	"apihelp-query+info-paramvalue-testactionsdetail-full": "回傳描述出為何操作被禁止的訊息,或為允許則回傳空陣列。",
	"apihelp-query+info-paramvalue-testactionsdetail-quick": "像是 <kbd>full</kbd>;但跳過耗費的檢查。",
	"apihelp-query+info-param-testactionsautocreate": "測試執行<var>$1testactions</var>操作是否會自動建立臨時帳號。",
	"apihelp-query+info-example-simple": "取得有關頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的資訊。",
	"apihelp-query+info-example-protection": "取得頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]相關的常規和保護資訊。",
	"apihelp-query+iwbacklinks-summary": "找出連結至指定跨 wiki 連結的所有頁面。",
	"apihelp-query+iwbacklinks-extended-description": "可用於找尋所有帶前綴的連結、或是所有至某一標題(帶有指定前綴)的連結。兩參數均不使用則會是「所有內部 wiki 連結」。",
	"apihelp-query+iwbacklinks-param-prefix": "跨 wiki 前綴。",
	"apihelp-query+iwbacklinks-param-title": "要搜尋的跨 wiki 連結。必須與 <var>$1blprefix</var> 一起使用。",
	"apihelp-query+iwbacklinks-param-limit": "要回傳的頁面總數。",
	"apihelp-query+iwbacklinks-param-prop": "要取得的屬性。",
	"apihelp-query+iwbacklinks-paramvalue-prop-iwprefix": "添加跨 wiki 前綴。",
	"apihelp-query+iwbacklinks-paramvalue-prop-iwtitle": "添加跨 wiki 標題。",
	"apihelp-query+iwbacklinks-param-dir": "列出時所採用的方向。",
	"apihelp-query+iwbacklinks-example-simple": "取得連結至 [[wikibooks:Test]] 的頁面。",
	"apihelp-query+iwbacklinks-example-generator": "取得連結至 [[wikibooks:Test]] 的頁面相關資訊。",
	"apihelp-query+iwlinks-summary": "回傳指定頁面的所有 interwiki 連結。",
	"apihelp-query+iwlinks-param-url": "是否取得完整的 URL(不能與 $1prop 一同使用)。",
	"apihelp-query+iwlinks-param-prop": "為各跨 wiki 連結所要取得的額外屬性:",
	"apihelp-query+iwlinks-paramvalue-prop-url": "添加完整的 URL。",
	"apihelp-query+iwlinks-param-limit": "要回傳的跨 wiki 連結數量。",
	"apihelp-query+iwlinks-param-prefix": "僅回傳帶有此前綴的跨 wiki 連結。",
	"apihelp-query+iwlinks-param-title": "要搜尋的跨 wiki 連結。必須與 <var>$1prefix</var> 一起使用。",
	"apihelp-query+iwlinks-param-dir": "列出時所採用的方向。",
	"apihelp-query+iwlinks-example-simple": "從頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]取得跨wiki連結。",
	"apihelp-query+langbacklinks-summary": "找出連結至指定語言連結的所有頁面。",
	"apihelp-query+langbacklinks-extended-description": "可用來查找帶有語言代碼的所有連結、或是所有標題連結(帶指定語言)。不使用任何參數代表著「所有語言連結」。\n\n請注意這可能不會考慮由擴充功能所添加的語言連結。",
	"apihelp-query+langbacklinks-param-lang": "用於語言的語言連結。",
	"apihelp-query+langbacklinks-param-title": "要搜尋的語言連結。必須與$1lang一同使用。",
	"apihelp-query+langbacklinks-param-limit": "要回傳的頁面總數。",
	"apihelp-query+langbacklinks-param-prop": "要取得的屬性。",
	"apihelp-query+langbacklinks-paramvalue-prop-lllang": "新增用於語言連結的語言代碼。",
	"apihelp-query+langbacklinks-paramvalue-prop-lltitle": "新增語言連結標題。",
	"apihelp-query+langbacklinks-param-dir": "列出時所採用的方向。",
	"apihelp-query+langbacklinks-example-simple": "取得連結至 [[:fr:Test]] 的頁面。",
	"apihelp-query+langbacklinks-example-generator": "取得連結至 [[:fr:Test]] 的頁面相關資訊。",
	"apihelp-query+langlinks-summary": "回傳指定頁面的所有跨語言連結。",
	"apihelp-query+langlinks-param-limit": "要回傳的 langlinks 數量。",
	"apihelp-query+langlinks-param-url": "是否取得完整的 URL(不能與 <var>$1prop</var> 一同使用)。",
	"apihelp-query+langlinks-param-prop": "為各跨語言連結所要取得的額外屬性:",
	"apihelp-query+langlinks-paramvalue-prop-url": "添加完整的 URL。",
	"apihelp-query+langlinks-paramvalue-prop-langname": "添加本地化語言名稱(盡可能)。使用 <var>$1inlanguagecode</var> 來控制語言。",
	"apihelp-query+langlinks-paramvalue-prop-autonym": "新增本地語言名稱。",
	"apihelp-query+langlinks-param-lang": "僅回傳帶有此語言代碼的語言連結。",
	"apihelp-query+langlinks-param-title": "要搜尋的連結。必須與 <var>$1lang</var> 一起使用。",
	"apihelp-query+langlinks-param-dir": "列出時所採用的方向。",
	"apihelp-query+langlinks-param-inlanguagecode": "用於本地化語言名稱的語言代碼。",
	"apihelp-query+langlinks-example-simple": "從頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]取得跨語言連結。",
	"apihelp-query+languageinfo-summary": "回傳有關可用語言的資訊。",
	"apihelp-query+languageinfo-extended-description": "若在一次請求中索取資訊耗費時間太長,可套用 [[mw:Special:MyLanguage/API:Continue|Continuation]]。",
	"apihelp-query+languageinfo-param-prop": "替各語言所要取得的資訊。",
	"apihelp-query+languageinfo-paramvalue-prop-code": "語言代碼。(此代碼是 MediaWiki 指定,與其它標準部份相同。)",
	"apihelp-query+languageinfo-paramvalue-prop-bcp47": "BCP-47 語言代碼。",
	"apihelp-query+languageinfo-paramvalue-prop-dir": "語言的書寫方向(<code>ltr</code> 或 <code>rtl</code>)。",
	"apihelp-query+languageinfo-paramvalue-prop-autonym": "語言的本語稱呼,也就是該語言用自己語言本身寫出的名稱。",
	"apihelp-query+languageinfo-paramvalue-prop-name": "在由 <var>uselang</var> 參數所指定語言裡的語言名稱,如有需要可套用語言遞補。",
	"apihelp-query+languageinfo-paramvalue-prop-variantnames": "用於語言轉換連結的語言變體的簡短名稱。",
	"apihelp-query+languageinfo-paramvalue-prop-fallbacks": "替此語言設置的遞補語言之語言代碼。「en」不包括在內含的最後遞補(但一些語言可明確地指定「en」為最後遞補)。",
	"apihelp-query+languageinfo-paramvalue-prop-variants": "由此語言所支援的變體語言代碼。",
	"apihelp-query+languageinfo-param-code": "所應要回傳的語言該語言代碼,或是以 <code>*</code> 來表示為全部語言。",
	"apihelp-query+languageinfo-example-simple": "取得所有支援語言的語言代碼。",
	"apihelp-query+languageinfo-example-autonym-name-de": "取得所有支援語言的本語稱呼和德語名稱。",
	"apihelp-query+languageinfo-example-fallbacks-variants-oc": "取得遞補語言與奧克語的變體。",
	"apihelp-query+languageinfo-example-bcp47-dir": "取得 BCP-47 語言代碼與所有支援語言的書寫方向。",
	"apihelp-query+links-summary": "回傳指定頁面的所有連結。",
	"apihelp-query+links-param-namespace": "僅顯示在這些命名空間的連結。",
	"apihelp-query+links-param-limit": "要回傳的連結數量。",
	"apihelp-query+links-param-titles": "僅列出至這些標題的連結。在檢查某一頁面是否連結至某一標題時很有用。",
	"apihelp-query+links-param-dir": "列出時所採用的方向。",
	"apihelp-query+links-example-simple": "從頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]取得連結。",
	"apihelp-query+links-example-generator": "取得有關在頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]中的連結頁面的資訊。",
	"apihelp-query+links-example-namespaces": "取得在{{ns:user}}和{{ns:template}}命名空間中來自頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的連結。",
	"apihelp-query+linkshere-summary": "找出連結至指定頁面的所有頁面。",
	"apihelp-query+linkshere-param-prop": "要取得的屬性。",
	"apihelp-query+linkshere-paramvalue-prop-pageid": "各頁面的頁面 ID。",
	"apihelp-query+linkshere-paramvalue-prop-title": "各頁面的標題。",
	"apihelp-query+linkshere-paramvalue-prop-redirect": "若頁面為重新導向,則做出標記。",
	"apihelp-query+linkshere-param-namespace": "僅包含這些命名空間的頁面。",
	"apihelp-query+linkshere-param-limit": "要回傳的數量。",
	"apihelp-query+linkshere-param-show": "僅顯示符合這些準則的項目:",
	"apihelp-query+linkshere-paramvalue-show-redirect": "僅顯示重新導向。",
	"apihelp-query+linkshere-paramvalue-show-!redirect": "僅顯示非重新導向。",
	"apihelp-query+linkshere-example-simple": "取得連結至[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的頁面列表。",
	"apihelp-query+linkshere-example-generator": "取得有關連結至[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的頁面的資訊。",
	"apihelp-query+logevents-summary": "從日誌中取得事件。",
	"apihelp-query+logevents-param-prop": "要取得的屬性。",
	"apihelp-query+logevents-paramvalue-prop-ids": "添加日誌事件的 ID。",
	"apihelp-query+logevents-paramvalue-prop-title": "添加日誌事件的頁面標題。",
	"apihelp-query+logevents-paramvalue-prop-type": "添加日誌事件的類型。",
	"apihelp-query+logevents-paramvalue-prop-user": "添加負責日誌事件的使用者。如果使用者已被修訂刪除,將返回<samp>userhidden</samp>屬性。",
	"apihelp-query+logevents-paramvalue-prop-userid": "添加負責日誌事件的使用者ID。如果使用者已被修訂刪除,將返回<samp>userhidden</samp>屬性。",
	"apihelp-query+logevents-paramvalue-prop-timestamp": "添加日誌事件的時間戳記。",
	"apihelp-query+logevents-paramvalue-prop-comment": "添加日誌事件的評論。如果評論已被修訂刪除,將返回<samp>commenthidden</samp>屬性。",
	"apihelp-query+logevents-paramvalue-prop-parsedcomment": "添加日誌事件的解析評論。如果評論已被修訂刪除,將返回<samp>commenthidden</samp>屬性。",
	"apihelp-query+logevents-paramvalue-prop-details": "列出有關日誌事件的其他詳細資訊。如果日誌事件已被修訂刪除,則將返回<samp>actionhidden</samp>屬性。",
	"apihelp-query+logevents-paramvalue-prop-tags": "列出日誌事件的標籤。",
	"apihelp-query+logevents-param-type": "篩選僅為此類型的日誌項目。",
	"apihelp-query+logevents-param-action": "篩選日誌操作僅限於此操作。覆蓋 <var>$1type</var>。在可用值清單裡,與像是 <kbd>action/*</kbd> 這種帶有萬用字元的值,可以在斜線(/)後方帶有不同字串。",
	"apihelp-query+logevents-param-start": "起始列舉的時間戳記。",
	"apihelp-query+logevents-param-end": "結束列舉的時間戳記。",
	"apihelp-query+logevents-param-user": "篩選由指定使用者所產生出的項目。",
	"apihelp-query+logevents-param-title": "篩選與這些頁面關聯的項目。",
	"apihelp-query+logevents-param-namespace": "篩選在這些指定命名空間裡的項目。",
	"apihelp-query+logevents-param-prefix": "篩選以此前綴為開頭的項目。",
	"apihelp-query+logevents-param-tag": "僅列出以此標籤所標記的事件項目。",
	"apihelp-query+logevents-param-limit": "要回傳的事件項目總數。",
	"apihelp-query+logevents-example-simple": "列出近期日誌事件。",
	"apihelp-query+pagepropnames-summary": "列出所有在 wiki 使用的頁面屬性名稱。",
	"apihelp-query+pagepropnames-param-limit": "回傳的名稱數量上限。",
	"apihelp-query+pagepropnames-example-simple": "取得前 10 個屬性名稱。",
	"apihelp-query+pageprops-summary": "取得定義在頁面內容的各樣頁面屬性。",
	"apihelp-query+pageprops-param-prop": "僅列出這些頁面屬性(<kbd>[[Special:ApiHelp/query+pagepropnames|action=query&list=pagepropnames]]</kbd> 會回傳在使用的頁面屬性名稱)。在檢查是否有頁面使用到某一頁面屬性時很有用。",
	"apihelp-query+pageprops-example-simple": "取得用於頁面<kbd>Main Page</kbd>和<kbd>{{MediaWiki:Mainpage}}</kbd>的屬性。",
	"apihelp-query+pageswithprop-summary": "列出使用到指定頁面屬性的所有頁面。",
	"apihelp-query+pageswithprop-param-propname": "用於列舉頁面的頁面屬性(<kbd>[[Special:ApiHelp/query+pagepropnames|action=query&list=pagepropnames]]</kbd> 會回傳在使用的頁面屬性名稱)。",
	"apihelp-query+pageswithprop-param-prop": "要包含到的資訊部份:",
	"apihelp-query+pageswithprop-paramvalue-prop-ids": "添加頁面 ID。",
	"apihelp-query+pageswithprop-paramvalue-prop-title": "添加標題與頁面的命名空間 ID。",
	"apihelp-query+pageswithprop-paramvalue-prop-value": "添加頁面屬性的值。",
	"apihelp-query+pageswithprop-param-limit": "回傳的頁面數量上限。",
	"apihelp-query+pageswithprop-param-dir": "排序的方向。",
	"apihelp-query+pageswithprop-example-simple": "列出前 10 個使用 <code>&#123;&#123;DISPLAYTITLE:&#125;&#125;</code> 的頁面。",
	"apihelp-query+pageswithprop-example-generator": "取得前 10 個使用到 <code>_&#95;NOTOC_&#95;</code> 頁面的額外資訊。",
	"apihelp-query+prefixsearch-summary": "執行頁面標題的前綴搜尋。",
	"apihelp-query+prefixsearch-extended-description": "儘管名稱上相似,此模組不代表相同於 [[Special:PrefixIndex]]。對於此請以 <kbd>apprefix</kbd> 參數來查看 <kbd>[[Special:ApiHelp/query+allpages|action=query&list=allpages]]</kbd>。此模組的目的相似於 <kbd>[[Special:ApiHelp/opensearch|action=opensearch]]</kbd>:獲取使用者的輸入內容,並提供最相符的標題。依搜尋引擎後端的情況,可能會有包含錯別字修正、避免重新導向、或是其它探索的行為。",
	"apihelp-query+prefixsearch-param-search": "搜尋字串。",
	"apihelp-query+prefixsearch-param-namespace": "搜尋的命名空間。若 <var>$1search</var> 以有效的命名空間前綴為開頭則會被忽略。",
	"apihelp-query+prefixsearch-param-limit": "回傳的結果數量上限。",
	"apihelp-query+prefixsearch-param-offset": "要略過的結果數量。",
	"apihelp-query+prefixsearch-example-simple": "搜尋開頭為 <kbd>meaning</kbd> 的頁面標題。",
	"apihelp-query+prefixsearch-param-profile": "搜尋要使用的配置。",
	"apihelp-query+protectedtitles-summary": "列出所有被創建保護的標題。",
	"apihelp-query+protectedtitles-param-namespace": "僅列出這些命名空間的標題。",
	"apihelp-query+protectedtitles-param-level": "僅列出具有這些保護層級的標題。",
	"apihelp-query+protectedtitles-param-limit": "要回傳的頁面總數。",
	"apihelp-query+protectedtitles-param-start": "在此保護時間戳記開始列出。",
	"apihelp-query+protectedtitles-param-end": "在此保護時間戳記停止列出。",
	"apihelp-query+protectedtitles-param-prop": "要取得的屬性。",
	"apihelp-query+protectedtitles-paramvalue-prop-timestamp": "添加當保護被添加時的時間戳記。",
	"apihelp-query+protectedtitles-paramvalue-prop-user": "添加做出添加保護操作的使用者。",
	"apihelp-query+protectedtitles-paramvalue-prop-userid": "添加做出添加保護操作的使用者 ID。",
	"apihelp-query+protectedtitles-paramvalue-prop-comment": "添加保護的註釋。",
	"apihelp-query+protectedtitles-paramvalue-prop-parsedcomment": "添加保護的解析註釋。",
	"apihelp-query+protectedtitles-paramvalue-prop-expiry": "添加當保護被提升時的時間戳記。",
	"apihelp-query+protectedtitles-paramvalue-prop-level": "添加保護層級。",
	"apihelp-query+protectedtitles-example-simple": "列出已保護的標題。",
	"apihelp-query+protectedtitles-example-generator": "找出在主命名空間裡連至已保護標題的連結。",
	"apihelp-query+querypage-summary": "取得透過特殊頁面 QueryPage-based 所提供的清單。",
	"apihelp-query+querypage-param-page": "特殊頁面的名稱。註:區分大小寫。",
	"apihelp-query+querypage-param-limit": "回傳的結果數量。",
	"apihelp-query+querypage-example-ancientpages": "回傳來自 [[Special:Ancientpages]] 的結果。",
	"apihelp-query+random-summary": "取得隨機頁面集合",
	"apihelp-query+random-extended-description": "列出在固定序列的頁面,僅起始點為隨機。這代表如果像 <samp>Main Page</samp> 是清單的首個隨機頁面,<samp>List of fictional monkeys</samp> 會<em>永遠</em>是第二個,<samp>List of people on stamps of Vanuatu</samp> 是第三個等等。",
	"apihelp-query+random-param-namespace": "僅回傳在這些命名空間的頁面。",
	"apihelp-query+random-param-limit": "限制所回傳的隨機頁面數量。",
	"apihelp-query+random-param-redirect": "請改用 <kbd>$1filterredir=redirects</kbd>。",
	"apihelp-query+random-param-filterredir": "如何過濾重新導向。",
	"apihelp-query+random-example-simple": "從主命名空間回傳兩個隨機頁面。",
	"apihelp-query+random-example-generator": "從主命名空間回傳兩個隨機頁面的相關頁面資訊。",
	"apihelp-query+recentchanges-summary": "列舉出近期變更。",
	"apihelp-query+recentchanges-param-start": "起始列舉的時間戳記。",
	"apihelp-query+recentchanges-param-end": "結束列舉的時間戳記。",
	"apihelp-query+recentchanges-param-namespace": "篩選僅為這些命名空間的更改。",
	"apihelp-query+recentchanges-param-user": "只列出該用者的修改。",
	"apihelp-query+recentchanges-param-excludeuser": "不要列出該用者的更改。",
	"apihelp-query+recentchanges-param-tag": "僅列出以此標籤所標記的更改。",
	"apihelp-query+recentchanges-param-slot": "僅列出涉及命名字段的更改。",
	"apihelp-query+recentchanges-param-prop": "包含的額外資訊部份:",
	"apihelp-query+recentchanges-paramvalue-prop-user": "添加承擔編輯的使用者,並標記出是否為 IP 使用者。若是已刪除修訂的使用者,會回傳 <samp>userhidden</samp> 屬性。",
	"apihelp-query+recentchanges-paramvalue-prop-userid": "添加承擔該編輯的使用者 ID。若是已刪除修訂的使用者,會回傳 <samp>userhidden</samp> 屬性。",
	"apihelp-query+recentchanges-paramvalue-prop-comment": "添加編輯的註釋。若是已刪除修訂的註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+recentchanges-paramvalue-prop-parsedcomment": "添加編輯的解析註釋。若是已刪除修訂的註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+recentchanges-paramvalue-prop-flags": "添加編輯的標籤。",
	"apihelp-query+recentchanges-paramvalue-prop-timestamp": "添加編輯的時間戳記。",
	"apihelp-query+recentchanges-paramvalue-prop-title": "添加編輯的頁面標題。",
	"apihelp-query+recentchanges-paramvalue-prop-ids": "添加頁面 ID、近期變更 ID 以及新舊修訂 ID。",
	"apihelp-query+recentchanges-paramvalue-prop-sizes": "添加新舊頁面長度(位元組)。",
	"apihelp-query+recentchanges-paramvalue-prop-redirect": "若頁面為重新導向則標記編輯。",
	"apihelp-query+recentchanges-paramvalue-prop-patrolled": "標記可巡查編輯為已巡查或未巡查。",
	"apihelp-query+recentchanges-paramvalue-prop-autopatrolled": "標記可巡查編輯為自動巡查或否。",
	"apihelp-query+recentchanges-paramvalue-prop-loginfo": "添加日誌資訊(日誌 ID、日誌類型、其它)至日誌項目。",
	"apihelp-query+recentchanges-paramvalue-prop-tags": "列出項目的標籤。",
	"apihelp-query+recentchanges-paramvalue-prop-sha1": "替與修訂關聯的項目添加內容核對和。若是已刪除修訂的內容,會回傳 <samp>sha1hidden</samp> 屬性。",
	"apihelp-query+recentchanges-param-show": "僅顯示符合這些標準的項目。例如,僅查看由登入使用者做出的小編輯,請設定 $1show=minor|!anon。",
	"apihelp-query+recentchanges-param-limit": "要回傳變更總數。",
	"apihelp-query+recentchanges-param-type": "要顯示的更改類型。",
	"apihelp-query+recentchanges-param-toponly": "僅列出最新修訂的更改。",
	"apihelp-query+recentchanges-param-title": "篩選與這些頁面關聯的項目。",
	"apihelp-query+recentchanges-param-generaterevisions": "當作為產生器時使用,產生修訂 ID 而非標題。不帶關聯修訂 ID 的近期變更項目(例如多數日誌項目)不會產生任何內容。",
	"apihelp-query+recentchanges-example-simple": "近期變更清單",
	"apihelp-query+recentchanges-example-generator": "取得有關近期尚未巡查更改的頁面資訊。",
	"apihelp-query+redirects-summary": "回傳連結至指定頁面的所有重新導向。",
	"apihelp-query+redirects-param-prop": "要取得的屬性。",
	"apihelp-query+redirects-paramvalue-prop-pageid": "各重新導向的頁面 ID。",
	"apihelp-query+redirects-paramvalue-prop-title": "各重新導向的標題。",
	"apihelp-query+redirects-paramvalue-prop-fragment": "各重新導向的片段,若有的話。",
	"apihelp-query+redirects-param-namespace": "僅包含這些命名空間的頁面。",
	"apihelp-query+redirects-param-limit": "要回傳的重新導向數量。",
	"apihelp-query+redirects-param-show": "只顯示符合這些標準的項:",
	"apihelp-query+redirects-paramvalue-show-fragment": "只顯示帶碎片的重新導向。",
	"apihelp-query+redirects-paramvalue-show-!fragment": "只顯示不帶碎片的重新導向。",
	"apihelp-query+redirects-example-simple": "取得至[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的重新導向列表。",
	"apihelp-query+redirects-example-generator": "取得所有重新導向至[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的資訊。",
	"apihelp-query+revisions-summary": "取得修訂的資訊。",
	"apihelp-query+revisions-extended-description": "能以多種方式使用:\n# 透過設定標題或頁面 ID 來取得有關頁面集(最新修訂)的資料。\n# 透過使用標題或是帶有起始、結束、限制的頁面 ID 來取得指定頁面的修訂。\n# 透過以 revid 設定 ID 來取得有關修訂集的資料。",
	"apihelp-query+revisions-paraminfo-singlepageonly": "僅能在單一頁面使用(模式 #2)。",
	"apihelp-query+revisions-param-startid": "從這個修訂時間戳記開始列舉。修訂必須要存在,但不需屬於此頁面。",
	"apihelp-query+revisions-param-endid": "在這個修訂時間戳記停止列舉。修訂必須要存在,但不需屬於此頁面。",
	"apihelp-query+revisions-param-start": "從哪個修訂時間戳記來開始列舉。",
	"apihelp-query+revisions-param-end": "列舉至此的時間戳記。",
	"apihelp-query+revisions-param-user": "僅包含由使用者做出的修訂。",
	"apihelp-query+revisions-param-excludeuser": "不包含由使用者做出的修訂。",
	"apihelp-query+revisions-param-tag": "僅列出以此標籤所標記的修訂。",
	"apihelp-query+revisions-example-content": "取得帶內容的資料,用於標題<kbd>API</kbd>和[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的最近修訂。",
	"apihelp-query+revisions-example-last5": "取得[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的最近5次修訂。",
	"apihelp-query+revisions-example-first5": "取得[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的最早5次修訂。",
	"apihelp-query+revisions-example-first5-after": "取得[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]於2006年5月1日之後做出的前5次修訂版本。",
	"apihelp-query+revisions-example-first5-not-localhost": "取得[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的前5次不是由匿名使用者<kbd>127.0.0.1</kbd>做出的修訂。",
	"apihelp-query+revisions-example-first5-user": "取得[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的前5次由使用者<kbd>MediaWiki default</kbd>做出的修訂。",
	"apihelp-query+revisions+base-param-prop": "各修訂所要取得的屬性:",
	"apihelp-query+revisions+base-paramvalue-prop-ids": "修訂 ID。",
	"apihelp-query+revisions+base-paramvalue-prop-flags": "修訂標籤(小修改)。",
	"apihelp-query+revisions+base-paramvalue-prop-timestamp": "修訂的時間戳記。",
	"apihelp-query+revisions+base-paramvalue-prop-user": "做出修訂的使用者。若是已刪除修訂的使用者,會回傳 <samp>userhidden</samp> 屬性。",
	"apihelp-query+revisions+base-paramvalue-prop-userid": "修訂創建者的使用者 ID。若是已刪除修訂的使用者,會回傳 <samp>userhidden</samp> 屬性。",
	"apihelp-query+revisions+base-paramvalue-prop-size": "修訂的長度(位元組)。",
	"apihelp-query+revisions+base-paramvalue-prop-slotsize": "各修訂間隔的長度(位元組)。",
	"apihelp-query+revisions+base-paramvalue-prop-sha1": "修訂的 SHA-1(base 16)。若是已刪除修訂的內容,會回傳 <samp>sha1hidden</samp> 屬性。",
	"apihelp-query+revisions+base-paramvalue-prop-slotsha1": "各修訂間隔的 SHA-1(base 16)。若是已刪除修訂的內容,會回傳 <samp>sha1hidden</samp> 屬性。",
	"apihelp-query+revisions+base-paramvalue-prop-contentmodel": "各修訂間隔的內容模組 ID。",
	"apihelp-query+revisions+base-paramvalue-prop-comment": "由使用者對於修訂所做出的註釋。若是已刪除修訂的註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+revisions+base-paramvalue-prop-parsedcomment": "由使用者對於修訂所解析的註釋。若是已刪除修訂的註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+revisions+base-paramvalue-prop-content": "每次修訂間隔的內容。如果內容已被版本刪除,將返回 <samp>texthidden</samp> 屬性。若有使用此選項,出自於效能因素會將 <var>$2limit</var> 強制設成 $1。",
	"apihelp-query+revisions+base-paramvalue-prop-tags": "修訂標籤。",
	"apihelp-query+revisions+base-paramvalue-prop-roles": "列出存在於修訂的內容間隔作用。",
	"apihelp-query+revisions+base-paramvalue-prop-parsetree": "請改用 <kbd>[[Special:ApiHelp/expandtemplates|action=expandtemplates]]</kbd> 或 <kbd>[[Special:ApiHelp/parse|action=parse]]</kbd>。修訂內容的 XML 解析樹(需要內容模型 <code>$1</code>)。若有使用此選項,出自於效能因素會將 <var>$3limit</var> 強制設成 $2。",
	"apihelp-query+revisions+base-param-slots": "當槽位相關屬性包含在 <var>$1props</var> 時,要回傳資料的修訂槽位。若忽略的話,來自 <kbd>main</kbd> 槽位的資料會以向下兼容格式回傳。",
	"apihelp-query+revisions+base-param-contentformat-slot": "用於輸出內容的內容序列化格式。",
	"apihelp-query+revisions+base-param-limit": "限制回傳的修訂數量。若有使用 <var>$3prop=content</var>、<var>$3prop=parsetree</var>、<var>$3diffto</var> 或 <var>$3difftotext</var>,限制為 $1。若有使用 <var>$3parse</var>,則限制為 $2。",
	"apihelp-query+revisions+base-param-expandtemplates": "請改用 <kbd>[[Special:ApiHelp/expandtemplates|action=expandtemplates]]</kbd>。在修訂內容裡展開模板(需要 $1prop=content)。",
	"apihelp-query+revisions+base-param-generatexml": "請改用 <kbd>[[Special:ApiHelp/expandtemplates|action=expandtemplates]]</kbd> 或 <kbd>[[Special:ApiHelp/parse|action=parse]]</kbd>。產生用於修訂內容的 XML 解析樹狀(需要 $1prop=content)。",
	"apihelp-query+revisions+base-param-parse": "請改用 <kbd>[[Special:ApiHelp/parse|action=parse]]</kbd>。解析修訂內容(需要 <var>$2prop=content</var>)。若有使用此選項,出自於效能因素會將 <var>$2limit</var> 強制設成 $1。",
	"apihelp-query+revisions+base-param-section": "僅檢索帶有此識別碼的段落之內容。",
	"apihelp-query+revisions+base-param-diffto": "請改用 <kbd>[[Special:ApiHelp/compare|action=compare]]</kbd>。要比較修訂差異的修訂ID,使用 <kbd>prev</kbd>、<kbd>next</kbd> 和 <kbd>cur</kbd> 分別用於上個、下個和目前修訂。若有使用此選項,出自於效能因素會將 <var>$2limit</var> 強制設成 $1。",
	"apihelp-query+revisions+base-param-difftotext": "請改用 <kbd>[[Special:ApiHelp/compare|action=compare]]</kbd>。要比較修訂差異的文字。只比較有限數量的修訂。覆蓋 <var>$2diffto</var>。若有設定 <var>$2section</var>,僅有該段落會與此文字比較差異。若有使用此選項,出自於效能因素會將 <var>$2limit</var> 強制設成 $1。",
	"apihelp-query+revisions+base-param-difftotextpst": "請改用 <kbd>[[Special:ApiHelp/compare|action=compare]]</kbd>。在區別前,執行在文字上的預先儲存轉換。僅與 <var>$1difftotext</var> 使用有效。",
	"apihelp-query+revisions+base-param-contentformat": "使用於 <var>$1difftotext</var> 的序列化格式並預期用於內容輸出。",
	"apihelp-query+search-summary": "執行全文搜尋。",
	"apihelp-query+search-param-search": "搜尋相符此值的頁面標題或內容。依據 wiki 所含有的搜尋後端工具,您可以使用搜尋字串來調用特殊搜尋功能。",
	"apihelp-query+search-param-namespace": "僅以這些命名空間搜尋。",
	"apihelp-query+search-param-what": "要執行的搜尋類型。",
	"apihelp-query+search-param-info": "要回傳的詮釋資料。",
	"apihelp-query+search-param-prop": "要回傳的屬性:",
	"apihelp-query+search-param-qiprofile": "要使用的查詢獨立配置(會影響排序演算法)。",
	"apihelp-query+search-paramvalue-prop-size": "添加以位元組為單位的頁面大小。",
	"apihelp-query+search-paramvalue-prop-wordcount": "添加頁面的字數。",
	"apihelp-query+search-paramvalue-prop-timestamp": "添加頁面自上一次編輯的時間戳記。",
	"apihelp-query+search-paramvalue-prop-snippet": "添加頁面片段,並突出標記查詢詞。",
	"apihelp-query+search-paramvalue-prop-titlesnippet": "添加頁面標題,並突出標記查詢詞。",
	"apihelp-query+search-paramvalue-prop-redirectsnippet": "添加匹配的重新導向標題,並突出標記查詢詞。",
	"apihelp-query+search-paramvalue-prop-redirecttitle": "添加符合重新導向的標題。",
	"apihelp-query+search-paramvalue-prop-sectionsnippet": "添加匹配的章節標題,並突出標記查詢詞。",
	"apihelp-query+search-paramvalue-prop-sectiontitle": "添加符合段落的標題。",
	"apihelp-query+search-paramvalue-prop-categorysnippet": "添加匹配的分類名稱,並突出標記查詢詞。",
	"apihelp-query+search-paramvalue-prop-isfilematch": "添加表明搜尋是否符合檔案內容的布林值。",
	"apihelp-query+search-paramvalue-prop-extensiondata": "添加由擴充所產生的額外資料。",
	"apihelp-query+search-paramvalue-prop-score": "已忽略",
	"apihelp-query+search-paramvalue-prop-hasrelated": "已忽略",
	"apihelp-query+search-param-limit": "要回傳的頁面總數。",
	"apihelp-query+search-param-interwiki": "若可用的話,在搜尋裡包含跨 wiki 結果。",
	"apihelp-query+search-param-backend": "是否搜尋使用的後端,若否則為預設。",
	"apihelp-query+search-param-enablerewrites": "啟用內部查詢重新寫入。一些搜尋後端可重新寫入查詢成其它被認為能提供更好的結果,比如糾正拼寫錯誤。",
	"apihelp-query+search-param-sort": "設定回傳結果的排序。",
	"apihelp-query+search-example-simple": "搜尋 <kbd>meaning</kbd>。",
	"apihelp-query+search-example-text": "搜尋 <kbd>meaning</kbd> 的文字。",
	"apihelp-query+search-example-generator": "取得有關回傳搜尋 <kbd>meaning</kbd> 相關內容頁面的頁面資訊。",
	"apihelp-query+siteinfo-summary": "回傳有關站台的一般資訊。",
	"apihelp-query+siteinfo-param-prop": "要取得的資訊:",
	"apihelp-query+siteinfo-paramvalue-prop-general": "全面系統資訊。",
	"apihelp-query+siteinfo-paramvalue-prop-namespaces": "已註冊命名空間與其規範名稱的清單。",
	"apihelp-query+siteinfo-paramvalue-prop-namespacealiases": "已註冊命名空間別名清單。",
	"apihelp-query+siteinfo-paramvalue-prop-specialpagealiases": "特殊頁面別名清單。",
	"apihelp-query+siteinfo-paramvalue-prop-magicwords": "魔術字及其別名清單。",
	"apihelp-query+siteinfo-paramvalue-prop-statistics": "回傳網站統計。",
	"apihelp-query+siteinfo-paramvalue-prop-interwikimap": "回傳內部 wiki 對應(篩選可選用,也可透過 <var>$1inlanguagecode</var> 來選用本地化)。",
	"apihelp-query+siteinfo-paramvalue-prop-dbrepllag": "回傳有最高複製延遲的資料庫伺服器。",
	"apihelp-query+siteinfo-paramvalue-prop-usergroups": "回傳使用者群組以及所分配權限。",
	"apihelp-query+siteinfo-paramvalue-prop-autocreatetempuser": "返回自動建立臨時使用者帳號(即IP隱藏)的組態。",
	"apihelp-query+siteinfo-paramvalue-prop-clientlibraries": "回傳安裝在 wiki 上的客戶端函式庫",
	"apihelp-query+siteinfo-paramvalue-prop-libraries": "回傳安裝在 wiki 上的函式庫。",
	"apihelp-query+siteinfo-paramvalue-prop-extensions": "回傳安裝在 wiki 上的擴充功能。",
	"apihelp-query+siteinfo-paramvalue-prop-fileextensions": "回傳允許上傳的副檔名(檔案類型)清單。",
	"apihelp-query+siteinfo-paramvalue-prop-rightsinfo": "若可用時,回傳 wiki 版權(授權條款)資訊。",
	"apihelp-query+siteinfo-paramvalue-prop-restrictions": "回傳在可用限制(保護)類型的資訊。",
	"apihelp-query+siteinfo-paramvalue-prop-languages": "回傳 MediaWiki 支援的語言清單(可透過 <var>$1inlanguagecode</var> 來選用本地化)。",
	"apihelp-query+siteinfo-paramvalue-prop-languagevariants": "在啟用了 [[mw:Special:MyLanguage/LanguageConverter|LanguageConverter]] 且支援各語言變化時,回傳語言代碼清單。",
	"apihelp-query+siteinfo-paramvalue-prop-skins": "回傳所有已啟用的外觀清單(可透過 <var>$1inlanguagecode</var> 來選用本地化,不然會是內容語言)。",
	"apihelp-query+siteinfo-paramvalue-prop-extensiontags": "回傳解析擴充標籤清單。",
	"apihelp-query+siteinfo-paramvalue-prop-functionhooks": "回傳解析器函數鉤清單。",
	"apihelp-query+siteinfo-paramvalue-prop-showhooks": "回傳所有訂閱掛勾清單(<var>[[mw:Special:MyLanguage/Manual:$wgHooks|$wgHooks]]</var> 的內容)。",
	"apihelp-query+siteinfo-paramvalue-prop-variables": "回傳變數 ID 清單。",
	"apihelp-query+siteinfo-paramvalue-prop-protocols": "回傳在外部連結裡所允許的協議清單。",
	"apihelp-query+siteinfo-paramvalue-prop-defaultoptions": "回傳用於使用者偏好設定的預設值。",
	"apihelp-query+siteinfo-paramvalue-prop-uploaddialog": "回傳上傳對話框的設置。",
	"apihelp-query+siteinfo-paramvalue-prop-autopromote": "回傳自動升級組態。",
	"apihelp-query+siteinfo-paramvalue-prop-autopromoteonce": "回傳僅執行一次的自動升級組態。",
	"apihelp-query+siteinfo-param-filteriw": "僅回傳跨 wiki 地圖的本地端或非本地端項目。",
	"apihelp-query+siteinfo-param-showalldb": "列出所有資料庫伺服器,不是只有最延遲的那台。",
	"apihelp-query+siteinfo-param-numberingroup": "列出在使用者群組裡的使用者數目。",
	"apihelp-query+siteinfo-param-inlanguagecode": "用於本地化語言的語言代碼(盡可能)與外觀名稱。",
	"apihelp-query+siteinfo-example-simple": "索取站台資訊。",
	"apihelp-query+siteinfo-example-interwiki": "索取本地端跨 wiki 前綴的清單。",
	"apihelp-query+siteinfo-example-replag": "檢查目前的響應延遲。",
	"apihelp-query+stashimageinfo-summary": "回傳多筆儲藏檔案的檔案資訊。",
	"apihelp-query+stashimageinfo-param-filekey": "識別前一個為臨時儲藏上傳的鍵。",
	"apihelp-query+stashimageinfo-param-sessionkey": "$1filekey的別名,用於向下相容性。",
	"apihelp-query+stashimageinfo-example-simple": "回傳儲藏檔案的檔案資訊。",
	"apihelp-query+stashimageinfo-example-params": "回傳縮圖或兩個已儲藏檔案。",
	"apihelp-query+tags-summary": "列出變更標記。",
	"apihelp-query+tags-param-limit": "能列出標籤的最大數量。",
	"apihelp-query+tags-param-prop": "要取得的屬性。",
	"apihelp-query+tags-paramvalue-prop-name": "添加標籤名稱。",
	"apihelp-query+tags-paramvalue-prop-displayname": "添加標籤的系統訊息。",
	"apihelp-query+tags-paramvalue-prop-description": "添加標籤的描述。",
	"apihelp-query+tags-paramvalue-prop-hitcount": "添加含有此標籤之修訂與日誌項目的數量。",
	"apihelp-query+tags-paramvalue-prop-defined": "指示標籤是否已定義。",
	"apihelp-query+tags-paramvalue-prop-source": "取得標籤來源,可能有包含用於擴充定義標籤的 <samp>extension</samp> 以及用於透過使用者手動套用標籤的 <samp>manual</samp>。",
	"apihelp-query+tags-paramvalue-prop-active": "標籤是否仍被套用。",
	"apihelp-query+tags-example-simple": "列出可用標籤。",
	"apihelp-query+templates-summary": "回傳指定頁面中所有引用的頁面。",
	"apihelp-query+templates-param-namespace": "僅顯示在這些命名空間的模板。",
	"apihelp-query+templates-param-limit": "要回傳的模板數量。",
	"apihelp-query+templates-param-templates": "僅列出這些模板。在檢查某一頁面是否擁有某一模板時很有用。",
	"apihelp-query+templates-param-dir": "列出時所採用的方向。",
	"apihelp-query+templates-example-simple": "取得在頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]使用的模板。",
	"apihelp-query+templates-example-generator": "取得有關[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]中使用的模板頁面的資訊。",
	"apihelp-query+templates-example-namespaces": "取得在{{ns:user}}和{{ns:template}}命名空間中,嵌入在頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]中的頁面。",
	"apihelp-query+tokens-summary": "取得資料修改操作的權杖。",
	"apihelp-query+tokens-param-type": "要求的權杖類型。",
	"apihelp-query+tokens-example-simple": "接收 csrf 權杖(預設)。",
	"apihelp-query+tokens-example-types": "接收監視權杖以及巡邏權杖。",
	"apihelp-query+transcludedin-summary": "找出嵌入至指定頁面的所有頁面。",
	"apihelp-query+transcludedin-param-prop": "要取得的屬性。",
	"apihelp-query+transcludedin-paramvalue-prop-pageid": "各頁面的頁面 ID。",
	"apihelp-query+transcludedin-paramvalue-prop-title": "各頁面的標題。",
	"apihelp-query+transcludedin-paramvalue-prop-redirect": "若頁面為重新導向,則做出標記。",
	"apihelp-query+transcludedin-param-namespace": "僅包含這些命名空間的頁面。",
	"apihelp-query+transcludedin-param-limit": "回傳的數量。",
	"apihelp-query+transcludedin-param-show": "僅顯示符合這些條件的項目:",
	"apihelp-query+transcludedin-paramvalue-show-redirect": "僅顯示重新導向。",
	"apihelp-query+transcludedin-paramvalue-show-!redirect": "只顯示非重新導向。",
	"apihelp-query+transcludedin-example-simple": "取得嵌入[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的頁面列表。",
	"apihelp-query+transcludedin-example-generator": "取得有關嵌入[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的頁面的資訊。",
	"apihelp-query+usercontribs-summary": "按使用者來取得所有編輯。",
	"apihelp-query+usercontribs-param-limit": "回傳的貢獻數量上限。",
	"apihelp-query+usercontribs-param-start": "回傳的起始時間戳記。即為此時間戳記之前的修訂。",
	"apihelp-query+usercontribs-param-end": "回傳的終止時間戳記。即為此時間戳記之後的修訂。",
	"apihelp-query+usercontribs-param-user": "要檢索貢獻的使用者。不能與 <var>$1userids</var>、<var>$1userprefix</var>、或 <var>$1iprange</var> 一起使用。",
	"apihelp-query+usercontribs-param-userprefix": "取得所有使用者名稱以這個值開頭的使用者的貢獻。不能與<var>$1user</var>、<var>$1userids</var>或<var>$1iprange</var>一起使用。",
	"apihelp-query+usercontribs-param-userids": "要檢索貢獻的使用者ID。不能與<var>$1user</var>、<var>$1userprefix</var>或<var>$1iprange</var>一起使用。",
	"apihelp-query+usercontribs-param-iprange": "要檢索貢獻的CIDR範圍。不能與<var>$1user</var>、<var>$1userprefix</var>或<var>$1userids</var>一起使用。",
	"apihelp-query+usercontribs-param-namespace": "僅列出這些命名空間的貢獻。",
	"apihelp-query+usercontribs-param-prop": "包含的額外資訊部份:",
	"apihelp-query+usercontribs-paramvalue-prop-ids": "添加頁面 ID 與修訂 ID。",
	"apihelp-query+usercontribs-paramvalue-prop-title": "添加標題與頁面的命名空間 ID。",
	"apihelp-query+usercontribs-paramvalue-prop-timestamp": "添加編輯的時間戳記。",
	"apihelp-query+usercontribs-paramvalue-prop-comment": "添加編輯的註釋。若是已刪除修訂的註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+usercontribs-paramvalue-prop-parsedcomment": "添加編輯的解析註釋。若是已刪除修訂的註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+usercontribs-paramvalue-prop-size": "添加編輯的新大小。",
	"apihelp-query+usercontribs-paramvalue-prop-sizediff": "添加對於其父級編輯的編輯大小增量。",
	"apihelp-query+usercontribs-paramvalue-prop-flags": "添加編輯的標籤。",
	"apihelp-query+usercontribs-paramvalue-prop-patrolled": "標記已巡查編輯。",
	"apihelp-query+usercontribs-paramvalue-prop-autopatrolled": "標記自動巡查編輯。",
	"apihelp-query+usercontribs-paramvalue-prop-tags": "列出編輯的標籤。",
	"apihelp-query+usercontribs-param-show": "僅顯示符合這些標準的項目,例如僅顯示非小編輯內容為:<kbd>$2show=!minor</kbd>。\n\n若有設定 <kbd>$2show=patrolled</kbd> 或 <kbd>$2show=!patrolled</kbd>,早於 <var>[[mw:Special:MyLanguage/Manual:$wgRCMaxAge|$wgRCMaxAge]]</var>($1 {{PLURAL:$1|秒|秒}})的修訂不會顯示出。",
	"apihelp-query+usercontribs-param-tag": "僅列出以此標籤所標記的修訂。",
	"apihelp-query+usercontribs-param-toponly": "僅列出最新修訂的更改。",
	"apihelp-query+usercontribs-example-user": "顯示使用者 <kbd>Example</kbd> 的貢獻。",
	"apihelp-query+usercontribs-example-ipprefix": "顯示所有來自於前綴為 <kbd>192.0.2.</kbd> 的 IP 地址貢獻。",
	"apihelp-query+userinfo-summary": "取得目前使用者的資訊。",
	"apihelp-query+userinfo-param-prop": "要包含的資訊部份:",
	"apihelp-query+userinfo-paramvalue-prop-blockinfo": "若目前使用者被封鎖則標記出由誰做出,以及出於何種原因。",
	"apihelp-query+userinfo-paramvalue-prop-hasmsg": "若目前使用者有等待訊息,添加 <samp>messages</samp> 標籤。",
	"apihelp-query+userinfo-paramvalue-prop-groups": "列出目前使用者所隸屬的所有群組。",
	"apihelp-query+userinfo-paramvalue-prop-groupmemberships": "列出明確分配目前使用者的群組,包含各群組成員的逾期日期。",
	"apihelp-query+userinfo-paramvalue-prop-implicitgroups": "列出目前使用者自動列入為成員的所有群組。",
	"apihelp-query+userinfo-paramvalue-prop-rights": "列出目前使用者所擁有的權限。",
	"apihelp-query+userinfo-paramvalue-prop-changeablegroups": "列出目前使用者可以做出添加以及移除的群組。",
	"apihelp-query+userinfo-paramvalue-prop-options": "列出目前使用者已設定過的所有偏好設定。",
	"apihelp-query+userinfo-paramvalue-prop-editcount": "添加目前使用者的編輯數。",
	"apihelp-query+userinfo-paramvalue-prop-ratelimits": "列出所有套用到目前使用者的速率限制。",
	"apihelp-query+userinfo-paramvalue-prop-theoreticalratelimits": "若根據使用者權限或 IP,他們並非不受所有速率限制的約束,列出所有套用在目前使用者的速率限制",
	"apihelp-query+userinfo-paramvalue-prop-realname": "添加使用者的真實姓名。",
	"apihelp-query+userinfo-paramvalue-prop-email": "添加使用者的電子郵件地址與電子郵件驗證日期。",
	"apihelp-query+userinfo-paramvalue-prop-acceptlang": "回響由在架構化格式客戶端所發送的 <code>Accept-Language</code> 標頭。",
	"apihelp-query+userinfo-paramvalue-prop-registrationdate": "添加使用者的註冊日期。",
	"apihelp-query+userinfo-paramvalue-prop-unreadcount": "添加使用者監視清單上的未讀頁面數量(最多$1;如有更多則回傳<samp>$2</samp>)。",
	"apihelp-query+userinfo-paramvalue-prop-centralids": "替使用者添加中心 ID 與附加狀態。",
	"apihelp-query+userinfo-paramvalue-prop-latestcontrib": "添加使用者最新貢獻的日期。",
	"apihelp-query+userinfo-paramvalue-prop-cancreateaccount": "返回是否允許使用者建立帳號。要檢查是否可以建立某個特定的帳號,請使用 [[Special:ApiHelp/query+users|<kbd>action=query&list=users&usprop=cancreate</kbd>]]。",
	"apihelp-query+userinfo-param-attachedwiki": "以 <kbd>$1prop=centralids</kbd> 來表明使用者是否附加於由此 ID 所識別出的 wiki。",
	"apihelp-query+userinfo-example-simple": "取得目前使用者的資訊。",
	"apihelp-query+userinfo-example-data": "取得目前使用者的額外資訊。",
	"apihelp-query+users-summary": "取得有關使用者清單的資訊。",
	"apihelp-query+users-param-prop": "要包含的資訊部份:",
	"apihelp-query+users-paramvalue-prop-blockinfo": "若使用者被封鎖則標記出由誰做出,以及出於何種原因。",
	"apihelp-query+users-paramvalue-prop-groups": "列出各使用者所隸屬的所有群組。",
	"apihelp-query+users-paramvalue-prop-groupmemberships": "列出明確分配各使用者的群組,包含各群組成員的逾期日期。",
	"apihelp-query+users-paramvalue-prop-implicitgroups": "列出使用者自動列入為成員的所有群組。",
	"apihelp-query+users-paramvalue-prop-rights": "列出各使用者所擁有的權限。",
	"apihelp-query+users-paramvalue-prop-editcount": "添加使用者的編輯數。",
	"apihelp-query+users-paramvalue-prop-registration": "添加使用者的註冊時間戳記。",
	"apihelp-query+users-paramvalue-prop-emailable": "若使用者符合條件並想要透過 [[Special:Emailuser]] 來接收電子郵件時標記。",
	"apihelp-query+users-paramvalue-prop-gender": "標記使用者性別。回傳「male」、「female」、或「unknown」。",
	"apihelp-query+users-paramvalue-prop-centralids": "替使用者添加中心 ID 與附加狀態。",
	"apihelp-query+users-paramvalue-prop-cancreate": "表明是否可以為有效但未註冊的使用者名稱建立帳號。要檢查當前帳號名稱是否可以建立,請使用 [[Special:ApiHelp/query+userinfo| <kbd>action=query&meta=userinfo&uiprop=cancreateaccount</kbd> ]]。",
	"apihelp-query+users-param-attachedwiki": "以 <kbd>$1prop=centralids</kbd> 來表明使用者是否附加於由此 ID 所識別出的 wiki。",
	"apihelp-query+users-param-users": "要取得資訊的使用者清單。",
	"apihelp-query+users-param-userids": "要取得資訊的使用者 ID 清單。",
	"apihelp-query+users-example-simple": "返回使用者 <kbd>Example</kbd> 的資訊。",
	"apihelp-query+watchlist-summary": "取得在目前使用者的監視清單裡,頁面的近期變更。",
	"apihelp-query+watchlist-param-allrev": "以指定時間範圍來包含同一頁面的多個修訂。",
	"apihelp-query+watchlist-param-start": "起始列舉的時間戳記。",
	"apihelp-query+watchlist-param-end": "結束列舉的時間戳記。",
	"apihelp-query+watchlist-param-namespace": "篩選僅為指定命名空間的更改。",
	"apihelp-query+watchlist-param-user": "只列出該用者的更改。",
	"apihelp-query+watchlist-param-excludeuser": "不要列出該用者的修改。",
	"apihelp-query+watchlist-param-limit": "每個請求要回傳的結果總數。",
	"apihelp-query+watchlist-param-prop": "要取得的額外屬性:",
	"apihelp-query+watchlist-paramvalue-prop-ids": "添加修訂 ID 與頁面 ID。",
	"apihelp-query+watchlist-paramvalue-prop-title": "添加頁面標題。",
	"apihelp-query+watchlist-paramvalue-prop-flags": "添加編輯的標籤。",
	"apihelp-query+watchlist-paramvalue-prop-user": "添加有做出編輯的使用者。若是已刪除修訂的使用者,會回傳 <samp>userhidden</samp> 屬性。",
	"apihelp-query+watchlist-paramvalue-prop-userid": "添加有做出編輯的使用者 ID。若是已刪除修訂的使用者,會回傳 <samp>userhidden</samp> 屬性。",
	"apihelp-query+watchlist-paramvalue-prop-comment": "添加編輯的註釋。若是已刪除修訂的註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+watchlist-paramvalue-prop-parsedcomment": "添加編輯的解析註釋。若是已刪除修訂的註釋,會回傳 <samp>commenthidden</samp> 屬性。",
	"apihelp-query+watchlist-paramvalue-prop-timestamp": "添加編輯的時間戳記。",
	"apihelp-query+watchlist-paramvalue-prop-patrol": "標記編輯為已巡查。",
	"apihelp-query+watchlist-paramvalue-prop-autopatrol": "標記編輯為自動巡查。",
	"apihelp-query+watchlist-paramvalue-prop-sizes": "添加頁面舊有與新的長度。",
	"apihelp-query+watchlist-paramvalue-prop-notificationtimestamp": "添加使用者上一次被通知到有關編輯的時間戳記。",
	"apihelp-query+watchlist-paramvalue-prop-loginfo": "在適當處添加日誌資訊。",
	"apihelp-query+watchlist-paramvalue-prop-tags": "列出項目的標籤。",
	"apihelp-query+watchlist-paramvalue-prop-expiry": "添加到期時間。",
	"apihelp-query+watchlist-param-show": "僅顯示符合這些標準的項目。例如,僅查看由登入使用者做出的小編輯,請設定 $1show=minor|!anon。",
	"apihelp-query+watchlist-param-type": "要顯示的更改類型:",
	"apihelp-query+watchlist-paramvalue-type-edit": "一般頁面編輯。",
	"apihelp-query+watchlist-paramvalue-type-external": "外部更改。",
	"apihelp-query+watchlist-paramvalue-type-new": "頁面建立。",
	"apihelp-query+watchlist-paramvalue-type-log": "日誌項目。",
	"apihelp-query+watchlist-paramvalue-type-categorize": "分類成員更改。",
	"apihelp-query+watchlist-param-owner": "與 $1token 一起使用以存取不同使用者的監視清單。",
	"apihelp-query+watchlist-param-token": "允許存取其他使用者監視清單的安全權杖(可在使用者的[[Special:Preferences#mw-prefsection-watchlist|偏好設定]]找到)。",
	"apihelp-query+watchlist-example-simple": "列出在目前使用者監視清單裡近期變更頁面的最新修訂。",
	"apihelp-query+watchlist-example-props": "索取在目前使用者監視清單裡近期變更頁面的最新修訂額外資訊。",
	"apihelp-query+watchlist-example-expiry": "在目前使用者的監視清單中,取得有關近期變更頁面的最多修訂額外資訊,包括臨時監視的項目何時逾期。",
	"apihelp-query+watchlist-example-allrev": "索取在目前使用者監視清單裡所有近期變更頁面的資訊。",
	"apihelp-query+watchlist-example-generator": "索取在目前使用者監視清單裡近期變更頁面的頁面資訊。",
	"apihelp-query+watchlist-example-generator-rev": "索取在目前使用者監視清單裡近期變更頁面的修訂資訊。",
	"apihelp-query+watchlist-example-wlowner": "列出在使用者 <kbd>Example</kbd> 監視清單裡近期變更頁面的最新修訂。",
	"apihelp-query+watchlistraw-summary": "列出在目前使用者的監視清單裡頭所有頁面。",
	"apihelp-query+watchlistraw-param-namespace": "僅列出在指定命名空間的頁面。",
	"apihelp-query+watchlistraw-param-limit": "每個請求要回傳的結果總數。",
	"apihelp-query+watchlistraw-param-prop": "要取得的額外屬性:",
	"apihelp-query+watchlistraw-paramvalue-prop-changed": "添加使用者上一次被通知到有關編輯的時間戳記。",
	"apihelp-query+watchlistraw-param-show": "僅列出符合這些準則的項目。",
	"apihelp-query+watchlistraw-param-owner": "與 $1token 一起使用以存取不同使用者的監視清單。",
	"apihelp-query+watchlistraw-param-token": "允許存取其他使用者監視清單的安全權杖(可在使用者的[[Special:Preferences#mw-prefsection-watchlist|偏好設定]]找到)。",
	"apihelp-query+watchlistraw-param-dir": "列出時所採用的方向。",
	"apihelp-query+watchlistraw-param-fromtitle": "要開始列舉的標題(帶有命名空間前綴)。",
	"apihelp-query+watchlistraw-param-totitle": "要停止列舉的標題(帶有命名空間前綴)。",
	"apihelp-query+watchlistraw-example-simple": "列出在目前使用者的監視清單裡頭頁面。",
	"apihelp-query+watchlistraw-example-generator": "索取在目前使用者監視清單裡頁面的頁面資訊。",
	"apihelp-removeauthenticationdata-summary": "為目前使用者移除身分核對資料。",
	"apihelp-removeauthenticationdata-example-simple": "嘗試移除目前使用者用於 <kbd>FooAuthenticationRequest</kbd> 的資料。",
	"apihelp-resetpassword-summary": "寄送重新設定密碼的電子郵件給使用者。",
	"apihelp-resetpassword-extended-description-noroutes": "沒有可用的重新設定密碼路由。\n\n在 <var>[[mw:Special:MyLanguage/Manual:$wgPasswordResetRoutes|$wgPasswordResetRoutes]]</var> 啟用路由來使用此模組。",
	"apihelp-resetpassword-param-user": "正重新設定的使用者。",
	"apihelp-resetpassword-param-email": "正被重新設定使用者的電子郵件地址。",
	"apihelp-resetpassword-example-user": "向使用者 <kbd>Example</kbd> 寄送重新設定密碼用的電子郵件。",
	"apihelp-resetpassword-example-email": "對所有電子郵件地址為 <kbd>user@example.com</kbd> 的使用者發送重新設定密碼電郵。",
	"apihelp-revisiondelete-summary": "刪除和取消刪除修訂。",
	"apihelp-revisiondelete-param-type": "正執行的修訂刪除類型。",
	"apihelp-revisiondelete-param-target": "要修訂刪除的頁面標題,若類型有所需要。",
	"apihelp-revisiondelete-param-ids": "要刪除的修訂識別碼。",
	"apihelp-revisiondelete-param-hide": "各修訂所要隱藏的內容。",
	"apihelp-revisiondelete-param-show": "各修訂所要取消隱藏的內容。",
	"apihelp-revisiondelete-param-suppress": "是否對管理者及其他使用者禁止資料。",
	"apihelp-revisiondelete-param-reason": "刪除或取消刪除的原因。",
	"apihelp-revisiondelete-param-tags": "在刪除日誌裡套用到項目的標籤。",
	"apihelp-revisiondelete-example-revision": "隱藏[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的修訂版本<kbd>12345</kbd>的內容。",
	"apihelp-revisiondelete-example-log": "以原因:<kbd>BLP violation</kbd>,來隱藏在日誌項目 <kbd>67890</kbd> 上的所有資料。",
	"apihelp-rollback-summary": "復原頁面的最後一次編輯。",
	"apihelp-rollback-extended-description": "若編輯頁面的上一個使用者連續建立多個編輯,這些會全部被回退。",
	"apihelp-rollback-param-title": "要回退的頁面標題。不可與 <var>$1pageid</var> 同時使用。",
	"apihelp-rollback-param-pageid": "要回退的頁面 ID。不可與 <var>$1title</var> 同時使用。",
	"apihelp-rollback-param-tags": "套用到回退的標籤。",
	"apihelp-rollback-param-user": "編輯被回退的使用者名稱。",
	"apihelp-rollback-param-summary": "自定義編輯摘要。若為空,則使用預設摘要。",
	"apihelp-rollback-param-markbot": "將回退的編輯以及回退操作標記為機器人所做編輯。",
	"apihelp-rollback-param-watchlist": "使用偏好設定無條件地將頁面加入至或移除自目前使用者的監視清單(略過機器人使用者),或不更改監視。",
	"apihelp-rollback-param-watchlistexpiry": "監視清單期限時間戳記。忽略此參數會維持目前期限不變。",
	"apihelp-rollback-example-simple": "回退由使用者<kbd>Example</kbd>對頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]做出的最近編輯。",
	"apihelp-rollback-example-summary": "回退由IP使用者<kbd>192.0.2.5</kbd>對頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]做出的最近編輯,帶編輯摘要<kbd>Reverting vandalism</kbd>,並將這些編輯和回退標記為機器人編輯。",
	"apihelp-rsd-summary": "匯出一個簡易探索(Really Simple Discovery、RSD)架構。",
	"apihelp-rsd-example-simple": "匯出 RSD 架構。",
	"apihelp-setnotificationtimestamp-summary": "更新監視頁面的通知時間戳記。",
	"apihelp-setnotificationtimestamp-extended-description": "這會影響在監視清單與歷史裡更改頁面的亮度凸顯,以及當 \"{{int:tog-enotifwatchlistpages}}\" 偏好設定啟用時的電子郵件發送。",
	"apihelp-setnotificationtimestamp-param-entirewatchlist": "在所有已監視頁面運作。",
	"apihelp-setnotificationtimestamp-param-timestamp": "要設定通知時間戳記的時間戳記。",
	"apihelp-setnotificationtimestamp-param-torevid": "設定通知時間戳記的修訂(僅限一個頁面)。",
	"apihelp-setnotificationtimestamp-param-newerthanrevid": "設定通知時間戳記較新的修訂(僅限一個頁面)。",
	"apihelp-setnotificationtimestamp-example-all": "重新設定整個監視清單的通知狀態。",
	"apihelp-setnotificationtimestamp-example-page": "重設用於[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的通知狀態。",
	"apihelp-setnotificationtimestamp-example-pagetimestamp": "設定[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的通知時間戳,這樣所有從2012年1月1日起的編輯都會是未覆核的。",
	"apihelp-setnotificationtimestamp-example-allpages": "重新設定在 <kbd>{{ns:user}}</kbd> 命名空間裡頁面的通知狀態。",
	"apihelp-setpagelanguage-summary": "變更頁面的語言。",
	"apihelp-setpagelanguage-extended-description-disabled": "您不可以變更此wiki的頁面語言。\n\n請啟用<var>[[mw:Special:MyLanguage/Manual:$wgPageLanguageUseDB|$wgPageLanguageUseDB]]</var>來變更語言。",
	"apihelp-setpagelanguage-param-title": "您所想要更改語言的頁面之標題。不能與 <var>$1pageid</var> 一起使用。",
	"apihelp-setpagelanguage-param-pageid": "您所想要更改語言的頁面之頁面 ID。不能與 <var>$1title</var> 一起使用。",
	"apihelp-setpagelanguage-param-lang": "要更改頁面的語言之代碼。使用 <kbd>default</kbd> 來重新設定頁面成 wiki 的預設內容語言。",
	"apihelp-setpagelanguage-param-reason": "變更的原因。",
	"apihelp-setpagelanguage-param-tags": "更改對應自此項操作所導致出日誌項目的標籤。",
	"apihelp-setpagelanguage-example-language": "變更頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的語言為巴斯克語。",
	"apihelp-setpagelanguage-example-default": "將 ID 是 123 頁面的語言更改為 wiki 的預設內容語言。",
	"apihelp-stashedit-summary": "在分享快取裡預備編輯。",
	"apihelp-stashedit-extended-description": "此意指使用透過自編輯表單的 AJAX 來改善頁面儲存的效能。",
	"apihelp-stashedit-param-title": "正在編輯此頁面的標題。",
	"apihelp-stashedit-param-section": "章節識別碼。<kbd>0</kbd> 代表最上層章節,<kbd>new</kbd> 代表新章節。",
	"apihelp-stashedit-param-sectiontitle": "新章節的標題。",
	"apihelp-stashedit-param-text": "頁面內容。",
	"apihelp-stashedit-param-stashedtexthash": "要替代使用的來自先前儲藏裡頁面內容雜湊。",
	"apihelp-stashedit-param-contentmodel": "新內容的內容模組。",
	"apihelp-stashedit-param-contentformat": "用於輸入文字的內容序列化格式。",
	"apihelp-stashedit-param-baserevid": "基本修訂的修訂 ID。",
	"apihelp-stashedit-param-summary": "更改摘要。",
	"apihelp-tag-summary": "從各別修訂或日誌項目添加或移除變更標籤。",
	"apihelp-tag-param-rcid": "要添加或移除標籤的一個或多個近期變更 ID。",
	"apihelp-tag-param-revid": "要添加或移除標籤的一個或多個修訂 ID。",
	"apihelp-tag-param-logid": "要添加或移除標籤的一個或多個日誌項目 ID。",
	"apihelp-tag-param-add": "要添加的標籤。僅有手動定義的標籤可被添加。",
	"apihelp-tag-param-remove": "要移除的標籤。僅有手動定義或完全未定義的標籤可被移除。",
	"apihelp-tag-param-reason": "變更的原因。",
	"apihelp-tag-param-tags": "套用到日誌項目的標籤會被建立為此操作的結果。",
	"apihelp-tag-example-rev": "不指明原因將 ID 為 123 的修訂添加 <kbd>vandalism</kbd> 標籤",
	"apihelp-tag-example-log": "將 ID 為 123 的日誌項目移除 <kbd>spam</kbd> 標籤,原因:<kbd>Wrongly applied</kbd>",
	"apihelp-unblock-summary": "解除封鎖一位使用者。",
	"apihelp-unblock-param-id": "要解封的封鎖 ID(可透過 <kbd>list=blocks</kbd> 取得)。不可與 <var>$1user</var> 一起使用。",
	"apihelp-unblock-param-user": "要解封的使用者。不能與 <var>$1id</var> 一起使用。",
	"apihelp-unblock-param-userid": "改成指定 <kbd>$1user=#<var>ID</var></kbd>。",
	"apihelp-unblock-param-reason": "解除封鎖的原因。",
	"apihelp-unblock-param-tags": "在封鎖日誌裡更改套用到項目的標籤。",
	"apihelp-unblock-param-watchuser": "監視使用者或IP位址的使用者頁面和討論頁。",
	"apihelp-unblock-param-watchlistexpiry": "監視清單到期時間戳。完全省略此參數以保持目前到期時間不變。",
	"apihelp-unblock-example-id": "解除封鎖 ID #<kbd>105</kbd>。",
	"apihelp-unblock-example-user": "封鎖使用者 <kbd>Bob</kbd>,原因:<kbd>Sorry Bob</kbd>。",
	"apihelp-undelete-summary": "恢復已刪除頁面的修訂。",
	"apihelp-undelete-extended-description": "刪除修訂清單(包含時間戳記)可透過 [[Special:ApiHelp/query+deletedrevisions|prop=deletedrevisions]] 檢索,刪除檔案 ID 清單可透過\n[[Special:ApiHelp/query+filearchive|list=filearchive]] 檢索。",
	"apihelp-undelete-param-title": "要恢復的頁面標題。",
	"apihelp-undelete-param-reason": "還原的原因。",
	"apihelp-undelete-param-tags": "在刪除日誌裡更改套用到項目的標籤。",
	"apihelp-undelete-param-timestamps": "要恢復的修訂時間戳記。若<var>$1timestamps</var> 與 <var>$1fileids</var>皆為空,則所有修訂都會恢復。",
	"apihelp-undelete-param-fileids": "要復原的檔案修訂 ID。若 <var>$1timestamps</var> 與 <var>$1fileids</var> 皆為空,則所有都會被復原。",
	"apihelp-undelete-param-watchlist": "使用偏好設定無條件地將頁面加入至或移除自目前使用者的監視清單(略過機器人使用者),或不更改監視。",
	"apihelp-undelete-param-watchlistexpiry": "監視清單期限時間戳記。忽略此參數會維持目前期限不變。",
	"apihelp-undelete-param-undeletetalk": "如存在,恢復關聯討論頁的所有修訂。",
	"apihelp-undelete-example-page": "恢復頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]。",
	"apihelp-undelete-example-revisions": "恢復[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]的兩次修訂。",
	"apihelp-unlinkaccount-summary": "移除目前使用者所連結到的第三方帳號。",
	"apihelp-unlinkaccount-example-simple": "以 <kbd>FooAuthenticationRequest</kbd> 嘗試移除目前使用者的關聯供應者連結.",
	"apihelp-upload-summary": "上傳檔案,或取得等待上傳的狀態。",
	"apihelp-upload-extended-description": "有以下方式可用:\n* 直接上傳檔案內容,請使用 <var>$1file</var> 參數。\n* 分批上傳檔案,請使用 <var>$1filesize</var>、<var>$1chunk</var>、以及 <var>$1offset</var> 參數。\n* 擁有 MediaWiki 伺服器來從 URL 來檢索檔案,請使用 <var>$1url</var> 參數。\n* 要完成一個稍早出於警告而失敗的上傳,請使用 <var>$1filekey</var> 參數。\n請注意當發送 <var>$1file</var> 時,HTTP POST 必須用做為檔案上傳(註:使用 <code>multipart/form-data</code>)。",
	"apihelp-upload-param-filename": "目標檔案名稱。",
	"apihelp-upload-param-comment": "上傳註釋。如果 <var>$1text</var> 未指定的話,也會作為新檔案用的初始頁面文字。",
	"apihelp-upload-param-tags": "更改標籤來套用到上傳日誌項目以及檔案頁面修訂。",
	"apihelp-upload-param-text": "用於新檔案的初始頁面文字。",
	"apihelp-upload-param-watch": "監視頁面。",
	"apihelp-upload-param-watchlist": "使用偏好設定無條件地將頁面加入至或移除自目前使用者的監視清單(略過機器人使用者),或不更改監視。",
	"apihelp-upload-param-watchlistexpiry": "監視清單期限時間戳記。忽略此參數會維持目前期限不變。",
	"apihelp-upload-param-ignorewarnings": "忽略所有警告。",
	"apihelp-upload-param-file": "檔案內容。",
	"apihelp-upload-param-url": "索取檔案的來源 URL。",
	"apihelp-upload-param-filekey": "識別前一個為臨時儲藏上傳的鍵。",
	"apihelp-upload-param-sessionkey": "如同 $1filekey,維持向下相容性。",
	"apihelp-upload-param-stash": "若設定的話,伺服器將會把檔案臨時暫存;而不是添加至儲存庫裡。",
	"apihelp-upload-param-filesize": "整體上傳的檔案大小。",
	"apihelp-upload-param-offset": "以位元組為單位的多量偏移。",
	"apihelp-upload-param-chunk": "大量內容。",
	"apihelp-upload-param-async": "在可能的情況下讓潛在的大型檔案非同步處理。",
	"apihelp-upload-param-checkstatus": "僅檢索指定檔案鍵的上傳狀態。",
	"apihelp-upload-example-url": "從 URL 上傳。",
	"apihelp-upload-example-filekey": "完成出於警告而失敗的上傳。",
	"apihelp-userrights-summary": "變更一位使用者的群組成員。",
	"apihelp-userrights-param-user": "使用者。",
	"apihelp-userrights-param-userid": "改成指定 <kbd>$1user=#<var>ID</var></kbd>。",
	"apihelp-userrights-param-add": "加入使用者至這些群組;若已是成員,則更新期限時間。",
	"apihelp-userrights-param-expiry": "期限時間戳記。可以是相對時間(例如:<kbd>5 months</kbd> 或 <kbd>2 weeks</kbd>)或是絕對時間(例如:<kbd>2014-09-18T12:34:56Z</kbd>)。如果僅設定一個時間戳記,會為所有群組傳遞給 <var>$1add</var> 參數。對於永不逾期的群組,請使用 <kbd>infinite</kbd>、<kbd>infinity</kbd>、或 <kbd>never</kbd>。",
	"apihelp-userrights-param-remove": "從這些群組移除使用者。",
	"apihelp-userrights-param-reason": "變更的原因。",
	"apihelp-userrights-param-tags": "在使用者權限日誌裡更改套用到項目的標籤。",
	"apihelp-userrights-param-watchuser": "監視此使用者的使用者頁面與討論頁。",
	"apihelp-userrights-param-watchlistexpiry": "監視清單到期時間戳。完全省略此參數以保持目前到期時間不變。",
	"apihelp-userrights-example-user": "添加使用者 <kbd>FooBot</kbd> 至群組 <kbd>bot</kbd>,並從群組 <kbd>sysop</kbd> 與 <kbd>bureaucrat</kbd> 裡移除。",
	"apihelp-userrights-example-userid": "添加 ID 為 <kbd>123</kbd> 的使用者至群組 <kbd>bot</kbd>,並從群組 <kbd>sysop</kbd> 與 <kbd>bureaucrat</kbd> 裡移除。",
	"apihelp-userrights-example-expiry": "添加使用者 <kbd>SometimeSysop</kbd> 至群組 <kbd>sysop</kbd> 為期一個月時間。",
	"apihelp-validatepassword-summary": "驗證密碼是否符合 wiki 的密碼方針。",
	"apihelp-validatepassword-extended-description": "若密碼可接受,有效性會回報成 <samp>Good</samp>;若密碼可用於登入但必須更改,會回報成 <samp>Change</samp>;若密碼不可使用,則會回報為 <samp>Invalid</samp>。",
	"apihelp-validatepassword-param-password": "要驗證的密碼。",
	"apihelp-validatepassword-param-user": "使用者名稱,用於測試帳號建立。所命名的使用者必須未存在。",
	"apihelp-validatepassword-param-email": "電子郵件地址,用於當測試帳號建立時使用。",
	"apihelp-validatepassword-param-realname": "真實姓名,用於當測試帳號建立時使用。",
	"apihelp-validatepassword-example-1": "驗證目前使用者的密碼 <kbd>foobar</kbd>。",
	"apihelp-validatepassword-example-2": "為建立的使用者 <kbd>Example</kbd> 驗證密碼 <kbd>qwerty</kbd>。",
	"apihelp-watch-summary": "從目前使用者的監視清單添加或移除頁面。",
	"apihelp-watch-param-title": "要(取消)監視的頁面。請改用 <var>$1titles</var>。",
	"apihelp-watch-param-expiry": "逾期的時間戳記會套用到所有指定頁面。忽略此參數會不更改目前任何逾期。",
	"apihelp-watch-param-unwatch": "若設定頁面,則會取消監視而非被監視。",
	"apihelp-watch-example-watch": "監視頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]。",
	"apihelp-watch-example-watch-expiry": "監視頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]、<kbd>Foo</kbd>和<kbd>Bar</kbd>一個月。",
	"apihelp-watch-example-unwatch": "取消監視頁面[[{{MediaWiki:Mainpage}}|{{MediaWiki:Mainpage}}]]。",
	"apihelp-watch-example-generator": "監視在主命名空間最前的幾個頁面。",
	"apihelp-format-example-generic": "以 $1 格式傳回查詢結果。",
	"apihelp-format-param-wrappedhtml": "回傳作為 JSON 物件的美觀列印 HTML 內容以及關聯 ResourceLoader 模組。",
	"apihelp-json-summary": "使用 JSON 格式輸出資料。",
	"apihelp-json-param-callback": "若有指定,將輸出包在指定的函式呼叫。出於安全考量,會限制所有使用者特定資料。",
	"apihelp-json-param-utf8": "若有指定的話,將多數(並非全部)非 ASCII 字元編碼成 UTF-8,而不是以十六進位轉義序列來取代掉。預設是當 <var>formatversion</var> 不是 <kbd>1</kbd> 時。",
	"apihelp-json-param-ascii": "若有指定,編碼所有使用十六進位跳脫序列的非 ASCII 字碼。預設當 <var>formatversion</var> 為 <kbd>1</kbd> 時。",
	"apihelp-json-param-formatversion": "輸出格式",
	"apihelp-json-paramvalue-formatversion-1": "向下相容格式(XML-樣式的布林類型、以 <samp>*</samp> 鍵作為內容節點等等)。",
	"apihelp-json-paramvalue-formatversion-2": "現代格式。",
	"apihelp-json-paramvalue-formatversion-latest": "使用最新格式(目前為 <kbd>2</kbd>),可能會不警告做出改變。",
	"apihelp-jsonfm-summary": "使用 JSON 格式輸出資料(使用HTML格式顯示)。",
	"apihelp-none-summary": "不輸出。",
	"apihelp-php-summary": "使用序列化 PHP 格式輸出資料。",
	"apihelp-php-param-formatversion": "輸出格式",
	"apihelp-php-paramvalue-formatversion-1": "向下相容格式(XML-樣式的布林類型、以 <samp>*</samp> 鍵作為內容節點等等)。",
	"apihelp-php-paramvalue-formatversion-2": "現代格式。",
	"apihelp-php-paramvalue-formatversion-latest": "使用最新格式(目前為 <kbd>2</kbd>),可能會不警告做出改變。",
	"apihelp-phpfm-summary": "使用序列化 PHP 格式輸出資料 (使用 HTML 格式顯示)。",
	"apihelp-rawfm-summary": "使用 JSON 格式的除錯元素輸出資料 (使用 HTML 格式顯示)。",
	"apihelp-xml-summary": "使用 XML 格式輸出資料。",
	"apihelp-xml-param-xslt": "若有指定,添加命名頁面成 XSL 樣式表。值必須是在 <code>.xsl</code> 結尾處 {{ns:MediaWiki}} 命名空間裡的標題。",
	"apihelp-xml-param-includexmlnamespace": "若有指定,添加一個 XML 命名空間。",
	"apihelp-xmlfm-summary": "使用 XML 格式輸出資料 (使用 HTML 格式顯示)。",
	"api-format-title": "MediaWiki API 結果",
	"api-format-prettyprint-header": "這是$1格式的HTML呈現。HTML適合用於除錯,但不適合應用程式使用。\n\n指定<var>format</var>參數以更改輸出格式。要檢視$1格式的非HTML呈現,設定<kbd>format=$2</kbd>。\n\n參考 [[mw:Special:MyLanguage/API|完整說明文件]] 或 [[Special:ApiHelp/main|API說明]] 以取得更多資訊。",
	"api-format-prettyprint-header-only-html": "這是用來除錯的HTML呈現,不適合實際應用。\n\n參見[[mw:Special:MyLanguage/API|完整文件]]或[[Special:ApiHelp/main|API幫助]]以取得更多資訊。",
	"api-format-prettyprint-header-hyperlinked": "這是$1格式的HTML實現。HTML對除錯很有用,但不適合應用程式使用。\n\n指定<var>format</var>參數以變更輸出格式。要查看$1格式的非HTML實現,設定[$3 <kbd>format=$2</kbd>]。\n\n參見[[mw:API|完整文件]],或[[Special:ApiHelp/main|API說明]]以取得更多資訊。",
	"api-format-prettyprint-status": "此回應將會傳回HTTP狀態$1 $2。",
	"api-login-fail-aborted": "驗證需要使用者互動,該不被 <kbd>action=login</kbd> 所支援。要以 <kbd>action=login</kbd> 登入,請參閱 [[Special:BotPasswords]]。要繼續以主帳號登入,請參閱 <kbd>[[Special:ApiHelp/clientlogin|action=clientlogin]]</kbd>。",
	"api-login-fail-aborted-nobotpw": "驗證需要使用者互動,該不被 <kbd>action=login</kbd> 所支援。要登入請查看 <kbd>[[Special:ApiHelp/clientlogin|action=clientlogin]]</kbd>。",
	"api-login-fail-badsessionprovider": "當使用$1無法登入。",
	"api-login-fail-sameorigin": "當未套用相同原有方針時無法登入。",
	"api-pageset-param-titles": "要使用的標題清單。",
	"api-pageset-param-pageids": "要使用的頁面 ID 清單。",
	"api-pageset-param-revids": "要查詢的修訂版本ID列表。請注意,幾乎所有的查詢模組都會將修訂版本ID轉換為對應的頁面ID,並且查詢最新的修訂版本。只有<kbd>prop=revisions</kbd>會使用精確的修訂版本進行回應。",
	"api-pageset-param-generator": "執行指定查詢模組取得要處理的頁面清單。\n\n<strong>注意:</strong>生成器參數名必須以「g」開頭,請查看範例。",
	"api-pageset-param-redirects-generator": "自動解決在 <var>$1titles</var>、<var>$1pageids</var>、<var>$1revids</var>,以及由 <var>$1generator</var> 所回傳頁面裡的重新導向。",
	"api-pageset-param-redirects-nogenerator": "自動解決在 <var>$1titles</var>、<var>$1pageids</var>,與 <var>$1revids</var> 的重新導向。",
	"api-pageset-param-converttitles": "如有需要,轉換標題成其它變體。這僅在 wiki 的內容語言支援變體轉換時有用。支援變體轉換的語言包含有$1。",
	"api-help-title": "MediaWiki API 說明",
	"api-help-lead": "此頁為自動產生的 MediaWiki API 說明文件頁面。\n\n說明文件與範例:https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page",
	"api-help-main-header": "主要模組",
	"api-help-undocumented-module": "沒有用於模組 $1 的說明文件。",
	"api-help-flag-deprecated": "此模組已停用。",
	"api-help-flag-internal": "<strong>此模組是內部模組或不夠穩定,您不應使用。</strong>它的操作可能造成改變且不會另行通知。",
	"api-help-flag-readrights": "此模組需要讀取權限。",
	"api-help-flag-writerights": "此模組需要寫入權限。",
	"api-help-flag-mustbeposted": "此模組僅接受 POST 請求。",
	"api-help-flag-generator": "此模組可作為產生器使用。",
	"api-help-source": "來源:$1",
	"api-help-source-unknown": "來源:<span class=\"apihelp-unknown\">未知</span>",
	"api-help-license": "授權條款:[[$1|$2]]",
	"api-help-license-noname": "協定:[[$1|查看連結]]",
	"api-help-license-unknown": "授權條款:<span class=\"apihelp-unknown\">未知</span>",
	"api-help-parameters": "{{PLURAL:$1|具體參數}}:",
	"api-help-parameters-note": "其他通用參數可用。",
	"api-help-param-deprecated": "已棄用。",
	"api-help-param-deprecated-label": "不建議使用",
	"api-help-param-internal": "內部。",
	"api-help-param-internal-label": "內部",
	"api-help-param-templated": "此為[[Special:ApiHelp/main#main/templatedparams|模板參數]]。當做出請求時,$2。",
	"api-help-param-templated-var-first": "在參數名稱裡的 <var>&#x7B;$1&#x7D;</var> 應替換成 <var>$2</var> 的值",
	"api-help-param-templated-var": "<var>&#x7B;$1&#x7D;</var> 與 <var>$2</var> 的值",
	"api-help-datatypes-header": "資料類型",
	"api-help-datatypes-top": "輸入到 MediaWiki 應為 NFC-標準化的 UTF-8。雖然 MediaWiki 會嘗試轉換成其它輸入,但這可能會引發一些操作上錯誤(例如像以 MD5 核對的[[Special:ApiHelp/edit|編輯]])。\n\n帶有多項值的參數通常是以豎線字元做區分來提交,例如:<kbd>param=value1|value2</kbd> 或是 <kbd>param=value1%7Cvalue2</kbd>。如果值的內容必須包含豎線字元,請使用 U+001F(單位分隔)來做為區分,''並且''讓值的字首加上 U+001F,例如:<kbd>param=%1Fvalue1%1Fvalue2</kbd>。\n\n在 API 請求中的某些參數需要進一步解釋:",
	"api-help-datatype-boolean": "布林值參數運作上就像 HTML 的勾選框:若有指定參數,不論值的內容為何都視為 true。對於 false 值,則是將參數整個省略。",
	"api-help-datatype-expiry": "到期時間可以是相對時間(例如:<kbd>5 months</kbd> 或 <kbd>2 weeks</kbd>)或是絕對時間(例如:<kbd>2014-09-18T12:34:56Z</kbd>)。如果要無期限,請使用 <kbd>infinite</kbd>、<kbd>indefinite</kbd>、<kbd>infinity</kbd>、或 <kbd>never</kbd>。",
	"api-help-datatype-timestamp": "時間戳記能以數種格式指定,請查看[[mw:Special:MyLanguage/Timestamp|在 mediawiki.org 上的時間戳記函式庫輸入格式文件]]來獲得更多資訊。推薦採用 ISO 8601 日期與時間格式:<kbd><var>2001</var>-<var>01</var>-<var>15</var>T<var>14</var>:<var>56</var>:<var>00</var>Z</kbd>。另外,字串 <kbd>now</kbd> 能用來指定目前時刻的時間戳記。",
	"api-help-templatedparams-header": "模板參數",
	"api-help-templatedparams": "模板參數可支援當 API 模組需要替某些參數值給予值的情況。舉例來說,如果有個用來請求水果的 API 模組,可能會有一個用來指定水果的 <var>fruits</var> 參數,以及用來指定有多少顆水果的模板參數 <var>{fruit}-quantity</var>。若一個 API 客戶端想要 1 顆蘋果、5 條香蕉、以及 20 粒草莓時,可以做出像是 <kbd>fruits=apples|bananas|strawberries&apples-quantity=1&bananas-quantity=5&strawberries-quantity=20</kbd> 這樣的請求。",
	"api-help-param-type-expiry": "輸入:{{PLURAL:$1|1=到期|2=到期清單}}([[Special:ApiHelp/main#main/datatype/expiry|詳細內容]])",
	"api-help-param-type-limit": "類型:整數或<kbd>max</kbd>",
	"api-help-param-type-presenceboolean": "類型:布林值([[Special:ApiHelp/main#main/datatype/boolean|詳細資訊]])",
	"api-help-param-type-timestamp": "類型:{{PLURAL:$1|1=時間戳記|2=時間戳記列表}}([[Special:ApiHelp/main#main/datatype/timestamp|允許格式]])",
	"api-help-param-type-enum": "{{PLURAL:$1|1=單值|2=多值 (以 <kbd>{{!}}</kbd> 或 [[Special:ApiHelp/main#main/datatypes|alternative]] 分隔)}}:$2",
	"api-help-param-multi-separate": "將幾個值以 <kbd>|</kbd> 或 [[Special:ApiHelp/main#main/datatypes|alternative]] 分隔。",
	"api-help-param-multi-all": "要指定所有值,請使用<kbd>$1</kbd>。",
	"api-help-param-default-empty": "預設值:<span class=\"apihelp-empty\">(空)</span>",
	"api-help-param-token": "自 [[Special:ApiHelp/query+tokens|action=query&meta=tokens]] 接收的「$1」權杖。",
	"api-help-param-token-webui": "為顧及相容性,web UI 中使用的權杖(Token)也是可接受的。",
	"api-help-param-disabled-in-miser-mode": "因[[mw:Special:MyLanguage/Manual:$wgMiserMode|miser模式]]而被停用。",
	"api-help-param-limited-in-miser-mode": "<strong>注意:</strong>出於 [[mw:Special:MyLanguage/Manual:$wgMiserMode|miser 模式]]緣故,使用這個可能會導致在繼續之前,傳回少於 <var>$1limit</var> 筆的結果,極端情況下則可能不會傳回任何结果。",
	"api-help-param-direction": "列舉的方向:",
	"api-help-paramvalue-direction-newer": "最早的優先。注意:$1start應早於$1end。",
	"api-help-paramvalue-direction-older": "最新的優先(預設)。注意:$1start應晚於$1end。",
	"api-help-param-continue": "當更多結果可用時,使用這個繼續。[[mw:Special:MyLanguage/API:Continue|可在 mediawiki.org 取得]]更多有關如何繼續查詢的詳細資訊。",
	"api-help-param-no-description": "<span class=\"apihelp-empty\">(無描述)</span>",
	"api-help-examples": "{{PLURAL:$1|範例}}:",
	"api-help-permissions": "{{PLURAL:$1|權限}}:",
	"api-help-permissions-granted-to": "{{PLURAL:$1|已授權給}}: $2",
	"api-help-right-apihighlimits": "在 API 查詢使用較高的限制(慢速查詢:$1;快速查詢:$2)。慢速查詢的限制也適用於多值參數。",
	"api-help-open-in-apisandbox": "<small>[在沙盒中開啟]</small>",
	"api-help-authmanager-general-usage": "使用此模組的一般步驟是:\n# 透過 <kbd>amirequestsfor=$4</kbd> 取得來自 <kbd>[[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]]</kbd> 的可用欄位,和來自 <kbd>[[Special:ApiHelp/query+tokens|action=query&meta=tokens]]</kbd> 的<kbd>$5</kbd>權杖。\n# 向使用者顯示欄位,並獲得其提交的內容。\n# 提交(POST)至此模組,提供 <var>$1returnurl</var> 及任何相關欄位。\n# 在回應中檢查 <samp>status</samp>。\n#* 如果您收到了 <samp>PASS</samp>(成功)或<samp>FAIL</samp>(失敗),則認為操作結束。成功與否如上句所示。\n#* 如果您收到了 <samp>UI</samp>,向使用者顯示新欄位,並再次獲取其提交的內容。然後再次使用 <var>$1continue</var>,向本模組提交相關欄位,並重復第四步。\n#* 如果您收到了 <samp>REDIRECT</samp>,將使用者指向<samp>redirecttarget</samp> 中的目標,等待其返回<var>$1returnurl</var>。然後再次使用 <var>$1continue</var>,向本模組提交返回 URL 中提供的一切欄位,並重復第四步。\n#* 如果您收到了 <samp>RESTART</samp>,表示身份驗證正常運作,但我們沒有連結的使用者帳戶。您可以將此視為 <samp>UI</samp>或<samp>FAIL</samp>。",
	"api-help-authmanagerhelper-requests": "只使用這些身份驗證請求,透過自<kbd>[[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]]</kbd>回傳的<samp>id</samp>與<kbd>amirequestsfor=$1</kbd>,或來自此模組之前的回應。",
	"api-help-authmanagerhelper-request": "使用此身份驗證請求,透過自<kbd>[[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]]</kbd>回傳的<samp>id</samp>與<kbd>amirequestsfor=$1</kbd>。",
	"api-help-authmanagerhelper-messageformat": "用於回傳訊息的格式。",
	"api-help-authmanagerhelper-mergerequestfields": "將用於所有身份驗證請求的欄位資訊合併至一個陣列中。",
	"api-help-authmanagerhelper-preservestate": "從之前失敗的登入嘗試中保持狀態,如果可能。",
	"api-help-authmanagerhelper-returnurl": "為第三方身份驗證流程傳回URL,必須為絕對值。需要此值或<var>$1continue</var>兩者之一。\n\n在接收<samp>REDIRECT</samp>回應時,一般狀況下您將打開瀏覽器或網站瀏覽功能到特定的<samp>redirecttarget</samp> URL以進行第三方身份驗證流程。當它完成時,第三方會將瀏覽器或網站瀏覽功能送至此URL。您應當提取任何來自URL的查詢或POST參數,並將之作為<var>$1continue</var>請求傳遞至此API模組。",
	"api-help-authmanagerhelper-continue": "此請求是在先前的<samp>UI</samp>或<samp>REDIRECT</samp>回應之後的後續動作。必填此值或<var>$1returnurl</var>。",
	"api-help-authmanagerhelper-additional-params": "此模組允許額外參數,取決於可用的身份驗證請求。使用<kbd>[[Special:ApiHelp/query+authmanagerinfo|action=query&meta=authmanagerinfo]]</kbd>与<kbd>amirequestsfor=$1</kbd>(或之前來自此模組的回應,如果合適)以決定可用請求及其使用的欄位。",
	"apierror-allimages-redirect": "當使用 <kbd>allimages</kbd> 作為產生器時,請改用 <kbd>gaifilterredir=nonredirects</kbd> 而不是 <var>redirects</var>。",
	"apierror-allpages-generator-redirects": "當使用 <kbd>allpages</kbd> 作為產生器時,請改用 <kbd>gapfilterredir=nonredirects</kbd> 而不是 <var>redirects</var>。",
	"apierror-alreadyregistered": "您已經有一個使用者帳號。",
	"apierror-appendnotsupported": "無法附加到使用內容模組 $1 的頁面。",
	"apierror-articleexists": "您嘗試建立的頁面已經被建立。",
	"apierror-assertanonfailed": "您已不再登出,所以操作無法完成。",
	"apierror-assertbotfailed": "您沒有 <code>bot</code> 權限,所以操作無法完成。",
	"apierror-assertnameduserfailed": "您已不再以「$1」身份登入,所以操作無法完成。",
	"apierror-assertuserfailed": "您已不再登入,所以操作無法完成。",
	"apierror-autoblocked": "您的 IP 位址已經被自動封鎖,因為它曾經被一名已封鎖的使用者使用過。",
	"apierror-bad-badfilecontexttitle": "在 <var>$1badfilecontexttitle</var> 參數的無效標題。",
	"apierror-badconfig-resulttoosmall": "在此 wiki 上 <code>$wgAPIMaxResultSize</code> 的值太小,而無法含有基本結果資訊。",
	"apierror-badcontinue": "無效的繼續參數。您應該傳遞由前一個查詢所回傳的原有值。",
	"apierror-baddiff": "無法取得差異。不存在一個或兩個修訂,或是您沒有權限來檢視它們。",
	"apierror-baddiffto": "<var>$1diffto</var> 必須設定成非負值的數字、<kbd>prev</kbd>、<kbd>next</kbd>、或 <kbd>cur</kbd>。",
	"apierror-badformat-generic": "內容模組 $2 不支援使用請求格式 $1。",
	"apierror-badformat": "由 $3 所使用的內容模組 $2 不支援使用請求格式 $1。",
	"apierror-badgenerator-notgenerator": "模組 <kbd>$1</kbd> 不能作為產生器。",
	"apierror-badgenerator-unknown": "未知的 <kbd>generator=$1</kbd>。",
	"apierror-badip": "IP 參數無效。",
	"apierror-badmd5": "提供的 MD5 雜湊不正確。",
	"apierror-badmodule-badsubmodule": "模組 <kbd>$1</kbd> 不包含子模組「$2」。",
	"apierror-badmodule-nosubmodules": "模組 <kbd>$1</kbd> 沒有子模組。",
	"apierror-badparameter": "參數 <var>$1</var> 的值無效。",
	"apierror-badquery": "無效的查詢。",
	"apierror-badtimestamp": "用於時間戳記參數 <var>$1</var> 的值「$2」無效。",
	"apierror-badtoken": "無效 CSRF 權杖。",
	"apierror-badupload": "檔案上傳參數 <var>$1</var> 不是一個檔案上傳,請確定在您的 POST 有使用 <code>multipart/form-data</code>,並且在 <code>Content-Disposition</code> 標頭有包含檔案名稱。",
	"apierror-badurl": "用於 URL 參數 <var>$1</var> 的值「$2」無效。",
	"apierror-baduser": "用於使用者參數 <var>$1</var> 的值「$2」無效。",
	"apierror-badvalue-notmultivalue": "U+001F 多值區分僅可用於多值參數。",
	"apierror-bad-watchlist-token": "提供無效的監視清單權杖。請在 [[Special:Preferences]] 設定正確權杖。",
	"apierror-blockedfrommail": "您已被封鎖,無法發送電子郵件。",
	"apierror-blocked": "您已被封鎖,無法編輯。",
	"apierror-blocked-partial": "您已被禁止編輯此頁面。",
	"apierror-botsnotsupported": "此介面不支援機器人。",
	"apierror-cannot-async-upload-file": "參數 <var>async</var> 與 <var>file</var> 不能結合。如果您想要對您上傳的檔案非同步處理,請先上傳至儲藏(使用 <var>stash</var> 參數)並非同步發布儲藏檔案(使用 <var>filekey</var> 和 <var>async</var>)。",
	"apierror-cannotreauthenticate": "出於您的身份無法驗證,此操作不可用。",
	"apierror-cannotviewtitle": "您不被允許檢視$1。",
	"apierror-cantblock-email": "您沒有權限來封鎖使用者透過 wiki 來發送電子郵件。",
	"apierror-cantblock": "您沒有權限來解封使用者。",
	"apierror-cantchangecontentmodel": "您沒有權限來更改頁面的內容模組。",
	"apierror-canthide": "您沒有權限來從封鎖日誌隱藏使用者名稱。",
	"apierror-cantimport-upload": "您沒有權限來匯入已上傳頁面。",
	"apierror-cantimport": "您沒有權限來匯入頁面。",
	"apierror-cantoverwrite-sharedfile": "目標檔案存在於分享儲存庫上,因此您沒有權限來覆蓋掉。",
	"apierror-cantsend": "您尚未登入,您沒有已確認的電子郵件地址,或是您未被允許發送電子郵件給其他人,因此您不能發送電子郵件。",
	"apierror-cantundelete": "無法取消刪除:請求的修訂可能不存在,或是可能已被取消刪除。",
	"apierror-cantview-deleted-comment": "您沒有權限來檢視被刪除的註釋。",
	"apierror-cantview-deleted-description": "您沒有權限來檢視被刪除檔案的描述內容。",
	"apierror-cantview-deleted-metadata": "您沒有權限來檢視被刪除檔案的詮釋資料。",
	"apierror-cantview-deleted-revision-content": "您沒有權限來檢視被刪除修訂的內容。",
	"apierror-changeauth-norequest": "建立更改請求失敗。",
	"apierror-changecontentmodel-missingtitle": "您所指定的頁面不存在。要建立帶有自定義內容模組的新頁面,請使用 <kbd>action=edit</kbd> 模組。",
	"apierror-changecontentmodel-nodirectediting": "$1內容模組不支援直接編輯",
	"apierror-changecontentmodel-cannotbeused": "$1內容模組不能在$2使用",
	"apierror-changecontentmodel-cannot-convert": "不能將$1轉換成$2內容模組",
	"apierror-chunk-too-small": "對於非最終塊,最小塊的大小為 $1 {{PLURAL:$1|位元組|位元組}}。",
	"apierror-cidrtoobroad": "不能接受超出 /$2 的 $1 CIDR 範圍。",
	"apierror-compare-maintextrequired": "當 <var>$1slots</var> 包含 <kbd>main</kbd> 時,需要參數 <var>$1text-main</var>(不能刪除主要部份)。",
	"apierror-compare-no-title": "無法在不帶標題之下預先儲存轉換。請嘗試指定 <var>fromtitle</var> 或 <var>totitle</var>。",
	"apierror-compare-nosuchfromsection": "在 'from' 內容裡沒有段落$1。",
	"apierror-compare-nosuchtosection": "在 'to' 內容裡沒有段落$1。",
	"apierror-compare-nofromrevision": "沒有「from」修訂。請指定 <var>fromrev</var>、<var>fromtitle</var>、或 <var>fromid</var>。",
	"apierror-compare-notext": "參數 <var>$1</var> 不能在缺少 <var>$2</var> 的情況下使用。",
	"apierror-compare-notorevision": "沒有「to」修訂。請指定 <var>torev</var>、<var>totitle</var>、或 <var>toid</var>。",
	"apierror-concurrency-limit": "超過共時限制。在提交下一個之前,請先等待各要求的回傳。",
	"apierror-compare-relative-to-deleted": "相關已刪除修訂時不能使用 <kbd>torelative=$1</kbd>。",
	"apierror-compare-relative-to-nothing": "沒有相關 <var>torelative</var> 的 'from' 修訂。",
	"apierror-contentserializationexception": "內容序列化失敗:$1",
	"apierror-contenttoobig": "您提供的內容超過了$1{{PLURAL:$1|千位元組}}的頁面大小限制。",
	"apierror-contentmodel-mismatch": "您提供的內容具有 <kbd>$1</kbd> 內容模組,該模組與頁面 <kbd>$2</kbd> 目前的內容模組不同。",
	"apierror-copyuploadbaddomain": "不允許從此網域來透過 URL 上傳。",
	"apierror-copyuploadbadurl": "不允許從此 URL 來上傳。",
	"apierror-create-titleexists": "現有標題不能以 <kbd>create</kbd> 來保護。",
	"apierror-csp-report": "處理 CSP 報告時錯誤:$1。",
	"apierror-deletedrevs-param-not-1-2": "<var>$1</var> 參數不可用於模式 1 或 2。",
	"apierror-deletedrevs-param-not-3": "<var>$1</var> 參數不可用於模式 3。",
	"apierror-edit-invalidredirect": "當以下重新導向的目標<kbd>$2</kbd>無效時,無法編輯<kbd>$1</kbd>。",
	"apierror-emptynewsection": "新段落不可建立空白內容。",
	"apierror-emptypage": "不允許建立空白的新頁面。",
	"apierror-exceptioncaught": "[$1]捕獲異常:$2",
	"apierror-exceptioncaughttype": "[$1]捕獲異常類型:$2",
	"apierror-filedoesnotexist": "檔案不存在。",
	"apierror-fileexists-sharedrepo-perm": "目標檔案存在於分享儲存庫上。請使用參數 <var>ignorewarnings</var> 來覆蓋掉。",
	"apierror-filenopath": "無法取得本地端檔案路徑。",
	"apierror-filetypecannotberotated": "無法旋轉的檔案類型。",
	"apierror-formatphp": "此回應不能使用 <kbd>format=php</kbd> 來表示。請參閱 https://phabricator.wikimedia.org/T68776。",
	"apierror-http-contenttoolarge": "HTTP 請求內容太長。最大長度:$1。",
	"apierror-imageusage-badtitle": "<kbd>$1</kbd>的標題必須是檔案。",
	"apierror-import-unknownerror": "未知的匯入錯誤:$1",
	"apierror-info-singlepagerevision": "提供了多個頁面或修訂版本,但<var>$1prop=preloadcontent</var>和<var>$1prop=editintro</var>只能與單個頁面和修訂版本一起使用。",
	"apierror-integeroutofrange-abovebotmax": "對於機器人或系統管理員而言,<var>$1</var> 不能超過 $2(設定為 $3)。",
	"apierror-integeroutofrange-abovemax": "對於使用者而言,<var>$1</var> 不能超過 $2(設定為 $3)。",
	"apierror-integeroutofrange-belowminimum": "<var>$1</var> 不能小於 $2(設定為 $3)。",
	"apierror-invalidcategory": "您所輸入的分類名稱無效。",
	"apierror-invalid-chunk": "偏移量加上目前部分大於所聲稱的檔案大小。",
	"apierror-invalidexpiry": "無效的期限時間「$1」。",
	"apierror-invalid-file-key": "不是有效的檔案鍵。",
	"apierror-invalidiprange": "無效的 CIDR 範圍 \"$1\"。",
	"apierror-invalidlang": "用於參數 <var>$1</var> 的語言代碼無效。",
	"apierror-invalidmethod": "無效的 HTTP 方式。請考慮採用 GET 或 POST。",
	"apierror-invalidoldimage": "<var>oldimage</var> 參數含有無效格式。",
	"apierror-invalidparammix-cannotusewith": "參數 <kbd>$1</kbd> 不能與 <kbd>$2</kbd> 一起使用。",
	"apierror-invalidparammix-mustusewith": "<kbd>$1</kbd> 參數僅能與 <kbd>$2</kbd> 一起使用。",
	"apierror-invalidparammix-parse-new-section": "<kbd>section=new</kbd> 不能連同 <var>oldid</var>、<var>pageid</var>、或 <var>page</var> 參數。請使用 <var>title</var> 與 <var>text</var>。",
	"apierror-invalidparammix": "{{PLURAL:$2|參數}} $1 不能一起使用。",
	"apierror-invalidsection": "<var>section</var> 參數必須是有效的段落 ID 或 <kbd>new</kbd>。",
	"apierror-invalidsha1base36hash": "所提供的 SHA1Base36 雜湊無效。",
	"apierror-invalidsha1hash": "所提供的 SHA1 雜湊無效。",
	"apierror-invalidtitle": "錯誤標題「$1」。",
	"apierror-invalidurlparam": "<var>$1urlparam</var> 的值無效(<kbd>$2=$3</kbd>)。",
	"apierror-invaliduser": "無效的使用者名稱「$1」。",
	"apierror-invaliduserid": "使用者 ID <var>$1</var> 無效。",
	"apierror-ipoutofrange": "請求的 CIDR 範圍「$1」不能大於 /$2 的 CIDR 限制。",
	"apierror-maxbytes": "參數 <var>$1</var> 不能大於 $2 {{PLURAL:$2|位元組|位元組}}",
	"apierror-maxchars": "參數 <var>$1</var> 不能多於 $2 個{{PLURAL:$2|字元|字元}}",
	"apierror-maxlag-generic": "正等待資料庫伺服器:已延遲 $1 {{PLURAL:$1|秒|秒}}。",
	"apierror-maxlag": "正等待$2:已延遲 $1 {{PLURAL:$1|秒|秒}}。",
	"apierror-mimesearchdisabled": "MIME 搜尋在 Miser 模式裡被停用。",
	"apierror-missingcontent-pageid": "遺失頁面 ID 為 $1 的內容。",
	"apierror-missingcontent-revid": "遺失修訂 ID 為 $1 的內容。",
	"apierror-missingcontent-revid-role": "作用$2的修訂 ID $1 缺少內容。",
	"apierror-missingparam-at-least-one-of": "參數$1{{PLURAL:$2||其一}}為必要。",
	"apierror-missingparam-one-of": "參數$1{{PLURAL:$2||其一}}為必要。",
	"apierror-missingparam": "<var>$1</var>參數必須被設定。",
	"apierror-missingrev-pageid": "沒有頁面 ID 為 $1 的目前修訂。",
	"apierror-missingrev-title": "沒有標題為$1的目前修訂。",
	"apierror-missingtitle-createonly": "遺失標題不能以 <kbd>create</kbd> 來保護。",
	"apierror-missingtitle": "您所指定的頁面不存在。",
	"apierror-missingtitle-byname": "頁面「$1」不存在。",
	"apierror-moduledisabled": "模組 <kbd>$1</kbd> 已停用。",
	"apierror-multival-only-one-of": "參數 <var>$1</var> 僅允許$2{{PLURAL:$3||其一}}。",
	"apierror-multpages": "<var>$1</var> 僅能以單一頁面使用。",
	"apierror-mustbeloggedin-changeauth": "必須登入,才能變更身分核對資取。",
	"apierror-mustbeloggedin-generic": "您必須登入。",
	"apierror-mustbeloggedin-linkaccounts": "您必須登入到連結帳號。",
	"apierror-mustbeloggedin-removeauth": "必須登入,才能移除身分核對資取。",
	"apierror-mustbeloggedin-uploadstash": "上傳儲藏僅對已登入使用者可用。",
	"apierror-mustbeloggedin": "您必須登入才能$1。",
	"apierror-mustbeposted": "<kbd>$1</kbd> 模組需要 POST 請求。",
	"apierror-mustpostparams": "在查詢字串裡找出以下{{PLURAL:$2|參數|參數}},而這應必須在 POST 正文裡:$1。",
	"apierror-noapiwrite": "透過 API 來編輯此 wiki 已被停用。",
	"apierror-nochanges": "沒有請求的更改。",
	"apierror-nodeleteablefile": "沒有這樣檔案的舊版本。",
	"apierror-no-direct-editing": "由$2所使用的內容模組$1不支援透過 API 來直接編輯。",
	"apierror-noedit-anon": "匿名使用者不可編輯頁面。",
	"apierror-noedit": "您沒有權限來編輯頁面。",
	"apierror-noimageredirect-anon": "匿名使用者不能建立圖片重新導向。",
	"apierror-noimageredirect": "您沒有權限來建立圖片重新導向。",
	"apierror-nosuchlogid": "沒有 ID 為 $1 的日誌項目。",
	"apierror-nosuchpageid": "沒有 ID 為 $1 的頁面。",
	"apierror-nosuchrcid": "沒有 ID 為 $1 的近期變更。",
	"apierror-nosuchrevid": "沒有 ID 為 $1 的修訂。",
	"apierror-nosuchsection": "沒有 ID 為 $1 的段落。",
	"apierror-nosuchsection-what": "在$2裡沒有段落$1。",
	"apierror-nosuchuserid": "沒有 ID 為 $1 的使用者。",
	"apierror-notpatrollable": "因內容過舊,修訂 r$1 無法巡查。",
	"apierror-nouploadmodule": "未設定上傳模組。",
	"apierror-opensearch-json-warnings": "警告不能以 OpenSearch JSON 格式表示。",
	"apierror-pagecannotexist": "命名空間不允許實際頁面。",
	"apierror-pagedeleted": "自從您取得時間戳記後,該頁面已被刪除。",
	"apierror-pagelang-disabled": "此 wiki 不允許更改頁面的語言。",
	"apierror-paramempty": "參數 <var>$1</var> 不能為空。",
	"apierror-parsetree-notwikitext": "<kbd>prop=parsetree</kbd> 僅支援用於 wikitext 內容。",
	"apierror-parsetree-notwikitext-title": "<kbd>prop=parsetree</kbd> 僅支援用於 wikitext 內容。$1使用內容模組 $2。",
	"apierror-pastexpiry": "期限時間「$1」已過。",
	"apierror-permissiondenied": "您沒有權限$1。",
	"apierror-permissiondenied-generic": "權限不足。",
	"apierror-permissiondenied-patrolflag": "您需要 <code>patrol</code> 或 <code>patrolmarks</code> 權限來請求巡查標記。",
	"apierror-permissiondenied-unblock": "您沒有權限來解封使用者。",
	"apierror-prefixsearchdisabled": "前綴搜尋在 Miser 模式裡被停用。",
	"apierror-promised-nonwrite-api": "HTTP 標頭 <code>Promise-Non-Write-API-Action</code> 不能發送至寫入模式 API 模組。",
	"apierror-protect-invalidaction": "無效的保護類型「$1」。",
	"apierror-protect-invalidlevel": "無效的保護層級「$1」。",
	"apierror-ratelimited": "您超過了您的速率限制,請稍後再試。",
	"apierror-readapidenied": "您需要有閱讀權限來使用此模組。",
	"apierror-readonly": "wiki 目前為唯讀模式。",
	"apierror-reauthenticate": "於本工作階段還未核對身分,請重新核對。",
	"apierror-redirect-appendonly": "您嘗試使用重新導向跟隨模式來編輯,這必須與 <kbd>section=new</kbd>、<var>prependtext</var>,或 <var>appendtext</var> 來結合使用。",
	"apierror-revdel-mutuallyexclusive": "同一欄位不可同時用在 <var>hide</var> 與 <var>show</var>。",
	"apierror-revdel-needtarget": "此 RevDel 類型需要目標標題。",
	"apierror-revdel-paramneeded": "至少需要 <var>hide</var> 與/或 <var>show</var> 其中的值。",
	"apierror-revisions-badid": "查無參數 <var>$1</var> 的修訂。",
	"apierror-revisions-norevids": "<var>revids</var> 參數不能與清單選項(<var>$1limit</var>、<var>$1startid</var>、<var>$1endid</var>、<kbd>$1dir=newer</kbd>、<var>$1user</var>、<var>$1excludeuser</var>、<var>$1start</var>、和 <var>$1end</var>)一起使用。",
	"apierror-revisions-singlepage": "<var>titles</var>、<var>pageids</var> 或產生器用於提供多個頁面,但 <var>$1limit</var>、<var>$1startid</var>、<var>$1endid</var>、<kbd>$1dir=newer</kbd>、<var>$1user</var>、<var>$1excludeuser</var>、<var>$1start</var>、以及 <var>$1end</var> 參數僅能用在單一頁面。",
	"apierror-revwrongpage": "r$1 不是$2的修訂。",
	"apierror-searchdisabled": "<var>$1</var>搜尋已停用。",
	"apierror-sectionreplacefailed": "無法合併更新的章節。",
	"apierror-sectionsnotsupported": "內容模組 $1 不支援段落。",
	"apierror-sectionsnotsupported-what": "$1 不支援段落。",
	"apierror-show": "不正確的參數 - 不可提供互斥值。",
	"apierror-siteinfo-includealldenied": "除非 <var>$wgShowHostnames</var> 設為真,否則無法檢視所有伺服器資訊。",
	"apierror-sizediffdisabled": "大小差異功能在 Miser 模式裡已停用。",
	"apierror-spamdetected": "您的編輯被拒絕,因為有包含部份垃圾訊息內容:<code>$1</code>。",
	"apierror-specialpage-cantexecute": "您沒有權限來查看此特殊頁面的結果。",
	"apierror-stashedfilenotfound": "在儲藏裡找不到檔案:$1。",
	"apierror-stashedit-missingtext": "給予的雜湊裡查無儲藏文字。",
	"apierror-stashfailed-complete": "已完成大量上傳,請檢查狀態以取得詳細資訊。",
	"apierror-stashfailed-nosession": "沒有帶此鍵的分塊上傳 session。",
	"apierror-stashfilestorage": "在儲藏裡不能儲存上傳:$1。",
	"apierror-stashinvalidfile": "無效的儲藏檔案。",
	"apierror-stashnosuchfilekey": "沒有這樣的檔案鍵:$1。",
	"apierror-stashpathinvalid": "不正確格式或是其它無效的檔案鍵:$1。",
	"apierror-stashwrongowner": "錯誤擁有者:$1",
	"apierror-stashzerolength": "檔案長度為零,且無法儲存於儲藏:$1。",
	"apierror-systemblocked": "您已被 MediaWiki 給自動封鎖。",
	"apierror-tempuserdisabled": "臨時使用者的帳號建立已禁用。",
	"apierror-tempuseracquirefailed": "無法取得臨時帳號的使用者名稱。",
	"apierror-templateexpansion-notwikitext": "模板擴展僅支援用於 wikitext 內容。$1使用內容模組 $2。",
	"apierror-toofewexpiries": "提供了 $1 個逾期{{PLURAL:$1|時間戳記|時間戳記}},所需要的{{PLURAL:$2|是|是}} $2 個。",
	"apierror-toomanyvalues": "替參數 <var>$1</var> 提供太多的值。限制為 $2。",
	"apierror-unknownaction": "指定的操作 <kbd>$1</kbd> 無法識別出。",
	"apierror-unknownerror-editpage": "不明編輯頁面錯誤:$1。",
	"apierror-unknownerror-nocode": "不明錯誤。",
	"apierror-unknownerror": "不明錯誤:「$1」。",
	"apierror-unknownformat": "無法識別的格式\"$1\"。",
	"apierror-unrecognizedparams": "無法識別的{{PLURAL:$2|參數|參數}}:$1。",
	"apierror-unrecognizedvalue": "無法識別參數 <var>$1</var> 的值:$2。",
	"apierror-unsupportedrepo": "本地端檔案儲存庫不支援查詢所有圖片。",
	"apierror-upload-filekeyneeded": "當 <var>offset</var> 不為零時,需提供 <var>filekey</var>。",
	"apierror-upload-filekeynotallowed": "當 <var>offset</var> 為零時,不需提供 <var>filekey</var>。",
	"apierror-upload-inprogress": "已開始由儲藏上傳",
	"apierror-upload-missingresult": "狀態資料裡沒有結果。",
	"apierror-urlparamnormal": "無法標準化$1的圖片參數。",
	"apierror-writeapidenied": "您不被允許透過 API 來編輯此 wiki。",
	"apiwarn-alldeletedrevisions-performance": "為了在產生標題時能有更好效能,請設定 <kbd>$1dir=newer</kbd>。",
	"apiwarn-badurlparam": "無法解析$2的 <var>$1urlparam</var>。這僅能用在寬度與高度。",
	"apiwarn-badutf8": "傳遞給 <var>$1</var> 的值包含無效或非標準化資料。正文資料應得是有效、不帶有 HT(\\t)、LF(\\n)、以及 CR(\\r)以外 C0 控制字元的 NFC 標準化萬國碼。",
	"apiwarn-checktoken-percentencoding": "檢查權杖中「+」等符號的URL百分比編碼正確。",
	"apiwarn-compare-no-next": "修訂 $2 是$1的最新修訂,<kbd>torelative=next</kbd> 目前沒有可用來比較的修訂。",
	"apiwarn-compare-no-prev": "修訂 $2 是$1的最初修訂,<kbd>torelative=prev</kbd> 目前沒有可用來比較的修訂。",
	"apiwarn-compare-nocontentmodel": "沒有可確定的內容模組,假定為 $1。",
	"apiwarn-deprecation-deletedrevs": "<kbd>list=deletedrevs</kbd> 已棄用。請改用 <kbd>prop=deletedrevisions</kbd> 或 <kbd>list=alldeletedrevisions</kbd>。",
	"apiwarn-deprecation-httpsexpected": "當應為 HTTPS 時,HTTP 要被使用。",
	"apiwarn-deprecation-login-botpw": "透過 <kbd>action=login</kbd> 的主帳號登入已棄用,並可能會在無警告的情況下停止運作。要繼續以 <kbd>action=clientlogin</kbd> 登入,請參閱 [[Special:BotPasswords]];若要繼續安全使用主帳號登入,則請參閱 <kbd>action=clientlogin</kbd>。",
	"apiwarn-deprecation-login-nobotpw": "透過 <kbd>action=login</kbd> 的主帳號登入已棄用,並可能會在無警告的情況下停止運作。若要安全登入,請參閱 <kbd>action=clientlogin</kbd>。",
	"apiwarn-deprecation-login-token": "透過 <kbd>action=login</kbd> 來取得權杖已棄用。請改用 <kbd>action=query&meta=tokens&type=login</kbd>。",
	"apiwarn-deprecation-missingparam": "因為未指定 <var>$1</var>,輸出內容使用到過去舊有的格式。該格式已棄用,並且往後都只會使用新格式。",
	"apiwarn-deprecation-parameter": "參數 <var>$1</var> 已棄用。",
	"apiwarn-deprecation-parse-headitems": "<kbd>prop=headitems</kbd> 自 MediaWiki 的 1.28 版本後已被棄用。當建立新 HTML 文件時請使用 <kbd>prop=headhtml</kbd>,或是當更新文件客戶端時請使用 <kbd>prop=modules|jsconfigvars</kbd>。",
	"apiwarn-deprecation-post-without-content-type": "POST 請求不需要 <code>Content-Type</code> 標頭,這會無法可靠運作。",
	"apiwarn-deprecation-purge-get": "透過 GET 方式使用的 <kbd>action=purge</kbd> 已棄用,請以 POST 替代。",
	"apiwarn-deprecation-withreplacement": "<kbd>$1</kbd> 已棄用,請改用 <kbd>$2</kbd>。",
	"apiwarn-difftohidden": "無法對 r$1 比較差異:內容被隱蔵。",
	"apiwarn-errorprinterfailed": "錯誤列印失敗。將在沒有參數的情況下重試。",
	"apiwarn-global-option-ignored": "選項 <var>$1</var> 已被全域覆蓋。您可以使用 <kbd>global=update</kbd> 來全域更改選項,或是使用 <kbd>global=override</kbd> 來設定本地端覆蓋。",
	"apiwarn-ignoring-invalid-templated-value": "當處理模板參數時,忽略在 <var>$1</var> 的值 <kbd>$2</kbd>。",
	"apiwarn-invalidcategory": "「$1」不是一個分類。",
	"apiwarn-invalidtitle": "「$1」不是一個有效標題。",
	"apiwarn-invalidxmlstylesheetext": "樣式表應要有 <code>.xsl</code> 副檔名。",
	"apiwarn-invalidxmlstylesheet": "指定了無效或不存在的樣式表。",
	"apiwarn-invalidxmlstylesheetns": "樣式表應在 {{ns:MediaWiki}} 命名空間。",
	"apiwarn-moduleswithoutvars": "屬性 <kbd>modules</kbd> 已被設定,但不是 <kbd>jsconfigvars</kbd> 或 <kbd>encodedjsconfigvars</kbd>。需要設置變數來讓模組使用合宜。",
	"apiwarn-notfile": "「$1」不是一個檔案。",
	"apiwarn-nothumb-noimagehandler": "無法建立縮圖,因為$1沒有相關的圖片處理器。",
	"apiwarn-parse-nocontentmodel": "未提供 <var>title</var> 或 <var>contentmodel</var>,應是 $1。",
	"apiwarn-parse-revidwithouttext": "<var>revid</var> 在不帶有 <var>text</var> 的情況下使用,且請求了已解析頁面屬性。請問您是指要使用 <var>oldid</var> 而不是 <var>revid</var> 嗎?",
	"apiwarn-parse-titlewithouttext": "<var>title</var> 在不帶有 <var>text</var> 的情況下使用,且請求了已解析頁面屬性。請問您是指要使用 <var>page</var> 而不是 <var>title</var> 嗎?",
	"apiwarn-redirectsandrevids": "重新導向處理不能與參數 <var>revids</var> 一同使用。任何 <var>revids</var> 所指向的重新導向都尚未被解決。",
	"apiwarn-tokens-origin": "當未套用相同來源方針,權杖可能無法取得。",
	"apiwarn-truncatedresult": "結果會被截短,否則將會大於 $1 位元組限制。",
	"apiwarn-unclearnowtimestamp": "傳遞給時間戳記參數 <var>$1</var> 的值「$2」已被棄用。若出於某些原因您需要不計算客戶端來明確指定時間,請使用 <kbd>now</kbd>。",
	"apiwarn-unrecognizedvalues": "參數 <var>$1</var> 有無法識別的{{PLURAL:$3|值|值}}:$2。",
	"apiwarn-unsupportedarray": "參數 <var>$1</var> 使用了不被支援的 PHP 陣列語法。",
	"apiwarn-urlparamwidth": "忽略設定在 <var>$1urlparam</var>($2)的寬度值,有助於導出自 <var>$1urlwidth</var>/<var>$1urlheight</var>($3)的寬度值。",
	"apiwarn-validationfailed-badchars": "在鍵裡的字元無效(僅允許 <code>a-z</code>、<code>A-Z</code>、<code>0-9</code>、<code>_</code>、和 <code>-</code> are allowed)。",
	"apiwarn-validationfailed-badpref": "不是有效的偏好設定。",
	"apiwarn-validationfailed-cannotset": "不能透過此模組設定。",
	"apiwarn-validationfailed-keytoolong": "鍵過長(不允許超過$1{{PLURAL:$1|位元組}})。",
	"apiwarn-validationfailed-valuetoolong": "值過長(不允許超過$1{{PLURAL:$1|位元組}})。",
	"apiwarn-validationfailed": "<kbd>$1</kbd>驗證錯誤:$2",
	"apiwarn-wgdebugapi": "<strong>安全警告:</strong><var>$wgDebugAPI</var> 已啟用。",
	"api-feed-error-title": "錯誤($1)",
	"api-usage-docref": "查看 $1 來了解 API 的使用。",
	"api-usage-mailinglist-ref": "在 &lt;https://lists.wikimedia.org/postorius/lists/mediawiki-api-announce.lists.wikimedia.org/&gt; 的 mediawiki-api-announce 郵件清單做出訂閱,來取得 API 棄用與重大修訂的通知。",
	"api-exception-trace": "$1位在$2的第$3行\n$4",
	"api-credits-header": "製作群",
	"api-credits": "API 開發人員:\n* Roan Kattouw (首席開發者 Sep 2007–2009)\n* Victor Vasiliev\n* Bryan Tong Minh\n* Sam Reed\n* Yuri Astrakhan (創立者,首席開發者 Sep 2006–Sep 2007)\n* Brad Jorsch (首席開發者 2013–2020)\n\n請傳送您的評論、建議以及問題至 mediawiki-api@lists.wikimedia.org\n或者回報問題至 https://phabricator.wikimedia.org/。"
}