lighthouse 13.3.0 → 13.4.0-dev.20260626

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (205) hide show
  1. package/.agents/skills/lighthouse-verification/SKILL.md +23 -0
  2. package/cli/cli-flags.d.ts +8 -9
  3. package/cli/test/smokehouse/config/exclusions.js +2 -0
  4. package/cli/test/smokehouse/version-check.d.ts +1 -1
  5. package/core/audits/accessibility/accesskeys.js +1 -1
  6. package/core/audits/accessibility/aria-allowed-attr.js +1 -1
  7. package/core/audits/accessibility/aria-allowed-role.js +1 -1
  8. package/core/audits/accessibility/aria-command-name.js +1 -1
  9. package/core/audits/accessibility/aria-conditional-attr.js +1 -1
  10. package/core/audits/accessibility/aria-deprecated-role.js +1 -1
  11. package/core/audits/accessibility/aria-dialog-name.js +1 -1
  12. package/core/audits/accessibility/aria-hidden-body.js +1 -1
  13. package/core/audits/accessibility/aria-hidden-focus.js +1 -1
  14. package/core/audits/accessibility/aria-input-field-name.js +1 -1
  15. package/core/audits/accessibility/aria-meter-name.js +1 -1
  16. package/core/audits/accessibility/aria-progressbar-name.js +1 -1
  17. package/core/audits/accessibility/aria-prohibited-attr.js +1 -1
  18. package/core/audits/accessibility/aria-required-attr.js +1 -1
  19. package/core/audits/accessibility/aria-required-children.js +1 -1
  20. package/core/audits/accessibility/aria-required-parent.js +1 -1
  21. package/core/audits/accessibility/aria-roles.js +1 -1
  22. package/core/audits/accessibility/aria-text.js +1 -1
  23. package/core/audits/accessibility/aria-toggle-field-name.js +1 -1
  24. package/core/audits/accessibility/aria-tooltip-name.js +1 -1
  25. package/core/audits/accessibility/aria-treeitem-name.js +1 -1
  26. package/core/audits/accessibility/aria-valid-attr-value.js +1 -1
  27. package/core/audits/accessibility/aria-valid-attr.js +1 -1
  28. package/core/audits/accessibility/autocomplete-valid.js +1 -1
  29. package/core/audits/accessibility/button-name.js +1 -1
  30. package/core/audits/accessibility/bypass.js +1 -1
  31. package/core/audits/accessibility/color-contrast.js +1 -1
  32. package/core/audits/accessibility/definition-list.js +1 -1
  33. package/core/audits/accessibility/dlitem.js +1 -1
  34. package/core/audits/accessibility/document-title.js +1 -1
  35. package/core/audits/accessibility/duplicate-id-aria.js +1 -1
  36. package/core/audits/accessibility/empty-heading.js +1 -1
  37. package/core/audits/accessibility/form-field-multiple-labels.js +1 -1
  38. package/core/audits/accessibility/frame-title.js +1 -1
  39. package/core/audits/accessibility/heading-order.js +1 -1
  40. package/core/audits/accessibility/html-has-lang.js +1 -1
  41. package/core/audits/accessibility/html-lang-valid.js +1 -1
  42. package/core/audits/accessibility/html-xml-lang-mismatch.js +1 -1
  43. package/core/audits/accessibility/identical-links-same-purpose.js +1 -1
  44. package/core/audits/accessibility/image-alt.js +1 -1
  45. package/core/audits/accessibility/image-redundant-alt.js +1 -1
  46. package/core/audits/accessibility/input-button-name.js +1 -1
  47. package/core/audits/accessibility/input-image-alt.js +1 -1
  48. package/core/audits/accessibility/label-content-name-mismatch.js +1 -1
  49. package/core/audits/accessibility/label.js +1 -1
  50. package/core/audits/accessibility/landmark-one-main.js +1 -1
  51. package/core/audits/accessibility/link-in-text-block.js +1 -1
  52. package/core/audits/accessibility/link-name.js +1 -1
  53. package/core/audits/accessibility/list.js +1 -1
  54. package/core/audits/accessibility/listitem.js +1 -1
  55. package/core/audits/accessibility/meta-refresh.js +1 -1
  56. package/core/audits/accessibility/meta-viewport.js +1 -1
  57. package/core/audits/accessibility/object-alt.js +1 -1
  58. package/core/audits/accessibility/presentation-role-conflict.js +1 -1
  59. package/core/audits/accessibility/select-name.js +1 -1
  60. package/core/audits/accessibility/skip-link.js +1 -1
  61. package/core/audits/accessibility/svg-img-alt.js +1 -1
  62. package/core/audits/accessibility/tabindex.js +1 -1
  63. package/core/audits/accessibility/table-duplicate-name.js +1 -1
  64. package/core/audits/accessibility/table-fake-caption.js +1 -1
  65. package/core/audits/accessibility/target-size.js +1 -1
  66. package/core/audits/accessibility/td-has-header.js +1 -1
  67. package/core/audits/accessibility/td-headers-attr.js +1 -1
  68. package/core/audits/accessibility/th-has-data-cells.js +1 -1
  69. package/core/audits/accessibility/valid-lang.js +1 -1
  70. package/core/audits/accessibility/video-caption.js +1 -1
  71. package/core/audits/agentic/llms-txt.d.ts +1 -0
  72. package/core/audits/agentic/llms-txt.js +14 -1
  73. package/core/audits/baseline.js +10 -12
  74. package/core/audits/dobetterweb/geolocation-on-start.js +2 -1
  75. package/core/audits/network-requests.js +2 -0
  76. package/core/audits/seo/canonical.js +19 -7
  77. package/core/audits/seo/robots-txt.d.ts +1 -0
  78. package/core/audits/seo/robots-txt.js +22 -8
  79. package/core/computed/js-bundles.d.ts +1 -1
  80. package/core/computed/load-simulator.d.ts +1 -1
  81. package/core/computed/metrics/first-contentful-paint-all-frames.d.ts +1 -1
  82. package/core/computed/metrics/first-contentful-paint.d.ts +1 -1
  83. package/core/computed/metrics/interactive.d.ts +1 -1
  84. package/core/computed/metrics/lantern-metric.d.ts +6 -6
  85. package/core/computed/metrics/largest-contentful-paint-all-frames.d.ts +1 -1
  86. package/core/computed/metrics/largest-contentful-paint.d.ts +1 -1
  87. package/core/computed/metrics/max-potential-fid.d.ts +1 -1
  88. package/core/computed/metrics/speed-index.d.ts +1 -1
  89. package/core/computed/metrics/time-to-first-byte.d.ts +1 -1
  90. package/core/computed/metrics/total-blocking-time.d.ts +1 -1
  91. package/core/computed/module-duplication.d.ts +1 -1
  92. package/core/computed/page-dependency-graph.d.ts +1 -1
  93. package/core/computed/unused-css.d.ts +1 -1
  94. package/core/config/agentic-browsing-config.d.ts +1 -0
  95. package/core/config/agentic-browsing-config.js +1 -0
  96. package/core/config/config-helpers.d.ts +1 -0
  97. package/core/config/config-helpers.js +1 -1
  98. package/core/config/config-plugin.d.ts +1 -0
  99. package/core/config/config-plugin.js +1 -0
  100. package/core/config/config.d.ts +1 -0
  101. package/core/config/config.js +1 -0
  102. package/core/config/constants.d.ts +1 -0
  103. package/core/config/constants.js +1 -0
  104. package/core/config/experimental-config.d.ts +1 -9
  105. package/core/config/experimental-config.js +2 -0
  106. package/core/config/filters.d.ts +1 -0
  107. package/core/config/filters.js +1 -0
  108. package/core/config/full-config.d.ts +1 -5
  109. package/core/config/full-config.js +2 -0
  110. package/core/config/lr-desktop-config.d.ts +1 -0
  111. package/core/config/lr-desktop-config.js +1 -0
  112. package/core/config/lr-mobile-config.d.ts +1 -5
  113. package/core/config/lr-mobile-config.js +2 -0
  114. package/core/config/perf-config.d.ts +1 -5
  115. package/core/config/perf-config.js +2 -0
  116. package/core/config/validation.d.ts +1 -0
  117. package/core/config/validation.js +1 -0
  118. package/core/gather/driver/execution-context.d.ts +23 -0
  119. package/core/gather/driver/execution-context.js +86 -1
  120. package/core/gather/driver/storage.js +13 -0
  121. package/core/gather/driver.d.ts +1 -1
  122. package/core/gather/gatherers/accessibility.js +1 -0
  123. package/core/gather/gatherers/agentic/llms-txt.js +5 -1
  124. package/core/gather/gatherers/seo/robots-txt.js +6 -1
  125. package/core/gather/gatherers/trace-elements.d.ts +4 -1
  126. package/core/gather/gatherers/trace-elements.js +24 -28
  127. package/core/gather/gatherers/webmcp-schema.js +9 -16
  128. package/core/gather/gatherers/webmcp.d.ts +5 -0
  129. package/core/gather/gatherers/webmcp.js +34 -27
  130. package/core/lib/baseline/web-features-data.json +1179 -0
  131. package/core/lib/baseline/web-features-metadata.json +1 -1
  132. package/core/lib/deprecations-strings.d.ts +113 -89
  133. package/core/lib/deprecations-strings.js +24 -0
  134. package/core/lib/script-helpers.js +13 -1
  135. package/core/scoring.d.ts +58 -58
  136. package/dist/report/bundle.esm.js +4 -7
  137. package/dist/report/flow.js +6 -9
  138. package/dist/report/standalone.js +20 -12
  139. package/flow-report/types/flow-report.d.ts +2 -2
  140. package/package.json +28 -28
  141. package/report/assets/styles.css +1 -4
  142. package/report/renderer/components.js +1 -1
  143. package/report/renderer/details-renderer.d.ts +6 -1
  144. package/report/renderer/details-renderer.js +11 -3
  145. package/report/renderer/explodey-gauge.js +9 -7
  146. package/report/renderer/i18n-formatter.d.ts +1 -1
  147. package/report/renderer/logger.js +18 -4
  148. package/report/renderer/text-encoding.js +1 -1
  149. package/report/types/html-renderer.d.ts +2 -2
  150. package/shared/localization/locales/ar-XB.json +290 -65
  151. package/shared/localization/locales/ar.json +290 -65
  152. package/shared/localization/locales/bg.json +290 -65
  153. package/shared/localization/locales/ca.json +295 -70
  154. package/shared/localization/locales/cs.json +290 -65
  155. package/shared/localization/locales/da.json +294 -69
  156. package/shared/localization/locales/de.json +295 -70
  157. package/shared/localization/locales/el.json +290 -65
  158. package/shared/localization/locales/en-GB.json +290 -65
  159. package/shared/localization/locales/en-US.json +86 -68
  160. package/shared/localization/locales/en-XA.json +253 -64
  161. package/shared/localization/locales/en-XL.json +86 -68
  162. package/shared/localization/locales/es-419.json +290 -65
  163. package/shared/localization/locales/es.json +298 -73
  164. package/shared/localization/locales/fi.json +290 -65
  165. package/shared/localization/locales/fil.json +290 -65
  166. package/shared/localization/locales/fr.json +294 -69
  167. package/shared/localization/locales/he.json +293 -68
  168. package/shared/localization/locales/hi.json +291 -66
  169. package/shared/localization/locales/hr.json +290 -65
  170. package/shared/localization/locales/hu.json +290 -65
  171. package/shared/localization/locales/id.json +290 -65
  172. package/shared/localization/locales/it.json +294 -69
  173. package/shared/localization/locales/ja.json +290 -65
  174. package/shared/localization/locales/ko.json +290 -65
  175. package/shared/localization/locales/lt.json +290 -65
  176. package/shared/localization/locales/lv.json +290 -65
  177. package/shared/localization/locales/nl.json +290 -65
  178. package/shared/localization/locales/no.json +290 -65
  179. package/shared/localization/locales/pl.json +290 -65
  180. package/shared/localization/locales/pt-PT.json +291 -66
  181. package/shared/localization/locales/pt.json +290 -65
  182. package/shared/localization/locales/ro.json +290 -65
  183. package/shared/localization/locales/ru.json +301 -76
  184. package/shared/localization/locales/sk.json +291 -66
  185. package/shared/localization/locales/sl.json +290 -65
  186. package/shared/localization/locales/sr-Latn.json +290 -65
  187. package/shared/localization/locales/sr.json +290 -65
  188. package/shared/localization/locales/sv.json +297 -72
  189. package/shared/localization/locales/ta.json +291 -66
  190. package/shared/localization/locales/te.json +293 -68
  191. package/shared/localization/locales/th.json +291 -66
  192. package/shared/localization/locales/tr.json +290 -65
  193. package/shared/localization/locales/uk.json +290 -65
  194. package/shared/localization/locales/vi.json +291 -66
  195. package/shared/localization/locales/zh-HK.json +292 -67
  196. package/shared/localization/locales/zh-TW.json +291 -66
  197. package/shared/localization/locales/zh.json +291 -66
  198. package/shared/types/shared.d.ts +1 -1
  199. package/tsconfig-base.json +2 -1
  200. package/tsconfig.json +2 -0
  201. package/types/artifacts.d.ts +1 -1
  202. package/types/internal/rxjs.d.ts +1 -1
  203. package/types/internal/smokehouse.d.ts +1 -1
  204. package/types.d.ts +2 -0
  205. package/types.js +11 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "core/audits/accessibility/accesskeys.js | description": {
3
- "message": "快速鍵可讓使用者快速聚焦網頁的特定部分。如要讓使用者正確瀏覽,每個快速鍵一律不可重複。[進一步瞭解快速鍵](https://dequeuniversity.com/rules/axe/4.11/accesskeys)。"
3
+ "message": "快速鍵可讓使用者快速聚焦網頁的特定部分。如要讓使用者正確瀏覽,每個快速鍵一律不可重複。[進一步瞭解快速鍵](https://dequeuniversity.com/rules/axe/4.12/accesskeys)。"
4
4
  },
