chrome-devtools-frontend 1.0.1526630 → 1.0.1528866

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 (319) hide show
  1. package/docs/ui_engineering.md +159 -0
  2. package/eslint.config.mjs +6 -1
  3. package/front_end/core/i18n/i18nImpl.ts +6 -1
  4. package/front_end/core/protocol_client/protocol_client.ts +1 -1
  5. package/front_end/core/root/Runtime.ts +28 -4
  6. package/front_end/core/sdk/CSSMatchedStyles.ts +50 -7
  7. package/front_end/core/sdk/CSSRule.ts +35 -6
  8. package/front_end/core/sdk/Connections.ts +2 -1
  9. package/front_end/core/sdk/DOMModel.ts +4 -0
  10. package/front_end/core/sdk/DebuggerModel.ts +5 -1
  11. package/front_end/core/sdk/NetworkManager.ts +214 -31
  12. package/front_end/core/sdk/PreloadingModel.ts +82 -17
  13. package/front_end/core/sdk/RehydratingConnection.snapshot.txt +1 -1
  14. package/front_end/core/sdk/RehydratingConnection.ts +29 -4
  15. package/front_end/core/sdk/ScopeTreeCache.ts +8 -3
  16. package/front_end/core/sdk/SourceMap.ts +37 -11
  17. package/front_end/core/sdk/SourceMapManager.ts +13 -2
  18. package/front_end/core/sdk/SourceMapScopesInfo.ts +17 -0
  19. package/front_end/core/sdk/TargetManager.ts +0 -22
  20. package/front_end/core/sdk/TraceObject.ts +8 -7
  21. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +81 -0
  22. package/front_end/entrypoints/inspector_main/InspectorMain.ts +3 -1
  23. package/front_end/entrypoints/main/GlobalAiButton.ts +1 -0
  24. package/front_end/entrypoints/main/MainImpl.ts +20 -25
  25. package/front_end/generated/InspectorBackendCommands.js +3 -2
  26. package/front_end/generated/protocol.ts +17 -3
  27. package/front_end/models/ai_assistance/BuiltInAi.ts +111 -0
  28. package/front_end/models/ai_assistance/ai_assistance.ts +53 -24
  29. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +105 -0
  30. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +6 -1
  31. package/front_end/models/extensions/ExtensionView.ts +3 -0
  32. package/front_end/models/javascript_metadata/NativeFunctions.js +23 -27
  33. package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +31 -29
  34. package/front_end/models/persistence/EditFileSystemView.ts +1 -0
  35. package/front_end/models/source_map_scopes/NamesResolver.ts +5 -11
  36. package/front_end/models/stack_trace/Trie.ts +9 -0
  37. package/front_end/models/trace/lantern/types/Lantern.ts +1 -1
  38. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +1 -0
  39. package/front_end/panels/accessibility/AccessibilitySidebarView.ts +1 -0
  40. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +120 -113
  41. package/front_end/panels/ai_assistance/PatchWidget.ts +9 -8
  42. package/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts +2 -0
  43. package/front_end/panels/ai_assistance/components/ChatView.ts +29 -29
  44. package/front_end/panels/ai_assistance/components/UserActionRow.ts +1 -0
  45. package/front_end/panels/animation/AnimationTimeline.ts +1 -0
  46. package/front_end/panels/application/CookieItemsView.ts +1 -0
  47. package/front_end/panels/application/KeyValueStorageItemsView.ts +1 -0
  48. package/front_end/panels/application/ServiceWorkerCacheViews.ts +2 -0
  49. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +11 -5
  50. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +2 -2
  51. package/front_end/panels/application/preloading/components/PreloadingString.ts +7 -5
  52. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +22 -10
  53. package/front_end/panels/changes/CombinedDiffView.ts +1 -0
  54. package/front_end/panels/console/ConsoleInsightTeaser.ts +106 -0
  55. package/front_end/panels/console/ConsolePanel.ts +2 -0
  56. package/front_end/panels/console/ConsolePrompt.ts +12 -2
  57. package/front_end/panels/console/ConsoleSidebar.ts +1 -1
  58. package/front_end/panels/console/ConsoleView.ts +12 -0
  59. package/front_end/panels/console/ConsoleViewMessage.ts +27 -0
  60. package/front_end/panels/{explain → console}/PromptBuilder.ts +12 -7
  61. package/front_end/panels/console/console.ts +6 -0
  62. package/front_end/panels/console/consoleInsightTeaser.css +55 -0
  63. package/front_end/panels/coverage/CoverageListView.ts +29 -11
  64. package/front_end/panels/coverage/CoverageView.ts +292 -284
  65. package/front_end/panels/coverage/coverageView.css +17 -0
  66. package/front_end/panels/elements/ComputedStyleWidget.ts +1 -0
  67. package/front_end/panels/elements/LayoutPane.ts +1 -0
  68. package/front_end/panels/elements/NodeStackTraceWidget.ts +1 -0
  69. package/front_end/panels/elements/StylePropertyTreeElement.ts +5 -1
  70. package/front_end/panels/elements/stylePropertiesTreeOutline.css +17 -0
  71. package/front_end/panels/emulation/DeviceModeView.ts +2 -0
  72. package/front_end/panels/explain/ActionDelegate.ts +1 -2
  73. package/front_end/panels/explain/components/ConsoleInsight.ts +14 -12
  74. package/front_end/panels/explain/explain.ts +0 -1
  75. package/front_end/panels/js_timeline/js_timeline-meta.ts +1 -1
  76. package/front_end/panels/layer_viewer/Layers3DView.ts +2 -0
  77. package/front_end/panels/lighthouse/LighthouseReportSelector.ts +1 -0
  78. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +1 -0
  79. package/front_end/panels/media/MainView.ts +1 -0
  80. package/front_end/panels/media/TickingFlameChart.ts +2 -0
  81. package/front_end/panels/network/BlockedURLsPane.ts +111 -85
  82. package/front_end/panels/network/EventSourceMessagesView.ts +1 -0
  83. package/front_end/panels/network/NetworkItemView.ts +1 -0
  84. package/front_end/panels/network/NetworkLogView.ts +9 -7
  85. package/front_end/panels/network/NetworkOverview.ts +1 -0
  86. package/front_end/panels/network/RequestCookiesView.ts +1 -0
  87. package/front_end/panels/network/RequestHTMLView.ts +1 -0
  88. package/front_end/panels/network/RequestInitiatorView.ts +1 -0
  89. package/front_end/panels/network/RequestPayloadView.ts +1 -0
  90. package/front_end/panels/network/RequestPreviewView.ts +1 -0
  91. package/front_end/panels/network/RequestResponseView.ts +1 -0
  92. package/front_end/panels/network/RequestTimingView.ts +2 -0
  93. package/front_end/panels/network/ResourceDirectSocketChunkView.ts +1 -0
  94. package/front_end/panels/network/ResourceWebSocketFrameView.ts +1 -0
  95. package/front_end/panels/network/components/RequestHeadersView.ts +2 -0
  96. package/front_end/panels/network/components/RequestTrustTokensView.ts +2 -0
  97. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +2 -0
  98. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +2 -0
  99. package/front_end/panels/profiler/HeapSnapshotView.ts +7 -0
  100. package/front_end/panels/profiler/IsolateSelector.ts +1 -0
  101. package/front_end/panels/profiler/LiveHeapProfileView.ts +1 -0
  102. package/front_end/panels/profiler/ProfileView.ts +1 -0
  103. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +1 -0
  104. package/front_end/panels/recorder/RecorderPanel.ts +2 -0
  105. package/front_end/panels/screencast/ScreencastView.ts +1 -0
  106. package/front_end/panels/search/SearchView.ts +1 -0
  107. package/front_end/panels/settings/AISettingsTab.ts +3 -3
  108. package/front_end/panels/settings/WorkspaceSettingsTab.ts +2 -0
  109. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +2 -2
  110. package/front_end/panels/sources/AiCodeCompletionPlugin.ts +12 -0
  111. package/front_end/panels/sources/BreakpointsView.ts +1 -0
  112. package/front_end/panels/sources/DebuggerPlugin.ts +1 -0
  113. package/front_end/panels/sources/UISourceCodeFrame.ts +17 -2
  114. package/front_end/panels/timeline/README.md +2 -2
  115. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +1 -1
  116. package/front_end/panels/timeline/TimelineFlameChartView.ts +4 -3
  117. package/front_end/panels/timeline/TimelineLayersView.ts +1 -0
  118. package/front_end/panels/timeline/TimelinePaintProfilerView.ts +114 -37
  119. package/front_end/panels/timeline/TimelinePanel.ts +43 -62
  120. package/front_end/panels/timeline/TimelineTreeView.ts +1 -0
  121. package/front_end/panels/timeline/components/LiveMetricsView.ts +4 -8
  122. package/front_end/panels/timeline/components/Sidebar.ts +2 -0
  123. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +1 -1
  124. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +7 -7
  125. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +1 -1
  126. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +4 -4
  127. package/front_end/panels/web_audio/WebAudioView.ts +1 -0
  128. package/front_end/third_party/chromium/README.chromium +1 -1
  129. package/front_end/third_party/lighthouse/README.chromium +2 -2
  130. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1530 -2426
  131. package/front_end/third_party/lighthouse/locales/ar-XB.json +107 -455
  132. package/front_end/third_party/lighthouse/locales/ar.json +107 -455
  133. package/front_end/third_party/lighthouse/locales/bg.json +96 -444
  134. package/front_end/third_party/lighthouse/locales/ca.json +96 -444
  135. package/front_end/third_party/lighthouse/locales/cs.json +96 -444
  136. package/front_end/third_party/lighthouse/locales/da.json +96 -444
  137. package/front_end/third_party/lighthouse/locales/de.json +96 -444
  138. package/front_end/third_party/lighthouse/locales/el.json +96 -444
  139. package/front_end/third_party/lighthouse/locales/en-GB.json +96 -444
  140. package/front_end/third_party/lighthouse/locales/en-US.json +116 -467
  141. package/front_end/third_party/lighthouse/locales/en-XA.json +93 -441
  142. package/front_end/third_party/lighthouse/locales/en-XL.json +116 -467
  143. package/front_end/third_party/lighthouse/locales/es-419.json +96 -444
  144. package/front_end/third_party/lighthouse/locales/es.json +96 -444
  145. package/front_end/third_party/lighthouse/locales/fi.json +96 -444
  146. package/front_end/third_party/lighthouse/locales/fil.json +96 -444
  147. package/front_end/third_party/lighthouse/locales/fr.json +96 -444
  148. package/front_end/third_party/lighthouse/locales/he.json +118 -466
  149. package/front_end/third_party/lighthouse/locales/hi.json +96 -444
  150. package/front_end/third_party/lighthouse/locales/hr.json +100 -448
  151. package/front_end/third_party/lighthouse/locales/hu.json +96 -444
  152. package/front_end/third_party/lighthouse/locales/id.json +96 -444
  153. package/front_end/third_party/lighthouse/locales/it.json +96 -444
  154. package/front_end/third_party/lighthouse/locales/ja.json +96 -444
  155. package/front_end/third_party/lighthouse/locales/ko.json +97 -445
  156. package/front_end/third_party/lighthouse/locales/lt.json +96 -444
  157. package/front_end/third_party/lighthouse/locales/lv.json +97 -445
  158. package/front_end/third_party/lighthouse/locales/nl.json +96 -444
  159. package/front_end/third_party/lighthouse/locales/no.json +96 -444
  160. package/front_end/third_party/lighthouse/locales/pl.json +96 -444
  161. package/front_end/third_party/lighthouse/locales/pt-PT.json +96 -444
  162. package/front_end/third_party/lighthouse/locales/pt.json +97 -445
  163. package/front_end/third_party/lighthouse/locales/ro.json +97 -445
  164. package/front_end/third_party/lighthouse/locales/ru.json +96 -444
  165. package/front_end/third_party/lighthouse/locales/sk.json +96 -444
  166. package/front_end/third_party/lighthouse/locales/sl.json +96 -444
  167. package/front_end/third_party/lighthouse/locales/sr-Latn.json +96 -444
  168. package/front_end/third_party/lighthouse/locales/sr.json +96 -444
  169. package/front_end/third_party/lighthouse/locales/sv.json +96 -444
  170. package/front_end/third_party/lighthouse/locales/ta.json +96 -444
  171. package/front_end/third_party/lighthouse/locales/te.json +97 -445
  172. package/front_end/third_party/lighthouse/locales/th.json +96 -444
  173. package/front_end/third_party/lighthouse/locales/tr.json +96 -444
  174. package/front_end/third_party/lighthouse/locales/uk.json +96 -444
  175. package/front_end/third_party/lighthouse/locales/vi.json +96 -444
  176. package/front_end/third_party/lighthouse/locales/zh-HK.json +96 -444
  177. package/front_end/third_party/lighthouse/locales/zh-TW.json +97 -445
  178. package/front_end/third_party/lighthouse/locales/zh.json +96 -444
  179. package/front_end/third_party/lighthouse/report/bundle.d.ts +8 -14
  180. package/front_end/third_party/lighthouse/report/bundle.js +10 -49
  181. package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
  182. package/front_end/third_party/web-vitals/README.chromium +5 -8
  183. package/front_end/third_party/web-vitals/package/README.md +191 -152
  184. package/front_end/third_party/web-vitals/package/dist/modules/attribution/index.d.ts +0 -1
  185. package/front_end/third_party/web-vitals/package/dist/modules/attribution/index.js +0 -1
  186. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onCLS.d.ts +2 -2
  187. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onCLS.js +45 -26
  188. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onFCP.d.ts +2 -2
  189. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onFCP.js +3 -3
  190. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.d.ts +10 -10
  191. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +307 -206
  192. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onLCP.d.ts +2 -2
  193. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onLCP.js +69 -49
  194. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onTTFB.d.ts +2 -2
  195. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onTTFB.js +2 -2
  196. package/front_end/third_party/web-vitals/package/dist/modules/index.d.ts +0 -1
  197. package/front_end/third_party/web-vitals/package/dist/modules/index.js +0 -1
  198. package/front_end/third_party/web-vitals/package/dist/modules/lib/InteractionManager.d.ts +33 -0
  199. package/front_end/third_party/web-vitals/package/dist/modules/lib/InteractionManager.js +111 -0
  200. package/front_end/third_party/web-vitals/package/dist/modules/lib/LCPEntryManager.d.ts +4 -0
  201. package/front_end/third_party/web-vitals/package/dist/modules/{attribution/deprecated.js → lib/LCPEntryManager.js} +6 -7
  202. package/front_end/third_party/web-vitals/package/dist/modules/lib/LayoutShiftManager.d.ts +6 -0
  203. package/front_end/third_party/web-vitals/package/dist/modules/lib/LayoutShiftManager.js +44 -0
  204. package/front_end/third_party/web-vitals/package/dist/modules/lib/bindReporter.js +1 -1
  205. package/front_end/third_party/web-vitals/package/dist/modules/lib/generateUniqueID.js +1 -1
  206. package/front_end/third_party/web-vitals/package/dist/modules/lib/getActivationStart.js +1 -1
  207. package/front_end/third_party/web-vitals/package/dist/modules/lib/getNavigationEntry.js +5 -7
  208. package/front_end/third_party/web-vitals/package/dist/modules/lib/getSelector.d.ts +1 -1
  209. package/front_end/third_party/web-vitals/package/dist/modules/lib/getSelector.js +9 -12
  210. package/front_end/third_party/web-vitals/package/dist/modules/lib/getVisibilityWatcher.d.ts +1 -0
  211. package/front_end/third_party/web-vitals/package/dist/modules/lib/getVisibilityWatcher.js +52 -33
  212. package/front_end/third_party/web-vitals/package/dist/modules/lib/initMetric.d.ts +0 -2
  213. package/front_end/third_party/web-vitals/package/dist/modules/lib/initMetric.js +2 -2
  214. package/front_end/third_party/web-vitals/package/dist/modules/lib/initUnique.d.ts +6 -0
  215. package/front_end/third_party/web-vitals/package/dist/modules/{deprecated.js → lib/initUnique.js} +11 -4
  216. package/front_end/third_party/web-vitals/package/dist/modules/lib/observe.js +3 -6
  217. package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/interactionCountPolyfill.js +6 -6
  218. package/front_end/third_party/web-vitals/package/dist/modules/lib/{whenIdle.d.ts → whenIdleOrHidden.d.ts} +1 -1
  219. package/front_end/third_party/web-vitals/package/dist/modules/lib/{whenIdle.js → whenIdleOrHidden.js} +10 -8
  220. package/front_end/third_party/web-vitals/package/dist/modules/onCLS.js +17 -35
  221. package/front_end/third_party/web-vitals/package/dist/modules/onFCP.js +3 -5
  222. package/front_end/third_party/web-vitals/package/dist/modules/onINP.d.ts +9 -7
  223. package/front_end/third_party/web-vitals/package/dist/modules/onINP.js +27 -19
  224. package/front_end/third_party/web-vitals/package/dist/modules/onLCP.js +33 -26
  225. package/front_end/third_party/web-vitals/package/dist/modules/onTTFB.js +2 -4
  226. package/front_end/third_party/web-vitals/package/dist/modules/types/base.d.ts +6 -5
  227. package/front_end/third_party/web-vitals/package/dist/modules/types/cls.d.ts +5 -3
  228. package/front_end/third_party/web-vitals/package/dist/modules/types/inp.d.ts +80 -33
  229. package/front_end/third_party/web-vitals/package/dist/modules/types/lcp.d.ts +6 -2
  230. package/front_end/third_party/web-vitals/package/dist/modules/types.d.ts +28 -4
  231. package/front_end/third_party/web-vitals/package/dist/modules/types.js +0 -1
  232. package/front_end/third_party/web-vitals/package/package.json +4 -10
  233. package/front_end/third_party/web-vitals/package/src/attribution/index.ts +0 -1
  234. package/front_end/third_party/web-vitals/package/src/attribution/onCLS.ts +58 -33
  235. package/front_end/third_party/web-vitals/package/src/attribution/onFCP.ts +4 -4
  236. package/front_end/third_party/web-vitals/package/src/attribution/onINP.ts +382 -258
  237. package/front_end/third_party/web-vitals/package/src/attribution/onLCP.ts +96 -69
  238. package/front_end/third_party/web-vitals/package/src/attribution/onTTFB.ts +3 -3
  239. package/front_end/third_party/web-vitals/package/src/index.ts +0 -1
  240. package/front_end/third_party/web-vitals/package/src/lib/InteractionManager.ts +146 -0
  241. package/front_end/third_party/web-vitals/package/src/{attribution/deprecated.ts → lib/LCPEntryManager.ts} +6 -9
  242. package/front_end/third_party/web-vitals/package/src/lib/LayoutShiftManager.ts +50 -0
  243. package/front_end/third_party/web-vitals/package/src/lib/bindReporter.ts +1 -1
  244. package/front_end/third_party/web-vitals/package/src/lib/generateUniqueID.ts +1 -1
  245. package/front_end/third_party/web-vitals/package/src/lib/getActivationStart.ts +1 -1
  246. package/front_end/third_party/web-vitals/package/src/lib/getNavigationEntry.ts +5 -8
  247. package/front_end/third_party/web-vitals/package/src/lib/getSelector.ts +12 -12
  248. package/front_end/third_party/web-vitals/package/src/lib/getVisibilityWatcher.ts +57 -35
  249. package/front_end/third_party/web-vitals/package/src/lib/initMetric.ts +2 -2
  250. package/front_end/third_party/web-vitals/package/src/{deprecated.ts → lib/initUnique.ts} +14 -8
  251. package/front_end/third_party/web-vitals/package/src/lib/observe.ts +3 -11
  252. package/front_end/third_party/web-vitals/package/src/lib/polyfills/interactionCountPolyfill.ts +12 -6
  253. package/front_end/third_party/web-vitals/package/src/lib/{whenIdle.ts → whenIdleOrHidden.ts} +10 -8
  254. package/front_end/third_party/web-vitals/package/src/onCLS.ts +17 -38
  255. package/front_end/third_party/web-vitals/package/src/onFCP.ts +3 -6
  256. package/front_end/third_party/web-vitals/package/src/onINP.ts +33 -28
  257. package/front_end/third_party/web-vitals/package/src/onLCP.ts +36 -29
  258. package/front_end/third_party/web-vitals/package/src/onTTFB.ts +2 -5
  259. package/front_end/third_party/web-vitals/package/src/types/base.ts +5 -5
  260. package/front_end/third_party/web-vitals/package/src/types/cls.ts +5 -3
  261. package/front_end/third_party/web-vitals/package/src/types/inp.ts +88 -33
  262. package/front_end/third_party/web-vitals/package/src/types/lcp.ts +6 -2
  263. package/front_end/third_party/web-vitals/package/src/types.ts +47 -4
  264. package/front_end/third_party/web-vitals/patches/0001-Add-onEachInteraction-to-onINP-options.patch +75 -0
  265. package/front_end/third_party/web-vitals/rebuild.sh +32 -18
  266. package/front_end/third_party/web-vitals/web-vitals-tsconfig.json +5 -10
  267. package/front_end/third_party/web-vitals/web-vitals.ts +0 -2
  268. package/front_end/ui/components/docs/console_insight/basic.ts +3 -2
  269. package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +2 -0
  270. package/front_end/ui/components/text_editor/TextEditor.ts +0 -2
  271. package/front_end/ui/legacy/InspectorView.ts +2 -0
  272. package/front_end/ui/legacy/SplitWidget.ts +2 -0
  273. package/front_end/ui/legacy/TabbedPane.ts +1 -0
  274. package/front_end/ui/legacy/TargetCrashedScreen.ts +1 -0
  275. package/front_end/ui/legacy/UIUtils.ts +8 -19
  276. package/front_end/ui/legacy/ViewManager.ts +1 -0
  277. package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +7 -20
  278. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +2 -0
  279. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +1 -0
  280. package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +1 -0
  281. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +1 -0
  282. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +1 -0
  283. package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -0
  284. package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -0
  285. package/front_end/ui/legacy/components/source_frame/JSONView.ts +1 -0
  286. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +1 -0
  287. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +2 -0
  288. package/front_end/ui/visual_logging/KnownContextValues.ts +17 -0
  289. package/mcp/README.md +7 -0
  290. package/mcp/mcp.ts +8 -0
  291. package/package.json +1 -1
  292. package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +0 -34
  293. package/front_end/third_party/web-vitals/package/attribution.d.ts +0 -16
  294. package/front_end/third_party/web-vitals/package/attribution.js +0 -18
  295. package/front_end/third_party/web-vitals/package/dist/modules/attribution/deprecated.d.ts +0 -7
  296. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onFID.d.ts +0 -11
  297. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onFID.js +0 -46
  298. package/front_end/third_party/web-vitals/package/dist/modules/deprecated.d.ts +0 -5
  299. package/front_end/third_party/web-vitals/package/dist/modules/lib/interactions.d.ts +0 -31
  300. package/front_end/third_party/web-vitals/package/dist/modules/lib/interactions.js +0 -107
  301. package/front_end/third_party/web-vitals/package/dist/modules/lib/onHidden.d.ts +0 -1
  302. package/front_end/third_party/web-vitals/package/dist/modules/lib/onHidden.js +0 -22
  303. package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/firstInputPolyfill.d.ts +0 -7
  304. package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/firstInputPolyfill.js +0 -147
  305. package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/getFirstHiddenTimePolyfill.d.ts +0 -1
  306. package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/getFirstHiddenTimePolyfill.js +0 -25
  307. package/front_end/third_party/web-vitals/package/dist/modules/onFID.d.ts +0 -13
  308. package/front_end/third_party/web-vitals/package/dist/modules/onFID.js +0 -70
  309. package/front_end/third_party/web-vitals/package/dist/modules/types/fid.d.ts +0 -46
  310. package/front_end/third_party/web-vitals/package/dist/modules/types/fid.js +0 -16
  311. package/front_end/third_party/web-vitals/package/src/attribution/onFID.ts +0 -62
  312. package/front_end/third_party/web-vitals/package/src/lib/interactions.ts +0 -139
  313. package/front_end/third_party/web-vitals/package/src/lib/onHidden.ts +0 -23
  314. package/front_end/third_party/web-vitals/package/src/lib/polyfills/firstInputPolyfill.ts +0 -174
  315. package/front_end/third_party/web-vitals/package/src/onFID.ts +0 -105
  316. package/front_end/third_party/web-vitals/package/src/types/fid.ts +0 -65
  317. package/front_end/ui/components/text_editor/textEditor.css +0 -18
  318. package/front_end/ui/legacy/inlineButton.css +0 -22
  319. /package/front_end/entrypoints/{rehydrated_devtools_app/rehydrated_devtools_app.ts → trace_app/trace_app.ts} +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "core/audits/accessibility/accesskeys.js | description": {
3
- "message": "快速鍵可讓使用者快速聚焦網頁的特定部分。如要讓使用者正確瀏覽,每個快速鍵一律不可重複。[進一步瞭解快速鍵](https://dequeuniversity.com/rules/axe/4.10/accesskeys)。"
3
+ "message": "快速鍵可讓使用者快速聚焦網頁的特定部分。如要讓使用者正確瀏覽,每個快速鍵一律不可重複。[進一步瞭解快速鍵](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-allowed-attr)。"
12
+ "message": "每個 ARIA「`role`」都支援一部分特定的「`aria-*`」屬性。配對錯誤會導致「`aria-*`」屬性無效。[瞭解如何讓 ARIA 屬性與其角色相符](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-allowed-role)。"
21
+ "message": "很多 HTML 元素只能接受指派特定的 ARIA 角色。如果使用禁用的 ARIA 角色,可能會影響網頁的無障礙功能。[進一步瞭解 ARIA 角色](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-command-name)。"
30
+ "message": "如果元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何讓指令元素更容易使用](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-conditional-attr)。"
39
+ "message": "元素的部分 ARIA 屬性只能在特定條件下使用。[進一步瞭解條件式 ARIA 屬性](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-deprecated-role)。"
48
+ "message": "輔助技術可能無法正確處理已淘汰的 ARIA 角色。[進一步瞭解已淘汰的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-dialog-name)。"
57
+ "message": "如果 ARIA 對話框元素沒有無障礙名稱,螢幕閱讀器使用者就可能無法分辨這些元素的用途。[瞭解如何讓 ARIA 對話框元素更易用](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-hidden-body)。"
66
+ "message": "在 `<body>` 文件上設定 `aria-hidden=\"true\"` 時,輔助技術 (例如螢幕閱讀器) 的運作將無法保持一致。[瞭解 `aria-hidden` 如何影響文件內文](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-hidden-focus)。"
75
+ "message": "`[aria-hidden=\"true\"]` 元素中可聚焦的子代會禁止使用輔助技術 (例如螢幕閱讀器) 的使用者運用這些互動元素。[瞭解 `aria-hidden` 如何影響可聚焦的元素](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-input-field-name)。"
84
+ "message": "如果輸入欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解輸入欄位標籤](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-meter-name)。"
93
+ "message": "如果計量器元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`meter`元素](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-progressbar-name)。"
102
+ "message": "如果 `progressbar` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[瞭解如何為 `progressbar` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-prohibited-attr)。"
111
+ "message": "如果在禁止使用 ARIA 屬性的角色中使用這些屬性,可能會導致輔助技術使用者無法取得重要資料。[進一步瞭解禁止使用的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-required-attr)。"
120
+ "message": "部分 ARIA 角色的必要屬性會向螢幕閱讀器的使用者說明元素狀態。[進一步瞭解角色和必要屬性](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-required-children)。"
129
+ "message": "部分 ARIA 父角色必須包含特定的子角色,才能正確執行無障礙功能。[進一步瞭解角色和需要的子元素](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-required-parent)。"
138
+ "message": "部分 ARIA 子角色必須包括在特定的父角色中,才能正確執行無障礙功能。[進一步瞭解 ARIA 角色和需要的父元素](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-roles)。"
147
+ "message": "ARIA 角色必須具備有效的值,才能執行無障礙功能。[進一步瞭解有效的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-text)。"
156
+ "message": "在由標記分割的文字節點前後新增 `role=text`,VoiceOver 就會將其視為一個詞組,但系統不會通知該元素的可聚焦子元素。[進一步瞭解 `role=text` 屬性](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-toggle-field-name)。"
165
+ "message": "如果切換欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解切換欄位](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-tooltip-name)。"
174
+ "message": "如果提示元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`tooltip`元素](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-treeitem-name)。"
183
+ "message": "如果 `treeitem` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[進一步瞭解如何為 `treeitem` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-valid-attr-value)。"
192
+ "message": "輔助技術 (如螢幕閱讀器) 無法解讀具有無效值的 ARIA 屬性。[進一步瞭解 ARIA 屬性的有效值](https://dequeuniversity.com/rules/axe/4.11/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.10/aria-valid-attr)。"
201
+ "message": "輔助技術 (例如螢幕閱讀器) 無法解讀名稱無效的 ARIA 屬性。[進一步瞭解有效的 ARIA 屬性](https://dequeuniversity.com/rules/axe/4.11/aria-valid-attr)。"
202
202
  },
