chrome-devtools-frontend 1.0.1526630 → 1.0.1529186
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.
- package/docs/ui_engineering.md +159 -0
- package/eslint.config.mjs +6 -1
- package/front_end/core/host/UserMetrics.ts +2 -1
- package/front_end/core/i18n/i18nImpl.ts +6 -1
- package/front_end/core/protocol_client/protocol_client.ts +1 -1
- package/front_end/core/root/Runtime.ts +38 -4
- package/front_end/core/sdk/CSSMatchedStyles.ts +50 -7
- package/front_end/core/sdk/CSSRule.ts +35 -6
- package/front_end/core/sdk/Connections.ts +2 -1
- package/front_end/core/sdk/DOMModel.ts +4 -0
- package/front_end/core/sdk/DebuggerModel.ts +5 -1
- package/front_end/core/sdk/NetworkManager.ts +267 -34
- package/front_end/core/sdk/PreloadingModel.ts +82 -17
- package/front_end/core/sdk/RehydratingConnection.snapshot.txt +1 -1
- package/front_end/core/sdk/RehydratingConnection.ts +29 -4
- package/front_end/core/sdk/ScopeTreeCache.ts +8 -3
- package/front_end/core/sdk/SourceMap.ts +41 -11
- package/front_end/core/sdk/SourceMapManager.ts +13 -2
- package/front_end/core/sdk/SourceMapScopesInfo.ts +49 -2
- package/front_end/core/sdk/TargetManager.ts +0 -22
- package/front_end/core/sdk/TraceObject.ts +8 -7
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +81 -0
- package/front_end/entrypoints/inspector_main/InspectorMain.ts +3 -1
- package/front_end/entrypoints/main/GlobalAiButton.ts +1 -0
- package/front_end/entrypoints/main/MainImpl.ts +42 -28
- package/front_end/generated/InspectorBackendCommands.js +3 -2
- package/front_end/generated/SupportedCSSProperties.js +2 -0
- package/front_end/generated/protocol.ts +17 -3
- package/front_end/models/ai_assistance/BuiltInAi.ts +111 -0
- package/front_end/models/ai_assistance/ConversationHandler.ts +15 -14
- package/front_end/models/ai_assistance/ai_assistance.ts +53 -24
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +105 -0
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +6 -1
- package/front_end/models/extensions/ExtensionView.ts +3 -0
- package/front_end/models/javascript_metadata/NativeFunctions.js +31 -27
- package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +31 -29
- package/front_end/models/persistence/NetworkPersistenceManager.ts +3 -5
- package/front_end/models/persistence/PersistenceImpl.ts +0 -5
- package/front_end/models/persistence/persistence-meta.ts +0 -31
- package/front_end/models/persistence/persistence.ts +0 -6
- package/front_end/models/source_map_scopes/NamesResolver.ts +5 -11
- package/front_end/models/stack_trace/Trie.ts +9 -0
- package/front_end/models/trace/lantern/types/Lantern.ts +1 -1
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +1 -0
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +1 -0
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +120 -113
- package/front_end/panels/ai_assistance/PatchWidget.ts +9 -8
- package/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts +2 -0
- package/front_end/panels/ai_assistance/components/ChatView.ts +29 -29
- package/front_end/panels/ai_assistance/components/UserActionRow.ts +1 -0
- package/front_end/panels/animation/AnimationTimeline.ts +1 -0
- package/front_end/panels/application/CookieItemsView.ts +1 -0
- package/front_end/panels/application/KeyValueStorageItemsView.ts +1 -0
- package/front_end/panels/application/ServiceWorkerCacheViews.ts +2 -0
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +11 -5
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +2 -2
- package/front_end/panels/application/preloading/components/PreloadingString.ts +7 -5
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +22 -10
- package/front_end/panels/changes/CombinedDiffView.ts +1 -0
- package/front_end/{models/persistence → panels/common}/PersistenceUtils.ts +15 -17
- package/front_end/panels/common/common.ts +1 -0
- package/front_end/panels/console/ConsoleInsightTeaser.ts +369 -0
- package/front_end/panels/console/ConsolePanel.ts +2 -0
- package/front_end/panels/console/ConsolePrompt.ts +12 -2
- package/front_end/panels/console/ConsoleSidebar.ts +1 -1
- package/front_end/panels/console/ConsoleView.ts +12 -0
- package/front_end/panels/console/ConsoleViewMessage.ts +44 -0
- package/front_end/panels/{explain → console}/PromptBuilder.ts +12 -7
- package/front_end/panels/console/console-meta.ts +14 -0
- package/front_end/panels/console/console.ts +6 -0
- package/front_end/panels/console/consoleInsightTeaser.css +83 -0
- package/front_end/panels/coverage/CoverageListView.ts +29 -11
- package/front_end/panels/coverage/CoverageView.ts +292 -284
- package/front_end/panels/coverage/coverageView.css +17 -0
- package/front_end/panels/elements/ComputedStyleWidget.ts +1 -0
- package/front_end/panels/elements/LayoutPane.ts +1 -0
- package/front_end/panels/elements/NodeStackTraceWidget.ts +1 -0
- package/front_end/panels/elements/StylePropertyTreeElement.ts +5 -1
- package/front_end/panels/elements/stylePropertiesTreeOutline.css +17 -0
- package/front_end/panels/emulation/DeviceModeView.ts +2 -0
- package/front_end/panels/explain/ActionDelegate.ts +4 -2
- package/front_end/panels/explain/components/ConsoleInsight.ts +14 -12
- package/front_end/panels/explain/explain-meta.ts +7 -0
- package/front_end/panels/explain/explain.ts +0 -1
- package/front_end/panels/js_timeline/js_timeline-meta.ts +1 -1
- package/front_end/panels/layer_viewer/Layers3DView.ts +2 -0
- package/front_end/panels/lighthouse/LighthouseReportSelector.ts +1 -0
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +1 -0
- package/front_end/panels/media/MainView.ts +1 -0
- package/front_end/panels/media/TickingFlameChart.ts +2 -0
- package/front_end/panels/network/BlockedURLsPane.ts +237 -108
- package/front_end/panels/network/EventSourceMessagesView.ts +1 -0
- package/front_end/panels/network/NetworkItemView.ts +1 -0
- package/front_end/panels/network/NetworkLogView.ts +9 -7
- package/front_end/panels/network/NetworkOverview.ts +1 -0
- package/front_end/panels/network/RequestCookiesView.ts +1 -0
- package/front_end/panels/network/RequestHTMLView.ts +1 -0
- package/front_end/panels/network/RequestInitiatorView.ts +1 -0
- package/front_end/panels/network/RequestPayloadView.ts +1 -0
- package/front_end/panels/network/RequestPreviewView.ts +1 -0
- package/front_end/panels/network/RequestResponseView.ts +1 -0
- package/front_end/panels/network/RequestTimingView.ts +2 -0
- package/front_end/panels/network/ResourceDirectSocketChunkView.ts +1 -0
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +1 -0
- package/front_end/panels/network/components/RequestHeadersView.ts +2 -0
- package/front_end/panels/network/components/RequestTrustTokensView.ts +2 -0
- package/front_end/panels/performance_monitor/PerformanceMonitor.ts +2 -0
- package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +2 -0
- package/front_end/panels/profiler/HeapSnapshotView.ts +7 -0
- package/front_end/panels/profiler/IsolateSelector.ts +1 -0
- package/front_end/panels/profiler/LiveHeapProfileView.ts +1 -0
- package/front_end/panels/profiler/ProfileView.ts +1 -0
- package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +1 -0
- package/front_end/panels/recorder/RecorderPanel.ts +2 -0
- package/front_end/panels/screencast/ScreencastView.ts +1 -0
- package/front_end/panels/search/SearchView.ts +1 -0
- package/front_end/panels/settings/AISettingsTab.ts +3 -3
- package/front_end/{models/persistence → panels/settings}/EditFileSystemView.ts +3 -6
- package/front_end/panels/settings/WorkspaceSettingsTab.ts +4 -1
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +2 -2
- package/front_end/panels/settings/settings.ts +2 -0
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +12 -0
- package/front_end/panels/sources/BreakpointsView.ts +1 -0
- package/front_end/panels/sources/DebuggerPlugin.ts +1 -0
- package/front_end/{models/persistence → panels/sources}/PersistenceActions.ts +8 -12
- package/front_end/panels/sources/TabbedEditorContainer.ts +2 -1
- package/front_end/panels/sources/UISourceCodeFrame.ts +17 -2
- package/front_end/panels/sources/sources-meta.ts +15 -0
- package/front_end/panels/sources/sources.ts +2 -0
- package/front_end/panels/timeline/README.md +2 -2
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +1 -1
- package/front_end/panels/timeline/TimelineFlameChartView.ts +4 -3
- package/front_end/panels/timeline/TimelineLayersView.ts +1 -0
- package/front_end/panels/timeline/TimelinePaintProfilerView.ts +114 -37
- package/front_end/panels/timeline/TimelinePanel.ts +43 -62
- package/front_end/panels/timeline/TimelineTreeView.ts +1 -0
- package/front_end/panels/timeline/components/LiveMetricsView.ts +4 -8
- package/front_end/panels/timeline/components/Sidebar.ts +2 -0
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +1 -1
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +7 -7
- package/front_end/panels/timeline/overlays/OverlaysImpl.ts +1 -1
- package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +4 -4
- package/front_end/panels/utils/utils.ts +2 -1
- package/front_end/panels/web_audio/WebAudioView.ts +1 -0
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/diff/diff_match_patch.js +1 -1
- package/front_end/third_party/lighthouse/README.chromium +2 -2
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1530 -2426
- package/front_end/third_party/lighthouse/locales/ar-XB.json +107 -455
- package/front_end/third_party/lighthouse/locales/ar.json +107 -455
- package/front_end/third_party/lighthouse/locales/bg.json +96 -444
- package/front_end/third_party/lighthouse/locales/ca.json +96 -444
- package/front_end/third_party/lighthouse/locales/cs.json +96 -444
- package/front_end/third_party/lighthouse/locales/da.json +96 -444
- package/front_end/third_party/lighthouse/locales/de.json +96 -444
- package/front_end/third_party/lighthouse/locales/el.json +96 -444
- package/front_end/third_party/lighthouse/locales/en-GB.json +96 -444
- package/front_end/third_party/lighthouse/locales/en-US.json +116 -467
- package/front_end/third_party/lighthouse/locales/en-XA.json +93 -441
- package/front_end/third_party/lighthouse/locales/en-XL.json +116 -467
- package/front_end/third_party/lighthouse/locales/es-419.json +96 -444
- package/front_end/third_party/lighthouse/locales/es.json +96 -444
- package/front_end/third_party/lighthouse/locales/fi.json +96 -444
- package/front_end/third_party/lighthouse/locales/fil.json +96 -444
- package/front_end/third_party/lighthouse/locales/fr.json +96 -444
- package/front_end/third_party/lighthouse/locales/he.json +118 -466
- package/front_end/third_party/lighthouse/locales/hi.json +96 -444
- package/front_end/third_party/lighthouse/locales/hr.json +100 -448
- package/front_end/third_party/lighthouse/locales/hu.json +96 -444
- package/front_end/third_party/lighthouse/locales/id.json +96 -444
- package/front_end/third_party/lighthouse/locales/it.json +96 -444
- package/front_end/third_party/lighthouse/locales/ja.json +96 -444
- package/front_end/third_party/lighthouse/locales/ko.json +97 -445
- package/front_end/third_party/lighthouse/locales/lt.json +96 -444
- package/front_end/third_party/lighthouse/locales/lv.json +97 -445
- package/front_end/third_party/lighthouse/locales/nl.json +96 -444
- package/front_end/third_party/lighthouse/locales/no.json +96 -444
- package/front_end/third_party/lighthouse/locales/pl.json +96 -444
- package/front_end/third_party/lighthouse/locales/pt-PT.json +96 -444
- package/front_end/third_party/lighthouse/locales/pt.json +97 -445
- package/front_end/third_party/lighthouse/locales/ro.json +97 -445
- package/front_end/third_party/lighthouse/locales/ru.json +96 -444
- package/front_end/third_party/lighthouse/locales/sk.json +96 -444
- package/front_end/third_party/lighthouse/locales/sl.json +96 -444
- package/front_end/third_party/lighthouse/locales/sr-Latn.json +96 -444
- package/front_end/third_party/lighthouse/locales/sr.json +96 -444
- package/front_end/third_party/lighthouse/locales/sv.json +96 -444
- package/front_end/third_party/lighthouse/locales/ta.json +96 -444
- package/front_end/third_party/lighthouse/locales/te.json +97 -445
- package/front_end/third_party/lighthouse/locales/th.json +96 -444
- package/front_end/third_party/lighthouse/locales/tr.json +96 -444
- package/front_end/third_party/lighthouse/locales/uk.json +96 -444
- package/front_end/third_party/lighthouse/locales/vi.json +96 -444
- package/front_end/third_party/lighthouse/locales/zh-HK.json +96 -444
- package/front_end/third_party/lighthouse/locales/zh-TW.json +97 -445
- package/front_end/third_party/lighthouse/locales/zh.json +96 -444
- package/front_end/third_party/lighthouse/report/bundle.d.ts +8 -14
- package/front_end/third_party/lighthouse/report/bundle.js +10 -49
- package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
- package/front_end/third_party/web-vitals/README.chromium +5 -8
- package/front_end/third_party/web-vitals/package/README.md +191 -152
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/index.d.ts +0 -1
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/index.js +0 -1
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onCLS.d.ts +2 -2
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onCLS.js +45 -26
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onFCP.d.ts +2 -2
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onFCP.js +3 -3
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.d.ts +10 -10
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +307 -206
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onLCP.d.ts +2 -2
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onLCP.js +69 -49
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onTTFB.d.ts +2 -2
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onTTFB.js +2 -2
- package/front_end/third_party/web-vitals/package/dist/modules/index.d.ts +0 -1
- package/front_end/third_party/web-vitals/package/dist/modules/index.js +0 -1
- package/front_end/third_party/web-vitals/package/dist/modules/lib/InteractionManager.d.ts +33 -0
- package/front_end/third_party/web-vitals/package/dist/modules/lib/InteractionManager.js +111 -0
- package/front_end/third_party/web-vitals/package/dist/modules/lib/LCPEntryManager.d.ts +4 -0
- package/front_end/third_party/web-vitals/package/dist/modules/{attribution/deprecated.js → lib/LCPEntryManager.js} +6 -7
- package/front_end/third_party/web-vitals/package/dist/modules/lib/LayoutShiftManager.d.ts +6 -0
- package/front_end/third_party/web-vitals/package/dist/modules/lib/LayoutShiftManager.js +44 -0
- package/front_end/third_party/web-vitals/package/dist/modules/lib/bindReporter.js +1 -1
- package/front_end/third_party/web-vitals/package/dist/modules/lib/generateUniqueID.js +1 -1
- package/front_end/third_party/web-vitals/package/dist/modules/lib/getActivationStart.js +1 -1
- package/front_end/third_party/web-vitals/package/dist/modules/lib/getNavigationEntry.js +5 -7
- package/front_end/third_party/web-vitals/package/dist/modules/lib/getSelector.d.ts +1 -1
- package/front_end/third_party/web-vitals/package/dist/modules/lib/getSelector.js +9 -12
- package/front_end/third_party/web-vitals/package/dist/modules/lib/getVisibilityWatcher.d.ts +1 -0
- package/front_end/third_party/web-vitals/package/dist/modules/lib/getVisibilityWatcher.js +52 -33
- package/front_end/third_party/web-vitals/package/dist/modules/lib/initMetric.d.ts +0 -2
- package/front_end/third_party/web-vitals/package/dist/modules/lib/initMetric.js +2 -2
- package/front_end/third_party/web-vitals/package/dist/modules/lib/initUnique.d.ts +6 -0
- package/front_end/third_party/web-vitals/package/dist/modules/{deprecated.js → lib/initUnique.js} +11 -4
- package/front_end/third_party/web-vitals/package/dist/modules/lib/observe.js +3 -6
- package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/interactionCountPolyfill.js +6 -6
- package/front_end/third_party/web-vitals/package/dist/modules/lib/{whenIdle.d.ts → whenIdleOrHidden.d.ts} +1 -1
- package/front_end/third_party/web-vitals/package/dist/modules/lib/{whenIdle.js → whenIdleOrHidden.js} +10 -8
- package/front_end/third_party/web-vitals/package/dist/modules/onCLS.js +17 -35
- package/front_end/third_party/web-vitals/package/dist/modules/onFCP.js +3 -5
- package/front_end/third_party/web-vitals/package/dist/modules/onINP.d.ts +9 -7
- package/front_end/third_party/web-vitals/package/dist/modules/onINP.js +27 -19
- package/front_end/third_party/web-vitals/package/dist/modules/onLCP.js +33 -26
- package/front_end/third_party/web-vitals/package/dist/modules/onTTFB.js +2 -4
- package/front_end/third_party/web-vitals/package/dist/modules/types/base.d.ts +6 -5
- package/front_end/third_party/web-vitals/package/dist/modules/types/cls.d.ts +5 -3
- package/front_end/third_party/web-vitals/package/dist/modules/types/inp.d.ts +80 -33
- package/front_end/third_party/web-vitals/package/dist/modules/types/lcp.d.ts +6 -2
- package/front_end/third_party/web-vitals/package/dist/modules/types.d.ts +28 -4
- package/front_end/third_party/web-vitals/package/dist/modules/types.js +0 -1
- package/front_end/third_party/web-vitals/package/package.json +4 -10
- package/front_end/third_party/web-vitals/package/src/attribution/index.ts +0 -1
- package/front_end/third_party/web-vitals/package/src/attribution/onCLS.ts +58 -33
- package/front_end/third_party/web-vitals/package/src/attribution/onFCP.ts +4 -4
- package/front_end/third_party/web-vitals/package/src/attribution/onINP.ts +382 -258
- package/front_end/third_party/web-vitals/package/src/attribution/onLCP.ts +96 -69
- package/front_end/third_party/web-vitals/package/src/attribution/onTTFB.ts +3 -3
- package/front_end/third_party/web-vitals/package/src/index.ts +0 -1
- package/front_end/third_party/web-vitals/package/src/lib/InteractionManager.ts +146 -0
- package/front_end/third_party/web-vitals/package/src/{attribution/deprecated.ts → lib/LCPEntryManager.ts} +6 -9
- package/front_end/third_party/web-vitals/package/src/lib/LayoutShiftManager.ts +50 -0
- package/front_end/third_party/web-vitals/package/src/lib/bindReporter.ts +1 -1
- package/front_end/third_party/web-vitals/package/src/lib/generateUniqueID.ts +1 -1
- package/front_end/third_party/web-vitals/package/src/lib/getActivationStart.ts +1 -1
- package/front_end/third_party/web-vitals/package/src/lib/getNavigationEntry.ts +5 -8
- package/front_end/third_party/web-vitals/package/src/lib/getSelector.ts +12 -12
- package/front_end/third_party/web-vitals/package/src/lib/getVisibilityWatcher.ts +57 -35
- package/front_end/third_party/web-vitals/package/src/lib/initMetric.ts +2 -2
- package/front_end/third_party/web-vitals/package/src/{deprecated.ts → lib/initUnique.ts} +14 -8
- package/front_end/third_party/web-vitals/package/src/lib/observe.ts +3 -11
- package/front_end/third_party/web-vitals/package/src/lib/polyfills/interactionCountPolyfill.ts +12 -6
- package/front_end/third_party/web-vitals/package/src/lib/{whenIdle.ts → whenIdleOrHidden.ts} +10 -8
- package/front_end/third_party/web-vitals/package/src/onCLS.ts +17 -38
- package/front_end/third_party/web-vitals/package/src/onFCP.ts +3 -6
- package/front_end/third_party/web-vitals/package/src/onINP.ts +33 -28
- package/front_end/third_party/web-vitals/package/src/onLCP.ts +36 -29
- package/front_end/third_party/web-vitals/package/src/onTTFB.ts +2 -5
- package/front_end/third_party/web-vitals/package/src/types/base.ts +5 -5
- package/front_end/third_party/web-vitals/package/src/types/cls.ts +5 -3
- package/front_end/third_party/web-vitals/package/src/types/inp.ts +88 -33
- package/front_end/third_party/web-vitals/package/src/types/lcp.ts +6 -2
- package/front_end/third_party/web-vitals/package/src/types.ts +47 -4
- package/front_end/third_party/web-vitals/patches/0001-Add-onEachInteraction-to-onINP-options.patch +75 -0
- package/front_end/third_party/web-vitals/rebuild.sh +32 -18
- package/front_end/third_party/web-vitals/web-vitals-tsconfig.json +5 -10
- package/front_end/third_party/web-vitals/web-vitals.ts +0 -2
- package/front_end/ui/components/docs/console_insight/basic.ts +3 -2
- package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +2 -0
- package/front_end/ui/components/text_editor/TextEditor.ts +0 -2
- package/front_end/ui/legacy/InspectorView.ts +2 -0
- package/front_end/ui/legacy/ListWidget.ts +2 -2
- package/front_end/ui/legacy/SplitWidget.ts +2 -0
- package/front_end/ui/legacy/TabbedPane.ts +1 -0
- package/front_end/ui/legacy/TargetCrashedScreen.ts +1 -0
- package/front_end/ui/legacy/UIUtils.ts +8 -19
- package/front_end/ui/legacy/ViewManager.ts +1 -0
- package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +7 -20
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +2 -0
- package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +1 -0
- package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +1 -0
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +1 -0
- package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +1 -0
- package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -0
- package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -0
- package/front_end/ui/legacy/components/source_frame/JSONView.ts +1 -0
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +1 -0
- package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +2 -0
- package/front_end/ui/visual_logging/KnownContextValues.ts +25 -0
- package/mcp/README.md +7 -0
- package/mcp/mcp.ts +8 -0
- package/package.json +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +0 -34
- package/front_end/third_party/web-vitals/package/attribution.d.ts +0 -16
- package/front_end/third_party/web-vitals/package/attribution.js +0 -18
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/deprecated.d.ts +0 -7
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onFID.d.ts +0 -11
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onFID.js +0 -46
- package/front_end/third_party/web-vitals/package/dist/modules/deprecated.d.ts +0 -5
- package/front_end/third_party/web-vitals/package/dist/modules/lib/interactions.d.ts +0 -31
- package/front_end/third_party/web-vitals/package/dist/modules/lib/interactions.js +0 -107
- package/front_end/third_party/web-vitals/package/dist/modules/lib/onHidden.d.ts +0 -1
- package/front_end/third_party/web-vitals/package/dist/modules/lib/onHidden.js +0 -22
- package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/firstInputPolyfill.d.ts +0 -7
- package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/firstInputPolyfill.js +0 -147
- package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/getFirstHiddenTimePolyfill.d.ts +0 -1
- package/front_end/third_party/web-vitals/package/dist/modules/lib/polyfills/getFirstHiddenTimePolyfill.js +0 -25
- package/front_end/third_party/web-vitals/package/dist/modules/onFID.d.ts +0 -13
- package/front_end/third_party/web-vitals/package/dist/modules/onFID.js +0 -70
- package/front_end/third_party/web-vitals/package/dist/modules/types/fid.d.ts +0 -46
- package/front_end/third_party/web-vitals/package/dist/modules/types/fid.js +0 -16
- package/front_end/third_party/web-vitals/package/src/attribution/onFID.ts +0 -62
- package/front_end/third_party/web-vitals/package/src/lib/interactions.ts +0 -139
- package/front_end/third_party/web-vitals/package/src/lib/onHidden.ts +0 -23
- package/front_end/third_party/web-vitals/package/src/lib/polyfills/firstInputPolyfill.ts +0 -174
- package/front_end/third_party/web-vitals/package/src/onFID.ts +0 -105
- package/front_end/third_party/web-vitals/package/src/types/fid.ts +0 -65
- package/front_end/ui/components/text_editor/textEditor.css +0 -18
- package/front_end/ui/legacy/inlineButton.css +0 -22
- /package/front_end/entrypoints/{rehydrated_devtools_app/rehydrated_devtools_app.ts → trace_app/trace_app.ts} +0 -0
- /package/front_end/{models/persistence → panels/settings}/editFileSystemView.css +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"core/audits/accessibility/accesskeys.js | description": {
|
|
3
|
-
"message": "快速鍵可讓使用者快速聚焦網頁的特定部分。要讓使用者正確瀏覽,每個快速鍵一律不得重複。[進一步瞭解快速鍵](https://dequeuniversity.com/rules/axe/4.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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": "`<body>` 文件中出現 `[aria-hidden=\"true\"]`"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"message": "`<body>` 文件中並未出現 `[aria-hidden=\"true\"]`"
|
|
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.
|
|
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.
|
|
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 元素沒有無障礙元素名稱,螢幕閱讀器只會讀出通用名稱,這樣仰賴螢幕閱讀器的使用者就無法瞭解這個元素的用途與用法。[瞭解如何命名 `meter` 元素](https://dequeuniversity.com/rules/axe/4.
|
|
93
|
+
"message": "如果 meter 元素沒有無障礙元素名稱,螢幕閱讀器只會讀出通用名稱,這樣仰賴螢幕閱讀器的使用者就無法瞭解這個元素的用途與用法。[瞭解如何命名 `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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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 元素沒有無障礙元素名稱,螢幕閱讀器只會讀出通用名稱,這樣仰賴螢幕閱讀器的使用者就無法瞭解這個元素的用途與用法。[瞭解如何命名 `tooltip` 元素](https://dequeuniversity.com/rules/axe/4.
|
|
174
|
+
"message": "如果 tooltip 元素沒有無障礙元素名稱,螢幕閱讀器只會讀出通用名稱,這樣仰賴螢幕閱讀器的使用者就無法瞭解這個元素的用途與用法。[瞭解如何命名 `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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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 缺少內容或無障礙設計的文字,螢幕閱讀器使用者就無法存取網頁結構中的資訊。[進一步瞭解標題](https://dequeuniversity.com/rules/axe/4.
|
|
276
|
+
"message": "如果 heading 缺少內容或無障礙設計的文字,螢幕閱讀器使用者就無法存取網頁結構中的資訊。[進一步瞭解標題](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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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 格式顯示靜態圖片,以減少網路傳輸的資料量。[進一步瞭解高效率的影片格式](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 的功能,但對新式瀏覽器來說,很多都是不需要的功能。除非你認為必須支援舊版瀏覽器,否則建議修改 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": "網頁的資源過多,因此妨礙了首次顯示畫面的時間。建議你先載入重要的內嵌 JavaScript/CSS,並延後載入不重要的 JavaScript/樣式。[瞭解如何排除會妨礙顯示的資源](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 防範 Clickjacking (點擊劫持) 攻擊"
|
|
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://
|
|
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": "User Timing 標記和測量結果"
|
|
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": "具備包含 `width` 或 `initial-scale` 的 `<meta name=\"viewport\">` 標記"
|
|
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
|
},
|
|
@@ -2739,7 +2397,7 @@
|
|
|
2739
2397
|
"message": "CSS 選取器成本"
|
|
2740
2398
|
},
|
|
2741
2399
|
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | topSelectorElapsedTime": {
|
|
2742
|
-
"message": "
|
|
2400
|
+
"message": "最耗時的選取器"
|
|
2743
2401
|
},
|
|
2744
2402
|
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | topSelectorMatchAttempt": {
|
|
2745
2403
|
"message": "最常嘗試比對的選取器"
|
|
@@ -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 |
|
|
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 |
|
|
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 |
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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": "如果你的建構系統會自動壓縮 JavaScript 檔案,請確定你部署的應用程式為正式版本。你可以使用 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/)。否則請使用 [loadable-components](https://
|
|
3180
|
+
"message": "如果你不是在伺服器端進行轉譯,請以 `React.lazy()` [分割你的 JavaScript 套件](https://web.dev/code-splitting-suspense/)。否則請使用 [loadable-components](https://loadable-components.com/) 等第三方程式庫來分割程式碼。"
|
|
3526
3181
|
},
|
|
3527
3182
|
"node_modules/lighthouse-stack-packs/packs/react.js | user-timings": {
|
|
3528
3183
|
"message": "使用 React DevTools Profiler,這項工具會採用 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
|
},
|