5
5
  "core/audits/accessibility/accesskeys.js | failureTitle": {
6
6
  "message": "`[accesskey]` 的值重複"
@@ -9,7 +9,7 @@
9
9
  "message": "`[accesskey]` 值獨一無二"
10
10
  },
11
11
  "core/audits/accessibility/aria-allowed-attr.js | description": {
12
- "message": "每個 ARIA「`role`」都支援一部分特定的「`aria-*`」屬性。配對錯誤會導致「`aria-*`」屬性無效。[瞭解如何讓 ARIA 屬性與其角色相符](https://dequeuniversity.com/rules/axe/4.11/aria-allowed-attr)。"
12
+ "message": "每個 ARIA「`role`」都支援一部分特定的「`aria-*`」屬性。配對錯誤會導致「`aria-*`」屬性無效。[瞭解如何讓 ARIA 屬性與其角色相符](https://dequeuniversity.com/rules/axe/4.12/aria-allowed-attr)。"
13
13
  },
14
14
  "core/audits/accessibility/aria-allowed-attr.js | failureTitle": {
15
15
  "message": "`[aria-*]` 屬性與其角色不符"
@@ -18,7 +18,7 @@
18
18
  "message": "`[aria-*]` 屬性與其角色相符"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "很多 HTML 元素只能接受指派特定的 ARIA 角色。如果使用禁用的 ARIA 角色,可能會影響網頁的無障礙功能。[進一步瞭解 ARIA 角色](https://dequeuniversity.com/rules/axe/4.11/aria-allowed-role)。"
21
+ "message": "很多 HTML 元素只能接受指派特定的 ARIA 角色。如果使用禁用的 ARIA 角色,可能會影響網頁的無障礙功能。[進一步瞭解 ARIA 角色](https://dequeuniversity.com/rules/axe/4.12/aria-allowed-role)。"
22
22
  },
23
23
  "core/audits/accessibility/aria-allowed-role.js | failureTitle": {
24
24
  "message": "有不兼容的元素使用 ARIA 角色"
@@ -27,7 +27,7 @@
27
27
  "message": "使用 ARIA 角色的元素均為兼容元素"
28
28
  },
29
29
  "core/audits/accessibility/aria-command-name.js | description": {
30
- "message": "如果元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何讓指令元素更容易使用](https://dequeuniversity.com/rules/axe/4.11/aria-command-name)。"
30
+ "message": "如果元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何讓指令元素更容易使用](https://dequeuniversity.com/rules/axe/4.12/aria-command-name)。"
31
31
  },
32
32
  "core/audits/accessibility/aria-command-name.js | failureTitle": {
33
33
  "message": "`button`、`link` 和 `menuitem` 元素沒有無障礙名稱。"
@@ -36,7 +36,7 @@
36
36
  "message": "`button`、`link` 和 `menuitem` 元素具有無障礙名稱"
37
37
  },
38
38
  "core/audits/accessibility/aria-conditional-attr.js | description": {
39
- "message": "元素的部分 ARIA 屬性只能在特定條件下使用。[進一步瞭解條件式 ARIA 屬性](https://dequeuniversity.com/rules/axe/4.11/aria-conditional-attr)。"
39
+ "message": "元素的部分 ARIA 屬性只能在特定條件下使用。[進一步瞭解條件式 ARIA 屬性](https://dequeuniversity.com/rules/axe/4.12/aria-conditional-attr)。"
40
40
  },
41
41
  "core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
42
42
  "message": "未按照指定方式在元素角色中使用 ARIA 屬性"
@@ -45,7 +45,7 @@
45
45
  "message": "按照指定方式在元素角色中使用 ARIA 屬性"
46
46
  },
47
47
  "core/audits/accessibility/aria-deprecated-role.js | description": {
48
- "message": "輔助技術可能無法正確處理已淘汰的 ARIA 角色。[進一步瞭解已淘汰的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.11/aria-deprecated-role)。"
48
+ "message": "輔助技術可能無法正確處理已淘汰的 ARIA 角色。[進一步瞭解已淘汰的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.12/aria-deprecated-role)。"
49
49
  },
50
50
  "core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
51
51
  "message": "使用已淘汰的 ARIA 角色"
@@ -54,7 +54,7 @@
54
54
  "message": "未使用已淘汰的 ARIA 角色"
55
55
  },
56
56
  "core/audits/accessibility/aria-dialog-name.js | description": {
57
- "message": "如果 ARIA 對話框元素沒有無障礙名稱,螢幕閱讀器使用者就可能無法分辨這些元素的用途。[瞭解如何讓 ARIA 對話框元素更易用](https://dequeuniversity.com/rules/axe/4.11/aria-dialog-name)。"
57
+ "message": "如果 ARIA 對話框元素沒有無障礙名稱,螢幕閱讀器使用者就可能無法分辨這些元素的用途。[瞭解如何讓 ARIA 對話框元素更易用](https://dequeuniversity.com/rules/axe/4.12/aria-dialog-name)。"
58
58
  },
59
59
  "core/audits/accessibility/aria-dialog-name.js | failureTitle": {
60
60
  "message": "含有 `role=\"dialog\"` 或 `role=\"alertdialog\"` 的元素沒有無障礙名稱。"
@@ -63,7 +63,7 @@
63
63
  "message": "含有 `role=\"dialog\"` 或 `role=\"alertdialog\"` 的元素具有無障礙名稱。"
64
64
  },
65
65
  "core/audits/accessibility/aria-hidden-body.js | description": {
66
- "message": "在 `<body>` 文件上設定 `aria-hidden=\"true\"` 時,輔助技術 (例如螢幕閱讀器) 的運作將無法保持一致。[瞭解 `aria-hidden` 如何影響文件內文](https://dequeuniversity.com/rules/axe/4.11/aria-hidden-body)。"
66
+ "message": "在 `<body>` 文件上設定 `aria-hidden=\"true\"` 時,輔助技術 (例如螢幕閱讀器) 的運作將無法保持一致。[瞭解 `aria-hidden` 如何影響文件內文](https://dequeuniversity.com/rules/axe/4.12/aria-hidden-body)。"
67
67
  },
68
68
  "core/audits/accessibility/aria-hidden-body.js | failureTitle": {
69
69
  "message": "`[aria-hidden=\"true\"]` 有在文件 `<body>` 上顯示"
@@ -72,7 +72,7 @@
72
72
  "message": "`[aria-hidden=\"true\"]` 沒有在文件 `<body>` 上顯示"
73
73
  },
74
74
  "core/audits/accessibility/aria-hidden-focus.js | description": {
75
- "message": "`[aria-hidden=\"true\"]` 元素中可聚焦的子代會禁止使用輔助技術 (例如螢幕閱讀器) 的使用者運用這些互動元素。[瞭解 `aria-hidden` 如何影響可聚焦的元素](https://dequeuniversity.com/rules/axe/4.11/aria-hidden-focus)。"
75
+ "message": "`[aria-hidden=\"true\"]` 元素中可聚焦的子代會禁止使用輔助技術 (例如螢幕閱讀器) 的使用者運用這些互動元素。[瞭解 `aria-hidden` 如何影響可聚焦的元素](https://dequeuniversity.com/rules/axe/4.12/aria-hidden-focus)。"
76
76
  },
77
77
  "core/audits/accessibility/aria-hidden-focus.js | failureTitle": {
78
78
  "message": "`[aria-hidden=\"true\"]` 元素含有可聚焦的子代"
@@ -81,7 +81,7 @@
81
81
  "message": "`[aria-hidden=\"true\"]` 元素不含可聚焦的子代"
82
82
  },
83
83
  "core/audits/accessibility/aria-input-field-name.js | description": {
84
- "message": "如果輸入欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解輸入欄位標籤](https://dequeuniversity.com/rules/axe/4.11/aria-input-field-name)。"
84
+ "message": "如果輸入欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解輸入欄位標籤](https://dequeuniversity.com/rules/axe/4.12/aria-input-field-name)。"
85
85
  },