203
203
  "core/audits/accessibility/aria-valid-attr.js | failureTitle": {
204
204
  "message": "`[aria-*]` 屬性無效或拼字錯誤"
@@ -210,7 +210,7 @@
210
210
  "message": "審核失敗的元素"
211
211
  },
212
212
  "core/audits/accessibility/button-name.js | description": {
213
- "message": "如果按鈕沒有無障礙名稱,螢幕閱讀器只會讀出「按鈕」,導致依賴螢幕閱讀器的使用者無法使用該按鈕。[瞭解如何讓使用者更容易使用按鈕](https://dequeuniversity.com/rules/axe/4.10/button-name)。"
213
+ "message": "如果按鈕沒有無障礙名稱,螢幕閱讀器只會讀出「按鈕」,導致依賴螢幕閱讀器的使用者無法使用該按鈕。[瞭解如何讓使用者更容易使用按鈕](https://dequeuniversity.com/rules/axe/4.11/button-name)。"
214
214
  },
215
215
  "core/audits/accessibility/button-name.js | failureTitle": {
216
216
  "message": "按鈕沒有可存取的名稱"
@@ -219,7 +219,7 @@
219
219
  "message": "按鈕有可存取的名稱"
220
220
  },
221
221
  "core/audits/accessibility/bypass.js | description": {
222
- "message": "為重複的內容新增略過選項,可提高鍵盤使用者的網頁瀏覽效率。[進一步瞭解如何繞過區塊](https://dequeuniversity.com/rules/axe/4.10/bypass)。"
222
+ "message": "為重複的內容新增略過選項,可提高鍵盤使用者的網頁瀏覽效率。[進一步瞭解如何繞過區塊](https://dequeuniversity.com/rules/axe/4.11/bypass)。"
223
223
  },
