lighthouse 9.6.7 → 10.0.0
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/.gitattributes +4 -1
- package/CONTRIBUTING.md +15 -15
- package/build-tracker.config.js +0 -1
- package/cli/bin.d.ts +5 -0
- package/cli/bin.js +140 -0
- package/cli/cli-flags.d.ts +258 -0
- package/cli/cli-flags.js +553 -0
- package/cli/commands/commands.d.ts +4 -0
- package/cli/commands/commands.js +9 -0
- package/cli/commands/list-audits.d.ts +2 -0
- package/cli/commands/list-audits.js +15 -0
- package/cli/commands/list-locales.d.ts +2 -0
- package/cli/commands/list-locales.js +15 -0
- package/cli/commands/list-trace-categories.d.ts +2 -0
- package/cli/commands/list-trace-categories.js +14 -0
- package/cli/index.d.ts +3 -0
- package/cli/index.js +10 -0
- package/cli/printer.d.ts +28 -0
- package/cli/printer.js +99 -0
- package/cli/run.d.ts +24 -0
- package/cli/run.js +284 -0
- package/cli/sentry-prompt.d.ts +5 -0
- package/cli/sentry-prompt.js +78 -0
- package/cli/test/smokehouse/__snapshots__/report-assert-test.js.snap +71 -0
- package/cli/test/smokehouse/config/exclusions.d.ts +12 -0
- package/cli/test/smokehouse/config/exclusions.js +36 -0
- package/cli/test/smokehouse/core-tests.d.ts +4 -0
- package/cli/test/smokehouse/core-tests.js +134 -0
- package/cli/test/smokehouse/frontends/back-compat-util.d.ts +16 -0
- package/cli/test/smokehouse/frontends/back-compat-util.js +41 -0
- package/cli/test/smokehouse/frontends/lib.d.ts +8 -0
- package/cli/test/smokehouse/frontends/lib.js +48 -0
- package/cli/test/smokehouse/frontends/node.d.ts +2 -0
- package/cli/test/smokehouse/frontends/node.js +12 -0
- package/cli/test/smokehouse/frontends/smokehouse-bin.d.ts +3 -0
- package/cli/test/smokehouse/frontends/smokehouse-bin.js +258 -0
- package/cli/test/smokehouse/lib/child-process-error.d.ts +21 -0
- package/cli/test/smokehouse/lib/child-process-error.js +25 -0
- package/cli/test/smokehouse/lib/concurrent-mapper.d.ts +78 -0
- package/cli/test/smokehouse/lib/concurrent-mapper.js +125 -0
- package/cli/test/smokehouse/lib/local-console.d.ts +33 -0
- package/cli/test/smokehouse/lib/local-console.js +50 -0
- package/cli/test/smokehouse/lighthouse-runners/bundle.d.ts +16 -0
- package/cli/test/smokehouse/lighthouse-runners/bundle.js +158 -0
- package/cli/test/smokehouse/lighthouse-runners/cli.d.ts +18 -0
- package/cli/test/smokehouse/lighthouse-runners/cli.js +134 -0
- package/cli/test/smokehouse/lighthouse-runners/devtools.d.ts +23 -0
- package/cli/test/smokehouse/lighthouse-runners/devtools.js +72 -0
- package/cli/test/smokehouse/readme.md +208 -0
- package/cli/test/smokehouse/report-assert-test.d.ts +2 -0
- package/cli/test/smokehouse/report-assert-test.js +298 -0
- package/cli/test/smokehouse/report-assert.d.ts +50 -0
- package/cli/test/smokehouse/report-assert.js +520 -0
- package/cli/test/smokehouse/smokehouse.d.ts +35 -0
- package/cli/test/smokehouse/smokehouse.js +336 -0
- package/cli/test/smokehouse/version-check-test.d.ts +2 -0
- package/cli/test/smokehouse/version-check-test.js +43 -0
- package/cli/test/smokehouse/version-check.d.ts +15 -0
- package/cli/test/smokehouse/version-check.js +48 -0
- package/commitlint.config.js +0 -1
- package/core/audits/accessibility/accesskeys.d.ts +10 -0
- package/core/audits/accessibility/accesskeys.js +44 -0
- package/core/audits/accessibility/aria-allowed-attr.d.ts +10 -0
- package/core/audits/accessibility/aria-allowed-attr.js +44 -0
- package/core/audits/accessibility/aria-command-name.d.ts +10 -0
- package/core/audits/accessibility/aria-command-name.js +42 -0
- package/core/audits/accessibility/aria-hidden-body.d.ts +10 -0
- package/core/audits/accessibility/aria-hidden-body.js +42 -0
- package/core/audits/accessibility/aria-hidden-focus.d.ts +10 -0
- package/core/audits/accessibility/aria-hidden-focus.js +42 -0
- package/core/audits/accessibility/aria-input-field-name.d.ts +10 -0
- package/core/audits/accessibility/aria-input-field-name.js +42 -0
- package/core/audits/accessibility/aria-meter-name.d.ts +10 -0
- package/core/audits/accessibility/aria-meter-name.js +42 -0
- package/core/audits/accessibility/aria-progressbar-name.d.ts +10 -0
- package/core/audits/accessibility/aria-progressbar-name.js +42 -0
- package/core/audits/accessibility/aria-required-attr.d.ts +10 -0
- package/core/audits/accessibility/aria-required-attr.js +43 -0
- package/core/audits/accessibility/aria-required-children.d.ts +10 -0
- package/core/audits/accessibility/aria-required-children.js +47 -0
- package/core/audits/accessibility/aria-required-parent.d.ts +10 -0
- package/core/audits/accessibility/aria-required-parent.js +45 -0
- package/core/audits/accessibility/aria-roles.d.ts +10 -0
- package/core/audits/accessibility/aria-roles.js +44 -0
- package/core/audits/accessibility/aria-toggle-field-name.d.ts +10 -0
- package/core/audits/accessibility/aria-toggle-field-name.js +42 -0
- package/core/audits/accessibility/aria-tooltip-name.d.ts +10 -0
- package/core/audits/accessibility/aria-tooltip-name.js +42 -0
- package/core/audits/accessibility/aria-treeitem-name.d.ts +10 -0
- package/core/audits/accessibility/aria-treeitem-name.js +42 -0
- package/core/audits/accessibility/aria-valid-attr-value.d.ts +10 -0
- package/core/audits/accessibility/aria-valid-attr-value.js +44 -0
- package/core/audits/accessibility/aria-valid-attr.d.ts +10 -0
- package/core/audits/accessibility/aria-valid-attr.js +44 -0
- package/core/audits/accessibility/axe-audit.d.ts +17 -0
- package/core/audits/accessibility/axe-audit.js +113 -0
- package/core/audits/accessibility/button-name.d.ts +10 -0
- package/core/audits/accessibility/button-name.js +44 -0
- package/core/audits/accessibility/bypass.d.ts +10 -0
- package/core/audits/accessibility/bypass.js +46 -0
- package/core/audits/accessibility/color-contrast.d.ts +10 -0
- package/core/audits/accessibility/color-contrast.js +45 -0
- package/core/audits/accessibility/definition-list.d.ts +10 -0
- package/core/audits/accessibility/definition-list.js +46 -0
- package/core/audits/accessibility/dlitem.d.ts +10 -0
- package/core/audits/accessibility/dlitem.js +44 -0
- package/core/audits/accessibility/document-title.d.ts +10 -0
- package/core/audits/accessibility/document-title.js +44 -0
- package/core/audits/accessibility/duplicate-id-active.d.ts +10 -0
- package/core/audits/accessibility/duplicate-id-active.js +42 -0
- package/core/audits/accessibility/duplicate-id-aria.d.ts +10 -0
- package/core/audits/accessibility/duplicate-id-aria.js +42 -0
- package/core/audits/accessibility/form-field-multiple-labels.d.ts +10 -0
- package/core/audits/accessibility/form-field-multiple-labels.js +43 -0
- package/core/audits/accessibility/frame-title.d.ts +10 -0
- package/core/audits/accessibility/frame-title.js +43 -0
- package/core/audits/accessibility/heading-order.d.ts +10 -0
- package/core/audits/accessibility/heading-order.js +42 -0
- package/core/audits/accessibility/html-has-lang.d.ts +10 -0
- package/core/audits/accessibility/html-has-lang.js +46 -0
- package/core/audits/accessibility/html-lang-valid.d.ts +10 -0
- package/core/audits/accessibility/html-lang-valid.js +45 -0
- package/core/audits/accessibility/image-alt.d.ts +10 -0
- package/core/audits/accessibility/image-alt.js +44 -0
- package/core/audits/accessibility/input-image-alt.d.ts +10 -0
- package/core/audits/accessibility/input-image-alt.js +44 -0
- package/core/audits/accessibility/label.d.ts +10 -0
- package/core/audits/accessibility/label.js +44 -0
- package/core/audits/accessibility/link-name.d.ts +10 -0
- package/core/audits/accessibility/link-name.js +45 -0
- package/core/audits/accessibility/list.d.ts +10 -0
- package/core/audits/accessibility/list.js +46 -0
- package/core/audits/accessibility/listitem.d.ts +10 -0
- package/core/audits/accessibility/listitem.js +45 -0
- package/core/audits/accessibility/manual/custom-controls-labels.d.ts +8 -0
- package/core/audits/accessibility/manual/custom-controls-labels.js +27 -0
- package/core/audits/accessibility/manual/custom-controls-roles.d.ts +8 -0
- package/core/audits/accessibility/manual/custom-controls-roles.js +27 -0
- package/core/audits/accessibility/manual/focus-traps.d.ts +8 -0
- package/core/audits/accessibility/manual/focus-traps.js +27 -0
- package/core/audits/accessibility/manual/focusable-controls.d.ts +8 -0
- package/core/audits/accessibility/manual/focusable-controls.js +27 -0
- package/core/audits/accessibility/manual/interactive-element-affordance.d.ts +8 -0
- package/core/audits/accessibility/manual/interactive-element-affordance.js +27 -0
- package/core/audits/accessibility/manual/logical-tab-order.d.ts +8 -0
- package/core/audits/accessibility/manual/logical-tab-order.js +27 -0
- package/core/audits/accessibility/manual/managed-focus.d.ts +8 -0
- package/core/audits/accessibility/manual/managed-focus.js +27 -0
- package/core/audits/accessibility/manual/offscreen-content-hidden.d.ts +9 -0
- package/core/audits/accessibility/manual/offscreen-content-hidden.js +28 -0
- package/core/audits/accessibility/manual/use-landmarks.d.ts +8 -0
- package/core/audits/accessibility/manual/use-landmarks.js +27 -0
- package/core/audits/accessibility/manual/visual-order-follows-dom.d.ts +8 -0
- package/core/audits/accessibility/manual/visual-order-follows-dom.js +27 -0
- package/core/audits/accessibility/meta-refresh.d.ts +10 -0
- package/core/audits/accessibility/meta-refresh.js +45 -0
- package/core/audits/accessibility/meta-viewport.d.ts +10 -0
- package/core/audits/accessibility/meta-viewport.js +46 -0
- package/core/audits/accessibility/object-alt.d.ts +10 -0
- package/core/audits/accessibility/object-alt.js +44 -0
- package/core/audits/accessibility/tabindex.d.ts +10 -0
- package/core/audits/accessibility/tabindex.js +44 -0
- package/core/audits/accessibility/td-headers-attr.d.ts +10 -0
- package/core/audits/accessibility/td-headers-attr.js +48 -0
- package/core/audits/accessibility/th-has-data-cells.d.ts +10 -0
- package/core/audits/accessibility/th-has-data-cells.js +48 -0
- package/core/audits/accessibility/valid-lang.d.ts +10 -0
- package/core/audits/accessibility/valid-lang.js +44 -0
- package/core/audits/accessibility/video-caption.d.ts +10 -0
- package/core/audits/accessibility/video-caption.js +46 -0
- package/core/audits/audit.d.ts +157 -0
- package/core/audits/audit.js +405 -0
- package/core/audits/autocomplete.d.ts +36 -0
- package/core/audits/autocomplete.js +290 -0
- package/core/audits/bf-cache.d.ts +21 -0
- package/core/audits/bf-cache.js +120 -0
- package/core/audits/bootup-time.d.ts +26 -0
- package/core/audits/bootup-time.js +151 -0
- package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +82 -0
- package/core/audits/byte-efficiency/byte-efficiency-audit.js +260 -0
- package/core/audits/byte-efficiency/duplicated-javascript.d.ts +52 -0
- package/core/audits/byte-efficiency/duplicated-javascript.js +247 -0
- package/core/audits/byte-efficiency/efficient-animated-content.d.ts +23 -0
- package/core/audits/byte-efficiency/efficient-animated-content.js +92 -0
- package/core/audits/byte-efficiency/legacy-javascript.d.ts +100 -0
- package/core/audits/byte-efficiency/legacy-javascript.js +479 -0
- package/core/audits/byte-efficiency/modern-image-formats.d.ts +38 -0
- package/core/audits/byte-efficiency/modern-image-formats.js +186 -0
- package/core/audits/byte-efficiency/offscreen-images.d.ts +75 -0
- package/core/audits/byte-efficiency/offscreen-images.js +253 -0
- package/{lighthouse-core → core}/audits/byte-efficiency/polyfill-graph-data.json +0 -0
- package/core/audits/byte-efficiency/render-blocking-resources.d.ts +55 -0
- package/core/audits/byte-efficiency/render-blocking-resources.js +307 -0
- package/core/audits/byte-efficiency/total-byte-weight.d.ts +21 -0
- package/core/audits/byte-efficiency/total-byte-weight.js +109 -0
- package/core/audits/byte-efficiency/unminified-css.d.ts +36 -0
- package/core/audits/byte-efficiency/unminified-css.js +114 -0
- package/core/audits/byte-efficiency/unminified-javascript.d.ts +37 -0
- package/core/audits/byte-efficiency/unminified-javascript.js +118 -0
- package/core/audits/byte-efficiency/unused-css-rules.d.ts +16 -0
- package/core/audits/byte-efficiency/unused-css-rules.js +69 -0
- package/core/audits/byte-efficiency/unused-javascript.d.ts +27 -0
- package/core/audits/byte-efficiency/unused-javascript.js +163 -0
- package/core/audits/byte-efficiency/uses-long-cache-ttl.d.ts +61 -0
- package/core/audits/byte-efficiency/uses-long-cache-ttl.js +297 -0
- package/core/audits/byte-efficiency/uses-optimized-images.d.ts +33 -0
- package/core/audits/byte-efficiency/uses-optimized-images.js +145 -0
- package/core/audits/byte-efficiency/uses-responsive-images-snapshot.d.ts +16 -0
- package/core/audits/byte-efficiency/uses-responsive-images-snapshot.js +100 -0
- package/core/audits/byte-efficiency/uses-responsive-images.d.ts +45 -0
- package/core/audits/byte-efficiency/uses-responsive-images.js +201 -0
- package/core/audits/byte-efficiency/uses-text-compression.d.ts +14 -0
- package/core/audits/byte-efficiency/uses-text-compression.js +100 -0
- package/core/audits/content-width.d.ts +17 -0
- package/core/audits/content-width.js +76 -0
- package/core/audits/critical-request-chains.d.ts +44 -0
- package/core/audits/critical-request-chains.js +218 -0
- package/core/audits/csp-xss.d.ts +51 -0
- package/core/audits/csp-xss.js +186 -0
- package/core/audits/deprecations.d.ts +19 -0
- package/core/audits/deprecations.js +114 -0
- package/core/audits/diagnostics.d.ts +11 -0
- package/core/audits/diagnostics.js +79 -0
- package/core/audits/dobetterweb/charset.d.ts +19 -0
- package/core/audits/dobetterweb/charset.js +93 -0
- package/core/audits/dobetterweb/doctype.d.ts +21 -0
- package/core/audits/dobetterweb/doctype.js +120 -0
- package/core/audits/dobetterweb/dom-size.d.ts +26 -0
- package/core/audits/dobetterweb/dom-size.js +134 -0
- package/core/audits/dobetterweb/geolocation-on-start.d.ts +16 -0
- package/core/audits/dobetterweb/geolocation-on-start.js +69 -0
- package/core/audits/dobetterweb/inspector-issues.d.ts +45 -0
- package/core/audits/dobetterweb/inspector-issues.js +191 -0
- package/core/audits/dobetterweb/js-libraries.d.ts +15 -0
- package/core/audits/dobetterweb/js-libraries.js +87 -0
- package/core/audits/dobetterweb/no-document-write.d.ts +16 -0
- package/core/audits/dobetterweb/no-document-write.js +84 -0
- package/core/audits/dobetterweb/notification-on-start.d.ts +16 -0
- package/core/audits/dobetterweb/notification-on-start.js +68 -0
- package/core/audits/dobetterweb/paste-preventing-inputs.d.ts +15 -0
- package/core/audits/dobetterweb/paste-preventing-inputs.js +67 -0
- package/core/audits/dobetterweb/uses-http2.d.ts +72 -0
- package/core/audits/dobetterweb/uses-http2.js +264 -0
- package/core/audits/dobetterweb/uses-passive-event-listeners.d.ts +16 -0
- package/core/audits/dobetterweb/uses-passive-event-listeners.js +67 -0
- package/core/audits/errors-in-console.d.ts +31 -0
- package/core/audits/errors-in-console.js +120 -0
- package/core/audits/final-screenshot.d.ts +11 -0
- package/core/audits/final-screenshot.js +58 -0
- package/core/audits/font-display.d.ts +32 -0
- package/core/audits/font-display.js +193 -0
- package/core/audits/image-aspect-ratio.d.ts +30 -0
- package/core/audits/image-aspect-ratio.js +122 -0
- package/core/audits/image-size-responsive.d.ts +28 -0
- package/core/audits/image-size-responsive.js +332 -0
- package/core/audits/installable-manifest.d.ts +118 -0
- package/core/audits/installable-manifest.js +265 -0
- package/core/audits/is-on-https.d.ts +23 -0
- package/core/audits/is-on-https.js +123 -0
- package/core/audits/largest-contentful-paint-element.d.ts +14 -0
- package/core/audits/largest-contentful-paint-element.js +69 -0
- package/core/audits/layout-shift-elements.d.ts +15 -0
- package/core/audits/layout-shift-elements.js +74 -0
- package/core/audits/lcp-lazy-loaded.d.ts +21 -0
- package/core/audits/lcp-lazy-loaded.js +84 -0
- package/core/audits/long-tasks.d.ts +16 -0
- package/core/audits/long-tasks.js +124 -0
- package/core/audits/main-thread-tasks.d.ts +11 -0
- package/core/audits/main-thread-tasks.js +58 -0
- package/core/audits/mainthread-work-breakdown.d.ts +28 -0
- package/core/audits/mainthread-work-breakdown.js +135 -0
- package/core/audits/manual/manual-audit.d.ts +13 -0
- package/core/audits/manual/manual-audit.js +36 -0
- package/core/audits/manual/pwa-cross-browser.d.ts +12 -0
- package/core/audits/manual/pwa-cross-browser.js +40 -0
- package/core/audits/manual/pwa-each-page-has-url.d.ts +12 -0
- package/core/audits/manual/pwa-each-page-has-url.js +38 -0
- package/core/audits/manual/pwa-page-transitions.d.ts +12 -0
- package/core/audits/manual/pwa-page-transitions.js +38 -0
- package/core/audits/maskable-icon.d.ts +25 -0
- package/core/audits/maskable-icon.js +70 -0
- package/core/audits/metrics/cumulative-layout-shift.d.ts +21 -0
- package/core/audits/metrics/cumulative-layout-shift.js +79 -0
- package/core/audits/metrics/experimental-interaction-to-next-paint.d.ts +21 -0
- package/core/audits/metrics/experimental-interaction-to-next-paint.js +88 -0
- package/core/audits/metrics/first-contentful-paint-3g.d.ts +15 -0
- package/core/audits/metrics/first-contentful-paint-3g.js +69 -0
- package/core/audits/metrics/first-contentful-paint.d.ts +25 -0
- package/core/audits/metrics/first-contentful-paint.js +85 -0
- package/core/audits/metrics/first-meaningful-paint.d.ts +28 -0
- package/core/audits/metrics/first-meaningful-paint.js +89 -0
- package/core/audits/metrics/interactive.d.ts +31 -0
- package/core/audits/metrics/interactive.js +93 -0
- package/core/audits/metrics/largest-contentful-paint.d.ts +25 -0
- package/core/audits/metrics/largest-contentful-paint.js +94 -0
- package/core/audits/metrics/max-potential-fid.d.ts +23 -0
- package/core/audits/metrics/max-potential-fid.js +77 -0
- package/core/audits/metrics/speed-index.d.ts +27 -0
- package/core/audits/metrics/speed-index.js +88 -0
- package/core/audits/metrics/total-blocking-time.d.ts +32 -0
- package/core/audits/metrics/total-blocking-time.js +118 -0
- package/core/audits/metrics.d.ts +11 -0
- package/core/audits/metrics.js +73 -0
- package/core/audits/multi-check-audit.d.ts +28 -0
- package/core/audits/multi-check-audit.js +82 -0
- package/core/audits/network-requests.d.ts +11 -0
- package/core/audits/network-requests.js +129 -0
- package/core/audits/network-rtt.d.ts +15 -0
- package/core/audits/network-rtt.js +89 -0
- package/core/audits/network-server-latency.d.ts +15 -0
- package/core/audits/network-server-latency.js +88 -0
- package/core/audits/no-unload-listeners.d.ts +16 -0
- package/core/audits/no-unload-listeners.js +86 -0
- package/core/audits/non-composited-animations.d.ts +21 -0
- package/core/audits/non-composited-animations.js +205 -0
- package/core/audits/oopif-iframe-test-audit.d.ts +14 -0
- package/core/audits/oopif-iframe-test-audit.js +29 -0
- package/core/audits/performance-budget.d.ts +39 -0
- package/core/audits/performance-budget.js +154 -0
- package/core/audits/predictive-perf.d.ts +11 -0
- package/core/audits/predictive-perf.js +100 -0
- package/core/audits/preload-fonts.d.ts +29 -0
- package/core/audits/preload-fonts.js +106 -0
- package/core/audits/prioritize-lcp-image.d.ts +76 -0
- package/core/audits/prioritize-lcp-image.js +290 -0
- package/core/audits/redirects.d.ts +33 -0
- package/core/audits/redirects.js +164 -0
- package/core/audits/resource-summary.d.ts +16 -0
- package/core/audits/resource-summary.js +104 -0
- package/core/audits/screenshot-thumbnails.d.ts +33 -0
- package/core/audits/screenshot-thumbnails.js +168 -0
- package/core/audits/script-elements-test-audit.d.ts +14 -0
- package/core/audits/script-elements-test-audit.js +29 -0
- package/core/audits/script-treemap-data.d.ts +42 -0
- package/core/audits/script-treemap-data.js +287 -0
- package/core/audits/seo/canonical.d.ts +51 -0
- package/core/audits/seo/canonical.js +217 -0
- package/core/audits/seo/crawlable-anchors.d.ts +16 -0
- package/core/audits/seo/crawlable-anchors.js +93 -0
- package/core/audits/seo/font-size.d.ts +24 -0
- package/core/audits/seo/font-size.js +344 -0
- package/core/audits/seo/hreflang.d.ts +28 -0
- package/core/audits/seo/hreflang.js +148 -0
- package/core/audits/seo/http-status-code.d.ts +16 -0
- package/core/audits/seo/http-status-code.js +68 -0
- package/core/audits/seo/is-crawlable.d.ts +38 -0
- package/core/audits/seo/is-crawlable.js +223 -0
- package/core/audits/seo/link-text.d.ts +16 -0
- package/core/audits/seo/link-text.js +160 -0
- package/core/audits/seo/manual/structured-data.d.ts +12 -0
- package/core/audits/seo/manual/structured-data.js +37 -0
- package/core/audits/seo/meta-description.d.ts +16 -0
- package/core/audits/seo/meta-description.js +66 -0
- package/core/audits/seo/plugins.d.ts +15 -0
- package/core/audits/seo/plugins.js +150 -0
- package/core/audits/seo/robots-txt.d.ts +18 -0
- package/core/audits/seo/robots-txt.js +255 -0
- package/core/audits/seo/tap-targets.d.ts +50 -0
- package/core/audits/seo/tap-targets.js +352 -0
- package/core/audits/server-response-time.d.ts +21 -0
- package/core/audits/server-response-time.js +90 -0
- package/core/audits/service-worker.d.ts +46 -0
- package/core/audits/service-worker.js +182 -0
- package/core/audits/splash-screen.d.ts +37 -0
- package/core/audits/splash-screen.js +98 -0
- package/core/audits/themed-omnibox.d.ts +42 -0
- package/core/audits/themed-omnibox.js +102 -0
- package/core/audits/third-party-facades.d.ts +42 -0
- package/core/audits/third-party-facades.js +224 -0
- package/core/audits/third-party-summary.d.ts +59 -0
- package/core/audits/third-party-summary.js +257 -0
- package/core/audits/timing-budget.d.ts +43 -0
- package/core/audits/timing-budget.js +174 -0
- package/core/audits/unsized-images.d.ts +39 -0
- package/core/audits/unsized-images.js +162 -0
- package/core/audits/user-timings.d.ts +43 -0
- package/core/audits/user-timings.js +118 -0
- package/core/audits/uses-rel-preconnect.d.ts +37 -0
- package/core/audits/uses-rel-preconnect.js +253 -0
- package/core/audits/uses-rel-preload.d.ts +61 -0
- package/core/audits/uses-rel-preload.js +269 -0
- package/core/audits/valid-source-maps.d.ts +29 -0
- package/core/audits/valid-source-maps.js +160 -0
- package/core/audits/viewport.d.ts +17 -0
- package/core/audits/viewport.js +64 -0
- package/core/audits/violation-audit.d.ts +14 -0
- package/core/audits/violation-audit.js +49 -0
- package/core/audits/work-during-interaction.d.ts +82 -0
- package/core/audits/work-during-interaction.js +279 -0
- package/core/computed/computed-artifact.d.ts +15 -0
- package/core/computed/computed-artifact.js +62 -0
- package/core/computed/critical-request-chains.d.ts +40 -0
- package/core/computed/critical-request-chains.js +143 -0
- package/core/computed/entity-classification.d.ts +29 -0
- package/core/computed/entity-classification.js +103 -0
- package/core/computed/image-records.d.ts +24 -0
- package/core/computed/image-records.js +64 -0
- package/core/computed/js-bundles.d.ts +13 -0
- package/core/computed/js-bundles.js +120 -0
- package/core/computed/load-simulator.d.ts +28 -0
- package/core/computed/load-simulator.js +92 -0
- package/core/computed/main-resource.d.ts +25 -0
- package/core/computed/main-resource.js +35 -0
- package/core/computed/main-thread-tasks.d.ts +15 -0
- package/core/computed/main-thread-tasks.js +25 -0
- package/core/computed/manifest-values.d.ts +24 -0
- package/core/computed/manifest-values.js +136 -0
- package/core/computed/metrics/cumulative-layout-shift.d.ts +53 -0
- package/core/computed/metrics/cumulative-layout-shift.js +125 -0
- package/core/computed/metrics/first-contentful-paint-all-frames.d.ts +19 -0
- package/core/computed/metrics/first-contentful-paint-all-frames.js +37 -0
- package/core/computed/metrics/first-contentful-paint.d.ts +15 -0
- package/core/computed/metrics/first-contentful-paint.js +40 -0
- package/core/computed/metrics/first-meaningful-paint.d.ts +15 -0
- package/core/computed/metrics/first-meaningful-paint.js +44 -0
- package/core/computed/metrics/interactive.d.ts +61 -0
- package/core/computed/metrics/interactive.js +192 -0
- package/core/computed/metrics/lantern-first-contentful-paint.d.ts +48 -0
- package/core/computed/metrics/lantern-first-contentful-paint.js +204 -0
- package/core/computed/metrics/lantern-first-meaningful-paint.d.ts +12 -0
- package/core/computed/metrics/lantern-first-meaningful-paint.js +83 -0
- package/core/computed/metrics/lantern-interactive.d.ts +31 -0
- package/core/computed/metrics/lantern-interactive.js +113 -0
- package/core/computed/metrics/lantern-largest-contentful-paint.d.ts +25 -0
- package/core/computed/metrics/lantern-largest-contentful-paint.js +111 -0
- package/core/computed/metrics/lantern-max-potential-fid.d.ts +30 -0
- package/core/computed/metrics/lantern-max-potential-fid.js +93 -0
- package/core/computed/metrics/lantern-metric.d.ts +78 -0
- package/core/computed/metrics/lantern-metric.js +162 -0
- package/core/computed/metrics/lantern-speed-index.d.ts +38 -0
- package/core/computed/metrics/lantern-speed-index.js +150 -0
- package/core/computed/metrics/lantern-total-blocking-time.d.ts +31 -0
- package/core/computed/metrics/lantern-total-blocking-time.js +126 -0
- package/core/computed/metrics/largest-contentful-paint-all-frames.d.ts +20 -0
- package/core/computed/metrics/largest-contentful-paint-all-frames.js +45 -0
- package/core/computed/metrics/largest-contentful-paint.d.ts +15 -0
- package/core/computed/metrics/largest-contentful-paint.js +52 -0
- package/core/computed/metrics/max-potential-fid.d.ts +15 -0
- package/core/computed/metrics/max-potential-fid.js +45 -0
- package/core/computed/metrics/metric.d.ts +38 -0
- package/core/computed/metrics/metric.js +100 -0
- package/core/computed/metrics/navigation-metric.d.ts +16 -0
- package/core/computed/metrics/navigation-metric.js +46 -0
- package/core/computed/metrics/responsiveness.d.ts +87 -0
- package/core/computed/metrics/responsiveness.js +160 -0
- package/core/computed/metrics/speed-index.d.ts +10 -0
- package/core/computed/metrics/speed-index.js +40 -0
- package/core/computed/metrics/tbt-utils.d.ts +18 -0
- package/core/computed/metrics/tbt-utils.js +56 -0
- package/core/computed/metrics/timing-summary.d.ts +46 -0
- package/core/computed/metrics/timing-summary.js +157 -0
- package/core/computed/metrics/total-blocking-time.d.ts +23 -0
- package/core/computed/metrics/total-blocking-time.js +74 -0
- package/core/computed/module-duplication.d.ts +37 -0
- package/core/computed/module-duplication.js +138 -0
- package/core/computed/network-analysis.d.ts +20 -0
- package/core/computed/network-analysis.js +64 -0
- package/core/computed/network-records.d.ts +15 -0
- package/core/computed/network-records.js +22 -0
- package/core/computed/page-dependency-graph.d.ts +88 -0
- package/core/computed/page-dependency-graph.js +516 -0
- package/core/computed/processed-navigation.d.ts +21 -0
- package/core/computed/processed-navigation.js +37 -0
- package/core/computed/processed-trace.d.ts +14 -0
- package/core/computed/processed-trace.js +21 -0
- package/core/computed/resource-summary.d.ts +46 -0
- package/core/computed/resource-summary.js +118 -0
- package/core/computed/screenshots.d.ts +20 -0
- package/core/computed/screenshots.js +29 -0
- package/core/computed/speedline.d.ts +15 -0
- package/core/computed/speedline.js +55 -0
- package/core/computed/unused-css.d.ts +62 -0
- package/core/computed/unused-css.js +153 -0
- package/core/computed/unused-javascript-summary.d.ts +71 -0
- package/core/computed/unused-javascript-summary.js +155 -0
- package/core/computed/user-timings.d.ts +31 -0
- package/core/computed/user-timings.js +83 -0
- package/core/computed/viewport-meta.d.ts +35 -0
- package/core/computed/viewport-meta.js +56 -0
- package/core/config/budget.d.ts +74 -0
- package/core/config/budget.js +340 -0
- package/core/config/config-helpers.d.ts +94 -0
- package/core/config/config-helpers.js +630 -0
- package/core/config/config-plugin.d.ts +46 -0
- package/core/config/config-plugin.js +250 -0
- package/core/config/config.d.ts +28 -0
- package/core/config/config.js +344 -0
- package/core/config/constants.d.ts +86 -0
- package/core/config/constants.js +175 -0
- package/core/config/default-config.d.ts +5 -0
- package/core/config/default-config.js +637 -0
- package/core/config/desktop-config.d.ts +5 -0
- package/core/config/desktop-config.js +21 -0
- package/core/config/experimental-config.d.ts +13 -0
- package/core/config/experimental-config.js +29 -0
- package/core/config/filters.d.ts +83 -0
- package/core/config/filters.js +344 -0
- package/core/config/full-config.d.ts +9 -0
- package/core/config/full-config.js +13 -0
- package/core/config/lr-desktop-config.d.ts +4 -0
- package/core/config/lr-desktop-config.js +28 -0
- package/core/config/lr-mobile-config.d.ts +9 -0
- package/core/config/lr-mobile-config.js +33 -0
- package/core/config/metrics-to-audits.d.ts +19 -0
- package/core/config/metrics-to-audits.js +61 -0
- package/core/config/perf-config.d.ts +9 -0
- package/core/config/perf-config.js +16 -0
- package/core/config/validation.d.ts +77 -0
- package/core/config/validation.js +312 -0
- package/core/gather/base-artifacts.d.ts +16 -0
- package/core/gather/base-artifacts.js +95 -0
- package/core/gather/base-gatherer.d.ts +72 -0
- package/core/gather/base-gatherer.js +108 -0
- package/core/gather/driver/dom.d.ts +20 -0
- package/core/gather/driver/dom.js +57 -0
- package/core/gather/driver/environment.d.ts +35 -0
- package/core/gather/driver/environment.js +105 -0
- package/core/gather/driver/execution-context.d.ts +101 -0
- package/core/gather/driver/execution-context.js +262 -0
- package/core/gather/driver/navigation.d.ts +33 -0
- package/core/gather/driver/navigation.js +182 -0
- package/core/gather/driver/network-monitor.d.ts +82 -0
- package/core/gather/driver/network-monitor.js +260 -0
- package/core/gather/driver/network.d.ts +10 -0
- package/core/gather/driver/network.js +27 -0
- package/core/gather/driver/prepare.d.ts +52 -0
- package/core/gather/driver/prepare.js +244 -0
- package/core/gather/driver/service-workers.d.ts +16 -0
- package/core/gather/driver/service-workers.js +52 -0
- package/core/gather/driver/storage.d.ts +24 -0
- package/core/gather/driver/storage.js +149 -0
- package/core/gather/driver/target-manager.d.ts +61 -0
- package/core/gather/driver/target-manager.js +209 -0
- package/core/gather/driver/wait-for-condition.d.ts +116 -0
- package/core/gather/driver/wait-for-condition.js +544 -0
- package/core/gather/driver.d.ts +30 -0
- package/core/gather/driver.js +92 -0
- package/core/gather/fetcher.d.ts +63 -0
- package/core/gather/fetcher.js +143 -0
- package/core/gather/gatherers/accessibility.d.ts +23 -0
- package/core/gather/gatherers/accessibility.js +199 -0
- package/core/gather/gatherers/anchor-elements.d.ts +10 -0
- package/core/gather/gatherers/anchor-elements.js +132 -0
- package/core/gather/gatherers/bf-cache-failures.d.ts +43 -0
- package/core/gather/gatherers/bf-cache-failures.js +179 -0
- package/core/gather/gatherers/cache-contents.d.ts +11 -0
- package/core/gather/gatherers/cache-contents.js +58 -0
- package/core/gather/gatherers/console-messages.d.ts +39 -0
- package/core/gather/gatherers/console-messages.js +174 -0
- package/core/gather/gatherers/css-usage.d.ts +39 -0
- package/core/gather/gatherers/css-usage.js +150 -0
- package/core/gather/gatherers/devtools-log-compat.d.ts +13 -0
- package/core/gather/gatherers/devtools-log-compat.js +35 -0
- package/core/gather/gatherers/devtools-log.d.ts +48 -0
- package/core/gather/gatherers/devtools-log.js +115 -0
- package/core/gather/gatherers/dobetterweb/doctype.d.ts +10 -0
- package/core/gather/gatherers/dobetterweb/doctype.js +47 -0
- package/core/gather/gatherers/dobetterweb/domstats.d.ts +10 -0
- package/core/gather/gatherers/dobetterweb/domstats.js +102 -0
- package/core/gather/gatherers/dobetterweb/optimized-images.d.ts +61 -0
- package/core/gather/gatherers/dobetterweb/optimized-images.js +193 -0
- package/core/gather/gatherers/dobetterweb/response-compression.d.ts +30 -0
- package/core/gather/gatherers/dobetterweb/response-compression.js +155 -0
- package/core/gather/gatherers/dobetterweb/tags-blocking-first-paint.d.ts +53 -0
- package/core/gather/gatherers/dobetterweb/tags-blocking-first-paint.js +237 -0
- package/core/gather/gatherers/full-page-screenshot.d.ts +35 -0
- package/core/gather/gatherers/full-page-screenshot.js +258 -0
- package/core/gather/gatherers/gatherer.d.ts +46 -0
- package/core/gather/gatherers/gatherer.js +58 -0
- package/core/gather/gatherers/global-listeners.d.ts +27 -0
- package/core/gather/gatherers/global-listeners.js +91 -0
- package/core/gather/gatherers/iframe-elements.d.ts +11 -0
- package/core/gather/gatherers/iframe-elements.js +67 -0
- package/core/gather/gatherers/image-elements.d.ts +35 -0
- package/core/gather/gatherers/image-elements.js +378 -0
- package/core/gather/gatherers/inputs.d.ts +10 -0
- package/core/gather/gatherers/inputs.js +118 -0
- package/core/gather/gatherers/inspector-issues.d.ts +38 -0
- package/core/gather/gatherers/inspector-issues.js +126 -0
- package/core/gather/gatherers/installability-errors.d.ts +17 -0
- package/core/gather/gatherers/installability-errors.js +56 -0
- package/core/gather/gatherers/js-usage.d.ts +22 -0
- package/core/gather/gatherers/js-usage.js +74 -0
- package/core/gather/gatherers/link-elements.d.ts +39 -0
- package/core/gather/gatherers/link-elements.js +181 -0
- package/core/gather/gatherers/main-document-content.d.ts +27 -0
- package/core/gather/gatherers/main-document-content.js +53 -0
- package/core/gather/gatherers/meta-elements.d.ts +10 -0
- package/core/gather/gatherers/meta-elements.js +67 -0
- package/core/gather/gatherers/network-user-agent.d.ts +18 -0
- package/core/gather/gatherers/network-user-agent.js +41 -0
- package/core/gather/gatherers/script-elements.d.ts +26 -0
- package/core/gather/gatherers/script-elements.js +110 -0
- package/core/gather/gatherers/scripts.d.ts +27 -0
- package/core/gather/gatherers/scripts.js +139 -0
- package/core/gather/gatherers/seo/embedded-content.d.ts +10 -0
- package/core/gather/gatherers/seo/embedded-content.js +63 -0
- package/core/gather/gatherers/seo/font-size.d.ts +131 -0
- package/core/gather/gatherers/seo/font-size.js +339 -0
- package/core/gather/gatherers/seo/robots-txt.d.ts +10 -0
- package/core/gather/gatherers/seo/robots-txt.js +27 -0
- package/core/gather/gatherers/seo/tap-targets.d.ts +21 -0
- package/core/gather/gatherers/seo/tap-targets.js +389 -0
- package/core/gather/gatherers/service-worker.d.ts +16 -0
- package/core/gather/gatherers/service-worker.js +44 -0
- package/core/gather/gatherers/source-maps.d.ts +50 -0
- package/core/gather/gatherers/source-maps.js +155 -0
- package/core/gather/gatherers/stacks.d.ts +38 -0
- package/core/gather/gatherers/stacks.js +137 -0
- package/core/gather/gatherers/trace-compat.d.ts +13 -0
- package/core/gather/gatherers/trace-compat.js +35 -0
- package/core/gather/gatherers/trace-elements.d.ts +83 -0
- package/core/gather/gatherers/trace-elements.js +349 -0
- package/core/gather/gatherers/trace.d.ts +23 -0
- package/core/gather/gatherers/trace.js +130 -0
- package/core/gather/gatherers/viewport-dimensions.d.ts +10 -0
- package/core/gather/gatherers/viewport-dimensions.js +57 -0
- package/core/gather/gatherers/web-app-manifest.d.ts +32 -0
- package/core/gather/gatherers/web-app-manifest.js +106 -0
- package/core/gather/navigation-runner.d.ts +94 -0
- package/core/gather/navigation-runner.js +386 -0
- package/core/gather/runner-helpers.d.ts +39 -0
- package/core/gather/runner-helpers.js +159 -0
- package/core/gather/session.d.ts +50 -0
- package/core/gather/session.js +114 -0
- package/core/gather/snapshot-runner.d.ts +10 -0
- package/core/gather/snapshot-runner.js +67 -0
- package/core/gather/timespan-runner.d.ts +12 -0
- package/core/gather/timespan-runner.js +85 -0
- package/core/index.cjs +21 -0
- package/core/index.d.cts +4 -0
- package/core/index.d.ts +88 -0
- package/core/index.js +172 -0
- package/core/legacy/config/config.d.ts +107 -0
- package/core/legacy/config/config.js +566 -0
- package/core/legacy/config/legacy-default-config.d.ts +4 -0
- package/core/legacy/config/legacy-default-config.js +87 -0
- package/core/legacy/gather/connections/connection.d.ts +75 -0
- package/core/legacy/gather/connections/connection.js +181 -0
- package/core/legacy/gather/connections/cri.d.ts +27 -0
- package/core/legacy/gather/connections/cri.js +162 -0
- package/core/legacy/gather/connections/raw.d.ts +20 -0
- package/core/legacy/gather/connections/raw.js +57 -0
- package/core/legacy/gather/driver.d.ts +215 -0
- package/core/legacy/gather/driver.js +469 -0
- package/core/legacy/gather/gather-runner.d.ts +166 -0
- package/core/legacy/gather/gather-runner.js +590 -0
- package/core/lib/arbitrary-equality-map.d.ts +47 -0
- package/core/lib/arbitrary-equality-map.js +80 -0
- package/core/lib/asset-saver.d.ts +101 -0
- package/core/lib/asset-saver.js +451 -0
- package/core/lib/axe.d.ts +2 -0
- package/core/lib/axe.js +17 -0
- package/core/lib/bf-cache-strings.d.ts +121 -0
- package/core/lib/bf-cache-strings.js +661 -0
- package/core/lib/cdt/Common.d.ts +3 -0
- package/core/lib/cdt/Common.js +12 -0
- package/core/lib/cdt/Platform.d.ts +26 -0
- package/core/lib/cdt/Platform.js +57 -0
- package/core/lib/cdt/SDK.d.ts +2 -0
- package/core/lib/cdt/SDK.js +28 -0
- package/core/lib/cdt/generated/ParsedURL.d.ts +28 -0
- package/core/lib/cdt/generated/ParsedURL.js +178 -0
- package/core/lib/cdt/generated/SourceMap.d.ts +100 -0
- package/core/lib/cdt/generated/SourceMap.js +527 -0
- package/core/lib/cdt/package.json +4 -0
- package/core/lib/csp-evaluator.d.ts +41 -0
- package/core/lib/csp-evaluator.js +170 -0
- package/core/lib/dependency-graph/base-node.d.ts +161 -0
- package/core/lib/dependency-graph/base-node.js +364 -0
- package/core/lib/dependency-graph/cpu-node.d.ts +34 -0
- package/core/lib/dependency-graph/cpu-node.js +86 -0
- package/core/lib/dependency-graph/network-node.d.ts +43 -0
- package/core/lib/dependency-graph/network-node.js +99 -0
- package/core/lib/dependency-graph/simulator/connection-pool.d.ts +58 -0
- package/core/lib/dependency-graph/simulator/connection-pool.js +171 -0
- package/core/lib/dependency-graph/simulator/dns-cache.d.ts +42 -0
- package/core/lib/dependency-graph/simulator/dns-cache.js +74 -0
- package/core/lib/dependency-graph/simulator/network-analyzer.d.ts +166 -0
- package/core/lib/dependency-graph/simulator/network-analyzer.js +479 -0
- package/core/lib/dependency-graph/simulator/simulator-timing-map.d.ts +153 -0
- package/core/lib/dependency-graph/simulator/simulator-timing-map.js +220 -0
- package/core/lib/dependency-graph/simulator/simulator.d.ts +154 -0
- package/core/lib/dependency-graph/simulator/simulator.js +540 -0
- package/core/lib/dependency-graph/simulator/tcp-connection.d.ts +89 -0
- package/core/lib/dependency-graph/simulator/tcp-connection.js +230 -0
- package/core/lib/deprecations-strings.d.ts +66 -0
- package/core/lib/deprecations-strings.js +654 -0
- package/core/lib/emulation.d.ts +43 -0
- package/core/lib/emulation.js +163 -0
- package/core/lib/i18n/README.md +290 -0
- package/core/lib/i18n/i18n.d.ts +81 -0
- package/core/lib/i18n/i18n.js +229 -0
- package/core/lib/icons.d.ts +22 -0
- package/core/lib/icons.js +82 -0
- package/core/lib/lantern-trace-saver.d.ts +20 -0
- package/core/lib/lantern-trace-saver.js +260 -0
- package/core/lib/lh-env.d.ts +2 -0
- package/core/lib/lh-env.js +15 -0
- package/core/lib/lh-error.d.ts +328 -0
- package/core/lib/lh-error.js +425 -0
- package/core/lib/lh-trace-processor.d.ts +5 -0
- package/core/lib/lh-trace-processor.js +45 -0
- package/core/lib/lighthouse-compatibility.d.ts +8 -0
- package/core/lib/lighthouse-compatibility.js +139 -0
- package/core/lib/manifest-parser.d.ts +186 -0
- package/core/lib/manifest-parser.js +495 -0
- package/core/lib/median-run.d.ts +17 -0
- package/core/lib/median-run.js +92 -0
- package/core/lib/minification-estimator.d.ts +9 -0
- package/core/lib/minification-estimator.js +192 -0
- package/core/lib/minify-devtoolslog.d.ts +6 -0
- package/core/lib/minify-devtoolslog.js +86 -0
- package/core/lib/navigation-error.d.ts +39 -0
- package/core/lib/navigation-error.js +175 -0
- package/core/lib/network-recorder.d.ts +115 -0
- package/core/lib/network-recorder.js +341 -0
- package/core/lib/network-request.d.ts +247 -0
- package/core/lib/network-request.js +590 -0
- package/core/lib/page-functions.d.ts +149 -0
- package/core/lib/page-functions.js +544 -0
- package/core/lib/proto-preprocessor.d.ts +13 -0
- package/core/lib/proto-preprocessor.js +133 -0
- package/core/lib/rect-helpers.d.ts +100 -0
- package/core/lib/rect-helpers.js +251 -0
- package/core/lib/script-helpers.d.ts +17 -0
- package/core/lib/script-helpers.js +31 -0
- package/core/lib/sentry.d.ts +32 -0
- package/core/lib/sentry.js +143 -0
- package/core/lib/stack-packs.d.ts +16 -0
- package/core/lib/stack-packs.js +126 -0
- package/core/lib/statistics.d.ts +28 -0
- package/core/lib/statistics.js +103 -0
- package/core/lib/tappable-rects.d.ts +8 -0
- package/core/lib/tappable-rects.js +98 -0
- package/core/lib/third-party-web.d.ts +32 -0
- package/core/lib/third-party-web.js +52 -0
- package/core/lib/timing-trace-saver.d.ts +21 -0
- package/core/lib/timing-trace-saver.js +96 -0
- package/core/lib/tracehouse/cpu-profile-model.d.ts +228 -0
- package/core/lib/tracehouse/cpu-profile-model.js +591 -0
- package/core/lib/tracehouse/main-thread-tasks.d.ts +162 -0
- package/core/lib/tracehouse/main-thread-tasks.js +688 -0
- package/core/lib/tracehouse/task-groups.d.ts +66 -0
- package/core/lib/tracehouse/task-groups.js +111 -0
- package/core/lib/tracehouse/task-summary.d.ts +18 -0
- package/core/lib/tracehouse/task-summary.js +86 -0
- package/core/lib/tracehouse/trace-processor.d.ts +284 -0
- package/core/lib/tracehouse/trace-processor.js +1016 -0
- package/core/lib/traces/metric-trace-events.d.ts +65 -0
- package/core/lib/traces/metric-trace-events.js +200 -0
- package/core/lib/url-utils.d.ts +100 -0
- package/core/lib/url-utils.js +266 -0
- package/core/runner.d.ts +114 -0
- package/core/runner.js +563 -0
- package/core/scoring.d.ts +26 -0
- package/core/scoring.js +91 -0
- package/core/scripts/download-chrome.sh +36 -0
- package/core/scripts/manual-chrome-launcher.js +50 -0
- package/core/user-flow.d.ts +106 -0
- package/core/user-flow.js +354 -0
- package/dist/report/bundle.esm.js +1485 -1281
- package/dist/report/flow.js +37 -25
- package/dist/report/standalone.js +35 -19
- package/eslint-local-rules.cjs +106 -0
- package/eslint-local-rules.d.cts +6 -0
- package/esm-utils.d.ts +14 -0
- package/esm-utils.js +38 -0
- package/flow-report/api.d.ts +7 -0
- package/flow-report/assets/standalone-flow-template.html +1 -1
- package/flow-report/clients/standalone.d.ts +7 -0
- package/flow-report/src/app.d.ts +11 -0
- package/flow-report/src/app.tsx +1 -1
- package/flow-report/src/common.d.ts +20 -0
- package/flow-report/src/common.tsx +3 -3
- package/flow-report/src/header.d.ts +10 -0
- package/flow-report/src/header.tsx +1 -1
- package/flow-report/src/help-dialog.d.ts +10 -0
- package/flow-report/src/i18n/i18n.d.ts +212 -0
- package/flow-report/src/i18n/i18n.tsx +24 -19
- package/flow-report/src/i18n/localized-strings.d.ts +9 -0
- package/flow-report/src/i18n/ui-strings.d.ts +48 -0
- package/flow-report/src/icons.d.ts +18 -0
- package/flow-report/src/sidebar/flow.d.ts +8 -0
- package/flow-report/src/sidebar/sidebar.d.ts +17 -0
- package/flow-report/src/sidebar/sidebar.tsx +7 -4
- package/flow-report/src/summary/category.d.ts +19 -0
- package/flow-report/src/summary/category.tsx +10 -10
- package/flow-report/src/summary/summary.d.ts +18 -0
- package/flow-report/src/summary/summary.tsx +4 -4
- package/flow-report/src/topbar.d.ts +15 -0
- package/flow-report/src/topbar.tsx +14 -30
- package/flow-report/src/util.d.ts +30 -0
- package/flow-report/src/util.ts +2 -13
- package/flow-report/src/wrappers/category-score.d.ts +12 -0
- package/flow-report/src/wrappers/markdown.d.ts +10 -0
- package/flow-report/src/wrappers/report.d.ts +10 -0
- package/flow-report/src/wrappers/report.tsx +1 -1
- package/flow-report/src/wrappers/styles.d.ts +8 -0
- package/flow-report/test/app-test.d.ts +7 -0
- package/flow-report/test/common-test.d.ts +7 -0
- package/flow-report/test/common-test.tsx +11 -12
- package/flow-report/test/flow-report-pptr-test.d.ts +7 -0
- package/flow-report/test/flow-report-pptr-test.ts +21 -8
- package/flow-report/test/header-test.d.ts +7 -0
- package/flow-report/test/run-flow-report-tests.sh +20 -0
- package/flow-report/test/sample-flow.d.ts +7 -0
- package/flow-report/test/sample-flow.ts +1 -1
- package/flow-report/test/setup/env-setup.d.ts +11 -0
- package/flow-report/test/setup/env-setup.ts +47 -24
- package/flow-report/test/sidebar/flow-test.d.ts +7 -0
- package/flow-report/test/sidebar/sidebar-test.d.ts +7 -0
- package/flow-report/test/sidebar/sidebar-test.tsx +30 -3
- package/flow-report/test/summary/category-test.d.ts +7 -0
- package/flow-report/test/summary/summary-test.d.ts +7 -0
- package/flow-report/test/summary/summary-test.tsx +1 -1
- package/flow-report/test/topbar-test.d.ts +7 -0
- package/flow-report/test/topbar-test.tsx +11 -12
- package/flow-report/test/util-test.d.ts +7 -0
- package/flow-report/test/util-test.tsx +3 -3
- package/flow-report/test/wrappers/category-score-test.d.ts +7 -0
- package/flow-report/test/wrappers/markdown-test.d.ts +7 -0
- package/flow-report/tsconfig.json +5 -3
- package/flow-report/types/flow-report.d.ts +8 -1
- package/package.json +86 -80
- package/readme.md +27 -40
- package/report/README.md +8 -9
- package/report/assets/standalone-template.html +1 -1
- package/report/assets/styles.css +35 -17
- package/report/assets/templates.html +14 -37
- package/report/clients/bundle.d.ts +6 -0
- package/report/clients/bundle.js +1 -2
- package/report/clients/standalone.d.ts +2 -0
- package/report/clients/standalone.js +0 -1
- package/report/generator/file-namer.d.ts +35 -0
- package/report/generator/file-namer.js +7 -3
- package/report/generator/flow-report-assets.d.ts +9 -0
- package/report/generator/flow-report-assets.js +10 -6
- package/report/generator/report-assets.d.ts +8 -0
- package/report/generator/report-assets.js +8 -5
- package/report/generator/report-generator.d.ts +59 -0
- package/report/generator/report-generator.js +76 -34
- package/report/generator/tsconfig.json +1 -2
- package/report/renderer/api.d.ts +31 -0
- package/report/renderer/api.js +0 -2
- package/report/renderer/category-renderer.d.ts +176 -0
- package/report/renderer/category-renderer.js +39 -41
- package/report/renderer/components.d.ts +10 -0
- package/report/renderer/components.js +364 -448
- package/report/renderer/crc-details-renderer.d.ts +73 -0
- package/report/renderer/crc-details-renderer.js +28 -30
- package/report/renderer/details-renderer.d.ts +141 -0
- package/report/renderer/details-renderer.js +44 -92
- package/report/renderer/dom.d.ts +125 -0
- package/report/renderer/dom.js +13 -10
- package/report/renderer/drop-down-menu.d.ts +70 -0
- package/report/renderer/drop-down-menu.js +0 -1
- package/report/renderer/element-screenshot-renderer.d.ts +79 -0
- package/report/renderer/element-screenshot-renderer.js +11 -12
- package/report/renderer/features-util.d.ts +13 -0
- package/report/renderer/features-util.js +0 -1
- package/report/renderer/i18n-formatter.d.ts +100 -0
- package/report/renderer/i18n-formatter.js +263 -0
- package/report/renderer/logger.d.ts +47 -0
- package/report/renderer/logger.js +0 -1
- package/report/renderer/open-tab.d.ts +19 -0
- package/report/renderer/open-tab.js +4 -4
- package/report/renderer/performance-category-renderer.d.ts +56 -0
- package/report/renderer/performance-category-renderer.js +29 -26
- package/report/renderer/pwa-category-renderer.d.ts +55 -0
- package/report/renderer/pwa-category-renderer.js +8 -8
- package/report/renderer/report-globals.d.ts +21 -0
- package/report/renderer/report-globals.js +49 -0
- package/report/renderer/report-renderer.d.ts +57 -0
- package/report/renderer/report-renderer.js +54 -52
- package/report/renderer/report-ui-features.d.ts +71 -0
- package/report/renderer/report-ui-features.js +44 -39
- package/report/renderer/report-utils.d.ts +129 -0
- package/report/renderer/report-utils.js +448 -0
- package/report/renderer/snippet-renderer.d.ts +85 -0
- package/report/renderer/snippet-renderer.js +5 -5
- package/report/renderer/swap-locale-feature.d.ts +31 -0
- package/report/renderer/swap-locale-feature.js +2 -3
- package/report/renderer/text-encoding.d.ts +26 -0
- package/report/renderer/text-encoding.js +0 -1
- package/report/renderer/topbar-features.d.ts +82 -0
- package/report/renderer/topbar-features.js +2 -2
- package/report/test/clients/bundle-test.js +5 -10
- package/report/test/generator/file-namer-test.js +3 -4
- package/report/test/generator/report-generator-test.js +49 -24
- package/report/test/renderer/category-renderer-test.js +19 -15
- package/report/test/renderer/components-test.js +36 -37
- package/report/test/renderer/crc-details-renderer-test.js +11 -10
- package/report/test/renderer/details-renderer-test.js +91 -41
- package/report/test/renderer/dom-test.js +38 -14
- package/report/test/renderer/element-screenshot-renderer-test.js +14 -12
- package/report/test/renderer/i18n-formatter-test.js +179 -0
- package/report/test/renderer/performance-category-renderer-test.js +43 -31
- package/report/test/renderer/pwa-category-renderer-test.js +17 -13
- package/report/test/renderer/report-renderer-axe-test.js +12 -15
- package/report/test/renderer/report-renderer-test.js +17 -15
- package/report/test/renderer/report-ui-features-test.js +304 -89
- package/report/test/renderer/report-utils-test.js +219 -0
- package/report/test/renderer/snippet-renderer-test.js +11 -10
- package/report/test/renderer/text-encoding-test.js +2 -5
- package/report/test-assets/faux-psi.d.ts +34 -0
- package/report/tsconfig.json +1 -2
- package/report/types/augment-dom.d.ts +1 -1
- package/root.d.ts +3 -0
- package/root.js +9 -19
- package/shared/localization/format.d.ts +106 -0
- package/shared/localization/format.js +27 -21
- package/shared/localization/i18n-module.d.ts +4 -0
- package/shared/localization/i18n-module.js +7 -3
- package/shared/localization/locales/ar-XB.json +1658 -1007
- package/shared/localization/locales/ar.json +1659 -1008
- package/shared/localization/locales/bg.json +1657 -1006
- package/shared/localization/locales/ca.json +1664 -1013
- package/shared/localization/locales/cs.json +1659 -1008
- package/shared/localization/locales/da.json +1658 -1007
- package/shared/localization/locales/de.json +1794 -1143
- package/shared/localization/locales/el.json +1657 -1006
- package/shared/localization/locales/en-GB.json +1658 -1007
- package/shared/localization/locales/en-US.json +1570 -1207
- package/shared/localization/locales/en-XA.json +1658 -1007
- package/shared/localization/locales/en-XL.json +1570 -1207
- package/shared/localization/locales/es-419.json +1660 -1009
- package/shared/localization/locales/es.json +1665 -1014
- package/shared/localization/locales/fi.json +1658 -1007
- package/shared/localization/locales/fil.json +1659 -1008
- package/shared/localization/locales/fr.json +1660 -1009
- package/shared/localization/locales/he.json +1678 -1027
- package/shared/localization/locales/hi.json +1661 -1010
- package/shared/localization/locales/hr.json +1658 -1007
- package/shared/localization/locales/hu.json +1657 -1006
- package/shared/localization/locales/id.json +1658 -1007
- package/shared/localization/locales/it.json +1678 -1027
- package/shared/localization/locales/ja.json +1657 -1006
- package/shared/localization/locales/ko.json +1658 -1007
- package/shared/localization/locales/lt.json +1658 -1007
- package/shared/localization/locales/lv.json +1658 -1007
- package/shared/localization/locales/nl.json +1659 -1008
- package/shared/localization/locales/no.json +1662 -1011
- package/shared/localization/locales/pl.json +1657 -1006
- package/shared/localization/locales/pt-PT.json +1678 -1027
- package/shared/localization/locales/pt.json +1659 -1008
- package/shared/localization/locales/ro.json +1657 -1006
- package/shared/localization/locales/ru.json +1657 -1006
- package/shared/localization/locales/sk.json +1657 -1006
- package/shared/localization/locales/sl.json +1657 -1006
- package/shared/localization/locales/sr-Latn.json +1658 -1007
- package/shared/localization/locales/sr.json +1658 -1007
- package/shared/localization/locales/sv.json +1664 -1013
- package/shared/localization/locales/ta.json +1658 -1007
- package/shared/localization/locales/te.json +1688 -1037
- package/shared/localization/locales/th.json +1666 -1015
- package/shared/localization/locales/tr.json +1658 -1007
- package/shared/localization/locales/uk.json +1657 -1006
- package/shared/localization/locales/vi.json +1659 -1008
- package/shared/localization/locales/zh-HK.json +1658 -1007
- package/shared/localization/locales/zh-TW.json +1661 -1010
- package/shared/localization/locales/zh.json +1658 -1007
- package/shared/localization/locales.d.ts +7 -0
- package/shared/localization/locales.js +54 -51
- package/shared/localization/swap-flow-locale.d.ts +6 -0
- package/shared/localization/swap-flow-locale.js +6 -3
- package/shared/localization/swap-locale.d.ts +39 -0
- package/shared/localization/swap-locale.js +7 -8
- package/shared/test/localization/format-test.js +73 -56
- package/shared/test/localization/locales-test.js +2 -4
- package/shared/test/localization/swap-locale-test.js +10 -11
- package/shared/test/util-test.js +214 -0
- package/shared/tsconfig.json +1 -2
- package/shared/type-verifiers.d.ts +23 -0
- package/shared/type-verifiers.js +1 -2
- package/shared/types/shared.d.ts +2 -2
- package/shared/util.d.ts +122 -0
- package/shared/util.js +332 -0
- package/third-party/axe/valid-langs.d.ts +9 -0
- package/third-party/axe/valid-langs.js +1 -1
- package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +5 -7
- package/third-party/chromium-synchronization/installability-errors-test.js +4 -8
- package/third-party/download-content-shell/README.md +1 -0
- package/third-party/download-content-shell/download-content-shell.js +12 -6
- package/third-party/download-content-shell/utils.js +8 -8
- package/tsconfig-base.json +6 -1
- package/tsconfig.json +84 -90
- package/types/artifacts.d.ts +135 -78
- package/types/audit.d.ts +9 -8
- package/types/config.d.ts +26 -38
- package/types/externs.d.ts +9 -101
- package/types/gatherer.d.ts +35 -27
- package/types/internal/cssstyle.d.ts +23 -0
- package/types/{enquirer.d.ts → internal/enquirer.d.ts} +0 -0
- package/types/{es-main.d.ts → internal/es-main.d.ts} +0 -0
- package/types/internal/global.d.ts +15 -0
- package/types/{http-link-header/index.d.ts → internal/http-link-header.d.ts} +0 -0
- package/types/{jsonlint-mod.d.ts → internal/jsonlint-mod.d.ts} +0 -0
- package/types/internal/lighthouse-logger.d.ts +34 -0
- package/types/internal/lookup-closest-locale.d.ts +13 -0
- package/types/{metaviewport-parser/index.d.ts → internal/metaviewport-parser.d.ts} +0 -0
- package/types/{node-fetch.d.ts → internal/node-fetch.d.ts} +0 -0
- package/types/internal/node.d.ts +44 -0
- package/types/{parse-cache-control/index.d.ts → internal/parse-cache-control.d.ts} +0 -0
- package/types/{pretty-json-stringify/index.d.ts → internal/pretty-json-stringify.d.ts} +0 -0
- package/types/internal/query-selector.d.ts +36 -0
- package/types/{rollup-plugin-postprocess.d.ts → internal/rollup-plugin-postprocess.d.ts} +0 -0
- package/types/internal/smokehouse.d.ts +83 -0
- package/types/internal/test.d.ts +53 -0
- package/types/lh.d.ts +81 -0
- package/types/lh.js +13 -0
- package/types/lhr/audit-details.d.ts +6 -53
- package/types/lhr/audit-result.d.ts +2 -2
- package/types/lhr/flow-result.d.ts +28 -0
- package/types/lhr/lhr.d.ts +53 -6
- package/types/lhr/settings.d.ts +18 -1
- package/types/lhr/treemap.d.ts +5 -4
- package/types/lhr/tsconfig.json +0 -2
- package/types/protocol.d.ts +32 -18
- package/types/puppeteer.d.ts +27 -0
- package/types/user-flow.d.ts +27 -6
- package/types/utility-types.d.ts +72 -0
- package/vercel.json +6 -0
- package/eslint-local-rules.js +0 -106
- package/flow-report/.eslintrc.cjs +0 -51
- package/flow-report/jest.config.js +0 -24
- package/flow-report/package.json +0 -4
- package/flow-report/test/setup/global-setup.ts +0 -11
- package/jest.config.js +0 -30
- package/lighthouse-cli/.eslintrc.cjs +0 -29
- package/lighthouse-cli/bin.js +0 -152
- package/lighthouse-cli/cli-flags.js +0 -530
- package/lighthouse-cli/commands/commands.js +0 -10
- package/lighthouse-cli/commands/list-audits.js +0 -16
- package/lighthouse-cli/commands/list-locales.js +0 -16
- package/lighthouse-cli/commands/list-trace-categories.js +0 -16
- package/lighthouse-cli/index.js +0 -14
- package/lighthouse-cli/package.json +0 -4
- package/lighthouse-cli/printer.js +0 -100
- package/lighthouse-cli/run.js +0 -286
- package/lighthouse-cli/sentry-prompt.js +0 -79
- package/lighthouse-cli/test/smokehouse/core-tests.js +0 -129
- package/lighthouse-cli/test/smokehouse/frontends/back-compat-util.js +0 -42
- package/lighthouse-cli/test/smokehouse/frontends/lib.js +0 -49
- package/lighthouse-cli/test/smokehouse/frontends/node.js +0 -13
- package/lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js +0 -262
- package/lighthouse-cli/test/smokehouse/lib/child-process-error.js +0 -26
- package/lighthouse-cli/test/smokehouse/lib/concurrent-mapper.js +0 -126
- package/lighthouse-cli/test/smokehouse/lib/local-console.js +0 -51
- package/lighthouse-cli/test/smokehouse/lighthouse-runners/bundle.js +0 -68
- package/lighthouse-cli/test/smokehouse/lighthouse-runners/cli.js +0 -151
- package/lighthouse-cli/test/smokehouse/lighthouse-runners/devtools.js +0 -106
- package/lighthouse-cli/test/smokehouse/readme.md +0 -204
- package/lighthouse-cli/test/smokehouse/report-assert.js +0 -493
- package/lighthouse-cli/test/smokehouse/smokehouse.js +0 -284
- package/lighthouse-cli/test/smokehouse/version-check-test.js +0 -46
- package/lighthouse-cli/test/smokehouse/version-check.js +0 -49
- package/lighthouse-core/audits/accessibility/accesskeys.js +0 -45
- package/lighthouse-core/audits/accessibility/aria-allowed-attr.js +0 -45
- package/lighthouse-core/audits/accessibility/aria-command-name.js +0 -43
- package/lighthouse-core/audits/accessibility/aria-hidden-body.js +0 -43
- package/lighthouse-core/audits/accessibility/aria-hidden-focus.js +0 -43
- package/lighthouse-core/audits/accessibility/aria-input-field-name.js +0 -43
- package/lighthouse-core/audits/accessibility/aria-meter-name.js +0 -43
- package/lighthouse-core/audits/accessibility/aria-progressbar-name.js +0 -43
- package/lighthouse-core/audits/accessibility/aria-required-attr.js +0 -44
- package/lighthouse-core/audits/accessibility/aria-required-children.js +0 -48
- package/lighthouse-core/audits/accessibility/aria-required-parent.js +0 -46
- package/lighthouse-core/audits/accessibility/aria-roles.js +0 -45
- package/lighthouse-core/audits/accessibility/aria-toggle-field-name.js +0 -43
- package/lighthouse-core/audits/accessibility/aria-tooltip-name.js +0 -43
- package/lighthouse-core/audits/accessibility/aria-treeitem-name.js +0 -43
- package/lighthouse-core/audits/accessibility/aria-valid-attr-value.js +0 -45
- package/lighthouse-core/audits/accessibility/aria-valid-attr.js +0 -45
- package/lighthouse-core/audits/accessibility/axe-audit.js +0 -114
- package/lighthouse-core/audits/accessibility/button-name.js +0 -45
- package/lighthouse-core/audits/accessibility/bypass.js +0 -46
- package/lighthouse-core/audits/accessibility/color-contrast.js +0 -46
- package/lighthouse-core/audits/accessibility/definition-list.js +0 -47
- package/lighthouse-core/audits/accessibility/dlitem.js +0 -45
- package/lighthouse-core/audits/accessibility/document-title.js +0 -45
- package/lighthouse-core/audits/accessibility/duplicate-id-active.js +0 -43
- package/lighthouse-core/audits/accessibility/duplicate-id-aria.js +0 -43
- package/lighthouse-core/audits/accessibility/form-field-multiple-labels.js +0 -44
- package/lighthouse-core/audits/accessibility/frame-title.js +0 -44
- package/lighthouse-core/audits/accessibility/heading-order.js +0 -43
- package/lighthouse-core/audits/accessibility/html-has-lang.js +0 -47
- package/lighthouse-core/audits/accessibility/html-lang-valid.js +0 -46
- package/lighthouse-core/audits/accessibility/image-alt.js +0 -45
- package/lighthouse-core/audits/accessibility/input-image-alt.js +0 -45
- package/lighthouse-core/audits/accessibility/label.js +0 -45
- package/lighthouse-core/audits/accessibility/link-name.js +0 -46
- package/lighthouse-core/audits/accessibility/list.js +0 -47
- package/lighthouse-core/audits/accessibility/listitem.js +0 -46
- package/lighthouse-core/audits/accessibility/manual/custom-controls-labels.js +0 -28
- package/lighthouse-core/audits/accessibility/manual/custom-controls-roles.js +0 -28
- package/lighthouse-core/audits/accessibility/manual/focus-traps.js +0 -28
- package/lighthouse-core/audits/accessibility/manual/focusable-controls.js +0 -28
- package/lighthouse-core/audits/accessibility/manual/interactive-element-affordance.js +0 -28
- package/lighthouse-core/audits/accessibility/manual/logical-tab-order.js +0 -28
- package/lighthouse-core/audits/accessibility/manual/managed-focus.js +0 -28
- package/lighthouse-core/audits/accessibility/manual/offscreen-content-hidden.js +0 -29
- package/lighthouse-core/audits/accessibility/manual/use-landmarks.js +0 -28
- package/lighthouse-core/audits/accessibility/manual/visual-order-follows-dom.js +0 -28
- package/lighthouse-core/audits/accessibility/meta-refresh.js +0 -46
- package/lighthouse-core/audits/accessibility/meta-viewport.js +0 -47
- package/lighthouse-core/audits/accessibility/object-alt.js +0 -45
- package/lighthouse-core/audits/accessibility/tabindex.js +0 -45
- package/lighthouse-core/audits/accessibility/td-headers-attr.js +0 -49
- package/lighthouse-core/audits/accessibility/th-has-data-cells.js +0 -48
- package/lighthouse-core/audits/accessibility/valid-lang.js +0 -45
- package/lighthouse-core/audits/accessibility/video-caption.js +0 -46
- package/lighthouse-core/audits/apple-touch-icon.js +0 -72
- package/lighthouse-core/audits/audit.js +0 -391
- package/lighthouse-core/audits/autocomplete.js +0 -290
- package/lighthouse-core/audits/bootup-time.js +0 -152
- package/lighthouse-core/audits/byte-efficiency/byte-efficiency-audit.js +0 -258
- package/lighthouse-core/audits/byte-efficiency/duplicated-javascript.js +0 -249
- package/lighthouse-core/audits/byte-efficiency/efficient-animated-content.js +0 -92
- package/lighthouse-core/audits/byte-efficiency/legacy-javascript.js +0 -472
- package/lighthouse-core/audits/byte-efficiency/modern-image-formats.js +0 -186
- package/lighthouse-core/audits/byte-efficiency/offscreen-images.js +0 -252
- package/lighthouse-core/audits/byte-efficiency/render-blocking-resources.js +0 -309
- package/lighthouse-core/audits/byte-efficiency/total-byte-weight.js +0 -111
- package/lighthouse-core/audits/byte-efficiency/unminified-css.js +0 -117
- package/lighthouse-core/audits/byte-efficiency/unminified-javascript.js +0 -120
- package/lighthouse-core/audits/byte-efficiency/unused-css-rules.js +0 -71
- package/lighthouse-core/audits/byte-efficiency/unused-javascript.js +0 -161
- package/lighthouse-core/audits/byte-efficiency/uses-long-cache-ttl.js +0 -298
- package/lighthouse-core/audits/byte-efficiency/uses-optimized-images.js +0 -145
- package/lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js +0 -100
- package/lighthouse-core/audits/byte-efficiency/uses-responsive-images.js +0 -177
- package/lighthouse-core/audits/byte-efficiency/uses-text-compression.js +0 -100
- package/lighthouse-core/audits/content-width.js +0 -77
- package/lighthouse-core/audits/critical-request-chains.js +0 -220
- package/lighthouse-core/audits/csp-xss.js +0 -186
- package/lighthouse-core/audits/deprecations.js +0 -684
- package/lighthouse-core/audits/diagnostics.js +0 -79
- package/lighthouse-core/audits/dobetterweb/charset.js +0 -96
- package/lighthouse-core/audits/dobetterweb/doctype.js +0 -94
- package/lighthouse-core/audits/dobetterweb/dom-size.js +0 -123
- package/lighthouse-core/audits/dobetterweb/geolocation-on-start.js +0 -70
- package/lighthouse-core/audits/dobetterweb/inspector-issues.js +0 -192
- package/lighthouse-core/audits/dobetterweb/js-libraries.js +0 -88
- package/lighthouse-core/audits/dobetterweb/no-document-write.js +0 -85
- package/lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js +0 -225
- package/lighthouse-core/audits/dobetterweb/notification-on-start.js +0 -69
- package/lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js +0 -66
- package/lighthouse-core/audits/dobetterweb/uses-http2.js +0 -258
- package/lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js +0 -68
- package/lighthouse-core/audits/errors-in-console.js +0 -118
- package/lighthouse-core/audits/final-screenshot.js +0 -59
- package/lighthouse-core/audits/font-display.js +0 -193
- package/lighthouse-core/audits/full-page-screenshot.js +0 -43
- package/lighthouse-core/audits/image-aspect-ratio.js +0 -122
- package/lighthouse-core/audits/image-size-responsive.js +0 -331
- package/lighthouse-core/audits/installable-manifest.js +0 -266
- package/lighthouse-core/audits/is-on-https.js +0 -125
- package/lighthouse-core/audits/largest-contentful-paint-element.js +0 -70
- package/lighthouse-core/audits/layout-shift-elements.js +0 -75
- package/lighthouse-core/audits/lcp-lazy-loaded.js +0 -85
- package/lighthouse-core/audits/long-tasks.js +0 -124
- package/lighthouse-core/audits/main-thread-tasks.js +0 -59
- package/lighthouse-core/audits/mainthread-work-breakdown.js +0 -134
- package/lighthouse-core/audits/manual/manual-audit.js +0 -37
- package/lighthouse-core/audits/manual/pwa-cross-browser.js +0 -41
- package/lighthouse-core/audits/manual/pwa-each-page-has-url.js +0 -39
- package/lighthouse-core/audits/manual/pwa-page-transitions.js +0 -39
- package/lighthouse-core/audits/maskable-icon.js +0 -71
- package/lighthouse-core/audits/metrics/cumulative-layout-shift.js +0 -79
- package/lighthouse-core/audits/metrics/experimental-interaction-to-next-paint.js +0 -88
- package/lighthouse-core/audits/metrics/first-contentful-paint-3g.js +0 -67
- package/lighthouse-core/audits/metrics/first-contentful-paint.js +0 -85
- package/lighthouse-core/audits/metrics/first-meaningful-paint.js +0 -89
- package/lighthouse-core/audits/metrics/interactive.js +0 -93
- package/lighthouse-core/audits/metrics/largest-contentful-paint.js +0 -114
- package/lighthouse-core/audits/metrics/max-potential-fid.js +0 -76
- package/lighthouse-core/audits/metrics/speed-index.js +0 -88
- package/lighthouse-core/audits/metrics/total-blocking-time.js +0 -117
- package/lighthouse-core/audits/metrics.js +0 -73
- package/lighthouse-core/audits/multi-check-audit.js +0 -83
- package/lighthouse-core/audits/network-requests.js +0 -129
- package/lighthouse-core/audits/network-rtt.js +0 -90
- package/lighthouse-core/audits/network-server-latency.js +0 -89
- package/lighthouse-core/audits/no-unload-listeners.js +0 -95
- package/lighthouse-core/audits/non-composited-animations.js +0 -206
- package/lighthouse-core/audits/oopif-iframe-test-audit.js +0 -30
- package/lighthouse-core/audits/performance-budget.js +0 -154
- package/lighthouse-core/audits/predictive-perf.js +0 -101
- package/lighthouse-core/audits/preload-fonts.js +0 -107
- package/lighthouse-core/audits/preload-lcp-image.js +0 -272
- package/lighthouse-core/audits/redirects.js +0 -163
- package/lighthouse-core/audits/resource-summary.js +0 -104
- package/lighthouse-core/audits/screenshot-thumbnails.js +0 -163
- package/lighthouse-core/audits/script-treemap-data.js +0 -288
- package/lighthouse-core/audits/seo/canonical.js +0 -218
- package/lighthouse-core/audits/seo/crawlable-anchors.js +0 -94
- package/lighthouse-core/audits/seo/font-size.js +0 -344
- package/lighthouse-core/audits/seo/hreflang.js +0 -149
- package/lighthouse-core/audits/seo/http-status-code.js +0 -70
- package/lighthouse-core/audits/seo/is-crawlable.js +0 -155
- package/lighthouse-core/audits/seo/link-text.js +0 -158
- package/lighthouse-core/audits/seo/manual/structured-data.js +0 -38
- package/lighthouse-core/audits/seo/meta-description.js +0 -67
- package/lighthouse-core/audits/seo/plugins.js +0 -152
- package/lighthouse-core/audits/seo/robots-txt.js +0 -256
- package/lighthouse-core/audits/seo/tap-targets.js +0 -352
- package/lighthouse-core/audits/server-response-time.js +0 -106
- package/lighthouse-core/audits/service-worker.js +0 -179
- package/lighthouse-core/audits/splash-screen.js +0 -99
- package/lighthouse-core/audits/themed-omnibox.js +0 -110
- package/lighthouse-core/audits/third-party-facades.js +0 -221
- package/lighthouse-core/audits/third-party-summary.js +0 -259
- package/lighthouse-core/audits/timing-budget.js +0 -174
- package/lighthouse-core/audits/unsized-images.js +0 -163
- package/lighthouse-core/audits/user-timings.js +0 -120
- package/lighthouse-core/audits/uses-rel-preconnect.js +0 -254
- package/lighthouse-core/audits/uses-rel-preload.js +0 -267
- package/lighthouse-core/audits/valid-source-maps.js +0 -157
- package/lighthouse-core/audits/viewport.js +0 -65
- package/lighthouse-core/audits/violation-audit.js +0 -50
- package/lighthouse-core/audits/work-during-interaction.js +0 -280
- package/lighthouse-core/computed/computed-artifact.js +0 -62
- package/lighthouse-core/computed/critical-request-chains.js +0 -146
- package/lighthouse-core/computed/image-records.js +0 -63
- package/lighthouse-core/computed/js-bundles.js +0 -119
- package/lighthouse-core/computed/load-simulator.js +0 -92
- package/lighthouse-core/computed/main-resource.js +0 -34
- package/lighthouse-core/computed/main-thread-tasks.js +0 -25
- package/lighthouse-core/computed/manifest-values.js +0 -135
- package/lighthouse-core/computed/metrics/cumulative-layout-shift.js +0 -129
- package/lighthouse-core/computed/metrics/first-contentful-paint-all-frames.js +0 -37
- package/lighthouse-core/computed/metrics/first-contentful-paint.js +0 -40
- package/lighthouse-core/computed/metrics/first-meaningful-paint.js +0 -44
- package/lighthouse-core/computed/metrics/interactive.js +0 -193
- package/lighthouse-core/computed/metrics/lantern-first-contentful-paint.js +0 -204
- package/lighthouse-core/computed/metrics/lantern-first-meaningful-paint.js +0 -83
- package/lighthouse-core/computed/metrics/lantern-interactive.js +0 -113
- package/lighthouse-core/computed/metrics/lantern-largest-contentful-paint.js +0 -111
- package/lighthouse-core/computed/metrics/lantern-max-potential-fid.js +0 -93
- package/lighthouse-core/computed/metrics/lantern-metric.js +0 -167
- package/lighthouse-core/computed/metrics/lantern-speed-index.js +0 -150
- package/lighthouse-core/computed/metrics/lantern-total-blocking-time.js +0 -126
- package/lighthouse-core/computed/metrics/largest-contentful-paint-all-frames.js +0 -45
- package/lighthouse-core/computed/metrics/largest-contentful-paint.js +0 -52
- package/lighthouse-core/computed/metrics/max-potential-fid.js +0 -45
- package/lighthouse-core/computed/metrics/metric.js +0 -100
- package/lighthouse-core/computed/metrics/navigation-metric.js +0 -46
- package/lighthouse-core/computed/metrics/responsiveness.js +0 -157
- package/lighthouse-core/computed/metrics/speed-index.js +0 -40
- package/lighthouse-core/computed/metrics/tbt-utils.js +0 -57
- package/lighthouse-core/computed/metrics/timing-summary.js +0 -150
- package/lighthouse-core/computed/metrics/total-blocking-time.js +0 -74
- package/lighthouse-core/computed/module-duplication.js +0 -136
- package/lighthouse-core/computed/network-analysis.js +0 -64
- package/lighthouse-core/computed/network-records.js +0 -21
- package/lighthouse-core/computed/page-dependency-graph.js +0 -488
- package/lighthouse-core/computed/processed-navigation.js +0 -21
- package/lighthouse-core/computed/processed-trace.js +0 -21
- package/lighthouse-core/computed/resource-summary.js +0 -114
- package/lighthouse-core/computed/screenshots.js +0 -29
- package/lighthouse-core/computed/speedline.js +0 -54
- package/lighthouse-core/computed/trace-of-tab.js +0 -30
- package/lighthouse-core/computed/unused-css.js +0 -154
- package/lighthouse-core/computed/unused-javascript-summary.js +0 -175
- package/lighthouse-core/computed/user-timings.js +0 -83
- package/lighthouse-core/computed/viewport-meta.js +0 -56
- package/lighthouse-core/config/budget.js +0 -341
- package/lighthouse-core/config/config-helpers.js +0 -590
- package/lighthouse-core/config/config-plugin.js +0 -225
- package/lighthouse-core/config/config.js +0 -544
- package/lighthouse-core/config/constants.js +0 -169
- package/lighthouse-core/config/default-config.js +0 -632
- package/lighthouse-core/config/desktop-config.js +0 -21
- package/lighthouse-core/config/experimental-config.js +0 -30
- package/lighthouse-core/config/full-config.js +0 -14
- package/lighthouse-core/config/lr-desktop-config.js +0 -25
- package/lighthouse-core/config/lr-mobile-config.js +0 -31
- package/lighthouse-core/config/metrics-to-audits.js +0 -61
- package/lighthouse-core/config/perf-config.js +0 -17
- package/lighthouse-core/fraggle-rock/api.js +0 -77
- package/lighthouse-core/fraggle-rock/config/config.js +0 -281
- package/lighthouse-core/fraggle-rock/config/default-config.js +0 -205
- package/lighthouse-core/fraggle-rock/config/filters.js +0 -335
- package/lighthouse-core/fraggle-rock/config/validation.js +0 -313
- package/lighthouse-core/fraggle-rock/gather/base-artifacts.js +0 -99
- package/lighthouse-core/fraggle-rock/gather/base-gatherer.js +0 -107
- package/lighthouse-core/fraggle-rock/gather/driver.js +0 -88
- package/lighthouse-core/fraggle-rock/gather/navigation-runner.js +0 -339
- package/lighthouse-core/fraggle-rock/gather/runner-helpers.js +0 -160
- package/lighthouse-core/fraggle-rock/gather/session.js +0 -182
- package/lighthouse-core/fraggle-rock/gather/snapshot-runner.js +0 -68
- package/lighthouse-core/fraggle-rock/gather/timespan-runner.js +0 -82
- package/lighthouse-core/fraggle-rock/user-flow.js +0 -229
- package/lighthouse-core/gather/connections/connection.js +0 -179
- package/lighthouse-core/gather/connections/cri.js +0 -171
- package/lighthouse-core/gather/connections/raw.js +0 -58
- package/lighthouse-core/gather/devtools-log.js +0 -61
- package/lighthouse-core/gather/driver/dom.js +0 -58
- package/lighthouse-core/gather/driver/environment.js +0 -105
- package/lighthouse-core/gather/driver/execution-context.js +0 -249
- package/lighthouse-core/gather/driver/navigation.js +0 -179
- package/lighthouse-core/gather/driver/network-monitor.js +0 -290
- package/lighthouse-core/gather/driver/network.js +0 -28
- package/lighthouse-core/gather/driver/prepare.js +0 -226
- package/lighthouse-core/gather/driver/service-workers.js +0 -53
- package/lighthouse-core/gather/driver/storage.js +0 -125
- package/lighthouse-core/gather/driver/target-manager.js +0 -125
- package/lighthouse-core/gather/driver/wait-for-condition.js +0 -535
- package/lighthouse-core/gather/driver.js +0 -482
- package/lighthouse-core/gather/fetcher.js +0 -318
- package/lighthouse-core/gather/gather-runner.js +0 -622
- package/lighthouse-core/gather/gatherers/accessibility.js +0 -172
- package/lighthouse-core/gather/gatherers/anchor-elements.js +0 -133
- package/lighthouse-core/gather/gatherers/cache-contents.js +0 -59
- package/lighthouse-core/gather/gatherers/console-messages.js +0 -173
- package/lighthouse-core/gather/gatherers/css-usage.js +0 -149
- package/lighthouse-core/gather/gatherers/devtools-log-compat.js +0 -36
- package/lighthouse-core/gather/gatherers/devtools-log.js +0 -66
- package/lighthouse-core/gather/gatherers/dobetterweb/doctype.js +0 -46
- package/lighthouse-core/gather/gatherers/dobetterweb/domstats.js +0 -103
- package/lighthouse-core/gather/gatherers/dobetterweb/optimized-images.js +0 -192
- package/lighthouse-core/gather/gatherers/dobetterweb/password-inputs-with-prevented-paste.js +0 -50
- package/lighthouse-core/gather/gatherers/dobetterweb/response-compression.js +0 -154
- package/lighthouse-core/gather/gatherers/dobetterweb/tags-blocking-first-paint.js +0 -238
- package/lighthouse-core/gather/gatherers/full-page-screenshot.js +0 -235
- package/lighthouse-core/gather/gatherers/gatherer.js +0 -59
- package/lighthouse-core/gather/gatherers/global-listeners.js +0 -92
- package/lighthouse-core/gather/gatherers/iframe-elements.js +0 -65
- package/lighthouse-core/gather/gatherers/image-elements.js +0 -375
- package/lighthouse-core/gather/gatherers/inputs.js +0 -113
- package/lighthouse-core/gather/gatherers/inspector-issues.js +0 -127
- package/lighthouse-core/gather/gatherers/installability-errors.js +0 -48
- package/lighthouse-core/gather/gatherers/js-usage.js +0 -145
- package/lighthouse-core/gather/gatherers/link-elements.js +0 -184
- package/lighthouse-core/gather/gatherers/main-document-content.js +0 -56
- package/lighthouse-core/gather/gatherers/meta-elements.js +0 -68
- package/lighthouse-core/gather/gatherers/network-user-agent.js +0 -42
- package/lighthouse-core/gather/gatherers/script-elements.js +0 -160
- package/lighthouse-core/gather/gatherers/seo/embedded-content.js +0 -64
- package/lighthouse-core/gather/gatherers/seo/font-size.js +0 -380
- package/lighthouse-core/gather/gatherers/seo/robots-txt.js +0 -56
- package/lighthouse-core/gather/gatherers/seo/tap-targets.js +0 -370
- package/lighthouse-core/gather/gatherers/service-worker.js +0 -45
- package/lighthouse-core/gather/gatherers/source-maps.js +0 -150
- package/lighthouse-core/gather/gatherers/stacks.js +0 -125
- package/lighthouse-core/gather/gatherers/trace-compat.js +0 -36
- package/lighthouse-core/gather/gatherers/trace-elements.js +0 -349
- package/lighthouse-core/gather/gatherers/trace.js +0 -131
- package/lighthouse-core/gather/gatherers/viewport-dimensions.js +0 -58
- package/lighthouse-core/gather/gatherers/web-app-manifest.js +0 -102
- package/lighthouse-core/index.js +0 -80
- package/lighthouse-core/lib/arbitrary-equality-map.js +0 -81
- package/lighthouse-core/lib/asset-saver.js +0 -341
- package/lighthouse-core/lib/axe.js +0 -13
- package/lighthouse-core/lib/cdt/Platform.js +0 -55
- package/lighthouse-core/lib/cdt/SDK.js +0 -28
- package/lighthouse-core/lib/cdt/generated/SourceMap.js +0 -346
- package/lighthouse-core/lib/csp-evaluator.js +0 -173
- package/lighthouse-core/lib/dependency-graph/base-node.js +0 -363
- package/lighthouse-core/lib/dependency-graph/cpu-node.js +0 -86
- package/lighthouse-core/lib/dependency-graph/network-node.js +0 -99
- package/lighthouse-core/lib/dependency-graph/simulator/connection-pool.js +0 -171
- package/lighthouse-core/lib/dependency-graph/simulator/dns-cache.js +0 -73
- package/lighthouse-core/lib/dependency-graph/simulator/network-analyzer.js +0 -498
- package/lighthouse-core/lib/dependency-graph/simulator/simulator-timing-map.js +0 -212
- package/lighthouse-core/lib/dependency-graph/simulator/simulator.js +0 -523
- package/lighthouse-core/lib/dependency-graph/simulator/tcp-connection.js +0 -206
- package/lighthouse-core/lib/emulation.js +0 -164
- package/lighthouse-core/lib/i18n/README.md +0 -273
- package/lighthouse-core/lib/i18n/i18n.js +0 -221
- package/lighthouse-core/lib/icons.js +0 -85
- package/lighthouse-core/lib/lantern-trace-saver.js +0 -198
- package/lighthouse-core/lib/lh-env.js +0 -14
- package/lighthouse-core/lib/lh-error.js +0 -421
- package/lighthouse-core/lib/lh-trace-processor.js +0 -46
- package/lighthouse-core/lib/manifest-parser.js +0 -513
- package/lighthouse-core/lib/median-run.js +0 -92
- package/lighthouse-core/lib/minification-estimator.js +0 -193
- package/lighthouse-core/lib/minify-devtoolslog.js +0 -87
- package/lighthouse-core/lib/minify-trace.js +0 -173
- package/lighthouse-core/lib/navigation-error.js +0 -145
- package/lighthouse-core/lib/network-recorder.js +0 -337
- package/lighthouse-core/lib/network-request.js +0 -540
- package/lighthouse-core/lib/page-functions.js +0 -559
- package/lighthouse-core/lib/proto-preprocessor.js +0 -133
- package/lighthouse-core/lib/rect-helpers.js +0 -252
- package/lighthouse-core/lib/script-helpers.js +0 -24
- package/lighthouse-core/lib/sentry.js +0 -144
- package/lighthouse-core/lib/stack-packs.js +0 -120
- package/lighthouse-core/lib/statistics.js +0 -104
- package/lighthouse-core/lib/tappable-rects.js +0 -99
- package/lighthouse-core/lib/third-party-web.js +0 -53
- package/lighthouse-core/lib/timing-trace-saver.js +0 -97
- package/lighthouse-core/lib/tracehouse/cpu-profile-model.js +0 -592
- package/lighthouse-core/lib/tracehouse/main-thread-tasks.js +0 -688
- package/lighthouse-core/lib/tracehouse/task-groups.js +0 -112
- package/lighthouse-core/lib/tracehouse/task-summary.js +0 -87
- package/lighthouse-core/lib/tracehouse/trace-processor.js +0 -962
- package/lighthouse-core/lib/traces/pwmetrics-events.js +0 -200
- package/lighthouse-core/lib/url-shim.js +0 -274
- package/lighthouse-core/runner.js +0 -518
- package/lighthouse-core/scoring.js +0 -93
- package/lighthouse-core/scripts/download-chrome.sh +0 -36
- package/lighthouse-core/scripts/manual-chrome-launcher.js +0 -51
- package/lighthouse-core/scripts/package.json +0 -4
- package/lighthouse-core/util-commonjs.js +0 -708
- package/now.json +0 -14
- package/report/.eslintrc.cjs +0 -35
- package/report/generator/package.json +0 -4
- package/report/package.json +0 -4
- package/report/renderer/i18n.js +0 -198
- package/report/renderer/util.js +0 -705
- package/report/test/generator/package.json +0 -4
- package/report/test/renderer/i18n-test.js +0 -140
- package/report/test/renderer/util-test.js +0 -479
- package/report/test-assets/faux-psi-template.html +0 -177
- package/report/test-assets/faux-psi.js +0 -153
- package/third-party/snyk/snapshot.json +0 -182
- package/types/cssstyle/index.d.ts +0 -23
- package/types/global-lh.d.ts +0 -81
- package/types/jest.d.ts +0 -25
- package/types/jsonld/index.d.ts +0 -19
- package/types/lhr/flow.d.ts +0 -32
- package/types/lighthouse-logger/index.d.ts +0 -33
- package/types/lookup-closest-locale/index.d.ts +0 -11
- package/types/node.d.ts +0 -12
- package/types/query-selector.d.ts +0 -36
- package/types/smokehouse.d.ts +0 -80
- package/types/structured-data.d.ts +0 -36
|
@@ -1,2071 +1,2620 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"message": "
|
|
4
|
-
},
|
|
5
|
-
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
6
|
-
"message": "类别"
|
|
7
|
-
},
|
|
8
|
-
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
9
|
-
"message": "无障碍"
|
|
10
|
-
},
|
|
11
|
-
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
12
|
-
"message": "最佳做法"
|
|
13
|
-
},
|
|
14
|
-
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
15
|
-
"message": "性能"
|
|
16
|
-
},
|
|
17
|
-
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
18
|
-
"message": "渐进式 Web 应用"
|
|
19
|
-
},
|
|
20
|
-
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
21
|
-
"message": "SEO"
|
|
22
|
-
},
|
|
23
|
-
"flow-report/src/i18n/ui-strings.js | desktop": {
|
|
24
|
-
"message": "桌面版"
|
|
25
|
-
},
|
|
26
|
-
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
27
|
-
"message": "了解 Lighthouse 流程报告"
|
|
28
|
-
},
|
|
29
|
-
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
30
|
-
"message": "了解流程"
|
|
31
|
-
},
|
|
32
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
33
|
-
"message": "使用导航报告可以…"
|
|
34
|
-
},
|
|
35
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
36
|
-
"message": "使用快照报告可以…"
|
|
37
|
-
},
|
|
38
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
39
|
-
"message": "使用时间跨度报告可以…"
|
|
40
|
-
},
|
|
41
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
42
|
-
"message": "获取 Lighthouse 给出的性能得分。"
|
|
43
|
-
},
|
|
44
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
45
|
-
"message": "衡量网页加载性能指标,例如 Largest Contentful Paint 和 Speed Index。"
|
|
46
|
-
},
|
|
47
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
48
|
-
"message": "评估渐进式 Web 应用的功能。"
|
|
49
|
-
},
|
|
50
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
51
|
-
"message": "查找单页应用或复杂表单中的无障碍功能方面的问题。"
|
|
52
|
-
},
|
|
53
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
54
|
-
"message": "评估互动背后隐藏的菜单和界面元素的最佳做法。"
|
|
55
|
-
},
|
|
56
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
57
|
-
"message": "衡量一系列互动的布局偏移和 JavaScript 执行用时。"
|
|
58
|
-
},
|
|
59
|
-
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
|
-
"message": "发掘性能提升机会,以便改进长期网页和单页应用的用户体验。"
|
|
61
|
-
},
|
|
62
|
-
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
-
"message": "影响力最大"
|
|
64
|
-
},
|
|
65
|
-
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
-
"message": "{numInformative,plural, =1{{numInformative} 项参考性评估}other{{numInformative} 项参考性评估}}"
|
|
67
|
-
},
|
|
68
|
-
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
69
|
-
"message": "移动版"
|
|
70
|
-
},
|
|
71
|
-
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
72
|
-
"message": "网页加载"
|
|
73
|
-
},
|
|
74
|
-
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
75
|
-
"message": "导航报告旨在分析单个网页的加载情况,与最初的 Lighthouse 报告完全一样。"
|
|
76
|
-
},
|
|
77
|
-
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
78
|
-
"message": "导航报告"
|
|
79
|
-
},
|
|
80
|
-
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
-
"message": "{numNavigation,plural, =1{{numNavigation} 份导航报告}other{{numNavigation} 份导航报告}}"
|
|
82
|
-
},
|
|
83
|
-
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
-
"message": "{numPassableAudits,plural, =1{{numPassableAudits} 项有望通过的评估}other{{numPassableAudits} 项有望通过的评估}}"
|
|
85
|
-
},
|
|
86
|
-
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
-
"message": "{numPassed,plural, =1{通过了 {numPassed} 项评估}other{通过了 {numPassed} 项评估}}"
|
|
88
|
-
},
|
|
89
|
-
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
90
|
-
"message": "一般"
|
|
91
|
-
},
|
|
92
|
-
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
93
|
-
"message": "出错了"
|
|
94
|
-
},
|
|
95
|
-
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
96
|
-
"message": "较差"
|
|
97
|
-
},
|
|
98
|
-
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
99
|
-
"message": "良好"
|
|
100
|
-
},
|
|
101
|
-
"flow-report/src/i18n/ui-strings.js | save": {
|
|
102
|
-
"message": "保存"
|
|
103
|
-
},
|
|
104
|
-
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
105
|
-
"message": "捕获到的网页状态"
|
|
106
|
-
},
|
|
107
|
-
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
108
|
-
"message": "快照报告旨在分析处于特定状态的网页(通常是在用户互动之后)。"
|
|
109
|
-
},
|
|
110
|
-
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
111
|
-
"message": "快照报告"
|
|
112
|
-
},
|
|
113
|
-
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
-
"message": "{numSnapshot,plural, =1{{numSnapshot} 份快照报告}other{{numSnapshot} 份快照报告}}"
|
|
115
|
-
},
|
|
116
|
-
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
117
|
-
"message": "摘要"
|
|
118
|
-
},
|
|
119
|
-
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
120
|
-
"message": "用户互动"
|
|
121
|
-
},
|
|
122
|
-
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
123
|
-
"message": "时间跨度报告旨在分析任意时间段(通常包含用户互动)。"
|
|
124
|
-
},
|
|
125
|
-
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
126
|
-
"message": "时间跨度报告"
|
|
127
|
-
},
|
|
128
|
-
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
-
"message": "{numTimespan,plural, =1{{numTimespan} 份时间跨度报告}other{{numTimespan} 份时间跨度报告}}"
|
|
130
|
-
},
|
|
131
|
-
"flow-report/src/i18n/ui-strings.js | title": {
|
|
132
|
-
"message": "Lighthouse 用户流报告"
|
|
133
|
-
},
|
|
134
|
-
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
135
|
-
"message": "快捷键可让用户快速转到页面的某个部分。为确保正确进行导航,每个快捷键都必须是独一无二的。[了解详情](https://web.dev/accesskeys/)。"
|
|
2
|
+
"core/audits/accessibility/accesskeys.js | description": {
|
|
3
|
+
"message": "快捷键可让用户快速转到页面的某个部分。为确保正确进行导航,每个快捷键都必须是独一无二的。[详细了解快捷键](https://dequeuniversity.com/rules/axe/4.6/accesskeys)。"
|
|
136
4
|
},
|
|
137
|
-
"
|
|
5
|
+
"core/audits/accessibility/accesskeys.js | failureTitle": {
|
|
138
6
|
"message": "`[accesskey]` 的值重复"
|
|
139
7
|
},
|
|
140
|
-
"
|
|
8
|
+
"core/audits/accessibility/accesskeys.js | title": {
|
|
141
9
|
"message": "“`[accesskey]`”值是独一无二的"
|
|
142
10
|
},
|
|
143
|
-
"
|
|
144
|
-
"message": "每个 ARIA“`role`”都支持一部分特定的“`aria-*`”属性。如果这些项不匹配,会导致“`aria-*`”属性无效。[
|
|
11
|
+
"core/audits/accessibility/aria-allowed-attr.js | description": {
|
|
12
|
+
"message": "每个 ARIA“`role`”都支持一部分特定的“`aria-*`”属性。如果这些项不匹配,会导致“`aria-*`”属性无效。[了解如何将 ARIA 属性与其角色进行匹配](https://dequeuniversity.com/rules/axe/4.6/aria-allowed-attr)。"
|
|
145
13
|
},
|
|
146
|
-
"
|
|
14
|
+
"core/audits/accessibility/aria-allowed-attr.js | failureTitle": {
|
|
147
15
|
"message": "`[aria-*]` 属性与其角色不匹配"
|
|
148
16
|
},
|
|
149
|
-
"
|
|
17
|
+
"core/audits/accessibility/aria-allowed-attr.js | title": {
|
|
150
18
|
"message": "`[aria-*]` 属性与其角色匹配"
|
|
151
19
|
},
|
|
152
|
-
"
|
|
153
|
-
"message": "如果某个元素没有无障碍名称,屏幕阅读器会将它读为通用名称,这会导致依赖屏幕阅读器的用户无法使用它。[
|
|
20
|
+
"core/audits/accessibility/aria-command-name.js | description": {
|
|
21
|
+
"message": "如果某个元素没有无障碍名称,屏幕阅读器会将它读为通用名称,这会导致依赖屏幕阅读器的用户无法使用它。[了解如何让命令元素更便于使用](https://dequeuniversity.com/rules/axe/4.6/aria-command-name)。"
|
|
154
22
|
},
|
|
155
|
-
"
|
|
23
|
+
"core/audits/accessibility/aria-command-name.js | failureTitle": {
|
|
156
24
|
"message": "`button`、`link` 和 `menuitem` 元素缺少可供访问的名称。"
|
|
157
25
|
},
|
|
158
|
-
"
|
|
26
|
+
"core/audits/accessibility/aria-command-name.js | title": {
|
|
159
27
|
"message": "`button`、`link` 和 `menuitem` 元素都有可供访问的名称"
|
|
160
28
|
},
|
|
161
|
-
"
|
|
162
|
-
"message": "在文档 `<body>` 上设置 `aria-hidden=\"true\"` 后,辅助技术(如屏幕阅读器)的工作方式不一致。[
|
|
29
|
+
"core/audits/accessibility/aria-hidden-body.js | description": {
|
|
30
|
+
"message": "在文档 `<body>` 上设置 `aria-hidden=\"true\"` 后,辅助技术(如屏幕阅读器)的工作方式不一致。[了解 `aria-hidden` 对文档正文的影响](https://dequeuniversity.com/rules/axe/4.6/aria-hidden-body)。"
|
|
163
31
|
},
|
|
164
|
-
"
|
|
32
|
+
"core/audits/accessibility/aria-hidden-body.js | failureTitle": {
|
|
165
33
|
"message": "文档 `<body>` 中有 `[aria-hidden=\"true\"]`"
|
|
166
34
|
},
|
|
167
|
-
"
|
|
35
|
+
"core/audits/accessibility/aria-hidden-body.js | title": {
|
|
168
36
|
"message": "文档 `<body>` 中没有 `[aria-hidden=\"true\"]`"
|
|
169
37
|
},
|
|
170
|
-
"
|
|
171
|
-
"message": "有一个 `[aria-hidden=\"true\"]` 元素包含可聚焦的下级元素,导致这些交互式元素都无法被辅助技术(如屏幕阅读器)用户使用。[
|
|
38
|
+
"core/audits/accessibility/aria-hidden-focus.js | description": {
|
|
39
|
+
"message": "有一个 `[aria-hidden=\"true\"]` 元素包含可聚焦的下级元素,导致这些交互式元素都无法被辅助技术(如屏幕阅读器)用户使用。[了解 `aria-hidden` 如何影响可聚焦的元素](https://dequeuniversity.com/rules/axe/4.6/aria-hidden-focus)。"
|
|
172
40
|
},
|
|
173
|
-
"
|
|
41
|
+
"core/audits/accessibility/aria-hidden-focus.js | failureTitle": {
|
|
174
42
|
"message": "`[aria-hidden=\"true\"]` 元素包含可聚焦的下级元素"
|
|
175
43
|
},
|
|
176
|
-
"
|
|
44
|
+
"core/audits/accessibility/aria-hidden-focus.js | title": {
|
|
177
45
|
"message": "`[aria-hidden=\"true\"]` 元素都不含可聚焦的下级元素"
|
|
178
46
|
},
|
|
179
|
-
"
|
|
180
|
-
"message": "
|
|
47
|
+
"core/audits/accessibility/aria-input-field-name.js | description": {
|
|
48
|
+
"message": "如果某个输入字段没有无障碍名称,屏幕阅读器会将它读为通用名称,这会导致依赖屏幕阅读器的用户无法使用它。[详细了解输入字段标签](https://dequeuniversity.com/rules/axe/4.6/aria-input-field-name)。"
|
|
181
49
|
},
|
|
182
|
-
"
|
|
50
|
+
"core/audits/accessibility/aria-input-field-name.js | failureTitle": {
|
|
183
51
|
"message": "ARIA 输入字段缺少可供访问的名称"
|
|
184
52
|
},
|
|
185
|
-
"
|
|
53
|
+
"core/audits/accessibility/aria-input-field-name.js | title": {
|
|
186
54
|
"message": "ARIA 输入字段都有可供访问的名称"
|
|
187
55
|
},
|
|
188
|
-
"
|
|
189
|
-
"message": "
|
|
56
|
+
"core/audits/accessibility/aria-meter-name.js | description": {
|
|
57
|
+
"message": "如果某个 meter 元素没有无障碍名称,屏幕阅读器会将它读为通用名称,这会导致依赖屏幕阅读器的用户无法使用它。[了解如何为 `meter` 元素命名](https://dequeuniversity.com/rules/axe/4.6/aria-meter-name)。"
|
|
190
58
|
},
|
|
191
|
-
"
|
|
59
|
+
"core/audits/accessibility/aria-meter-name.js | failureTitle": {
|
|
192
60
|
"message": "ARIA `meter` 元素缺少可供访问的名称。"
|
|
193
61
|
},
|
|
194
|
-
"
|
|
62
|
+
"core/audits/accessibility/aria-meter-name.js | title": {
|
|
195
63
|
"message": "ARIA `meter` 元素都有可供访问的名称"
|
|
196
64
|
},
|
|
197
|
-
"
|
|
198
|
-
"message": "如果某个 `progressbar` 元素没有无障碍名称,屏幕阅读器会将它读为通用名称,这会导致依赖屏幕阅读器的用户无法使用它。[
|
|
65
|
+
"core/audits/accessibility/aria-progressbar-name.js | description": {
|
|
66
|
+
"message": "如果某个 `progressbar` 元素没有无障碍名称,屏幕阅读器会将它读为通用名称,这会导致依赖屏幕阅读器的用户无法使用它。[了解如何为 `progressbar` 元素添加标签](https://dequeuniversity.com/rules/axe/4.6/aria-progressbar-name)。"
|
|
199
67
|
},
|
|
200
|
-
"
|
|
68
|
+
"core/audits/accessibility/aria-progressbar-name.js | failureTitle": {
|
|
201
69
|
"message": "ARIA `progressbar` 元素缺少可供访问的名称。"
|
|
202
70
|
},
|
|
203
|
-
"
|
|
71
|
+
"core/audits/accessibility/aria-progressbar-name.js | title": {
|
|
204
72
|
"message": "ARIA `progressbar` 元素都有可供访问的名称"
|
|
205
73
|
},
|
|
206
|
-
"
|
|
207
|
-
"message": "一些 ARIA 角色有必需属性,这些属性向屏幕阅读器描述了相应元素的状态。[
|
|
74
|
+
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
75
|
+
"message": "一些 ARIA 角色有必需属性,这些属性向屏幕阅读器描述了相应元素的状态。[详细了解角色和必需属性](https://dequeuniversity.com/rules/axe/4.6/aria-required-attr)。"
|
|
208
76
|
},
|
|
209
|
-
"
|
|
77
|
+
"core/audits/accessibility/aria-required-attr.js | failureTitle": {
|
|
210
78
|
"message": "`[role]` 缺少部分必需的 `[aria-*]` 属性"
|
|
211
79
|
},
|
|
212
|
-
"
|
|
80
|
+
"core/audits/accessibility/aria-required-attr.js | title": {
|
|
213
81
|
"message": "`[role]` 具备所有必需的 `[aria-*]` 属性"
|
|
214
82
|
},
|
|
215
|
-
"
|
|
216
|
-
"message": "一些 ARIA 父角色必须包含特定子角色,才能执行它们的预期无障碍功能。[
|
|
83
|
+
"core/audits/accessibility/aria-required-children.js | description": {
|
|
84
|
+
"message": "一些 ARIA 父角色必须包含特定子角色,才能执行它们的预期无障碍功能。[详细了解角色和必需的子元素](https://dequeuniversity.com/rules/axe/4.6/aria-required-children)。"
|
|
217
85
|
},
|
|
218
|
-
"
|
|
86
|
+
"core/audits/accessibility/aria-required-children.js | failureTitle": {
|
|
219
87
|
"message": "具有 ARIA `[role]`且要求子元素必须包含特定`[role]`的元素缺少部分或全部必需子元素。"
|
|
220
88
|
},
|
|
221
|
-
"
|
|
89
|
+
"core/audits/accessibility/aria-required-children.js | title": {
|
|
222
90
|
"message": "具有 ARIA `[role]`且要求子元素必须包含特定`[role]`的元素包含全部必需子元素。"
|
|
223
91
|
},
|
|
224
|
-
"
|
|
225
|
-
"message": "一些 ARIA 子角色必须包含在特定的父角色中,才能正确执行它们的预期无障碍功能。[
|
|
92
|
+
"core/audits/accessibility/aria-required-parent.js | description": {
|
|
93
|
+
"message": "一些 ARIA 子角色必须包含在特定的父角色中,才能正确执行它们的预期无障碍功能。[详细了解 ARIA 角色和必需的父元素](https://dequeuniversity.com/rules/axe/4.6/aria-required-parent)。"
|
|
226
94
|
},
|
|
227
|
-
"
|
|
95
|
+
"core/audits/accessibility/aria-required-parent.js | failureTitle": {
|
|
228
96
|
"message": "`[role]` 未包含在其必需的父元素中"
|
|
229
97
|
},
|
|
230
|
-
"
|
|
98
|
+
"core/audits/accessibility/aria-required-parent.js | title": {
|
|
231
99
|
"message": "`[role]` 包含在其必需的父元素中"
|
|
232
100
|
},
|
|
233
|
-
"
|
|
234
|
-
"message": "ARIA 角色必须具备有效值,才能执行它们的预期无障碍功能。[
|
|
101
|
+
"core/audits/accessibility/aria-roles.js | description": {
|
|
102
|
+
"message": "ARIA 角色必须具备有效值,才能执行它们的预期无障碍功能。[详细了解有效的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.6/aria-roles)。"
|
|
235
103
|
},
|
|
236
|
-
"
|
|
104
|
+
"core/audits/accessibility/aria-roles.js | failureTitle": {
|
|
237
105
|
"message": "`[role]` 值无效"
|
|
238
106
|
},
|
|
239
|
-
"
|
|
107
|
+
"core/audits/accessibility/aria-roles.js | title": {
|
|
240
108
|
"message": "`[role]` 值有效"
|
|
241
109
|
},
|
|
242
|
-
"
|
|
243
|
-
"message": "
|
|
110
|
+
"core/audits/accessibility/aria-toggle-field-name.js | description": {
|
|
111
|
+
"message": "如果某个切换字段没有无障碍名称,屏幕阅读器会将它读为通用名称,这会导致依赖屏幕阅读器的用户无法使用它。[详细了解切换字段](https://dequeuniversity.com/rules/axe/4.6/aria-toggle-field-name)。"
|
|
244
112
|
},
|
|
245
|
-
"
|
|
113
|
+
"core/audits/accessibility/aria-toggle-field-name.js | failureTitle": {
|
|
246
114
|
"message": "ARIA 切换字段缺少可供访问的名称"
|
|
247
115
|
},
|
|
248
|
-
"
|
|
116
|
+
"core/audits/accessibility/aria-toggle-field-name.js | title": {
|
|
249
117
|
"message": "ARIA 切换字段都有可供访问的名称"
|
|
250
118
|
},
|
|
251
|
-
"
|
|
252
|
-
"message": "
|
|
119
|
+
"core/audits/accessibility/aria-tooltip-name.js | description": {
|
|
120
|
+
"message": "如果某个 tooltip 元素没有无障碍名称,屏幕阅读器会将它读为通用名称,这会导致依赖屏幕阅读器的用户无法使用它。[了解如何为 `tooltip` 元素命名](https://dequeuniversity.com/rules/axe/4.6/aria-tooltip-name)。"
|
|
253
121
|
},
|
|
254
|
-
"
|
|
122
|
+
"core/audits/accessibility/aria-tooltip-name.js | failureTitle": {
|
|
255
123
|
"message": "ARIA `tooltip` 元素缺少可供访问的名称。"
|
|
256
124
|
},
|
|
257
|
-
"
|
|
125
|
+
"core/audits/accessibility/aria-tooltip-name.js | title": {
|
|
258
126
|
"message": "ARIA `tooltip` 元素都有可供访问的名称"
|
|
259
127
|
},
|
|
260
|
-
"
|
|
261
|
-
"message": "
|
|
128
|
+
"core/audits/accessibility/aria-treeitem-name.js | description": {
|
|
129
|
+
"message": "如果某个 `treeitem` 元素没有无障碍名称,屏幕阅读器会将它读为通用名称,这会导致依赖屏幕阅读器的用户无法使用它。[详细了解如何为 `treeitem` 元素添加标签](https://dequeuniversity.com/rules/axe/4.6/aria-treeitem-name)。"
|
|
262
130
|
},
|
|
263
|
-
"
|
|
131
|
+
"core/audits/accessibility/aria-treeitem-name.js | failureTitle": {
|
|
264
132
|
"message": "ARIA `treeitem` 元素缺少可供访问的名称。"
|
|
265
133
|
},
|
|
266
|
-
"
|
|
134
|
+
"core/audits/accessibility/aria-treeitem-name.js | title": {
|
|
267
135
|
"message": "ARIA `treeitem` 元素都有可供访问的名称"
|
|
268
136
|
},
|
|
269
|
-
"
|
|
270
|
-
"message": "辅助技术(如屏幕阅读器)无法解读值无效的 ARIA 属性。[
|
|
137
|
+
"core/audits/accessibility/aria-valid-attr-value.js | description": {
|
|
138
|
+
"message": "辅助技术(如屏幕阅读器)无法解读值无效的 ARIA 属性。[详细了解 ARIA 属性的有效值](https://dequeuniversity.com/rules/axe/4.6/aria-valid-attr-value)。"
|
|
271
139
|
},
|
|
272
|
-
"
|
|
140
|
+
"core/audits/accessibility/aria-valid-attr-value.js | failureTitle": {
|
|
273
141
|
"message": "`[aria-*]` 属性缺少有效值"
|
|
274
142
|
},
|
|
275
|
-
"
|
|
143
|
+
"core/audits/accessibility/aria-valid-attr-value.js | title": {
|
|
276
144
|
"message": "`[aria-*]` 属性具备有效值"
|
|
277
145
|
},
|
|
278
|
-
"
|
|
279
|
-
"message": "辅助技术(如屏幕阅读器)无法解读名称无效的 ARIA 属性。[
|
|
146
|
+
"core/audits/accessibility/aria-valid-attr.js | description": {
|
|
147
|
+
"message": "辅助技术(如屏幕阅读器)无法解读名称无效的 ARIA 属性。[详细了解有效的 ARIA 属性](https://dequeuniversity.com/rules/axe/4.6/aria-valid-attr)。"
|
|
280
148
|
},
|
|
281
|
-
"
|
|
149
|
+
"core/audits/accessibility/aria-valid-attr.js | failureTitle": {
|
|
282
150
|
"message": "`[aria-*]` 属性无效或拼写有误"
|
|
283
151
|
},
|
|
284
|
-
"
|
|
152
|
+
"core/audits/accessibility/aria-valid-attr.js | title": {
|
|
285
153
|
"message": "`[aria-*]` 属性有效且拼写正确"
|
|
286
154
|
},
|
|
287
|
-
"
|
|
155
|
+
"core/audits/accessibility/axe-audit.js | failingElementsHeader": {
|
|
288
156
|
"message": "未通过审核的元素"
|
|
289
157
|
},
|
|
290
|
-
"
|
|
291
|
-
"message": "
|
|
158
|
+
"core/audits/accessibility/button-name.js | description": {
|
|
159
|
+
"message": "当某个按钮没有无障碍名称时,屏幕阅读器会将它读为“按钮”,这会导致依赖屏幕阅读器的用户无法使用它。[了解如何让按钮更便于使用](https://dequeuniversity.com/rules/axe/4.6/button-name)。"
|
|
292
160
|
},
|
|
293
|
-
"
|
|
161
|
+
"core/audits/accessibility/button-name.js | failureTitle": {
|
|
294
162
|
"message": "按钮缺少可供访问的名称"
|
|
295
163
|
},
|
|
296
|
-
"
|
|
164
|
+
"core/audits/accessibility/button-name.js | title": {
|
|
297
165
|
"message": "按钮有可供访问的名称"
|
|
298
166
|
},
|
|
299
|
-
"
|
|
300
|
-
"message": "添加用于绕过重复内容的方式有助于键盘用户更高效地浏览页面。[
|
|
167
|
+
"core/audits/accessibility/bypass.js | description": {
|
|
168
|
+
"message": "添加用于绕过重复内容的方式有助于键盘用户更高效地浏览页面。[详细了解如何绕过内容块](https://dequeuniversity.com/rules/axe/4.6/bypass)。"
|
|
301
169
|
},
|
|
302
|
-
"
|
|
170
|
+
"core/audits/accessibility/bypass.js | failureTitle": {
|
|
303
171
|
"message": "该页面不含任何标题、跳过链接或地标区域"
|
|
304
172
|
},
|
|
305
|
-
"
|
|
173
|
+
"core/audits/accessibility/bypass.js | title": {
|
|
306
174
|
"message": "该页面包含一个标题、跳过链接或地标区域"
|
|
307
175
|
},
|
|
308
|
-
"
|
|
309
|
-
"message": "对于许多用户而言,对比度低的文字都是难以阅读或无法阅读的。[
|
|
176
|
+
"core/audits/accessibility/color-contrast.js | description": {
|
|
177
|
+
"message": "对于许多用户而言,对比度低的文字都是难以阅读或无法阅读的。[了解如何提供足够高的色彩对比度](https://dequeuniversity.com/rules/axe/4.6/color-contrast)。"
|
|
310
178
|
},
|
|
311
|
-
"
|
|
179
|
+
"core/audits/accessibility/color-contrast.js | failureTitle": {
|
|
312
180
|
"message": "背景色和前景色没有足够高的对比度。"
|
|
313
181
|
},
|
|
314
|
-
"
|
|
182
|
+
"core/audits/accessibility/color-contrast.js | title": {
|
|
315
183
|
"message": "背景色和前景色具有足够高的对比度"
|
|
316
184
|
},
|
|
317
|
-
"
|
|
318
|
-
"message": "
|
|
185
|
+
"core/audits/accessibility/definition-list.js | description": {
|
|
186
|
+
"message": "如果未正确标记定义列表,屏幕阅读器读出的内容可能会令人困惑或不准确。[了解如何正确构建定义列表](https://dequeuniversity.com/rules/axe/4.6/definition-list)。"
|
|
319
187
|
},
|
|
320
|
-
"
|
|
188
|
+
"core/audits/accessibility/definition-list.js | failureTitle": {
|
|
321
189
|
"message": "`<dl>` 并非只包含经过适当排序的 `<dt>` 和 `<dd>` 组及 `<script>`、`<template>` 或 `<div>` 元素。"
|
|
322
190
|
},
|
|
323
|
-
"
|
|
191
|
+
"core/audits/accessibility/definition-list.js | title": {
|
|
324
192
|
"message": "`<dl>` 只包含经过适当排序的 `<dt>` 和 `<dd>` 组及 `<script>`、`<template>` 或 `<div>` 元素。"
|
|
325
193
|
},
|
|
326
|
-
"
|
|
327
|
-
"message": "
|
|
194
|
+
"core/audits/accessibility/dlitem.js | description": {
|
|
195
|
+
"message": "定义列表项(`<dt>` 和 `<dd>`)必须封装在父 `<dl>` 元素中,以确保屏幕阅读器可以正确地读出它们。[了解如何正确构建定义列表](https://dequeuniversity.com/rules/axe/4.6/dlitem)。"
|
|
328
196
|
},
|
|
329
|
-
"
|
|
197
|
+
"core/audits/accessibility/dlitem.js | failureTitle": {
|
|
330
198
|
"message": "定义列表项已封装在 `<dl>` 元素中"
|
|
331
199
|
},
|
|
332
|
-
"
|
|
200
|
+
"core/audits/accessibility/dlitem.js | title": {
|
|
333
201
|
"message": "定义列表项已封装在 `<dl>` 元素中"
|
|
334
202
|
},
|
|
335
|
-
"
|
|
336
|
-
"message": "屏幕阅读器用户可借助标题来大致了解某个页面的内容,搜索引擎用户则非常依赖标题来确定某个页面是否与其搜索相关。[
|
|
203
|
+
"core/audits/accessibility/document-title.js | description": {
|
|
204
|
+
"message": "屏幕阅读器用户可借助标题来大致了解某个页面的内容,搜索引擎用户则非常依赖标题来确定某个页面是否与其搜索相关。[详细了解文档标题](https://dequeuniversity.com/rules/axe/4.6/document-title)。"
|
|
337
205
|
},
|
|
338
|
-
"
|
|
206
|
+
"core/audits/accessibility/document-title.js | failureTitle": {
|
|
339
207
|
"message": "文档不含 `<title>` 元素"
|
|
340
208
|
},
|
|
341
|
-
"
|
|
209
|
+
"core/audits/accessibility/document-title.js | title": {
|
|
342
210
|
"message": "文档包含 `<title>` 元素"
|
|
343
211
|
},
|
|
344
|
-
"
|
|
345
|
-
"message": "所有可聚焦的元素都必须具有独一无二的 `id`,以确保能被辅助技术识别。[
|
|
212
|
+
"core/audits/accessibility/duplicate-id-active.js | description": {
|
|
213
|
+
"message": "所有可聚焦的元素都必须具有独一无二的 `id`,以确保能被辅助技术识别。[了解如何修正重复的 `id`](https://dequeuniversity.com/rules/axe/4.6/duplicate-id-active)。"
|
|
346
214
|
},
|
|
347
|
-
"
|
|
215
|
+
"core/audits/accessibility/duplicate-id-active.js | failureTitle": {
|
|
348
216
|
"message": "处于活动状态的可聚焦元素的 `[id]` 属性不是独一无二的"
|
|
349
217
|
},
|
|
350
|
-
"
|
|
218
|
+
"core/audits/accessibility/duplicate-id-active.js | title": {
|
|
351
219
|
"message": "处于活动状态的可聚焦元素的 `[id]` 属性都是独一无二的"
|
|
352
220
|
},
|
|
353
|
-
"
|
|
354
|
-
"message": "ARIA ID 的值必须独一无二,才能防止其他实例被辅助技术忽略。[
|
|
221
|
+
"core/audits/accessibility/duplicate-id-aria.js | description": {
|
|
222
|
+
"message": "ARIA ID 的值必须独一无二,才能防止其他实例被辅助技术忽略。[了解如何修正重复的 ARIA ID](https://dequeuniversity.com/rules/axe/4.6/duplicate-id-aria)。"
|
|
355
223
|
},
|
|
356
|
-
"
|
|
224
|
+
"core/audits/accessibility/duplicate-id-aria.js | failureTitle": {
|
|
357
225
|
"message": "ARIA ID 不是独一无二的"
|
|
358
226
|
},
|
|
359
|
-
"
|
|
227
|
+
"core/audits/accessibility/duplicate-id-aria.js | title": {
|
|
360
228
|
"message": "ARIA ID 都是独一无二的"
|
|
361
229
|
},
|
|
362
|
-
"
|
|
363
|
-
"message": "有多个标签的表单字段可能会被辅助技术(如屏幕阅读器)以令人困惑的方式播报出来,因为这些辅助技术可能会使用第一个标签或最后一个标签,也可能会使用所有标签。[
|
|
230
|
+
"core/audits/accessibility/form-field-multiple-labels.js | description": {
|
|
231
|
+
"message": "有多个标签的表单字段可能会被辅助技术(如屏幕阅读器)以令人困惑的方式播报出来,因为这些辅助技术可能会使用第一个标签或最后一个标签,也可能会使用所有标签。[了解如何使用表单标签](https://dequeuniversity.com/rules/axe/4.6/form-field-multiple-labels)。"
|
|
364
232
|
},
|
|
365
|
-
"
|
|
233
|
+
"core/audits/accessibility/form-field-multiple-labels.js | failureTitle": {
|
|
366
234
|
"message": "表单字段有多个标签"
|
|
367
235
|
},
|
|
368
|
-
"
|
|
236
|
+
"core/audits/accessibility/form-field-multiple-labels.js | title": {
|
|
369
237
|
"message": "表单字段都没有多个标签"
|
|
370
238
|
},
|
|
371
|
-
"
|
|
372
|
-
"message": "屏幕阅读器用户依靠框架标题来描述框架的内容。[
|
|
239
|
+
"core/audits/accessibility/frame-title.js | description": {
|
|
240
|
+
"message": "屏幕阅读器用户依靠框架标题来描述框架的内容。[详细了解框架标题](https://dequeuniversity.com/rules/axe/4.6/frame-title)。"
|
|
373
241
|
},
|
|
374
|
-
"
|
|
242
|
+
"core/audits/accessibility/frame-title.js | failureTitle": {
|
|
375
243
|
"message": "`<frame>` 或 `<iframe>` 元素缺少标题"
|
|
376
244
|
},
|
|
377
|
-
"
|
|
245
|
+
"core/audits/accessibility/frame-title.js | title": {
|
|
378
246
|
"message": "`<frame>` 或 `<iframe>` 元素有标题"
|
|
379
247
|
},
|
|
380
|
-
"
|
|
381
|
-
"message": "未跳过任何等级且排序正确的标题会准确传达页面的语义结构,从而使得相应页面在使用辅助技术时更易于浏览和理解。[
|
|
248
|
+
"core/audits/accessibility/heading-order.js | description": {
|
|
249
|
+
"message": "未跳过任何等级且排序正确的标题会准确传达页面的语义结构,从而使得相应页面在使用辅助技术时更易于浏览和理解。[详细了解标题顺序](https://dequeuniversity.com/rules/axe/4.6/heading-order)。"
|
|
382
250
|
},
|
|
383
|
-
"
|
|
251
|
+
"core/audits/accessibility/heading-order.js | failureTitle": {
|
|
384
252
|
"message": "标题元素未按降序显示"
|
|
385
253
|
},
|
|
386
|
-
"
|
|
254
|
+
"core/audits/accessibility/heading-order.js | title": {
|
|
387
255
|
"message": "标题元素按降序显示"
|
|
388
256
|
},
|
|
389
|
-
"
|
|
390
|
-
"message": "如果页面未指定 lang
|
|
257
|
+
"core/audits/accessibility/html-has-lang.js | description": {
|
|
258
|
+
"message": "如果页面未指定 `lang` 属性,屏幕阅读器便会假定该页面采用的是用户在设置屏幕阅读器时选择的默认语言。如果该页面实际上并未采用默认语言,屏幕阅读器可能无法正确读出该页面中的文字。[详细了解 `lang` 属性](https://dequeuniversity.com/rules/axe/4.6/html-has-lang)。"
|
|
391
259
|
},
|
|
392
|
-
"
|
|
260
|
+
"core/audits/accessibility/html-has-lang.js | failureTitle": {
|
|
393
261
|
"message": "`<html>` 元素缺少 `[lang]` 属性"
|
|
394
262
|
},
|
|
395
|
-
"
|
|
263
|
+
"core/audits/accessibility/html-has-lang.js | title": {
|
|
396
264
|
"message": "`<html>` 元素包含 `[lang]` 属性"
|
|
397
265
|
},
|
|
398
|
-
"
|
|
399
|
-
"message": "指定有效的 [BCP 47 语言](https://www.w3.org/International/questions/qa-choosing-language-tags#question)有助于屏幕阅读器正确读出文字。[
|
|
266
|
+
"core/audits/accessibility/html-lang-valid.js | description": {
|
|
267
|
+
"message": "指定有效的 [BCP 47 语言](https://www.w3.org/International/questions/qa-choosing-language-tags#question)有助于屏幕阅读器正确读出文字。[了解如何使用 `lang` 属性](https://dequeuniversity.com/rules/axe/4.6/html-lang-valid)。"
|
|
400
268
|
},
|
|
401
|
-
"
|
|
269
|
+
"core/audits/accessibility/html-lang-valid.js | failureTitle": {
|
|
402
270
|
"message": "`<html>` 元素的 `[lang]` 属性缺少有效值。"
|
|
403
271
|
},
|
|
404
|
-
"
|
|
272
|
+
"core/audits/accessibility/html-lang-valid.js | title": {
|
|
405
273
|
"message": "`<html>` 元素的 `[lang]` 属性具备有效值"
|
|
406
274
|
},
|
|
407
|
-
"
|
|
408
|
-
"message": "说明性元素应力求使用简短的描述性替代文字。未指定 alt 属性的装饰性元素可被忽略。[
|
|
275
|
+
"core/audits/accessibility/image-alt.js | description": {
|
|
276
|
+
"message": "说明性元素应力求使用简短的描述性替代文字。未指定 alt 属性的装饰性元素可被忽略。[详细了解 `alt` 属性](https://dequeuniversity.com/rules/axe/4.6/image-alt)。"
|
|
409
277
|
},
|
|
410
|
-
"
|
|
278
|
+
"core/audits/accessibility/image-alt.js | failureTitle": {
|
|
411
279
|
"message": "图片元素缺少 `[alt]` 属性"
|
|
412
280
|
},
|
|
413
|
-
"
|
|
281
|
+
"core/audits/accessibility/image-alt.js | title": {
|
|
414
282
|
"message": "图片元素具备 `[alt]` 属性"
|
|
415
283
|
},
|
|
416
|
-
"
|
|
417
|
-
"message": "将图片用作 `<input>` 按钮时,提供替代文字有助于屏幕阅读器用户了解该按钮的用途。[
|
|
284
|
+
"core/audits/accessibility/input-image-alt.js | description": {
|
|
285
|
+
"message": "将图片用作 `<input>` 按钮时,提供替代文字有助于屏幕阅读器用户了解该按钮的用途。[了解输入图片替代文字](https://dequeuniversity.com/rules/axe/4.6/input-image-alt)。"
|
|
418
286
|
},
|
|
419
|
-
"
|
|
287
|
+
"core/audits/accessibility/input-image-alt.js | failureTitle": {
|
|
420
288
|
"message": "`<input type=\"image\">` 元素无对应的 `[alt]` 文字"
|
|
421
289
|
},
|
|
422
|
-
"
|
|
290
|
+
"core/audits/accessibility/input-image-alt.js | title": {
|
|
423
291
|
"message": "`<input type=\"image\">` 元素有对应的 `[alt]` 文字"
|
|
424
292
|
},
|
|
425
|
-
"
|
|
426
|
-
"message": "标签可确保辅助技术(如屏幕阅读器)正确读出表单控件。[
|
|
293
|
+
"core/audits/accessibility/label.js | description": {
|
|
294
|
+
"message": "标签可确保辅助技术(如屏幕阅读器)正确读出表单控件。[详细了解表单元素标签](https://dequeuniversity.com/rules/axe/4.6/label)。"
|
|
427
295
|
},
|
|
428
|
-
"
|
|
296
|
+
"core/audits/accessibility/label.js | failureTitle": {
|
|
429
297
|
"message": "表单元素不具备关联的标签"
|
|
430
298
|
},
|
|
431
|
-
"
|
|
299
|
+
"core/audits/accessibility/label.js | title": {
|
|
432
300
|
"message": "表单元素具有关联的标签"
|
|
433
301
|
},
|
|
434
|
-
"
|
|
435
|
-
"message": "
|
|
302
|
+
"core/audits/accessibility/link-name.js | description": {
|
|
303
|
+
"message": "请确保链接文字(以及用作链接的图片替代文字)可识别、独一无二且可聚焦,这样做会提升屏幕阅读器用户的导航体验。[了解如何使链接可供访问](https://dequeuniversity.com/rules/axe/4.6/link-name)。"
|
|
436
304
|
},
|
|
437
|
-
"
|
|
305
|
+
"core/audits/accessibility/link-name.js | failureTitle": {
|
|
438
306
|
"message": "链接缺少可识别的名称"
|
|
439
307
|
},
|
|
440
|
-
"
|
|
308
|
+
"core/audits/accessibility/link-name.js | title": {
|
|
441
309
|
"message": "链接具备可识别的名称"
|
|
442
310
|
},
|
|
443
|
-
"
|
|
444
|
-
"message": "屏幕阅读器会采用特定的方法来读出列表内容。确保列表结构正确有助于屏幕阅读器顺利读出相应内容。[
|
|
311
|
+
"core/audits/accessibility/list.js | description": {
|
|
312
|
+
"message": "屏幕阅读器会采用特定的方法来读出列表内容。确保列表结构正确有助于屏幕阅读器顺利读出相应内容。[详细了解适当的列表结构](https://dequeuniversity.com/rules/axe/4.6/list)。"
|
|
445
313
|
},
|
|
446
|
-
"
|
|
314
|
+
"core/audits/accessibility/list.js | failureTitle": {
|
|
447
315
|
"message": "列表并非只包含 `<li>` 元素和脚本支持元素(`<script>` 和 `<template>`)。"
|
|
448
316
|
},
|
|
449
|
-
"
|
|
317
|
+
"core/audits/accessibility/list.js | title": {
|
|
450
318
|
"message": "列表只包含 `<li>` 元素和脚本支持元素(`<script>` 和 `<template>`)。"
|
|
451
319
|
},
|
|
452
|
-
"
|
|
453
|
-
"message": "屏幕阅读器要求列表项 (`<li>`) 必须包含在父 `<ul>` 或 `<
|
|
320
|
+
"core/audits/accessibility/listitem.js | description": {
|
|
321
|
+
"message": "屏幕阅读器要求列表项 (`<li>`) 必须包含在父 `<ul>`、`<ol>` 或 `<menu>` 中,这样才能正确读出它们。[详细了解适当的列表结构](https://dequeuniversity.com/rules/axe/4.6/listitem)。"
|
|
454
322
|
},
|
|
455
|
-
"
|
|
456
|
-
"message": "列表项 (`<li>`) 未包含在 `<ul>` 或 `<
|
|
323
|
+
"core/audits/accessibility/listitem.js | failureTitle": {
|
|
324
|
+
"message": "列表项 (`<li>`) 未包含在 `<ul>`、`<ol>` 或 `<menu>` 父元素中。"
|
|
457
325
|
},
|
|
458
|
-
"
|
|
459
|
-
"message": "列表项 (`<li>`) 包含在 `<ul>` 或 `<
|
|
326
|
+
"core/audits/accessibility/listitem.js | title": {
|
|
327
|
+
"message": "列表项 (`<li>`) 包含在 `<ul>`、`<ol>` 或 `<menu>` 父元素中"
|
|
460
328
|
},
|
|
461
|
-
"
|
|
462
|
-
"message": "用户并不希望网页自动刷新,因为自动刷新会不断地将焦点移回到页面顶部。这可能会让用户感到沮丧或困惑。[
|
|
329
|
+
"core/audits/accessibility/meta-refresh.js | description": {
|
|
330
|
+
"message": "用户并不希望网页自动刷新,因为自动刷新会不断地将焦点移回到页面顶部。这可能会让用户感到沮丧或困惑。[详细了解刷新元标记](https://dequeuniversity.com/rules/axe/4.6/meta-refresh)。"
|
|
463
331
|
},
|
|
464
|
-
"
|
|
332
|
+
"core/audits/accessibility/meta-refresh.js | failureTitle": {
|
|
465
333
|
"message": "文档使用了 `<meta http-equiv=\"refresh\">`"
|
|
466
334
|
},
|
|
467
|
-
"
|
|
335
|
+
"core/audits/accessibility/meta-refresh.js | title": {
|
|
468
336
|
"message": "文档未使用 `<meta http-equiv=\"refresh\">`"
|
|
469
337
|
},
|
|
470
|
-
"
|
|
471
|
-
"message": "对于必须依靠放大屏幕才能清晰看到网页内容的弱视用户而言,停用缩放功能会给他们带来问题。[
|
|
338
|
+
"core/audits/accessibility/meta-viewport.js | description": {
|
|
339
|
+
"message": "对于必须依靠放大屏幕才能清晰看到网页内容的弱视用户而言,停用缩放功能会给他们带来问题。[详细了解视口元标记](https://dequeuniversity.com/rules/axe/4.6/meta-viewport)。"
|
|
472
340
|
},
|
|
473
|
-
"
|
|
341
|
+
"core/audits/accessibility/meta-viewport.js | failureTitle": {
|
|
474
342
|
"message": "`<meta name=\"viewport\">` 元素中使用了 `[user-scalable=\"no\"]`,或者 `[maximum-scale]` 属性小于 5。"
|
|
475
343
|
},
|
|
476
|
-
"
|
|
344
|
+
"core/audits/accessibility/meta-viewport.js | title": {
|
|
477
345
|
"message": "`[user-scalable=\"no\"]` 未用在 `<meta name=\"viewport\">` 元素中,并且 `[maximum-scale]` 属性不小于 5。"
|
|
478
346
|
},
|
|
479
|
-
"
|
|
480
|
-
"message": "
|
|
347
|
+
"core/audits/accessibility/object-alt.js | description": {
|
|
348
|
+
"message": "屏幕阅读器无法转换非文字内容。通过向 `<object>` 元素添加替代文字,可帮助屏幕阅读器将含义传达给用户。[详细了解 `object` 元素的替代文字](https://dequeuniversity.com/rules/axe/4.6/object-alt)。"
|
|
481
349
|
},
|
|
482
|
-
"
|
|
350
|
+
"core/audits/accessibility/object-alt.js | failureTitle": {
|
|
483
351
|
"message": "`<object>` 元素无对应的替代文字"
|
|
484
352
|
},
|
|
485
|
-
"
|
|
353
|
+
"core/audits/accessibility/object-alt.js | title": {
|
|
486
354
|
"message": "`<object>` 元素有对应的替代文字"
|
|
487
355
|
},
|
|
488
|
-
"
|
|
489
|
-
"message": "值大于 0 意味着明确的导航顺序。尽管这在技术上可行,但往往会让依赖辅助技术的用户感到沮丧。[
|
|
356
|
+
"core/audits/accessibility/tabindex.js | description": {
|
|
357
|
+
"message": "值大于 0 意味着明确的导航顺序。尽管这在技术上可行,但往往会让依赖辅助技术的用户感到沮丧。[详细了解 `tabindex` 属性](https://dequeuniversity.com/rules/axe/4.6/tabindex)。"
|
|
490
358
|
},
|
|
491
|
-
"
|
|
359
|
+
"core/audits/accessibility/tabindex.js | failureTitle": {
|
|
492
360
|
"message": "一些元素的 `[tabindex]` 值大于 0"
|
|
493
361
|
},
|
|
494
|
-
"
|
|
362
|
+
"core/audits/accessibility/tabindex.js | title": {
|
|
495
363
|
"message": "所有元素的 `[tabindex]` 值都不大于 0"
|
|
496
364
|
},
|
|
497
|
-
"
|
|
498
|
-
"message": "屏幕阅读器提供了更便于用户浏览表格内容的功能。请确保那些使用 `[headers]` 属性的 `<td>` 单元格仅引用同一个表格中的其他单元格,这样做可提升屏幕阅读器用户的体验。[
|
|
365
|
+
"core/audits/accessibility/td-headers-attr.js | description": {
|
|
366
|
+
"message": "屏幕阅读器提供了更便于用户浏览表格内容的功能。请确保那些使用 `[headers]` 属性的 `<td>` 单元格仅引用同一个表格中的其他单元格,这样做可提升屏幕阅读器用户的体验。[详细了解 `headers` 属性](https://dequeuniversity.com/rules/axe/4.6/td-headers-attr)。"
|
|
499
367
|
},
|
|
500
|
-
"
|
|
368
|
+
"core/audits/accessibility/td-headers-attr.js | failureTitle": {
|
|
501
369
|
"message": "`<table>` 元素中使用 `[headers]` 属性的单元格引用了在同一表格中找不到的元素 `id`。"
|
|
502
370
|
},
|
|
503
|
-
"
|
|
371
|
+
"core/audits/accessibility/td-headers-attr.js | title": {
|
|
504
372
|
"message": "`<table>` 元素中使用 `[headers]` 属性的单元格引用的是同一表格中的单元格。"
|
|
505
373
|
},
|
|
506
|
-
"
|
|
507
|
-
"message": "屏幕阅读器提供了更便于用户浏览表格内容的功能。确保表格标头始终引用特定一组单元格可以提升屏幕阅读器用户的体验。[
|
|
374
|
+
"core/audits/accessibility/th-has-data-cells.js | description": {
|
|
375
|
+
"message": "屏幕阅读器提供了更便于用户浏览表格内容的功能。确保表格标头始终引用特定一组单元格可以提升屏幕阅读器用户的体验。[详细了解表格标头](https://dequeuniversity.com/rules/axe/4.6/th-has-data-cells)。"
|
|
508
376
|
},
|
|
509
|
-
"
|
|
377
|
+
"core/audits/accessibility/th-has-data-cells.js | failureTitle": {
|
|
510
378
|
"message": "`<th>` 元素和 `[role=\"columnheader\"/\"rowheader\"]` 的元素缺少它们所描述的数据单元格。"
|
|
511
379
|
},
|
|
512
|
-
"
|
|
380
|
+
"core/audits/accessibility/th-has-data-cells.js | title": {
|
|
513
381
|
"message": "`<th>` 元素和 `[role=\"columnheader\"/\"rowheader\"]` 的元素具备它们所描述的数据单元格。"
|
|
514
382
|
},
|
|
515
|
-
"
|
|
516
|
-
"message": "为元素指定有效的 [BCP 47 语言](https://www.w3.org/International/questions/qa-choosing-language-tags#question)有助于确保屏幕阅读器正确读出文字。[
|
|
383
|
+
"core/audits/accessibility/valid-lang.js | description": {
|
|
384
|
+
"message": "为元素指定有效的 [BCP 47 语言](https://www.w3.org/International/questions/qa-choosing-language-tags#question)有助于确保屏幕阅读器正确读出文字。[了解如何使用 `lang` 属性](https://dequeuniversity.com/rules/axe/4.6/valid-lang)。"
|
|
517
385
|
},
|
|
518
|
-
"
|
|
386
|
+
"core/audits/accessibility/valid-lang.js | failureTitle": {
|
|
519
387
|
"message": "`[lang]` 属性缺少有效值"
|
|
520
388
|
},
|
|
521
|
-
"
|
|
389
|
+
"core/audits/accessibility/valid-lang.js | title": {
|
|
522
390
|
"message": "`[lang]` 属性的值有效"
|
|
523
391
|
},
|
|
524
|
-
"
|
|
525
|
-
"message": "如果视频提供了字幕,失聪用户和听障用户便能更轻松地获取此视频中的信息。[
|
|
392
|
+
"core/audits/accessibility/video-caption.js | description": {
|
|
393
|
+
"message": "如果视频提供了字幕,失聪用户和听障用户便能更轻松地获取此视频中的信息。[详细了解视频字幕](https://dequeuniversity.com/rules/axe/4.6/video-caption)。"
|
|
526
394
|
},
|
|
527
|
-
"
|
|
395
|
+
"core/audits/accessibility/video-caption.js | failureTitle": {
|
|
528
396
|
"message": "`<video>` 元素缺少带 `[kind=\"captions\"]` 的 `<track>` 元素。"
|
|
529
397
|
},
|
|
530
|
-
"
|
|
398
|
+
"core/audits/accessibility/video-caption.js | title": {
|
|
531
399
|
"message": "`<video>` 元素包含带 `[kind=\"captions\"]` 的 `<track>` 元素"
|
|
532
400
|
},
|
|
533
|
-
"
|
|
534
|
-
"message": "请定义一个 `apple-touch-icon`,以在 iOS 用户向主屏幕添加渐进式 Web 应用时获得理想的外观。它必须指向一张不透明的 192px(或 180px)方形 PNG 图片。[了解详情](https://web.dev/apple-touch-icon/)。"
|
|
535
|
-
},
|
|
536
|
-
"lighthouse-core/audits/apple-touch-icon.js | failureTitle": {
|
|
537
|
-
"message": "未提供有效的 `apple-touch-icon`"
|
|
538
|
-
},
|
|
539
|
-
"lighthouse-core/audits/apple-touch-icon.js | precomposedWarning": {
|
|
540
|
-
"message": "`apple-touch-icon-precomposed` 不是最新版本,建议使用 `apple-touch-icon`。"
|
|
541
|
-
},
|
|
542
|
-
"lighthouse-core/audits/apple-touch-icon.js | title": {
|
|
543
|
-
"message": "提供了有效的 `apple-touch-icon`"
|
|
544
|
-
},
|
|
545
|
-
"lighthouse-core/audits/autocomplete.js | columnCurrent": {
|
|
401
|
+
"core/audits/autocomplete.js | columnCurrent": {
|
|
546
402
|
"message": "当前值"
|
|
547
403
|
},
|
|
548
|
-
"
|
|
404
|
+
"core/audits/autocomplete.js | columnSuggestions": {
|
|
549
405
|
"message": "建议的令牌"
|
|
550
406
|
},
|
|
551
|
-
"
|
|
552
|
-
"message": "`autocomplete
|
|
407
|
+
"core/audits/autocomplete.js | description": {
|
|
408
|
+
"message": "`autocomplete` 可帮助用户更快地提交表单。如果想减少用户操作,建议启用自动补全功能,只需将 `autocomplete` 属性设为一个有效值即可。[详细了解在表单中使用 `autocomplete`](https://developers.google.com/web/fundamentals/design-and-ux/input/forms#use_metadata_to_enable_auto-complete)"
|
|
553
409
|
},
|
|
554
|
-
"
|
|
410
|
+
"core/audits/autocomplete.js | failureTitle": {
|
|
555
411
|
"message": "`<input>` 元素没有正确的 `autocomplete` 属性"
|
|
556
412
|
},
|
|
557
|
-
"
|
|
413
|
+
"core/audits/autocomplete.js | manualReview": {
|
|
558
414
|
"message": "需要人工审核"
|
|
559
415
|
},
|
|
560
|
-
"
|
|
416
|
+
"core/audits/autocomplete.js | reviewOrder": {
|
|
561
417
|
"message": "请检查令牌的顺序"
|
|
562
418
|
},
|
|
563
|
-
"
|
|
419
|
+
"core/audits/autocomplete.js | title": {
|
|
564
420
|
"message": "`<input>` 元素正确地使用了 `autocomplete`"
|
|
565
421
|
},
|
|
566
|
-
"
|
|
422
|
+
"core/audits/autocomplete.js | warningInvalid": {
|
|
567
423
|
"message": "`autocomplete` 令牌:{snippet} 中的“{token}”无效"
|
|
568
424
|
},
|
|
569
|
-
"
|
|
425
|
+
"core/audits/autocomplete.js | warningOrder": {
|
|
570
426
|
"message": "检查令牌的顺序:{snippet} 中的“{tokens}”"
|
|
571
427
|
},
|
|
572
|
-
"
|
|
428
|
+
"core/audits/bf-cache.js | actionableFailureType": {
|
|
429
|
+
"message": "有待解决"
|
|
430
|
+
},
|
|
431
|
+
"core/audits/bf-cache.js | description": {
|
|
432
|
+
"message": "许多导航操作都是网页间来回切换,往返缓存 (bfcache) 可以加快这些返回导航的速度。[详细了解 bfcache](https://developer.chrome.com/docs/lighthouse/performance/bf-cache/)"
|
|
433
|
+
},
|
|
434
|
+
"core/audits/bf-cache.js | displayValue": {
|
|
435
|
+
"message": "{itemCount,plural, =1{1 个失败原因}other{# 个失败原因}}"
|
|
436
|
+
},
|
|
437
|
+
"core/audits/bf-cache.js | failureReasonColumn": {
|
|
438
|
+
"message": "失败原因"
|
|
439
|
+
},
|
|
440
|
+
"core/audits/bf-cache.js | failureTitle": {
|
|
441
|
+
"message": "网页已阻止恢复往返缓存"
|
|
442
|
+
},
|
|
443
|
+
"core/audits/bf-cache.js | failureTypeColumn": {
|
|
444
|
+
"message": "失败类型"
|
|
445
|
+
},
|
|
446
|
+
"core/audits/bf-cache.js | notActionableFailureType": {
|
|
447
|
+
"message": "无法解决"
|
|
448
|
+
},
|
|
449
|
+
"core/audits/bf-cache.js | supportPendingFailureType": {
|
|
450
|
+
"message": "尚不支持浏览器"
|
|
451
|
+
},
|
|
452
|
+
"core/audits/bf-cache.js | title": {
|
|
453
|
+
"message": "网页并未阻止恢复往返缓存"
|
|
454
|
+
},
|
|
455
|
+
"core/audits/bootup-time.js | chromeExtensionsWarning": {
|
|
573
456
|
"message": "Chrome 扩展程序对此网页的加载性能产生了负面影响。请尝试在无痕模式下或使用未安装这些扩展程序的 Chrome 个人资料审核此网页。"
|
|
574
457
|
},
|
|
575
|
-
"
|
|
458
|
+
"core/audits/bootup-time.js | columnScriptEval": {
|
|
576
459
|
"message": "脚本评估"
|
|
577
460
|
},
|
|
578
|
-
"
|
|
461
|
+
"core/audits/bootup-time.js | columnScriptParse": {
|
|
579
462
|
"message": "脚本解析"
|
|
580
463
|
},
|
|
581
|
-
"
|
|
464
|
+
"core/audits/bootup-time.js | columnTotal": {
|
|
582
465
|
"message": "总 CPU 时间"
|
|
583
466
|
},
|
|
584
|
-
"
|
|
585
|
-
"message": "建议您减少为解析、编译和执行 JS 而花费的时间。您可能会发现,提供较小的 JS
|
|
467
|
+
"core/audits/bootup-time.js | description": {
|
|
468
|
+
"message": "建议您减少为解析、编译和执行 JS 而花费的时间。您可能会发现,提供较小的 JS 载荷有助于实现此目标。[了解如何缩短 JavaScript 执行时间](https://developer.chrome.com/docs/lighthouse/performance/bootup-time/)。"
|
|
586
469
|
},
|
|
587
|
-
"
|
|
470
|
+
"core/audits/bootup-time.js | failureTitle": {
|
|
588
471
|
"message": "缩短 JavaScript 执行用时"
|
|
589
472
|
},
|
|
590
|
-
"
|
|
473
|
+
"core/audits/bootup-time.js | title": {
|
|
591
474
|
"message": "JavaScript 执行用时"
|
|
592
475
|
},
|
|
593
|
-
"
|
|
476
|
+
"core/audits/byte-efficiency/duplicated-javascript.js | description": {
|
|
594
477
|
"message": "从软件包中移除重复的大型 JavaScript 模块可减少网络传输时不必要的流量消耗。 "
|
|
595
478
|
},
|
|
596
|
-
"
|
|
479
|
+
"core/audits/byte-efficiency/duplicated-javascript.js | title": {
|
|
597
480
|
"message": "请移除 JavaScript 软件包中的重复模块"
|
|
598
481
|
},
|
|
599
|
-
"
|
|
600
|
-
"message": "使用大型 GIF 提供动画内容会导致效率低下。建议您改用 MPEG4/WebM 视频(来提供动画)和 PNG/WebP(来提供静态图片)以减少网络活动消耗的字节数。[
|
|
482
|
+
"core/audits/byte-efficiency/efficient-animated-content.js | description": {
|
|
483
|
+
"message": "使用大型 GIF 提供动画内容会导致效率低下。建议您改用 MPEG4/WebM 视频(来提供动画)和 PNG/WebP(来提供静态图片)以减少网络活动消耗的字节数。[详细了解高效视频格式](https://developer.chrome.com/docs/lighthouse/performance/efficient-animated-content/)"
|
|
601
484
|
},
|
|
602
|
-
"
|
|
485
|
+
"core/audits/byte-efficiency/efficient-animated-content.js | title": {
|
|
603
486
|
"message": "使用视频格式提供动画内容"
|
|
604
487
|
},
|
|
605
|
-
"
|
|
606
|
-
"message": "Polyfill 和 transform 让旧版浏览器能够使用新的 JavaScript
|
|
488
|
+
"core/audits/byte-efficiency/legacy-javascript.js | description": {
|
|
489
|
+
"message": "Polyfill 和 transform 让旧版浏览器能够使用新的 JavaScript 功能。不过,其中的很多函数对现代浏览器而言并不是必需的。对于捆绑的 JavaScript,请采用现代脚本部署策略,以便利用 module/nomodule 功能检测机制来减少传送到现代浏览器的代码量,同时保留对旧版浏览器的支持。[了解如何使用现代 JavaScript](https://web.dev/publish-modern-javascript/)"
|
|
607
490
|
},
|
|
608
|
-
"
|
|
491
|
+
"core/audits/byte-efficiency/legacy-javascript.js | title": {
|
|
609
492
|
"message": "应避免向新型浏览器提供旧版 JavaScript"
|
|
610
493
|
},
|
|
611
|
-
"
|
|
612
|
-
"message": "WebP 和 AVIF 等图片格式的压缩效果通常优于 PNG 或 JPEG,因而下载速度更快,消耗的数据流量更少。[
|
|
494
|
+
"core/audits/byte-efficiency/modern-image-formats.js | description": {
|
|
495
|
+
"message": "WebP 和 AVIF 等图片格式的压缩效果通常优于 PNG 或 JPEG,因而下载速度更快,消耗的数据流量更少。[详细了解现代图片格式](https://developer.chrome.com/docs/lighthouse/performance/uses-webp-images/)。"
|
|
613
496
|
},
|
|
614
|
-
"
|
|
497
|
+
"core/audits/byte-efficiency/modern-image-formats.js | title": {
|
|
615
498
|
"message": "采用新一代格式提供图片"
|
|
616
499
|
},
|
|
617
|
-
"
|
|
618
|
-
"message": "
|
|
500
|
+
"core/audits/byte-efficiency/offscreen-images.js | description": {
|
|
501
|
+
"message": "建议您在所有关键资源加载完毕后再加载屏幕外图片和处于隐藏状态的图片,从而缩短可交互时间。[了解如何推迟加载屏幕外图片](https://developer.chrome.com/docs/lighthouse/performance/offscreen-images/)。"
|
|
619
502
|
},
|
|
620
|
-
"
|
|
503
|
+
"core/audits/byte-efficiency/offscreen-images.js | title": {
|
|
621
504
|
"message": "推迟加载屏幕外图片"
|
|
622
505
|
},
|
|
623
|
-
"
|
|
624
|
-
"message": "
|
|
506
|
+
"core/audits/byte-efficiency/render-blocking-resources.js | description": {
|
|
507
|
+
"message": "资源阻止了系统对您网页的首次绘制。建议以内嵌方式提供关键的 JS/CSS,并推迟提供所有非关键的 JS/样式。[了解如何移除阻塞渲染的资源](https://developer.chrome.com/docs/lighthouse/performance/render-blocking-resources/)。"
|
|
625
508
|
},
|
|
626
|
-
"
|
|
509
|
+
"core/audits/byte-efficiency/render-blocking-resources.js | title": {
|
|
627
510
|
"message": "移除阻塞渲染的资源"
|
|
628
511
|
},
|
|
629
|
-
"
|
|
630
|
-
"message": "
|
|
512
|
+
"core/audits/byte-efficiency/total-byte-weight.js | description": {
|
|
513
|
+
"message": "网络载荷过大不仅会让用户付出真金白银,还极有可能会延长加载用时。[了解如何缩减载荷大小](https://developer.chrome.com/docs/lighthouse/performance/total-byte-weight/)。"
|
|
631
514
|
},
|
|
632
|
-
"
|
|
515
|
+
"core/audits/byte-efficiency/total-byte-weight.js | displayValue": {
|
|
633
516
|
"message": "总大小为 {totalBytes, number, bytes} KiB"
|
|
634
517
|
},
|
|
635
|
-
"
|
|
518
|
+
"core/audits/byte-efficiency/total-byte-weight.js | failureTitle": {
|
|
636
519
|
"message": "避免网络负载过大"
|
|
637
520
|
},
|
|
638
|
-
"
|
|
521
|
+
"core/audits/byte-efficiency/total-byte-weight.js | title": {
|
|
639
522
|
"message": "避免网络负载过大"
|
|
640
523
|
},
|
|
641
|
-
"
|
|
642
|
-
"message": "缩减 CSS
|
|
524
|
+
"core/audits/byte-efficiency/unminified-css.js | description": {
|
|
525
|
+
"message": "缩减 CSS 文件大小可缩减网络载荷规模。[了解如何缩减 CSS 的大小](https://developer.chrome.com/docs/lighthouse/performance/unminified-css/)。"
|
|
643
526
|
},
|
|
644
|
-
"
|
|
527
|
+
"core/audits/byte-efficiency/unminified-css.js | title": {
|
|
645
528
|
"message": "缩减 CSS"
|
|
646
529
|
},
|
|
647
|
-
"
|
|
648
|
-
"message": "
|
|
530
|
+
"core/audits/byte-efficiency/unminified-javascript.js | description": {
|
|
531
|
+
"message": "缩减 JavaScript 文件大小不仅可以缩减载荷规模,还能缩短脚本解析用时。[了解如何缩减 JavaScript 的大小](https://developer.chrome.com/docs/lighthouse/performance/unminified-javascript/)。"
|
|
649
532
|
},
|
|
650
|
-
"
|
|
533
|
+
"core/audits/byte-efficiency/unminified-javascript.js | title": {
|
|
651
534
|
"message": "缩减 JavaScript"
|
|
652
535
|
},
|
|
653
|
-
"
|
|
654
|
-
"message": "请从样式表中减少未使用的规则,并延迟加载首屏内容未用到的 CSS,以减少网络活动耗用的字节数。[
|
|
536
|
+
"core/audits/byte-efficiency/unused-css-rules.js | description": {
|
|
537
|
+
"message": "请从样式表中减少未使用的规则,并延迟加载首屏内容未用到的 CSS,以减少网络活动耗用的字节数。[了解如何减少未使用的 CSS](https://developer.chrome.com/docs/lighthouse/performance/unused-css-rules/)。"
|
|
655
538
|
},
|
|
656
|
-
"
|
|
539
|
+
"core/audits/byte-efficiency/unused-css-rules.js | title": {
|
|
657
540
|
"message": "减少未使用的 CSS"
|
|
658
541
|
},
|
|
659
|
-
"
|
|
660
|
-
"message": "请减少未使用的 JavaScript,并等到需要使用时再加载脚本,以减少网络活动耗用的字节数。[
|
|
542
|
+
"core/audits/byte-efficiency/unused-javascript.js | description": {
|
|
543
|
+
"message": "请减少未使用的 JavaScript,并等到需要使用时再加载脚本,以减少网络活动耗用的字节数。[了解如何减少未使用的 JavaScript](https://developer.chrome.com/docs/lighthouse/performance/unused-javascript/)。"
|
|
661
544
|
},
|
|
662
|
-
"
|
|
545
|
+
"core/audits/byte-efficiency/unused-javascript.js | title": {
|
|
663
546
|
"message": "减少未使用的 JavaScript"
|
|
664
547
|
},
|
|
665
|
-
"
|
|
666
|
-
"message": "延长缓存期限可加快重访您网页的速度。[
|
|
548
|
+
"core/audits/byte-efficiency/uses-long-cache-ttl.js | description": {
|
|
549
|
+
"message": "延长缓存期限可加快重访您网页的速度。[详细了解高效缓存政策](https://developer.chrome.com/docs/lighthouse/performance/uses-long-cache-ttl/)。"
|
|
667
550
|
},
|
|
668
|
-
"
|
|
551
|
+
"core/audits/byte-efficiency/uses-long-cache-ttl.js | displayValue": {
|
|
669
552
|
"message": "{itemCount,plural, =1{找到了 1 项资源}other{找到了 # 项资源}}"
|
|
670
553
|
},
|
|
671
|
-
"
|
|
554
|
+
"core/audits/byte-efficiency/uses-long-cache-ttl.js | failureTitle": {
|
|
672
555
|
"message": "采用高效的缓存策略提供静态资源"
|
|
673
556
|
},
|
|
674
|
-
"
|
|
557
|
+
"core/audits/byte-efficiency/uses-long-cache-ttl.js | title": {
|
|
675
558
|
"message": "针对静态资源使用高效的缓存策略"
|
|
676
559
|
},
|
|
677
|
-
"
|
|
678
|
-
"message": "
|
|
560
|
+
"core/audits/byte-efficiency/uses-optimized-images.js | description": {
|
|
561
|
+
"message": "经过优化的图片有助于提升加载速度,并减少消耗的移动数据网络流量。[了解如何高效地对图片进行编码](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)。"
|
|
679
562
|
},
|
|
680
|
-
"
|
|
563
|
+
"core/audits/byte-efficiency/uses-optimized-images.js | title": {
|
|
681
564
|
"message": "对图片进行高效编码"
|
|
682
565
|
},
|
|
683
|
-
"
|
|
566
|
+
"core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnActualDimensions": {
|
|
684
567
|
"message": "实际尺寸"
|
|
685
568
|
},
|
|
686
|
-
"
|
|
569
|
+
"core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnDisplayedDimensions": {
|
|
687
570
|
"message": "显示时的尺寸"
|
|
688
571
|
},
|
|
689
|
-
"
|
|
572
|
+
"core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
|
|
690
573
|
"message": "图片大于其显示时的尺寸"
|
|
691
574
|
},
|
|
692
|
-
"
|
|
575
|
+
"core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
|
|
693
576
|
"message": "图片适合其显示时的尺寸"
|
|
694
577
|
},
|
|
695
|
-
"
|
|
696
|
-
"message": "提供大小合适的图片可节省移动数据网络流量并缩短加载用时。[
|
|
578
|
+
"core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
579
|
+
"message": "提供大小合适的图片可节省移动数据网络流量并缩短加载用时。[了解如何调整图片大小](https://developer.chrome.com/docs/lighthouse/performance/uses-responsive-images/)。"
|
|
697
580
|
},
|
|
698
|
-
"
|
|
581
|
+
"core/audits/byte-efficiency/uses-responsive-images.js | title": {
|
|
699
582
|
"message": "适当调整图片大小"
|
|
700
583
|
},
|
|
701
|
-
"
|
|
702
|
-
"message": "对于文本资源,应先压缩(gzip、deflate 或 brotli),然后再提供,以最大限度地减少网络活动消耗的字节总数。[
|
|
584
|
+
"core/audits/byte-efficiency/uses-text-compression.js | description": {
|
|
585
|
+
"message": "对于文本资源,应先压缩(gzip、deflate 或 brotli),然后再提供,以最大限度地减少网络活动消耗的字节总数。[详细了解文本压缩](https://developer.chrome.com/docs/lighthouse/performance/uses-text-compression/)。"
|
|
703
586
|
},
|
|
704
|
-
"
|
|
587
|
+
"core/audits/byte-efficiency/uses-text-compression.js | title": {
|
|
705
588
|
"message": "启用文本压缩"
|
|
706
589
|
},
|
|
707
|
-
"
|
|
708
|
-
"message": "如果应用内容的宽度与视口的宽度不一致,该应用可能不会针对移动设备屏幕进行优化。[
|
|
590
|
+
"core/audits/content-width.js | description": {
|
|
591
|
+
"message": "如果应用内容的宽度与视口的宽度不一致,该应用可能不会针对移动设备屏幕进行优化。[了解如何根据视口调整内容大小](https://developer.chrome.com/docs/lighthouse/pwa/content-width/)。"
|
|
709
592
|
},
|
|
710
|
-
"
|
|
593
|
+
"core/audits/content-width.js | explanation": {
|
|
711
594
|
"message": "视口大小({innerWidth} 像素)与窗口大小({outerWidth} 像素)不一致。"
|
|
712
595
|
},
|
|
713
|
-
"
|
|
596
|
+
"core/audits/content-width.js | failureTitle": {
|
|
714
597
|
"message": "未根据视口正确设置内容尺寸"
|
|
715
598
|
},
|
|
716
|
-
"
|
|
599
|
+
"core/audits/content-width.js | title": {
|
|
717
600
|
"message": "已根据视口正确设置内容尺寸"
|
|
718
601
|
},
|
|
719
|
-
"
|
|
720
|
-
"message": "
|
|
602
|
+
"core/audits/critical-request-chains.js | description": {
|
|
603
|
+
"message": "下面的关键请求链显示了以高优先级加载的资源。建议缩短链长、缩减资源的下载文件大小,或者推迟下载不必要的资源,从而提高网页加载速度。[了解如何避免链接关键请求](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains/)。"
|
|
721
604
|
},
|
|
722
|
-
"
|
|
605
|
+
"core/audits/critical-request-chains.js | displayValue": {
|
|
723
606
|
"message": "{itemCount,plural, =1{找到了 1 条请求链}other{找到了 # 条请求链}}"
|
|
724
607
|
},
|
|
725
|
-
"
|
|
608
|
+
"core/audits/critical-request-chains.js | title": {
|
|
726
609
|
"message": "避免链接关键请求"
|
|
727
610
|
},
|
|
728
|
-
"
|
|
611
|
+
"core/audits/csp-xss.js | columnDirective": {
|
|
729
612
|
"message": "指令"
|
|
730
613
|
},
|
|
731
|
-
"
|
|
614
|
+
"core/audits/csp-xss.js | columnSeverity": {
|
|
732
615
|
"message": "严重程度"
|
|
733
616
|
},
|
|
734
|
-
"
|
|
735
|
-
"message": "强有力的内容安全政策 (CSP) 可显著降低遭遇跨站脚本攻击 (XSS) 的风险。[
|
|
617
|
+
"core/audits/csp-xss.js | description": {
|
|
618
|
+
"message": "强有力的内容安全政策 (CSP) 可显著降低遭遇跨站脚本攻击 (XSS) 的风险。[了解如何使用 CSP 来防止 XSS](https://developer.chrome.com/docs/lighthouse/best-practices/csp-xss/)"
|
|
736
619
|
},
|
|
737
|
-
"
|
|
620
|
+
"core/audits/csp-xss.js | itemSeveritySyntax": {
|
|
738
621
|
"message": "语法"
|
|
739
622
|
},
|
|
740
|
-
"
|
|
741
|
-
"message": "
|
|
623
|
+
"core/audits/csp-xss.js | metaTagMessage": {
|
|
624
|
+
"message": "该网页包含一个在 <meta> 标记中定义的 CSP。建议将 CSP 移至 HTTP 标头,或在 HTTP 标头中定义其他严格 CSP。"
|
|
742
625
|
},
|
|
743
|
-
"
|
|
626
|
+
"core/audits/csp-xss.js | noCsp": {
|
|
744
627
|
"message": "找不到任何处于强制模式的 CSP"
|
|
745
628
|
},
|
|
746
|
-
"
|
|
629
|
+
"core/audits/csp-xss.js | title": {
|
|
747
630
|
"message": "请确保 CSP 能够有效地抵御 XSS 攻击"
|
|
748
631
|
},
|
|
749
|
-
"
|
|
632
|
+
"core/audits/deprecations.js | columnDeprecate": {
|
|
750
633
|
"message": "弃用/警告"
|
|
751
634
|
},
|
|
752
|
-
"
|
|
635
|
+
"core/audits/deprecations.js | columnLine": {
|
|
753
636
|
"message": "Line"
|
|
754
637
|
},
|
|
755
|
-
"
|
|
756
|
-
"message": "
|
|
638
|
+
"core/audits/deprecations.js | description": {
|
|
639
|
+
"message": "已弃用的 API 最终将从浏览器中移除。[详细了解已弃用的 API](https://developer.chrome.com/docs/lighthouse/best-practices/deprecations/)。"
|
|
757
640
|
},
|
|
758
|
-
"
|
|
641
|
+
"core/audits/deprecations.js | displayValue": {
|
|
759
642
|
"message": "{itemCount,plural, =1{发现了 1 条警告}other{发现了 # 条警告}}"
|
|
760
643
|
},
|
|
761
|
-
"
|
|
644
|
+
"core/audits/deprecations.js | failureTitle": {
|
|
762
645
|
"message": "使用了已弃用的 API"
|
|
763
646
|
},
|
|
764
|
-
"
|
|
647
|
+
"core/audits/deprecations.js | title": {
|
|
765
648
|
"message": "请勿使用已弃用的 API"
|
|
766
649
|
},
|
|
767
|
-
"
|
|
768
|
-
"message": "必须声明字符编码。您可以在 HTML 的前 1024 个字节中使用 `<meta>` 标记来声明,也可以在 HTTP 响应标头 Content-Type 中进行声明。[
|
|
650
|
+
"core/audits/dobetterweb/charset.js | description": {
|
|
651
|
+
"message": "必须声明字符编码。您可以在 HTML 的前 1024 个字节中使用 `<meta>` 标记来声明,也可以在 HTTP 响应标头 Content-Type 中进行声明。[详细了解如何声明字符编码](https://developer.chrome.com/docs/lighthouse/best-practices/charset/)。"
|
|
769
652
|
},
|
|
770
|
-
"
|
|
653
|
+
"core/audits/dobetterweb/charset.js | failureTitle": {
|
|
771
654
|
"message": "字符集声明缺失,或者在 HTML 中出现得太晚"
|
|
772
655
|
},
|
|
773
|
-
"
|
|
656
|
+
"core/audits/dobetterweb/charset.js | title": {
|
|
774
657
|
"message": "正确地设定了字符集"
|
|
775
658
|
},
|
|
776
|
-
"
|
|
777
|
-
"message": "指定 DOCTYPE 会阻止浏览器切换到怪异模式。[
|
|
659
|
+
"core/audits/dobetterweb/doctype.js | description": {
|
|
660
|
+
"message": "指定 DOCTYPE 会阻止浏览器切换到怪异模式。[详细了解 DOCTYPE 声明](https://developer.chrome.com/docs/lighthouse/best-practices/doctype/)。"
|
|
778
661
|
},
|
|
779
|
-
"
|
|
780
|
-
"message": "DOCTYPE
|
|
662
|
+
"core/audits/dobetterweb/doctype.js | explanationBadDoctype": {
|
|
663
|
+
"message": "DOCTYPE 名称必须为字符串 `html`"
|
|
781
664
|
},
|
|
782
|
-
"
|
|
665
|
+
"core/audits/dobetterweb/doctype.js | explanationLimitedQuirks": {
|
|
666
|
+
"message": "该文档包含会触发 `limited-quirks-mode` 的 `doctype`"
|
|
667
|
+
},
|
|
668
|
+
"core/audits/dobetterweb/doctype.js | explanationNoDoctype": {
|
|
783
669
|
"message": "文档必需包含 DOCTYPE"
|
|
784
670
|
},
|
|
785
|
-
"
|
|
671
|
+
"core/audits/dobetterweb/doctype.js | explanationPublicId": {
|
|
786
672
|
"message": "publicId 应为空字符串"
|
|
787
673
|
},
|
|
788
|
-
"
|
|
674
|
+
"core/audits/dobetterweb/doctype.js | explanationSystemId": {
|
|
789
675
|
"message": "systemId 应为空字符串"
|
|
790
676
|
},
|
|
791
|
-
"
|
|
677
|
+
"core/audits/dobetterweb/doctype.js | explanationWrongDoctype": {
|
|
678
|
+
"message": "该文档包含会触发 `quirks-mode` 的 `doctype`"
|
|
679
|
+
},
|
|
680
|
+
"core/audits/dobetterweb/doctype.js | failureTitle": {
|
|
792
681
|
"message": "页面缺少 HTML DOCTYPE,从而触发了怪异模式"
|
|
793
682
|
},
|
|
794
|
-
"
|
|
683
|
+
"core/audits/dobetterweb/doctype.js | title": {
|
|
795
684
|
"message": "页面包含 HTML DOCTYPE"
|
|
796
685
|
},
|
|
797
|
-
"
|
|
686
|
+
"core/audits/dobetterweb/dom-size.js | columnStatistic": {
|
|
798
687
|
"message": "统计信息"
|
|
799
688
|
},
|
|
800
|
-
"
|
|
689
|
+
"core/audits/dobetterweb/dom-size.js | columnValue": {
|
|
801
690
|
"message": "值"
|
|
802
691
|
},
|
|
803
|
-
"
|
|
804
|
-
"message": "大型 DOM
|
|
692
|
+
"core/audits/dobetterweb/dom-size.js | description": {
|
|
693
|
+
"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/)。"
|
|
805
694
|
},
|
|
806
|
-
"
|
|
695
|
+
"core/audits/dobetterweb/dom-size.js | displayValue": {
|
|
807
696
|
"message": "{itemCount,plural, =1{1 个元素}other{# 个元素}}"
|
|
808
697
|
},
|
|
809
|
-
"
|
|
698
|
+
"core/audits/dobetterweb/dom-size.js | failureTitle": {
|
|
810
699
|
"message": "避免 DOM 规模过大"
|
|
811
700
|
},
|
|
812
|
-
"
|
|
701
|
+
"core/audits/dobetterweb/dom-size.js | statisticDOMDepth": {
|
|
813
702
|
"message": "最大 DOM 深度"
|
|
814
703
|
},
|
|
815
|
-
"
|
|
704
|
+
"core/audits/dobetterweb/dom-size.js | statisticDOMElements": {
|
|
816
705
|
"message": "DOM 元素总数"
|
|
817
706
|
},
|
|
818
|
-
"
|
|
707
|
+
"core/audits/dobetterweb/dom-size.js | statisticDOMWidth": {
|
|
819
708
|
"message": "子元素数量最大值"
|
|
820
709
|
},
|
|
821
|
-
"
|
|
710
|
+
"core/audits/dobetterweb/dom-size.js | title": {
|
|
822
711
|
"message": "避免 DOM 规模过大"
|
|
823
712
|
},
|
|
824
|
-
"
|
|
825
|
-
"message": "
|
|
713
|
+
"core/audits/dobetterweb/geolocation-on-start.js | description": {
|
|
714
|
+
"message": "如果网站在缺少上下文的情况下请求位置信息,会导致用户不信任网站或感到困惑。建议将请求与用户操作进行绑定。[详细了解地理定位权限](https://developer.chrome.com/docs/lighthouse/best-practices/geolocation-on-start/)。"
|
|
826
715
|
},
|
|
827
|
-
"
|
|
716
|
+
"core/audits/dobetterweb/geolocation-on-start.js | failureTitle": {
|
|
828
717
|
"message": "在网页加载时请求地理定位权限"
|
|
829
718
|
},
|
|
830
|
-
"
|
|
719
|
+
"core/audits/dobetterweb/geolocation-on-start.js | title": {
|
|
831
720
|
"message": "避免在网页加载时请求地理定位权限"
|
|
832
721
|
},
|
|
833
|
-
"
|
|
722
|
+
"core/audits/dobetterweb/inspector-issues.js | columnIssueType": {
|
|
834
723
|
"message": "问题类型"
|
|
835
724
|
},
|
|
836
|
-
"
|
|
725
|
+
"core/audits/dobetterweb/inspector-issues.js | description": {
|
|
837
726
|
"message": "Chrome Devtools 的“`Issues`”面板中记录的问题表明有未解决的问题。这些问题的起因可能是网络请求失败、安全控件不足和其他浏览器问题。如需详细了解每个问题,请打开 Chrome Devtools 的“Issues”面板。"
|
|
838
727
|
},
|
|
839
|
-
"
|
|
728
|
+
"core/audits/dobetterweb/inspector-issues.js | failureTitle": {
|
|
840
729
|
"message": "问题记录在 Chrome Devtools 的“`Issues`”面板中"
|
|
841
730
|
},
|
|
842
|
-
"
|
|
731
|
+
"core/audits/dobetterweb/inspector-issues.js | issueTypeBlockedByResponse": {
|
|
843
732
|
"message": "已被跨源政策屏蔽"
|
|
844
733
|
},
|
|
845
|
-
"
|
|
734
|
+
"core/audits/dobetterweb/inspector-issues.js | issueTypeHeavyAds": {
|
|
846
735
|
"message": "广告占用了大量资源"
|
|
847
736
|
},
|
|
848
|
-
"
|
|
737
|
+
"core/audits/dobetterweb/inspector-issues.js | title": {
|
|
849
738
|
"message": "Chrome Devtools 的“`Issues`”面板中无任何问题"
|
|
850
739
|
},
|
|
851
|
-
"
|
|
740
|
+
"core/audits/dobetterweb/js-libraries.js | columnVersion": {
|
|
852
741
|
"message": "版本"
|
|
853
742
|
},
|
|
854
|
-
"
|
|
855
|
-
"message": "页面上检测到的所有前端 JavaScript 库。[
|
|
743
|
+
"core/audits/dobetterweb/js-libraries.js | description": {
|
|
744
|
+
"message": "页面上检测到的所有前端 JavaScript 库。[详细了解此 JavaScript 库检测诊断审核](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/)。"
|
|
856
745
|
},
|
|
857
|
-
"
|
|
746
|
+
"core/audits/dobetterweb/js-libraries.js | title": {
|
|
858
747
|
"message": "已检测到的 JavaScript 库"
|
|
859
748
|
},
|
|
860
|
-
"
|
|
861
|
-
"message": "对于连接速度较慢的用户,通过 `document.write()` 动态注入的外部脚本可将网页加载延迟数十秒。[
|
|
749
|
+
"core/audits/dobetterweb/no-document-write.js | description": {
|
|
750
|
+
"message": "对于连接速度较慢的用户,通过 `document.write()` 动态注入的外部脚本可将网页加载延迟数十秒。[了解如何避免使用 document.write()](https://developer.chrome.com/docs/lighthouse/best-practices/no-document-write/)。"
|
|
862
751
|
},
|
|
863
|
-
"
|
|
752
|
+
"core/audits/dobetterweb/no-document-write.js | failureTitle": {
|
|
864
753
|
"message": "避免使用 `document.write()`"
|
|
865
754
|
},
|
|
866
|
-
"
|
|
755
|
+
"core/audits/dobetterweb/no-document-write.js | title": {
|
|
867
756
|
"message": "请勿使用 `document.write()`"
|
|
868
757
|
},
|
|
869
|
-
"
|
|
870
|
-
"message": "
|
|
871
|
-
},
|
|
872
|
-
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | columnVersion": {
|
|
873
|
-
"message": "库版本"
|
|
874
|
-
},
|
|
875
|
-
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | columnVuln": {
|
|
876
|
-
"message": "漏洞数量"
|
|
758
|
+
"core/audits/dobetterweb/notification-on-start.js | description": {
|
|
759
|
+
"message": "如果网站在缺少上下文的情况下请求发送通知,会导致用户不信任网站或感到困惑。建议将请求与用户手势进行绑定。[详细了解如何以负责任的方式获取通知权限](https://developer.chrome.com/docs/lighthouse/best-practices/notification-on-start/)。"
|
|
877
760
|
},
|
|
878
|
-
"
|
|
879
|
-
"message": "某些第三方脚本可能包含已知的安全漏洞,攻击者很容易识别和利用这些漏洞。[了解详情](https://web.dev/no-vulnerable-libraries/)。"
|
|
880
|
-
},
|
|
881
|
-
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | displayValue": {
|
|
882
|
-
"message": "{itemCount,plural, =1{检测到 1 个漏洞}other{检测到 # 个漏洞}}"
|
|
883
|
-
},
|
|
884
|
-
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | failureTitle": {
|
|
885
|
-
"message": "包含有已知安全漏洞的前端 JavaScript 库"
|
|
886
|
-
},
|
|
887
|
-
"lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | title": {
|
|
888
|
-
"message": "避免使用含已知安全漏洞的前端 JavaScript 库"
|
|
889
|
-
},
|
|
890
|
-
"lighthouse-core/audits/dobetterweb/notification-on-start.js | description": {
|
|
891
|
-
"message": "如果网站在缺少上下文的情况下请求发送通知,会导致用户不信任网站或感到困惑。建议将请求与用户手势进行绑定。[了解详情](https://web.dev/notification-on-start/)。"
|
|
892
|
-
},
|
|
893
|
-
"lighthouse-core/audits/dobetterweb/notification-on-start.js | failureTitle": {
|
|
761
|
+
"core/audits/dobetterweb/notification-on-start.js | failureTitle": {
|
|
894
762
|
"message": "在网页加载时请求通知权限"
|
|
895
763
|
},
|
|
896
|
-
"
|
|
764
|
+
"core/audits/dobetterweb/notification-on-start.js | title": {
|
|
897
765
|
"message": "避免在网页加载时请求通知权限"
|
|
898
766
|
},
|
|
899
|
-
"
|
|
900
|
-
"message": "
|
|
767
|
+
"core/audits/dobetterweb/paste-preventing-inputs.js | description": {
|
|
768
|
+
"message": "Preventing input pasting is a UX anti-pattern, and undermines good security policy. [Learn more about user-friendly input fields](https://developer.chrome.com/docs/lighthouse/best-practices/paste-preventing-inputs/)."
|
|
901
769
|
},
|
|
902
|
-
"
|
|
903
|
-
"message": "
|
|
770
|
+
"core/audits/dobetterweb/paste-preventing-inputs.js | failureTitle": {
|
|
771
|
+
"message": "Prevents users from pasting into input fields"
|
|
904
772
|
},
|
|
905
|
-
"
|
|
906
|
-
"message": "
|
|
773
|
+
"core/audits/dobetterweb/paste-preventing-inputs.js | title": {
|
|
774
|
+
"message": "Allows users to paste into input fields"
|
|
907
775
|
},
|
|
908
|
-
"
|
|
776
|
+
"core/audits/dobetterweb/uses-http2.js | columnProtocol": {
|
|
909
777
|
"message": "协议"
|
|
910
778
|
},
|
|
911
|
-
"
|
|
912
|
-
"message": "HTTP/2 提供了许多优于 HTTP/1.1 的益处,包括二进制标头和多路复用。[
|
|
779
|
+
"core/audits/dobetterweb/uses-http2.js | description": {
|
|
780
|
+
"message": "HTTP/2 提供了许多优于 HTTP/1.1 的益处,包括二进制标头和多路复用。[详细了解 HTTP/2](https://developer.chrome.com/docs/lighthouse/best-practices/uses-http2/)。"
|
|
913
781
|
},
|
|
914
|
-
"
|
|
782
|
+
"core/audits/dobetterweb/uses-http2.js | displayValue": {
|
|
915
783
|
"message": "{itemCount,plural, =1{1 条请求未通过 HTTP/2 传送}other{# 条请求未通过 HTTP/2 传送}}"
|
|
916
784
|
},
|
|
917
|
-
"
|
|
785
|
+
"core/audits/dobetterweb/uses-http2.js | title": {
|
|
918
786
|
"message": "使用 HTTP/2"
|
|
919
787
|
},
|
|
920
|
-
"
|
|
921
|
-
"message": "
|
|
788
|
+
"core/audits/dobetterweb/uses-passive-event-listeners.js | description": {
|
|
789
|
+
"message": "建议您将轻触和滚轮事件监听器标记为 `passive`,以提高页面的滚动性能。[详细了解如何采用被动事件监听器](https://developer.chrome.com/docs/lighthouse/best-practices/uses-passive-event-listeners/)。"
|
|
922
790
|
},
|
|
923
|
-
"
|
|
791
|
+
"core/audits/dobetterweb/uses-passive-event-listeners.js | failureTitle": {
|
|
924
792
|
"message": "未使用被动式监听器来提高滚动性能"
|
|
925
793
|
},
|
|
926
|
-
"
|
|
794
|
+
"core/audits/dobetterweb/uses-passive-event-listeners.js | title": {
|
|
927
795
|
"message": "使用被动式监听器来提高滚动性能"
|
|
928
796
|
},
|
|
929
|
-
"
|
|
930
|
-
"message": "
|
|
797
|
+
"core/audits/errors-in-console.js | description": {
|
|
798
|
+
"message": "控制台中记录的错误表明有未解决的问题。这些问题的起因可能是网络请求失败和其他浏览器问题。[在控制台诊断审核中详细了解此错误](https://developer.chrome.com/docs/lighthouse/best-practices/errors-in-console/)"
|
|
931
799
|
},
|
|
932
|
-
"
|
|
800
|
+
"core/audits/errors-in-console.js | failureTitle": {
|
|
933
801
|
"message": "控制台日志中已记录浏览器错误"
|
|
934
802
|
},
|
|
935
|
-
"
|
|
803
|
+
"core/audits/errors-in-console.js | title": {
|
|
936
804
|
"message": "控制台日志中未记录浏览器错误"
|
|
937
805
|
},
|
|
938
|
-
"
|
|
939
|
-
"message": "利用 font-display
|
|
806
|
+
"core/audits/font-display.js | description": {
|
|
807
|
+
"message": "利用 `font-display` CSS 功能来确保用户在网页字体加载期间能看到文字。[详细了解 `font-display`](https://developer.chrome.com/docs/lighthouse/performance/font-display/)。"
|
|
940
808
|
},
|
|
941
|
-
"
|
|
809
|
+
"core/audits/font-display.js | failureTitle": {
|
|
942
810
|
"message": "确保文本在网页字体加载期间保持可见状态"
|
|
943
811
|
},
|
|
944
|
-
"
|
|
812
|
+
"core/audits/font-display.js | title": {
|
|
945
813
|
"message": "在网页字体加载期间,所有文本都保持可见状态"
|
|
946
814
|
},
|
|
947
|
-
"
|
|
815
|
+
"core/audits/font-display.js | undeclaredFontOriginWarning": {
|
|
948
816
|
"message": "{fontCountForOrigin,plural, =1{Lighthouse 无法自动检查来源 {fontOrigin} 的 `font-display` 值。}other{Lighthouse 无法自动检查来源 {fontOrigin} 的 `font-display` 值。}}"
|
|
949
817
|
},
|
|
950
|
-
"
|
|
818
|
+
"core/audits/image-aspect-ratio.js | columnActual": {
|
|
951
819
|
"message": "宽高比(实际)"
|
|
952
820
|
},
|
|
953
|
-
"
|
|
821
|
+
"core/audits/image-aspect-ratio.js | columnDisplayed": {
|
|
954
822
|
"message": "宽高比(显示)"
|
|
955
823
|
},
|
|
956
|
-
"
|
|
957
|
-
"message": "图像显示尺寸应与自然宽高比相匹配。[
|
|
824
|
+
"core/audits/image-aspect-ratio.js | description": {
|
|
825
|
+
"message": "图像显示尺寸应与自然宽高比相匹配。[详细了解图片宽高比](https://developer.chrome.com/docs/lighthouse/best-practices/image-aspect-ratio/)。"
|
|
958
826
|
},
|
|
959
|
-
"
|
|
827
|
+
"core/audits/image-aspect-ratio.js | failureTitle": {
|
|
960
828
|
"message": "显示的图像宽高比不正确"
|
|
961
829
|
},
|
|
962
|
-
"
|
|
830
|
+
"core/audits/image-aspect-ratio.js | title": {
|
|
963
831
|
"message": "显示的图像宽高比正确"
|
|
964
832
|
},
|
|
965
|
-
"
|
|
833
|
+
"core/audits/image-size-responsive.js | columnActual": {
|
|
966
834
|
"message": "实际大小"
|
|
967
835
|
},
|
|
968
|
-
"
|
|
836
|
+
"core/audits/image-size-responsive.js | columnDisplayed": {
|
|
969
837
|
"message": "显示时大小"
|
|
970
838
|
},
|
|
971
|
-
"
|
|
839
|
+
"core/audits/image-size-responsive.js | columnExpected": {
|
|
972
840
|
"message": "预期大小"
|
|
973
841
|
},
|
|
974
|
-
"
|
|
975
|
-
"message": "图片的自然尺寸应与显示屏大小及像素比成正比,这样才能令图片达到最清晰的显示效果。[
|
|
842
|
+
"core/audits/image-size-responsive.js | description": {
|
|
843
|
+
"message": "图片的自然尺寸应与显示屏大小及像素比成正比,这样才能令图片达到最清晰的显示效果。[了解如何提供自适应图片](https://web.dev/serve-responsive-images/)。"
|
|
976
844
|
},
|
|
977
|
-
"
|
|
845
|
+
"core/audits/image-size-responsive.js | failureTitle": {
|
|
978
846
|
"message": "所提供的部分图片采用了较低的分辨率"
|
|
979
847
|
},
|
|
980
|
-
"
|
|
848
|
+
"core/audits/image-size-responsive.js | title": {
|
|
981
849
|
"message": "所提供的图片都采用了合适的分辨率"
|
|
982
850
|
},
|
|
983
|
-
"
|
|
851
|
+
"core/audits/installable-manifest.js | already-installed": {
|
|
984
852
|
"message": "该应用已安装"
|
|
985
853
|
},
|
|
986
|
-
"
|
|
854
|
+
"core/audits/installable-manifest.js | cannot-download-icon": {
|
|
987
855
|
"message": "无法从清单下载必需的图标"
|
|
988
856
|
},
|
|
989
|
-
"
|
|
857
|
+
"core/audits/installable-manifest.js | columnValue": {
|
|
990
858
|
"message": "失败原因"
|
|
991
859
|
},
|
|
992
|
-
"
|
|
993
|
-
"message": "Service Worker 是一项技术,可让您的应用使用很多渐进式 Web 应用功能,例如离线、添加到主屏幕和推送通知。如果 Service Worker 和清单的实现均正确无误,浏览器可主动提示用户向其主屏幕中添加您的应用,这有助于提高互动度。[
|
|
860
|
+
"core/audits/installable-manifest.js | description": {
|
|
861
|
+
"message": "Service Worker 是一项技术,可让您的应用使用很多渐进式 Web 应用功能,例如离线、添加到主屏幕和推送通知。如果 Service Worker 和清单的实现均正确无误,浏览器可主动提示用户向其主屏幕中添加您的应用,这有助于提高互动度。[详细了解清单可安装性要求](https://developer.chrome.com/docs/lighthouse/pwa/installable-manifest/)。"
|
|
994
862
|
},
|
|
995
|
-
"
|
|
863
|
+
"core/audits/installable-manifest.js | displayValue": {
|
|
996
864
|
"message": "{itemCount,plural, =1{1 个原因}other{# 个原因}}"
|
|
997
865
|
},
|
|
998
|
-
"
|
|
866
|
+
"core/audits/installable-manifest.js | failureTitle": {
|
|
999
867
|
"message": "Web 应用清单或 Service Worker 不符合可安装性要求"
|
|
1000
868
|
},
|
|
1001
|
-
"
|
|
869
|
+
"core/audits/installable-manifest.js | ids-do-not-match": {
|
|
1002
870
|
"message": "Play 商店应用网址和 Play 商店 ID 不相符"
|
|
1003
871
|
},
|
|
1004
|
-
"
|
|
872
|
+
"core/audits/installable-manifest.js | in-incognito": {
|
|
1005
873
|
"message": "该网页是在无痕式窗口中加载的"
|
|
1006
874
|
},
|
|
1007
|
-
"
|
|
875
|
+
"core/audits/installable-manifest.js | manifest-display-not-supported": {
|
|
1008
876
|
"message": "清单“display”属性必须是“standalone”、“fullscreen”或“minimal-ui”之一"
|
|
1009
877
|
},
|
|
1010
|
-
"
|
|
878
|
+
"core/audits/installable-manifest.js | manifest-display-override-not-supported": {
|
|
1011
879
|
"message": "清单包含“display_override”字段,因此第一个受支持的显示模式必须是“standalone”、“fullscreen”或“minimal-ui”之一"
|
|
1012
880
|
},
|
|
1013
|
-
"
|
|
881
|
+
"core/audits/installable-manifest.js | manifest-empty": {
|
|
1014
882
|
"message": "清单无法提取、为空或无法解析"
|
|
1015
883
|
},
|
|
1016
|
-
"
|
|
884
|
+
"core/audits/installable-manifest.js | manifest-location-changed": {
|
|
1017
885
|
"message": "在提取清单期间,清单网址发生了更改。"
|
|
1018
886
|
},
|
|
1019
|
-
"
|
|
887
|
+
"core/audits/installable-manifest.js | manifest-missing-name-or-short-name": {
|
|
1020
888
|
"message": "清单未包含“name”或“short_name”字段"
|
|
1021
889
|
},
|
|
1022
|
-
"
|
|
890
|
+
"core/audits/installable-manifest.js | manifest-missing-suitable-icon": {
|
|
1023
891
|
"message": "清单未包含合适的图标 - 必须提供不小于 {value0} 像素的 PNG、SVG 或 WebP 格式图标;必须设置 sizes 属性;如果设置了 purpose 属性,其中必须包含“any”。"
|
|
1024
892
|
},
|
|
1025
|
-
"
|
|
893
|
+
"core/audits/installable-manifest.js | no-acceptable-icon": {
|
|
1026
894
|
"message": "清单未提供不小于 {value0} 正方形像素的 PNG、SVG 或 WebP 格式图标,而且 purpose 属性设为“any”或未设置"
|
|
1027
895
|
},
|
|
1028
|
-
"
|
|
896
|
+
"core/audits/installable-manifest.js | no-icon-available": {
|
|
1029
897
|
"message": "下载的图标为空或已损坏"
|
|
1030
898
|
},
|
|
1031
|
-
"
|
|
899
|
+
"core/audits/installable-manifest.js | no-id-specified": {
|
|
1032
900
|
"message": "未提供 Play 商店 ID"
|
|
1033
901
|
},
|
|
1034
|
-
"
|
|
902
|
+
"core/audits/installable-manifest.js | no-manifest": {
|
|
1035
903
|
"message": "该网页没有清单 <link> 网址"
|
|
1036
904
|
},
|
|
1037
|
-
"
|
|
905
|
+
"core/audits/installable-manifest.js | no-matching-service-worker": {
|
|
1038
906
|
"message": "未检测到任何相符的 Service Worker。您可能需要重新加载网页,或检查当前网页的 Service Worker 范围是否包含清单中的范围和起始网址。"
|
|
1039
907
|
},
|
|
1040
|
-
"
|
|
908
|
+
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
1041
909
|
"message": "如果清单不含“start_url”字段,则无法检查 Service Worker"
|
|
1042
910
|
},
|
|
1043
|
-
"
|
|
911
|
+
"core/audits/installable-manifest.js | noErrorId": {
|
|
1044
912
|
"message": "系统无法识别可安装性错误 ID“{errorId}”"
|
|
1045
913
|
},
|
|
1046
|
-
"
|
|
914
|
+
"core/audits/installable-manifest.js | not-from-secure-origin": {
|
|
1047
915
|
"message": "该网页不是从安全来源提供的"
|
|
1048
916
|
},
|
|
1049
|
-
"
|
|
917
|
+
"core/audits/installable-manifest.js | not-in-main-frame": {
|
|
1050
918
|
"message": "该网页不是在主框架中加载的"
|
|
1051
919
|
},
|
|
1052
|
-
"
|
|
920
|
+
"core/audits/installable-manifest.js | not-offline-capable": {
|
|
1053
921
|
"message": "该网页无法离线使用"
|
|
1054
922
|
},
|
|
1055
|
-
"
|
|
923
|
+
"core/audits/installable-manifest.js | pipeline-restarted": {
|
|
1056
924
|
"message": "PWA 已卸载完毕,正在重置可安装性检查。"
|
|
1057
925
|
},
|
|
1058
|
-
"
|
|
926
|
+
"core/audits/installable-manifest.js | platform-not-supported-on-android": {
|
|
1059
927
|
"message": "指定的应用平台在 Android 设备上不受支持"
|
|
1060
928
|
},
|
|
1061
|
-
"
|
|
929
|
+
"core/audits/installable-manifest.js | prefer-related-applications": {
|
|
1062
930
|
"message": "清单指定了 prefer_related_applications: true"
|
|
1063
931
|
},
|
|
1064
|
-
"
|
|
932
|
+
"core/audits/installable-manifest.js | prefer-related-applications-only-beta-stable": {
|
|
1065
933
|
"message": "prefer_related_applications 仅适用于 Android 设备上的 Chrome Beta 版和稳定版。"
|
|
1066
934
|
},
|
|
1067
|
-
"
|
|
935
|
+
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1068
936
|
"message": "Lighthouse 无法确定是否有 Service Worker。请在更新版本的 Chrome 中重试。"
|
|
1069
937
|
},
|
|
1070
|
-
"
|
|
938
|
+
"core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
|
939
|
+
"message": "清单网址的架构 ({scheme}) 在 Android 设备上不受支持。"
|
|
940
|
+
},
|
|
941
|
+
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1071
942
|
"message": "清单起始网址无效"
|
|
1072
943
|
},
|
|
1073
|
-
"
|
|
944
|
+
"core/audits/installable-manifest.js | title": {
|
|
1074
945
|
"message": "Web 应用清单和 Service Worker 符合可安装性要求"
|
|
1075
946
|
},
|
|
1076
|
-
"
|
|
947
|
+
"core/audits/installable-manifest.js | url-not-supported-for-webapk": {
|
|
1077
948
|
"message": "清单中的某个网址包含用户名、密码或端口"
|
|
1078
949
|
},
|
|
1079
|
-
"
|
|
950
|
+
"core/audits/installable-manifest.js | warn-not-offline-capable": {
|
|
1080
951
|
"message": "该网页无法离线使用。Chrome 于 2021 年 8 月推出 93 稳定版之后,不会将该网页视为可安装。"
|
|
1081
952
|
},
|
|
1082
|
-
"
|
|
953
|
+
"core/audits/is-on-https.js | allowed": {
|
|
1083
954
|
"message": "允许"
|
|
1084
955
|
},
|
|
1085
|
-
"
|
|
956
|
+
"core/audits/is-on-https.js | blocked": {
|
|
1086
957
|
"message": "已屏蔽"
|
|
1087
958
|
},
|
|
1088
|
-
"
|
|
959
|
+
"core/audits/is-on-https.js | columnInsecureURL": {
|
|
1089
960
|
"message": "不安全的网址"
|
|
1090
961
|
},
|
|
1091
|
-
"
|
|
962
|
+
"core/audits/is-on-https.js | columnResolution": {
|
|
1092
963
|
"message": "对请求的处理方式"
|
|
1093
964
|
},
|
|
1094
|
-
"
|
|
1095
|
-
"message": "所有网站都应该通过 HTTPS
|
|
965
|
+
"core/audits/is-on-https.js | description": {
|
|
966
|
+
"message": "所有网站都应该通过 HTTPS 来保护,即使网站不处理敏感数据,也应如此。这包括要避免使用[混合内容](https://developers.google.com/web/fundamentals/security/prevent-mixed-content/what-is-mixed-content)(即:通过 HTTPS 实现初始请求,但却通过 HTTP 加载某些资源)。HTTPS 可防止入侵程序篡改或被动地监听您的应用与用户之间的通信,它是 HTTP/2 和许多新的网络平台 API 的先决条件。[详细了解 HTTPS](https://developer.chrome.com/docs/lighthouse/pwa/is-on-https/)。"
|
|
1096
967
|
},
|
|
1097
|
-
"
|
|
968
|
+
"core/audits/is-on-https.js | displayValue": {
|
|
1098
969
|
"message": "{itemCount,plural, =1{发现 1 条不安全的请求}other{发现 # 条不安全的请求}}"
|
|
1099
970
|
},
|
|
1100
|
-
"
|
|
971
|
+
"core/audits/is-on-https.js | failureTitle": {
|
|
1101
972
|
"message": "未使用 HTTPS"
|
|
1102
973
|
},
|
|
1103
|
-
"
|
|
974
|
+
"core/audits/is-on-https.js | title": {
|
|
1104
975
|
"message": "使用 HTTPS"
|
|
1105
976
|
},
|
|
1106
|
-
"
|
|
977
|
+
"core/audits/is-on-https.js | upgraded": {
|
|
1107
978
|
"message": "自动升级至 HTTPS"
|
|
1108
979
|
},
|
|
1109
|
-
"
|
|
980
|
+
"core/audits/is-on-https.js | warning": {
|
|
1110
981
|
"message": "允许(附带警告)"
|
|
1111
982
|
},
|
|
1112
|
-
"
|
|
1113
|
-
"message": "
|
|
983
|
+
"core/audits/largest-contentful-paint-element.js | description": {
|
|
984
|
+
"message": "这是此视口内绘制的最大内容元素。[详细了解 Largest Contentful Paint 元素](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)"
|
|
1114
985
|
},
|
|
1115
|
-
"
|
|
986
|
+
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1116
987
|
"message": "最大内容渲染时间元素"
|
|
1117
988
|
},
|
|
1118
|
-
"
|
|
989
|
+
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1119
990
|
"message": "对 CLS 的影响程度"
|
|
1120
991
|
},
|
|
1121
|
-
"
|
|
1122
|
-
"message": "这些 DOM 元素对该网页的 CLS 影响最大。"
|
|
992
|
+
"core/audits/layout-shift-elements.js | description": {
|
|
993
|
+
"message": "这些 DOM 元素对该网页的 CLS 影响最大。[了解如何改善 CLS](https://web.dev/optimize-cls/)"
|
|
1123
994
|
},
|
|
1124
|
-
"
|
|
995
|
+
"core/audits/layout-shift-elements.js | title": {
|
|
1125
996
|
"message": "请避免出现大幅度的布局偏移"
|
|
1126
997
|
},
|
|
1127
|
-
"
|
|
1128
|
-
"message": "
|
|
998
|
+
"core/audits/lcp-lazy-loaded.js | description": {
|
|
999
|
+
"message": "被延迟加载的首屏图片会在页面生命周期内的较晚时间渲染,这可能会致使系统延迟 Largest Contentful Paint。[详细了解最佳延迟加载](https://web.dev/lcp-lazy-loading/)。"
|
|
1129
1000
|
},
|
|
1130
|
-
"
|
|
1001
|
+
"core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1131
1002
|
"message": "Largest Contentful Paint 所对应的图片被延迟加载了"
|
|
1132
1003
|
},
|
|
1133
|
-
"
|
|
1004
|
+
"core/audits/lcp-lazy-loaded.js | title": {
|
|
1134
1005
|
"message": "Largest Contentful Paint 所对应的图片未被延迟加载"
|
|
1135
1006
|
},
|
|
1136
|
-
"
|
|
1137
|
-
"message": "列出了主线程中运行时间最长的任务,有助于识别出导致输入延迟的最主要原因。[
|
|
1007
|
+
"core/audits/long-tasks.js | description": {
|
|
1008
|
+
"message": "列出了主线程中运行时间最长的任务,有助于识别出导致输入延迟的最主要原因。[了解如何避免出现长时间运行的主线程任务](https://web.dev/long-tasks-devtools/)"
|
|
1138
1009
|
},
|
|
1139
|
-
"
|
|
1010
|
+
"core/audits/long-tasks.js | displayValue": {
|
|
1140
1011
|
"message": "{itemCount,plural, =1{发现了 # 项长时间运行的任务}other{发现了 # 项长时间运行的任务}}"
|
|
1141
1012
|
},
|
|
1142
|
-
"
|
|
1013
|
+
"core/audits/long-tasks.js | title": {
|
|
1143
1014
|
"message": "应避免出现长时间运行的主线程任务"
|
|
1144
1015
|
},
|
|
1145
|
-
"
|
|
1016
|
+
"core/audits/mainthread-work-breakdown.js | columnCategory": {
|
|
1146
1017
|
"message": "类别"
|
|
1147
1018
|
},
|
|
1148
|
-
"
|
|
1149
|
-
"message": "建议您减少为解析、编译和执行 JS 而花费的时间。您可能会发现,提供较小的 JS
|
|
1019
|
+
"core/audits/mainthread-work-breakdown.js | description": {
|
|
1020
|
+
"message": "建议您减少为解析、编译和执行 JS 而花费的时间。您可能会发现,提供较小的 JS 载荷有助于实现此目标。[了解如何尽可能减少主线程工作](https://developer.chrome.com/docs/lighthouse/performance/mainthread-work-breakdown/)"
|
|
1150
1021
|
},
|
|
1151
|
-
"
|
|
1022
|
+
"core/audits/mainthread-work-breakdown.js | failureTitle": {
|
|
1152
1023
|
"message": "最大限度地减少主线程工作"
|
|
1153
1024
|
},
|
|
1154
|
-
"
|
|
1025
|
+
"core/audits/mainthread-work-breakdown.js | title": {
|
|
1155
1026
|
"message": "最大限度地减少主线程工作"
|
|
1156
1027
|
},
|
|
1157
|
-
"
|
|
1158
|
-
"message": "
|
|
1028
|
+
"core/audits/manual/pwa-cross-browser.js | description": {
|
|
1029
|
+
"message": "网站应该能在所有主流浏览器中正常显示,以便覆盖尽可能多的用户。[了解跨浏览器兼容性](https://developer.chrome.com/docs/lighthouse/pwa/pwa-cross-browser/)。"
|
|
1159
1030
|
},
|
|
1160
|
-
"
|
|
1031
|
+
"core/audits/manual/pwa-cross-browser.js | title": {
|
|
1161
1032
|
"message": "网站能在各种浏览器中正常显示"
|
|
1162
1033
|
},
|
|
1163
|
-
"
|
|
1164
|
-
"message": "确保各个网页可通过网址建立深层链接,并且这些网址是独一无二的,可以在社交媒体上共享。[
|
|
1034
|
+
"core/audits/manual/pwa-each-page-has-url.js | description": {
|
|
1035
|
+
"message": "确保各个网页可通过网址建立深层链接,并且这些网址是独一无二的,可以在社交媒体上共享。[详细了解如何提供深层链接](https://developer.chrome.com/docs/lighthouse/pwa/pwa-each-page-has-url/)。"
|
|
1165
1036
|
},
|
|
1166
|
-
"
|
|
1037
|
+
"core/audits/manual/pwa-each-page-has-url.js | title": {
|
|
1167
1038
|
"message": "每个网页都有一个网址"
|
|
1168
1039
|
},
|
|
1169
|
-
"
|
|
1170
|
-
"message": "无论点按哪个链接,都应能快速跳转到相应页面,即使网速缓慢也应如此。若想让用户感知到出色的网页加载速度,这种体验至关重要。[
|
|
1040
|
+
"core/audits/manual/pwa-page-transitions.js | description": {
|
|
1041
|
+
"message": "无论点按哪个链接,都应能快速跳转到相应页面,即使网速缓慢也应如此。若想让用户感知到出色的网页加载速度,这种体验至关重要。[详细了解网页转换](https://developer.chrome.com/docs/lighthouse/pwa/pwa-page-transitions/)。"
|
|
1171
1042
|
},
|
|
1172
|
-
"
|
|
1043
|
+
"core/audits/manual/pwa-page-transitions.js | title": {
|
|
1173
1044
|
"message": "在不同网页之间跳转时,用户感觉不到网页加载缓慢"
|
|
1174
1045
|
},
|
|
1175
|
-
"
|
|
1176
|
-
"message": "
|
|
1046
|
+
"core/audits/maskable-icon.js | description": {
|
|
1047
|
+
"message": "利用可遮盖式图标,可确保应用安装到设备上后,图片可填满整个形状轮廓,而不会出现黑边。[了解可遮盖式清单图标](https://developer.chrome.com/docs/lighthouse/pwa/maskable-icon-audit/)。"
|
|
1177
1048
|
},
|
|
1178
|
-
"
|
|
1049
|
+
"core/audits/maskable-icon.js | failureTitle": {
|
|
1179
1050
|
"message": "清单不含可遮罩的图标"
|
|
1180
1051
|
},
|
|
1181
|
-
"
|
|
1052
|
+
"core/audits/maskable-icon.js | title": {
|
|
1182
1053
|
"message": "清单含有可遮罩的图标"
|
|
1183
1054
|
},
|
|
1184
|
-
"
|
|
1185
|
-
"message": "
|
|
1055
|
+
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1056
|
+
"message": "Cumulative Layout Shift 旨在衡量可见元素在视口内的移动情况。[详细了解 Cumulative Layout Shift 指标](https://web.dev/cls/)。"
|
|
1186
1057
|
},
|
|
1187
|
-
"
|
|
1188
|
-
"message": "
|
|
1058
|
+
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1059
|
+
"message": "Interaction to Next Paint 用于衡量网页响应速度,即网页需要多久才会明显响应用户输入。[详细了解 Interaction to Next Paint 指标](https://web.dev/inp/)。"
|
|
1189
1060
|
},
|
|
1190
|
-
"
|
|
1191
|
-
"message": "
|
|
1061
|
+
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1062
|
+
"message": "First Contentful Paint 标记了绘制出首个文本或首张图片的时间。[详细了解 First Contentful Paint 指标](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)。"
|
|
1192
1063
|
},
|
|
1193
|
-
"
|
|
1194
|
-
"message": "
|
|
1064
|
+
"core/audits/metrics/first-meaningful-paint.js | description": {
|
|
1065
|
+
"message": "“首次有效绘制时间”测量的是网页主要内容开始对用户显示的时间。[详细了解“首次有效绘制时间”指标](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/)。"
|
|
1195
1066
|
},
|
|
1196
|
-
"
|
|
1197
|
-
"message": "
|
|
1067
|
+
"core/audits/metrics/interactive.js | description": {
|
|
1068
|
+
"message": "“可交互时间”是指网页需要多长时间才能提供完整的交互功能。[详细了解“可交互时间”指标](https://developer.chrome.com/docs/lighthouse/performance/interactive/)。"
|
|
1198
1069
|
},
|
|
1199
|
-
"
|
|
1200
|
-
"message": "
|
|
1070
|
+
"core/audits/metrics/largest-contentful-paint.js | description": {
|
|
1071
|
+
"message": "Largest Contentful Paint 标记了绘制出最大文本或图片的时间。[详细了解 Largest Contentful Paint 指标](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)"
|
|
1201
1072
|
},
|
|
1202
|
-
"
|
|
1203
|
-
"message": "
|
|
1073
|
+
"core/audits/metrics/max-potential-fid.js | description": {
|
|
1074
|
+
"message": "您的用户可能会遇到的最长首次输入延迟是用时最长的任务的耗时。[详细了解 Maximum Potential First Input Delay 指标](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-max-potential-fid/)。"
|
|
1204
1075
|
},
|
|
1205
|
-
"
|
|
1206
|
-
"message": "
|
|
1076
|
+
"core/audits/metrics/speed-index.js | description": {
|
|
1077
|
+
"message": "Speed Index 表明了网页内容的可见填充速度。[详细了解 Speed Index 指标](https://developer.chrome.com/docs/lighthouse/performance/speed-index/)。"
|
|
1207
1078
|
},
|
|
1208
|
-
"
|
|
1209
|
-
"message": "
|
|
1079
|
+
"core/audits/metrics/total-blocking-time.js | description": {
|
|
1080
|
+
"message": "当任务用时超过 50 毫秒时计算首次内容绘制 (FCP) 和可交互时间之间的所有时间段的总和,以毫秒表示。[详细了解 Total Blocking Time 指标](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-total-blocking-time/)。"
|
|
1210
1081
|
},
|
|
1211
|
-
"
|
|
1082
|
+
"core/audits/network-rtt.js | description": {
|
|
1083
|
+
"message": "网络往返时间 (RTT) 对性能有很大的影响。如果与来源之间的 RTT 较长,则表明缩短服务器与用户之间的距离可能会提高性能。[详细了解往返时间](https://hpbn.co/primer-on-latency-and-bandwidth/)。"
|
|
1084
|
+
},
|
|
1085
|
+
"core/audits/network-rtt.js | title": {
|
|
1212
1086
|
"message": "网络往返时间"
|
|
1213
1087
|
},
|
|
1214
|
-
"
|
|
1215
|
-
"message": "服务器延迟时间可能会对网站性能产生不良影响。如果源服务器的延迟时间较长,则表明服务器过载或后端性能较差。[
|
|
1088
|
+
"core/audits/network-server-latency.js | description": {
|
|
1089
|
+
"message": "服务器延迟时间可能会对网站性能产生不良影响。如果源服务器的延迟时间较长,则表明服务器过载或后端性能较差。[详细了解服务器响应时间](https://hpbn.co/primer-on-web-performance/#analyzing-the-resource-waterfall)。"
|
|
1216
1090
|
},
|
|
1217
|
-
"
|
|
1091
|
+
"core/audits/network-server-latency.js | title": {
|
|
1218
1092
|
"message": "服务器后端延迟"
|
|
1219
1093
|
},
|
|
1220
|
-
"
|
|
1221
|
-
"message": "“`unload`”事件不会可靠地触发,而且监听该事件可能会妨碍系统实施“往返缓存”之类的浏览器优化策略。请改用“`pagehide`”或“`visibilitychange`”事件。[
|
|
1094
|
+
"core/audits/no-unload-listeners.js | description": {
|
|
1095
|
+
"message": "“`unload`”事件不会可靠地触发,而且监听该事件可能会妨碍系统实施“往返缓存”之类的浏览器优化策略。请改用“`pagehide`”或“`visibilitychange`”事件。[详细了解如何卸载事件监听器](https://web.dev/bfcache/#never-use-the-unload-event)"
|
|
1222
1096
|
},
|
|
1223
|
-
"
|
|
1097
|
+
"core/audits/no-unload-listeners.js | failureTitle": {
|
|
1224
1098
|
"message": "注册“`unload`”事件监听器"
|
|
1225
1099
|
},
|
|
1226
|
-
"
|
|
1100
|
+
"core/audits/no-unload-listeners.js | title": {
|
|
1227
1101
|
"message": "避免使用“`unload`”事件监听器"
|
|
1228
1102
|
},
|
|
1229
|
-
"
|
|
1230
|
-
"message": "未合成的动画可能会卡顿并增加 CLS。[
|
|
1103
|
+
"core/audits/non-composited-animations.js | description": {
|
|
1104
|
+
"message": "未合成的动画可能会卡顿并增加 CLS。[了解如何避免使用未合成的动画](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
|
|
1231
1105
|
},
|
|
1232
|
-
"
|
|
1106
|
+
"core/audits/non-composited-animations.js | displayValue": {
|
|
1233
1107
|
"message": "{itemCount,plural, =1{发现了 # 个动画元素}other{发现了 # 个动画元素}}"
|
|
1234
1108
|
},
|
|
1235
|
-
"
|
|
1109
|
+
"core/audits/non-composited-animations.js | filterMayMovePixels": {
|
|
1236
1110
|
"message": "某个过滤相关属性可能会移动像素"
|
|
1237
1111
|
},
|
|
1238
|
-
"
|
|
1112
|
+
"core/audits/non-composited-animations.js | incompatibleAnimations": {
|
|
1239
1113
|
"message": "目标中另有一个不兼容的动画"
|
|
1240
1114
|
},
|
|
1241
|
-
"
|
|
1115
|
+
"core/audits/non-composited-animations.js | nonReplaceCompositeMode": {
|
|
1242
1116
|
"message": "效果中含有除了“replace”以外的合成模式"
|
|
1243
1117
|
},
|
|
1244
|
-
"
|
|
1118
|
+
"core/audits/non-composited-animations.js | title": {
|
|
1245
1119
|
"message": "避免使用未合成的动画"
|
|
1246
1120
|
},
|
|
1247
|
-
"
|
|
1121
|
+
"core/audits/non-composited-animations.js | transformDependsBoxSize": {
|
|
1248
1122
|
"message": "某个转换相关属性取决于元素边界框的大小"
|
|
1249
1123
|
},
|
|
1250
|
-
"
|
|
1124
|
+
"core/audits/non-composited-animations.js | unsupportedCSSProperty": {
|
|
1251
1125
|
"message": "{propertyCount,plural, =1{不受支持的 CSS 属性:{properties}}other{不受支持的 CSS 属性:{properties}}}"
|
|
1252
1126
|
},
|
|
1253
|
-
"
|
|
1127
|
+
"core/audits/non-composited-animations.js | unsupportedTimingParameters": {
|
|
1254
1128
|
"message": "效果含有不受支持的时间参数"
|
|
1255
1129
|
},
|
|
1256
|
-
"
|
|
1257
|
-
"message": "请将网络请求的数量和数据大小保持在提供的性能预算所设定的目标之内。[
|
|
1130
|
+
"core/audits/performance-budget.js | description": {
|
|
1131
|
+
"message": "请将网络请求的数量和数据大小保持在提供的性能预算所设定的目标之内。[详细了解性能预算](https://developers.google.com/web/tools/lighthouse/audits/budgets)。"
|
|
1258
1132
|
},
|
|
1259
|
-
"
|
|
1133
|
+
"core/audits/performance-budget.js | requestCountOverBudget": {
|
|
1260
1134
|
"message": "{count,plural, =1{1 条请求}other{# 条请求}}"
|
|
1261
1135
|
},
|
|
1262
|
-
"
|
|
1136
|
+
"core/audits/performance-budget.js | title": {
|
|
1263
1137
|
"message": "性能预算"
|
|
1264
1138
|
},
|
|
1265
|
-
"
|
|
1266
|
-
"message": "请预加载 `optional` 字体以方便初访者使用。[
|
|
1139
|
+
"core/audits/preload-fonts.js | description": {
|
|
1140
|
+
"message": "请预加载 `optional` 字体以方便初访者使用。[详细了解如何预加载字体](https://web.dev/preload-optional-fonts/)"
|
|
1267
1141
|
},
|
|
1268
|
-
"
|
|
1142
|
+
"core/audits/preload-fonts.js | failureTitle": {
|
|
1269
1143
|
"message": "未预加载使用 `font-display: optional` 的字体"
|
|
1270
1144
|
},
|
|
1271
|
-
"
|
|
1145
|
+
"core/audits/preload-fonts.js | title": {
|
|
1272
1146
|
"message": "已预加载使用 `font-display: optional` 的字体"
|
|
1273
1147
|
},
|
|
1274
|
-
"
|
|
1275
|
-
"message": "
|
|
1148
|
+
"core/audits/prioritize-lcp-image.js | description": {
|
|
1149
|
+
"message": "如果向网页中动态添加 LCP 元素,您应预加载图片以缩短 LCP 用时。[详细了解如何预加载 LCP 元素](https://web.dev/optimize-lcp/#optimize-when-the-resource-is-discovered)。"
|
|
1276
1150
|
},
|
|
1277
|
-
"
|
|
1151
|
+
"core/audits/prioritize-lcp-image.js | title": {
|
|
1278
1152
|
"message": "预加载 LCP 元素所用图片"
|
|
1279
1153
|
},
|
|
1280
|
-
"
|
|
1281
|
-
"message": "重定向会在网页可加载前引入更多延迟。[
|
|
1154
|
+
"core/audits/redirects.js | description": {
|
|
1155
|
+
"message": "重定向会在网页可加载前引入更多延迟。[了解如何避免网页重定向](https://developer.chrome.com/docs/lighthouse/performance/redirects/)。"
|
|
1282
1156
|
},
|
|
1283
|
-
"
|
|
1157
|
+
"core/audits/redirects.js | title": {
|
|
1284
1158
|
"message": "避免多次网页重定向"
|
|
1285
1159
|
},
|
|
1286
|
-
"
|
|
1287
|
-
"message": "
|
|
1160
|
+
"core/audits/resource-summary.js | description": {
|
|
1161
|
+
"message": "若要根据页面资源的数量和大小设置预算,请添加 budget.json 文件。[详细了解性能预算](https://web.dev/use-lighthouse-for-performance-budgets/)。"
|
|
1288
1162
|
},
|
|
1289
|
-
"
|
|
1163
|
+
"core/audits/resource-summary.js | displayValue": {
|
|
1290
1164
|
"message": "{requestCount,plural, =1{1 项请求 • {byteCount, number, bytes} KiB}other{# 项请求 • {byteCount, number, bytes} KiB}}"
|
|
1291
1165
|
},
|
|
1292
|
-
"
|
|
1166
|
+
"core/audits/resource-summary.js | title": {
|
|
1293
1167
|
"message": "请保持较低的请求数量和较小的传输大小"
|
|
1294
1168
|
},
|
|
1295
|
-
"
|
|
1296
|
-
"message": "规范链接用于建议应在搜索结果中显示哪个网址。[
|
|
1169
|
+
"core/audits/seo/canonical.js | description": {
|
|
1170
|
+
"message": "规范链接用于建议应在搜索结果中显示哪个网址。[详细了解规范链接](https://developer.chrome.com/docs/lighthouse/seo/canonical/)。"
|
|
1297
1171
|
},
|
|
1298
|
-
"
|
|
1172
|
+
"core/audits/seo/canonical.js | explanationConflict": {
|
|
1299
1173
|
"message": "存在多个相互冲突的网址({urlList})"
|
|
1300
1174
|
},
|
|
1301
|
-
"
|
|
1175
|
+
"core/audits/seo/canonical.js | explanationInvalid": {
|
|
1302
1176
|
"message": "网址无效 ({url})"
|
|
1303
1177
|
},
|
|
1304
|
-
"
|
|
1178
|
+
"core/audits/seo/canonical.js | explanationPointsElsewhere": {
|
|
1305
1179
|
"message": "指向了其他 `hreflang` 位置 ({url})"
|
|
1306
1180
|
},
|
|
1307
|
-
"
|
|
1181
|
+
"core/audits/seo/canonical.js | explanationRelative": {
|
|
1308
1182
|
"message": "不是一个绝对网址 ({url})"
|
|
1309
1183
|
},
|
|
1310
|
-
"
|
|
1184
|
+
"core/audits/seo/canonical.js | explanationRoot": {
|
|
1311
1185
|
"message": "指向了网域的根网址(首页),而非等效内容页面"
|
|
1312
1186
|
},
|
|
1313
|
-
"
|
|
1187
|
+
"core/audits/seo/canonical.js | failureTitle": {
|
|
1314
1188
|
"message": "文档缺少有效的 `rel=canonical`"
|
|
1315
1189
|
},
|
|
1316
|
-
"
|
|
1190
|
+
"core/audits/seo/canonical.js | title": {
|
|
1317
1191
|
"message": "文档的 `rel=canonical` 有效"
|
|
1318
1192
|
},
|
|
1319
|
-
"
|
|
1193
|
+
"core/audits/seo/crawlable-anchors.js | columnFailingLink": {
|
|
1320
1194
|
"message": "无法抓取的链接"
|
|
1321
1195
|
},
|
|
1322
|
-
"
|
|
1323
|
-
"message": "搜索引擎可能会使用链接中的 `href` 属性来抓取网站。请确保锚元素的 `href` 属性链接到合适的目标网站,以便搜索引擎发现该网站上的更多网页。[
|
|
1196
|
+
"core/audits/seo/crawlable-anchors.js | description": {
|
|
1197
|
+
"message": "搜索引擎可能会使用链接中的 `href` 属性来抓取网站。请确保锚元素的 `href` 属性链接到合适的目标网站,以便搜索引擎发现该网站上的更多网页。[了解如何使链接可供抓取](https://support.google.com/webmasters/answer/9112205)"
|
|
1324
1198
|
},
|
|
1325
|
-
"
|
|
1199
|
+
"core/audits/seo/crawlable-anchors.js | failureTitle": {
|
|
1326
1200
|
"message": "有无法抓取的链接"
|
|
1327
1201
|
},
|
|
1328
|
-
"
|
|
1202
|
+
"core/audits/seo/crawlable-anchors.js | title": {
|
|
1329
1203
|
"message": "链接都是可抓取的"
|
|
1330
1204
|
},
|
|
1331
|
-
"
|
|
1205
|
+
"core/audits/seo/font-size.js | additionalIllegibleText": {
|
|
1332
1206
|
"message": "其他无法辨认的文字"
|
|
1333
1207
|
},
|
|
1334
|
-
"
|
|
1208
|
+
"core/audits/seo/font-size.js | columnFontSize": {
|
|
1335
1209
|
"message": "字号"
|
|
1336
1210
|
},
|
|
1337
|
-
"
|
|
1211
|
+
"core/audits/seo/font-size.js | columnPercentPageText": {
|
|
1338
1212
|
"message": "网页文本百分比"
|
|
1339
1213
|
},
|
|
1340
|
-
"
|
|
1214
|
+
"core/audits/seo/font-size.js | columnSelector": {
|
|
1341
1215
|
"message": "选择器"
|
|
1342
1216
|
},
|
|
1343
|
-
"
|
|
1344
|
-
"message": "12px 以下的字体过小,会导致用户无法辨认;此外,这样的字体需要移动设备访问者“张合双指进行缩放”才能阅读。请尽量让 60% 以上的页面文字不小于 12px。[
|
|
1217
|
+
"core/audits/seo/font-size.js | description": {
|
|
1218
|
+
"message": "12px 以下的字体过小,会导致用户无法辨认;此外,这样的字体需要移动设备访问者“张合双指进行缩放”才能阅读。请尽量让 60% 以上的页面文字不小于 12px。[详细了解清晰可辨的字体大小](https://developer.chrome.com/docs/lighthouse/seo/font-size/)。"
|
|
1345
1219
|
},
|
|
1346
|
-
"
|
|
1220
|
+
"core/audits/seo/font-size.js | displayValue": {
|
|
1347
1221
|
"message": "{decimalProportion, number, extendedPercent} 清晰可辨的文字"
|
|
1348
1222
|
},
|
|
1349
|
-
"
|
|
1223
|
+
"core/audits/seo/font-size.js | explanationViewport": {
|
|
1350
1224
|
"message": "无法辨认文字,因为缺少已针对移动设备屏幕进行优化的 viewport meta 标记。"
|
|
1351
1225
|
},
|
|
1352
|
-
"
|
|
1226
|
+
"core/audits/seo/font-size.js | failureTitle": {
|
|
1353
1227
|
"message": "文档未使用清晰可辨的字体大小"
|
|
1354
1228
|
},
|
|
1355
|
-
"
|
|
1229
|
+
"core/audits/seo/font-size.js | legibleText": {
|
|
1356
1230
|
"message": "清晰可辨的文字"
|
|
1357
1231
|
},
|
|
1358
|
-
"
|
|
1232
|
+
"core/audits/seo/font-size.js | title": {
|
|
1359
1233
|
"message": "文档所用的字体大小清晰可辨"
|
|
1360
1234
|
},
|
|
1361
|
-
"
|
|
1362
|
-
"message": "hreflang 链接用于告知搜索引擎应在特定语言或地区的搜索结果中显示哪种版本的网页。[
|
|
1235
|
+
"core/audits/seo/hreflang.js | description": {
|
|
1236
|
+
"message": "hreflang 链接用于告知搜索引擎应在特定语言或地区的搜索结果中显示哪种版本的网页。[详细了解 `hreflang`](https://developer.chrome.com/docs/lighthouse/seo/hreflang/)。"
|
|
1363
1237
|
},
|
|
1364
|
-
"
|
|
1238
|
+
"core/audits/seo/hreflang.js | failureTitle": {
|
|
1365
1239
|
"message": "文档的 `hreflang` 无效"
|
|
1366
1240
|
},
|
|
1367
|
-
"
|
|
1241
|
+
"core/audits/seo/hreflang.js | notFullyQualified": {
|
|
1368
1242
|
"message": "相对 href 值"
|
|
1369
1243
|
},
|
|
1370
|
-
"
|
|
1244
|
+
"core/audits/seo/hreflang.js | title": {
|
|
1371
1245
|
"message": "文档的 `hreflang` 有效"
|
|
1372
1246
|
},
|
|
1373
|
-
"
|
|
1247
|
+
"core/audits/seo/hreflang.js | unexpectedLanguage": {
|
|
1374
1248
|
"message": "未预料到的语言代码"
|
|
1375
1249
|
},
|
|
1376
|
-
"
|
|
1377
|
-
"message": "返回无效 HTTP 状态代码的页面可能无法被正确编入索引。[
|
|
1250
|
+
"core/audits/seo/http-status-code.js | description": {
|
|
1251
|
+
"message": "返回无效 HTTP 状态代码的页面可能无法被正确编入索引。[详细了解 HTTP 状态代码](https://developer.chrome.com/docs/lighthouse/seo/http-status-code/)。"
|
|
1378
1252
|
},
|
|
1379
|
-
"
|
|
1253
|
+
"core/audits/seo/http-status-code.js | failureTitle": {
|
|
1380
1254
|
"message": "页面返回了无效的 HTTP 状态代码"
|
|
1381
1255
|
},
|
|
1382
|
-
"
|
|
1256
|
+
"core/audits/seo/http-status-code.js | title": {
|
|
1383
1257
|
"message": "页面返回了有效的 HTTP 状态代码"
|
|
1384
1258
|
},
|
|
1385
|
-
"
|
|
1386
|
-
"message": "如果搜索引擎无权抓取您的网页,则无法将它们添加到搜索结果中。[
|
|
1259
|
+
"core/audits/seo/is-crawlable.js | description": {
|
|
1260
|
+
"message": "如果搜索引擎无权抓取您的网页,则无法将它们添加到搜索结果中。[详细了解抓取工具指令](https://developer.chrome.com/docs/lighthouse/seo/is-crawlable/)。"
|
|
1387
1261
|
},
|
|
1388
|
-
"
|
|
1262
|
+
"core/audits/seo/is-crawlable.js | failureTitle": {
|
|
1389
1263
|
"message": "页面已被屏蔽,无法编入索引"
|
|
1390
1264
|
},
|
|
1391
|
-
"
|
|
1265
|
+
"core/audits/seo/is-crawlable.js | title": {
|
|
1392
1266
|
"message": "页面未被屏蔽,可编入索引"
|
|
1393
1267
|
},
|
|
1394
|
-
"
|
|
1395
|
-
"message": "描述性链接文字有助于搜索引擎理解您的内容。[
|
|
1268
|
+
"core/audits/seo/link-text.js | description": {
|
|
1269
|
+
"message": "描述性链接文字有助于搜索引擎理解您的内容。[了解如何让链接更便于使用](https://developer.chrome.com/docs/lighthouse/seo/link-text/)。"
|
|
1396
1270
|
},
|
|
1397
|
-
"
|
|
1271
|
+
"core/audits/seo/link-text.js | displayValue": {
|
|
1398
1272
|
"message": "{itemCount,plural, =1{找到了 1 个链接}other{找到了 # 个链接}}"
|
|
1399
1273
|
},
|
|
1400
|
-
"
|
|
1274
|
+
"core/audits/seo/link-text.js | failureTitle": {
|
|
1401
1275
|
"message": "链接缺少描述性文字"
|
|
1402
1276
|
},
|
|
1403
|
-
"
|
|
1277
|
+
"core/audits/seo/link-text.js | title": {
|
|
1404
1278
|
"message": "链接有描述性文字"
|
|
1405
1279
|
},
|
|
1406
|
-
"
|
|
1407
|
-
"message": "运行[结构化数据测试工具](https://search.google.com/structured-data/testing-tool/)
|
|
1280
|
+
"core/audits/seo/manual/structured-data.js | description": {
|
|
1281
|
+
"message": "运行[结构化数据测试工具](https://search.google.com/structured-data/testing-tool/)和 [Structured Data Linter](http://linter.structured-data.org/) 可验证结构化数据。[详细了解结构化数据](https://developer.chrome.com/docs/lighthouse/seo/structured-data/)。"
|
|
1408
1282
|
},
|
|
1409
|
-
"
|
|
1283
|
+
"core/audits/seo/manual/structured-data.js | title": {
|
|
1410
1284
|
"message": "结构化数据有效"
|
|
1411
1285
|
},
|
|
1412
|
-
"
|
|
1413
|
-
"message": "元描述可能会被包含在搜索结果中,以简要概括网页内容。[
|
|
1286
|
+
"core/audits/seo/meta-description.js | description": {
|
|
1287
|
+
"message": "元描述可能会被包含在搜索结果中,以简要概括网页内容。[详细了解元描述](https://developer.chrome.com/docs/lighthouse/seo/meta-description/)。"
|
|
1414
1288
|
},
|
|
1415
|
-
"
|
|
1289
|
+
"core/audits/seo/meta-description.js | explanation": {
|
|
1416
1290
|
"message": "描述性文字为空。"
|
|
1417
1291
|
},
|
|
1418
|
-
"
|
|
1292
|
+
"core/audits/seo/meta-description.js | failureTitle": {
|
|
1419
1293
|
"message": "文档缺少 meta 描述"
|
|
1420
1294
|
},
|
|
1421
|
-
"
|
|
1295
|
+
"core/audits/seo/meta-description.js | title": {
|
|
1422
1296
|
"message": "文档有 meta 描述"
|
|
1423
1297
|
},
|
|
1424
|
-
"
|
|
1425
|
-
"message": "搜索引擎无法将插件内容编入索引,而且许多设备都限制或不支持使用插件。[
|
|
1298
|
+
"core/audits/seo/plugins.js | description": {
|
|
1299
|
+
"message": "搜索引擎无法将插件内容编入索引,而且许多设备都限制或不支持使用插件。[详细了解如何避免使用插件](https://developer.chrome.com/docs/lighthouse/seo/plugins/)。"
|
|
1426
1300
|
},
|
|
1427
|
-
"
|
|
1301
|
+
"core/audits/seo/plugins.js | failureTitle": {
|
|
1428
1302
|
"message": "文档使用了插件"
|
|
1429
1303
|
},
|
|
1430
|
-
"
|
|
1304
|
+
"core/audits/seo/plugins.js | title": {
|
|
1431
1305
|
"message": "文档中没有插件"
|
|
1432
1306
|
},
|
|
1433
|
-
"
|
|
1434
|
-
"message": "如果 robots.txt 文件的格式不正确,抓取工具可能无法理解您希望以何种方式抓取网站内容或将其编入索引。[
|
|
1307
|
+
"core/audits/seo/robots-txt.js | description": {
|
|
1308
|
+
"message": "如果 robots.txt 文件的格式不正确,抓取工具可能无法理解您希望以何种方式抓取网站内容或将其编入索引。[详细了解 robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)。"
|
|
1435
1309
|
},
|
|
1436
|
-
"
|
|
1310
|
+
"core/audits/seo/robots-txt.js | displayValueHttpBadCode": {
|
|
1437
1311
|
"message": "对 robots.txt 的请求返回了 HTTP 状态代码:{statusCode}"
|
|
1438
1312
|
},
|
|
1439
|
-
"
|
|
1313
|
+
"core/audits/seo/robots-txt.js | displayValueValidationError": {
|
|
1440
1314
|
"message": "{itemCount,plural, =1{发现了 1 处错误}other{发现了 # 处错误}}"
|
|
1441
1315
|
},
|
|
1442
|
-
"
|
|
1316
|
+
"core/audits/seo/robots-txt.js | explanation": {
|
|
1443
1317
|
"message": "Lighthouse 无法下载 robots.txt 文件"
|
|
1444
1318
|
},
|
|
1445
|
-
"
|
|
1319
|
+
"core/audits/seo/robots-txt.js | failureTitle": {
|
|
1446
1320
|
"message": "robots.txt 无效"
|
|
1447
1321
|
},
|
|
1448
|
-
"
|
|
1322
|
+
"core/audits/seo/robots-txt.js | title": {
|
|
1449
1323
|
"message": "robots.txt 有效"
|
|
1450
1324
|
},
|
|
1451
|
-
"
|
|
1452
|
-
"message": "交互式元素(例如按钮和链接)应足够大 (48x48px)
|
|
1325
|
+
"core/audits/seo/tap-targets.js | description": {
|
|
1326
|
+
"message": "交互式元素(例如按钮和链接)应足够大 (48x48px),周围有足够的空间以便用户轻松点按,且不遮挡其他元素。[详细了解点按目标](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)。"
|
|
1453
1327
|
},
|
|
1454
|
-
"
|
|
1328
|
+
"core/audits/seo/tap-targets.js | displayValue": {
|
|
1455
1329
|
"message": "{decimalProportion, number, percent} 的点按目标大小合适"
|
|
1456
1330
|
},
|
|
1457
|
-
"
|
|
1331
|
+
"core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
|
|
1458
1332
|
"message": "点按目标过小,因为缺少已针对移动设备屏幕进行优化的 viewport meta 标记"
|
|
1459
1333
|
},
|
|
1460
|
-
"
|
|
1334
|
+
"core/audits/seo/tap-targets.js | failureTitle": {
|
|
1461
1335
|
"message": "点按目标的大小不合适"
|
|
1462
1336
|
},
|
|
1463
|
-
"
|
|
1337
|
+
"core/audits/seo/tap-targets.js | overlappingTargetHeader": {
|
|
1464
1338
|
"message": "点按目标重叠"
|
|
1465
1339
|
},
|
|
1466
|
-
"
|
|
1340
|
+
"core/audits/seo/tap-targets.js | tapTargetHeader": {
|
|
1467
1341
|
"message": "点按目标"
|
|
1468
1342
|
},
|
|
1469
|
-
"
|
|
1343
|
+
"core/audits/seo/tap-targets.js | title": {
|
|
1470
1344
|
"message": "点按目标的大小合适"
|
|
1471
1345
|
},
|
|
1472
|
-
"
|
|
1473
|
-
"message": "
|
|
1346
|
+
"core/audits/server-response-time.js | description": {
|
|
1347
|
+
"message": "请确保服务器响应主文档的用时较短,因为这会影响到所有其他请求的响应时长。[详细了解 Time to First Byte 指标](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)。"
|
|
1474
1348
|
},
|
|
1475
|
-
"
|
|
1349
|
+
"core/audits/server-response-time.js | displayValue": {
|
|
1476
1350
|
"message": "根文档花费了 {timeInMs, number, milliseconds} 毫秒"
|
|
1477
1351
|
},
|
|
1478
|
-
"
|
|
1352
|
+
"core/audits/server-response-time.js | failureTitle": {
|
|
1479
1353
|
"message": "请缩短初始服务器响应用时"
|
|
1480
1354
|
},
|
|
1481
|
-
"
|
|
1355
|
+
"core/audits/server-response-time.js | title": {
|
|
1482
1356
|
"message": "初始服务器响应用时较短"
|
|
1483
1357
|
},
|
|
1484
|
-
"
|
|
1485
|
-
"message": "Service Worker 是一项技术,可让您的应用使用很多渐进式 Web 应用功能,例如离线、添加到主屏幕和推送通知。[
|
|
1358
|
+
"core/audits/service-worker.js | description": {
|
|
1359
|
+
"message": "Service Worker 是一项技术,可让您的应用使用很多渐进式 Web 应用功能,例如离线、添加到主屏幕和推送通知。[详细了解 Service Worker](https://developer.chrome.com/docs/lighthouse/pwa/service-worker/)。"
|
|
1486
1360
|
},
|
|
1487
|
-
"
|
|
1361
|
+
"core/audits/service-worker.js | explanationBadManifest": {
|
|
1488
1362
|
"message": "此网页由 Service Worker 控制,但由于清单未能解析为有效的 JSON,因此未找到 `start_url`"
|
|
1489
1363
|
},
|
|
1490
|
-
"
|
|
1364
|
+
"core/audits/service-worker.js | explanationBadStartUrl": {
|
|
1491
1365
|
"message": "此网页由 Service Worker 控制,但 `start_url` ({startUrl}) 不在 Service Worker 的控制范围内 ({scopeUrl})"
|
|
1492
1366
|
},
|
|
1493
|
-
"
|
|
1367
|
+
"core/audits/service-worker.js | explanationNoManifest": {
|
|
1494
1368
|
"message": "此网页由 Service Worker 控制,但由于未提取任何清单,因此未找到 `start_url`。"
|
|
1495
1369
|
},
|
|
1496
|
-
"
|
|
1370
|
+
"core/audits/service-worker.js | explanationOutOfScope": {
|
|
1497
1371
|
"message": "此来源有一个或多个 Service Worker,但网页 ({pageUrl}) 不在控制范围内。"
|
|
1498
1372
|
},
|
|
1499
|
-
"
|
|
1373
|
+
"core/audits/service-worker.js | failureTitle": {
|
|
1500
1374
|
"message": "无法注册用于控制网页和 `start_url` 的 Service Worker"
|
|
1501
1375
|
},
|
|
1502
|
-
"
|
|
1376
|
+
"core/audits/service-worker.js | title": {
|
|
1503
1377
|
"message": "注册用于控制网页和 `start_url` 的 Service Worker"
|
|
1504
1378
|
},
|
|
1505
|
-
"
|
|
1506
|
-
"message": "
|
|
1379
|
+
"core/audits/splash-screen.js | description": {
|
|
1380
|
+
"message": "选定主题的启动画面可确保用户在从主屏幕中启动您的应用时获得优质体验。[详细了解启动画面](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)。"
|
|
1507
1381
|
},
|
|
1508
|
-
"
|
|
1382
|
+
"core/audits/splash-screen.js | failureTitle": {
|
|
1509
1383
|
"message": "未针对自定义启动画面进行配置"
|
|
1510
1384
|
},
|
|
1511
|
-
"
|
|
1385
|
+
"core/audits/splash-screen.js | title": {
|
|
1512
1386
|
"message": "已针对自定义启动画面进行配置"
|
|
1513
1387
|
},
|
|
1514
|
-
"
|
|
1515
|
-
"message": "
|
|
1388
|
+
"core/audits/themed-omnibox.js | description": {
|
|
1389
|
+
"message": "可以为浏览器地址栏设置与您的网站相契合的主题。[详细了解如何为地址栏设置主题](https://developer.chrome.com/docs/lighthouse/pwa/themed-omnibox/)。"
|
|
1516
1390
|
},
|
|
1517
|
-
"
|
|
1391
|
+
"core/audits/themed-omnibox.js | failureTitle": {
|
|
1518
1392
|
"message": "没有为地址栏设置主题背景颜色。"
|
|
1519
1393
|
},
|
|
1520
|
-
"
|
|
1394
|
+
"core/audits/themed-omnibox.js | title": {
|
|
1521
1395
|
"message": "为地址栏设置主题背景颜色。"
|
|
1522
1396
|
},
|
|
1523
|
-
"
|
|
1397
|
+
"core/audits/third-party-facades.js | categoryCustomerSuccess": {
|
|
1524
1398
|
"message": "{productName}(客户成功案例)"
|
|
1525
1399
|
},
|
|
1526
|
-
"
|
|
1400
|
+
"core/audits/third-party-facades.js | categoryMarketing": {
|
|
1527
1401
|
"message": "{productName}(营销)"
|
|
1528
1402
|
},
|
|
1529
|
-
"
|
|
1403
|
+
"core/audits/third-party-facades.js | categorySocial": {
|
|
1530
1404
|
"message": "{productName}(社交)"
|
|
1531
1405
|
},
|
|
1532
|
-
"
|
|
1406
|
+
"core/audits/third-party-facades.js | categoryVideo": {
|
|
1533
1407
|
"message": "{productName}(视频)"
|
|
1534
1408
|
},
|
|
1535
|
-
"
|
|
1409
|
+
"core/audits/third-party-facades.js | columnProduct": {
|
|
1536
1410
|
"message": "产品"
|
|
1537
1411
|
},
|
|
1538
|
-
"
|
|
1539
|
-
"message": "
|
|
1412
|
+
"core/audits/third-party-facades.js | description": {
|
|
1413
|
+
"message": "您可以延迟加载某些第三方嵌入代码。建议使用 Facade 替换这些代码,直到您需要使用它们为止。[了解如何使用 Facade 推迟加载第三方代码](https://developer.chrome.com/docs/lighthouse/performance/third-party-facades/)。"
|
|
1540
1414
|
},
|
|
1541
|
-
"
|
|
1415
|
+
"core/audits/third-party-facades.js | displayValue": {
|
|
1542
1416
|
"message": "{itemCount,plural, =1{有 # 个备用 Facade}other{有 # 个备用 Facade}}"
|
|
1543
1417
|
},
|
|
1544
|
-
"
|
|
1418
|
+
"core/audits/third-party-facades.js | failureTitle": {
|
|
1545
1419
|
"message": "可以使用 Facade 延迟加载某些第三方资源"
|
|
1546
1420
|
},
|
|
1547
|
-
"
|
|
1421
|
+
"core/audits/third-party-facades.js | title": {
|
|
1548
1422
|
"message": "使用 Facade 延迟加载第三方资源"
|
|
1549
1423
|
},
|
|
1550
|
-
"
|
|
1424
|
+
"core/audits/third-party-summary.js | columnThirdParty": {
|
|
1551
1425
|
"message": "第三方"
|
|
1552
1426
|
},
|
|
1553
|
-
"
|
|
1554
|
-
"message": "第三方代码可能会显著影响加载性能。请限制冗余第三方提供商的数量,并尝试在页面完成主要加载后再加载第三方代码。[
|
|
1427
|
+
"core/audits/third-party-summary.js | description": {
|
|
1428
|
+
"message": "第三方代码可能会显著影响加载性能。请限制冗余第三方提供商的数量,并尝试在页面完成主要加载后再加载第三方代码。[了解如何将第三方的影响降至最低](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/)。"
|
|
1555
1429
|
},
|
|
1556
|
-
"
|
|
1430
|
+
"core/audits/third-party-summary.js | displayValue": {
|
|
1557
1431
|
"message": "第三方代码将主线程阻止了 {timeInMs, number, milliseconds} 毫秒"
|
|
1558
1432
|
},
|
|
1559
|
-
"
|
|
1433
|
+
"core/audits/third-party-summary.js | failureTitle": {
|
|
1560
1434
|
"message": "降低第三方代码的影响"
|
|
1561
1435
|
},
|
|
1562
|
-
"
|
|
1436
|
+
"core/audits/third-party-summary.js | title": {
|
|
1563
1437
|
"message": "尽量减少第三方使用"
|
|
1564
1438
|
},
|
|
1565
|
-
"
|
|
1439
|
+
"core/audits/timing-budget.js | columnMeasurement": {
|
|
1566
1440
|
"message": "实测值"
|
|
1567
1441
|
},
|
|
1568
|
-
"
|
|
1442
|
+
"core/audits/timing-budget.js | columnTimingMetric": {
|
|
1569
1443
|
"message": "指标"
|
|
1570
1444
|
},
|
|
1571
|
-
"
|
|
1572
|
-
"message": "
|
|
1445
|
+
"core/audits/timing-budget.js | description": {
|
|
1446
|
+
"message": "设置时间预算有助于您密切关注网站性能。性能出色的网站不仅加载迅速,还能快速响应用户输入事件。[详细了解性能预算](https://developers.google.com/web/tools/lighthouse/audits/budgets)。"
|
|
1573
1447
|
},
|
|
1574
|
-
"
|
|
1448
|
+
"core/audits/timing-budget.js | title": {
|
|
1575
1449
|
"message": "时间预算"
|
|
1576
1450
|
},
|
|
1577
|
-
"
|
|
1578
|
-
"message": "请为图片元素设置明确的宽度值和高度值,以减少布局偏移并改善 CLS。[
|
|
1451
|
+
"core/audits/unsized-images.js | description": {
|
|
1452
|
+
"message": "请为图片元素设置明确的宽度值和高度值,以减少布局偏移并改善 CLS。[了解如何设置图片尺寸](https://web.dev/optimize-cls/#images-without-dimensions)"
|
|
1579
1453
|
},
|
|
1580
|
-
"
|
|
1454
|
+
"core/audits/unsized-images.js | failureTitle": {
|
|
1581
1455
|
"message": "图片元素没有明确的`width`和`height`"
|
|
1582
1456
|
},
|
|
1583
|
-
"
|
|
1457
|
+
"core/audits/unsized-images.js | title": {
|
|
1584
1458
|
"message": "图片元素都有明确的`width`和`height`"
|
|
1585
1459
|
},
|
|
1586
|
-
"
|
|
1460
|
+
"core/audits/user-timings.js | columnType": {
|
|
1587
1461
|
"message": "类型"
|
|
1588
1462
|
},
|
|
1589
|
-
"
|
|
1590
|
-
"message": "建议使用 User Timing API
|
|
1463
|
+
"core/audits/user-timings.js | description": {
|
|
1464
|
+
"message": "建议使用 User Timing API 对您的应用进行插桩,从而衡量应用在关键用户体验中的实际性能。[详细了解 User Timing 标记](https://developer.chrome.com/docs/lighthouse/performance/user-timings/)。"
|
|
1591
1465
|
},
|
|
1592
|
-
"
|
|
1466
|
+
"core/audits/user-timings.js | displayValue": {
|
|
1593
1467
|
"message": "{itemCount,plural, =1{1 项 User Timing 结果}other{# 项 User Timing 结果}}"
|
|
1594
1468
|
},
|
|
1595
|
-
"
|
|
1469
|
+
"core/audits/user-timings.js | title": {
|
|
1596
1470
|
"message": "User Timing 标记和测量结果"
|
|
1597
1471
|
},
|
|
1598
|
-
"
|
|
1472
|
+
"core/audits/uses-rel-preconnect.js | crossoriginWarning": {
|
|
1599
1473
|
"message": "“{securityOrigin}”已有 `<link rel=preconnect>`,但浏览器未使用该链接。请检查并确保您正确地使用了 `crossorigin` 属性。"
|
|
1600
1474
|
},
|
|
1601
|
-
"
|
|
1602
|
-
"message": "建议添加 `preconnect` 或 `dns-prefetch`
|
|
1475
|
+
"core/audits/uses-rel-preconnect.js | description": {
|
|
1476
|
+
"message": "建议添加 `preconnect` 或 `dns-prefetch` 资源提示,以尽早连接到重要的第三方源。[了解如何预先连接到必需的源](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preconnect/)。"
|
|
1603
1477
|
},
|
|
1604
|
-
"
|
|
1478
|
+
"core/audits/uses-rel-preconnect.js | title": {
|
|
1605
1479
|
"message": "预先连接到必要的来源"
|
|
1606
1480
|
},
|
|
1607
|
-
"
|
|
1481
|
+
"core/audits/uses-rel-preconnect.js | tooManyPreconnectLinksWarning": {
|
|
1608
1482
|
"message": "发现了不止 2 个 `<link rel=preconnect>` 连接。此类连接应尽量少用,且应仅用于指向最重要的来源。"
|
|
1609
1483
|
},
|
|
1610
|
-
"
|
|
1484
|
+
"core/audits/uses-rel-preconnect.js | unusedWarning": {
|
|
1611
1485
|
"message": "“{securityOrigin}”已有 `<link rel=preconnect>`,但浏览器未使用该链接。请仅针对网页肯定会请求的重要来源使用 `preconnect`。"
|
|
1612
1486
|
},
|
|
1613
|
-
"
|
|
1487
|
+
"core/audits/uses-rel-preload.js | crossoriginWarning": {
|
|
1614
1488
|
"message": "“{preloadURL}”已有 preload `<link>`,但浏览器未使用该链接。请检查并确保您正确地使用了 `crossorigin` 属性。"
|
|
1615
1489
|
},
|
|
1616
|
-
"
|
|
1617
|
-
"message": "建议使用 `<link rel=preload>`
|
|
1490
|
+
"core/audits/uses-rel-preload.js | description": {
|
|
1491
|
+
"message": "建议使用 `<link rel=preload>` 来优先提取目前在网页加载过程中较晚请求加载的资源。[了解如何预加载关键请求](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preload/)。"
|
|
1618
1492
|
},
|
|
1619
|
-
"
|
|
1493
|
+
"core/audits/uses-rel-preload.js | title": {
|
|
1620
1494
|
"message": "预加载关键请求"
|
|
1621
1495
|
},
|
|
1622
|
-
"
|
|
1496
|
+
"core/audits/valid-source-maps.js | columnMapURL": {
|
|
1623
1497
|
"message": "映射网址"
|
|
1624
1498
|
},
|
|
1625
|
-
"
|
|
1626
|
-
"message": "源代码映射会将缩减了大小的代码转换成原始源代码。这有助于开发者在正式版中调试。此外,Lighthouse
|
|
1499
|
+
"core/audits/valid-source-maps.js | description": {
|
|
1500
|
+
"message": "源代码映射会将缩减了大小的代码转换成原始源代码。这有助于开发者在正式版中调试。此外,Lighthouse 还能提供进一步的数据分析。建议部署源代码映射以充分利用这些好处。[详细了解源代码映射](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps)。"
|
|
1627
1501
|
},
|
|
1628
|
-
"
|
|
1502
|
+
"core/audits/valid-source-maps.js | failureTitle": {
|
|
1629
1503
|
"message": "大型第一方 JavaScript 缺少源代码映射"
|
|
1630
1504
|
},
|
|
1631
|
-
"
|
|
1505
|
+
"core/audits/valid-source-maps.js | missingSourceMapErrorMessage": {
|
|
1632
1506
|
"message": "大型 JavaScript 文件缺少源代码映射"
|
|
1633
1507
|
},
|
|
1634
|
-
"
|
|
1508
|
+
"core/audits/valid-source-maps.js | missingSourceMapItemsWarningMesssage": {
|
|
1635
1509
|
"message": "{missingItems,plural, =1{警告:`.sourcesContent` 中缺少 1 项内容}other{警告:`.sourcesContent` 中缺少 # 项内容}}"
|
|
1636
1510
|
},
|
|
1637
|
-
"
|
|
1511
|
+
"core/audits/valid-source-maps.js | title": {
|
|
1638
1512
|
"message": "页面包含有效的源代码映射"
|
|
1639
1513
|
},
|
|
1640
|
-
"
|
|
1641
|
-
"message": "`<meta name=\"viewport\">` 不仅会针对移动设备屏幕尺寸优化您的应用,还会阻止[系统在响应用户输入前出现 300 毫秒的延迟](https://
|
|
1514
|
+
"core/audits/viewport.js | description": {
|
|
1515
|
+
"message": "`<meta name=\"viewport\">` 不仅会针对移动设备屏幕尺寸优化您的应用,还会阻止[系统在响应用户输入前出现 300 毫秒的延迟](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/)。[详细了解如何使用视口元标记](https://developer.chrome.com/docs/lighthouse/pwa/viewport/)。"
|
|
1642
1516
|
},
|
|
1643
|
-
"
|
|
1517
|
+
"core/audits/viewport.js | explanationNoTag": {
|
|
1644
1518
|
"message": "未找到任何 `<meta name=\"viewport\">` 标记"
|
|
1645
1519
|
},
|
|
1646
|
-
"
|
|
1520
|
+
"core/audits/viewport.js | failureTitle": {
|
|
1647
1521
|
"message": "没有包含 `width` 或 `initial-scale` 的 `<meta name=\"viewport\">` 标记"
|
|
1648
1522
|
},
|
|
1649
|
-
"
|
|
1523
|
+
"core/audits/viewport.js | title": {
|
|
1650
1524
|
"message": "具有包含 `width` 或 `initial-scale` 的 `<meta name=\"viewport\">` 标记"
|
|
1651
1525
|
},
|
|
1652
|
-
"
|
|
1526
|
+
"core/audits/work-during-interaction.js | description": {
|
|
1527
|
+
"message": "这是在 Interaction to Next Paint 测量期间发生的线程阻塞工作。[详细了解 Interaction to Next Paint 指标](https://web.dev/inp/)。"
|
|
1528
|
+
},
|
|
1529
|
+
"core/audits/work-during-interaction.js | displayValue": {
|
|
1530
|
+
"message": "事件“{interactionType}”花费了 {timeInMs, number, milliseconds} 毫秒"
|
|
1531
|
+
},
|
|
1532
|
+
"core/audits/work-during-interaction.js | eventTarget": {
|
|
1533
|
+
"message": "事件目标"
|
|
1534
|
+
},
|
|
1535
|
+
"core/audits/work-during-interaction.js | failureTitle": {
|
|
1536
|
+
"message": "尽量减少关键互动期间的工作量"
|
|
1537
|
+
},
|
|
1538
|
+
"core/audits/work-during-interaction.js | inputDelay": {
|
|
1539
|
+
"message": "输入延迟"
|
|
1540
|
+
},
|
|
1541
|
+
"core/audits/work-during-interaction.js | presentationDelay": {
|
|
1542
|
+
"message": "展示延迟时间"
|
|
1543
|
+
},
|
|
1544
|
+
"core/audits/work-during-interaction.js | processingTime": {
|
|
1545
|
+
"message": "处理时间"
|
|
1546
|
+
},
|
|
1547
|
+
"core/audits/work-during-interaction.js | title": {
|
|
1548
|
+
"message": "尽量减少关键互动期间的工作量"
|
|
1549
|
+
},
|
|
1550
|
+
"core/config/default-config.js | a11yAriaGroupDescription": {
|
|
1653
1551
|
"message": "这些提示旨在帮助改进 ARIA 在您的应用内的使用情况,从而改善辅助技术(例如屏幕阅读器)用户的体验。"
|
|
1654
1552
|
},
|
|
1655
|
-
"
|
|
1553
|
+
"core/config/default-config.js | a11yAriaGroupTitle": {
|
|
1656
1554
|
"message": "ARIA"
|
|
1657
1555
|
},
|
|
1658
|
-
"
|
|
1556
|
+
"core/config/default-config.js | a11yAudioVideoGroupDescription": {
|
|
1659
1557
|
"message": "这提示旨在为音频和视频提供替代内容。这或许能改善听障用户或视障用户的体验。"
|
|
1660
1558
|
},
|
|
1661
|
-
"
|
|
1559
|
+
"core/config/default-config.js | a11yAudioVideoGroupTitle": {
|
|
1662
1560
|
"message": "音频和视频"
|
|
1663
1561
|
},
|
|
1664
|
-
"
|
|
1562
|
+
"core/config/default-config.js | a11yBestPracticesGroupDescription": {
|
|
1665
1563
|
"message": "这些条目突出显示了常见的无障碍功能最佳做法。"
|
|
1666
1564
|
},
|
|
1667
|
-
"
|
|
1565
|
+
"core/config/default-config.js | a11yBestPracticesGroupTitle": {
|
|
1668
1566
|
"message": "最佳做法"
|
|
1669
1567
|
},
|
|
1670
|
-
"
|
|
1671
|
-
"message": "这些检查会突出显示可[改进您网络应用的无障碍功能](https://
|
|
1568
|
+
"core/config/default-config.js | a11yCategoryDescription": {
|
|
1569
|
+
"message": "这些检查会突出显示可[改进您网络应用的无障碍功能](https://developer.chrome.com/docs/lighthouse/accessibility/)的提示。系统只能自动检测到一小部分无障碍功能问题,因此您最好也手动测试一下。"
|
|
1672
1570
|
},
|
|
1673
|
-
"
|
|
1674
|
-
"message": "这些条目旨在检查自动化测试工具未涵盖的方面。如需了解详情,请参阅有关如何[执行无障碍功能审查](https://
|
|
1571
|
+
"core/config/default-config.js | a11yCategoryManualDescription": {
|
|
1572
|
+
"message": "这些条目旨在检查自动化测试工具未涵盖的方面。如需了解详情,请参阅有关如何[执行无障碍功能审查](https://web.dev/how-to-review/)的指南。"
|
|
1675
1573
|
},
|
|
1676
|
-
"
|
|
1574
|
+
"core/config/default-config.js | a11yCategoryTitle": {
|
|
1677
1575
|
"message": "无障碍"
|
|
1678
1576
|
},
|
|
1679
|
-
"
|
|
1577
|
+
"core/config/default-config.js | a11yColorContrastGroupDescription": {
|
|
1680
1578
|
"message": "这些提示旨在帮助改进您的内容的易读性。"
|
|
1681
1579
|
},
|
|
1682
|
-
"
|
|
1580
|
+
"core/config/default-config.js | a11yColorContrastGroupTitle": {
|
|
1683
1581
|
"message": "对比度"
|
|
1684
1582
|
},
|
|
1685
|
-
"
|
|
1583
|
+
"core/config/default-config.js | a11yLanguageGroupDescription": {
|
|
1686
1584
|
"message": "这些提示旨在让不同语言区域中的用户能够更好地解读您的内容。"
|
|
1687
1585
|
},
|
|
1688
|
-
"
|
|
1586
|
+
"core/config/default-config.js | a11yLanguageGroupTitle": {
|
|
1689
1587
|
"message": "国际化和本地化"
|
|
1690
1588
|
},
|
|
1691
|
-
"
|
|
1589
|
+
"core/config/default-config.js | a11yNamesLabelsGroupDescription": {
|
|
1692
1590
|
"message": "这些提示旨在帮助改进您的应用内控件的语义。这可以改善辅助技术(例如屏幕阅读器)用户的体验。"
|
|
1693
1591
|
},
|
|
1694
|
-
"
|
|
1592
|
+
"core/config/default-config.js | a11yNamesLabelsGroupTitle": {
|
|
1695
1593
|
"message": "名称和标签"
|
|
1696
1594
|
},
|
|
1697
|
-
"
|
|
1595
|
+
"core/config/default-config.js | a11yNavigationGroupDescription": {
|
|
1698
1596
|
"message": "这些提示旨在改进您应用中的键盘导航。"
|
|
1699
1597
|
},
|
|
1700
|
-
"
|
|
1598
|
+
"core/config/default-config.js | a11yNavigationGroupTitle": {
|
|
1701
1599
|
"message": "导航"
|
|
1702
1600
|
},
|
|
1703
|
-
"
|
|
1601
|
+
"core/config/default-config.js | a11yTablesListsVideoGroupDescription": {
|
|
1704
1602
|
"message": "这些提示旨在改善使用辅助技术(例如屏幕阅读器)查看表格数据或列表数据的体验。"
|
|
1705
1603
|
},
|
|
1706
|
-
"
|
|
1604
|
+
"core/config/default-config.js | a11yTablesListsVideoGroupTitle": {
|
|
1707
1605
|
"message": "表格和列表"
|
|
1708
1606
|
},
|
|
1709
|
-
"
|
|
1607
|
+
"core/config/default-config.js | bestPracticesBrowserCompatGroupTitle": {
|
|
1710
1608
|
"message": "浏览器兼容性"
|
|
1711
1609
|
},
|
|
1712
|
-
"
|
|
1610
|
+
"core/config/default-config.js | bestPracticesCategoryTitle": {
|
|
1713
1611
|
"message": "最佳做法"
|
|
1714
1612
|
},
|
|
1715
|
-
"
|
|
1613
|
+
"core/config/default-config.js | bestPracticesGeneralGroupTitle": {
|
|
1716
1614
|
"message": "常规"
|
|
1717
1615
|
},
|
|
1718
|
-
"
|
|
1616
|
+
"core/config/default-config.js | bestPracticesTrustSafetyGroupTitle": {
|
|
1719
1617
|
"message": "信任与安全"
|
|
1720
1618
|
},
|
|
1721
|
-
"
|
|
1619
|
+
"core/config/default-config.js | bestPracticesUXGroupTitle": {
|
|
1722
1620
|
"message": "用户体验"
|
|
1723
1621
|
},
|
|
1724
|
-
"
|
|
1622
|
+
"core/config/default-config.js | budgetsGroupDescription": {
|
|
1725
1623
|
"message": "性能预算为您的网站的性能设置了标准。"
|
|
1726
1624
|
},
|
|
1727
|
-
"
|
|
1625
|
+
"core/config/default-config.js | budgetsGroupTitle": {
|
|
1728
1626
|
"message": "预算"
|
|
1729
1627
|
},
|
|
1730
|
-
"
|
|
1731
|
-
"message": "详细了解您的应用的性能。这些数字不会[直接影响](https://
|
|
1628
|
+
"core/config/default-config.js | diagnosticsGroupDescription": {
|
|
1629
|
+
"message": "详细了解您的应用的性能。这些数字不会[直接影响](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/)性能得分。"
|
|
1732
1630
|
},
|
|
1733
|
-
"
|
|
1631
|
+
"core/config/default-config.js | diagnosticsGroupTitle": {
|
|
1734
1632
|
"message": "诊断结果"
|
|
1735
1633
|
},
|
|
1736
|
-
"
|
|
1634
|
+
"core/config/default-config.js | firstPaintImprovementsGroupDescription": {
|
|
1737
1635
|
"message": "像素在屏幕上的呈现速度是性能的最重要方面。关键指标:首次内容绘制时间、首次有效绘制时间"
|
|
1738
1636
|
},
|
|
1739
|
-
"
|
|
1637
|
+
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1740
1638
|
"message": "改进首次绘制"
|
|
1741
1639
|
},
|
|
1742
|
-
"
|
|
1743
|
-
"message": "这些建议可以帮助您提高网页加载速度。它们不会[直接影响](https://
|
|
1640
|
+
"core/config/default-config.js | loadOpportunitiesGroupDescription": {
|
|
1641
|
+
"message": "这些建议可以帮助您提高网页加载速度。它们不会[直接影响](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/)性能得分。"
|
|
1744
1642
|
},
|
|
1745
|
-
"
|
|
1643
|
+
"core/config/default-config.js | loadOpportunitiesGroupTitle": {
|
|
1746
1644
|
"message": "优化建议"
|
|
1747
1645
|
},
|
|
1748
|
-
"
|
|
1646
|
+
"core/config/default-config.js | metricGroupTitle": {
|
|
1749
1647
|
"message": "指标"
|
|
1750
1648
|
},
|
|
1751
|
-
"
|
|
1649
|
+
"core/config/default-config.js | overallImprovementsGroupDescription": {
|
|
1752
1650
|
"message": "改善整体的加载体验,使该网页响应迅速且可尽快投入使用。关键指标:可交互前的耗时、速度指数"
|
|
1753
1651
|
},
|
|
1754
|
-
"
|
|
1652
|
+
"core/config/default-config.js | overallImprovementsGroupTitle": {
|
|
1755
1653
|
"message": "整体改进"
|
|
1756
1654
|
},
|
|
1757
|
-
"
|
|
1655
|
+
"core/config/default-config.js | performanceCategoryTitle": {
|
|
1758
1656
|
"message": "性能"
|
|
1759
1657
|
},
|
|
1760
|
-
"
|
|
1761
|
-
"message": "此类检查会验证渐进式 Web 应用的各个方面。[
|
|
1658
|
+
"core/config/default-config.js | pwaCategoryDescription": {
|
|
1659
|
+
"message": "此类检查会验证渐进式 Web 应用的各个方面。[了解如何构建优秀的渐进式 Web 应用](https://web.dev/pwa-checklist/)。"
|
|
1762
1660
|
},
|
|
1763
|
-
"
|
|
1764
|
-
"message": "基准 [PWA 核对清单](https://
|
|
1661
|
+
"core/config/default-config.js | pwaCategoryManualDescription": {
|
|
1662
|
+
"message": "基准 [PWA 核对清单](https://web.dev/pwa-checklist/)要求必须进行此类检查,但 Lighthouse 不会自动进行此类检查。它们不会影响您的得分,但您必须手动对其进行验证。"
|
|
1765
1663
|
},
|
|
1766
|
-
"
|
|
1664
|
+
"core/config/default-config.js | pwaCategoryTitle": {
|
|
1767
1665
|
"message": "PWA"
|
|
1768
1666
|
},
|
|
1769
|
-
"
|
|
1667
|
+
"core/config/default-config.js | pwaInstallableGroupTitle": {
|
|
1770
1668
|
"message": "可安装"
|
|
1771
1669
|
},
|
|
1772
|
-
"
|
|
1670
|
+
"core/config/default-config.js | pwaOptimizedGroupTitle": {
|
|
1773
1671
|
"message": "优化 PWA"
|
|
1774
1672
|
},
|
|
1775
|
-
"
|
|
1776
|
-
"message": "
|
|
1673
|
+
"core/config/default-config.js | seoCategoryDescription": {
|
|
1674
|
+
"message": "此类检查可确保您的网页遵循了基本的搜索引擎优化建议。还有很多其他因素可能会影响您的网页在搜索引擎结果中的排名,但未被 Lighthouse 纳入此处的评估范围,其中包括[核心网页指标](https://web.dev/learn-core-web-vitals/)衡量结果。[详细了解 Google Search Essentials](https://support.google.com/webmasters/answer/35769)。"
|
|
1777
1675
|
},
|
|
1778
|
-
"
|
|
1676
|
+
"core/config/default-config.js | seoCategoryManualDescription": {
|
|
1779
1677
|
"message": "请在您的网站上运行这些额外的验证程序,以检查其他 SEO 最佳做法。"
|
|
1780
1678
|
},
|
|
1781
|
-
"
|
|
1679
|
+
"core/config/default-config.js | seoCategoryTitle": {
|
|
1782
1680
|
"message": "SEO"
|
|
1783
1681
|
},
|
|
1784
|
-
"
|
|
1682
|
+
"core/config/default-config.js | seoContentGroupDescription": {
|
|
1785
1683
|
"message": "请确保您的 HTML 格式正确,以便抓取工具更好地了解您的应用的内容。"
|
|
1786
1684
|
},
|
|
1787
|
-
"
|
|
1685
|
+
"core/config/default-config.js | seoContentGroupTitle": {
|
|
1788
1686
|
"message": "内容最佳做法"
|
|
1789
1687
|
},
|
|
1790
|
-
"
|
|
1688
|
+
"core/config/default-config.js | seoCrawlingGroupDescription": {
|
|
1791
1689
|
"message": "若想让您的应用显示在搜索结果中,您需要先授权抓取工具访问该应用。"
|
|
1792
1690
|
},
|
|
1793
|
-
"
|
|
1691
|
+
"core/config/default-config.js | seoCrawlingGroupTitle": {
|
|
1794
1692
|
"message": "抓取和编入索引"
|
|
1795
1693
|
},
|
|
1796
|
-
"
|
|
1797
|
-
"message": "
|
|
1694
|
+
"core/config/default-config.js | seoMobileGroupDescription": {
|
|
1695
|
+
"message": "请确保您的网页适合移动设备,以便用户无需缩放即可轻松阅读内容页面。[了解如何制作适合移动设备的网页](https://developers.google.com/search/mobile-sites/)。"
|
|
1798
1696
|
},
|
|
1799
|
-
"
|
|
1697
|
+
"core/config/default-config.js | seoMobileGroupTitle": {
|
|
1800
1698
|
"message": "适合移动设备"
|
|
1801
1699
|
},
|
|
1802
|
-
"
|
|
1803
|
-
"message": "所测试设备的 CPU 速度似乎未达到 Lighthouse 的预期。这可能会对您的性能得分产生负面影响。详细了解如何[校准相应的 CPU 速度减慢倍数](https://github.com/GoogleChrome/lighthouse/blob/
|
|
1700
|
+
"core/gather/driver/environment.js | warningSlowHostCpu": {
|
|
1701
|
+
"message": "所测试设备的 CPU 速度似乎未达到 Lighthouse 的预期。这可能会对您的性能得分产生负面影响。详细了解如何[校准相应的 CPU 速度减慢倍数](https://github.com/GoogleChrome/lighthouse/blob/main/docs/throttling.md#cpu-throttling)。"
|
|
1804
1702
|
},
|
|
1805
|
-
"
|
|
1703
|
+
"core/gather/driver/navigation.js | warningRedirected": {
|
|
1806
1704
|
"message": "相应网页可能无法按预期加载,因为您所测试的网址 ({requested}) 重定向到了 {final}。请尝试直接测试第二个网址。"
|
|
1807
1705
|
},
|
|
1808
|
-
"
|
|
1706
|
+
"core/gather/driver/navigation.js | warningTimeout": {
|
|
1809
1707
|
"message": "此页面的加载速度太慢,无法在时限内完成。结果可能会不完整。"
|
|
1810
1708
|
},
|
|
1811
|
-
"
|
|
1709
|
+
"core/gather/driver/storage.js | warningCacheTimeout": {
|
|
1710
|
+
"message": "浏览器缓存清除操作超时。请尝试再次审核此网页。如果问题仍然存在,请报告错误。"
|
|
1711
|
+
},
|
|
1712
|
+
"core/gather/driver/storage.js | warningData": {
|
|
1812
1713
|
"message": "{locationCount,plural, =1{下列位置可能存储了会影响加载性能的数据:{locations}。请在无痕式窗口中审核此页面,以防止这些资源影响您的得分。}other{下列位置可能存储了会影响加载性能的数据:{locations}。请在无痕式窗口中审核此页面,以防止这些资源影响您的得分。}}"
|
|
1813
1714
|
},
|
|
1814
|
-
"
|
|
1715
|
+
"core/gather/driver/storage.js | warningOriginDataTimeout": {
|
|
1716
|
+
"message": "原始数据清除操作超时。请尝试再次审核此网页。如果问题仍然存在,请报告错误。"
|
|
1717
|
+
},
|
|
1718
|
+
"core/lib/bf-cache-strings.js | HTTPMethodNotGET": {
|
|
1719
|
+
"message": "只有通过 GET 请求进行加载的网页才能储存至往返缓存。"
|
|
1720
|
+
},
|
|
1721
|
+
"core/lib/bf-cache-strings.js | HTTPStatusNotOK": {
|
|
1722
|
+
"message": "只有状态代码为 2XX 的网页才能被缓存。"
|
|
1723
|
+
},
|
|
1724
|
+
"core/lib/bf-cache-strings.js | JavaScriptExecution": {
|
|
1725
|
+
"message": "Chrome 检测到一项在储存于缓存期间执行 JavaScript 的意图。"
|
|
1726
|
+
},
|
|
1727
|
+
"core/lib/bf-cache-strings.js | appBanner": {
|
|
1728
|
+
"message": "已请求 AppBanner 的网页目前无法储存至往返缓存。"
|
|
1729
|
+
},
|
|
1730
|
+
"core/lib/bf-cache-strings.js | backForwardCacheDisabled": {
|
|
1731
|
+
"message": "往返缓存被相关 flag 停用了。请在此设备上访问 chrome://flags/#back-forward-cache 以从本地启用该功能。"
|
|
1732
|
+
},
|
|
1733
|
+
"core/lib/bf-cache-strings.js | backForwardCacheDisabledByCommandLine": {
|
|
1734
|
+
"message": "往返缓存已被命令行停用。"
|
|
1735
|
+
},
|
|
1736
|
+
"core/lib/bf-cache-strings.js | backForwardCacheDisabledByLowMemory": {
|
|
1737
|
+
"message": "因为内存不足,往返缓存已被停用。"
|
|
1738
|
+
},
|
|
1739
|
+
"core/lib/bf-cache-strings.js | backForwardCacheDisabledForDelegate": {
|
|
1740
|
+
"message": "委托行为不支持往返缓存。"
|
|
1741
|
+
},
|
|
1742
|
+
"core/lib/bf-cache-strings.js | backForwardCacheDisabledForPrerender": {
|
|
1743
|
+
"message": "已针对预渲染程序停用往返缓存。"
|
|
1744
|
+
},
|
|
1745
|
+
"core/lib/bf-cache-strings.js | broadcastChannel": {
|
|
1746
|
+
"message": "该网页无法缓存,因为它包含的 BroadcastChannel 实例具有已注册的监听器。"
|
|
1747
|
+
},
|
|
1748
|
+
"core/lib/bf-cache-strings.js | cacheControlNoStore": {
|
|
1749
|
+
"message": "含 cache-control:no-store 标头的网页无法储存至往返缓存。"
|
|
1750
|
+
},
|
|
1751
|
+
"core/lib/bf-cache-strings.js | cacheFlushed": {
|
|
1752
|
+
"message": "缓存被刻意清除了。"
|
|
1753
|
+
},
|
|
1754
|
+
"core/lib/bf-cache-strings.js | cacheLimit": {
|
|
1755
|
+
"message": "该网页被逐出了缓存,以使另一个网页能够缓存。"
|
|
1756
|
+
},
|
|
1757
|
+
"core/lib/bf-cache-strings.js | containsPlugins": {
|
|
1758
|
+
"message": "包含插件的网页目前无法储存至往返缓存。"
|
|
1759
|
+
},
|
|
1760
|
+
"core/lib/bf-cache-strings.js | contentFileChooser": {
|
|
1761
|
+
"message": "使用 FileChooser API 的网页无法储存至往返缓存。"
|
|
1762
|
+
},
|
|
1763
|
+
"core/lib/bf-cache-strings.js | contentFileSystemAccess": {
|
|
1764
|
+
"message": "使用 File System Access API 的网页无法储存至往返缓存。"
|
|
1765
|
+
},
|
|
1766
|
+
"core/lib/bf-cache-strings.js | contentMediaDevicesDispatcherHost": {
|
|
1767
|
+
"message": "使用媒体设备调度程序的网页无法储存至往返缓存。"
|
|
1768
|
+
},
|
|
1769
|
+
"core/lib/bf-cache-strings.js | contentMediaPlay": {
|
|
1770
|
+
"message": "媒体播放器正在播放内容时用户就离开了网页。"
|
|
1771
|
+
},
|
|
1772
|
+
"core/lib/bf-cache-strings.js | contentMediaSession": {
|
|
1773
|
+
"message": "使用 MediaSession API 并设置了播放状态的网页无法储存至往返缓存。"
|
|
1774
|
+
},
|
|
1775
|
+
"core/lib/bf-cache-strings.js | contentMediaSessionService": {
|
|
1776
|
+
"message": "使用 MediaSession API 并设置了操作处理程序的网页无法储存至往返缓存。"
|
|
1777
|
+
},
|
|
1778
|
+
"core/lib/bf-cache-strings.js | contentScreenReader": {
|
|
1779
|
+
"message": "往返缓存已被停用,因为受屏幕阅读器影响。"
|
|
1780
|
+
},
|
|
1781
|
+
"core/lib/bf-cache-strings.js | contentSecurityHandler": {
|
|
1782
|
+
"message": "使用 SecurityHandler 的网页无法储存至往返缓存。"
|
|
1783
|
+
},
|
|
1784
|
+
"core/lib/bf-cache-strings.js | contentSerial": {
|
|
1785
|
+
"message": "使用 Serial API 的网页无法储存至往返缓存。"
|
|
1786
|
+
},
|
|
1787
|
+
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1788
|
+
"message": "使用 WebAuthetication API 的网页无法储存至往返缓存。"
|
|
1789
|
+
},
|
|
1790
|
+
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1791
|
+
"message": "使用 WebBluetooth API 的网页无法储存至往返缓存。"
|
|
1792
|
+
},
|
|
1793
|
+
"core/lib/bf-cache-strings.js | contentWebUSB": {
|
|
1794
|
+
"message": "使用 WebUSB API 的网页无法储存至往返缓存。"
|
|
1795
|
+
},
|
|
1796
|
+
"core/lib/bf-cache-strings.js | dedicatedWorkerOrWorklet": {
|
|
1797
|
+
"message": "使用专用 Worker 或 Worklet 的网页目前无法储存至往返缓存。"
|
|
1798
|
+
},
|
|
1799
|
+
"core/lib/bf-cache-strings.js | documentLoaded": {
|
|
1800
|
+
"message": "该文档还未加载完毕时用户就离开了。"
|
|
1801
|
+
},
|
|
1802
|
+
"core/lib/bf-cache-strings.js | embedderAppBannerManager": {
|
|
1803
|
+
"message": "用户离开网页时,系统显示了应用横幅。"
|
|
1804
|
+
},
|
|
1805
|
+
"core/lib/bf-cache-strings.js | embedderChromePasswordManagerClientBindCredentialManager": {
|
|
1806
|
+
"message": "用户离开网页时,系统显示了 Chrome 密码管理器。"
|
|
1807
|
+
},
|
|
1808
|
+
"core/lib/bf-cache-strings.js | embedderDomDistillerSelfDeletingRequestDelegate": {
|
|
1809
|
+
"message": "用户离开网页时,DOM 提取正在进行。"
|
|
1810
|
+
},
|
|
1811
|
+
"core/lib/bf-cache-strings.js | embedderDomDistillerViewerSource": {
|
|
1812
|
+
"message": "用户离开网页时,系统显示了 DOM Distiller Viewer。"
|
|
1813
|
+
},
|
|
1814
|
+
"core/lib/bf-cache-strings.js | embedderExtensionMessaging": {
|
|
1815
|
+
"message": "往返缓存已被停用,因为扩展程序使用了 Messaging API。"
|
|
1816
|
+
},
|
|
1817
|
+
"core/lib/bf-cache-strings.js | embedderExtensionMessagingForOpenPort": {
|
|
1818
|
+
"message": "在进入往返缓存之前,采用长期有效连接的扩展程序应断开连接。"
|
|
1819
|
+
},
|
|
1820
|
+
"core/lib/bf-cache-strings.js | embedderExtensionSentMessageToCachedFrame": {
|
|
1821
|
+
"message": "采用长期有效连接的扩展程序试图将消息发送到往返缓存中的框架。"
|
|
1822
|
+
},
|
|
1823
|
+
"core/lib/bf-cache-strings.js | embedderExtensions": {
|
|
1824
|
+
"message": "往返缓存已被停用,因为受扩展程序影响。"
|
|
1825
|
+
},
|
|
1826
|
+
"core/lib/bf-cache-strings.js | embedderModalDialog": {
|
|
1827
|
+
"message": "用户离开网页时,该网页上显示了模态对话框(例如表单重新提交)或 HTTP 密码对话框。"
|
|
1828
|
+
},
|
|
1829
|
+
"core/lib/bf-cache-strings.js | embedderOfflinePage": {
|
|
1830
|
+
"message": "用户离开网页时,系统显示了离线版网页。"
|
|
1831
|
+
},
|
|
1832
|
+
"core/lib/bf-cache-strings.js | embedderOomInterventionTabHelper": {
|
|
1833
|
+
"message": "用户离开网页时,系统显示了 Out-Of-Memory 栏。"
|
|
1834
|
+
},
|
|
1835
|
+
"core/lib/bf-cache-strings.js | embedderPermissionRequestManager": {
|
|
1836
|
+
"message": "用户离开网页时,系统显示了权限请求。"
|
|
1837
|
+
},
|
|
1838
|
+
"core/lib/bf-cache-strings.js | embedderPopupBlockerTabHelper": {
|
|
1839
|
+
"message": "用户离开网页时,系统显示了弹出式内容拦截器。"
|
|
1840
|
+
},
|
|
1841
|
+
"core/lib/bf-cache-strings.js | embedderSafeBrowsingThreatDetails": {
|
|
1842
|
+
"message": "用户离开网页时,系统显示了安全浏览详情。"
|
|
1843
|
+
},
|
|
1844
|
+
"core/lib/bf-cache-strings.js | embedderSafeBrowsingTriggeredPopupBlocker": {
|
|
1845
|
+
"message": "“安全浏览”功能认定该网页有滥用性质,因此拦截了弹出式窗口。"
|
|
1846
|
+
},
|
|
1847
|
+
"core/lib/bf-cache-strings.js | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
|
|
1848
|
+
"message": "在该网页储存于往返缓存期间,有一个 Service Worker 被启用了。"
|
|
1849
|
+
},
|
|
1850
|
+
"core/lib/bf-cache-strings.js | errorDocument": {
|
|
1851
|
+
"message": "往返缓存已被停用,因为文档出错了。"
|
|
1852
|
+
},
|
|
1853
|
+
"core/lib/bf-cache-strings.js | fencedFramesEmbedder": {
|
|
1854
|
+
"message": "采用 FencedFrame 的网页无法存储在 bfcache 中。"
|
|
1855
|
+
},
|
|
1856
|
+
"core/lib/bf-cache-strings.js | foregroundCacheLimit": {
|
|
1857
|
+
"message": "该网页被逐出了缓存,以使另一个网页能够缓存。"
|
|
1858
|
+
},
|
|
1859
|
+
"core/lib/bf-cache-strings.js | grantedMediaStreamAccess": {
|
|
1860
|
+
"message": "已被授予媒体流访问权的网页目前无法储存至往返缓存。"
|
|
1861
|
+
},
|
|
1862
|
+
"core/lib/bf-cache-strings.js | haveInnerContents": {
|
|
1863
|
+
"message": "使用门户的网页目前无法储存至往返缓存。"
|
|
1864
|
+
},
|
|
1865
|
+
"core/lib/bf-cache-strings.js | idleManager": {
|
|
1866
|
+
"message": "使用 IdleManager 的网页目前无法储存至往返缓存。"
|
|
1867
|
+
},
|
|
1868
|
+
"core/lib/bf-cache-strings.js | indexedDBConnection": {
|
|
1869
|
+
"message": "具备开放的 IndexedDB 连接的网页目前无法储存至往返缓存。"
|
|
1870
|
+
},
|
|
1871
|
+
"core/lib/bf-cache-strings.js | ineligibleAPI": {
|
|
1872
|
+
"message": "使用了不符合条件的 API。"
|
|
1873
|
+
},
|
|
1874
|
+
"core/lib/bf-cache-strings.js | injectedJavascript": {
|
|
1875
|
+
"message": "已被扩展程序注入 JavaScript 的网页目前无法储存至往返缓存。"
|
|
1876
|
+
},
|
|
1877
|
+
"core/lib/bf-cache-strings.js | injectedStyleSheet": {
|
|
1878
|
+
"message": "已被扩展程序注入样式表的网页目前无法储存至往返缓存。"
|
|
1879
|
+
},
|
|
1880
|
+
"core/lib/bf-cache-strings.js | internalError": {
|
|
1881
|
+
"message": "内部错误。"
|
|
1882
|
+
},
|
|
1883
|
+
"core/lib/bf-cache-strings.js | keepaliveRequest": {
|
|
1884
|
+
"message": "往返缓存已被停用,因为这是一项 keepalive 请求。"
|
|
1885
|
+
},
|
|
1886
|
+
"core/lib/bf-cache-strings.js | keyboardLock": {
|
|
1887
|
+
"message": "使用“键盘锁定”功能的网页目前无法储存至往返缓存。"
|
|
1888
|
+
},
|
|
1889
|
+
"core/lib/bf-cache-strings.js | loading": {
|
|
1890
|
+
"message": "该网页还未加载完毕时用户就离开了。"
|
|
1891
|
+
},
|
|
1892
|
+
"core/lib/bf-cache-strings.js | mainResourceHasCacheControlNoCache": {
|
|
1893
|
+
"message": "主资源包含 ache-control:no-cache 的网页无法储存至往返缓存。"
|
|
1894
|
+
},
|
|
1895
|
+
"core/lib/bf-cache-strings.js | mainResourceHasCacheControlNoStore": {
|
|
1896
|
+
"message": "主资源包含 cache-control:no-store 的网页无法储存至往返缓存。"
|
|
1897
|
+
},
|
|
1898
|
+
"core/lib/bf-cache-strings.js | navigationCancelledWhileRestoring": {
|
|
1899
|
+
"message": "该网页还没从往返缓存中恢复时导航就被取消了。"
|
|
1900
|
+
},
|
|
1901
|
+
"core/lib/bf-cache-strings.js | networkExceedsBufferLimit": {
|
|
1902
|
+
"message": "该网页被逐出了缓存,因为有一项使用中的网络连接收到了太多数据。Chrome 会限制网页在缓存期间可接收的数据量。"
|
|
1903
|
+
},
|
|
1904
|
+
"core/lib/bf-cache-strings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
|
|
1905
|
+
"message": "包含传输中的 fetch() 或 XHR 的网页目前无法储存至往返缓存。"
|
|
1906
|
+
},
|
|
1907
|
+
"core/lib/bf-cache-strings.js | networkRequestRedirected": {
|
|
1908
|
+
"message": "该网页被逐出了往返缓存,因为有一项使用中的网络请求涉及了重定向。"
|
|
1909
|
+
},
|
|
1910
|
+
"core/lib/bf-cache-strings.js | networkRequestTimeout": {
|
|
1911
|
+
"message": "该网页被逐出了缓存,因为有一项网络连接处于开放状态的时间太长。Chrome 会限制网页在缓存期间可接收数据的时长。"
|
|
1912
|
+
},
|
|
1913
|
+
"core/lib/bf-cache-strings.js | noResponseHead": {
|
|
1914
|
+
"message": "不含有效响应标头的网页无法储存至往返缓存。"
|
|
1915
|
+
},
|
|
1916
|
+
"core/lib/bf-cache-strings.js | notMainFrame": {
|
|
1917
|
+
"message": "导航是在主框架之外的某个框架中发生的。"
|
|
1918
|
+
},
|
|
1919
|
+
"core/lib/bf-cache-strings.js | outstandingIndexedDBTransaction": {
|
|
1920
|
+
"message": "正在针对已建立索引的数据库处理事务的网页目前无法储存至往返缓存。"
|
|
1921
|
+
},
|
|
1922
|
+
"core/lib/bf-cache-strings.js | outstandingNetworkRequestDirectSocket": {
|
|
1923
|
+
"message": "包含传输中的网络请求的网页目前无法储存至往返缓存。"
|
|
1924
|
+
},
|
|
1925
|
+
"core/lib/bf-cache-strings.js | outstandingNetworkRequestFetch": {
|
|
1926
|
+
"message": "包含传输中的 fetch() 网络请求的网页目前无法储存至往返缓存。"
|
|
1927
|
+
},
|
|
1928
|
+
"core/lib/bf-cache-strings.js | outstandingNetworkRequestOthers": {
|
|
1929
|
+
"message": "包含传输中的网络请求的网页目前无法储存至往返缓存。"
|
|
1930
|
+
},
|
|
1931
|
+
"core/lib/bf-cache-strings.js | outstandingNetworkRequestXHR": {
|
|
1932
|
+
"message": "包含传输中的 XHR 网络请求的网页目前无法储存至往返缓存。"
|
|
1933
|
+
},
|
|
1934
|
+
"core/lib/bf-cache-strings.js | paymentManager": {
|
|
1935
|
+
"message": "使用 PaymentManager 的网页目前无法储存至往返缓存。"
|
|
1936
|
+
},
|
|
1937
|
+
"core/lib/bf-cache-strings.js | pictureInPicture": {
|
|
1938
|
+
"message": "使用“画中画”功能的网页目前无法储存至往返缓存。"
|
|
1939
|
+
},
|
|
1940
|
+
"core/lib/bf-cache-strings.js | portal": {
|
|
1941
|
+
"message": "使用门户的网页目前无法储存至往返缓存。"
|
|
1942
|
+
},
|
|
1943
|
+
"core/lib/bf-cache-strings.js | printing": {
|
|
1944
|
+
"message": "显示打印界面的网页目前无法储存至往返缓存。"
|
|
1945
|
+
},
|
|
1946
|
+
"core/lib/bf-cache-strings.js | relatedActiveContentsExist": {
|
|
1947
|
+
"message": "该网页是使用“`window.open()`”打开的,而另一个标签页引用了该网页;或者,该网页打开了一个窗口。"
|
|
1948
|
+
},
|
|
1949
|
+
"core/lib/bf-cache-strings.js | rendererProcessCrashed": {
|
|
1950
|
+
"message": "储存在往返缓存中的网页的渲染程序进程崩溃了。"
|
|
1951
|
+
},
|
|
1952
|
+
"core/lib/bf-cache-strings.js | rendererProcessKilled": {
|
|
1953
|
+
"message": "储存于往返缓存中的网页的渲染程序进程被终止了。"
|
|
1954
|
+
},
|
|
1955
|
+
"core/lib/bf-cache-strings.js | requestedAudioCapturePermission": {
|
|
1956
|
+
"message": "已请求音频截取权的网页目前无法储存至往返缓存。"
|
|
1957
|
+
},
|
|
1958
|
+
"core/lib/bf-cache-strings.js | requestedBackForwardCacheBlockedSensors": {
|
|
1959
|
+
"message": "已请求传感器使用权的网页目前无法储存至往返缓存。"
|
|
1960
|
+
},
|
|
1961
|
+
"core/lib/bf-cache-strings.js | requestedBackgroundWorkPermission": {
|
|
1962
|
+
"message": "已请求后台同步或提取权限的网页目前无法储存至往返缓存。"
|
|
1963
|
+
},
|
|
1964
|
+
"core/lib/bf-cache-strings.js | requestedMIDIPermission": {
|
|
1965
|
+
"message": "已请求 MIDI 权限的网页目前无法储存至往返缓存。"
|
|
1966
|
+
},
|
|
1967
|
+
"core/lib/bf-cache-strings.js | requestedNotificationsPermission": {
|
|
1968
|
+
"message": "已请求通知权限的网页目前无法储存至往返缓存。"
|
|
1969
|
+
},
|
|
1970
|
+
"core/lib/bf-cache-strings.js | requestedStorageAccessGrant": {
|
|
1971
|
+
"message": "已请求存储空间使用权的网页目前无法储存至往返缓存。"
|
|
1972
|
+
},
|
|
1973
|
+
"core/lib/bf-cache-strings.js | requestedVideoCapturePermission": {
|
|
1974
|
+
"message": "已请求视频拍摄权的网页目前无法储存至往返缓存。"
|
|
1975
|
+
},
|
|
1976
|
+
"core/lib/bf-cache-strings.js | schemeNotHTTPOrHTTPS": {
|
|
1977
|
+
"message": "只有网址架构为 HTTP/HTTPS 的网页才能被缓存。"
|
|
1978
|
+
},
|
|
1979
|
+
"core/lib/bf-cache-strings.js | serviceWorkerClaim": {
|
|
1980
|
+
"message": "在储存于往返缓存期间,该网页被一个 Service Worker 认领了。"
|
|
1981
|
+
},
|
|
1982
|
+
"core/lib/bf-cache-strings.js | serviceWorkerPostMessage": {
|
|
1983
|
+
"message": "有一个 Service Worker 尝试向储存于往返缓存中的网页发送 `MessageEvent`。"
|
|
1984
|
+
},
|
|
1985
|
+
"core/lib/bf-cache-strings.js | serviceWorkerUnregistration": {
|
|
1986
|
+
"message": "在网页储存于往返缓存期间,ServiceWorker 被取消注册了。"
|
|
1987
|
+
},
|
|
1988
|
+
"core/lib/bf-cache-strings.js | serviceWorkerVersionActivation": {
|
|
1989
|
+
"message": "该网页被逐出了往返缓存,因为有一个 Service Worker 被启用了。"
|
|
1990
|
+
},
|
|
1991
|
+
"core/lib/bf-cache-strings.js | sessionRestored": {
|
|
1992
|
+
"message": "Chrome 重启了,因而清除了往返缓存条目。"
|
|
1993
|
+
},
|
|
1994
|
+
"core/lib/bf-cache-strings.js | sharedWorker": {
|
|
1995
|
+
"message": "使用 SharedWorker 的网页目前无法储存至往返缓存。"
|
|
1996
|
+
},
|
|
1997
|
+
"core/lib/bf-cache-strings.js | speechRecognizer": {
|
|
1998
|
+
"message": "使用 SpeechRecognizer 的网页目前无法储存至往返缓存。"
|
|
1999
|
+
},
|
|
2000
|
+
"core/lib/bf-cache-strings.js | speechSynthesis": {
|
|
2001
|
+
"message": "使用 SpeechSynthesis 的网页目前无法储存至往返缓存。"
|
|
2002
|
+
},
|
|
2003
|
+
"core/lib/bf-cache-strings.js | subframeIsNavigating": {
|
|
2004
|
+
"message": "该网页上某个 iframe 发起的导航并未完成。"
|
|
2005
|
+
},
|
|
2006
|
+
"core/lib/bf-cache-strings.js | subresourceHasCacheControlNoCache": {
|
|
2007
|
+
"message": "子资源包含 ache-control:no-cache 的网页无法储存至往返缓存。"
|
|
2008
|
+
},
|
|
2009
|
+
"core/lib/bf-cache-strings.js | subresourceHasCacheControlNoStore": {
|
|
2010
|
+
"message": "子资源包含 cache-control:no-store 的网页无法储存至往返缓存。"
|
|
2011
|
+
},
|
|
2012
|
+
"core/lib/bf-cache-strings.js | timeout": {
|
|
2013
|
+
"message": "该网页超出了往返缓存中的储存时长上限,因而已过期。"
|
|
2014
|
+
},
|
|
2015
|
+
"core/lib/bf-cache-strings.js | timeoutPuttingInCache": {
|
|
2016
|
+
"message": "该网页在储存至往返缓存时超时了(可能是因为 pagehide 处理程序长时间运行)。"
|
|
2017
|
+
},
|
|
2018
|
+
"core/lib/bf-cache-strings.js | unloadHandlerExistsInMainFrame": {
|
|
2019
|
+
"message": "该网页的主框架中含有一款卸载处理程序。"
|
|
2020
|
+
},
|
|
2021
|
+
"core/lib/bf-cache-strings.js | unloadHandlerExistsInSubFrame": {
|
|
2022
|
+
"message": "该网页的子框架中含有一款卸载处理程序。"
|
|
2023
|
+
},
|
|
2024
|
+
"core/lib/bf-cache-strings.js | userAgentOverrideDiffers": {
|
|
2025
|
+
"message": "浏览器更改了用户代理替换标头。"
|
|
2026
|
+
},
|
|
2027
|
+
"core/lib/bf-cache-strings.js | wasGrantedMediaAccess": {
|
|
2028
|
+
"message": "已被授予视频/音频录制权的网页目前无法储存至往返缓存。"
|
|
2029
|
+
},
|
|
2030
|
+
"core/lib/bf-cache-strings.js | webDatabase": {
|
|
2031
|
+
"message": "使用 WebDatabase 的网页目前无法储存至往返缓存。"
|
|
2032
|
+
},
|
|
2033
|
+
"core/lib/bf-cache-strings.js | webHID": {
|
|
2034
|
+
"message": "使用 WebHID 的网页目前无法储存至往返缓存。"
|
|
2035
|
+
},
|
|
2036
|
+
"core/lib/bf-cache-strings.js | webLocks": {
|
|
2037
|
+
"message": "使用 WebLocks 的网页目前无法储存至往返缓存。"
|
|
2038
|
+
},
|
|
2039
|
+
"core/lib/bf-cache-strings.js | webNfc": {
|
|
2040
|
+
"message": "使用 WebNfc 的网页目前无法储存至往返缓存。"
|
|
2041
|
+
},
|
|
2042
|
+
"core/lib/bf-cache-strings.js | webOTPService": {
|
|
2043
|
+
"message": "使用 WebOTPService 的网页目前无法储存至往返缓存。"
|
|
2044
|
+
},
|
|
2045
|
+
"core/lib/bf-cache-strings.js | webRTC": {
|
|
2046
|
+
"message": "使用 WebRTC 的网页无法储存至往返缓存。"
|
|
2047
|
+
},
|
|
2048
|
+
"core/lib/bf-cache-strings.js | webShare": {
|
|
2049
|
+
"message": "使用 Webshare 的网页目前无法储存至往返缓存。"
|
|
2050
|
+
},
|
|
2051
|
+
"core/lib/bf-cache-strings.js | webSocket": {
|
|
2052
|
+
"message": "使用 WebSocket 的网页无法储存至往返缓存。"
|
|
2053
|
+
},
|
|
2054
|
+
"core/lib/bf-cache-strings.js | webTransport": {
|
|
2055
|
+
"message": "使用 WebTransport 的网页无法储存至往返缓存。"
|
|
2056
|
+
},
|
|
2057
|
+
"core/lib/bf-cache-strings.js | webXR": {
|
|
2058
|
+
"message": "使用 WebXR 的网页目前无法储存至往返缓存。"
|
|
2059
|
+
},
|
|
2060
|
+
"core/lib/csp-evaluator.js | allowlistFallback": {
|
|
1815
2061
|
"message": "建议您添加 https: 和 http: 网址架构(会被支持“strict-dynamic”的浏览器忽略),以便向后兼容旧版浏览器。"
|
|
1816
2062
|
},
|
|
1817
|
-
"
|
|
2063
|
+
"core/lib/csp-evaluator.js | deprecatedDisownOpener": {
|
|
1818
2064
|
"message": "自 CSP3 起,disown-opener 已被弃用。请改用 Cross-Origin-Opener-Policy 标头。"
|
|
1819
2065
|
},
|
|
1820
|
-
"
|
|
2066
|
+
"core/lib/csp-evaluator.js | deprecatedReferrer": {
|
|
1821
2067
|
"message": "自 CSP2 起,referrer 已被弃用。请改用 Referrer-Policy 标头。"
|
|
1822
2068
|
},
|
|
1823
|
-
"
|
|
2069
|
+
"core/lib/csp-evaluator.js | deprecatedReflectedXSS": {
|
|
1824
2070
|
"message": "自 CSP2 起,reflected-xss 已被弃用。请改用 X-XSS-Protection 标头。"
|
|
1825
2071
|
},
|
|
1826
|
-
"
|
|
2072
|
+
"core/lib/csp-evaluator.js | missingBaseUri": {
|
|
1827
2073
|
"message": "缺少 base-uri 意味着允许使用注入的 <base> 标记将所有相对网址(例如脚本)的基准网址设为一个受攻击者控制的网域。建议您将 base-uri 设为“none”或“self”。"
|
|
1828
2074
|
},
|
|
1829
|
-
"
|
|
2075
|
+
"core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1830
2076
|
"message": "如果缺少 object-src,便无法防止不良之徒注入会执行不安全脚本的插件。建议您将 object-src 设为“none”(如果可以的话)。"
|
|
1831
2077
|
},
|
|
1832
|
-
"
|
|
2078
|
+
"core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1833
2079
|
"message": "缺少 script-src 指令。这意味着允许执行不安全的脚本。"
|
|
1834
2080
|
},
|
|
1835
|
-
"
|
|
2081
|
+
"core/lib/csp-evaluator.js | missingSemicolon": {
|
|
1836
2082
|
"message": "您忘了要使用英文分号吗?{keyword}似乎是一个指令,而非关键字。"
|
|
1837
2083
|
},
|
|
1838
|
-
"
|
|
2084
|
+
"core/lib/csp-evaluator.js | nonceCharset": {
|
|
1839
2085
|
"message": "Nonces 应该使用 base64 字符集。"
|
|
1840
2086
|
},
|
|
1841
|
-
"
|
|
2087
|
+
"core/lib/csp-evaluator.js | nonceLength": {
|
|
1842
2088
|
"message": "Nonces 应包含至少 8 个字符。"
|
|
1843
2089
|
},
|
|
1844
|
-
"
|
|
2090
|
+
"core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1845
2091
|
"message": "请避免在这条指令中仅仅使用网址架构 ({keyword})。如果仅仅使用网址架构,便无法防止脚本来自不安全的网域。"
|
|
1846
2092
|
},
|
|
1847
|
-
"
|
|
2093
|
+
"core/lib/csp-evaluator.js | plainWildcards": {
|
|
1848
2094
|
"message": "请避免在这条指令中仅仅使用通配符 ({keyword})。如果仅仅使用通配符,便无法防止脚本来自不安全的网域。"
|
|
1849
2095
|
},
|
|
1850
|
-
"
|
|
2096
|
+
"core/lib/csp-evaluator.js | reportToOnly": {
|
|
1851
2097
|
"message": "报告目的地只能通过 report-to 指令进行配置。此指令仅适用于基于 Chromium 的浏览器,因此我们建议您同时也使用 report-uri 指令。"
|
|
1852
2098
|
},
|
|
1853
|
-
"
|
|
2099
|
+
"core/lib/csp-evaluator.js | reportingDestinationMissing": {
|
|
1854
2100
|
"message": "任何 CSP 都未配置报告目的地。这会导致系统很难持续维护 CSP 以及监控故障。"
|
|
1855
2101
|
},
|
|
1856
|
-
"
|
|
2102
|
+
"core/lib/csp-evaluator.js | strictDynamic": {
|
|
1857
2103
|
"message": "主机许可名单经常会被绕过。建议您改用 CSP nonces 或 hashes(以及“strict-dynamic”,若有必要)。"
|
|
1858
2104
|
},
|
|
1859
|
-
"
|
|
2105
|
+
"core/lib/csp-evaluator.js | unknownDirective": {
|
|
1860
2106
|
"message": "CSP 指令不明。"
|
|
1861
2107
|
},
|
|
1862
|
-
"
|
|
2108
|
+
"core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1863
2109
|
"message": "{keyword}似乎是无效关键字。"
|
|
1864
2110
|
},
|
|
1865
|
-
"
|
|
2111
|
+
"core/lib/csp-evaluator.js | unsafeInline": {
|
|
1866
2112
|
"message": "“unsafe-inline”允许执行不安全的页内脚本和事件处理脚本。建议您使用 CSP nonces 或 hashes 来逐一允许各个脚本。"
|
|
1867
2113
|
},
|
|
1868
|
-
"
|
|
2114
|
+
"core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1869
2115
|
"message": "建议您添加“unsafe-inline”(会被支持 nonces/hashes 的浏览器忽略),以便向后兼容旧版浏览器。"
|
|
1870
2116
|
},
|
|
1871
|
-
"
|
|
2117
|
+
"core/lib/deprecations-strings.js | authorizationCoveredByWildcard": {
|
|
2118
|
+
"message": "处理 CORS `Access-Control-Allow-Headers` 时,授权将不在通配符 (*) 的涵盖范围内。"
|
|
2119
|
+
},
|
|
2120
|
+
"core/lib/deprecations-strings.js | canRequestURLHTTPContainingNewline": {
|
|
2121
|
+
"message": "如果资源请求的网址同时包含已移除的空白字符 `(n|r|t)` 和小于字符 (`<`),相应资源请求会被屏蔽。请从元素属性值等位置移除换行符并编码小于字符,以便加载这些资源。"
|
|
2122
|
+
},
|
|
2123
|
+
"core/lib/deprecations-strings.js | chromeLoadTimesConnectionInfo": {
|
|
2124
|
+
"message": "`chrome.loadTimes()` 已被弃用,请改用标准化 API:Navigation Timing 2。"
|
|
2125
|
+
},
|
|
2126
|
+
"core/lib/deprecations-strings.js | chromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2127
|
+
"message": "`chrome.loadTimes()` 已被弃用,请改用标准化 API:Paint Timing。"
|
|
2128
|
+
},
|
|
2129
|
+
"core/lib/deprecations-strings.js | chromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2130
|
+
"message": "`chrome.loadTimes()` 已被弃用,请改用标准化 API:Navigation Timing 2 中的 `nextHopProtocol`。"
|
|
2131
|
+
},
|
|
2132
|
+
"core/lib/deprecations-strings.js | cookieWithTruncatingChar": {
|
|
2133
|
+
"message": "包含 `(0|r|n)` 字符的 Cookie 将被拒,而不是被截断。"
|
|
2134
|
+
},
|
|
2135
|
+
"core/lib/deprecations-strings.js | crossOriginAccessBasedOnDocumentDomain": {
|
|
2136
|
+
"message": "通过设置 `document.domain` 放宽同源政策的功能已被弃用,并将默认处于停用状态。此弃用警告针对的是通过设置 `document.domain` 启用的跨源访问。"
|
|
2137
|
+
},
|
|
2138
|
+
"core/lib/deprecations-strings.js | crossOriginWindowApi": {
|
|
2139
|
+
"message": "从跨源 iframe 触发 {PH1} 的功能已被弃用,日后将被移除。"
|
|
2140
|
+
},
|
|
2141
|
+
"core/lib/deprecations-strings.js | cssSelectorInternalMediaControlsOverlayCastButton": {
|
|
2142
|
+
"message": "若要停用默认 Cast 集成,应使用 `disableRemotePlayback` 属性,而非 `-internal-media-controls-overlay-cast-button` 选择器。"
|
|
2143
|
+
},
|
|
2144
|
+
"core/lib/deprecations-strings.js | deprecatedWithReplacement": {
|
|
2145
|
+
"message": "{PH1} 已被弃用。请改用 {PH2}。"
|
|
2146
|
+
},
|
|
2147
|
+
"core/lib/deprecations-strings.js | deprecationExample": {
|
|
2148
|
+
"message": "这是因使用弃用的功能而导致问题的一个示例消息(已经过翻译)。"
|
|
2149
|
+
},
|
|
2150
|
+
"core/lib/deprecations-strings.js | documentDomainSettingWithoutOriginAgentClusterHeader": {
|
|
2151
|
+
"message": "通过设置 `document.domain` 放宽同源政策的功能已被弃用,并将默认处于停用状态。若要继续使用此功能,请通过发送 `Origin-Agent-Cluster: ?0` 标头以及文档和框架的 HTTP 响应来选择停用以源为键的代理集群。如需了解详情,请访问 https://developer.chrome.com/blog/immutable-document-domain/。"
|
|
2152
|
+
},
|
|
2153
|
+
"core/lib/deprecations-strings.js | eventPath": {
|
|
2154
|
+
"message": "`Event.path` 已被弃用,并将被移除。请改用 `Event.composedPath()`。"
|
|
2155
|
+
},
|
|
2156
|
+
"core/lib/deprecations-strings.js | expectCTHeader": {
|
|
2157
|
+
"message": "`Expect-CT` 标头已被弃用,并将被移除。Chrome 要求,在 2018 年 4 月 30 日之后颁发的所有受大众信任的证书均须遵守证书透明度政策。"
|
|
2158
|
+
},
|
|
2159
|
+
"core/lib/deprecations-strings.js | feature": {
|
|
2160
|
+
"message": "如需了解详情,请参阅功能状态页面。"
|
|
2161
|
+
},
|
|
2162
|
+
"core/lib/deprecations-strings.js | geolocationInsecureOrigin": {
|
|
2163
|
+
"message": "`getCurrentPosition()` 和 `watchPosition()` 不再适用于不安全的源。若要使用此功能,您应考虑将您的应用转移到安全的源,例如 HTTPS。如需了解详情,请访问 https://goo.gle/chrome-insecure-origins。"
|
|
2164
|
+
},
|
|
2165
|
+
"core/lib/deprecations-strings.js | geolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2166
|
+
"message": "`getCurrentPosition()` 和 `watchPosition()` 不再适用于不安全的源。若要使用此功能,您应考虑将您的应用转移到安全的源,例如 HTTPS。如需了解详情,请访问 https://goo.gle/chrome-insecure-origins。"
|
|
2167
|
+
},
|
|
2168
|
+
"core/lib/deprecations-strings.js | getUserMediaInsecureOrigin": {
|
|
2169
|
+
"message": "`getUserMedia()` 不再适用于不安全的源。若要使用此功能,您应考虑将您的应用转移到安全的源,例如 HTTPS。如需了解详情,请访问 https://goo.gle/chrome-insecure-origins。"
|
|
2170
|
+
},
|
|
2171
|
+
"core/lib/deprecations-strings.js | hostCandidateAttributeGetter": {
|
|
2172
|
+
"message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` 已被弃用。请改用 `RTCPeerConnectionIceErrorEvent.address` 或 `RTCPeerConnectionIceErrorEvent.port`。"
|
|
2173
|
+
},
|
|
2174
|
+
"core/lib/deprecations-strings.js | identityInCanMakePaymentEvent": {
|
|
2175
|
+
"message": "`canmakepayment` Service Worker 事件中的商家源和任意数据已被弃用,并将被移除:`topOrigin`、`paymentRequestOrigin`、`methodData`、`modifiers`。"
|
|
2176
|
+
},
|
|
2177
|
+
"core/lib/deprecations-strings.js | insecurePrivateNetworkSubresourceRequest": {
|
|
2178
|
+
"message": "该网站向网络请求了一项子资源,而且完全是因为其用户的特权网络位置才能够访问此项资源。此类请求会向互联网公开非公用设备和服务器,这会增加跨站请求伪造 (CSRF) 攻击和/或信息泄露的风险。为降低这类风险,Chrome 不再支持从非安全上下文发起针对非公用子资源的请求,并将开始阻止此类请求。"
|
|
2179
|
+
},
|
|
2180
|
+
"core/lib/deprecations-strings.js | localCSSFileExtensionRejected": {
|
|
2181
|
+
"message": "无法从 `file:` 网址加载 CSS,除非它们以 `.css` 文件扩展名结尾。"
|
|
2182
|
+
},
|
|
2183
|
+
"core/lib/deprecations-strings.js | mediaSourceAbortRemove": {
|
|
2184
|
+
"message": "由于规范变更,使用 `SourceBuffer.abort()` 中止 `remove()` 移除异步范围的功能已被弃用。日后我们会移除相应支持。您应改为监听 `updateend` 事件。`abort()` 只应当用于中止异步媒体附加或重置解析状态。"
|
|
2185
|
+
},
|
|
2186
|
+
"core/lib/deprecations-strings.js | mediaSourceDurationTruncatingBuffered": {
|
|
2187
|
+
"message": "由于规范变更,我们不再支持将 `MediaSource.duration` 设为低于任何缓冲编码帧的最高呈现时间戳。日后我们将不再支持隐式移除被截断的缓冲媒体。您应改为对 `newDuration < oldDuration` 的所有 `sourceBuffers` 执行显式 `remove(newDuration, oldDuration)`。"
|
|
2188
|
+
},
|
|
2189
|
+
"core/lib/deprecations-strings.js | milestone": {
|
|
2190
|
+
"message": "此变更将从里程碑 {milestone} 生效。"
|
|
2191
|
+
},
|
|
2192
|
+
"core/lib/deprecations-strings.js | noSysexWebMIDIWithoutPermission": {
|
|
2193
|
+
"message": "即使 `MIDIOptions` 中未指定 sysex,Web MIDI 也会请求获得使用许可。"
|
|
2194
|
+
},
|
|
2195
|
+
"core/lib/deprecations-strings.js | notificationInsecureOrigin": {
|
|
2196
|
+
"message": "无法再从不安全的源使用 Notification API。您应考虑将您的应用转移到安全的源,例如 HTTPS。如需了解详情,请访问 https://goo.gle/chrome-insecure-origins。"
|
|
2197
|
+
},
|
|
2198
|
+
"core/lib/deprecations-strings.js | notificationPermissionRequestedIframe": {
|
|
2199
|
+
"message": "无法再从跨源 iframe 中请求 Notification API 权限。您应考虑改为从顶级框架中请求权限,或者打开一个新窗口。"
|
|
2200
|
+
},
|
|
2201
|
+
"core/lib/deprecations-strings.js | obsoleteWebRtcCipherSuite": {
|
|
2202
|
+
"message": "您的合作伙伴正在协商某个已过时的 (D)TLS 版本。请与您的合作伙伴联系,以解决此问题。"
|
|
2203
|
+
},
|
|
2204
|
+
"core/lib/deprecations-strings.js | openWebDatabaseInsecureContext": {
|
|
2205
|
+
"message": "不安全情境中的 WebSQL 已被弃用,很快就会被移除。请使用 Web Storage 或 Indexed Database。"
|
|
2206
|
+
},
|
|
2207
|
+
"core/lib/deprecations-strings.js | overflowVisibleOnReplacedElement": {
|
|
2208
|
+
"message": "为 img、video 和 canvas 标记指定 `overflow: visible` 可能会导致这些标记在元素边界之外生成视觉内容。请参阅 https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md。"
|
|
2209
|
+
},
|
|
2210
|
+
"core/lib/deprecations-strings.js | paymentInstruments": {
|
|
2211
|
+
"message": "`paymentManager.instruments` 已被弃用。请改用即时安装方式安装付款处理程序。"
|
|
2212
|
+
},
|
|
2213
|
+
"core/lib/deprecations-strings.js | paymentRequestCSPViolation": {
|
|
2214
|
+
"message": "您的 `PaymentRequest` 调用已绕过内容安全政策 (CSP) `connect-src` 指令。此绕过方式已被弃用。请将 `PaymentRequest` API 中的付款方式标识符(在 `supportedMethods` 字段中)添加到 CSP `connect-src` 指令中。"
|
|
2215
|
+
},
|
|
2216
|
+
"core/lib/deprecations-strings.js | persistentQuotaType": {
|
|
2217
|
+
"message": "`StorageType.persistent` 已被弃用。请改用标准化 `navigator.storage`。"
|
|
2218
|
+
},
|
|
2219
|
+
"core/lib/deprecations-strings.js | pictureSourceSrc": {
|
|
2220
|
+
"message": "带有 `<picture>` 父级的 `<source src>` 无效,因此会被忽略。请改用 `<source srcset>`。"
|
|
2221
|
+
},
|
|
2222
|
+
"core/lib/deprecations-strings.js | prefixedStorageInfo": {
|
|
2223
|
+
"message": "`window.webkitStorageInfo` 已被弃用。请改用标准化 `navigator.storage`。"
|
|
2224
|
+
},
|
|
2225
|
+
"core/lib/deprecations-strings.js | requestedSubresourceWithEmbeddedCredentials": {
|
|
2226
|
+
"message": "如果子资源请求的网址包含嵌入式凭据(例如 `https://user:pass@host/`),相应子资源请求会被屏蔽。"
|
|
2227
|
+
},
|
|
2228
|
+
"core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpFalse": {
|
|
2229
|
+
"message": "约束条件 `DtlsSrtpKeyAgreement` 已被移除。您已为此约束条件指定 `false` 值,系统会将这种情况解读为尝试使用已被移除的 `SDES key negotiation` 方法。此功能已被移除;请改用支持 `DTLS key negotiation`的服务。"
|
|
2230
|
+
},
|
|
2231
|
+
"core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpTrue": {
|
|
2232
|
+
"message": "约束条件 `DtlsSrtpKeyAgreement` 已被移除。您已为此约束条件指定 `true` 值,这没有任何作用,但为整洁起见,您可以移除此约束条件。"
|
|
2233
|
+
},
|
|
2234
|
+
"core/lib/deprecations-strings.js | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
|
2235
|
+
"message": "检测到`Complex Plan B SDP`。`Session Description Protocol`的这种方言不再受支持。请改用`Unified Plan SDP`。"
|
|
2236
|
+
},
|
|
2237
|
+
"core/lib/deprecations-strings.js | rtcPeerConnectionSdpSemanticsPlanB": {
|
|
2238
|
+
"message": "使用 `{sdpSemantics:plan-b}` 构造 `RTCPeerConnection` 时采用了 `Plan B SDP semantics`,该协议是 `Session Description Protocol` 的非标准旧版本,已从 Web 平台中永久删除。使用 `IS_FUCHSIA` 进行构建时,这个旧版本仍可用,但我们打算尽快将其删除,因此请不要再依赖它。如需查看状态,请访问 https://crbug.com/1302249。"
|
|
2239
|
+
},
|
|
2240
|
+
"core/lib/deprecations-strings.js | rtcpMuxPolicyNegotiate": {
|
|
2241
|
+
"message": "`rtcpMuxPolicy` 选项已被弃用,并将被移除。"
|
|
2242
|
+
},
|
|
2243
|
+
"core/lib/deprecations-strings.js | sharedArrayBufferConstructedWithoutIsolation": {
|
|
2244
|
+
"message": "`SharedArrayBuffer` 将要求进行跨域隔离。如需了解详情,请访问 https://developer.chrome.com/blog/enabling-shared-array-buffer/。"
|
|
2245
|
+
},
|
|
2246
|
+
"core/lib/deprecations-strings.js | textToSpeech_DisallowedByAutoplay": {
|
|
2247
|
+
"message": "无需用户激活的 `speechSynthesis.speak()` 已被弃用,并将被移除。"
|
|
2248
|
+
},
|
|
2249
|
+
"core/lib/deprecations-strings.js | title": {
|
|
2250
|
+
"message": "使用了已弃用的功能"
|
|
2251
|
+
},
|
|
2252
|
+
"core/lib/deprecations-strings.js | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2253
|
+
"message": "扩展程序应选择启用跨域隔离,以便继续使用 `SharedArrayBuffer`。请参阅 https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/。"
|
|
2254
|
+
},
|
|
2255
|
+
"core/lib/deprecations-strings.js | vendorSpecificApi": {
|
|
2256
|
+
"message": "{PH1} 是特定于供应商的方法。请改用标准 {PH2}。"
|
|
2257
|
+
},
|
|
2258
|
+
"core/lib/deprecations-strings.js | xhrJSONEncodingDetection": {
|
|
2259
|
+
"message": "`XMLHttpRequest` 中的响应 JSON 不支持 UTF-16"
|
|
2260
|
+
},
|
|
2261
|
+
"core/lib/deprecations-strings.js | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2262
|
+
"message": "我们不再支持主线程上的同步 `XMLHttpRequest`,因为这会对最终用户的体验产生不利影响。如需更多帮助,请访问 https://xhr.spec.whatwg.org/。"
|
|
2263
|
+
},
|
|
2264
|
+
"core/lib/deprecations-strings.js | xrSupportsSession": {
|
|
2265
|
+
"message": "`supportsSession()` 已被弃用。请改用 `isSessionSupported()` 并查看已解析的布尔值。"
|
|
2266
|
+
},
|
|
2267
|
+
"core/lib/i18n/i18n.js | columnBlockingTime": {
|
|
1872
2268
|
"message": "主线程拦截时间"
|
|
1873
2269
|
},
|
|
1874
|
-
"
|
|
2270
|
+
"core/lib/i18n/i18n.js | columnCacheTTL": {
|
|
1875
2271
|
"message": "缓存 TTL"
|
|
1876
2272
|
},
|
|
1877
|
-
"
|
|
2273
|
+
"core/lib/i18n/i18n.js | columnDescription": {
|
|
1878
2274
|
"message": "说明"
|
|
1879
2275
|
},
|
|
1880
|
-
"
|
|
2276
|
+
"core/lib/i18n/i18n.js | columnDuration": {
|
|
1881
2277
|
"message": "时长"
|
|
1882
2278
|
},
|
|
1883
|
-
"
|
|
2279
|
+
"core/lib/i18n/i18n.js | columnElement": {
|
|
1884
2280
|
"message": "元素"
|
|
1885
2281
|
},
|
|
1886
|
-
"
|
|
2282
|
+
"core/lib/i18n/i18n.js | columnFailingElem": {
|
|
1887
2283
|
"message": "与建议不符的元素"
|
|
1888
2284
|
},
|
|
1889
|
-
"
|
|
2285
|
+
"core/lib/i18n/i18n.js | columnLocation": {
|
|
1890
2286
|
"message": "位置"
|
|
1891
2287
|
},
|
|
1892
|
-
"
|
|
2288
|
+
"core/lib/i18n/i18n.js | columnName": {
|
|
1893
2289
|
"message": "名称"
|
|
1894
2290
|
},
|
|
1895
|
-
"
|
|
2291
|
+
"core/lib/i18n/i18n.js | columnOverBudget": {
|
|
1896
2292
|
"message": "超出预算"
|
|
1897
2293
|
},
|
|
1898
|
-
"
|
|
2294
|
+
"core/lib/i18n/i18n.js | columnRequests": {
|
|
1899
2295
|
"message": "请求"
|
|
1900
2296
|
},
|
|
1901
|
-
"
|
|
2297
|
+
"core/lib/i18n/i18n.js | columnResourceSize": {
|
|
1902
2298
|
"message": "资源大小"
|
|
1903
2299
|
},
|
|
1904
|
-
"
|
|
2300
|
+
"core/lib/i18n/i18n.js | columnResourceType": {
|
|
1905
2301
|
"message": "资源类型"
|
|
1906
2302
|
},
|
|
1907
|
-
"
|
|
2303
|
+
"core/lib/i18n/i18n.js | columnSize": {
|
|
1908
2304
|
"message": "大小"
|
|
1909
2305
|
},
|
|
1910
|
-
"
|
|
2306
|
+
"core/lib/i18n/i18n.js | columnSource": {
|
|
1911
2307
|
"message": "来源"
|
|
1912
2308
|
},
|
|
1913
|
-
"
|
|
2309
|
+
"core/lib/i18n/i18n.js | columnStartTime": {
|
|
1914
2310
|
"message": "开始时间"
|
|
1915
2311
|
},
|
|
1916
|
-
"
|
|
2312
|
+
"core/lib/i18n/i18n.js | columnTimeSpent": {
|
|
1917
2313
|
"message": "花费的时间"
|
|
1918
2314
|
},
|
|
1919
|
-
"
|
|
2315
|
+
"core/lib/i18n/i18n.js | columnTransferSize": {
|
|
1920
2316
|
"message": "传输文件大小"
|
|
1921
2317
|
},
|
|
1922
|
-
"
|
|
2318
|
+
"core/lib/i18n/i18n.js | columnURL": {
|
|
1923
2319
|
"message": "网址"
|
|
1924
2320
|
},
|
|
1925
|
-
"
|
|
2321
|
+
"core/lib/i18n/i18n.js | columnWastedBytes": {
|
|
1926
2322
|
"message": "可能达到的节省程度"
|
|
1927
2323
|
},
|
|
1928
|
-
"
|
|
2324
|
+
"core/lib/i18n/i18n.js | columnWastedMs": {
|
|
1929
2325
|
"message": "可能达到的节省程度"
|
|
1930
2326
|
},
|
|
1931
|
-
"
|
|
2327
|
+
"core/lib/i18n/i18n.js | cumulativeLayoutShiftMetric": {
|
|
1932
2328
|
"message": "Cumulative Layout Shift"
|
|
1933
2329
|
},
|
|
1934
|
-
"
|
|
2330
|
+
"core/lib/i18n/i18n.js | displayValueByteSavings": {
|
|
1935
2331
|
"message": "有望节省 {wastedBytes, number, bytes} KiB"
|
|
1936
2332
|
},
|
|
1937
|
-
"
|
|
2333
|
+
"core/lib/i18n/i18n.js | displayValueElementsFound": {
|
|
1938
2334
|
"message": "{nodeCount,plural, =1{发现了 1 个元素}other{发现了 # 个元素}}"
|
|
1939
2335
|
},
|
|
1940
|
-
"
|
|
2336
|
+
"core/lib/i18n/i18n.js | displayValueMsSavings": {
|
|
1941
2337
|
"message": "有望节省 {wastedMs, number, milliseconds} 毫秒"
|
|
1942
2338
|
},
|
|
1943
|
-
"
|
|
2339
|
+
"core/lib/i18n/i18n.js | documentResourceType": {
|
|
1944
2340
|
"message": "文档"
|
|
1945
2341
|
},
|
|
1946
|
-
"
|
|
2342
|
+
"core/lib/i18n/i18n.js | firstContentfulPaintMetric": {
|
|
1947
2343
|
"message": "First Contentful Paint"
|
|
1948
2344
|
},
|
|
1949
|
-
"
|
|
2345
|
+
"core/lib/i18n/i18n.js | firstMeaningfulPaintMetric": {
|
|
1950
2346
|
"message": "首次有效绘制时间"
|
|
1951
2347
|
},
|
|
1952
|
-
"
|
|
2348
|
+
"core/lib/i18n/i18n.js | fontResourceType": {
|
|
1953
2349
|
"message": "字体"
|
|
1954
2350
|
},
|
|
1955
|
-
"
|
|
2351
|
+
"core/lib/i18n/i18n.js | imageResourceType": {
|
|
1956
2352
|
"message": "图片"
|
|
1957
2353
|
},
|
|
1958
|
-
"
|
|
2354
|
+
"core/lib/i18n/i18n.js | interactionToNextPaint": {
|
|
2355
|
+
"message": "从互动到下一次绘制"
|
|
2356
|
+
},
|
|
2357
|
+
"core/lib/i18n/i18n.js | interactiveMetric": {
|
|
1959
2358
|
"message": "Time to Interactive"
|
|
1960
2359
|
},
|
|
1961
|
-
"
|
|
2360
|
+
"core/lib/i18n/i18n.js | itemSeverityHigh": {
|
|
1962
2361
|
"message": "高"
|
|
1963
2362
|
},
|
|
1964
|
-
"
|
|
2363
|
+
"core/lib/i18n/i18n.js | itemSeverityLow": {
|
|
1965
2364
|
"message": "低"
|
|
1966
2365
|
},
|
|
1967
|
-
"
|
|
2366
|
+
"core/lib/i18n/i18n.js | itemSeverityMedium": {
|
|
1968
2367
|
"message": "中"
|
|
1969
2368
|
},
|
|
1970
|
-
"
|
|
2369
|
+
"core/lib/i18n/i18n.js | largestContentfulPaintMetric": {
|
|
1971
2370
|
"message": "Largest Contentful Paint"
|
|
1972
2371
|
},
|
|
1973
|
-
"
|
|
2372
|
+
"core/lib/i18n/i18n.js | maxPotentialFIDMetric": {
|
|
1974
2373
|
"message": "首次输入延迟最长预估值"
|
|
1975
2374
|
},
|
|
1976
|
-
"
|
|
2375
|
+
"core/lib/i18n/i18n.js | mediaResourceType": {
|
|
1977
2376
|
"message": "媒体"
|
|
1978
2377
|
},
|
|
1979
|
-
"
|
|
2378
|
+
"core/lib/i18n/i18n.js | ms": {
|
|
1980
2379
|
"message": "{timeInMs, number, milliseconds} 毫秒"
|
|
1981
2380
|
},
|
|
1982
|
-
"
|
|
2381
|
+
"core/lib/i18n/i18n.js | otherResourceType": {
|
|
1983
2382
|
"message": "其他"
|
|
1984
2383
|
},
|
|
1985
|
-
"
|
|
2384
|
+
"core/lib/i18n/i18n.js | otherResourcesLabel": {
|
|
1986
2385
|
"message": "其他资源"
|
|
1987
2386
|
},
|
|
1988
|
-
"
|
|
2387
|
+
"core/lib/i18n/i18n.js | scriptResourceType": {
|
|
1989
2388
|
"message": "脚本"
|
|
1990
2389
|
},
|
|
1991
|
-
"
|
|
2390
|
+
"core/lib/i18n/i18n.js | seconds": {
|
|
1992
2391
|
"message": "{timeInMs, number, seconds} 秒"
|
|
1993
2392
|
},
|
|
1994
|
-
"
|
|
2393
|
+
"core/lib/i18n/i18n.js | speedIndexMetric": {
|
|
1995
2394
|
"message": "Speed Index"
|
|
1996
2395
|
},
|
|
1997
|
-
"
|
|
2396
|
+
"core/lib/i18n/i18n.js | stylesheetResourceType": {
|
|
1998
2397
|
"message": "样式表"
|
|
1999
2398
|
},
|
|
2000
|
-
"
|
|
2399
|
+
"core/lib/i18n/i18n.js | thirdPartyResourceType": {
|
|
2001
2400
|
"message": "第三方"
|
|
2002
2401
|
},
|
|
2003
|
-
"
|
|
2402
|
+
"core/lib/i18n/i18n.js | totalBlockingTimeMetric": {
|
|
2004
2403
|
"message": "Total Blocking Time"
|
|
2005
2404
|
},
|
|
2006
|
-
"
|
|
2405
|
+
"core/lib/i18n/i18n.js | totalResourceType": {
|
|
2007
2406
|
"message": "总计"
|
|
2008
2407
|
},
|
|
2009
|
-
"
|
|
2408
|
+
"core/lib/lh-error.js | badTraceRecording": {
|
|
2010
2409
|
"message": "在您加载的网页上录制跟踪记录时发生了错误。请重新运行 Lighthouse。({errorCode})"
|
|
2011
2410
|
},
|
|
2012
|
-
"
|
|
2411
|
+
"core/lib/lh-error.js | criTimeout": {
|
|
2013
2412
|
"message": "等待调试程序协议初次连接时超时。"
|
|
2014
2413
|
},
|
|
2015
|
-
"
|
|
2414
|
+
"core/lib/lh-error.js | didntCollectScreenshots": {
|
|
2016
2415
|
"message": "Chrome 在网页加载期间未收集任何屏幕截图。请确保网页上有可见的内容,然后尝试重新运行 Lighthouse。({errorCode})"
|
|
2017
2416
|
},
|
|
2018
|
-
"
|
|
2417
|
+
"core/lib/lh-error.js | dnsFailure": {
|
|
2019
2418
|
"message": "DNS 服务器无法解析所提供的网域。"
|
|
2020
2419
|
},
|
|
2021
|
-
"
|
|
2420
|
+
"core/lib/lh-error.js | erroredRequiredArtifact": {
|
|
2022
2421
|
"message": "必需的 {artifactName} 收集器出现错误:{errorMessage}"
|
|
2023
2422
|
},
|
|
2024
|
-
"
|
|
2423
|
+
"core/lib/lh-error.js | internalChromeError": {
|
|
2025
2424
|
"message": "发生了内部 Chrome 错误。请重新启动 Chrome,然后尝试重新运行 Lighthouse。"
|
|
2026
2425
|
},
|
|
2027
|
-
"
|
|
2426
|
+
"core/lib/lh-error.js | missingRequiredArtifact": {
|
|
2028
2427
|
"message": "必需的 {artifactName} 收集器未运行。"
|
|
2029
2428
|
},
|
|
2030
|
-
"
|
|
2429
|
+
"core/lib/lh-error.js | noFcp": {
|
|
2031
2430
|
"message": "该网页未渲染任何内容。请确保在网页加载过程中让浏览器窗口始终位于前台,然后重试。({errorCode})"
|
|
2032
2431
|
},
|
|
2033
|
-
"
|
|
2432
|
+
"core/lib/lh-error.js | noLcp": {
|
|
2433
|
+
"message": "该网页显示的内容不符合 Largest Contentful Paint (LCP) 的要求。请确保该网页具有有效的 LCP 元素,然后重试。({errorCode})"
|
|
2434
|
+
},
|
|
2435
|
+
"core/lib/lh-error.js | notHtml": {
|
|
2034
2436
|
"message": "所提供的网页不是 HTML(以 MIME 类型 {mimeType} 提供)。"
|
|
2035
2437
|
},
|
|
2036
|
-
"
|
|
2438
|
+
"core/lib/lh-error.js | oldChromeDoesNotSupportFeature": {
|
|
2037
2439
|
"message": "这个 Chrome 版本太旧,不支持“{featureName}”。请使用较新版本以查看完整结果。"
|
|
2038
2440
|
},
|
|
2039
|
-
"
|
|
2441
|
+
"core/lib/lh-error.js | pageLoadFailed": {
|
|
2040
2442
|
"message": "Lighthouse 无法可靠地加载您请求的页面。请确保您测试的网址正确无误并且服务器可正确响应所有请求。"
|
|
2041
2443
|
},
|
|
2042
|
-
"
|
|
2444
|
+
"core/lib/lh-error.js | pageLoadFailedHung": {
|
|
2043
2445
|
"message": "Lighthouse 无法可靠地加载您请求的网址,因为页面已停止响应。"
|
|
2044
2446
|
},
|
|
2045
|
-
"
|
|
2447
|
+
"core/lib/lh-error.js | pageLoadFailedInsecure": {
|
|
2046
2448
|
"message": "您提供的网址缺少有效的安全证书。{securityMessages}"
|
|
2047
2449
|
},
|
|
2048
|
-
"
|
|
2450
|
+
"core/lib/lh-error.js | pageLoadFailedInterstitial": {
|
|
2049
2451
|
"message": "Chrome 阻止了带有插页式广告的网页加载。请确保您测试的网址正确无误并且服务器可正确响应所有请求。"
|
|
2050
2452
|
},
|
|
2051
|
-
"
|
|
2453
|
+
"core/lib/lh-error.js | pageLoadFailedWithDetails": {
|
|
2052
2454
|
"message": "Lighthouse 无法可靠地加载您请求的页面。请确保您测试的网址正确无误并且服务器可正确响应所有请求。(详细信息:{errorDetails})"
|
|
2053
2455
|
},
|
|
2054
|
-
"
|
|
2456
|
+
"core/lib/lh-error.js | pageLoadFailedWithStatusCode": {
|
|
2055
2457
|
"message": "Lighthouse 无法可靠地加载您请求的页面。请确保您测试的网址正确无误并且服务器可正确响应所有请求。(状态代码:{statusCode})"
|
|
2056
2458
|
},
|
|
2057
|
-
"
|
|
2459
|
+
"core/lib/lh-error.js | pageLoadTookTooLong": {
|
|
2058
2460
|
"message": "您的网页加载时间过长。请按照报告中给出的提示缩短网页加载时间,然后尝试重新运行 Lighthouse。({errorCode})"
|
|
2059
2461
|
},
|
|
2060
|
-
"
|
|
2462
|
+
"core/lib/lh-error.js | protocolTimeout": {
|
|
2061
2463
|
"message": "等待 DevTools 协议响应的用时超出了分配的时间。(方法:{protocolMethod})"
|
|
2062
2464
|
},
|
|
2063
|
-
"
|
|
2465
|
+
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2064
2466
|
"message": "提取资源内容的用时超出了分配的时间"
|
|
2065
2467
|
},
|
|
2066
|
-
"
|
|
2468
|
+
"core/lib/lh-error.js | urlInvalid": {
|
|
2067
2469
|
"message": "您提供的网址似乎无效。"
|
|
2068
2470
|
},
|
|
2471
|
+
"core/lib/navigation-error.js | warningXhtml": {
|
|
2472
|
+
"message": "页面 MIME 类型为 XHTML:Lighthouse 未明确支持此文档类型"
|
|
2473
|
+
},
|
|
2474
|
+
"core/user-flow.js | defaultFlowName": {
|
|
2475
|
+
"message": "用户体验流程 ({url})"
|
|
2476
|
+
},
|
|
2477
|
+
"core/user-flow.js | defaultNavigationName": {
|
|
2478
|
+
"message": "导航报告 ({url})"
|
|
2479
|
+
},
|
|
2480
|
+
"core/user-flow.js | defaultSnapshotName": {
|
|
2481
|
+
"message": "快照报告 ({url})"
|
|
2482
|
+
},
|
|
2483
|
+
"core/user-flow.js | defaultTimespanName": {
|
|
2484
|
+
"message": "时间跨度报告 ({url})"
|
|
2485
|
+
},
|
|
2486
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
2487
|
+
"message": "所有报告"
|
|
2488
|
+
},
|
|
2489
|
+
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
2490
|
+
"message": "类别"
|
|
2491
|
+
},
|
|
2492
|
+
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
2493
|
+
"message": "无障碍"
|
|
2494
|
+
},
|
|
2495
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
2496
|
+
"message": "最佳做法"
|
|
2497
|
+
},
|
|
2498
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
2499
|
+
"message": "性能"
|
|
2500
|
+
},
|
|
2501
|
+
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
2502
|
+
"message": "渐进式 Web 应用"
|
|
2503
|
+
},
|
|
2504
|
+
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
2505
|
+
"message": "SEO"
|
|
2506
|
+
},
|
|
2507
|
+
"flow-report/src/i18n/ui-strings.js | desktop": {
|
|
2508
|
+
"message": "桌面版"
|
|
2509
|
+
},
|
|
2510
|
+
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
2511
|
+
"message": "了解 Lighthouse 流程报告"
|
|
2512
|
+
},
|
|
2513
|
+
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
2514
|
+
"message": "了解流程"
|
|
2515
|
+
},
|
|
2516
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
2517
|
+
"message": "使用导航报告可以…"
|
|
2518
|
+
},
|
|
2519
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
2520
|
+
"message": "使用快照报告可以…"
|
|
2521
|
+
},
|
|
2522
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
2523
|
+
"message": "使用时间跨度报告可以…"
|
|
2524
|
+
},
|
|
2525
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
2526
|
+
"message": "获取 Lighthouse 给出的性能得分。"
|
|
2527
|
+
},
|
|
2528
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
2529
|
+
"message": "衡量网页加载性能指标,例如 Largest Contentful Paint 和 Speed Index。"
|
|
2530
|
+
},
|
|
2531
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
2532
|
+
"message": "评估渐进式 Web 应用的功能。"
|
|
2533
|
+
},
|
|
2534
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
2535
|
+
"message": "查找单页应用或复杂表单中的无障碍功能方面的问题。"
|
|
2536
|
+
},
|
|
2537
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
2538
|
+
"message": "评估互动背后隐藏的菜单和界面元素的最佳做法。"
|
|
2539
|
+
},
|
|
2540
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
2541
|
+
"message": "衡量一系列互动的布局偏移和 JavaScript 执行用时。"
|
|
2542
|
+
},
|
|
2543
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
2544
|
+
"message": "发掘性能提升机会,以便改进长期网页和单页应用的用户体验。"
|
|
2545
|
+
},
|
|
2546
|
+
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
2547
|
+
"message": "影响力最大"
|
|
2548
|
+
},
|
|
2549
|
+
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
2550
|
+
"message": "{numInformative,plural, =1{{numInformative} 项参考性评估}other{{numInformative} 项参考性评估}}"
|
|
2551
|
+
},
|
|
2552
|
+
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
2553
|
+
"message": "移动版"
|
|
2554
|
+
},
|
|
2555
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
2556
|
+
"message": "网页加载"
|
|
2557
|
+
},
|
|
2558
|
+
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
2559
|
+
"message": "导航报告旨在分析单个网页的加载情况,与最初的 Lighthouse 报告完全一样。"
|
|
2560
|
+
},
|
|
2561
|
+
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
2562
|
+
"message": "导航报告"
|
|
2563
|
+
},
|
|
2564
|
+
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
2565
|
+
"message": "{numNavigation,plural, =1{{numNavigation} 份导航报告}other{{numNavigation} 份导航报告}}"
|
|
2566
|
+
},
|
|
2567
|
+
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
2568
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} 项有望通过的评估}other{{numPassableAudits} 项有望通过的评估}}"
|
|
2569
|
+
},
|
|
2570
|
+
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
2571
|
+
"message": "{numPassed,plural, =1{通过了 {numPassed} 项评估}other{通过了 {numPassed} 项评估}}"
|
|
2572
|
+
},
|
|
2573
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
2574
|
+
"message": "一般"
|
|
2575
|
+
},
|
|
2576
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
2577
|
+
"message": "出错了"
|
|
2578
|
+
},
|
|
2579
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
2580
|
+
"message": "较差"
|
|
2581
|
+
},
|
|
2582
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
2583
|
+
"message": "良好"
|
|
2584
|
+
},
|
|
2585
|
+
"flow-report/src/i18n/ui-strings.js | save": {
|
|
2586
|
+
"message": "保存"
|
|
2587
|
+
},
|
|
2588
|
+
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
2589
|
+
"message": "捕获到的网页状态"
|
|
2590
|
+
},
|
|
2591
|
+
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
2592
|
+
"message": "快照报告旨在分析处于特定状态的网页(通常是在用户互动之后)。"
|
|
2593
|
+
},
|
|
2594
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
2595
|
+
"message": "快照报告"
|
|
2596
|
+
},
|
|
2597
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
2598
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} 份快照报告}other{{numSnapshot} 份快照报告}}"
|
|
2599
|
+
},
|
|
2600
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
2601
|
+
"message": "摘要"
|
|
2602
|
+
},
|
|
2603
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
2604
|
+
"message": "用户互动"
|
|
2605
|
+
},
|
|
2606
|
+
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
2607
|
+
"message": "时间跨度报告旨在分析任意时间段(通常包含用户互动)。"
|
|
2608
|
+
},
|
|
2609
|
+
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
2610
|
+
"message": "时间跨度报告"
|
|
2611
|
+
},
|
|
2612
|
+
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
2613
|
+
"message": "{numTimespan,plural, =1{{numTimespan} 份时间跨度报告}other{{numTimespan} 份时间跨度报告}}"
|
|
2614
|
+
},
|
|
2615
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
2616
|
+
"message": "Lighthouse 用户流报告"
|
|
2617
|
+
},
|
|
2069
2618
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2070
2619
|
"message": "对于动画内容,请使用 [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) 尽量减少当内容在屏幕外时的 CPU 使用量。"
|
|
2071
2620
|
},
|
|
@@ -2109,7 +2658,7 @@
|
|
|
2109
2658
|
"message": "在主题背景中定义自定义字体时,您可以指定 `@font-display`。"
|
|
2110
2659
|
},
|
|
2111
2660
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | modern-image-formats": {
|
|
2112
|
-
"message": "
|
|
2661
|
+
"message": "不妨考虑在您的网站上配置[含 Convert 图片样式的 WebP 图片格式](https://www.drupal.org/docs/core-modules-and-themes/core-modules/image-module/working-with-images#styles)。"
|
|
2113
2662
|
},
|
|
2114
2663
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | offscreen-images": {
|
|
2115
2664
|
"message": "安装可延迟加载图片的 [Drupal 模块](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A67&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=%22lazy+load%22&solrsort=iss_project_release_usage+desc&op=Search)。此类模块能够推迟加载所有的屏幕外图片,进而提高性能。"
|
|
@@ -2147,6 +2696,45 @@
|
|
|
2147
2696
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-responsive-images": {
|
|
2148
2697
|
"message": "确保您使用的是 Drupal 提供的原生[自适应图片样式](https://www.drupal.org/docs/8/mobile-guide/responsive-images-in-drupal-8)(在 Drupal 8 及更高版本中提供)。通过视图模式、视图或借助 WYSIWYG 编辑器上传的图片呈现图片字段时,请使用自适应图片样式。"
|
|
2149
2698
|
},
|
|
2699
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | font-display": {
|
|
2700
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Optimize Fonts`”设置,即可自动利用 `font-display` CSS 功能来确保用户在网页字体加载期间能看到文字。"
|
|
2701
|
+
},
|
|
2702
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | modern-image-formats": {
|
|
2703
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Next-Gen Formats`”设置,即可将图片转换成 WebP 格式。"
|
|
2704
|
+
},
|
|
2705
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | offscreen-images": {
|
|
2706
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Lazy Load Images`”设置,即可将屏幕外图片的加载时间延迟到需要它们时。"
|
|
2707
|
+
},
|
|
2708
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | render-blocking-resources": {
|
|
2709
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Critical CSS`”和“`Script Delay`”设置,即可延迟加载非关键 JS/CSS。"
|
|
2710
|
+
},
|
|
2711
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | server-response-time": {
|
|
2712
|
+
"message": "您只需使用 [Ezoic Cloud Caching](https://pubdash.ezoic.com/speed/caching),即可将内容缓存到我们的全球网络,从而缩短第一个字节呈现前的加载用时。"
|
|
2713
|
+
},
|
|
2714
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | unminified-css": {
|
|
2715
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Minify CSS`”设置,即可自动压缩 CSS 以减少网络载荷量。"
|
|
2716
|
+
},
|
|
2717
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | unminified-javascript": {
|
|
2718
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Minify Javascript`”设置,即可自动压缩 JS 以减少网络载荷量。"
|
|
2719
|
+
},
|
|
2720
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | unused-css-rules": {
|
|
2721
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Remove Unused CSS`”设置,即可助力解决此问题。此设置会识别您网站的每个网页上实际使用的 CSS 类并移除其他所有类,以确保文件始终不大。"
|
|
2722
|
+
},
|
|
2723
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-long-cache-ttl": {
|
|
2724
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Efficient Static Cache Policy`”设置,即可在缓存标头中为静态资源设定建议值。"
|
|
2725
|
+
},
|
|
2726
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-optimized-images": {
|
|
2727
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Next-Gen Formats`”设置,即可将图片转换成 WebP 格式。"
|
|
2728
|
+
},
|
|
2729
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-rel-preconnect": {
|
|
2730
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Pre-Connect Origins`”设置,即可自动添加 `preconnect` 资源提示以尽早连接到重要的第三方源。"
|
|
2731
|
+
},
|
|
2732
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-rel-preload": {
|
|
2733
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Preload Fonts`”和“`Preload Background Images`”设置,即可添加 `preload` 链接来优先提取目前在网页加载过程中较晚请求加载的资源。"
|
|
2734
|
+
},
|
|
2735
|
+
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-responsive-images": {
|
|
2736
|
+
"message": "您只需使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 并启用“`Resize Images`”设置,即可调整图片大小以适合设备的大小,从而减少网络载荷量。"
|
|
2737
|
+
},
|
|
2150
2738
|
"node_modules/lighthouse-stack-packs/packs/joomla.js | efficient-animated-content": {
|
|
2151
2739
|
"message": "建议您将 GIF 上传到可让其作为 HTML5 视频嵌入的服务。"
|
|
2152
2740
|
},
|
|
@@ -2226,19 +2814,25 @@
|
|
|
2226
2814
|
"message": "您可以通过[修改主题背景的布局](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)来添加 `<link rel=preload>` 标记。"
|
|
2227
2815
|
},
|
|
2228
2816
|
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
|
|
2229
|
-
"message": "请使用 `
|
|
2817
|
+
"message": "请使用 `next/image` 组件(而非 `<img>`)来自动优化图片格式。[了解详情](https://nextjs.org/docs/basic-features/image-optimization)。"
|
|
2230
2818
|
},
|
|
2231
2819
|
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
|
2232
|
-
"message": "请使用 `next/image`
|
|
2820
|
+
"message": "请使用 `next/image` 组件(而非 `<img>`)来自动延迟加载图片。[了解详情](https://nextjs.org/docs/basic-features/image-optimization)。"
|
|
2821
|
+
},
|
|
2822
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | prioritize-lcp-image": {
|
|
2823
|
+
"message": "您只需使用 `next/image` 组件并将“priority”设为 true,即可预加载 LCP 图片。[了解详情](https://nextjs.org/docs/api-reference/next/image#priority)。"
|
|
2233
2824
|
},
|
|
2234
2825
|
"node_modules/lighthouse-stack-packs/packs/next.js | render-blocking-resources": {
|
|
2235
2826
|
"message": "请使用 `next/script` 组件推迟加载非关键第三方脚本。[了解详情](https://nextjs.org/docs/basic-features/script)。"
|
|
2236
2827
|
},
|
|
2828
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unsized-images": {
|
|
2829
|
+
"message": "请使用 `next/image` 组件,以确保始终指定恰当的图片尺寸。[了解详情](https://nextjs.org/docs/api-reference/next/image#width)。"
|
|
2830
|
+
},
|
|
2237
2831
|
"node_modules/lighthouse-stack-packs/packs/next.js | unused-css-rules": {
|
|
2238
2832
|
"message": "建议您在 `Next.js` 配置中设置 `PurgeCSS` 以从样式表中移除未使用的规则。[了解详情](https://purgecss.com/guides/next.html)。"
|
|
2239
2833
|
},
|
|
2240
2834
|
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
|
|
2241
|
-
"message": "
|
|
2835
|
+
"message": "您只需使用 `Webpack Bundle Analyzer`,即可检测未用到的 JavaScript 代码。[了解详情](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
|
|
2242
2836
|
},
|
|
2243
2837
|
"node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
|
|
2244
2838
|
"message": "建议您使用 `Next.js Analytics` 衡量应用的实际性能。[了解详情](https://nextjs.org/docs/advanced-features/measuring-performance)。"
|
|
@@ -2247,7 +2841,7 @@
|
|
|
2247
2841
|
"message": "请为不可变资源和`Server-side Rendered` (SSR) 网页配置缓存。[了解详情](https://nextjs.org/docs/going-to-production#caching)。"
|
|
2248
2842
|
},
|
|
2249
2843
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
|
|
2250
|
-
"message": "请使用 `next/image` 组件(而非 `<img
|
|
2844
|
+
"message": "请使用 `next/image` 组件(而非 `<img>`)来调整图片质量。[了解详情](https://nextjs.org/docs/basic-features/image-optimization)。"
|
|
2251
2845
|
},
|
|
2252
2846
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
|
|
2253
2847
|
"message": "请使用 `next/image` 组件设置适当的 `sizes`。[了解详情](https://nextjs.org/docs/api-reference/next/image#sizes)。"
|
|
@@ -2255,6 +2849,24 @@
|
|
|
2255
2849
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
2256
2850
|
"message": "请在您的 Next.js 服务器上启用压缩功能。[了解详情](https://nextjs.org/docs/api-reference/next.config.js/compression)。"
|
|
2257
2851
|
},
|
|
2852
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
|
|
2853
|
+
"message": "请使用 `nuxt/image` 组件并采用如下设置:`format=\"webp\"`。[了解详情](https://image.nuxtjs.org/components/nuxt-img#format)。"
|
|
2854
|
+
},
|
|
2855
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | offscreen-images": {
|
|
2856
|
+
"message": "对于屏幕外图片,请使用 `nuxt/image` 组件并采用如下设置:`loading=\"lazy\"`。[了解详情](https://image.nuxtjs.org/components/nuxt-img#loading)。"
|
|
2857
|
+
},
|
|
2858
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | prioritize-lcp-image": {
|
|
2859
|
+
"message": "对于 LCP 图片,请使用 `nuxt/image` 组件并指定 `preload`。[了解详情](https://image.nuxtjs.org/components/nuxt-img#preload)。"
|
|
2860
|
+
},
|
|
2861
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | unsized-images": {
|
|
2862
|
+
"message": "请使用 `nuxt/image` 组件并指定明确的 `width` 和 `height`。[了解详情](https://image.nuxtjs.org/components/nuxt-img#width--height)。"
|
|
2863
|
+
},
|
|
2864
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-optimized-images": {
|
|
2865
|
+
"message": "请使用 `nuxt/image` 组件并设置适当的 `quality`。[了解详情](https://image.nuxtjs.org/components/nuxt-img#quality)。"
|
|
2866
|
+
},
|
|
2867
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-responsive-images": {
|
|
2868
|
+
"message": "请使用 `nuxt/image` 组件并设置适当的 `sizes`。[了解详情](https://image.nuxtjs.org/components/nuxt-img#sizes)。"
|
|
2869
|
+
},
|
|
2258
2870
|
"node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
|
|
2259
2871
|
"message": "[将 GIF 动画替换为视频](https://web.dev/replace-gifs-with-videos/)以提高网页加载速度,并考虑使用现代文件格式(例如 [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) 或 [AV1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder)),通过目前最先进的 VP9 视频编解码器将压缩效率提高 30% 以上。"
|
|
2260
2872
|
},
|
|
@@ -2304,7 +2916,7 @@
|
|
|
2304
2916
|
"message": "如果您使用了 React Router,请尽量避免使用 `<Redirect>` 组件进行[路径导航](https://reacttraining.com/react-router/web/api/Redirect)。"
|
|
2305
2917
|
},
|
|
2306
2918
|
"node_modules/lighthouse-stack-packs/packs/react.js | server-response-time": {
|
|
2307
|
-
"message": "如果您在服务器端呈现任何 React 组件,不妨使用 `
|
|
2919
|
+
"message": "如果您在服务器端呈现任何 React 组件,不妨使用 `renderToPipeableStream()` 或 `renderToStaticNodeStream()` 来允许客户端接收并合成标记的各个不同部分,而不是一次性接收整个标记。[了解详情](https://reactjs.org/docs/react-dom-server.html#renderToPipeableStream)。"
|
|
2308
2920
|
},
|
|
2309
2921
|
"node_modules/lighthouse-stack-packs/packs/react.js | unminified-css": {
|
|
2310
2922
|
"message": "如果您的构建系统可自动压缩 CSS 文件大小,请确保您部署的是正式版应用。您可以通过 React Developer Tools 扩展程序执行此项检查。[了解详情](https://reactjs.org/docs/optimizing-performance.html#use-the-production-build)。"
|
|
@@ -2322,7 +2934,7 @@
|
|
|
2322
2934
|
"message": "建议您将 GIF 上传到可让其作为 HTML5 视频嵌入的服务。"
|
|
2323
2935
|
},
|
|
2324
2936
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | modern-image-formats": {
|
|
2325
|
-
"message": "
|
|
2937
|
+
"message": "建议您使用 [Performance Lab](https://wordpress.org/plugins/performance-lab/) 插件自动将您上传的 JPEG 图片转换为 WebP 格式(如果支持的话)。"
|
|
2326
2938
|
},
|
|
2327
2939
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | offscreen-images": {
|
|
2328
2940
|
"message": "安装[延迟加载 WordPress 插件](https://wordpress.org/plugins/search/lazy+load/)以便能够推迟加载所有的屏幕外图片,或者改用可提供该功能的主题背景。另外,建议您使用 [AMP 插件](https://wordpress.org/plugins/amp/)。"
|
|
@@ -2343,10 +2955,10 @@
|
|
|
2343
2955
|
"message": "很多 [WordPress 插件](https://wordpress.org/plugins/search/minify+javascript/)都可通过连接、削减和压缩您的脚本来加快您网站的加载速度。另外,您最好使用编译流程预先执行此缩减操作(如果可能的话)。"
|
|
2344
2956
|
},
|
|
2345
2957
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unused-css-rules": {
|
|
2346
|
-
"message": "建议您减少或改变会在您网页中加载未使用的 CSS 的 [WordPress 插件](https://wordpress.org/plugins/)的数量。若想找出会添加无关 CSS 的插件,请尝试在 Chrome DevTools 中运行[代码覆盖率](https://
|
|
2958
|
+
"message": "建议您减少或改变会在您网页中加载未使用的 CSS 的 [WordPress 插件](https://wordpress.org/plugins/)的数量。若想找出会添加无关 CSS 的插件,请尝试在 Chrome DevTools 中运行[代码覆盖率](https://developer.chrome.com/docs/devtools/coverage/)测试。您可根据样式表网址找出导致问题的主题背景/插件。请留意在列表中包含多个以大量红色显示代码覆盖率的样式表的插件。插件应该只将网页中确实用到的样式表加入队列。"
|
|
2347
2959
|
},
|
|
2348
2960
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unused-javascript": {
|
|
2349
|
-
"message": "建议您减少或改变会在您网页中加载未使用的 JavaScript 的 [WordPress 插件](https://wordpress.org/plugins/)的数量。若想找出会添加无关 JS 的插件,请尝试在 Chrome DevTools 中运行[代码覆盖率](https://
|
|
2961
|
+
"message": "建议您减少或改变会在您网页中加载未使用的 JavaScript 的 [WordPress 插件](https://wordpress.org/plugins/)的数量。若想找出会添加无关 JS 的插件,请尝试在 Chrome DevTools 中运行[代码覆盖率](https://developer.chrome.com/docs/devtools/coverage/)测试。您可根据脚本网址找出导致问题的主题背景/插件。请留意在列表中包含多个以大量红色显示代码覆盖率的脚本的插件。插件应只将网页中确实用到的脚本加入队列。"
|
|
2350
2962
|
},
|
|
2351
2963
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-long-cache-ttl": {
|
|
2352
2964
|
"message": "了解 [WordPress 中的浏览器缓存](https://wordpress.org/support/article/optimization/#browser-caching)。"
|
|
@@ -2360,154 +2972,193 @@
|
|
|
2360
2972
|
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-text-compression": {
|
|
2361
2973
|
"message": "您可以在网络服务器配置中启用文本压缩。"
|
|
2362
2974
|
},
|
|
2363
|
-
"
|
|
2975
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | modern-image-formats": {
|
|
2976
|
+
"message": "若要将图片转换为 WebP 格式,请在“WP Rocket”中的“Image Optimization”(图片优化)标签页中启用“Imagify”。"
|
|
2977
|
+
},
|
|
2978
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | offscreen-images": {
|
|
2979
|
+
"message": "若要修正此建议,请在 WP Rocket 中启用[“LazyLoad”(延迟加载)](https://docs.wp-rocket.me/article/1141-lazyload-for-images)功能。此功能会延迟加载图片,直到访问者向下滚动网页并真正看到图片为止。"
|
|
2980
|
+
},
|
|
2981
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | render-blocking-resources": {
|
|
2982
|
+
"message": "若要解决此问题,请在“WP Rocket”中启用[“Remove Unused CSS”(移除未使用的 CSS)](https://docs.wp-rocket.me/article/1529-remove-unused-css)和[“Load JavaScript deferred”(加载延迟的 JavaScript)](https://docs.wp-rocket.me/article/1265-load-javascript-deferred)功能。这两项功能会分别优化 CSS 和 JavaScript 文件,使其不会阻止网页呈现。"
|
|
2983
|
+
},
|
|
2984
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | unminified-css": {
|
|
2985
|
+
"message": "若要解决此问题,请在“WP Rocket”中启用[“Minify CSS files”(缩减 CSS 文件大小)](https://docs.wp-rocket.me/article/1350-css-minify-combine)功能,让系统移除网站 CSS 文件中的所有空格和注释,从而缩小文件并加快下载速度。"
|
|
2986
|
+
},
|
|
2987
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | unminified-javascript": {
|
|
2988
|
+
"message": "若要解决此问题,请在“WP Rocket”中启用[“Minify JavaScript files”(缩减 JavaScript 文件大小)](https://docs.wp-rocket.me/article/1351-javascript-minify-combine)功能,让系统从 JavaScript 文件中移除空白区域和注释,从而缩小文件并加快下载速度。"
|
|
2989
|
+
},
|
|
2990
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | unused-css-rules": {
|
|
2991
|
+
"message": "若要解决此问题,请在“WP Rocket”中启用[“Remove Unused CSS”(移除未使用的 CSS)](https://docs.wp-rocket.me/article/1529-remove-unused-css)功能,让系统移除所有未使用的 CSS 和样式表,同时仅保留每个网页的已使用 CSS,从而缩减网页大小。"
|
|
2992
|
+
},
|
|
2993
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | unused-javascript": {
|
|
2994
|
+
"message": "若要解决此问题,请在“WP Rocket”中启用[“Delay JavaScript execution”(延迟执行 JavaScript)](https://docs.wp-rocket.me/article/1349-delay-javascript-execution)功能,让系统等到用户开始互动时才执行脚本,从而提高网页的加载速度。如果网站包含 iframe,您也可以使用 WP Rocket 的[“LazyLoad for iframes and videos”(延迟加载 iframe 和视频)](https://docs.wp-rocket.me/article/1674-lazyload-for-iframes-and-videos)和[“Replace YouTube iframe with preview image”(将 YouTube iframe 替换为预览图片)](https://docs.wp-rocket.me/article/1488-replace-youtube-iframe-with-preview-image)功能。"
|
|
2995
|
+
},
|
|
2996
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | uses-optimized-images": {
|
|
2997
|
+
"message": "若要压缩图片,请在“WP Rocket”中的“Image Optimization”(图片优化)标签页中启用“Imagify”,然后运行“Bulk Optimization”(批量优化)。"
|
|
2998
|
+
},
|
|
2999
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | uses-rel-preconnect": {
|
|
3000
|
+
"message": "若要添加“dns-prefetch”并加快与外部网域的连接速度,请使用“WP Rocket”中的[“Prefetch DNS Requests”(预提取 DNS 请求)](https://docs.wp-rocket.me/article/1302-prefetch-dns-requests)功能。此外,“WP Rocket”还会自动将“preconnect”添加到 [Google Fonts 网域](https://docs.wp-rocket.me/article/1312-optimize-google-fonts)以及通过[“Enable CDN”(启用 CDN)](https://docs.wp-rocket.me/article/42-using-wp-rocket-with-a-cdn)功能添加的所有 CNAME。"
|
|
3001
|
+
},
|
|
3002
|
+
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | uses-rel-preload": {
|
|
3003
|
+
"message": "若要解决此字体问题,请在“WP Rocket”中启用[“Remove Unused CSS”(移除未使用的 CSS)](https://docs.wp-rocket.me/article/1529-remove-unused-css),让系统优先加载您网站的重要字体。"
|
|
3004
|
+
},
|
|
3005
|
+
"report/renderer/report-utils.js | calculatorLink": {
|
|
2364
3006
|
"message": "查看计算器。"
|
|
2365
3007
|
},
|
|
2366
|
-
"report/renderer/
|
|
3008
|
+
"report/renderer/report-utils.js | collapseView": {
|
|
2367
3009
|
"message": "收起视图"
|
|
2368
3010
|
},
|
|
2369
|
-
"report/renderer/
|
|
3011
|
+
"report/renderer/report-utils.js | crcInitialNavigation": {
|
|
2370
3012
|
"message": "初始导航"
|
|
2371
3013
|
},
|
|
2372
|
-
"report/renderer/
|
|
3014
|
+
"report/renderer/report-utils.js | crcLongestDurationLabel": {
|
|
2373
3015
|
"message": "关键路径延迟时间上限:"
|
|
2374
3016
|
},
|
|
2375
|
-
"report/renderer/
|
|
3017
|
+
"report/renderer/report-utils.js | dropdownCopyJSON": {
|
|
2376
3018
|
"message": "复制 JSON"
|
|
2377
3019
|
},
|
|
2378
|
-
"report/renderer/
|
|
3020
|
+
"report/renderer/report-utils.js | dropdownDarkTheme": {
|
|
2379
3021
|
"message": "开启/关闭深色主题"
|
|
2380
3022
|
},
|
|
2381
|
-
"report/renderer/
|
|
3023
|
+
"report/renderer/report-utils.js | dropdownPrintExpanded": {
|
|
2382
3024
|
"message": "展开打印对话框"
|
|
2383
3025
|
},
|
|
2384
|
-
"report/renderer/
|
|
3026
|
+
"report/renderer/report-utils.js | dropdownPrintSummary": {
|
|
2385
3027
|
"message": "打印摘要"
|
|
2386
3028
|
},
|
|
2387
|
-
"report/renderer/
|
|
3029
|
+
"report/renderer/report-utils.js | dropdownSaveGist": {
|
|
2388
3030
|
"message": "另存为 Gist"
|
|
2389
3031
|
},
|
|
2390
|
-
"report/renderer/
|
|
3032
|
+
"report/renderer/report-utils.js | dropdownSaveHTML": {
|
|
2391
3033
|
"message": "另存为 HTML"
|
|
2392
3034
|
},
|
|
2393
|
-
"report/renderer/
|
|
3035
|
+
"report/renderer/report-utils.js | dropdownSaveJSON": {
|
|
2394
3036
|
"message": "另存为 JSON"
|
|
2395
3037
|
},
|
|
2396
|
-
"report/renderer/
|
|
3038
|
+
"report/renderer/report-utils.js | dropdownViewer": {
|
|
2397
3039
|
"message": "在查看器中打开"
|
|
2398
3040
|
},
|
|
2399
|
-
"report/renderer/
|
|
3041
|
+
"report/renderer/report-utils.js | errorLabel": {
|
|
2400
3042
|
"message": "出错了!"
|
|
2401
3043
|
},
|
|
2402
|
-
"report/renderer/
|
|
3044
|
+
"report/renderer/report-utils.js | errorMissingAuditInfo": {
|
|
2403
3045
|
"message": "报告错误:没有任何审核信息"
|
|
2404
3046
|
},
|
|
2405
|
-
"report/renderer/
|
|
3047
|
+
"report/renderer/report-utils.js | expandView": {
|
|
2406
3048
|
"message": "展开视图"
|
|
2407
3049
|
},
|
|
2408
|
-
"report/renderer/
|
|
3050
|
+
"report/renderer/report-utils.js | footerIssue": {
|
|
2409
3051
|
"message": "提交问题"
|
|
2410
3052
|
},
|
|
2411
|
-
"report/renderer/
|
|
3053
|
+
"report/renderer/report-utils.js | hide": {
|
|
2412
3054
|
"message": "隐藏"
|
|
2413
3055
|
},
|
|
2414
|
-
"report/renderer/
|
|
3056
|
+
"report/renderer/report-utils.js | labDataTitle": {
|
|
2415
3057
|
"message": "实验室数据"
|
|
2416
3058
|
},
|
|
2417
|
-
"report/renderer/
|
|
3059
|
+
"report/renderer/report-utils.js | lsPerformanceCategoryDescription": {
|
|
2418
3060
|
"message": "[Lighthouse](https://developers.google.com/web/tools/lighthouse/) 使用模拟的移动网络对当前页面进行的分析。这些值都是估算值,且可能会因时而异。"
|
|
2419
3061
|
},
|
|
2420
|
-
"report/renderer/
|
|
3062
|
+
"report/renderer/report-utils.js | manualAuditsGroupTitle": {
|
|
2421
3063
|
"message": "待手动检查的其他项"
|
|
2422
3064
|
},
|
|
2423
|
-
"report/renderer/
|
|
3065
|
+
"report/renderer/report-utils.js | notApplicableAuditsGroupTitle": {
|
|
2424
3066
|
"message": "不适用"
|
|
2425
3067
|
},
|
|
2426
|
-
"report/renderer/
|
|
3068
|
+
"report/renderer/report-utils.js | opportunityResourceColumnLabel": {
|
|
2427
3069
|
"message": "优化建议"
|
|
2428
3070
|
},
|
|
2429
|
-
"report/renderer/
|
|
3071
|
+
"report/renderer/report-utils.js | opportunitySavingsColumnLabel": {
|
|
2430
3072
|
"message": "有望节省的总时间(估算值)"
|
|
2431
3073
|
},
|
|
2432
|
-
"report/renderer/
|
|
3074
|
+
"report/renderer/report-utils.js | passedAuditsGroupTitle": {
|
|
2433
3075
|
"message": "已通过的审核"
|
|
2434
3076
|
},
|
|
2435
|
-
"report/renderer/
|
|
3077
|
+
"report/renderer/report-utils.js | runtimeAnalysisWindow": {
|
|
2436
3078
|
"message": "初始网页加载"
|
|
2437
3079
|
},
|
|
2438
|
-
"report/renderer/
|
|
3080
|
+
"report/renderer/report-utils.js | runtimeCustom": {
|
|
2439
3081
|
"message": "自定义节流"
|
|
2440
3082
|
},
|
|
2441
|
-
"report/renderer/
|
|
3083
|
+
"report/renderer/report-utils.js | runtimeDesktopEmulation": {
|
|
2442
3084
|
"message": "模拟桌面设备"
|
|
2443
3085
|
},
|
|
2444
|
-
"report/renderer/
|
|
2445
|
-
"message": "
|
|
3086
|
+
"report/renderer/report-utils.js | runtimeMobileEmulation": {
|
|
3087
|
+
"message": "Emulated Moto G Power"
|
|
2446
3088
|
},
|
|
2447
|
-
"report/renderer/
|
|
3089
|
+
"report/renderer/report-utils.js | runtimeNoEmulation": {
|
|
2448
3090
|
"message": "无模拟"
|
|
2449
3091
|
},
|
|
2450
|
-
"report/renderer/
|
|
3092
|
+
"report/renderer/report-utils.js | runtimeSettingsAxeVersion": {
|
|
2451
3093
|
"message": "Axe 版本"
|
|
2452
3094
|
},
|
|
2453
|
-
"report/renderer/
|
|
2454
|
-
"message": "CPU
|
|
3095
|
+
"report/renderer/report-utils.js | runtimeSettingsBenchmark": {
|
|
3096
|
+
"message": "未节流限制的 CPU/内存功耗"
|
|
2455
3097
|
},
|
|
2456
|
-
"report/renderer/
|
|
3098
|
+
"report/renderer/report-utils.js | runtimeSettingsCPUThrottling": {
|
|
2457
3099
|
"message": "CPU 节流"
|
|
2458
3100
|
},
|
|
2459
|
-
"report/renderer/
|
|
3101
|
+
"report/renderer/report-utils.js | runtimeSettingsDevice": {
|
|
2460
3102
|
"message": "设备"
|
|
2461
3103
|
},
|
|
2462
|
-
"report/renderer/
|
|
3104
|
+
"report/renderer/report-utils.js | runtimeSettingsNetworkThrottling": {
|
|
2463
3105
|
"message": "网络节流"
|
|
2464
3106
|
},
|
|
2465
|
-
"report/renderer/
|
|
3107
|
+
"report/renderer/report-utils.js | runtimeSettingsScreenEmulation": {
|
|
3108
|
+
"message": "屏幕模拟"
|
|
3109
|
+
},
|
|
3110
|
+
"report/renderer/report-utils.js | runtimeSettingsUANetwork": {
|
|
2466
3111
|
"message": "用户代理(网络)"
|
|
2467
3112
|
},
|
|
2468
|
-
"report/renderer/
|
|
3113
|
+
"report/renderer/report-utils.js | runtimeSingleLoad": {
|
|
2469
3114
|
"message": "单次网页加载"
|
|
2470
3115
|
},
|
|
2471
|
-
"report/renderer/
|
|
3116
|
+
"report/renderer/report-utils.js | runtimeSingleLoadTooltip": {
|
|
2472
3117
|
"message": "此数据是取自单次网页加载,现场数据则是汇总了许多次网页加载。"
|
|
2473
3118
|
},
|
|
2474
|
-
"report/renderer/
|
|
3119
|
+
"report/renderer/report-utils.js | runtimeSlow4g": {
|
|
2475
3120
|
"message": "低速 4G 节流"
|
|
2476
3121
|
},
|
|
2477
|
-
"report/renderer/
|
|
3122
|
+
"report/renderer/report-utils.js | runtimeUnknown": {
|
|
2478
3123
|
"message": "不明"
|
|
2479
3124
|
},
|
|
2480
|
-
"report/renderer/
|
|
3125
|
+
"report/renderer/report-utils.js | show": {
|
|
2481
3126
|
"message": "显示"
|
|
2482
3127
|
},
|
|
2483
|
-
"report/renderer/
|
|
3128
|
+
"report/renderer/report-utils.js | showRelevantAudits": {
|
|
2484
3129
|
"message": "显示与所选指标相关的评估结果:"
|
|
2485
3130
|
},
|
|
2486
|
-
"report/renderer/
|
|
3131
|
+
"report/renderer/report-utils.js | snippetCollapseButtonLabel": {
|
|
2487
3132
|
"message": "收起代码段"
|
|
2488
3133
|
},
|
|
2489
|
-
"report/renderer/
|
|
3134
|
+
"report/renderer/report-utils.js | snippetExpandButtonLabel": {
|
|
2490
3135
|
"message": "展开代码段"
|
|
2491
3136
|
},
|
|
2492
|
-
"report/renderer/
|
|
3137
|
+
"report/renderer/report-utils.js | thirdPartyResourcesLabel": {
|
|
2493
3138
|
"message": "显示第三方资源"
|
|
2494
3139
|
},
|
|
2495
|
-
"report/renderer/
|
|
3140
|
+
"report/renderer/report-utils.js | throttlingProvided": {
|
|
2496
3141
|
"message": "由环境提供"
|
|
2497
3142
|
},
|
|
2498
|
-
"report/renderer/
|
|
3143
|
+
"report/renderer/report-utils.js | toplevelWarningsMessage": {
|
|
2499
3144
|
"message": "此次 Lighthouse 运行并不顺利,原因如下:"
|
|
2500
3145
|
},
|
|
2501
|
-
"report/renderer/
|
|
2502
|
-
"message": "这些都是估算值,且可能会因时而异。系统会直接基于这些指标来[计算性能得分](https://
|
|
3146
|
+
"report/renderer/report-utils.js | varianceDisclaimer": {
|
|
3147
|
+
"message": "这些都是估算值,且可能会因时而异。系统会直接基于这些指标来[计算性能得分](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/)。"
|
|
3148
|
+
},
|
|
3149
|
+
"report/renderer/report-utils.js | viewOriginalTraceLabel": {
|
|
3150
|
+
"message": "查看原始跟踪记录"
|
|
3151
|
+
},
|
|
3152
|
+
"report/renderer/report-utils.js | viewTraceLabel": {
|
|
3153
|
+
"message": "查看跟踪记录"
|
|
2503
3154
|
},
|
|
2504
|
-
"report/renderer/
|
|
3155
|
+
"report/renderer/report-utils.js | viewTreemapLabel": {
|
|
2505
3156
|
"message": "查看树状图"
|
|
2506
3157
|
},
|
|
2507
|
-
"report/renderer/
|
|
3158
|
+
"report/renderer/report-utils.js | warningAuditsGroupTitle": {
|
|
2508
3159
|
"message": "已顺利通过审核,但有警告消息"
|
|
2509
3160
|
},
|
|
2510
|
-
"report/renderer/
|
|
3161
|
+
"report/renderer/report-utils.js | warningHeader": {
|
|
2511
3162
|
"message": "警告: "
|
|
2512
3163
|
},
|
|
2513
3164
|
"treemap/app/src/util.js | allLabel": {
|