86
86
  "core/audits/accessibility/aria-input-field-name.js | failureTitle": {
87
87
  "message": "ARIA 輸入欄位沒有輔助名稱"
@@ -90,7 +90,7 @@
90
90
  "message": "ARIA 輸入欄位有輔助名稱"
91
91
  },
92
92
  "core/audits/accessibility/aria-meter-name.js | description": {
93
- "message": "如果計量器元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`meter`元素](https://dequeuniversity.com/rules/axe/4.11/aria-meter-name)。"
93
+ "message": "如果計量器元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`meter`元素](https://dequeuniversity.com/rules/axe/4.12/aria-meter-name)。"
94
94
  },
95
95
  "core/audits/accessibility/aria-meter-name.js | failureTitle": {
96
96
  "message": "ARIA `meter` 元素沒有無障礙名稱。"
@@ -99,7 +99,7 @@
99
99
  "message": "ARIA `meter` 元素具有無障礙名稱"
100
100
  },
101
101
  "core/audits/accessibility/aria-progressbar-name.js | description": {
102
- "message": "如果 `progressbar` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[瞭解如何為 `progressbar` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.11/aria-progressbar-name)。"
102
+ "message": "如果 `progressbar` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[瞭解如何為 `progressbar` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.12/aria-progressbar-name)。"
103
103
  },
104
104
  "core/audits/accessibility/aria-progressbar-name.js | failureTitle": {
105
105
  "message": "ARIA `progressbar` 元素沒有無障礙名稱。"
@@ -108,7 +108,7 @@
108
108
  "message": "ARIA `progressbar` 元素具有無障礙名稱"
109
109
  },
110
110
  "core/audits/accessibility/aria-prohibited-attr.js | description": {
111
- "message": "如果在禁止使用 ARIA 屬性的角色中使用這些屬性,可能會導致輔助技術使用者無法取得重要資料。[進一步瞭解禁止使用的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.11/aria-prohibited-attr)。"
111
+ "message": "如果在禁止使用 ARIA 屬性的角色中使用這些屬性,可能會導致輔助技術使用者無法取得重要資料。[進一步瞭解禁止使用的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.12/aria-prohibited-attr)。"
112
112
  },
113
113
  "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
114
  "message": "多項元素使用禁用的 ARIA 屬性"
@@ -117,7 +117,7 @@
117
117
  "message": "元素僅使用允許的 ARIA 屬性"
118
118
  },
119
119
  "core/audits/accessibility/aria-required-attr.js | description": {
120
- "message": "部分 ARIA 角色的必要屬性會向螢幕閱讀器的使用者說明元素狀態。[進一步瞭解角色和必要屬性](https://dequeuniversity.com/rules/axe/4.11/aria-required-attr)。"
120
+ "message": "部分 ARIA 角色的必要屬性會向螢幕閱讀器的使用者說明元素狀態。[進一步瞭解角色和必要屬性](https://dequeuniversity.com/rules/axe/4.12/aria-required-attr)。"
121
121
  },
122
122
  "core/audits/accessibility/aria-required-attr.js | failureTitle": {
123
123
  "message": "`[role]` 未具備所有必要的 `[aria-*]` 屬性"
@@ -126,7 +126,7 @@
126
126
  "message": "`[role]` 具備所有必要的 `[aria-*]` 屬性"
127
127
  },
128
128
  "core/audits/accessibility/aria-required-children.js | description": {
129
- "message": "部分 ARIA 父角色必須包含特定的子角色,才能正確執行無障礙功能。[進一步瞭解角色和需要的子元素](https://dequeuniversity.com/rules/axe/4.11/aria-required-children)。"
129
+ "message": "部分 ARIA 父角色必須包含特定的子角色,才能正確執行無障礙功能。[進一步瞭解角色和需要的子元素](https://dequeuniversity.com/rules/axe/4.12/aria-required-children)。"
130
130
  },
131
131
  "core/audits/accessibility/aria-required-children.js | failureTitle": {
132
132
  "message": "包含 ARIA `[role]` 且要求子元素包含特定 `[role]` 的元素缺少部分或全部的必要子元素。"
@@ -135,7 +135,7 @@
135
135
  "message": "包含 ARIA `[role]` 且要求子元素包含特定 `[role]` 的元素具有全部必要的子元素。"
136
136
  },
137
137
  "core/audits/accessibility/aria-required-parent.js | description": {
138
- "message": "部分 ARIA 子角色必須包括在特定的父角色中,才能正確執行無障礙功能。[進一步瞭解 ARIA 角色和需要的父元素](https://dequeuniversity.com/rules/axe/4.11/aria-required-parent)。"
138
+ "message": "部分 ARIA 子角色必須包括在特定的父角色中,才能正確執行無障礙功能。[進一步瞭解 ARIA 角色和需要的父元素](https://dequeuniversity.com/rules/axe/4.12/aria-required-parent)。"
139
139
  },
140
140
  "core/audits/accessibility/aria-required-parent.js | failureTitle": {
141
141
  "message": "`[role]` 未包含在必要的父元素中"
@@ -144,7 +144,7 @@
144
144
  "message": "`[role]` 已包含在必要的父元素中"
145
145
  },
146
146
  "core/audits/accessibility/aria-roles.js | description": {
147
- "message": "ARIA 角色必須具備有效的值,才能執行無障礙功能。[進一步瞭解有效的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.11/aria-roles)。"
147
+ "message": "ARIA 角色必須具備有效的值,才能執行無障礙功能。[進一步瞭解有效的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.12/aria-roles)。"
148
148
  },
149
149
  "core/audits/accessibility/aria-roles.js | failureTitle": {
150
150
  "message": "`[role]` 值無效"
@@ -153,7 +153,7 @@
153
153
  "message": "`[role]` 值有效"
154
154
  },
155
155
  "core/audits/accessibility/aria-text.js | description": {
156
- "message": "在由標記分割的文字節點前後新增 `role=text`,VoiceOver 就會將其視為一個詞組,但系統不會通知該元素的可聚焦子元素。[進一步瞭解 `role=text` 屬性](https://dequeuniversity.com/rules/axe/4.11/aria-text)。"
156
+ "message": "在由標記分割的文字節點前後新增 `role=text`,VoiceOver 就會將其視為一個詞組,但系統不會通知該元素的可聚焦子元素。[進一步瞭解 `role=text` 屬性](https://dequeuniversity.com/rules/axe/4.12/aria-text)。"
157
157
  },
158
158
  "core/audits/accessibility/aria-text.js | failureTitle": {
159
159
  "message": "具有 `role=text` 屬性的元素有可聚焦的子元素。"
@@ -162,7 +162,7 @@
162
162
  "message": "具有 `role=text` 屬性的元素沒有可聚焦的子元素。"
163
163
  },
164
164
  "core/audits/accessibility/aria-toggle-field-name.js | description": {
165
- "message": "如果切換欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解切換欄位](https://dequeuniversity.com/rules/axe/4.11/aria-toggle-field-name)。"
165
+ "message": "如果切換欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解切換欄位](https://dequeuniversity.com/rules/axe/4.12/aria-toggle-field-name)。"
166
166
  },
167
167
  "core/audits/accessibility/aria-toggle-field-name.js | failureTitle": {
168
168
  "message": "ARIA 切換欄位沒有輔助名稱"
@@ -171,7 +171,7 @@
171
171
  "message": "ARIA 切換欄位有輔助名稱"
172
172
  },
173
173
  "core/audits/accessibility/aria-tooltip-name.js | description": {
174
- "message": "如果提示元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`tooltip`元素](https://dequeuniversity.com/rules/axe/4.11/aria-tooltip-name)。"
174
+ "message": "如果提示元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`tooltip`元素](https://dequeuniversity.com/rules/axe/4.12/aria-tooltip-name)。"
175
175
  },
176
176
  "core/audits/accessibility/aria-tooltip-name.js | failureTitle": {
177
177
  "message": "ARIA `tooltip` 元素沒有無障礙名稱。"
@@ -180,7 +180,7 @@
180
180
  "message": "ARIA `tooltip` 元素具有無障礙名稱"
181
181
  },
182
182
  "core/audits/accessibility/aria-treeitem-name.js | description": {
183
- "message": "如果 `treeitem` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[進一步瞭解如何為 `treeitem` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.11/aria-treeitem-name)。"
183
+ "message": "如果 `treeitem` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[進一步瞭解如何為 `treeitem` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.12/aria-treeitem-name)。"
184
184
  },
185
185
  "core/audits/accessibility/aria-treeitem-name.js | failureTitle": {
186
186
  "message": "ARIA `treeitem` 元素沒有無障礙名稱。"
@@ -189,7 +189,7 @@
189
189
  "message": "ARIA `treeitem` 元素具有無障礙名稱"
190
190
  },
191
191
  "core/audits/accessibility/aria-valid-attr-value.js | description": {
192
- "message": "輔助技術 (如螢幕閱讀器) 無法解讀具有無效值的 ARIA 屬性。[進一步瞭解 ARIA 屬性的有效值](https://dequeuniversity.com/rules/axe/4.11/aria-valid-attr-value)。"
192
+ "message": "輔助技術 (如螢幕閱讀器) 無法解讀具有無效值的 ARIA 屬性。[進一步瞭解 ARIA 屬性的有效值](https://dequeuniversity.com/rules/axe/4.12/aria-valid-attr-value)。"
193
193
  },
194
194
  "core/audits/accessibility/aria-valid-attr-value.js | failureTitle": {
195
195
  "message": "`[aria-*]` 屬性並無有效的值"
@@ -198,7 +198,7 @@
198
198
  "message": "`[aria-*]` 屬性具備有效的值"
199
199
  },
200
200
  "core/audits/accessibility/aria-valid-attr.js | description": {
201
- "message": "輔助技術 (例如螢幕閱讀器) 無法解讀名稱無效的 ARIA 屬性。[進一步瞭解有效的 ARIA 屬性](https://dequeuniversity.com/rules/axe/4.11/aria-valid-attr)。"
201
+ "message": "輔助技術 (例如螢幕閱讀器) 無法解讀名稱無效的 ARIA 屬性。[進一步瞭解有效的 ARIA 屬性](https://dequeuniversity.com/rules/axe/4.12/aria-valid-attr)。"
202
202
  },