224
224
  "core/audits/accessibility/bypass.js | failureTitle": {
225
225
  "message": "網頁中沒有標題、略過連結或地標區域"
@@ -228,7 +228,7 @@
228
228
  "message": "網頁包含標題、略過連結或地標區域"
229
229
  },
230
230
  "core/audits/accessibility/color-contrast.js | description": {
231
- "message": "很多使用者難以閱讀或無法閱讀低對比度的文字。[瞭解如何提供充足的顏色對比度](https://dequeuniversity.com/rules/axe/4.10/color-contrast)。"
231
+ "message": "很多使用者難以閱讀或無法閱讀低對比度的文字。[瞭解如何提供充足的顏色對比度](https://dequeuniversity.com/rules/axe/4.11/color-contrast)。"
232
232
  },
233
233
  "core/audits/accessibility/color-contrast.js | failureTitle": {
234
234
  "message": "背景和前景顏色沒有足夠的對比度。"
@@ -237,7 +237,7 @@
237
237
  "message": "背景和前景顏色有足夠的對比度"
238
238
  },
239
239
  "core/audits/accessibility/definition-list.js | description": {
240
- "message": "如果定義清單的標記不正確,螢幕閱讀器可能會輸出令人混淆或不正確的內容。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.10/definition-list)。"
240
+ "message": "如果定義清單的標記不正確,螢幕閱讀器可能會輸出令人混淆或不正確的內容。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.11/definition-list)。"
241
241
  },
242
242
  "core/audits/accessibility/definition-list.js | failureTitle": {
243
243
  "message": "`<dl>` 並非只包含排序正確的 `<dt>` 和 `<dd>` 群組、`<script>`、`<template>` 或 `<div>` 元素。"
@@ -246,7 +246,7 @@
246
246
  "message": "`<dl>` 只包含排序正確的 `<dt>` 和 `<dd>` 群組、`<script>`、`<template>` 或 `<div>` 元素。"
247
247
  },
248
248
  "core/audits/accessibility/dlitem.js | description": {
249
- "message": "定義清單項目 (`<dt>` 和 `<dd>`) 必須納入在父 `<dl>` 元素中,才能確保螢幕閱讀器正確朗讀這些項目。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.10/dlitem)。"
249
+ "message": "定義清單項目 (`<dt>` 和 `<dd>`) 必須納入在父 `<dl>` 元素中,才能確保螢幕閱讀器正確朗讀這些項目。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.11/dlitem)。"
250
250
  },
251
251
  "core/audits/accessibility/dlitem.js | failureTitle": {
252
252
  "message": "定義清單項目未納入在 `<dl>` 元素中"
@@ -255,7 +255,7 @@
255
255
  "message": "定義清單項目已納入在 `<dl>` 元素中"
256
256
  },
257
257
  "core/audits/accessibility/document-title.js | description": {
258
- "message": "標題可讓螢幕閱讀器使用者概略瞭解網頁內容;搜尋引擎使用者經常需要使用此資料,判斷網頁內容是否與他們的搜尋查詢有關。[進一步瞭解文件標題](https://dequeuniversity.com/rules/axe/4.10/document-title)。"
258
+ "message": "標題可讓螢幕閱讀器使用者概略瞭解網頁內容;搜尋引擎使用者經常需要使用此資料,判斷網頁內容是否與他們的搜尋查詢有關。[進一步瞭解文件標題](https://dequeuniversity.com/rules/axe/4.11/document-title)。"
259
259
  },
260
260
  "core/audits/accessibility/document-title.js | failureTitle": {
261
261
  "message": "文件並無有效的 `<title>` 元素"
@@ -264,7 +264,7 @@
264
264
  "message": "文件具備 `<title>` 元素"
265
265
  },
266
266
  "core/audits/accessibility/duplicate-id-aria.js | description": {
267
- "message": "ARIA ID 的值不可重複,以免輔助技術忽略其他例項。[瞭解如何修正重複的 ARIA ID](https://dequeuniversity.com/rules/axe/4.10/duplicate-id-aria)。"
267
+ "message": "ARIA ID 的值不可重複,以免輔助技術忽略其他例項。[瞭解如何修正重複的 ARIA ID](https://dequeuniversity.com/rules/axe/4.11/duplicate-id-aria)。"
268
268
  },
269
269
  "core/audits/accessibility/duplicate-id-aria.js | failureTitle": {
270
270
  "message": "ARIA ID 重複"
@@ -273,7 +273,7 @@
273
273
  "message": "ARIA ID 沒有重複"
274
274
  },
275
275
  "core/audits/accessibility/empty-heading.js | description": {
276
- "message": "如果 heading 沒有內容或無障礙設計的文字,螢幕閱讀器使用者就無法存取網頁結構中的資料。[進一步瞭解 headings](https://dequeuniversity.com/rules/axe/4.10/empty-heading)。"
276
+ "message": "如果 heading 沒有內容或無障礙設計的文字,螢幕閱讀器使用者就無法存取網頁結構中的資料。[進一步瞭解 headings](https://dequeuniversity.com/rules/axe/4.11/empty-heading)。"
277
277
  },
278
278
  "core/audits/accessibility/empty-heading.js | failureTitle": {
279
279
  "message": "Heading 元素不含任何內容。"
@@ -282,7 +282,7 @@
282
282
  "message": "所有 heading 元素都包含內容。"
283
283
  },
284
284
  "core/audits/accessibility/form-field-multiple-labels.js | description": {
285
- "message": "使用第一個、最後一個或所有標籤的螢幕閱讀器等輔助技術,可能無法將包含多個標籤的表格欄位正確讀出。[瞭解如何使用表格標籤](https://dequeuniversity.com/rules/axe/4.10/form-field-multiple-labels)。"
285
+ "message": "使用第一個、最後一個或所有標籤的螢幕閱讀器等輔助技術,可能無法將包含多個標籤的表格欄位正確讀出。[瞭解如何使用表格標籤](https://dequeuniversity.com/rules/axe/4.11/form-field-multiple-labels)。"
286
286
  },
287
287
  "core/audits/accessibility/form-field-multiple-labels.js | failureTitle": {
288
288
  "message": "表格欄位含有多個標籤"
@@ -291,7 +291,7 @@
291
291
  "message": "沒有表格欄位含有多個標籤"
292
292
  },
293
293
  "core/audits/accessibility/frame-title.js | description": {
294
- "message": "螢幕閱讀器使用者依賴頁框標題來瞭解頁框內容。[進一步瞭解頁框標題](https://dequeuniversity.com/rules/axe/4.10/frame-title)。"
294
+ "message": "螢幕閱讀器使用者依賴頁框標題來瞭解頁框內容。[進一步瞭解頁框標題](https://dequeuniversity.com/rules/axe/4.11/frame-title)。"
295
295
  },
296
296
  "core/audits/accessibility/frame-title.js | failureTitle": {
297
297
  "message": "`<frame>` 或 `<iframe>` 元素沒有標題"
@@ -300,7 +300,7 @@
300
300
  "message": "`<frame>` 或 `<iframe>` 元素包含名稱"
301
301
  },
302
302
  "core/audits/accessibility/heading-order.js | description": {
303
- "message": "排序正確且未略過層級的標題可傳達網頁的語意結構,讓您在使用輔助技術時更容易瀏覽及理解。[進一步瞭解標題排序](https://dequeuniversity.com/rules/axe/4.10/heading-order)。"
303
+ "message": "排序正確且未略過層級的標題可傳達網頁的語意結構,讓您在使用輔助技術時更容易瀏覽及理解。[進一步瞭解標題排序](https://dequeuniversity.com/rules/axe/4.11/heading-order)。"
304
304
  },
305
305
  "core/audits/accessibility/heading-order.js | failureTitle": {
306
306
  "message": "標題元素未遞減排序"
@@ -309,7 +309,7 @@
309
309
  "message": "標題元素已遞減排序"
310
310
  },
311
311
  "core/audits/accessibility/html-has-lang.js | description": {
312
- "message": "如果網頁未指定 `lang` 屬性,螢幕閱讀器會假設網頁採用使用者設定螢幕閱讀器時選擇的預設語言。如果網頁實際並非採用預設語言,螢幕閱讀器可能無法正確朗讀文字。[進一步瞭解 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.10/html-has-lang)。"
312
+ "message": "如果網頁未指定 `lang` 屬性,螢幕閱讀器會假設網頁採用使用者設定螢幕閱讀器時選擇的預設語言。如果網頁實際並非採用預設語言,螢幕閱讀器可能無法正確朗讀文字。[進一步瞭解 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.11/html-has-lang)。"
313
313
  },
314
314
  "core/audits/accessibility/html-has-lang.js | failureTitle": {
315
315
  "message": "`<html>` 元素並無 `[lang]` 屬性"
@@ -318,7 +318,7 @@
318
318
  "message": "`<html>` 元素具備 `[lang]` 屬性"
319
319
  },
320
320
  "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.10/html-lang-valid)。"
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)。"
322
322
  },
323
323
  "core/audits/accessibility/html-lang-valid.js | failureTitle": {
324
324
  "message": "`<html>` 元素的 `[lang]` 屬性並無有效的值。"
@@ -327,7 +327,7 @@
327
327
  "message": "`<html>` 元素的 `[lang]` 屬性具備有效的值"
328
328
  },
329
329
  "core/audits/accessibility/html-xml-lang-mismatch.js | description": {
330
- "message": "如果網頁指定的語言不一致,螢幕閱讀器可能無法正確朗讀頁面上的文字。[進一步瞭解此 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.10/html-xml-lang-mismatch)。"
330
+ "message": "如果網頁指定的語言不一致,螢幕閱讀器可能無法正確朗讀頁面上的文字。[進一步瞭解此 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.11/html-xml-lang-mismatch)。"
331
331
  },
332
332
  "core/audits/accessibility/html-xml-lang-mismatch.js | failureTitle": {
333
333
  "message": "`<html>` 元素的 `[xml:lang]` 屬性與`[lang]` 屬性中的基本語言不同。"
@@ -336,7 +336,7 @@
336
336
  "message": "`<html>` 元素的 `[xml:lang]` 屬性與 `[lang]` 屬性的基本語言相同。"
337
337
  },
338
338
  "core/audits/accessibility/identical-links-same-purpose.js | description": {
339
- "message": "具有相同目的地的連結應提供相同的描述,協助使用者瞭解連結的用途,並決定是否前往。[進一步瞭解相同連結](https://dequeuniversity.com/rules/axe/4.10/identical-links-same-purpose)。"
339
+ "message": "具有相同目的地的連結應提供相同的描述,協助使用者瞭解連結的用途,並決定是否前往。[進一步瞭解相同連結](https://dequeuniversity.com/rules/axe/4.11/identical-links-same-purpose)。"
340
340
  },
341
341
  "core/audits/accessibility/identical-links-same-purpose.js | failureTitle": {
342
342
  "message": "相同連結的用途不同。"
@@ -345,7 +345,7 @@
345
345
  "message": "相同的連結用途相同。"
346
346
  },
347
347
  "core/audits/accessibility/image-alt.js | description": {
348
- "message": "資訊型元素應提供簡短貼切的替代文字。只要將 alt 屬性留空,系統便會忽略該裝飾元素。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.10/image-alt)。"
348
+ "message": "資訊型元素應提供簡短貼切的替代文字。只要將 alt 屬性留空,系統便會忽略該裝飾元素。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.11/image-alt)。"
349
349
  },
350
350
  "core/audits/accessibility/image-alt.js | failureTitle": {
351
351
  "message": "圖片元素並無 `[alt]` 屬性"
@@ -354,7 +354,7 @@
354
354
  "message": "圖片元素具有 `[alt]` 屬性"
355
355
  },
356
356
  "core/audits/accessibility/image-redundant-alt.js | description": {
357
- "message": "資訊型元素應提供簡短貼切的替代文字。替代文字如果與連結或圖片旁的文字完全相同,可能會對螢幕閱讀器使用者造成混淆,因為系統會朗讀同樣的文字兩次。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.10/image-redundant-alt)。"
357
+ "message": "資訊型元素應提供簡短貼切的替代文字。替代文字如果與連結或圖片旁的文字完全相同,可能會對螢幕閱讀器使用者造成混淆,因為系統會朗讀同樣的文字兩次。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.11/image-redundant-alt)。"
358
358
  },
359
359
  "core/audits/accessibility/image-redundant-alt.js | failureTitle": {
360
360
  "message": "圖片元素所含「`[alt]`」屬性有多餘的文字。"
@@ -363,7 +363,7 @@
363
363
  "message": "圖片元素所含「`[alt]`」屬性沒有多餘的文字。"
364
364
  },
365
365
  "core/audits/accessibility/input-button-name.js | description": {
366
- "message": "您可以為輸入按鈕新增可識別且可存取的文字,協助螢幕閱讀器使用者瞭解輸入按鈕的用途。[進一步瞭解輸入按鈕](https://dequeuniversity.com/rules/axe/4.10/input-button-name)。"
366
+ "message": "您可以為輸入按鈕新增可識別且可存取的文字,協助螢幕閱讀器使用者瞭解輸入按鈕的用途。[進一步瞭解輸入按鈕](https://dequeuniversity.com/rules/axe/4.11/input-button-name)。"
367
367
  },
368
368
  "core/audits/accessibility/input-button-name.js | failureTitle": {
369
369
  "message": "輸入按鈕沒有可識別的文字。"
@@ -372,7 +372,7 @@
372
372
  "message": "輸入按鈕有可識別的文字。"
373
373
  },
374
374
  "core/audits/accessibility/input-image-alt.js | description": {
375
- "message": "如果 `<input>` 按鈕是以圖片呈現,提供替代文字可協助螢幕閱讀器使用者瞭解該按鈕的用途。[瞭解輸入圖片說明文字](https://dequeuniversity.com/rules/axe/4.10/input-image-alt)。"
375
+ "message": "如果 `<input>` 按鈕是以圖片呈現,提供替代文字可協助螢幕閱讀器使用者瞭解該按鈕的用途。[瞭解輸入圖片說明文字](https://dequeuniversity.com/rules/axe/4.11/input-image-alt)。"
376
376
  },
377
377
  "core/audits/accessibility/input-image-alt.js | failureTitle": {
378
378
  "message": "`<input type=\"image\">` 元素未設定 `[alt]` 文字"
@@ -381,7 +381,7 @@
381
381
  "message": "`<input type=\"image\">` 元素具有 `[alt]` 文字"
382
382
  },
383
383
  "core/audits/accessibility/label-content-name-mismatch.js | description": {
384
- "message": "如果顯示的文字標籤與無障礙名稱不符,可能對螢幕閱讀器使用者造成混淆。[進一步瞭解無障礙名稱](https://dequeuniversity.com/rules/axe/4.10/label-content-name-mismatch)。"
384
+ "message": "如果顯示的文字標籤與無障礙名稱不符,可能對螢幕閱讀器使用者造成混淆。[進一步瞭解無障礙名稱](https://dequeuniversity.com/rules/axe/4.11/label-content-name-mismatch)。"
385
385
  },
386
386
  "core/audits/accessibility/label-content-name-mismatch.js | failureTitle": {
387
387
  "message": "含有可見文字標籤的元素沒有相符的無障礙名稱。"
@@ -390,7 +390,7 @@
390
390
  "message": "含有可見文字標籤的元素有相符的無障礙名稱。"
391
391
  },
392
392
  "core/audits/accessibility/label.js | description": {
393
- "message": "標籤可以確保輔助技術 (例如螢幕閱讀器) 正確朗讀表格控制項。[進一步瞭解表格元素標籤](https://dequeuniversity.com/rules/axe/4.10/label)。"
393
+ "message": "標籤可以確保輔助技術 (例如螢幕閱讀器) 正確朗讀表格控制項。[進一步瞭解表格元素標籤](https://dequeuniversity.com/rules/axe/4.11/label)。"
394
394
  },
395
395
  "core/audits/accessibility/label.js | failureTitle": {
396
396
  "message": "表格元素沒有相關聯的標籤"
@@ -399,7 +399,7 @@
399
399
  "message": "表格元素具有相關聯的標籤"
400
400
  },
401
401
  "core/audits/accessibility/landmark-one-main.js | description": {
402
- "message": "其中一項主要標籤可協助螢幕閱讀器使用者瀏覽網頁。[進一步瞭解標籤](https://dequeuniversity.com/rules/axe/4.10/landmark-one-main)。"
402
+ "message": "其中一項主要標籤可協助螢幕閱讀器使用者瀏覽網頁。[進一步瞭解標籤](https://dequeuniversity.com/rules/axe/4.11/landmark-one-main)。"
403
403
  },
404
404
  "core/audits/accessibility/landmark-one-main.js | failureTitle": {
405
405
  "message": "文件不含主要標籤。"
@@ -408,7 +408,7 @@
408
408
  "message": "文件具有主要標籤。"
409
409
  },
410
410
  "core/audits/accessibility/link-in-text-block.js | description": {
411
- "message": "很多使用者難以閱讀或無法閱讀低對比度的文字。可辨別的連結文字有助改善低視力使用者的體驗。[瞭解如何設定可明確辨別的連結](https://dequeuniversity.com/rules/axe/4.10/link-in-text-block)。"
411
+ "message": "很多使用者難以閱讀或無法閱讀低對比度的文字。可辨別的連結文字有助改善低視力使用者的體驗。[瞭解如何設定可明確辨別的連結](https://dequeuniversity.com/rules/axe/4.11/link-in-text-block)。"
412
412
  },
413
413
  "core/audits/accessibility/link-in-text-block.js | failureTitle": {
414
414
  "message": "連結需依賴顏色辨別。"
@@ -417,7 +417,7 @@
417
417
  "message": "不需依賴顏色亦可明確辨別連結。"
418
418
  },
419
419
  "core/audits/accessibility/link-name.js | description": {
420
- "message": "使用可辨別、不重複且可聚焦的連結文字 (以及連結圖片的替代文字),有助改善螢幕閱讀器使用者的瀏覽體驗。[瞭解如何讓連結更易用](https://dequeuniversity.com/rules/axe/4.10/link-name)。"
420
+ "message": "使用可辨別、不重複且可聚焦的連結文字 (以及連結圖片的替代文字),有助改善螢幕閱讀器使用者的瀏覽體驗。[瞭解如何讓連結更易用](https://dequeuniversity.com/rules/axe/4.11/link-name)。"
421
421
  },
422
422
  "core/audits/accessibility/link-name.js | failureTitle": {
423
423
  "message": "連結並無可辨別的名稱"
@@ -426,7 +426,7 @@
426
426
  "message": "連結具有可辨別的名稱"
427
427
  },
428
428
  "core/audits/accessibility/list.js | description": {
429
- "message": "螢幕閱讀器會以特定方式朗讀清單。確認清單採用正確的結構有助螢幕閱讀器順利輸出內容。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.10/list)。"
429
+ "message": "螢幕閱讀器會以特定方式朗讀清單。確認清單採用正確的結構有助螢幕閱讀器順利輸出內容。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.11/list)。"
430
430
  },
431
431
  "core/audits/accessibility/list.js | failureTitle": {
432
432
  "message": "清單中並非只包含 `<li>` 元素和指令碼支援元素 (`<script>` 和 `<template>`)。"
@@ -435,7 +435,7 @@
435
435
  "message": "清單只包含 `<li>` 元素和支援指令碼的元素 (`<script>` 和 `<template>`)。"
436
436
  },
437
437
  "core/audits/accessibility/listitem.js | description": {
438
- "message": "清單項目 (`<li>`) 必須包含在父元素 `<ul>`、`<ol>` 或 `<menu>` 中,螢幕閱讀器才能正確朗讀這些項目。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.10/listitem)。"
438
+ "message": "清單項目 (`<li>`) 必須包含在父元素 `<ul>`、`<ol>` 或 `<menu>` 中,螢幕閱讀器才能正確朗讀這些項目。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.11/listitem)。"
439
439
  },
440
440
  "core/audits/accessibility/listitem.js | failureTitle": {
441
441
  "message": "清單項目 (`<li>`) 未包含在 `<ul>`、`<ol>` 或 `<menu>` 父元素中。"
@@ -444,7 +444,7 @@
444
444
  "message": "清單項目 (`<li>`) 已包含在 `<ul>`、`<ol>` 或 `<menu>` 父元素中"
445
445
  },
446
446
  "core/audits/accessibility/meta-refresh.js | description": {
447
- "message": "使用者不會預期系統自動重新整理網頁,且執行此操作會將焦點移回網頁頂端。這可能會對使用者造成困擾或混淆。[進一步瞭解重新整理中繼標籤](https://dequeuniversity.com/rules/axe/4.10/meta-refresh)。"
447
+ "message": "使用者不會預期系統自動重新整理網頁,且執行此操作會將焦點移回網頁頂端。這可能會對使用者造成困擾或混淆。[進一步瞭解重新整理中繼標籤](https://dequeuniversity.com/rules/axe/4.11/meta-refresh)。"
448
448
  },
449
449
  "core/audits/accessibility/meta-refresh.js | failureTitle": {
450
450
  "message": "文件使用 `<meta http-equiv=\"refresh\">`"
@@ -453,7 +453,7 @@
453
453
  "message": "文件未使用 `<meta http-equiv=\"refresh\">`"
454
454
  },
455
455
  "core/audits/accessibility/meta-viewport.js | description": {
456
- "message": "停用縮放功能會對低視力人士造成困擾,他們需要透過螢幕放大功能才能清楚看見網頁內容。[進一步瞭解檢視區中繼標記](https://dequeuniversity.com/rules/axe/4.10/meta-viewport)。"
456
+ "message": "停用縮放功能會對低視力人士造成困擾,他們需要透過螢幕放大功能才能清楚看見網頁內容。[進一步瞭解檢視區中繼標記](https://dequeuniversity.com/rules/axe/4.11/meta-viewport)。"
457
457
  },
458
458
  "core/audits/accessibility/meta-viewport.js | failureTitle": {
459
459
  "message": "`<meta name=\"viewport\">` 元素中使用了 `[user-scalable=\"no\"]`,或 `[maximum-scale]` 屬性少於 5。"
@@ -462,7 +462,7 @@
462
462
  "message": "`<meta name=\"viewport\">` 元素中未有使用 `[user-scalable=\"no\"]` 元素,而且 `[maximum-scale]` 屬性少於 5。"
463
463
  },
464
464
  "core/audits/accessibility/object-alt.js | description": {
465
- "message": "螢幕閱讀器無法翻譯非文字內容。為 `<object>` 元素新增替代文字,可協助螢幕閱讀器向使用者傳達其意思。[進一步瞭解 `object` 元素的說明文字](https://dequeuniversity.com/rules/axe/4.10/object-alt)。"
465
+ "message": "螢幕閱讀器無法翻譯非文字內容。為 `<object>` 元素新增替代文字,可協助螢幕閱讀器向使用者傳達其意思。[進一步瞭解 `object` 元素的說明文字](https://dequeuniversity.com/rules/axe/4.11/object-alt)。"
466
466
  },