203
203
  "core/audits/accessibility/aria-valid-attr.js | failureTitle": {
204
204
  "message": "`[aria-*]` 屬性無效或拼字錯誤"
@@ -206,11 +206,20 @@
206
206
  "core/audits/accessibility/aria-valid-attr.js | title": {
207
207
  "message": "`[aria-*]` 屬性有效且無拼字錯誤"
208
208
  },
209
+ "core/audits/accessibility/autocomplete-valid.js | description": {
210
+ "message": "`autocomplete` 屬性值必須有效且正確套用,螢幕閱讀器才能正常運作。[進一步瞭解有效的自動完成值](https://dequeuniversity.com/rules/axe/4.12/autocomplete-valid)。"
211
+ },
212
+ "core/audits/accessibility/autocomplete-valid.js | failureTitle": {
213
+ "message": "`autocomplete` 屬性使用方式不當"
214
+ },
215
+ "core/audits/accessibility/autocomplete-valid.js | title": {
216
+ "message": "`autocomplete` 屬性使用方式正確"
217
+ },
209
218
  "core/audits/accessibility/axe-audit.js | failingElementsHeader": {
210
219
  "message": "審核失敗的元素"
211
220
  },
212
221
  "core/audits/accessibility/button-name.js | description": {
213
- "message": "如果按鈕沒有無障礙名稱,螢幕閱讀器只會讀出「按鈕」,導致依賴螢幕閱讀器的使用者無法使用該按鈕。[瞭解如何讓使用者更容易使用按鈕](https://dequeuniversity.com/rules/axe/4.11/button-name)。"
222
+ "message": "如果按鈕沒有無障礙名稱,螢幕閱讀器只會讀出「按鈕」,導致依賴螢幕閱讀器的使用者無法使用該按鈕。[瞭解如何讓使用者更容易使用按鈕](https://dequeuniversity.com/rules/axe/4.12/button-name)。"
214
223
  },
215
224
  "core/audits/accessibility/button-name.js | failureTitle": {
216
225
  "message": "按鈕沒有可存取的名稱"
@@ -219,7 +228,7 @@
219
228
  "message": "按鈕有可存取的名稱"
220
229
  },
221
230
  "core/audits/accessibility/bypass.js | description": {
222
- "message": "為重複的內容新增略過選項,可提高鍵盤使用者的網頁瀏覽效率。[進一步瞭解如何繞過區塊](https://dequeuniversity.com/rules/axe/4.11/bypass)。"
231
+ "message": "為重複的內容新增略過選項,可提高鍵盤使用者的網頁瀏覽效率。[進一步瞭解如何繞過區塊](https://dequeuniversity.com/rules/axe/4.12/bypass)。"
223
232
  },
224
233
  "core/audits/accessibility/bypass.js | failureTitle": {
225
234
  "message": "網頁中沒有標題、略過連結或地標區域"
@@ -228,7 +237,7 @@
228
237
  "message": "網頁包含標題、略過連結或地標區域"
229
238
  },
230
239
  "core/audits/accessibility/color-contrast.js | description": {
231
- "message": "很多使用者難以閱讀或無法閱讀低對比度的文字。[瞭解如何提供充足的顏色對比度](https://dequeuniversity.com/rules/axe/4.11/color-contrast)。"
240
+ "message": "很多使用者難以閱讀或無法閱讀低對比度的文字。[瞭解如何提供充足的顏色對比度](https://dequeuniversity.com/rules/axe/4.12/color-contrast)。"
232
241
  },
233
242
  "core/audits/accessibility/color-contrast.js | failureTitle": {
234
243
  "message": "背景和前景顏色沒有足夠的對比度。"
@@ -237,7 +246,7 @@
237
246
  "message": "背景和前景顏色有足夠的對比度"
238
247
  },
239
248
  "core/audits/accessibility/definition-list.js | description": {
240
- "message": "如果定義清單的標記不正確,螢幕閱讀器可能會輸出令人混淆或不正確的內容。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.11/definition-list)。"
249
+ "message": "如果定義清單的標記不正確,螢幕閱讀器可能會輸出令人混淆或不正確的內容。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.12/definition-list)。"
241
250
  },
242
251
  "core/audits/accessibility/definition-list.js | failureTitle": {
243
252
  "message": "`<dl>` 並非只包含排序正確的 `<dt>` 和 `<dd>` 群組、`<script>`、`<template>` 或 `<div>` 元素。"
@@ -246,7 +255,7 @@
246
255
  "message": "`<dl>` 只包含排序正確的 `<dt>` 和 `<dd>` 群組、`<script>`、`<template>` 或 `<div>` 元素。"
247
256
  },
248
257
  "core/audits/accessibility/dlitem.js | description": {
249
- "message": "定義清單項目 (`<dt>` 和 `<dd>`) 必須納入在父 `<dl>` 元素中,才能確保螢幕閱讀器正確朗讀這些項目。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.11/dlitem)。"
258
+ "message": "定義清單項目 (`<dt>` 和 `<dd>`) 必須納入在父 `<dl>` 元素中,才能確保螢幕閱讀器正確朗讀這些項目。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.12/dlitem)。"
250
259
  },
251
260
  "core/audits/accessibility/dlitem.js | failureTitle": {
252
261
  "message": "定義清單項目未納入在 `<dl>` 元素中"
@@ -255,7 +264,7 @@
255
264
  "message": "定義清單項目已納入在 `<dl>` 元素中"
256
265
  },
257
266
  "core/audits/accessibility/document-title.js | description": {
258
- "message": "標題可讓螢幕閱讀器使用者概略瞭解網頁內容;搜尋引擎使用者經常需要使用此資料,判斷網頁內容是否與他們的搜尋查詢有關。[進一步瞭解文件標題](https://dequeuniversity.com/rules/axe/4.11/document-title)。"
267
+ "message": "標題可讓螢幕閱讀器使用者概略瞭解網頁內容;搜尋引擎使用者經常需要使用此資料,判斷網頁內容是否與他們的搜尋查詢有關。[進一步瞭解文件標題](https://dequeuniversity.com/rules/axe/4.12/document-title)。"
259
268
  },
260
269
  "core/audits/accessibility/document-title.js | failureTitle": {
261
270
  "message": "文件並無有效的 `<title>` 元素"
@@ -264,7 +273,7 @@
264
273
  "message": "文件具備 `<title>` 元素"
265
274
  },
266
275
  "core/audits/accessibility/duplicate-id-aria.js | description": {
267
- "message": "ARIA ID 的值不可重複,以免輔助技術忽略其他例項。[瞭解如何修正重複的 ARIA ID](https://dequeuniversity.com/rules/axe/4.11/duplicate-id-aria)。"
276
+ "message": "ARIA ID 的值不可重複,以免輔助技術忽略其他例項。[瞭解如何修正重複的 ARIA ID](https://dequeuniversity.com/rules/axe/4.12/duplicate-id-aria)。"
268
277
  },
269
278
  "core/audits/accessibility/duplicate-id-aria.js | failureTitle": {
270
279
  "message": "ARIA ID 重複"
@@ -273,7 +282,7 @@
273
282
  "message": "ARIA ID 沒有重複"
274
283
  },
275
284
  "core/audits/accessibility/empty-heading.js | description": {
276
- "message": "如果 heading 沒有內容或無障礙設計的文字,螢幕閱讀器使用者就無法存取網頁結構中的資料。[進一步瞭解 headings](https://dequeuniversity.com/rules/axe/4.11/empty-heading)。"
285
+ "message": "如果 heading 沒有內容或無障礙設計的文字,螢幕閱讀器使用者就無法存取網頁結構中的資料。[進一步瞭解 headings](https://dequeuniversity.com/rules/axe/4.12/empty-heading)。"
277
286
  },
278
287
  "core/audits/accessibility/empty-heading.js | failureTitle": {
279
288
  "message": "Heading 元素不含任何內容。"
@@ -282,7 +291,7 @@
282
291
  "message": "所有 heading 元素都包含內容。"
283
292
  },
284
293
  "core/audits/accessibility/form-field-multiple-labels.js | description": {
285
- "message": "使用第一個、最後一個或所有標籤的螢幕閱讀器等輔助技術,可能無法將包含多個標籤的表格欄位正確讀出。[瞭解如何使用表格標籤](https://dequeuniversity.com/rules/axe/4.11/form-field-multiple-labels)。"
294
+ "message": "使用第一個、最後一個或所有標籤的螢幕閱讀器等輔助技術,可能無法將包含多個標籤的表格欄位正確讀出。[瞭解如何使用表格標籤](https://dequeuniversity.com/rules/axe/4.12/form-field-multiple-labels)。"
286
295
  },
287
296
  "core/audits/accessibility/form-field-multiple-labels.js | failureTitle": {
288
297
  "message": "表格欄位含有多個標籤"
@@ -291,7 +300,7 @@
291
300
  "message": "沒有表格欄位含有多個標籤"
292
301
  },
293
302
  "core/audits/accessibility/frame-title.js | description": {
294
- "message": "螢幕閱讀器使用者依賴頁框標題來瞭解頁框內容。[進一步瞭解頁框標題](https://dequeuniversity.com/rules/axe/4.11/frame-title)。"
303
+ "message": "螢幕閱讀器使用者依賴頁框標題來瞭解頁框內容。[進一步瞭解頁框標題](https://dequeuniversity.com/rules/axe/4.12/frame-title)。"
295
304
  },
296
305
  "core/audits/accessibility/frame-title.js | failureTitle": {
297
306
  "message": "`<frame>` 或 `<iframe>` 元素沒有標題"
@@ -300,7 +309,7 @@
300
309
  "message": "`<frame>` 或 `<iframe>` 元素包含名稱"
301
310
  },
302
311
  "core/audits/accessibility/heading-order.js | description": {
303
- "message": "排序正確且未略過層級的標題可傳達網頁的語意結構,讓您在使用輔助技術時更容易瀏覽及理解。[進一步瞭解標題排序](https://dequeuniversity.com/rules/axe/4.11/heading-order)。"
312
+ "message": "排序正確且未略過層級的標題可傳達網頁的語意結構,讓您在使用輔助技術時更容易瀏覽及理解。[進一步瞭解標題排序](https://dequeuniversity.com/rules/axe/4.12/heading-order)。"
304
313
  },
305
314
  "core/audits/accessibility/heading-order.js | failureTitle": {
306
315
  "message": "標題元素未遞減排序"
@@ -309,7 +318,7 @@
309
318
  "message": "標題元素已遞減排序"
310
319
  },
311
320
  "core/audits/accessibility/html-has-lang.js | description": {
312
- "message": "如果網頁未指定 `lang` 屬性,螢幕閱讀器會假設網頁採用使用者設定螢幕閱讀器時選擇的預設語言。如果網頁實際並非採用預設語言,螢幕閱讀器可能無法正確朗讀文字。[進一步瞭解 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.11/html-has-lang)。"
321
+ "message": "如果網頁未指定 `lang` 屬性,螢幕閱讀器會假設網頁採用使用者設定螢幕閱讀器時選擇的預設語言。如果網頁實際並非採用預設語言,螢幕閱讀器可能無法正確朗讀文字。[進一步瞭解 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.12/html-has-lang)。"
313
322
  },
314
323
  "core/audits/accessibility/html-has-lang.js | failureTitle": {
315
324
  "message": "`<html>` 元素並無 `[lang]` 屬性"
@@ -318,7 +327,7 @@
318
327
  "message": "`<html>` 元素具備 `[lang]` 屬性"
319
328
  },
320
329
  "core/audits/accessibility/html-lang-valid.js | description": {
321
- "message": "指定有效的 [BCP 47 語言](https://www.w3.org/International/questions/qa-choosing-language-tags#question)可協助螢幕閱讀器正確朗讀文字。[瞭解如何使用 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.11/html-lang-valid)。"
330
+ "message": "指定有效的 [BCP 47 語言](https://www.w3.org/International/questions/qa-choosing-language-tags#question)可協助螢幕閱讀器正確朗讀文字。[瞭解如何使用 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.12/html-lang-valid)。"
322
331
  },
323
332
  "core/audits/accessibility/html-lang-valid.js | failureTitle": {
324
333
  "message": "`<html>` 元素的 `[lang]` 屬性並無有效的值。"
@@ -327,7 +336,7 @@
327
336
  "message": "`<html>` 元素的 `[lang]` 屬性具備有效的值"
328
337
  },
329
338
  "core/audits/accessibility/html-xml-lang-mismatch.js | description": {
330
- "message": "如果網頁指定的語言不一致,螢幕閱讀器可能無法正確朗讀頁面上的文字。[進一步瞭解此 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.11/html-xml-lang-mismatch)。"
339
+ "message": "如果網頁指定的語言不一致,螢幕閱讀器可能無法正確朗讀頁面上的文字。[進一步瞭解此 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.12/html-xml-lang-mismatch)。"
331
340
  },
332
341
  "core/audits/accessibility/html-xml-lang-mismatch.js | failureTitle": {
333
342
  "message": "`<html>` 元素的 `[xml:lang]` 屬性與`[lang]` 屬性中的基本語言不同。"
@@ -336,7 +345,7 @@
336
345
  "message": "`<html>` 元素的 `[xml:lang]` 屬性與 `[lang]` 屬性的基本語言相同。"
337
346
  },
338
347
  "core/audits/accessibility/identical-links-same-purpose.js | description": {
339
- "message": "具有相同目的地的連結應提供相同的描述,協助使用者瞭解連結的用途,並決定是否前往。[進一步瞭解相同連結](https://dequeuniversity.com/rules/axe/4.11/identical-links-same-purpose)。"
348
+ "message": "具有相同目的地的連結應提供相同的描述,協助使用者瞭解連結的用途,並決定是否前往。[進一步瞭解相同連結](https://dequeuniversity.com/rules/axe/4.12/identical-links-same-purpose)。"
340
349
  },
341
350
  "core/audits/accessibility/identical-links-same-purpose.js | failureTitle": {
342
351
  "message": "相同連結的用途不同。"
@@ -345,7 +354,7 @@
345
354
  "message": "相同的連結用途相同。"
346
355
  },
347
356
  "core/audits/accessibility/image-alt.js | description": {
348
- "message": "資訊型元素應提供簡短貼切的替代文字。只要將 alt 屬性留空,系統便會忽略該裝飾元素。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.11/image-alt)。"
357
+ "message": "資訊型元素應提供簡短貼切的替代文字。只要將 alt 屬性留空,系統便會忽略該裝飾元素。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.12/image-alt)。"
349
358
  },
350
359
  "core/audits/accessibility/image-alt.js | failureTitle": {
351
360
  "message": "圖片元素並無 `[alt]` 屬性"
@@ -354,7 +363,7 @@
354
363
  "message": "圖片元素具有 `[alt]` 屬性"
355
364
  },
356
365
  "core/audits/accessibility/image-redundant-alt.js | description": {
357
- "message": "資訊型元素應提供簡短貼切的替代文字。替代文字如果與連結或圖片旁的文字完全相同,可能會對螢幕閱讀器使用者造成混淆,因為系統會朗讀同樣的文字兩次。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.11/image-redundant-alt)。"
366
+ "message": "資訊型元素應提供簡短貼切的替代文字。替代文字如果與連結或圖片旁的文字完全相同,可能會對螢幕閱讀器使用者造成混淆,因為系統會朗讀同樣的文字兩次。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.12/image-redundant-alt)。"
358
367
  },
359
368
  "core/audits/accessibility/image-redundant-alt.js | failureTitle": {
360
369
  "message": "圖片元素所含「`[alt]`」屬性有多餘的文字。"
@@ -363,7 +372,7 @@
363
372
  "message": "圖片元素所含「`[alt]`」屬性沒有多餘的文字。"
364
373
  },
365
374
  "core/audits/accessibility/input-button-name.js | description": {
366
- "message": "您可以為輸入按鈕新增可識別且可存取的文字,協助螢幕閱讀器使用者瞭解輸入按鈕的用途。[進一步瞭解輸入按鈕](https://dequeuniversity.com/rules/axe/4.11/input-button-name)。"
375
+ "message": "您可以為輸入按鈕新增可識別且可存取的文字,協助螢幕閱讀器使用者瞭解輸入按鈕的用途。[進一步瞭解輸入按鈕](https://dequeuniversity.com/rules/axe/4.12/input-button-name)。"
367
376
  },
368
377
  "core/audits/accessibility/input-button-name.js | failureTitle": {
369
378
  "message": "輸入按鈕沒有可識別的文字。"
@@ -372,7 +381,7 @@
372
381
  "message": "輸入按鈕有可識別的文字。"
373
382
  },
374
383
  "core/audits/accessibility/input-image-alt.js | description": {
375
- "message": "如果 `<input>` 按鈕是以圖片呈現,提供替代文字可協助螢幕閱讀器使用者瞭解該按鈕的用途。[瞭解輸入圖片說明文字](https://dequeuniversity.com/rules/axe/4.11/input-image-alt)。"
384
+ "message": "如果 `<input>` 按鈕是以圖片呈現,提供替代文字可協助螢幕閱讀器使用者瞭解該按鈕的用途。[瞭解輸入圖片說明文字](https://dequeuniversity.com/rules/axe/4.12/input-image-alt)。"
376
385
  },
377
386
  "core/audits/accessibility/input-image-alt.js | failureTitle": {
378
387
  "message": "`<input type=\"image\">` 元素未設定 `[alt]` 文字"
@@ -381,7 +390,7 @@
381
390
  "message": "`<input type=\"image\">` 元素具有 `[alt]` 文字"
382
391
  },
383
392
  "core/audits/accessibility/label-content-name-mismatch.js | description": {
384
- "message": "如果顯示的文字標籤與無障礙名稱不符,可能對螢幕閱讀器使用者造成混淆。[進一步瞭解無障礙名稱](https://dequeuniversity.com/rules/axe/4.11/label-content-name-mismatch)。"
393
+ "message": "如果顯示的文字標籤與無障礙名稱不符,可能對螢幕閱讀器使用者造成混淆。[進一步瞭解無障礙名稱](https://dequeuniversity.com/rules/axe/4.12/label-content-name-mismatch)。"
385
394
  },
386
395
  "core/audits/accessibility/label-content-name-mismatch.js | failureTitle": {
387
396
  "message": "含有可見文字標籤的元素沒有相符的無障礙名稱。"
@@ -390,7 +399,7 @@
390
399
  "message": "含有可見文字標籤的元素有相符的無障礙名稱。"
391
400
  },
392
401
  "core/audits/accessibility/label.js | description": {
393
- "message": "標籤可以確保輔助技術 (例如螢幕閱讀器) 正確朗讀表格控制項。[進一步瞭解表格元素標籤](https://dequeuniversity.com/rules/axe/4.11/label)。"
402
+ "message": "標籤可以確保輔助技術 (例如螢幕閱讀器) 正確朗讀表格控制項。[進一步瞭解表格元素標籤](https://dequeuniversity.com/rules/axe/4.12/label)。"
394
403
  },
395
404
  "core/audits/accessibility/label.js | failureTitle": {
396
405
  "message": "表格元素沒有相關聯的標籤"
@@ -399,7 +408,7 @@
399
408
  "message": "表格元素具有相關聯的標籤"
400
409
  },
401
410
  "core/audits/accessibility/landmark-one-main.js | description": {
402
- "message": "其中一項主要標籤可協助螢幕閱讀器使用者瀏覽網頁。[進一步瞭解標籤](https://dequeuniversity.com/rules/axe/4.11/landmark-one-main)。"
411
+ "message": "其中一項主要標籤可協助螢幕閱讀器使用者瀏覽網頁。[進一步瞭解標籤](https://dequeuniversity.com/rules/axe/4.12/landmark-one-main)。"
403
412
  },
404
413
  "core/audits/accessibility/landmark-one-main.js | failureTitle": {
405
414
  "message": "文件不含主要標籤。"
@@ -408,7 +417,7 @@
408
417
  "message": "文件具有主要標籤。"
409
418
  },
410
419
  "core/audits/accessibility/link-in-text-block.js | description": {
411
- "message": "很多使用者難以閱讀或無法閱讀低對比度的文字。可辨別的連結文字有助改善低視力使用者的體驗。[瞭解如何設定可明確辨別的連結](https://dequeuniversity.com/rules/axe/4.11/link-in-text-block)。"
420
+ "message": "很多使用者難以閱讀或無法閱讀低對比度的文字。可辨別的連結文字有助改善低視力使用者的體驗。[瞭解如何設定可明確辨別的連結](https://dequeuniversity.com/rules/axe/4.12/link-in-text-block)。"
412
421
  },
413
422
  "core/audits/accessibility/link-in-text-block.js | failureTitle": {
414
423
  "message": "連結需依賴顏色辨別。"
@@ -417,7 +426,7 @@
417
426
  "message": "不需依賴顏色亦可明確辨別連結。"
418
427
  },
419
428
  "core/audits/accessibility/link-name.js | description": {
420
- "message": "使用可辨別、不重複且可聚焦的連結文字 (以及連結圖片的替代文字),有助改善螢幕閱讀器使用者的瀏覽體驗。[瞭解如何讓連結更易用](https://dequeuniversity.com/rules/axe/4.11/link-name)。"
429
+ "message": "使用可辨別、不重複且可聚焦的連結文字 (以及連結圖片的替代文字),有助改善螢幕閱讀器使用者的瀏覽體驗。[瞭解如何讓連結更易用](https://dequeuniversity.com/rules/axe/4.12/link-name)。"
421
430
  },
422
431
  "core/audits/accessibility/link-name.js | failureTitle": {
423
432
  "message": "連結並無可辨別的名稱"
@@ -426,7 +435,7 @@
426
435
  "message": "連結具有可辨別的名稱"
427
436
  },
428
437
  "core/audits/accessibility/list.js | description": {
429
- "message": "螢幕閱讀器會以特定方式朗讀清單。確認清單採用正確的結構有助螢幕閱讀器順利輸出內容。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.11/list)。"
438
+ "message": "螢幕閱讀器會以特定方式朗讀清單。確認清單採用正確的結構有助螢幕閱讀器順利輸出內容。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.12/list)。"
430
439
  },
431
440
  "core/audits/accessibility/list.js | failureTitle": {
432
441
  "message": "清單中並非只包含 `<li>` 元素和指令碼支援元素 (`<script>` 和 `<template>`)。"
@@ -435,7 +444,7 @@
435
444
  "message": "清單只包含 `<li>` 元素和支援指令碼的元素 (`<script>` 和 `<template>`)。"
436
445
  },
437
446
  "core/audits/accessibility/listitem.js | description": {
438
- "message": "清單項目 (`<li>`) 必須包含在父元素 `<ul>`、`<ol>` 或 `<menu>` 中,螢幕閱讀器才能正確朗讀這些項目。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.11/listitem)。"
447
+ "message": "清單項目 (`<li>`) 必須包含在父元素 `<ul>`、`<ol>` 或 `<menu>` 中,螢幕閱讀器才能正確朗讀這些項目。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.12/listitem)。"
439
448
  },
440
449
  "core/audits/accessibility/listitem.js | failureTitle": {
441
450
  "message": "清單項目 (`<li>`) 未包含在 `<ul>`、`<ol>` 或 `<menu>` 父元素中。"
@@ -444,7 +453,7 @@
444
453
  "message": "清單項目 (`<li>`) 已包含在 `<ul>`、`<ol>` 或 `<menu>` 父元素中"
445
454
  },
446
455
  "core/audits/accessibility/meta-refresh.js | description": {
447
- "message": "使用者不會預期系統自動重新整理網頁,且執行此操作會將焦點移回網頁頂端。這可能會對使用者造成困擾或混淆。[進一步瞭解重新整理中繼標籤](https://dequeuniversity.com/rules/axe/4.11/meta-refresh)。"
456
+ "message": "使用者不會預期系統自動重新整理網頁,且執行此操作會將焦點移回網頁頂端。這可能會對使用者造成困擾或混淆。[進一步瞭解重新整理中繼標籤](https://dequeuniversity.com/rules/axe/4.12/meta-refresh)。"
448
457
  },
449
458
  "core/audits/accessibility/meta-refresh.js | failureTitle": {
450
459
  "message": "文件使用 `<meta http-equiv=\"refresh\">`"
@@ -453,7 +462,7 @@
453
462
  "message": "文件未使用 `<meta http-equiv=\"refresh\">`"
454
463
  },
455
464
  "core/audits/accessibility/meta-viewport.js | description": {
456
- "message": "停用縮放功能會對低視力人士造成困擾,他們需要透過螢幕放大功能才能清楚看見網頁內容。[進一步瞭解檢視區中繼標記](https://dequeuniversity.com/rules/axe/4.11/meta-viewport)。"
465
+ "message": "停用縮放功能會對低視力人士造成困擾,他們需要透過螢幕放大功能才能清楚看見網頁內容。[進一步瞭解檢視區中繼標記](https://dequeuniversity.com/rules/axe/4.12/meta-viewport)。"
457
466
  },
458
467
  "core/audits/accessibility/meta-viewport.js | failureTitle": {
459
468
  "message": "`<meta name=\"viewport\">` 元素中使用了 `[user-scalable=\"no\"]`,或 `[maximum-scale]` 屬性少於 5。"
@@ -462,7 +471,7 @@
462
471
  "message": "`<meta name=\"viewport\">` 元素中未有使用 `[user-scalable=\"no\"]` 元素,而且 `[maximum-scale]` 屬性少於 5。"
463
472
  },
464
473
  "core/audits/accessibility/object-alt.js | description": {
465
- "message": "螢幕閱讀器無法翻譯非文字內容。為 `<object>` 元素新增替代文字,可協助螢幕閱讀器向使用者傳達其意思。[進一步瞭解 `object` 元素的說明文字](https://dequeuniversity.com/rules/axe/4.11/object-alt)。"
474
+ "message": "螢幕閱讀器無法翻譯非文字內容。為 `<object>` 元素新增替代文字,可協助螢幕閱讀器向使用者傳達其意思。[進一步瞭解 `object` 元素的說明文字](https://dequeuniversity.com/rules/axe/4.12/object-alt)。"
466
475
  },
467
476
  "core/audits/accessibility/object-alt.js | failureTitle": {
468
477
  "message": "`<object>` 元素未設定替代文字"
@@ -470,8 +479,17 @@
470
479
  "core/audits/accessibility/object-alt.js | title": {
471
480
  "message": "`<object>` 元素具有替代文字"
472
481
  },
482
+ "core/audits/accessibility/presentation-role-conflict.js | description": {
483
+ "message": "在某些時候,具有 `role=\"none\"` 或 `role=\"presentation\"` 的元素語義角色不會解析為「無」或「展示」。為確保元素在無障礙樹狀圖中保持移除狀態,你不應為元素加入任何全域 ARIA 屬性或允許聚焦元素。[進一步瞭解展示角色衝突](https://dequeuniversity.com/rules/axe/4.12/presentation-role-conflict)。"
484
+ },
485
+ "core/audits/accessibility/presentation-role-conflict.js | failureTitle": {
486
+ "message": "具有 `role=\"none\"` 或者 `role=\"presentation\"` 嘅元素有衝突"
487
+ },
488
+ "core/audits/accessibility/presentation-role-conflict.js | title": {
489
+ "message": "具有 `role=\"none\"` 或者 `role=\"presentation\"` 嘅元素冇衝突"
490
+ },
473
491
  "core/audits/accessibility/select-name.js | description": {
474
- "message": "沒有有效標籤的 Form 元素可能對螢幕閱讀器使用者造成困擾。[進一步瞭解 `select` 元素](https://dequeuniversity.com/rules/axe/4.11/select-name)。"
492
+ "message": "沒有有效標籤的 Form 元素可能對螢幕閱讀器使用者造成困擾。[進一步瞭解 `select` 元素](https://dequeuniversity.com/rules/axe/4.12/select-name)。"
475
493
  },
476
494
  "core/audits/accessibility/select-name.js | failureTitle": {
477
495
  "message": "Select 元素沒有相關聯的 label 元素。"
@@ -480,7 +498,7 @@
480
498
  "message": "Select 元素具有關聯的 label 元素。"
481
499
  },
482
500
  "core/audits/accessibility/skip-link.js | description": {
483
- "message": "加入跳過連結可協助使用者直接前往主要內容,以節省時間。[進一步瞭解跳過連結](https://dequeuniversity.com/rules/axe/4.11/skip-link)。"
501
+ "message": "加入跳過連結可協助使用者直接前往主要內容,以節省時間。[進一步瞭解跳過連結](https://dequeuniversity.com/rules/axe/4.12/skip-link)。"
484
502
  },
485
503
  "core/audits/accessibility/skip-link.js | failureTitle": {
486
504
  "message": "跳過連結無法聚焦。"
@@ -488,8 +506,17 @@
488
506
  "core/audits/accessibility/skip-link.js | title": {
489
507
  "message": "跳過連結可聚焦。"
490
508
  },
509
+ "core/audits/accessibility/svg-img-alt.js | description": {
510
+ "message": "確保具有 `img`、`graphics-document` 或 `graphics-symbol` 角色的 SVG 元素有無障礙文字替代內容。[進一步瞭解 SVG 說明文字](https://dequeuniversity.com/rules/axe/4.12/svg-img-alt)。"
511
+ },
512
+ "core/audits/accessibility/svg-img-alt.js | failureTitle": {
513
+ "message": "具有 `img` 角色嘅 SVG 元素缺少無障礙文字替代內容"
514
+ },
515
+ "core/audits/accessibility/svg-img-alt.js | title": {
516
+ "message": "具有 `img` 角色嘅 SVG 元素有無障礙文字替代內容"
517
+ },
491
518
  "core/audits/accessibility/tabindex.js | description": {
492
- "message": "如果值大於 0,代表已採用明確的瀏覽排序。雖然此做法在技術上可行,但通常會對依賴輔助技術的使用者造成困擾。[進一步瞭解此 `tabindex` 屬性](https://dequeuniversity.com/rules/axe/4.11/tabindex)。"
519
+ "message": "如果值大於 0,代表已採用明確的瀏覽排序。雖然此做法在技術上可行,但通常會對依賴輔助技術的使用者造成困擾。[進一步瞭解此 `tabindex` 屬性](https://dequeuniversity.com/rules/axe/4.12/tabindex)。"
493
520
  },
494
521
  "core/audits/accessibility/tabindex.js | failureTitle": {
495
522
  "message": "部分元素的 `[tabindex]` 值大於 0"
@@ -498,7 +525,7 @@
498
525
  "message": "所有元素的 `[tabindex]` 值皆未超過 0"
499
526
  },
500
527
  "core/audits/accessibility/table-duplicate-name.js | description": {
501
- "message": "摘要屬性應描述表格結構,而「`<caption>`」應含有顯示在螢幕上的標題。提供準確的表格標記,對螢幕閱讀器使用者有幫助。[進一步瞭解摘要和說明文字](https://dequeuniversity.com/rules/axe/4.11/table-duplicate-name)。"
528
+ "message": "摘要屬性應描述表格結構,而「`<caption>`」應含有顯示在螢幕上的標題。提供準確的表格標記,對螢幕閱讀器使用者有幫助。[進一步瞭解摘要和說明文字](https://dequeuniversity.com/rules/axe/4.12/table-duplicate-name)。"
502
529
  },
503
530
  "core/audits/accessibility/table-duplicate-name.js | failureTitle": {
504
531
  "message": "表格內容與摘要屬性和「`<caption>.`」相同"
@@ -507,7 +534,7 @@
507
534
  "message": "表格內容與摘要屬性和「`<caption>`」不同。"
508
535
  },
509
536
  "core/audits/accessibility/table-fake-caption.js | description": {
510
- "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果表格使用實際的標題元素,而非含有 `[colspan]` 屬性的儲存格,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解標題](https://dequeuniversity.com/rules/axe/4.11/table-fake-caption)。"
537
+ "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果表格使用實際的標題元素,而非含有 `[colspan]` 屬性的儲存格,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解標題](https://dequeuniversity.com/rules/axe/4.12/table-fake-caption)。"
511
538
  },
512
539
  "core/audits/accessibility/table-fake-caption.js | failureTitle": {
513
540
  "message": "表格使用含有 `[colspan]` 屬性的儲存格表示標題,而非使用 `<caption>` 屬性。"
@@ -516,7 +543,7 @@
516
543
  "message": "表格使用 `<caption>` 屬性表示標題,而非使用含有 `[colspan]` 屬性的儲存格。"
517
544
  },
518
545
  "core/audits/accessibility/target-size.js | description": {
519
- "message": "只要觸控目標提供足夠的大小和間距,就能協助難以觸控細小控制項的使用者啟動目標。[進一步瞭解觸控目標](https://dequeuniversity.com/rules/axe/4.11/target-size)。"
546
+ "message": "只要觸控目標提供足夠的大小和間距,就能協助難以觸控細小控制項的使用者啟動目標。[進一步瞭解觸控目標](https://dequeuniversity.com/rules/axe/4.12/target-size)。"
520
547
  },
521
548
  "core/audits/accessibility/target-size.js | failureTitle": {
522
549
  "message": "觸控目標的大小或間距不足。"
@@ -525,7 +552,7 @@
525
552
  "message": "觸控目標的大小和間距充足。"
526
553
  },
527
554
  "core/audits/accessibility/td-has-header.js | description": {
528
- "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果大型表格 (寬度和高度為 3 個或以上儲存格) 中的 `<td>` 元素使用相關聯的表格標題,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.11/td-has-header)。"
555
+ "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果大型表格 (寬度和高度為 3 個或以上儲存格) 中的 `<td>` 元素使用相關聯的表格標題,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.12/td-has-header)。"
529
556
  },
530
557
  "core/audits/accessibility/td-has-header.js | failureTitle": {
531
558
  "message": "大型 `<table>` 中的 `<td>` 元素沒有表格標題。"
@@ -534,7 +561,7 @@
534
561
  "message": "大型 `<table>` 中的 `<td>` 元素有一或多個表格標題。"
535
562
  },
536
563
  "core/audits/accessibility/td-headers-attr.js | description": {
537
- "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保採用 `[headers]` 屬性的 `<td>` 儲存格只參照同一表格中的其他儲存格,或許能改善螢幕閱讀器的使用體驗。[進一步瞭解 `headers` 屬性](https://dequeuniversity.com/rules/axe/4.11/td-headers-attr)。"
564
+ "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保採用 `[headers]` 屬性的 `<td>` 儲存格只參照同一表格中的其他儲存格,或許能改善螢幕閱讀器的使用體驗。[進一步瞭解 `headers` 屬性](https://dequeuniversity.com/rules/axe/4.12/td-headers-attr)。"
538
565
  },
539
566
  "core/audits/accessibility/td-headers-attr.js | failureTitle": {
540
567
  "message": "`<table>` 元素中採用 `[headers]` 屬性的儲存格參照了 `id`,無法在同一表格中找到此元素。"
@@ -543,7 +570,7 @@
543
570
  "message": "`<table>` 元素中採用 `[headers]` 屬性的儲存格,參照了同一表格中的其他儲存格。"
544
571
  },
545
572
  "core/audits/accessibility/th-has-data-cells.js | description": {
546
- "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保表格標題一律參照特定一組儲存格,或許能有助改善螢幕閱讀器使用者的體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.11/th-has-data-cells)。"
573
+ "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保表格標題一律參照特定一組儲存格,或許能有助改善螢幕閱讀器使用者的體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.12/th-has-data-cells)。"
547
574
  },
548
575
  "core/audits/accessibility/th-has-data-cells.js | failureTitle": {
549
576
  "message": "`<th>` 元素及帶有 `[role=\"columnheader\"/\"rowheader\"]` 的元素沒有所描述的資料儲存格。"
@@ -552,7 +579,7 @@
552
579
  "message": "`<th>` 元素和帶有 `[role=\"columnheader\"/\"rowheader\"]` 的元素有其描述的資料儲存格。"
553
580
  },
554
581
  "core/audits/accessibility/valid-lang.js | description": {
555
- "message": "為元素指定有效的 [BCP 47 語言](https://www.w3.org/International/questions/qa-choosing-language-tags#question),可協助螢幕閱讀器正確朗讀文字。[瞭解如何使用 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.11/valid-lang)。"
582
+ "message": "為元素指定有效的 [BCP 47 語言](https://www.w3.org/International/questions/qa-choosing-language-tags#question),可協助螢幕閱讀器正確朗讀文字。[瞭解如何使用 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.12/valid-lang)。"
556
583
  },
557
584
  "core/audits/accessibility/valid-lang.js | failureTitle": {
558
585
  "message": "`[lang]` 屬性並無有效的值"
@@ -561,7 +588,7 @@
561
588
  "message": "`[lang]` 屬性具備有效的值"
562
589
  },
563
590
  "core/audits/accessibility/video-caption.js | description": {
564
- "message": "如果在影片中提供字幕,將有助於失聰或聽障使用者取得影片資料。[進一步瞭解影片字幕](https://dequeuniversity.com/rules/axe/4.11/video-caption)。"
591
+ "message": "如果在影片中提供字幕,將有助於失聰或聽障使用者取得影片資料。[進一步瞭解影片字幕](https://dequeuniversity.com/rules/axe/4.12/video-caption)。"
565
592
  },
566
593
  "core/audits/accessibility/video-caption.js | failureTitle": {
567
594
  "message": "`<video>` 元素不含任何帶有 `[kind=\"captions\"]` 的 `<track>` 元素"
@@ -569,6 +596,51 @@
569
596
  "core/audits/accessibility/video-caption.js | title": {
570
597
  "message": "`<video>` 元素包含帶有 `[kind=\"captions\"]` 的 `<track>` 元素"
571
598
  },
599
+ "core/audits/agentic/agent-accessibility-tree.js | columnElement": {
600
+ "message": "違規的元素"
601
+ },
602
+ "core/audits/agentic/agent-accessibility-tree.js | columnRule": {
603
+ "message": "違反的規則"
604
+ },
605
+ "core/audits/agentic/agent-accessibility-tree.js | description": {
606
+ "message": "格式正確的[無障礙樹狀結構](http://goo.gle/lighthouse-agentic-a11y)有助 AI 代理導覽網頁並與之互動。"
607
+ },
608
+ "core/audits/agentic/agent-accessibility-tree.js | displayValuePassed": {
609
+ "message": "通過所有審核"
610
+ },
611
+ "core/audits/agentic/agent-accessibility-tree.js | failedSectionTitle": {
612
+ "message": "未通過的審核"
613
+ },
614
+ "core/audits/agentic/agent-accessibility-tree.js | failureTitle": {
615
+ "message": "無障礙功能樹狀結構格式不正確"
616
+ },
617
+ "core/audits/agentic/agent-accessibility-tree.js | title": {
618
+ "message": "無障礙功能樹狀結構格式正確"
619
+ },
620
+ "core/audits/agentic/llms-txt.js | description": {
621
+ "message": "如果 llms.txt 檔案不符合建議,大型語言模型可能無法理解你偏好的網站檢索方式或訓練用途。[llms.txt](https://llmstxt.org/) 檔案應為 Markdown 檔案,且包含至少一個 H1 標題。"
622
+ },
623
+ "core/audits/agentic/llms-txt.js | displayValueHttpBadCode": {
624
+ "message": "要求失敗,HTTP 狀態為 {statusCode}"
625
+ },
626
+ "core/audits/agentic/llms-txt.js | explanation": {
627
+ "message": "無法擷取 llms.txt"
628
+ },
629
+ "core/audits/agentic/llms-txt.js | failureTitle": {
630
+ "message": "llms.txt 不符合建議"
631
+ },
632
+ "core/audits/agentic/llms-txt.js | missingH1": {
633
+ "message": "檔案缺少必要的 H1 標題 (例如「# 標題」)。"
634
+ },
635
+ "core/audits/agentic/llms-txt.js | missingLinks": {
636
+ "message": "檔案似乎不包含任何連結。"
637
+ },
638
+ "core/audits/agentic/llms-txt.js | title": {
639
+ "message": "llms.txt 符合建議"
640
+ },
641
+ "core/audits/agentic/llms-txt.js | tooShort": {
642
+ "message": "檔案長度過短。"
643
+ },
572
644
  "core/audits/autocomplete.js | columnCurrent": {
573
645
  "message": "目前的值"
574
646
  },
@@ -596,6 +668,18 @@
596
668
  "core/audits/autocomplete.js | warningOrder": {
597
669
  "message": "查看憑證次序:{snippet} 中的「{tokens}」"
598
670
  },
671
+ "core/audits/baseline.js | columnFeature": {
672
+ "message": "網絡功能"
673
+ },
674
+ "core/audits/baseline.js | columnStatus": {
675
+ "message": "Baseline 狀態"
676
+ },
677
+ "core/audits/baseline.js | description": {
678
+ "message": "列出頁面使用的網絡功能及其截至 {date}的 Baseline 狀態。[進一步瞭解 Baseline](https://webstatus.dev/)。"
679
+ },
680
+ "core/audits/baseline.js | title": {
681
+ "message": "Baseline 功能"
682
+ },
599
683
  "core/audits/bf-cache.js | actionableFailureType": {
600
684
  "message": "可以採取行動"
601
685
  },
@@ -771,7 +855,7 @@
771
855
  "message": "網頁含有 HTML DOCTYPE"
772
856
  },
773
857
  "core/audits/dobetterweb/geolocation-on-start.js | description": {
774
- "message": "如果未提供其他資訊就要求存取使用者的位置,會讓使用者感到困惑而不信任網站。建議您在使用者執行特定動作時,再提出這項要求。[進一步瞭解地理位置權限](https://developer.chrome.com/docs/lighthouse/best-practices/geolocation-on-start/)"
858
+ "message": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. [Learn more about the geolocation permission](https://developer.chrome.com/docs/lighthouse/best-practices/geolocation-on-start/). Also consider using the [`<geolocation>` element](https://developer.chrome.com/blog/geolocation-html-element)."
775
859
  },
776
860
  "core/audits/dobetterweb/geolocation-on-start.js | failureTitle": {
777
861
  "message": "在載入網頁時要求存取使用者的地理位置"
@@ -1262,6 +1346,93 @@
1262
1346
  "core/audits/valid-source-maps.js | title": {
1263
1347
  "message": "頁面包含有效的來源對應"
1264
1348
  },
1349
+ "core/audits/webmcp-form-coverage.js | columnForm": {
1350
+ "message": "表格"
1351
+ },
1352
+ "core/audits/webmcp-form-coverage.js | description": {
1353
+ "message": "建議在以下表格中加入 [WebMCP](http://goo.gle/webmcp-docs) 註解,讓 AI 專員更精準地識別及處理這些表格。"
1354
+ },
1355
+ "core/audits/webmcp-form-coverage.js | displayValue": {
1356
+ "message": "{itemCount,plural, =1{1 份表格缺少註解}other{# 份表格缺少註解}}"
1357
+ },
1358
+ "core/audits/webmcp-form-coverage.js | title": {
1359
+ "message": "WebMCP 表格覆蓋率"
1360
+ },
1361
+ "core/audits/webmcp-registered-tools.js | columnDeclarativeElement": {
1362
+ "message": "元素"
1363
+ },
1364
+ "core/audits/webmcp-registered-tools.js | columnDescription": {
1365
+ "message": "描述"
1366
+ },
1367
+ "core/audits/webmcp-registered-tools.js | columnImperativeLocation": {
1368
+ "message": "來源位置"
1369
+ },
1370
+ "core/audits/webmcp-registered-tools.js | columnInputSchema": {
1371
+ "message": "輸入綱要"
1372
+ },
1373
+ "core/audits/webmcp-registered-tools.js | columnTool": {
1374
+ "message": "工具名稱"
1375
+ },
1376
+ "core/audits/webmcp-registered-tools.js | description": {
1377
+ "message": "列出分析時已註冊的 [WebMCP 工具](http://goo.gle/webmcp-docs)。"
1378
+ },
1379
+ "core/audits/webmcp-registered-tools.js | title": {
1380
+ "message": "已註冊 WebMCP 工具"
1381
+ },
1382
+ "core/audits/webmcp-registered-tools.js | titleDeclarativeTools": {
1383
+ "message": "宣告式工具"
1384
+ },
1385
+ "core/audits/webmcp-registered-tools.js | titleImperativeTools": {
1386
+ "message": "命令式工具"
1387
+ },
1388
+ "core/audits/webmcp-schema-validity.js | columnElement": {
1389
+ "message": "元素"
1390
+ },
1391
+ "core/audits/webmcp-schema-validity.js | columnIssue": {
1392
+ "message": "問題"
1393
+ },
1394
+ "core/audits/webmcp-schema-validity.js | description": {
1395
+ "message": "AI 代理需要有效的 [WebMCP 綱要](http://goo.gle/webmcp-docs),才能正確瞭解工具並與之互動。請修正瀏覽器報告的任何錯誤或警告。"
1396
+ },
1397
+ "core/audits/webmcp-schema-validity.js | failureTitle": {
1398
+ "message": "WebMCP 綱要無效"
1399
+ },
1400
+ "core/audits/webmcp-schema-validity.js | missingOptionalParamName": {
1401
+ "message": "缺少選填欄位的 `name` 屬性,請加入以界定參數名稱。"
1402
+ },
1403
+ "core/audits/webmcp-schema-validity.js | missingParamDescription": {
1404
+ "message": "加入描述,讓 AI 代理更易存取此表格。"
1405
+ },
1406
+ "core/audits/webmcp-schema-validity.js | missingRequiredParamName": {
1407
+ "message": "缺少必填欄位的 `name` 屬性,請加入以界定參數名稱。"
1408
+ },
1409
+ "core/audits/webmcp-schema-validity.js | missingToolDescription": {
1410
+ "message": "缺少表格級別的 `tooldescription` 屬性,請加入以向 AI 代理描述工具。"
1411
+ },
1412
+ "core/audits/webmcp-schema-validity.js | missingToolName": {
1413
+ "message": "缺少表格級別的 `toolname` 屬性,請加入以界定工具名稱。"
1414
+ },
1415
+ "core/audits/webmcp-schema-validity.js | title": {
1416
+ "message": "WebMCP 綱要有效"
1417
+ },
1418
+ "core/config/agentic-browsing-config.js | agentAccessibilityGroupDescription": {
1419
+ "message": "有關審核旨在突顯最佳做法,改善 AI 代理應用程式的網站無障礙功能。"
1420
+ },
1421
+ "core/config/agentic-browsing-config.js | agentAccessibilityGroupTitle": {
1422
+ "message": "代理應用程式無障礙功能"
1423
+ },
1424
+ "core/config/agentic-browsing-config.js | agenticBrowsingCategoryDescription": {
1425
+ "message": "這些檢查可確保網站高品質並[適合 AI 代理瀏覽](https://goo.gle/lighthouse-agentic-web),同時驗證 WebMCP 整合的正確度。此類別仍在開發階段,可能隨時會有變動。"
1426
+ },
1427
+ "core/config/agentic-browsing-config.js | agenticBrowsingCategoryTitle": {
1428
+ "message": "代理式瀏覽"
1429
+ },
1430
+ "core/config/agentic-browsing-config.js | webmcpGroupDescription": {
1431
+ "message": "有關審核旨在驗證 WebMCP 整合項目。"
1432
+ },
1433
+ "core/config/agentic-browsing-config.js | webmcpGroupTitle": {
1434
+ "message": "WebMCP"
1435
+ },
1265
1436
  "core/config/default-config.js | a11yAriaGroupDescription": {
1266
1437
  "message": "這些提示可協助改善 ARIA 在應用程式中的使用情況,進而提升輔助技術 (例如螢幕閱讀器) 使用者的體驗。"
1267
1438
  },
@@ -1319,6 +1490,18 @@
1319
1490
  "core/config/default-config.js | a11yTablesListsVideoGroupTitle": {
1320
1491
  "message": "表格和清單"
1321
1492
  },
1493
+ "core/config/default-config.js | agentAccessibilityGroupDescription": {
1494
+ "message": "有關審核旨在突顯最佳做法,改善 AI 代理應用程式的網站無障礙功能。"
1495
+ },
1496
+ "core/config/default-config.js | agentAccessibilityGroupTitle": {
1497
+ "message": "代理應用程式無障礙功能"
1498
+ },
1499
+ "core/config/default-config.js | agenticBrowsingCategoryDescription": {
1500
+ "message": "這些檢查可確保網站高品質並[適合 AI 代理瀏覽](https://goo.gle/lighthouse-agentic-web),同時驗證 WebMCP 整合的正確度。此類別仍在開發階段,可能隨時會有變動。"
1501
+ },
1502
+ "core/config/default-config.js | agenticBrowsingCategoryTitle": {
1503
+ "message": "代理式瀏覽"
1504
+ },
1322
1505
  "core/config/default-config.js | bestPracticesBrowserCompatGroupTitle": {
1323
1506
  "message": "瀏覽器兼容性"
1324
1507
  },
@@ -1391,6 +1574,12 @@
1391
1574
  "core/config/default-config.js | seoMobileGroupTitle": {
1392
1575
  "message": "適合透過流動裝置瀏覽"
1393
1576
  },
1577
+ "core/config/default-config.js | webmcpGroupDescription": {
1578
+ "message": "有關審核旨在驗證 WebMCP 整合項目。"
1579
+ },
1580
+ "core/config/default-config.js | webmcpGroupTitle": {
1581
+ "message": "WebMCP"
1582
+ },
1394
1583
  "core/gather/driver/environment.js | warningSlowHostCpu": {
1395
1584
  "message": "已測試裝置的 CPU 似乎比 Lighthouse 所預期的慢,因此可能會對您的效能分數產生負面影響。進一步瞭解[如何校準適當的 CPU 減速乘數](https://github.com/GoogleChrome/lighthouse/blob/main/docs/throttling.md#cpu-throttling)。"
1396
1585
  },
@@ -1488,7 +1677,7 @@
1488
1677
  "message": "快取 TTL"
1489
1678
  },
1490
1679
  "core/lib/i18n/i18n.js | columnDescription": {
1491
- "message": "說明"
1680
+ "message": "描述"
1492
1681
  },
1493
1682
  "core/lib/i18n/i18n.js | columnDuration": {
1494
1683
  "message": "時間長度"
@@ -1871,6 +2060,12 @@
1871
2060
  "node_modules/@paulirish/trace_engine/generated/Deprecation.js | DataUrlInSvgUse": {
1872
2061
  "message": "SVGUseElement 不再支援「data: 網址」,並將於日後移除。"
1873
2062
  },
2063
+ "node_modules/@paulirish/trace_engine/generated/Deprecation.js | DocumentCreateEventKeyboardEvents": {
2064
+ "message": "document.createEvent('KeyboardEvents') 已淘汰並將會移除,請改用 new KeyboardEvent()。"
2065
+ },
2066
+ "node_modules/@paulirish/trace_engine/generated/Deprecation.js | DocumentCreateEventTransitionEvent": {
2067
+ "message": "document.createEvent('TransitionEvent') 已淘汰並將會移除,請改用 new TransitionEvent()。"
2068
+ },
1874
2069
  "node_modules/@paulirish/trace_engine/generated/Deprecation.js | ExampleBrowserProcessDeprecation": {
1875
2070
  "message": "此範例顯示瀏覽器程序報告的淘汰項目所需的程式碼。"
1876
2071
  },
@@ -1982,6 +2177,9 @@
1982
2177
  "node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoSupportsFullscreen": {
1983
2178
  "message": "HTMLVideoElement.webkitSupportsFullscreen 已淘汰,請改用 Document.fullscreenEnabled。"
1984
2179
  },
2180
+ "node_modules/@paulirish/trace_engine/generated/Deprecation.js | PreventSvgFilterPaint": {
2181
+ "message": "SVG 篩選器無法套用至跨來源 iframe、受限制 iframe (例如沙箱化 iframe) 或外掛程式。"
2182
+ },
1985
2183
  "node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpFalse": {
1986
2184
  "message": "已移除 DtlsSrtpKeyAgreement 限制。系統將您為此限制指定的 false 值解讀為嘗試使用已移除的「SDES key negotiation」方法。此功能已移除,請改用支援「DTLS key negotiation」的方法。"
1987
2185
  },
@@ -2090,6 +2288,30 @@
2090
2288
  "node_modules/@paulirish/trace_engine/models/trace/insights/Cache.js | title": {
2091
2289
  "message": "使用有效的快取生命週期"
2092
2290
  },
2291
+ "node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | description": {
2292
+ "message": "需要字元編碼宣告。你可以在 HTML 首 1024 個字節中使用中繼字元集標籤定義,或在 Content-Type HTTP 回應標題中定義。[進一步瞭解字元編碼宣告](https://developer.chrome.com/docs/insights/charset/)。"
2293
+ },
2294
+ "node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | failedHttpHeader": {
2295
+ "message": "未在 HTTP 標題中宣告字元集"
2296
+ },
2297
+ "node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | failedMetaCharsetLate": {
2298
+ "message": "在首 1024 個字節後使用中繼標籤宣告字元集"
2299
+ },
2300
+ "node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | failedMetaCharsetMissing": {
2301
+ "message": "沒有使用中繼標籤宣告字元集"
2302
+ },
2303
+ "node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | failedMetaCharsetUnknown": {
2304
+ "message": "無法從追蹤判斷中繼字元集宣告"
2305
+ },
2306
+ "node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | passingHttpHeader": {
2307
+ "message": "在 HTTP 標題中宣告字元集"
2308
+ },
2309
+ "node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | passingMetaCharsetEarly": {
2310
+ "message": "在首 1024 個字節中使用中繼標籤宣告字元集"
2311
+ },
2312
+ "node_modules/@paulirish/trace_engine/models/trace/insights/CharacterSet.js | title": {
2313
+ "message": "宣告字元編碼"
2314
+ },
2093
2315
  "node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | description": {
2094
2316
  "message": "大型 DOM 可能會增加樣式運算和版面配置重排的時長,繼而影響頁面回應速度。大型 DOM 也會增加記憶體用量。[瞭解如何避免 DOM 過大](https://developer.chrome.com/docs/performance/insights/dom-size)。"
2095
2317
  },
@@ -2297,8 +2519,11 @@
2297
2519
  "node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityShouldBeApplied": {
2298
2520
  "message": "應套用 fetchpriority=high"
2299
2521
  },
2522
+ "node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityShouldBeAppliedToImagePreload": {
2523
+ "message": "應將 fetchpriority=high 套用至圖片預先載入要求"
2524
+ },
2300
2525
  "node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lazyLoadNotApplied": {
2301
- "message": "未套用延遲載入"
2526
+ "message": "LCP 資源不應使用 loading=lazy"
2302
2527
  },
2303
2528
  "node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lcpLoadDelay": {
2304
2529
  "message": "LCP 圖片在最早的開始點 {PH1} 後載入。"
@@ -3321,7 +3546,7 @@
3321
3546
  "message": "複製 JSON"
3322
3547
  },
3323
3548
  "report/renderer/report-utils.js | dropdownDarkTheme": {
3324
- "message": "切換至深色主題背景"
3549
+ "message": "切換至深色主題"
3325
3550
  },
3326
3551
  "report/renderer/report-utils.js | dropdownPrintExpanded": {
3327
3552
  "message": "已展開列印"