467
467
  "core/audits/accessibility/object-alt.js | failureTitle": {
468
468
  "message": "`<object>` 元素未設定替代文字"
@@ -471,7 +471,7 @@
471
471
  "message": "`<object>` 元素具有替代文字"
472
472
  },
473
473
  "core/audits/accessibility/select-name.js | description": {
474
- "message": "沒有有效標籤的 Form 元素可能對螢幕閱讀器使用者造成困擾。[進一步瞭解 `select` 元素](https://dequeuniversity.com/rules/axe/4.10/select-name)。"
474
+ "message": "沒有有效標籤的 Form 元素可能對螢幕閱讀器使用者造成困擾。[進一步瞭解 `select` 元素](https://dequeuniversity.com/rules/axe/4.11/select-name)。"
475
475
  },
476
476
  "core/audits/accessibility/select-name.js | failureTitle": {
477
477
  "message": "Select 元素沒有相關聯的 label 元素。"
@@ -480,7 +480,7 @@
480
480
  "message": "Select 元素具有關聯的 label 元素。"
481
481
  },
482
482
  "core/audits/accessibility/skip-link.js | description": {
483
- "message": "加入跳過連結可協助使用者直接前往主要內容,以節省時間。[進一步瞭解跳過連結](https://dequeuniversity.com/rules/axe/4.10/skip-link)。"
483
+ "message": "加入跳過連結可協助使用者直接前往主要內容,以節省時間。[進一步瞭解跳過連結](https://dequeuniversity.com/rules/axe/4.11/skip-link)。"
484
484
  },
485
485
  "core/audits/accessibility/skip-link.js | failureTitle": {
486
486
  "message": "跳過連結無法聚焦。"
@@ -489,7 +489,7 @@
489
489
  "message": "跳過連結可聚焦。"
490
490
  },
491
491
  "core/audits/accessibility/tabindex.js | description": {
492
- "message": "如果值大於 0,代表已採用明確的瀏覽排序。雖然此做法在技術上可行,但通常會對依賴輔助技術的使用者造成困擾。[進一步瞭解此 `tabindex` 屬性](https://dequeuniversity.com/rules/axe/4.10/tabindex)。"
492
+ "message": "如果值大於 0,代表已採用明確的瀏覽排序。雖然此做法在技術上可行,但通常會對依賴輔助技術的使用者造成困擾。[進一步瞭解此 `tabindex` 屬性](https://dequeuniversity.com/rules/axe/4.11/tabindex)。"
493
493
  },
494
494
  "core/audits/accessibility/tabindex.js | failureTitle": {
495
495
  "message": "部分元素的 `[tabindex]` 值大於 0"
@@ -498,7 +498,7 @@
498
498
  "message": "所有元素的 `[tabindex]` 值皆未超過 0"
499
499
  },
500
500
  "core/audits/accessibility/table-duplicate-name.js | description": {
501
- "message": "摘要屬性應描述表格結構,而「`<caption>`」應含有顯示在螢幕上的標題。提供準確的表格標記,對螢幕閱讀器使用者有幫助。[進一步瞭解摘要和說明文字](https://dequeuniversity.com/rules/axe/4.10/table-duplicate-name)。"
501
+ "message": "摘要屬性應描述表格結構,而「`<caption>`」應含有顯示在螢幕上的標題。提供準確的表格標記,對螢幕閱讀器使用者有幫助。[進一步瞭解摘要和說明文字](https://dequeuniversity.com/rules/axe/4.11/table-duplicate-name)。"
502
502
  },
503
503
  "core/audits/accessibility/table-duplicate-name.js | failureTitle": {
504
504
  "message": "表格內容與摘要屬性和「`<caption>.`」相同"
@@ -507,7 +507,7 @@
507
507
  "message": "表格內容與摘要屬性和「`<caption>`」不同。"
508
508
  },
509
509
  "core/audits/accessibility/table-fake-caption.js | description": {
510
- "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果表格使用實際的標題元素,而非含有 `[colspan]` 屬性的儲存格,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解標題](https://dequeuniversity.com/rules/axe/4.10/table-fake-caption)。"
510
+ "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果表格使用實際的標題元素,而非含有 `[colspan]` 屬性的儲存格,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解標題](https://dequeuniversity.com/rules/axe/4.11/table-fake-caption)。"
511
511
  },
512
512
  "core/audits/accessibility/table-fake-caption.js | failureTitle": {
513
513
  "message": "表格使用含有 `[colspan]` 屬性的儲存格表示標題,而非使用 `<caption>` 屬性。"
@@ -516,7 +516,7 @@
516
516
  "message": "表格使用 `<caption>` 屬性表示標題,而非使用含有 `[colspan]` 屬性的儲存格。"
517
517
  },
518
518
  "core/audits/accessibility/target-size.js | description": {
519
- "message": "只要觸控目標提供足夠的大小和間距,就能協助難以觸控細小控制項的使用者啟動目標。[進一步瞭解觸控目標](https://dequeuniversity.com/rules/axe/4.10/target-size)。"
519
+ "message": "只要觸控目標提供足夠的大小和間距,就能協助難以觸控細小控制項的使用者啟動目標。[進一步瞭解觸控目標](https://dequeuniversity.com/rules/axe/4.11/target-size)。"
520
520
  },
521
521
  "core/audits/accessibility/target-size.js | failureTitle": {
522
522
  "message": "觸控目標的大小或間距不足。"
@@ -525,7 +525,7 @@
525
525
  "message": "觸控目標的大小和間距充足。"
526
526
  },
527
527
  "core/audits/accessibility/td-has-header.js | description": {
528
- "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果大型表格 (寬度和高度為 3 個或以上儲存格) 中的 `<td>` 元素使用相關聯的表格標題,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.10/td-has-header)。"
528
+ "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果大型表格 (寬度和高度為 3 個或以上儲存格) 中的 `<td>` 元素使用相關聯的表格標題,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.11/td-has-header)。"
529
529
  },
530
530
  "core/audits/accessibility/td-has-header.js | failureTitle": {
531
531
  "message": "大型 `<table>` 中的 `<td>` 元素沒有表格標題。"
@@ -534,7 +534,7 @@
534
534
  "message": "大型 `<table>` 中的 `<td>` 元素有一或多個表格標題。"
535
535
  },
536
536
  "core/audits/accessibility/td-headers-attr.js | description": {
537
- "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保採用 `[headers]` 屬性的 `<td>` 儲存格只參照同一表格中的其他儲存格,或許能改善螢幕閱讀器的使用體驗。[進一步瞭解 `headers` 屬性](https://dequeuniversity.com/rules/axe/4.10/td-headers-attr)。"
537
+ "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保採用 `[headers]` 屬性的 `<td>` 儲存格只參照同一表格中的其他儲存格,或許能改善螢幕閱讀器的使用體驗。[進一步瞭解 `headers` 屬性](https://dequeuniversity.com/rules/axe/4.11/td-headers-attr)。"
538
538
  },
539
539
  "core/audits/accessibility/td-headers-attr.js | failureTitle": {
540
540
  "message": "`<table>` 元素中採用 `[headers]` 屬性的儲存格參照了 `id`,無法在同一表格中找到此元素。"
@@ -543,7 +543,7 @@
543
543
  "message": "`<table>` 元素中採用 `[headers]` 屬性的儲存格,參照了同一表格中的其他儲存格。"
544
544
  },
545
545
  "core/audits/accessibility/th-has-data-cells.js | description": {
546
- "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保表格標題一律參照特定一組儲存格,或許能有助改善螢幕閱讀器使用者的體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.10/th-has-data-cells)。"
546
+ "message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保表格標題一律參照特定一組儲存格,或許能有助改善螢幕閱讀器使用者的體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.11/th-has-data-cells)。"
547
547
  },
548
548
  "core/audits/accessibility/th-has-data-cells.js | failureTitle": {
549
549
  "message": "`<th>` 元素及帶有 `[role=\"columnheader\"/\"rowheader\"]` 的元素沒有所描述的資料儲存格。"
@@ -552,7 +552,7 @@
552
552
  "message": "`<th>` 元素和帶有 `[role=\"columnheader\"/\"rowheader\"]` 的元素有其描述的資料儲存格。"
553
553
  },
554
554
  "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.10/valid-lang)。"
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)。"
556
556
  },
557
557
  "core/audits/accessibility/valid-lang.js | failureTitle": {
558
558
  "message": "`[lang]` 屬性並無有效的值"
@@ -561,7 +561,7 @@
561
561
  "message": "`[lang]` 屬性具備有效的值"
562
562
  },
563
563
  "core/audits/accessibility/video-caption.js | description": {
564
- "message": "如果在影片中提供字幕,將有助於失聰或聽障使用者取得影片資料。[進一步瞭解影片字幕](https://dequeuniversity.com/rules/axe/4.10/video-caption)。"
564
+ "message": "如果在影片中提供字幕,將有助於失聰或聽障使用者取得影片資料。[進一步瞭解影片字幕](https://dequeuniversity.com/rules/axe/4.11/video-caption)。"
565
565
  },
566
566
  "core/audits/accessibility/video-caption.js | failureTitle": {
567
567
  "message": "`<video>` 元素不含任何帶有 `[kind=\"captions\"]` 的 `<track>` 元素"
@@ -647,45 +647,6 @@
647
647
  "core/audits/bootup-time.js | title": {
648
648
  "message": "JavaScript 執行時間"
649
649
  },
650
- "core/audits/byte-efficiency/duplicated-javascript.js | description": {
651
- "message": "從套件中移除重複的大型 JavaScript 模組,以減少網絡活動耗用不必要的字節。 "
652
- },
653
- "core/audits/byte-efficiency/duplicated-javascript.js | title": {
654
- "message": "請移除 JavaScript 套件中的重複模組"
655
- },
656
- "core/audits/byte-efficiency/efficient-animated-content.js | description": {
657
- "message": "使用大型 GIF 檔案呈現動畫內容會降低網絡傳輸效率。建議改用 MPEG4/WebM 格式的動畫影片和 PNG/WebP 格式的靜態圖片取代 GIF,以節省網絡字節。[進一步瞭解有效率的影片格式](https://developer.chrome.com/docs/lighthouse/performance/efficient-animated-content/)"
658
- },
659
- "core/audits/byte-efficiency/efficient-animated-content.js | title": {
660
- "message": "使用影片格式的動畫內容"
661
- },
662
- "core/audits/byte-efficiency/legacy-javascript.js | description": {
663
- "message": "Polyfill 和轉換可讓舊版瀏覽器使用新版 JavaScript 的功能。不過,有很多 Polyfill 和轉換都不是新型瀏覽器的必要項目。除非你認為必須支援舊版瀏覽器,否則請考慮將 JavaScript 建立流程改為不轉譯[基準](https://web.dev/baseline)功能。[瞭解為何大部分網站無需轉譯也能部署 ES6+ 程式碼](https://philipwalton.com/articles/the-state-of-es5-on-the-web/)"
664
- },
665
- "core/audits/byte-efficiency/legacy-javascript.js | detectedCoreJs2Warning": {
666
- "message": "系統偵測到網頁採用 core-js 第 2 版。第 3 版大幅提升效能,請務必升級。"
667
- },
668
- "core/audits/byte-efficiency/legacy-javascript.js | title": {
669
- "message": "避免向新型瀏覽器提供舊版 JavaScript"
670
- },
671
- "core/audits/byte-efficiency/modern-image-formats.js | description": {
672
- "message": "WebP 和 AVIF 等圖片格式通常比 PNG 或 JPEG 有更好的壓縮效果,能夠更快完成下載及減少數據用量。[進一步瞭解新型圖像格式](https://developer.chrome.com/docs/lighthouse/performance/uses-webp-images/)。"
673
- },
674
- "core/audits/byte-efficiency/modern-image-formats.js | title": {
675
- "message": "提供 next-gen 格式的圖片"
676
- },
677
- "core/audits/byte-efficiency/offscreen-images.js | description": {
678
- "message": "建議在所有重要資源載入完成前,延遲載入螢幕外和隱藏的圖片,以縮短可互動所需時間。[瞭解如何延遲載入螢幕外的圖片](https://developer.chrome.com/docs/lighthouse/performance/offscreen-images/)。"
679
- },
680
- "core/audits/byte-efficiency/offscreen-images.js | title": {
681
- "message": "延遲載入螢幕外圖片"
682
- },
683
- "core/audits/byte-efficiency/render-blocking-resources.js | description": {
684
- "message": "過多資源往往會阻止系統首次繪製頁面。建議內嵌重要的 JS/CSS,延遲所有不重要的 JS/樣式。[瞭解如何移除阻止輸出的資源](https://developer.chrome.com/docs/lighthouse/performance/render-blocking-resources/)。"
685
- },
686
- "core/audits/byte-efficiency/render-blocking-resources.js | title": {
687
- "message": "排除阻止呈現的資源"
688
- },
689
650
  "core/audits/byte-efficiency/total-byte-weight.js | description": {
690
651
  "message": "網絡負載過大會造成使用者的費用負擔,且往往與過長載入時間息息相關。[瞭解如何減低負載大小](https://developer.chrome.com/docs/lighthouse/performance/total-byte-weight/)。"
691
652
  },
@@ -722,48 +683,6 @@
722
683
  "core/audits/byte-efficiency/unused-javascript.js | title": {
723
684
  "message": "減少未使用的 JavaScript"
724
685
  },
725
- "core/audits/byte-efficiency/uses-long-cache-ttl.js | description": {
726
- "message": "延長快取期限可加快重覆瀏覽頁面的速度。[進一步瞭解有效率的快取政策](https://developer.chrome.com/docs/lighthouse/performance/uses-long-cache-ttl/)。"
727
- },
728
- "core/audits/byte-efficiency/uses-long-cache-ttl.js | displayValue": {
729
- "message": "{itemCount,plural, =1{已找到 1 項資源}other{已找到 # 項資源}}"
730
- },
731
- "core/audits/byte-efficiency/uses-long-cache-ttl.js | failureTitle": {
732
- "message": "採用有效的快取政策提供靜態資產"
733
- },
734
- "core/audits/byte-efficiency/uses-long-cache-ttl.js | title": {
735
- "message": "使用有效的快取政策處理靜態資產"
736
- },
737
- "core/audits/byte-efficiency/uses-optimized-images.js | description": {
738
- "message": "優化圖片以加快載入速度,減少流動數據用量。[瞭解如何有效率地進行圖片編碼](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)."
739
- },
740
- "core/audits/byte-efficiency/uses-optimized-images.js | title": {
741
- "message": "有效地進行圖片編碼"
742
- },
743
- "core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnActualDimensions": {
744
- "message": "實際尺寸"
745
- },
746
- "core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnDisplayedDimensions": {
747
- "message": "顯示的尺寸"
748
- },
749
- "core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
750
- "message": "圖片大於其顯示大小"
751
- },
752
- "core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
753
- "message": "圖片適合其顯示大小"
754
- },
755
- "core/audits/byte-efficiency/uses-responsive-images.js | description": {
756
- "message": "提供適當大小的圖片有助節省流動數據用量,並縮短載入時間。[瞭解如何調整圖片大小](https://developer.chrome.com/docs/lighthouse/performance/uses-responsive-images/)。"
757
- },
758
- "core/audits/byte-efficiency/uses-responsive-images.js | title": {
759
- "message": "適當調整圖片大小"
760
- },
761
- "core/audits/byte-efficiency/uses-text-compression.js | description": {
762
- "message": "文字資源應經過 (gzip、deflate 或 brotli) 壓縮,以將網絡字節總數減至最少。[進一步瞭解文字壓縮](https://developer.chrome.com/docs/lighthouse/performance/uses-text-compression/)。"
763
- },
764
- "core/audits/byte-efficiency/uses-text-compression.js | title": {
765
- "message": "啟用文字壓縮"
766
- },
767
686
  "core/audits/clickjacking-mitigation.js | columnSeverity": {
768
687
  "message": "嚴重程度"
769
688
  },
@@ -776,15 +695,6 @@
776
695
  "core/audits/clickjacking-mitigation.js | title": {
777
696
  "message": "使用 XFO 或 CSP 防範點擊劫持攻擊"
778
697
  },
779
- "core/audits/critical-request-chains.js | description": {
780
- "message": "下方的「關鍵要求鏈結」顯示以高優先次序發佈的資源。為了提高頁面載入速度,建議您縮短鏈結長度,縮減下載資源的大小,或延遲下載不必要資源。[瞭解如何避免鏈結關鍵要求](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains/)。"
781
- },
782
- "core/audits/critical-request-chains.js | displayValue": {
783
- "message": "{itemCount,plural, =1{已找到 1 個鏈結}other{已找到 # 個鏈結}}"
784
- },
785
- "core/audits/critical-request-chains.js | title": {
786
- "message": "避免鏈結重要要求"
787
- },
788
698
  "core/audits/csp-xss.js | columnDirective": {
789
699
  "message": "指令"
790
700
  },
@@ -860,33 +770,6 @@
860
770
  "core/audits/dobetterweb/doctype.js | title": {
861
771
  "message": "網頁含有 HTML DOCTYPE"
862
772
  },
863
- "core/audits/dobetterweb/dom-size.js | columnStatistic": {
864
- "message": "統計資料"
865
- },
866
- "core/audits/dobetterweb/dom-size.js | columnValue": {
867
- "message": "值"
868
- },
869
- "core/audits/dobetterweb/dom-size.js | description": {
870
- "message": "大型 DOM 會增加記憶體用量、延長[樣式運算](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations)的時間,並產生費用高昂的[版面配置重排](https://developers.google.com/speed/articles/reflow)。[瞭解如何避免 DOM 過大](https://developer.chrome.com/docs/lighthouse/performance/dom-size/)。"
871
- },
872
- "core/audits/dobetterweb/dom-size.js | displayValue": {
873
- "message": "{itemCount,plural, =1{1 個元素}other{# 個元素}}"
874
- },
875
- "core/audits/dobetterweb/dom-size.js | failureTitle": {
876
- "message": "避免 DOM 過大"
877
- },
878
- "core/audits/dobetterweb/dom-size.js | statisticDOMDepth": {
879
- "message": "DOM 深度上限"
880
- },
881
- "core/audits/dobetterweb/dom-size.js | statisticDOMElements": {
882
- "message": "DOM 元素總數"
883
- },
884
- "core/audits/dobetterweb/dom-size.js | statisticDOMWidth": {
885
- "message": "子元素數量上限"
886
- },
887
- "core/audits/dobetterweb/dom-size.js | title": {
888
- "message": "避免 DOM 過大"
889
- },
890
773
  "core/audits/dobetterweb/geolocation-on-start.js | description": {
891
774
  "message": "如果未提供其他資訊就要求存取使用者的位置,會讓使用者感到困惑而不信任網站。建議您在使用者執行特定動作時,再提出這項要求。[進一步瞭解地理位置權限](https://developer.chrome.com/docs/lighthouse/best-practices/geolocation-on-start/)。"
892
775
  },
@@ -923,15 +806,6 @@
923
806
  "core/audits/dobetterweb/js-libraries.js | title": {
924
807
  "message": "偵測到的 JavaScript 媒體庫"
925
808
  },
926
- "core/audits/dobetterweb/no-document-write.js | description": {
927
- "message": "對於連線速度較慢的使用者,透過 `document.write()` 動態插入的外部指令碼可能會導致網頁延遲載入數十秒。[瞭解如何避免 document.write()](https://developer.chrome.com/docs/lighthouse/best-practices/no-document-write/)。"
928
- },
929
- "core/audits/dobetterweb/no-document-write.js | failureTitle": {
930
- "message": "避免使用 `document.write()`"
931
- },
932
- "core/audits/dobetterweb/no-document-write.js | title": {
933
- "message": "避免使用 `document.write()`"
934
- },
935
809
  "core/audits/dobetterweb/notification-on-start.js | description": {
936
810
  "message": "如果未提供其他資訊就要求使用者允許網站顯示通知,會讓使用者感到困惑而不信任網站。建議您在使用者操作特定手勢時,再提出這項要求。[進一步瞭解以負責任的方式取得通知權限](https://developer.chrome.com/docs/lighthouse/best-practices/notification-on-start/)。"
937
811
  },
@@ -950,27 +824,6 @@
950
824
  "core/audits/dobetterweb/paste-preventing-inputs.js | title": {
951
825
  "message": "允許使用者貼上至輸入欄位"
952
826
  },
953
- "core/audits/dobetterweb/uses-http2.js | columnProtocol": {
954
- "message": "通訊協定"
955
- },
956
- "core/audits/dobetterweb/uses-http2.js | description": {
957
- "message": "HTTP/2 具備很多 HTTP/1.1 沒有的優點,包括二進制標題和多工處理。[進一步瞭解 HTTP/2](https://developer.chrome.com/docs/lighthouse/best-practices/uses-http2/)。"
958
- },
959
- "core/audits/dobetterweb/uses-http2.js | displayValue": {
960
- "message": "{itemCount,plural, =1{有 1 個要求未透過 HTTP/2 傳送}other{有 # 個要求未透過 HTTP/2 傳送}}"
961
- },
962
- "core/audits/dobetterweb/uses-http2.js | title": {
963
- "message": "使用 HTTP/2"
964
- },
965
- "core/audits/dobetterweb/uses-passive-event-listeners.js | description": {
966
- "message": "建議將輕觸動作和滑鼠滾輪事件監聽器標示為 `passive`,以提升網頁的捲動效能。[進一步瞭解如何採用被動事件監聽器器](https://developer.chrome.com/docs/lighthouse/best-practices/uses-passive-event-listeners/)。"
967
- },
968
- "core/audits/dobetterweb/uses-passive-event-listeners.js | failureTitle": {
969
- "message": "未使用被動事件監聽器來提升捲動效能"
970
- },
971
- "core/audits/dobetterweb/uses-passive-event-listeners.js | title": {
972
- "message": "使用被動活動監聽器來提升捲動效能"
973
- },
974
827
  "core/audits/errors-in-console.js | description": {
975
828
  "message": "如果控制台有錯誤記錄,表示系統仍有問題尚待解決,例如網絡要求錯誤和其他瀏覽器問題。[進一步瞭解在控制台診斷審核中的這些錯誤](https://developer.chrome.com/docs/lighthouse/best-practices/errors-in-console/)"
976
829
  },
@@ -980,18 +833,6 @@
980
833
  "core/audits/errors-in-console.js | title": {
981
834
  "message": "系統未在管理中心記錄瀏覽器發生的錯誤"
982
835
  },
983
- "core/audits/font-display.js | description": {
984
- "message": "利用 `font-display` CSS 功能,確保系統在載入網頁字型時使用者可以看到文字。[進一步瞭解 `font-display`](https://developer.chrome.com/docs/lighthouse/performance/font-display/)。"
985
- },
986
- "core/audits/font-display.js | failureTitle": {
987
- "message": "確保文字在網頁字型載入時仍然顯示"
988
- },
989
- "core/audits/font-display.js | title": {
990
- "message": "在網頁字型載入時,所有文字仍然顯示"
991
- },
992
- "core/audits/font-display.js | undeclaredFontOriginWarning": {
993
- "message": "{fontCountForOrigin,plural, =1{Lighthouse 無法為來源 ({fontOrigin}) 自動檢查 `font-display` 值。}other{Lighthouse 無法為來源 ({fontOrigin}) 自動檢查 `font-display` 值。}}"
994
- },
995
836
  "core/audits/has-hsts.js | columnDirective": {
996
837
  "message": "指令"
997
838
  },
@@ -1088,33 +929,6 @@
1088
929
  "core/audits/is-on-https.js | warning": {
1089
930
  "message": "允許 (附警告)"
1090
931
  },
1091
- "core/audits/largest-contentful-paint-element.js | columnPercentOfLCP": {
1092
- "message": "% 的 LCP"
1093
- },
1094
- "core/audits/largest-contentful-paint-element.js | columnPhase": {
1095
- "message": "階段"
1096
- },
1097
- "core/audits/largest-contentful-paint-element.js | columnTiming": {
1098
- "message": "時間"
1099
- },
1100
- "core/audits/largest-contentful-paint-element.js | description": {
1101
- "message": "這是在檢視區中繪製的最大內容元素。[進一步瞭解「最大內容繪製」元素](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)"
1102
- },
1103
- "core/audits/largest-contentful-paint-element.js | itemLoadDelay": {
1104
- "message": "載入延遲"
1105
- },
1106
- "core/audits/largest-contentful-paint-element.js | itemLoadTime": {
1107
- "message": "載入時間"
1108
- },
1109
- "core/audits/largest-contentful-paint-element.js | itemRenderDelay": {
1110
- "message": "輸出延遲"
1111
- },
1112
- "core/audits/largest-contentful-paint-element.js | itemTTFB": {
1113
- "message": "TTFB"
1114
- },
1115
- "core/audits/largest-contentful-paint-element.js | title": {
1116
- "message": "「最大內容繪製」元素"
1117
- },
1118
932
  "core/audits/layout-shifts.js | columnScore": {
1119
933
  "message": "版面配置轉移分數"
1120
934
  },
@@ -1136,15 +950,6 @@
1136
950
  "core/audits/layout-shifts.js | title": {
1137
951
  "message": "避免大幅度的版面配置轉移"
1138
952
  },
1139
- "core/audits/lcp-lazy-loaded.js | description": {
1140
- "message": "系統會在頁面生命週期的較後時段輸出延遲載入的毋需捲動的當眼位置圖片,這可能導致最大內容繪製發生延遲。[進一步瞭解最佳延遲載入](https://web.dev/articles/lcp-lazy-loading)。"
1141
- },
1142
- "core/audits/lcp-lazy-loaded.js | failureTitle": {
1143
- "message": "「最大內容繪製」圖片延遲載入"
1144
- },
1145
- "core/audits/lcp-lazy-loaded.js | title": {
1146
- "message": "「最大內容繪製」圖片沒有延遲載入"
1147
- },
1148
953
  "core/audits/long-tasks.js | description": {
1149
954
  "message": "列出主要執行緒上執行時間最長的工作,有助辨識導致輸入延遲的主因。[瞭解如何避免長時間的主要執行緒工作](https://web.dev/articles/optimize-long-tasks)"
1150
955
  },
@@ -1172,9 +977,6 @@
1172
977
  "core/audits/metrics/first-contentful-paint.js | description": {
1173
978
  "message": "「首次內容繪製時間」標示繪製首個文字/首張圖片的時間。[進一步瞭解「首次內容繪製時間」數據](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)。"
1174
979
  },
1175
- "core/audits/metrics/first-meaningful-paint.js | description": {
1176
- "message": "「首次有效繪製時間」評估頁面主要內容顯示的時間。[進一步瞭解「首次有效繪製時間」數據](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/)。"
1177
- },
1178
980
  "core/audits/metrics/interaction-to-next-paint.js | description": {
1179
981
  "message": "「互動至下一個繪製」會測量網頁回應速度,亦即網頁明顯回應使用者輸入內容所需的時間。[進一步瞭解「互動至下一個繪製」數據](https://web.dev/articles/inp)。"
1180
982
  },
@@ -1229,6 +1031,9 @@
1229
1031
  "core/audits/non-composited-animations.js | unsupportedCSSProperty": {
1230
1032
  "message": "{propertyCount,plural, =1{不支援的 CSS 屬性:{properties}}other{不支援的 CSS 屬性:{properties}}}"
1231
1033
  },
1034
+ "core/audits/non-composited-animations.js | unsupportedCustomCSSProperty": {
1035
+ "message": "{propertyCount,plural, =1{自訂 CSS 屬性無法在合成器中動畫化:{properties}}other{自訂 CSS 屬性無法在合成器中動畫化:{properties}}}"
1036
+ },
1232
1037
  "core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1233
1038
  "message": "效果包含不支援的時間參數"
1234
1039
  },
@@ -1250,21 +1055,6 @@
1250
1055
  "core/audits/origin-isolation.js | title": {
1251
1056
  "message": "使用 COOP 確保正確的隔離來源"
1252
1057
  },
1253
- "core/audits/preload-fonts.js | description": {
1254
- "message": "請預先載入 `optional` 字型,以便新訪客使用。[進一步瞭解如何預先載入字型](https://web.dev/articles/preload-optional-fonts)"
1255
- },
1256
- "core/audits/preload-fonts.js | failureTitle": {
1257
- "message": "並未預先載入使用 `font-display: optional` 的字型"
1258
- },
1259
- "core/audits/preload-fonts.js | title": {
1260
- "message": "已預先載入使用 `font-display: optional` 的字型"
1261
- },
1262
- "core/audits/prioritize-lcp-image.js | description": {
1263
- "message": "如果 LCP 元素是以動態方式加入網頁,您應預先載入圖片才能改善 LCP。[進一步瞭解預先載入 LCP 元素](https://web.dev/articles/optimize-lcp#optimize_when_the_resource_is_discovered)。"
1264
- },
1265
- "core/audits/prioritize-lcp-image.js | title": {
1266
- "message": "預先載入「最大內容繪製」圖片"
1267
- },
1268
1058
  "core/audits/redirects-http.js | description": {
1269
1059
  "message": "請確認是否已將所有 HTTP 流量重新導向至 HTTPS,以便為所有使用者提供安全的網絡功能。[瞭解詳情](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)。"
1270
1060
  },
@@ -1316,36 +1106,6 @@
1316
1106
  "core/audits/seo/crawlable-anchors.js | title": {
1317
1107
  "message": "可檢索的連結"
1318
1108
  },
1319
- "core/audits/seo/font-size.js | additionalIllegibleText": {
1320
- "message": "其他難以辨識的文字"
1321
- },
1322
- "core/audits/seo/font-size.js | columnFontSize": {
1323
- "message": "字型大小"
1324
- },
1325
- "core/audits/seo/font-size.js | columnPercentPageText": {
1326
- "message": "頁面文字百分比"
1327
- },
1328
- "core/audits/seo/font-size.js | columnSelector": {
1329
- "message": "選取器"
1330
- },
1331
- "core/audits/seo/font-size.js | description": {
1332
- "message": "如果字型小於 12 像素,文字會太小而難以辨識,流動裝置訪客需要「兩指縮放」才能閱讀內容。網頁中應有超過 60% 採用最少 12 像素的文字。[進一步瞭解清晰易讀的字型大小](https://developer.chrome.com/docs/lighthouse/seo/font-size/)。"
1333
- },
1334
- "core/audits/seo/font-size.js | displayValue": {
1335
- "message": "{decimalProportion, number, extendedPercent} 的文字清晰可讀"
1336
- },
1337
- "core/audits/seo/font-size.js | explanationViewport": {
1338
- "message": "由於網頁沒有為流動裝置螢幕設定合適的檢視區中繼標記,因文字難以辨識。"
1339
- },
1340
- "core/audits/seo/font-size.js | failureTitle": {
1341
- "message": "文件使用的字型大小難以辨識"
1342
- },
1343
- "core/audits/seo/font-size.js | legibleText": {
1344
- "message": "清晰可讀的文字"
1345
- },
1346
- "core/audits/seo/font-size.js | title": {
1347
- "message": "文件使用的字型大小清晰可讀"
1348
- },
1349
1109
  "core/audits/seo/hreflang.js | description": {
1350
1110
  "message": "hreflang 連結會通知搜尋引擎,應在特定語言或區域的搜尋結果中該顯示哪個版本的網頁。[進一步瞭解 `hreflang`](https://developer.chrome.com/docs/lighthouse/seo/hreflang/)。"
1351
1111
  },
@@ -1392,7 +1152,7 @@
1392
1152
  "message": "連結具有說明文字"
1393
1153
  },
1394
1154
  "core/audits/seo/manual/structured-data.js | description": {
1395
- "message": "執行[結構化資料測試工具](https://search.google.com/structured-data/testing-tool/)和[結構化資料 Linter](http://linter.structured-data.org/) 來驗證結構化資料。[進一步瞭解結構化資料](https://developer.chrome.com/docs/lighthouse/seo/structured-data/)。"
1155
+ "message": "執行[結構化資料測試工具](https://developers.google.com/search/docs/appearance/structured-data/)來驗證結構化資料。[進一步瞭解結構化資料](https://developer.chrome.com/docs/lighthouse/seo/structured-data/)。"
1396
1156
  },
1397
1157
  "core/audits/seo/manual/structured-data.js | title": {
1398
1158
  "message": "結構化資料有效"
@@ -1451,48 +1211,6 @@
1451
1211
  "core/audits/third-party-cookies.js | title": {
1452
1212
  "message": "避免使用第三方 Cookie"
1453
1213
  },
1454
- "core/audits/third-party-facades.js | categoryCustomerSuccess": {
1455
- "message": "{productName} (客戶支援)"
1456
- },
1457
- "core/audits/third-party-facades.js | categoryMarketing": {
1458
- "message": "{productName} (市場推廣)"
1459
- },
1460
- "core/audits/third-party-facades.js | categorySocial": {
1461
- "message": "{productName} (社交)"
1462
- },
1463
- "core/audits/third-party-facades.js | categoryVideo": {
1464
- "message": "{productName} (影片)"
1465
- },
1466
- "core/audits/third-party-facades.js | columnProduct": {
1467
- "message": "產品"
1468
- },
1469
- "core/audits/third-party-facades.js | description": {
1470
- "message": "部分第三方嵌入內容可延遲載入。建議您在必要時才以外觀取代。[瞭解如何透過外觀延遲載入第三方內容](https://developer.chrome.com/docs/lighthouse/performance/third-party-facades/)。"
1471
- },
1472
- "core/audits/third-party-facades.js | displayValue": {
1473
- "message": "{itemCount,plural, =1{可使用 # 個替代外觀}other{可使用 # 個替代外觀}}"
1474
- },
1475
- "core/audits/third-party-facades.js | failureTitle": {
1476
- "message": "部分第三方資源可透過外觀延遲載入"
1477
- },
1478
- "core/audits/third-party-facades.js | title": {
1479
- "message": "延遲載入設有外觀的第三方資源"
1480
- },
1481
- "core/audits/third-party-summary.js | columnThirdParty": {
1482
- "message": "第三方"
1483
- },
1484
- "core/audits/third-party-summary.js | description": {
1485
- "message": "第三方程式碼可能會嚴重影響載入效能。請盡量減少不必要的第三方供應商,並在網頁的主要內容載入完成後,再載入第三方程式碼。[瞭解如何盡量減少第三方程式碼的影響](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/)。"
1486
- },
1487
- "core/audits/third-party-summary.js | displayValue": {
1488
- "message": "第三方程式碼將主要執行緒封鎖了 {timeInMs, number, milliseconds} 毫秒"
1489
- },
1490
- "core/audits/third-party-summary.js | failureTitle": {
1491
- "message": "減低第三方程式碼的影響"
1492
- },
1493
- "core/audits/third-party-summary.js | title": {
1494
- "message": "減少第三方程式碼使用量"
1495
- },
1496
1214
  "core/audits/trusted-types-xss.js | columnSeverity": {
1497
1215
  "message": "嚴重性"
1498
1216
  },
@@ -1526,30 +1244,6 @@
1526
1244
  "core/audits/user-timings.js | title": {
1527
1245
  "message": "用戶使用時間標記和測量結果"
1528
1246
  },
1529
- "core/audits/uses-rel-preconnect.js | crossoriginWarning": {
1530
- "message": "{securityOrigin} 有「`<link rel=preconnect>`」,但瀏覽器沒有使用。請檢查您使用 `crossorigin` 屬性的方式是否正確。"
1531
- },
1532
- "core/audits/uses-rel-preconnect.js | description": {
1533
- "message": "建議您新增 `preconnect` 或 `dns-prefetch` 資源提示,及早連線至重要的第三方來源。[瞭解如何預先連線至需要的來源](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preconnect/)。"
1534
- },
1535
- "core/audits/uses-rel-preconnect.js | title": {
1536
- "message": "預先連接至必要來源"
1537
- },
1538
- "core/audits/uses-rel-preconnect.js | tooManyPreconnectLinksWarning": {
1539
- "message": "已找到超過 2 個「`<link rel=preconnect>`」的連結。這些連結應盡量少用,並只用於最重要的來源。"
1540
- },
1541
- "core/audits/uses-rel-preconnect.js | unusedWarning": {
1542
- "message": "{securityOrigin} 有「`<link rel=preconnect>`」,但瀏覽器沒有使用。請只為載入網頁一定會要求的重要來源使用「`preconnect`」。"
1543
- },
1544
- "core/audits/uses-rel-preload.js | crossoriginWarning": {
1545
- "message": "「{preloadURL}」有預先載入的 `<link>`,但瀏覽器沒有使用。請檢查您使用 `crossorigin` 屬性的方式是否正確。"
1546
- },
1547
- "core/audits/uses-rel-preload.js | description": {
1548
- "message": "建議使用 `<link rel=preload>` 來指定優先需要的網絡要求,並預先擷取資源。[瞭解如何預先載入關鍵要求](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preload/)。"
1549
- },
1550
- "core/audits/uses-rel-preload.js | title": {
1551
- "message": "預先載入關鍵要求"
1552
- },
1553
1247
  "core/audits/valid-source-maps.js | columnMapURL": {
1554
1248
  "message": "對應網址"
1555
1249
  },
@@ -1568,42 +1262,6 @@
1568
1262
  "core/audits/valid-source-maps.js | title": {
1569
1263
  "message": "頁面包含有效的來源對應"
1570
1264
  },
1571
- "core/audits/viewport.js | description": {
1572
- "message": "`<meta name=\"viewport\">` 不但會針對流動裝置螢幕大小來優化應用程式,還能夠防止[使用者輸入時發生 300 毫秒的延遲](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/)。[進一步瞭解使用檢視區中繼標記](https://developer.chrome.com/docs/lighthouse/pwa/viewport/)。"
1573
- },
1574
- "core/audits/viewport.js | explanationNoTag": {
1575
- "message": "找不到任何 `<meta name=\"viewport\">` 標籤"
1576
- },
1577
- "core/audits/viewport.js | failureTitle": {
1578
- "message": "缺少包括 `width` 或 `initial-scale` 的 `<meta name=\"viewport\">` 標籤"
1579
- },
1580
- "core/audits/viewport.js | title": {
1581
- "message": "具備包括 `<meta name=\"viewport\">` 或 `width` 的 `initial-scale` 標籤"
1582
- },
1583
- "core/audits/work-during-interaction.js | description": {
1584
- "message": "這是在「互動至下一個繪製」測量期間發生的執行緒封鎖工作。[進一步瞭解「互動至下一個繪製」數據](https://web.dev/articles/inp)。"
1585
- },
1586
- "core/audits/work-during-interaction.js | displayValue": {
1587
- "message": "事件「{interactionType}」已花費 {timeInMs, number, milliseconds} 毫秒"
1588
- },
1589
- "core/audits/work-during-interaction.js | eventTarget": {
1590
- "message": "事件目標"
1591
- },
1592
- "core/audits/work-during-interaction.js | failureTitle": {
1593
- "message": "在重要互動時將工作減至最少"
1594
- },
1595
- "core/audits/work-during-interaction.js | inputDelay": {
1596
- "message": "輸入延遲"
1597
- },
1598
- "core/audits/work-during-interaction.js | presentationDelay": {
1599
- "message": "螢幕畫面分享延遲"
1600
- },
1601
- "core/audits/work-during-interaction.js | processingDuration": {
1602
- "message": "處理時間長度"
1603
- },
1604
- "core/audits/work-during-interaction.js | title": {
1605
- "message": "在重要互動時將工作減至最少"
1606
- },
1607
1265
  "core/config/default-config.js | a11yAriaGroupDescription": {
1608
1266
  "message": "這些提示可協助改善 ARIA 在應用程式中的使用情況,進而提升輔助技術 (例如螢幕閱讀器) 使用者的體驗。"
1609
1267
  },
@@ -3119,7 +2777,7 @@
3119
2777
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
3120
2778
  "message": "使用 WebRTC 的網頁無法儲存至向前/返回快取。"
3121
2779
  },
3122
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
2780
+ "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCUsedWithCCNS": {
3123
2781
  "message": "由於已使用 WebRTC,因此系統已停用向前/返回快取。"
3124
2782
  },
3125
2783
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
@@ -3128,13 +2786,13 @@
3128
2786
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
3129
2787
  "message": "使用 WebSocket 的網頁無法儲存至向前/返回快取。"
3130
2788
  },
3131
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
2789
+ "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketUsedWithCCNS": {
3132
2790
  "message": "由於已使用 WebSocket,因此系統已停用向前/返回快取。"
3133
2791
  },
3134
2792
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
3135
2793
  "message": "使用 WebTransport 的網頁無法儲存至向前/返回快取。"
3136
2794
  },
3137
- "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
2795
+ "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportUsedWithCCNS": {
3138
2796
  "message": "由於已使用 WebTransport,因此系統已停用向前/返回快取。"
3139
2797
  },
3140
2798
  "node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
@@ -3228,43 +2886,43 @@
3228
2886
  "message": "文字資源應經過 (gzip、deflate 或 brotli) 壓縮,以將網絡字節總數減至最少。建議使用原生支援此功能的 CDN,或設定網絡伺服器執行此操作。[瞭解詳情](https://developers.google.com/web/tools/lighthouse/audits/text-compression)。"
3229
2887
  },
3230
2888
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | font-display": {
3231
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Optimize Fonts` 以自動利用 `font-display` CSS 功能,確保系統在載入網站頁字型時使用者可以看到文字。"
2889
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Optimize Fonts` 以自動利用 `font-display` CSS 功能,確保系統在載入網站頁字型時使用者可以看到文字。"
3232
2890
  },
3233
2891
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | modern-image-formats": {
3234
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Next-Gen Formats` 以將圖片轉換為 WebP。"
2892
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Next-Gen Formats` 以將圖片轉換為 WebP。"
3235
2893
  },
3236
2894
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | offscreen-images": {
3237
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Lazy Load Images` 以延遲載入螢幕關閉圖片,直到需要時才載入。"
2895
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Lazy Load Images` 以延遲載入螢幕關閉圖片,直到需要時才載入。"
3238
2896
  },
3239
2897
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | render-blocking-resources": {
3240
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Critical CSS` 和 `Script Delay` 以延遲不重要的 JS/CSS。"
2898
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Script Delay` 以延遲不重要的 JS。"
3241
2899
  },
3242
2900
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | server-response-time": {
3243
- "message": "使用 [Ezoic Cloud 快取](https://pubdash.ezoic.com/speed/caching),以便在我們的全球網絡上快取您的內容,改善載入首個字節的時間。"
2901
+ "message": "使用 [Ezoic Cloud 快取](https://pubdash.ezoic.com/leap/caching),以便在我們的全球網絡上快取您的內容,改善載入首個字節的時間。"
3244
2902
  },
3245
2903
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | unminified-css": {
3246
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Minify CSS` 以自動壓縮 CSS 來減少網絡負載大小。"
2904
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Minify CSS` 以自動壓縮 CSS 來減少網絡負載大小。"
3247
2905
  },
3248
2906
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | unminified-javascript": {
3249
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Minify Javascript` 以自動壓縮 JS 來減少網絡負載大小。"
2907
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Minify Javascript` 以自動壓縮 JS 來減少網絡負載大小。"
3250
2908
  },
3251
2909
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | unused-css-rules": {
3252
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Remove Unused CSS` 以協助解決此問題。此功能會識別在您網站的每個頁面上實際使用的 CSS 類別,並移除任何其他類別,以維持小的檔案大小。"
2910
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Remove Unused CSS` 以協助解決此問題。此功能會識別在您網站的每個頁面上實際使用的 CSS 類別,並移除任何其他類別,以維持小的檔案大小。"
3253
2911
  },
3254
2912
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-long-cache-ttl": {
3255
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Efficient Static Cache Policy` 以便在快取標題中為靜態資產設定建議的值。"
2913
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Efficient Static Cache Policy` 以便在快取標題中為靜態資產設定建議的值。"
3256
2914
  },
3257
2915
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-optimized-images": {
3258
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Next-Gen Formats` 以將圖片轉換為 WebP。"
2916
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Next-Gen Formats` 以將圖片轉換為 WebP。"
3259
2917
  },
3260
2918
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-rel-preconnect": {
3261
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Pre-Connect Origins` 以自動新增 `preconnect` 資源提示,及早連線至重要的第三方來源。"
2919
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Pre-Connect Origins` 以自動新增 `preconnect` 資源提示,及早連線至重要的第三方來源。"
3262
2920
  },
3263
2921
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-rel-preload": {
3264
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Preload Fonts` 和 `Preload Background Images` 來加入 `preload` 連結,以便優先擷取目前在網頁載入時較後要求的資源。"
2922
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Preload Fonts` 和 `Preload Background Images` 來加入 `preload` 連結,以便優先擷取目前在網頁載入時較後要求的資源。"
3265
2923
  },
3266
2924
  "node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-responsive-images": {
3267
- "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Resize Images` 以將圖片大小調整至適合裝置的尺寸,減少網絡負載大小。"
2925
+ "message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/leap) 並啟用 `Resize Images` 以將圖片大小調整至適合裝置的尺寸,減少網絡負載大小。"
3268
2926
  },
3269
2927
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | modern-image-formats": {
3270
2928
  "message": "請使用 `gatsby-plugin-image` 組件讓系統自動優化圖像格式,而非 `<img>`。[瞭解詳情](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)。"
@@ -3372,16 +3030,16 @@
3372
3030
  "message": "您可透過[修改主題版面配置](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)來新增 `<link rel=preload>` 標籤。"
3373
3031
  },
3374
3032
  "node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
3375
- "message": "請使用 `next/image` 組件讓系統自動優化圖像格式,而非 `<img>`。[瞭解詳情](https://nextjs.org/docs/basic-features/image-optimization)。"
3033
+ "message": "請使用 `next/image` 組件讓系統自動優化圖像格式,而非 `<img>`。[瞭解詳情](https://nextjs.org/docs/app/getting-started/images)。"
3376
3034
  },
3377
3035
  "node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
3378
- "message": "如要自動延遲載入圖像,請使用 `next/image` 組件,而非 `<img>`。[瞭解詳情](https://nextjs.org/docs/basic-features/image-optimization)。"
3036
+ "message": "如要自動延遲載入圖像,請使用 `next/image` 組件,而非 `<img>`。[瞭解詳情](https://nextjs.org/docs/app/getting-started/images)。"
3379
3037
  },
3380
3038
  "node_modules/lighthouse-stack-packs/packs/next.js | prioritize-lcp-image": {
3381
3039
  "message": "使用 `next/image` 組件並將「priority」設定為 True 以預先載入 LCP 圖片。[瞭解詳情](https://nextjs.org/docs/api-reference/next/image#priority)。"
3382
3040
  },
3383
3041
  "node_modules/lighthouse-stack-packs/packs/next.js | render-blocking-resources": {
3384
- "message": "請使用 `next/script` 組件延遲載入非關鍵的第三方指令碼。[瞭解詳情](https://nextjs.org/docs/basic-features/script)。"
3042
+ "message": "請使用 `next/script` 組件延遲載入非關鍵的第三方指令碼。[瞭解詳情](https://nextjs.org/docs/app/guides/scripts)。"
3385
3043
  },
3386
3044
  "node_modules/lighthouse-stack-packs/packs/next.js | unsized-images": {
3387
3045
  "message": "請使用 `next/image` 組件確保圖片一律會調整成適當大小。[瞭解詳情](https://nextjs.org/docs/api-reference/next/image#width)。"
@@ -3393,13 +3051,13 @@
3393
3051
  "message": "使用 `Webpack Bundle Analyzer` 偵測未使用的 JavaScript 程式碼。[瞭解詳情](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
3394
3052
  },
3395
3053
  "node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
3396
- "message": "建議您使用 `Next.js Analytics` 評估應用程式的實際效能。[瞭解詳情](https://nextjs.org/docs/advanced-features/measuring-performance)。"
3054
+ "message": "建議您使用 `Next.js Analytics` 評估應用程式的實際效能。[瞭解詳情](https://nextjs.org/docs/pages/guides/analytics)。"
3397
3055
  },
3398
3056
  "node_modules/lighthouse-stack-packs/packs/next.js | uses-long-cache-ttl": {
3399
- "message": "請設定不可變動資產和 `Server-side Rendered` (SSR) 頁面的快取。[瞭解詳情](https://nextjs.org/docs/going-to-production#caching)。"
3057
+ "message": "請設定不可變動資產和 `Server-side Rendered` (SSR) 頁面的快取。[瞭解詳情](https://nextjs.org/docs/13/pages/building-your-application/deploying/production-checklist#caching)。"
3400
3058
  },
3401
3059
  "node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
3402
- "message": "請使用 `next/image` 組件調整圖像品質,而非 `<img>`。[瞭解詳情](https://nextjs.org/docs/basic-features/image-optimization)。"
3060
+ "message": "請使用 `next/image` 組件調整圖像品質,而非 `<img>`。[瞭解詳情](https://nextjs.org/docs/app/getting-started/images)。"
3403
3061
  },
3404
3062
  "node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
3405
3063
  "message": "請使用 `next/image` 組件設定適當的 `sizes`。[瞭解詳情](https://nextjs.org/docs/api-reference/next/image#sizes)。"
@@ -3443,9 +3101,6 @@
3443
3101
  "node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-responsive-images": {
3444
3102
  "message": "啟用「[`Adaptive Image Sizing`](https://support.nitropack.io/hc/en-us/articles/10123833029905-How-to-Enable-Adaptive-Image-Sizing-For-Your-Site)」可預先優化圖片,讓圖片符合所有裝置上的顯示容器尺寸。"
3445
3103
  },
3446
- "node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-text-compression": {
3447
- "message": "在 NitroPack 中使用「[`Gzip compression`](https://support.nitropack.io/hc/en-us/articles/13229297479313-Enabling-GZIP-compression)」,可減少傳送至瀏覽器的檔案大小。"
3448
- },
3449
3104
  "node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
3450
3105
  "message": "請使用 `nuxt/image` 組件並設定 `format=\"webp\"`。[瞭解詳情](https://image.nuxt.com/usage/nuxt-img#format)。"
3451
3106
  },
@@ -3522,7 +3177,7 @@
3522
3177
  "message": "如果您建立自動壓縮 JS 檔案的系統,請確定部署的應用程式為正式版本。您可以使用 React Developer Tools 擴充程式執行這項檢查。[瞭解詳情](https://reactjs.org/docs/optimizing-performance.html#use-the-production-build)。"
3523
3178
  },
3524
3179
  "node_modules/lighthouse-stack-packs/packs/react.js | unused-javascript": {
3525
- "message": "如果沒有使用伺服器端輸出,請以 `React.lazy()` [分割您的 JavaScript 套件](https://web.dev/code-splitting-suspense/)。否則請使用[可載入的組件](https://www.smooth-code.com/open-source/loadable-components/docs/getting-started/) 等第三方程式庫分割程式碼。"
3180
+ "message": "如果沒有使用伺服器端輸出,請以 `React.lazy()` [分割您的 JavaScript 套件](https://web.dev/code-splitting-suspense/)。否則請使用[可載入的組件](https://loadable-components.com/) 等第三方程式庫分割程式碼。"
3526
3181
  },
3527
3182
  "node_modules/lighthouse-stack-packs/packs/react.js | user-timings": {
3528
3183
  "message": "使用 React DevTools Profiler,採用效能分析 API 來測量組件的輸出效能。[瞭解詳情。](https://reactjs.org/blog/2018/09/10/introducing-the-react-profiler.html)"
@@ -3668,15 +3323,9 @@
3668
3323
  "report/renderer/report-utils.js | footerIssue": {
3669
3324
  "message": "報告問題"
3670
3325
  },
3671
- "report/renderer/report-utils.js | goBackToAudits": {
3672
- "message": "返回審核頁面"
3673
- },
3674
3326
  "report/renderer/report-utils.js | hide": {
3675
3327
  "message": "隱藏"
3676
3328
  },
3677
- "report/renderer/report-utils.js | insightsNotice": {
3678
- "message": "分析功能將於今年稍後時間取代效能審核。[按此瞭解詳情和分享意見](https://github.com/GoogleChrome/lighthouse/discussions/16462)。"
3679
- },
3680
3329
  "report/renderer/report-utils.js | labDataTitle": {
3681
3330
  "message": "實驗室數據"
3682
3331
  },
@@ -3776,12 +3425,15 @@
3776
3425
  "report/renderer/report-utils.js | toplevelWarningsMessage": {
3777
3426
  "message": "導致這次 Lighthouse 無法順利執行的問題:"
3778
3427
  },
3779
- "report/renderer/report-utils.js | tryInsights": {
3780
- "message": "試用分析功能"
3781
- },
3782
3428
  "report/renderer/report-utils.js | unattributable": {
3783
3429
  "message": "無法歸因"
3784
3430
  },
3431
+ "report/renderer/report-utils.js | unscoredLabel": {
3432
+ "message": "不計分"
3433
+ },
3434
+ "report/renderer/report-utils.js | unscoredTitle": {
3435
+ "message": "此審核不會影響整體類別分數。"
3436
+ },
3785
3437
  "report/renderer/report-utils.js | varianceDisclaimer": {
3786
3438
  "message": "此為預計值,可能與實際值有所不同。[效能分數將利用這些數據直接計算](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/)。"
3787
3439
  },