lighthouse 11.7.1 → 12.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/CONTRIBUTING.md +2 -2
- package/cli/bin.js +0 -7
- package/cli/cli-flags.d.ts +1 -5
- package/cli/cli-flags.js +4 -8
- package/cli/test/smokehouse/__snapshots__/report-assert-test.js.snap +14 -14
- package/cli/test/smokehouse/config/exclusions.js +3 -0
- package/cli/test/smokehouse/core-tests.js +6 -20
- package/cli/test/smokehouse/frontends/smokehouse-bin.js +2 -2
- package/core/audits/accessibility/aria-conditional-attr.d.ts +10 -0
- package/core/audits/accessibility/aria-conditional-attr.js +43 -0
- package/core/audits/accessibility/{duplicate-id-active.d.ts → aria-deprecated-role.d.ts} +3 -3
- package/core/audits/accessibility/aria-deprecated-role.js +43 -0
- package/core/audits/accessibility/aria-prohibited-attr.d.ts +10 -0
- package/core/audits/accessibility/aria-prohibited-attr.js +44 -0
- package/core/audits/accessibility/target-size.js +0 -1
- package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +0 -16
- package/core/audits/byte-efficiency/byte-efficiency-audit.js +1 -38
- package/core/audits/byte-efficiency/offscreen-images.d.ts +0 -11
- package/core/audits/byte-efficiency/offscreen-images.js +0 -15
- package/core/audits/byte-efficiency/render-blocking-resources.js +27 -26
- package/core/audits/byte-efficiency/unminified-css.js +2 -2
- package/core/audits/byte-efficiency/unused-css-rules.js +3 -1
- package/core/audits/dobetterweb/uses-http2.d.ts +0 -13
- package/core/audits/dobetterweb/uses-http2.js +4 -38
- package/core/audits/font-display.js +2 -2
- package/core/audits/layout-shifts.js +1 -1
- package/core/audits/preload-fonts.d.ts +1 -5
- package/core/audits/preload-fonts.js +1 -10
- package/core/audits/prioritize-lcp-image.js +2 -2
- package/core/audits/redirects-http.d.ts +19 -0
- package/core/audits/redirects-http.js +75 -0
- package/core/audits/resource-summary.d.ts +2 -0
- package/core/audits/resource-summary.js +5 -4
- package/core/audits/seo/is-crawlable.d.ts +2 -1
- package/core/audits/seo/link-text.js +12 -0
- package/core/audits/uses-rel-preload.d.ts +1 -5
- package/core/audits/uses-rel-preload.js +5 -15
- package/core/audits/work-during-interaction.d.ts +2 -2
- package/core/audits/work-during-interaction.js +2 -2
- package/core/computed/js-bundles.d.ts +1 -1
- package/core/computed/metrics/lantern-first-contentful-paint.d.ts +13 -82
- package/core/computed/metrics/lantern-first-contentful-paint.js +16 -178
- package/core/computed/metrics/lantern-first-meaningful-paint.d.ts +13 -12
- package/core/computed/metrics/lantern-first-meaningful-paint.js +11 -49
- package/core/computed/metrics/lantern-interactive.d.ts +13 -21
- package/core/computed/metrics/lantern-interactive.js +12 -84
- package/core/computed/metrics/lantern-largest-contentful-paint.d.ts +13 -25
- package/core/computed/metrics/lantern-largest-contentful-paint.js +13 -80
- package/core/computed/metrics/lantern-max-potential-fid.d.ts +13 -24
- package/core/computed/metrics/lantern-max-potential-fid.js +12 -64
- package/core/computed/metrics/lantern-metric.d.ts +14 -18
- package/core/computed/metrics/lantern-metric.js +34 -30
- package/core/computed/metrics/lantern-speed-index.d.ts +13 -32
- package/core/computed/metrics/lantern-speed-index.js +13 -116
- package/core/computed/metrics/lantern-total-blocking-time.d.ts +13 -25
- package/core/computed/metrics/lantern-total-blocking-time.js +10 -94
- package/core/computed/metrics/metric.js +1 -3
- package/core/computed/module-duplication.d.ts +1 -1
- package/core/computed/navigation-insights.d.ts +36 -0
- package/core/computed/navigation-insights.js +35 -0
- package/core/computed/page-dependency-graph.js +3 -7
- package/core/computed/resource-summary.d.ts +10 -12
- package/core/computed/resource-summary.js +12 -19
- package/core/computed/trace-engine-result.d.ts +16 -3
- package/core/computed/trace-engine-result.js +19 -14
- package/core/computed/unused-css.d.ts +3 -1
- package/core/computed/unused-css.js +6 -5
- package/core/config/config-helpers.js +0 -4
- package/core/config/constants.js +0 -1
- package/core/config/default-config.js +63 -142
- package/core/config/experimental-config.js +11 -0
- package/core/config/filters.js +0 -1
- package/core/gather/driver/navigation.js +4 -1
- package/core/gather/driver/prepare.js +1 -1
- package/core/gather/driver/target-manager.js +4 -3
- package/core/gather/driver/wait-for-condition.js +2 -3
- package/core/gather/driver.d.ts +12 -0
- package/core/gather/driver.js +27 -0
- package/core/gather/gatherers/accessibility.js +4 -6
- package/core/gather/gatherers/css-usage.d.ts +0 -21
- package/core/gather/gatherers/css-usage.js +9 -119
- package/core/gather/gatherers/root-causes.d.ts +2 -2
- package/core/gather/gatherers/root-causes.js +6 -5
- package/core/gather/gatherers/stylesheets.d.ts +26 -0
- package/core/gather/gatherers/stylesheets.js +138 -0
- package/core/gather/gatherers/trace-elements.d.ts +2 -12
- package/core/gather/gatherers/trace-elements.js +2 -21
- package/core/gather/navigation-runner.js +3 -1
- package/core/gather/session.d.ts +8 -0
- package/core/gather/session.js +14 -1
- package/core/lib/emulation.js +2 -2
- package/core/lib/i18n/i18n.d.ts +0 -1
- package/core/lib/i18n/i18n.js +0 -2
- package/core/lib/lantern/cpu-node.d.ts +7 -1
- package/core/lib/lantern/cpu-node.js +12 -2
- package/core/lib/lantern/lantern-error.d.ts +8 -0
- package/core/lib/lantern/lantern-error.js +9 -0
- package/core/lib/lantern/metric.js +2 -6
- package/core/lib/lantern/metrics/first-contentful-paint.d.ts +79 -0
- package/core/lib/lantern/metrics/first-contentful-paint.js +200 -0
- package/core/lib/lantern/metrics/first-meaningful-paint.d.ts +6 -0
- package/core/lib/lantern/metrics/first-meaningful-paint.js +64 -0
- package/core/lib/lantern/metrics/interactive.d.ts +26 -0
- package/core/lib/lantern/metrics/interactive.js +112 -0
- package/core/lib/lantern/metrics/largest-contentful-paint.d.ts +19 -0
- package/core/lib/lantern/metrics/largest-contentful-paint.js +108 -0
- package/core/lib/lantern/metrics/max-potential-fid.d.ts +30 -0
- package/core/lib/lantern/metrics/max-potential-fid.js +92 -0
- package/core/lib/lantern/metrics/speed-index.d.ts +38 -0
- package/core/lib/lantern/metrics/speed-index.js +144 -0
- package/core/lib/lantern/metrics/total-blocking-time.d.ts +31 -0
- package/core/lib/lantern/metrics/total-blocking-time.js +128 -0
- package/core/lib/lantern/network-node.js +28 -4
- package/core/lib/lantern/page-dependency-graph.d.ts +4 -4
- package/core/lib/lantern/page-dependency-graph.js +19 -7
- package/core/lib/lantern/simulator/connection-pool.d.ts +2 -12
- package/core/lib/lantern/simulator/connection-pool.js +3 -22
- package/core/lib/lantern/simulator/network-analyzer.js +1 -12
- package/core/lib/lantern/simulator/simulator.d.ts +2 -4
- package/core/lib/lantern/simulator/simulator.js +7 -14
- package/core/lib/lantern/types/lantern.d.ts +5 -3
- package/core/lib/lantern-trace-saver.js +0 -1
- package/core/lib/lh-error.d.ts +9 -0
- package/core/lib/lh-error.js +13 -3
- package/core/lib/lighthouse-compatibility.js +53 -10
- package/core/lib/navigation-error.js +3 -0
- package/core/lib/network-request.d.ts +1 -0
- package/core/lib/network-request.js +28 -0
- package/core/runner.js +18 -25
- package/dist/report/bundle.esm.js +11 -112
- package/dist/report/flow.js +16 -117
- package/dist/report/standalone.js +12 -113
- package/flow-report/src/help-dialog.tsx +0 -1
- package/flow-report/src/i18n/i18n.d.ts +0 -4
- package/flow-report/src/i18n/ui-strings.d.ts +0 -1
- package/flow-report/src/i18n/ui-strings.js +0 -2
- package/flow-report/src/summary/category.tsx +10 -12
- package/package.json +5 -5
- package/readme.md +4 -4
- package/report/assets/styles.css +1 -60
- package/report/assets/templates.html +0 -95
- package/report/renderer/category-renderer.js +1 -1
- package/report/renderer/components.d.ts +2 -2
- package/report/renderer/components.js +2 -103
- package/report/renderer/dom.d.ts +1 -1
- package/report/renderer/dom.js +1 -1
- package/report/renderer/performance-category-renderer.d.ts +0 -7
- package/report/renderer/performance-category-renderer.js +1 -32
- package/report/renderer/report-renderer.js +3 -13
- package/report/renderer/report-ui-features.js +1 -1
- package/report/renderer/report-utils.d.ts +0 -1
- package/report/renderer/report-utils.js +13 -13
- package/shared/localization/locales/ar-XB.json +62 -329
- package/shared/localization/locales/ar.json +62 -329
- package/shared/localization/locales/bg.json +62 -329
- package/shared/localization/locales/ca.json +62 -329
- package/shared/localization/locales/cs.json +62 -329
- package/shared/localization/locales/da.json +62 -329
- package/shared/localization/locales/de.json +62 -329
- package/shared/localization/locales/el.json +62 -329
- package/shared/localization/locales/en-GB.json +62 -329
- package/shared/localization/locales/en-US.json +41 -272
- package/shared/localization/locales/en-XA.json +62 -329
- package/shared/localization/locales/en-XL.json +41 -272
- package/shared/localization/locales/es-419.json +62 -329
- package/shared/localization/locales/es.json +62 -329
- package/shared/localization/locales/fi.json +62 -329
- package/shared/localization/locales/fil.json +61 -328
- package/shared/localization/locales/fr.json +62 -329
- package/shared/localization/locales/he.json +62 -329
- package/shared/localization/locales/hi.json +62 -329
- package/shared/localization/locales/hr.json +63 -330
- package/shared/localization/locales/hu.json +62 -329
- package/shared/localization/locales/id.json +62 -329
- package/shared/localization/locales/it.json +62 -329
- package/shared/localization/locales/ja.json +62 -329
- package/shared/localization/locales/ko.json +62 -329
- package/shared/localization/locales/lt.json +62 -329
- package/shared/localization/locales/lv.json +62 -329
- package/shared/localization/locales/nl.json +62 -329
- package/shared/localization/locales/no.json +62 -329
- package/shared/localization/locales/pl.json +61 -328
- package/shared/localization/locales/pt-PT.json +62 -329
- package/shared/localization/locales/pt.json +64 -331
- package/shared/localization/locales/ro.json +62 -329
- package/shared/localization/locales/ru.json +62 -329
- package/shared/localization/locales/sk.json +62 -329
- package/shared/localization/locales/sl.json +62 -329
- package/shared/localization/locales/sr-Latn.json +62 -329
- package/shared/localization/locales/sr.json +62 -329
- package/shared/localization/locales/sv.json +62 -329
- package/shared/localization/locales/ta.json +61 -328
- package/shared/localization/locales/te.json +62 -329
- package/shared/localization/locales/th.json +62 -329
- package/shared/localization/locales/tr.json +62 -329
- package/shared/localization/locales/uk.json +62 -329
- package/shared/localization/locales/vi.json +61 -328
- package/shared/localization/locales/zh-HK.json +62 -329
- package/shared/localization/locales/zh-TW.json +61 -328
- package/shared/localization/locales/zh.json +62 -329
- package/tsconfig.json +1 -3
- package/types/artifacts.d.ts +21 -110
- package/types/audit.d.ts +0 -10
- package/types/config.d.ts +0 -1
- package/types/externs.d.ts +0 -2
- package/types/gatherer.d.ts +3 -0
- package/types/internal/smokehouse.d.ts +1 -1
- package/types/lh.d.ts +0 -2
- package/types/lhr/audit-details.d.ts +9 -4
- package/types/lhr/lhr.d.ts +0 -4
- package/types/lhr/settings.d.ts +0 -4
- package/core/audits/accessibility/duplicate-id-active.js +0 -42
- package/core/audits/content-width.d.ts +0 -17
- package/core/audits/content-width.js +0 -76
- package/core/audits/installable-manifest.d.ts +0 -111
- package/core/audits/installable-manifest.js +0 -248
- package/core/audits/layout-shift-elements.d.ts +0 -16
- package/core/audits/layout-shift-elements.js +0 -101
- package/core/audits/manual/pwa-cross-browser.d.ts +0 -12
- package/core/audits/manual/pwa-cross-browser.js +0 -40
- package/core/audits/manual/pwa-each-page-has-url.d.ts +0 -12
- package/core/audits/manual/pwa-each-page-has-url.js +0 -38
- package/core/audits/manual/pwa-page-transitions.d.ts +0 -12
- package/core/audits/manual/pwa-page-transitions.js +0 -38
- package/core/audits/maskable-icon.d.ts +0 -25
- package/core/audits/maskable-icon.js +0 -70
- package/core/audits/multi-check-audit.d.ts +0 -28
- package/core/audits/multi-check-audit.js +0 -82
- package/core/audits/no-unload-listeners.d.ts +0 -16
- package/core/audits/no-unload-listeners.js +0 -86
- package/core/audits/performance-budget.d.ts +0 -39
- package/core/audits/performance-budget.js +0 -154
- package/core/audits/script-elements-test-audit.d.ts +0 -14
- package/core/audits/script-elements-test-audit.js +0 -29
- package/core/audits/seo/plugins.d.ts +0 -15
- package/core/audits/seo/plugins.js +0 -150
- package/core/audits/seo/tap-targets.d.ts +0 -50
- package/core/audits/seo/tap-targets.js +0 -352
- package/core/audits/splash-screen.d.ts +0 -37
- package/core/audits/splash-screen.js +0 -98
- package/core/audits/themed-omnibox.d.ts +0 -42
- package/core/audits/themed-omnibox.js +0 -102
- package/core/audits/timing-budget.d.ts +0 -43
- package/core/audits/timing-budget.js +0 -175
- package/core/computed/manifest-values.d.ts +0 -24
- package/core/computed/manifest-values.js +0 -136
- package/core/config/budget.d.ts +0 -74
- package/core/config/budget.js +0 -340
- package/core/config/metrics-to-audits.d.ts +0 -19
- package/core/config/metrics-to-audits.js +0 -62
- package/core/gather/driver/service-workers.d.ts +0 -16
- package/core/gather/driver/service-workers.js +0 -52
- package/core/gather/gatherers/dobetterweb/tags-blocking-first-paint.d.ts +0 -47
- package/core/gather/gatherers/dobetterweb/tags-blocking-first-paint.js +0 -233
- package/core/gather/gatherers/global-listeners.d.ts +0 -27
- package/core/gather/gatherers/global-listeners.js +0 -108
- package/core/gather/gatherers/installability-errors.d.ts +0 -17
- package/core/gather/gatherers/installability-errors.js +0 -56
- package/core/gather/gatherers/script-elements.d.ts +0 -21
- package/core/gather/gatherers/script-elements.js +0 -100
- package/core/gather/gatherers/seo/embedded-content.d.ts +0 -10
- package/core/gather/gatherers/seo/embedded-content.js +0 -63
- package/core/gather/gatherers/seo/tap-targets.d.ts +0 -21
- package/core/gather/gatherers/seo/tap-targets.js +0 -389
- package/core/gather/gatherers/service-worker.d.ts +0 -10
- package/core/gather/gatherers/service-worker.js +0 -32
- package/core/gather/gatherers/web-app-manifest.d.ts +0 -32
- package/core/gather/gatherers/web-app-manifest.js +0 -106
- package/report/renderer/pwa-category-renderer.d.ts +0 -55
- package/report/renderer/pwa-category-renderer.js +0 -184
- package/third-party/chromium-synchronization/installability-errors-test.js +0 -79
- package/types/lhr/budget.d.ts +0 -60
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"core/audits/accessibility/accesskeys.js | description": {
|
|
3
|
-
"message": "快速鍵可讓使用者快速聚焦網頁的特定部分。如要讓使用者正確瀏覽,每個快速鍵一律不可重複。[進一步瞭解快速鍵](https://dequeuniversity.com/rules/axe/4.
|
|
3
|
+
"message": "快速鍵可讓使用者快速聚焦網頁的特定部分。如要讓使用者正確瀏覽,每個快速鍵一律不可重複。[進一步瞭解快速鍵](https://dequeuniversity.com/rules/axe/4.9/accesskeys)。"
|
|
4
4
|
},
|
|
5
5
|
"core/audits/accessibility/accesskeys.js | failureTitle": {
|
|
6
6
|
"message": "`[accesskey]` 的值重複"
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"message": "`[accesskey]` 值獨一無二"
|
|
10
10
|
},
|
|
11
11
|
"core/audits/accessibility/aria-allowed-attr.js | description": {
|
|
12
|
-
"message": "每個 ARIA「`role`」都支援一部分特定的「`aria-*`」屬性。配對錯誤會導致「`aria-*`」屬性無效。[瞭解如何讓 ARIA 屬性與其角色相符](https://dequeuniversity.com/rules/axe/4.
|
|
12
|
+
"message": "每個 ARIA「`role`」都支援一部分特定的「`aria-*`」屬性。配對錯誤會導致「`aria-*`」屬性無效。[瞭解如何讓 ARIA 屬性與其角色相符](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-attr)。"
|
|
13
13
|
},
|
|
14
14
|
"core/audits/accessibility/aria-allowed-attr.js | failureTitle": {
|
|
15
15
|
"message": "`[aria-*]` 屬性與其角色不符"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"message": "`[aria-*]` 屬性與其角色相符"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "「ARIA `role`」可協助輔助技術瞭解網頁中每個元素的角色。如果「`role`」值有錯字、不是現有的「ARIA `role`」值,或是抽象角色,系統就不會將元素的目的傳達給輔助技術的使用者。[進一步瞭解 ARIA 角色](https://dequeuniversity.com/rules/axe/4.
|
|
21
|
+
"message": "「ARIA `role`」可協助輔助技術瞭解網頁中每個元素的角色。如果「`role`」值有錯字、不是現有的「ARIA `role`」值,或是抽象角色,系統就不會將元素的目的傳達給輔助技術的使用者。[進一步瞭解 ARIA 角色](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)。"
|
|
22
22
|
},
|
|
23
23
|
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
24
|
"message": "指派給 `role=\"\"` 的值不是有效的 ARIA 角色。"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"message": "指派給 `role=\"\"` 的值是有效的 ARIA 角色。"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
|
-
"message": "如果元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何讓指令元素更容易使用](https://dequeuniversity.com/rules/axe/4.
|
|
30
|
+
"message": "如果元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何讓指令元素更容易使用](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)。"
|
|
31
31
|
},
|
|
32
32
|
"core/audits/accessibility/aria-command-name.js | failureTitle": {
|
|
33
33
|
"message": "`button`、`link` 和 `menuitem` 元素沒有無障礙名稱。"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"message": "`button`、`link` 和 `menuitem` 元素具有無障礙名稱"
|
|
37
37
|
},
|
|
38
38
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
|
-
"message": "如果 ARIA 對話框元素沒有無障礙名稱,螢幕閱讀器使用者就可能無法分辨這些元素的用途。[瞭解如何讓 ARIA 對話框元素更易用](https://dequeuniversity.com/rules/axe/4.
|
|
39
|
+
"message": "如果 ARIA 對話框元素沒有無障礙名稱,螢幕閱讀器使用者就可能無法分辨這些元素的用途。[瞭解如何讓 ARIA 對話框元素更易用](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)。"
|
|
40
40
|
},
|
|
41
41
|
"core/audits/accessibility/aria-dialog-name.js | failureTitle": {
|
|
42
42
|
"message": "含有 `role=\"dialog\"` 或 `role=\"alertdialog\"` 的元素沒有無障礙名稱。"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"message": "含有 `role=\"dialog\"` 或 `role=\"alertdialog\"` 的元素具有無障礙名稱。"
|
|
46
46
|
},
|
|
47
47
|
"core/audits/accessibility/aria-hidden-body.js | description": {
|
|
48
|
-
"message": "在 `<body>` 文件上設定 `aria-hidden=\"true\"` 時,輔助技術 (例如螢幕閱讀器) 的運作將無法保持一致。[瞭解 `aria-hidden` 如何影響文件內文](https://dequeuniversity.com/rules/axe/4.
|
|
48
|
+
"message": "在 `<body>` 文件上設定 `aria-hidden=\"true\"` 時,輔助技術 (例如螢幕閱讀器) 的運作將無法保持一致。[瞭解 `aria-hidden` 如何影響文件內文](https://dequeuniversity.com/rules/axe/4.9/aria-hidden-body)。"
|
|
49
49
|
},
|
|
50
50
|
"core/audits/accessibility/aria-hidden-body.js | failureTitle": {
|
|
51
51
|
"message": "`[aria-hidden=\"true\"]` 有在文件 `<body>` 上顯示"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"message": "`[aria-hidden=\"true\"]` 沒有在文件 `<body>` 上顯示"
|
|
55
55
|
},
|
|
56
56
|
"core/audits/accessibility/aria-hidden-focus.js | description": {
|
|
57
|
-
"message": "`[aria-hidden=\"true\"]` 元素中可聚焦的子代會禁止使用輔助技術 (例如螢幕閱讀器) 的使用者運用這些互動元素。[瞭解 `aria-hidden` 如何影響可聚焦的元素](https://dequeuniversity.com/rules/axe/4.
|
|
57
|
+
"message": "`[aria-hidden=\"true\"]` 元素中可聚焦的子代會禁止使用輔助技術 (例如螢幕閱讀器) 的使用者運用這些互動元素。[瞭解 `aria-hidden` 如何影響可聚焦的元素](https://dequeuniversity.com/rules/axe/4.9/aria-hidden-focus)。"
|
|
58
58
|
},
|
|
59
59
|
"core/audits/accessibility/aria-hidden-focus.js | failureTitle": {
|
|
60
60
|
"message": "`[aria-hidden=\"true\"]` 元素含有可聚焦的子代"
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"message": "`[aria-hidden=\"true\"]` 元素不含可聚焦的子代"
|
|
64
64
|
},
|
|
65
65
|
"core/audits/accessibility/aria-input-field-name.js | description": {
|
|
66
|
-
"message": "如果輸入欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解輸入欄位標籤](https://dequeuniversity.com/rules/axe/4.
|
|
66
|
+
"message": "如果輸入欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解輸入欄位標籤](https://dequeuniversity.com/rules/axe/4.9/aria-input-field-name)。"
|
|
67
67
|
},
|
|
68
68
|
"core/audits/accessibility/aria-input-field-name.js | failureTitle": {
|
|
69
69
|
"message": "ARIA 輸入欄位沒有輔助名稱"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"message": "ARIA 輸入欄位有輔助名稱"
|
|
73
73
|
},
|
|
74
74
|
"core/audits/accessibility/aria-meter-name.js | description": {
|
|
75
|
-
"message": "如果計量器元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`meter`元素](https://dequeuniversity.com/rules/axe/4.
|
|
75
|
+
"message": "如果計量器元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`meter`元素](https://dequeuniversity.com/rules/axe/4.9/aria-meter-name)。"
|
|
76
76
|
},
|
|
77
77
|
"core/audits/accessibility/aria-meter-name.js | failureTitle": {
|
|
78
78
|
"message": "ARIA `meter` 元素沒有無障礙名稱。"
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"message": "ARIA `meter` 元素具有無障礙名稱"
|
|
82
82
|
},
|
|
83
83
|
"core/audits/accessibility/aria-progressbar-name.js | description": {
|
|
84
|
-
"message": "如果 `progressbar` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[瞭解如何為 `progressbar` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.
|
|
84
|
+
"message": "如果 `progressbar` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[瞭解如何為 `progressbar` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.9/aria-progressbar-name)。"
|
|
85
85
|
},
|
|
86
86
|
"core/audits/accessibility/aria-progressbar-name.js | failureTitle": {
|
|
87
87
|
"message": "ARIA `progressbar` 元素沒有無障礙名稱。"
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"message": "ARIA `progressbar` 元素具有無障礙名稱"
|
|
91
91
|
},
|
|
92
92
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
|
-
"message": "部分 ARIA 角色的必要屬性會向螢幕閱讀器的使用者說明元素狀態。[進一步瞭解角色和必要屬性](https://dequeuniversity.com/rules/axe/4.
|
|
93
|
+
"message": "部分 ARIA 角色的必要屬性會向螢幕閱讀器的使用者說明元素狀態。[進一步瞭解角色和必要屬性](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)。"
|
|
94
94
|
},
|
|
95
95
|
"core/audits/accessibility/aria-required-attr.js | failureTitle": {
|
|
96
96
|
"message": "`[role]` 未具備所有必要的 `[aria-*]` 屬性"
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"message": "`[role]` 具備所有必要的 `[aria-*]` 屬性"
|
|
100
100
|
},
|
|
101
101
|
"core/audits/accessibility/aria-required-children.js | description": {
|
|
102
|
-
"message": "部分 ARIA 父角色必須包含特定的子角色,才能正確執行無障礙功能。[進一步瞭解角色和需要的子元素](https://dequeuniversity.com/rules/axe/4.
|
|
102
|
+
"message": "部分 ARIA 父角色必須包含特定的子角色,才能正確執行無障礙功能。[進一步瞭解角色和需要的子元素](https://dequeuniversity.com/rules/axe/4.9/aria-required-children)。"
|
|
103
103
|
},
|
|
104
104
|
"core/audits/accessibility/aria-required-children.js | failureTitle": {
|
|
105
105
|
"message": "包含 ARIA `[role]` 且要求子元素包含特定 `[role]` 的元素缺少部分或全部的必要子元素。"
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"message": "包含 ARIA `[role]` 且要求子元素包含特定 `[role]` 的元素具有全部必要的子元素。"
|
|
109
109
|
},
|
|
110
110
|
"core/audits/accessibility/aria-required-parent.js | description": {
|
|
111
|
-
"message": "部分 ARIA 子角色必須包括在特定的父角色中,才能正確執行無障礙功能。[進一步瞭解 ARIA 角色和需要的父元素](https://dequeuniversity.com/rules/axe/4.
|
|
111
|
+
"message": "部分 ARIA 子角色必須包括在特定的父角色中,才能正確執行無障礙功能。[進一步瞭解 ARIA 角色和需要的父元素](https://dequeuniversity.com/rules/axe/4.9/aria-required-parent)。"
|
|
112
112
|
},
|
|
113
113
|
"core/audits/accessibility/aria-required-parent.js | failureTitle": {
|
|
114
114
|
"message": "`[role]` 未包含在必要的父元素中"
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"message": "`[role]` 已包含在必要的父元素中"
|
|
118
118
|
},
|
|
119
119
|
"core/audits/accessibility/aria-roles.js | description": {
|
|
120
|
-
"message": "ARIA 角色必須具備有效的值,才能執行無障礙功能。[進一步瞭解有效的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.
|
|
120
|
+
"message": "ARIA 角色必須具備有效的值,才能執行無障礙功能。[進一步瞭解有效的 ARIA 角色](https://dequeuniversity.com/rules/axe/4.9/aria-roles)。"
|
|
121
121
|
},
|
|
122
122
|
"core/audits/accessibility/aria-roles.js | failureTitle": {
|
|
123
123
|
"message": "`[role]` 值無效"
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"message": "`[role]` 值有效"
|
|
127
127
|
},
|
|
128
128
|
"core/audits/accessibility/aria-text.js | description": {
|
|
129
|
-
"message": "在由標記分割的文字節點前後新增 `role=text`,VoiceOver 就會將其視為一個詞組,但系統不會通知該元素的可聚焦子元素。[進一步瞭解 `role=text` 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
129
|
+
"message": "在由標記分割的文字節點前後新增 `role=text`,VoiceOver 就會將其視為一個詞組,但系統不會通知該元素的可聚焦子元素。[進一步瞭解 `role=text` 屬性](https://dequeuniversity.com/rules/axe/4.9/aria-text)。"
|
|
130
130
|
},
|
|
131
131
|
"core/audits/accessibility/aria-text.js | failureTitle": {
|
|
132
132
|
"message": "具有 `role=text` 屬性的元素有可聚焦的子元素。"
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"message": "具有 `role=text` 屬性的元素沒有可聚焦的子元素。"
|
|
136
136
|
},
|
|
137
137
|
"core/audits/accessibility/aria-toggle-field-name.js | description": {
|
|
138
|
-
"message": "如果切換欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解切換欄位](https://dequeuniversity.com/rules/axe/4.
|
|
138
|
+
"message": "如果切換欄位沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[進一步瞭解切換欄位](https://dequeuniversity.com/rules/axe/4.9/aria-toggle-field-name)。"
|
|
139
139
|
},
|
|
140
140
|
"core/audits/accessibility/aria-toggle-field-name.js | failureTitle": {
|
|
141
141
|
"message": "ARIA 切換欄位沒有輔助名稱"
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"message": "ARIA 切換欄位有輔助名稱"
|
|
145
145
|
},
|
|
146
146
|
"core/audits/accessibility/aria-tooltip-name.js | description": {
|
|
147
|
-
"message": "如果提示元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`tooltip`元素](https://dequeuniversity.com/rules/axe/4.
|
|
147
|
+
"message": "如果提示元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該欄位。[瞭解如何命名`tooltip`元素](https://dequeuniversity.com/rules/axe/4.9/aria-tooltip-name)。"
|
|
148
148
|
},
|
|
149
149
|
"core/audits/accessibility/aria-tooltip-name.js | failureTitle": {
|
|
150
150
|
"message": "ARIA `tooltip` 元素沒有無障礙名稱。"
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"message": "ARIA `tooltip` 元素具有無障礙名稱"
|
|
154
154
|
},
|
|
155
155
|
"core/audits/accessibility/aria-treeitem-name.js | description": {
|
|
156
|
-
"message": "如果 `treeitem` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[進一步瞭解如何為 `treeitem` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.
|
|
156
|
+
"message": "如果 `treeitem` 元素沒有無障礙名稱,螢幕閱讀器只會讀出一般名稱,導致依賴螢幕閱讀器的使用者無法使用該元素。[進一步瞭解如何為 `treeitem` 元素加上標籤](https://dequeuniversity.com/rules/axe/4.9/aria-treeitem-name)。"
|
|
157
157
|
},
|
|
158
158
|
"core/audits/accessibility/aria-treeitem-name.js | failureTitle": {
|
|
159
159
|
"message": "ARIA `treeitem` 元素沒有無障礙名稱。"
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
"message": "ARIA `treeitem` 元素具有無障礙名稱"
|
|
163
163
|
},
|
|
164
164
|
"core/audits/accessibility/aria-valid-attr-value.js | description": {
|
|
165
|
-
"message": "輔助技術 (如螢幕閱讀器) 無法解讀具有無效值的 ARIA 屬性。[進一步瞭解 ARIA 屬性的有效值](https://dequeuniversity.com/rules/axe/4.
|
|
165
|
+
"message": "輔助技術 (如螢幕閱讀器) 無法解讀具有無效值的 ARIA 屬性。[進一步瞭解 ARIA 屬性的有效值](https://dequeuniversity.com/rules/axe/4.9/aria-valid-attr-value)。"
|
|
166
166
|
},
|
|
167
167
|
"core/audits/accessibility/aria-valid-attr-value.js | failureTitle": {
|
|
168
168
|
"message": "`[aria-*]` 屬性並無有效的值"
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
"message": "`[aria-*]` 屬性具備有效的值"
|
|
172
172
|
},
|
|
173
173
|
"core/audits/accessibility/aria-valid-attr.js | description": {
|
|
174
|
-
"message": "輔助技術 (例如螢幕閱讀器) 無法解讀名稱無效的 ARIA 屬性。[進一步瞭解有效的 ARIA 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
174
|
+
"message": "輔助技術 (例如螢幕閱讀器) 無法解讀名稱無效的 ARIA 屬性。[進一步瞭解有效的 ARIA 屬性](https://dequeuniversity.com/rules/axe/4.9/aria-valid-attr)。"
|
|
175
175
|
},
|
|
176
176
|
"core/audits/accessibility/aria-valid-attr.js | failureTitle": {
|
|
177
177
|
"message": "`[aria-*]` 屬性無效或拼字錯誤"
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
"message": "審核失敗的元素"
|
|
184
184
|
},
|
|
185
185
|
"core/audits/accessibility/button-name.js | description": {
|
|
186
|
-
"message": "如果按鈕沒有無障礙名稱,螢幕閱讀器只會讀出「按鈕」,導致依賴螢幕閱讀器的使用者無法使用該按鈕。[瞭解如何讓使用者更容易使用按鈕](https://dequeuniversity.com/rules/axe/4.
|
|
186
|
+
"message": "如果按鈕沒有無障礙名稱,螢幕閱讀器只會讀出「按鈕」,導致依賴螢幕閱讀器的使用者無法使用該按鈕。[瞭解如何讓使用者更容易使用按鈕](https://dequeuniversity.com/rules/axe/4.9/button-name)。"
|
|
187
187
|
},
|
|
188
188
|
"core/audits/accessibility/button-name.js | failureTitle": {
|
|
189
189
|
"message": "按鈕沒有可存取的名稱"
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"message": "按鈕有可存取的名稱"
|
|
193
193
|
},
|
|
194
194
|
"core/audits/accessibility/bypass.js | description": {
|
|
195
|
-
"message": "為重複的內容新增略過選項,可提高鍵盤使用者的網頁瀏覽效率。[進一步瞭解如何繞過區塊](https://dequeuniversity.com/rules/axe/4.
|
|
195
|
+
"message": "為重複的內容新增略過選項,可提高鍵盤使用者的網頁瀏覽效率。[進一步瞭解如何繞過區塊](https://dequeuniversity.com/rules/axe/4.9/bypass)。"
|
|
196
196
|
},
|
|
197
197
|
"core/audits/accessibility/bypass.js | failureTitle": {
|
|
198
198
|
"message": "網頁中沒有標題、略過連結或地標區域"
|
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
"message": "網頁包含標題、略過連結或地標區域"
|
|
202
202
|
},
|
|
203
203
|
"core/audits/accessibility/color-contrast.js | description": {
|
|
204
|
-
"message": "很多使用者難以閱讀或無法閱讀低對比度的文字。[瞭解如何提供充足的顏色對比度](https://dequeuniversity.com/rules/axe/4.
|
|
204
|
+
"message": "很多使用者難以閱讀或無法閱讀低對比度的文字。[瞭解如何提供充足的顏色對比度](https://dequeuniversity.com/rules/axe/4.9/color-contrast)。"
|
|
205
205
|
},
|
|
206
206
|
"core/audits/accessibility/color-contrast.js | failureTitle": {
|
|
207
207
|
"message": "背景和前景顏色沒有足夠的對比度。"
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
"message": "背景和前景顏色有足夠的對比度"
|
|
211
211
|
},
|
|
212
212
|
"core/audits/accessibility/definition-list.js | description": {
|
|
213
|
-
"message": "如果定義清單的標記不正確,螢幕閱讀器可能會輸出令人混淆或不正確的內容。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.
|
|
213
|
+
"message": "如果定義清單的標記不正確,螢幕閱讀器可能會輸出令人混淆或不正確的內容。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.9/definition-list)。"
|
|
214
214
|
},
|
|
215
215
|
"core/audits/accessibility/definition-list.js | failureTitle": {
|
|
216
216
|
"message": "`<dl>` 並非只包含排序正確的 `<dt>` 和 `<dd>` 群組、`<script>`、`<template>` 或 `<div>` 元素。"
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
"message": "`<dl>` 只包含排序正確的 `<dt>` 和 `<dd>` 群組、`<script>`、`<template>` 或 `<div>` 元素。"
|
|
220
220
|
},
|
|
221
221
|
"core/audits/accessibility/dlitem.js | description": {
|
|
222
|
-
"message": "定義清單項目 (`<dt>` 和 `<dd>`) 必須納入在父 `<dl>` 元素中,才能確保螢幕閱讀器正確朗讀這些項目。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.
|
|
222
|
+
"message": "定義清單項目 (`<dt>` 和 `<dd>`) 必須納入在父 `<dl>` 元素中,才能確保螢幕閱讀器正確朗讀這些項目。[瞭解如何正確建構定義清單](https://dequeuniversity.com/rules/axe/4.9/dlitem)。"
|
|
223
223
|
},
|
|
224
224
|
"core/audits/accessibility/dlitem.js | failureTitle": {
|
|
225
225
|
"message": "定義清單項目未納入在 `<dl>` 元素中"
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
"message": "定義清單項目已納入在 `<dl>` 元素中"
|
|
229
229
|
},
|
|
230
230
|
"core/audits/accessibility/document-title.js | description": {
|
|
231
|
-
"message": "標題可讓螢幕閱讀器使用者概略瞭解網頁內容;搜尋引擎使用者經常需要使用此資料,判斷網頁內容是否與他們的搜尋查詢有關。[進一步瞭解文件標題](https://dequeuniversity.com/rules/axe/4.
|
|
231
|
+
"message": "標題可讓螢幕閱讀器使用者概略瞭解網頁內容;搜尋引擎使用者經常需要使用此資料,判斷網頁內容是否與他們的搜尋查詢有關。[進一步瞭解文件標題](https://dequeuniversity.com/rules/axe/4.9/document-title)。"
|
|
232
232
|
},
|
|
233
233
|
"core/audits/accessibility/document-title.js | failureTitle": {
|
|
234
234
|
"message": "文件並無有效的 `<title>` 元素"
|
|
@@ -236,17 +236,8 @@
|
|
|
236
236
|
"core/audits/accessibility/document-title.js | title": {
|
|
237
237
|
"message": "文件具備 `<title>` 元素"
|
|
238
238
|
},
|
|
239
|
-
"core/audits/accessibility/duplicate-id-active.js | description": {
|
|
240
|
-
"message": "所有可聚焦元素都必須有不重複的 `id`,以確保輔助技術可以查看這些元素。[瞭解如何修正 `id` 重複的問題](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)。"
|
|
241
|
-
},
|
|
242
|
-
"core/audits/accessibility/duplicate-id-active.js | failureTitle": {
|
|
243
|
-
"message": "已啟用且可聚焦的元素有重複的 `[id]` 屬性"
|
|
244
|
-
},
|
|
245
|
-
"core/audits/accessibility/duplicate-id-active.js | title": {
|
|
246
|
-
"message": "已啟用且可聚焦的元素沒有重複的 `[id]` 屬性"
|
|
247
|
-
},
|
|
248
239
|
"core/audits/accessibility/duplicate-id-aria.js | description": {
|
|
249
|
-
"message": "ARIA ID 的值不可重複,以免輔助技術忽略其他例項。[瞭解如何修正重複的 ARIA ID](https://dequeuniversity.com/rules/axe/4.
|
|
240
|
+
"message": "ARIA ID 的值不可重複,以免輔助技術忽略其他例項。[瞭解如何修正重複的 ARIA ID](https://dequeuniversity.com/rules/axe/4.9/duplicate-id-aria)。"
|
|
250
241
|
},
|
|
251
242
|
"core/audits/accessibility/duplicate-id-aria.js | failureTitle": {
|
|
252
243
|
"message": "ARIA ID 重複"
|
|
@@ -255,7 +246,7 @@
|
|
|
255
246
|
"message": "ARIA ID 沒有重複"
|
|
256
247
|
},
|
|
257
248
|
"core/audits/accessibility/empty-heading.js | description": {
|
|
258
|
-
"message": "如果 heading 沒有內容或無障礙設計的文字,螢幕閱讀器使用者就無法存取網頁結構中的資料。[進一步瞭解 headings](https://dequeuniversity.com/rules/axe/4.
|
|
249
|
+
"message": "如果 heading 沒有內容或無障礙設計的文字,螢幕閱讀器使用者就無法存取網頁結構中的資料。[進一步瞭解 headings](https://dequeuniversity.com/rules/axe/4.9/empty-heading)。"
|
|
259
250
|
},
|
|
260
251
|
"core/audits/accessibility/empty-heading.js | failureTitle": {
|
|
261
252
|
"message": "Heading 元素不含任何內容。"
|
|
@@ -264,7 +255,7 @@
|
|
|
264
255
|
"message": "所有 heading 元素都包含內容。"
|
|
265
256
|
},
|
|
266
257
|
"core/audits/accessibility/form-field-multiple-labels.js | description": {
|
|
267
|
-
"message": "使用第一個、最後一個或所有標籤的螢幕閱讀器等輔助技術,可能無法將包含多個標籤的表格欄位正確讀出。[瞭解如何使用表格標籤](https://dequeuniversity.com/rules/axe/4.
|
|
258
|
+
"message": "使用第一個、最後一個或所有標籤的螢幕閱讀器等輔助技術,可能無法將包含多個標籤的表格欄位正確讀出。[瞭解如何使用表格標籤](https://dequeuniversity.com/rules/axe/4.9/form-field-multiple-labels)。"
|
|
268
259
|
},
|
|
269
260
|
"core/audits/accessibility/form-field-multiple-labels.js | failureTitle": {
|
|
270
261
|
"message": "表格欄位含有多個標籤"
|
|
@@ -273,7 +264,7 @@
|
|
|
273
264
|
"message": "沒有表格欄位含有多個標籤"
|
|
274
265
|
},
|
|
275
266
|
"core/audits/accessibility/frame-title.js | description": {
|
|
276
|
-
"message": "螢幕閱讀器使用者依賴頁框標題來瞭解頁框內容。[進一步瞭解頁框標題](https://dequeuniversity.com/rules/axe/4.
|
|
267
|
+
"message": "螢幕閱讀器使用者依賴頁框標題來瞭解頁框內容。[進一步瞭解頁框標題](https://dequeuniversity.com/rules/axe/4.9/frame-title)。"
|
|
277
268
|
},
|
|
278
269
|
"core/audits/accessibility/frame-title.js | failureTitle": {
|
|
279
270
|
"message": "`<frame>` 或 `<iframe>` 元素沒有標題"
|
|
@@ -282,7 +273,7 @@
|
|
|
282
273
|
"message": "`<frame>` 或 `<iframe>` 元素包含名稱"
|
|
283
274
|
},
|
|
284
275
|
"core/audits/accessibility/heading-order.js | description": {
|
|
285
|
-
"message": "排序正確且未略過層級的標題可傳達網頁的語意結構,讓您在使用輔助技術時更容易瀏覽及理解。[進一步瞭解標題排序](https://dequeuniversity.com/rules/axe/4.
|
|
276
|
+
"message": "排序正確且未略過層級的標題可傳達網頁的語意結構,讓您在使用輔助技術時更容易瀏覽及理解。[進一步瞭解標題排序](https://dequeuniversity.com/rules/axe/4.9/heading-order)。"
|
|
286
277
|
},
|
|
287
278
|
"core/audits/accessibility/heading-order.js | failureTitle": {
|
|
288
279
|
"message": "標題元素未遞減排序"
|
|
@@ -291,7 +282,7 @@
|
|
|
291
282
|
"message": "標題元素已遞減排序"
|
|
292
283
|
},
|
|
293
284
|
"core/audits/accessibility/html-has-lang.js | description": {
|
|
294
|
-
"message": "如果網頁未指定 `lang` 屬性,螢幕閱讀器會假設網頁採用使用者設定螢幕閱讀器時選擇的預設語言。如果網頁實際並非採用預設語言,螢幕閱讀器可能無法正確朗讀文字。[進一步瞭解 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
285
|
+
"message": "如果網頁未指定 `lang` 屬性,螢幕閱讀器會假設網頁採用使用者設定螢幕閱讀器時選擇的預設語言。如果網頁實際並非採用預設語言,螢幕閱讀器可能無法正確朗讀文字。[進一步瞭解 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.9/html-has-lang)。"
|
|
295
286
|
},
|
|
296
287
|
"core/audits/accessibility/html-has-lang.js | failureTitle": {
|
|
297
288
|
"message": "`<html>` 元素並無 `[lang]` 屬性"
|
|
@@ -300,7 +291,7 @@
|
|
|
300
291
|
"message": "`<html>` 元素具備 `[lang]` 屬性"
|
|
301
292
|
},
|
|
302
293
|
"core/audits/accessibility/html-lang-valid.js | description": {
|
|
303
|
-
"message": "指定有效的 [BCP 47 語言](https://www.w3.org/International/questions/qa-choosing-language-tags#question)可協助螢幕閱讀器正確朗讀文字。[瞭解如何使用 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
294
|
+
"message": "指定有效的 [BCP 47 語言](https://www.w3.org/International/questions/qa-choosing-language-tags#question)可協助螢幕閱讀器正確朗讀文字。[瞭解如何使用 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.9/html-lang-valid)。"
|
|
304
295
|
},
|
|
305
296
|
"core/audits/accessibility/html-lang-valid.js | failureTitle": {
|
|
306
297
|
"message": "`<html>` 元素的 `[lang]` 屬性並無有效的值。"
|
|
@@ -309,7 +300,7 @@
|
|
|
309
300
|
"message": "`<html>` 元素的 `[lang]` 屬性具備有效的值"
|
|
310
301
|
},
|
|
311
302
|
"core/audits/accessibility/html-xml-lang-mismatch.js | description": {
|
|
312
|
-
"message": "如果網頁指定的語言不一致,螢幕閱讀器可能無法正確朗讀頁面上的文字。[進一步瞭解此 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
303
|
+
"message": "如果網頁指定的語言不一致,螢幕閱讀器可能無法正確朗讀頁面上的文字。[進一步瞭解此 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.9/html-xml-lang-mismatch)。"
|
|
313
304
|
},
|
|
314
305
|
"core/audits/accessibility/html-xml-lang-mismatch.js | failureTitle": {
|
|
315
306
|
"message": "`<html>` 元素的 `[xml:lang]` 屬性與`[lang]` 屬性中的基本語言不同。"
|
|
@@ -318,7 +309,7 @@
|
|
|
318
309
|
"message": "`<html>` 元素的 `[xml:lang]` 屬性與 `[lang]` 屬性的基本語言相同。"
|
|
319
310
|
},
|
|
320
311
|
"core/audits/accessibility/identical-links-same-purpose.js | description": {
|
|
321
|
-
"message": "具有相同目的地的連結應提供相同的描述,協助使用者瞭解連結的用途,並決定是否前往。[進一步瞭解相同連結](https://dequeuniversity.com/rules/axe/4.
|
|
312
|
+
"message": "具有相同目的地的連結應提供相同的描述,協助使用者瞭解連結的用途,並決定是否前往。[進一步瞭解相同連結](https://dequeuniversity.com/rules/axe/4.9/identical-links-same-purpose)。"
|
|
322
313
|
},
|
|
323
314
|
"core/audits/accessibility/identical-links-same-purpose.js | failureTitle": {
|
|
324
315
|
"message": "相同連結的用途不同。"
|
|
@@ -327,7 +318,7 @@
|
|
|
327
318
|
"message": "相同的連結用途相同。"
|
|
328
319
|
},
|
|
329
320
|
"core/audits/accessibility/image-alt.js | description": {
|
|
330
|
-
"message": "資訊型元素應提供簡短貼切的替代文字。只要將 alt 屬性留空,系統便會忽略該裝飾元素。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
321
|
+
"message": "資訊型元素應提供簡短貼切的替代文字。只要將 alt 屬性留空,系統便會忽略該裝飾元素。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.9/image-alt)。"
|
|
331
322
|
},
|
|
332
323
|
"core/audits/accessibility/image-alt.js | failureTitle": {
|
|
333
324
|
"message": "圖片元素並無 `[alt]` 屬性"
|
|
@@ -336,7 +327,7 @@
|
|
|
336
327
|
"message": "圖片元素具有 `[alt]` 屬性"
|
|
337
328
|
},
|
|
338
329
|
"core/audits/accessibility/image-redundant-alt.js | description": {
|
|
339
|
-
"message": "資訊型元素應提供簡短貼切的替代文字。替代文字如果與連結或圖片旁的文字完全相同,可能會對螢幕閱讀器使用者造成混淆,因為系統會朗讀同樣的文字兩次。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
330
|
+
"message": "資訊型元素應提供簡短貼切的替代文字。替代文字如果與連結或圖片旁的文字完全相同,可能會對螢幕閱讀器使用者造成混淆,因為系統會朗讀同樣的文字兩次。[進一步瞭解此 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.9/image-redundant-alt)。"
|
|
340
331
|
},
|
|
341
332
|
"core/audits/accessibility/image-redundant-alt.js | failureTitle": {
|
|
342
333
|
"message": "圖片元素所含「`[alt]`」屬性有多餘的文字。"
|
|
@@ -345,7 +336,7 @@
|
|
|
345
336
|
"message": "圖片元素所含「`[alt]`」屬性沒有多餘的文字。"
|
|
346
337
|
},
|
|
347
338
|
"core/audits/accessibility/input-button-name.js | description": {
|
|
348
|
-
"message": "您可以為輸入按鈕新增可識別且可存取的文字,協助螢幕閱讀器使用者瞭解輸入按鈕的用途。[進一步瞭解輸入按鈕](https://dequeuniversity.com/rules/axe/4.
|
|
339
|
+
"message": "您可以為輸入按鈕新增可識別且可存取的文字,協助螢幕閱讀器使用者瞭解輸入按鈕的用途。[進一步瞭解輸入按鈕](https://dequeuniversity.com/rules/axe/4.9/input-button-name)。"
|
|
349
340
|
},
|
|
350
341
|
"core/audits/accessibility/input-button-name.js | failureTitle": {
|
|
351
342
|
"message": "輸入按鈕沒有可識別的文字。"
|
|
@@ -354,7 +345,7 @@
|
|
|
354
345
|
"message": "輸入按鈕有可識別的文字。"
|
|
355
346
|
},
|
|
356
347
|
"core/audits/accessibility/input-image-alt.js | description": {
|
|
357
|
-
"message": "如果 `<input>` 按鈕是以圖片呈現,提供替代文字可協助螢幕閱讀器使用者瞭解該按鈕的用途。[瞭解輸入圖片說明文字](https://dequeuniversity.com/rules/axe/4.
|
|
348
|
+
"message": "如果 `<input>` 按鈕是以圖片呈現,提供替代文字可協助螢幕閱讀器使用者瞭解該按鈕的用途。[瞭解輸入圖片說明文字](https://dequeuniversity.com/rules/axe/4.9/input-image-alt)。"
|
|
358
349
|
},
|
|
359
350
|
"core/audits/accessibility/input-image-alt.js | failureTitle": {
|
|
360
351
|
"message": "`<input type=\"image\">` 元素未設定 `[alt]` 文字"
|
|
@@ -363,7 +354,7 @@
|
|
|
363
354
|
"message": "`<input type=\"image\">` 元素具有 `[alt]` 文字"
|
|
364
355
|
},
|
|
365
356
|
"core/audits/accessibility/label-content-name-mismatch.js | description": {
|
|
366
|
-
"message": "如果顯示的文字標籤與無障礙名稱不符,可能對螢幕閱讀器使用者造成混淆。[進一步瞭解無障礙名稱](https://dequeuniversity.com/rules/axe/4.
|
|
357
|
+
"message": "如果顯示的文字標籤與無障礙名稱不符,可能對螢幕閱讀器使用者造成混淆。[進一步瞭解無障礙名稱](https://dequeuniversity.com/rules/axe/4.9/label-content-name-mismatch)。"
|
|
367
358
|
},
|
|
368
359
|
"core/audits/accessibility/label-content-name-mismatch.js | failureTitle": {
|
|
369
360
|
"message": "含有可見文字標籤的元素沒有相符的無障礙名稱。"
|
|
@@ -372,7 +363,7 @@
|
|
|
372
363
|
"message": "含有可見文字標籤的元素有相符的無障礙名稱。"
|
|
373
364
|
},
|
|
374
365
|
"core/audits/accessibility/label.js | description": {
|
|
375
|
-
"message": "標籤可以確保輔助技術 (例如螢幕閱讀器) 正確朗讀表格控制項。[進一步瞭解表格元素標籤](https://dequeuniversity.com/rules/axe/4.
|
|
366
|
+
"message": "標籤可以確保輔助技術 (例如螢幕閱讀器) 正確朗讀表格控制項。[進一步瞭解表格元素標籤](https://dequeuniversity.com/rules/axe/4.9/label)。"
|
|
376
367
|
},
|
|
377
368
|
"core/audits/accessibility/label.js | failureTitle": {
|
|
378
369
|
"message": "表格元素沒有相關聯的標籤"
|
|
@@ -381,7 +372,7 @@
|
|
|
381
372
|
"message": "表格元素具有相關聯的標籤"
|
|
382
373
|
},
|
|
383
374
|
"core/audits/accessibility/landmark-one-main.js | description": {
|
|
384
|
-
"message": "其中一項主要標籤可協助螢幕閱讀器使用者瀏覽網頁。[進一步瞭解標籤](https://dequeuniversity.com/rules/axe/4.
|
|
375
|
+
"message": "其中一項主要標籤可協助螢幕閱讀器使用者瀏覽網頁。[進一步瞭解標籤](https://dequeuniversity.com/rules/axe/4.9/landmark-one-main)。"
|
|
385
376
|
},
|
|
386
377
|
"core/audits/accessibility/landmark-one-main.js | failureTitle": {
|
|
387
378
|
"message": "文件不含主要標籤。"
|
|
@@ -390,7 +381,7 @@
|
|
|
390
381
|
"message": "文件具有主要標籤。"
|
|
391
382
|
},
|
|
392
383
|
"core/audits/accessibility/link-in-text-block.js | description": {
|
|
393
|
-
"message": "很多使用者難以閱讀或無法閱讀低對比度的文字。可辨別的連結文字有助改善低視力使用者的體驗。[瞭解如何設定可明確辨別的連結](https://dequeuniversity.com/rules/axe/4.
|
|
384
|
+
"message": "很多使用者難以閱讀或無法閱讀低對比度的文字。可辨別的連結文字有助改善低視力使用者的體驗。[瞭解如何設定可明確辨別的連結](https://dequeuniversity.com/rules/axe/4.9/link-in-text-block)。"
|
|
394
385
|
},
|
|
395
386
|
"core/audits/accessibility/link-in-text-block.js | failureTitle": {
|
|
396
387
|
"message": "連結需依賴顏色辨別。"
|
|
@@ -399,7 +390,7 @@
|
|
|
399
390
|
"message": "不需依賴顏色亦可明確辨別連結。"
|
|
400
391
|
},
|
|
401
392
|
"core/audits/accessibility/link-name.js | description": {
|
|
402
|
-
"message": "使用可辨別、不重複且可聚焦的連結文字 (以及連結圖片的替代文字),有助改善螢幕閱讀器使用者的瀏覽體驗。[瞭解如何讓連結更易用](https://dequeuniversity.com/rules/axe/4.
|
|
393
|
+
"message": "使用可辨別、不重複且可聚焦的連結文字 (以及連結圖片的替代文字),有助改善螢幕閱讀器使用者的瀏覽體驗。[瞭解如何讓連結更易用](https://dequeuniversity.com/rules/axe/4.9/link-name)。"
|
|
403
394
|
},
|
|
404
395
|
"core/audits/accessibility/link-name.js | failureTitle": {
|
|
405
396
|
"message": "連結並無可辨別的名稱"
|
|
@@ -408,7 +399,7 @@
|
|
|
408
399
|
"message": "連結具有可辨別的名稱"
|
|
409
400
|
},
|
|
410
401
|
"core/audits/accessibility/list.js | description": {
|
|
411
|
-
"message": "螢幕閱讀器會以特定方式朗讀清單。確認清單採用正確的結構有助螢幕閱讀器順利輸出內容。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.
|
|
402
|
+
"message": "螢幕閱讀器會以特定方式朗讀清單。確認清單採用正確的結構有助螢幕閱讀器順利輸出內容。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.9/list)。"
|
|
412
403
|
},
|
|
413
404
|
"core/audits/accessibility/list.js | failureTitle": {
|
|
414
405
|
"message": "清單中並非只包含 `<li>` 元素和指令碼支援元素 (`<script>` 和 `<template>`)。"
|
|
@@ -417,7 +408,7 @@
|
|
|
417
408
|
"message": "清單只包含 `<li>` 元素和支援指令碼的元素 (`<script>` 和 `<template>`)。"
|
|
418
409
|
},
|
|
419
410
|
"core/audits/accessibility/listitem.js | description": {
|
|
420
|
-
"message": "清單項目 (`<li>`) 必須包含在父元素 `<ul>`、`<ol>` 或 `<menu>` 中,螢幕閱讀器才能正確朗讀這些項目。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.
|
|
411
|
+
"message": "清單項目 (`<li>`) 必須包含在父元素 `<ul>`、`<ol>` 或 `<menu>` 中,螢幕閱讀器才能正確朗讀這些項目。[進一步瞭解正確的清單結構](https://dequeuniversity.com/rules/axe/4.9/listitem)。"
|
|
421
412
|
},
|
|
422
413
|
"core/audits/accessibility/listitem.js | failureTitle": {
|
|
423
414
|
"message": "清單項目 (`<li>`) 未包含在 `<ul>`、`<ol>` 或 `<menu>` 父元素中。"
|
|
@@ -426,7 +417,7 @@
|
|
|
426
417
|
"message": "清單項目 (`<li>`) 已包含在 `<ul>`、`<ol>` 或 `<menu>` 父元素中"
|
|
427
418
|
},
|
|
428
419
|
"core/audits/accessibility/meta-refresh.js | description": {
|
|
429
|
-
"message": "使用者不會預期系統自動重新整理網頁,且執行此操作會將焦點移回網頁頂端。這可能會對使用者造成困擾或混淆。[進一步瞭解重新整理中繼標籤](https://dequeuniversity.com/rules/axe/4.
|
|
420
|
+
"message": "使用者不會預期系統自動重新整理網頁,且執行此操作會將焦點移回網頁頂端。這可能會對使用者造成困擾或混淆。[進一步瞭解重新整理中繼標籤](https://dequeuniversity.com/rules/axe/4.9/meta-refresh)。"
|
|
430
421
|
},
|
|
431
422
|
"core/audits/accessibility/meta-refresh.js | failureTitle": {
|
|
432
423
|
"message": "文件使用 `<meta http-equiv=\"refresh\">`"
|
|
@@ -435,7 +426,7 @@
|
|
|
435
426
|
"message": "文件未使用 `<meta http-equiv=\"refresh\">`"
|
|
436
427
|
},
|
|
437
428
|
"core/audits/accessibility/meta-viewport.js | description": {
|
|
438
|
-
"message": "停用縮放功能會對低視力人士造成困擾,他們需要透過螢幕放大功能才能清楚看見網頁內容。[進一步瞭解檢視區中繼標記](https://dequeuniversity.com/rules/axe/4.
|
|
429
|
+
"message": "停用縮放功能會對低視力人士造成困擾,他們需要透過螢幕放大功能才能清楚看見網頁內容。[進一步瞭解檢視區中繼標記](https://dequeuniversity.com/rules/axe/4.9/meta-viewport)。"
|
|
439
430
|
},
|
|
440
431
|
"core/audits/accessibility/meta-viewport.js | failureTitle": {
|
|
441
432
|
"message": "`<meta name=\"viewport\">` 元素中使用了 `[user-scalable=\"no\"]`,或 `[maximum-scale]` 屬性少於 5。"
|
|
@@ -444,7 +435,7 @@
|
|
|
444
435
|
"message": "`<meta name=\"viewport\">` 元素中未有使用 `[user-scalable=\"no\"]` 元素,而且 `[maximum-scale]` 屬性少於 5。"
|
|
445
436
|
},
|
|
446
437
|
"core/audits/accessibility/object-alt.js | description": {
|
|
447
|
-
"message": "螢幕閱讀器無法翻譯非文字內容。為 `<object>` 元素新增替代文字,可協助螢幕閱讀器向使用者傳達其意思。[進一步瞭解 `object` 元素的說明文字](https://dequeuniversity.com/rules/axe/4.
|
|
438
|
+
"message": "螢幕閱讀器無法翻譯非文字內容。為 `<object>` 元素新增替代文字,可協助螢幕閱讀器向使用者傳達其意思。[進一步瞭解 `object` 元素的說明文字](https://dequeuniversity.com/rules/axe/4.9/object-alt)。"
|
|
448
439
|
},
|
|
449
440
|
"core/audits/accessibility/object-alt.js | failureTitle": {
|
|
450
441
|
"message": "`<object>` 元素未設定替代文字"
|
|
@@ -453,7 +444,7 @@
|
|
|
453
444
|
"message": "`<object>` 元素具有替代文字"
|
|
454
445
|
},
|
|
455
446
|
"core/audits/accessibility/select-name.js | description": {
|
|
456
|
-
"message": "沒有有效標籤的 Form 元素可能對螢幕閱讀器使用者造成困擾。[進一步瞭解 `select` 元素](https://dequeuniversity.com/rules/axe/4.
|
|
447
|
+
"message": "沒有有效標籤的 Form 元素可能對螢幕閱讀器使用者造成困擾。[進一步瞭解 `select` 元素](https://dequeuniversity.com/rules/axe/4.9/select-name)。"
|
|
457
448
|
},
|
|
458
449
|
"core/audits/accessibility/select-name.js | failureTitle": {
|
|
459
450
|
"message": "Select 元素沒有相關聯的 label 元素。"
|
|
@@ -462,7 +453,7 @@
|
|
|
462
453
|
"message": "Select 元素具有關聯的 label 元素。"
|
|
463
454
|
},
|
|
464
455
|
"core/audits/accessibility/skip-link.js | description": {
|
|
465
|
-
"message": "加入跳過連結可協助使用者直接前往主要內容,以節省時間。[進一步瞭解跳過連結](https://dequeuniversity.com/rules/axe/4.
|
|
456
|
+
"message": "加入跳過連結可協助使用者直接前往主要內容,以節省時間。[進一步瞭解跳過連結](https://dequeuniversity.com/rules/axe/4.9/skip-link)。"
|
|
466
457
|
},
|
|
467
458
|
"core/audits/accessibility/skip-link.js | failureTitle": {
|
|
468
459
|
"message": "跳過連結無法聚焦。"
|
|
@@ -471,7 +462,7 @@
|
|
|
471
462
|
"message": "跳過連結可聚焦。"
|
|
472
463
|
},
|
|
473
464
|
"core/audits/accessibility/tabindex.js | description": {
|
|
474
|
-
"message": "如果值大於 0,代表已採用明確的瀏覽排序。雖然此做法在技術上可行,但通常會對依賴輔助技術的使用者造成困擾。[進一步瞭解此 `tabindex` 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
465
|
+
"message": "如果值大於 0,代表已採用明確的瀏覽排序。雖然此做法在技術上可行,但通常會對依賴輔助技術的使用者造成困擾。[進一步瞭解此 `tabindex` 屬性](https://dequeuniversity.com/rules/axe/4.9/tabindex)。"
|
|
475
466
|
},
|
|
476
467
|
"core/audits/accessibility/tabindex.js | failureTitle": {
|
|
477
468
|
"message": "部分元素的 `[tabindex]` 值大於 0"
|
|
@@ -480,7 +471,7 @@
|
|
|
480
471
|
"message": "所有元素的 `[tabindex]` 值皆未超過 0"
|
|
481
472
|
},
|
|
482
473
|
"core/audits/accessibility/table-duplicate-name.js | description": {
|
|
483
|
-
"message": "摘要屬性應描述表格結構,而「`<caption>`」應含有顯示在螢幕上的標題。提供準確的表格標記,對螢幕閱讀器使用者有幫助。[進一步瞭解摘要和說明文字](https://dequeuniversity.com/rules/axe/4.
|
|
474
|
+
"message": "摘要屬性應描述表格結構,而「`<caption>`」應含有顯示在螢幕上的標題。提供準確的表格標記,對螢幕閱讀器使用者有幫助。[進一步瞭解摘要和說明文字](https://dequeuniversity.com/rules/axe/4.9/table-duplicate-name)。"
|
|
484
475
|
},
|
|
485
476
|
"core/audits/accessibility/table-duplicate-name.js | failureTitle": {
|
|
486
477
|
"message": "表格內容與摘要屬性和「`<caption>.`」相同"
|
|
@@ -489,7 +480,7 @@
|
|
|
489
480
|
"message": "表格內容與摘要屬性和「`<caption>`」不同。"
|
|
490
481
|
},
|
|
491
482
|
"core/audits/accessibility/table-fake-caption.js | description": {
|
|
492
|
-
"message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果表格使用實際的標題元素,而非含有 `[colspan]` 屬性的儲存格,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解標題](https://dequeuniversity.com/rules/axe/4.
|
|
483
|
+
"message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果表格使用實際的標題元素,而非含有 `[colspan]` 屬性的儲存格,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解標題](https://dequeuniversity.com/rules/axe/4.9/table-fake-caption)。"
|
|
493
484
|
},
|
|
494
485
|
"core/audits/accessibility/table-fake-caption.js | failureTitle": {
|
|
495
486
|
"message": "表格使用含有 `[colspan]` 屬性的儲存格表示標題,而非使用 `<caption>` 屬性。"
|
|
@@ -498,7 +489,7 @@
|
|
|
498
489
|
"message": "表格使用 `<caption>` 屬性表示標題,而非使用含有 `[colspan]` 屬性的儲存格。"
|
|
499
490
|
},
|
|
500
491
|
"core/audits/accessibility/target-size.js | description": {
|
|
501
|
-
"message": "只要觸控目標提供足夠的大小和間距,就能協助難以觸控細小控制項的使用者啟動目標。[進一步瞭解觸控目標](https://dequeuniversity.com/rules/axe/4.
|
|
492
|
+
"message": "只要觸控目標提供足夠的大小和間距,就能協助難以觸控細小控制項的使用者啟動目標。[進一步瞭解觸控目標](https://dequeuniversity.com/rules/axe/4.9/target-size)。"
|
|
502
493
|
},
|
|
503
494
|
"core/audits/accessibility/target-size.js | failureTitle": {
|
|
504
495
|
"message": "觸控目標的大小或間距不足。"
|
|
@@ -507,7 +498,7 @@
|
|
|
507
498
|
"message": "觸控目標的大小和間距充足。"
|
|
508
499
|
},
|
|
509
500
|
"core/audits/accessibility/td-has-header.js | description": {
|
|
510
|
-
"message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果大型表格 (寬度和高度為 3 個或以上儲存格) 中的 `<td>` 元素使用相關聯的表格標題,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.
|
|
501
|
+
"message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如果大型表格 (寬度和高度為 3 個或以上儲存格) 中的 `<td>` 元素使用相關聯的表格標題,或許可提升螢幕閱讀器的使用體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.9/td-has-header)。"
|
|
511
502
|
},
|
|
512
503
|
"core/audits/accessibility/td-has-header.js | failureTitle": {
|
|
513
504
|
"message": "大型 `<table>` 中的 `<td>` 元素沒有表格標題。"
|
|
@@ -516,7 +507,7 @@
|
|
|
516
507
|
"message": "大型 `<table>` 中的 `<td>` 元素有一或多個表格標題。"
|
|
517
508
|
},
|
|
518
509
|
"core/audits/accessibility/td-headers-attr.js | description": {
|
|
519
|
-
"message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保採用 `[headers]` 屬性的 `<td>` 儲存格只參照同一表格中的其他儲存格,或許能改善螢幕閱讀器的使用體驗。[進一步瞭解 `headers` 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
510
|
+
"message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保採用 `[headers]` 屬性的 `<td>` 儲存格只參照同一表格中的其他儲存格,或許能改善螢幕閱讀器的使用體驗。[進一步瞭解 `headers` 屬性](https://dequeuniversity.com/rules/axe/4.9/td-headers-attr)。"
|
|
520
511
|
},
|
|
521
512
|
"core/audits/accessibility/td-headers-attr.js | failureTitle": {
|
|
522
513
|
"message": "`<table>` 元素中採用 `[headers]` 屬性的儲存格參照了 `id`,無法在同一表格中找到此元素。"
|
|
@@ -525,7 +516,7 @@
|
|
|
525
516
|
"message": "`<table>` 元素中採用 `[headers]` 屬性的儲存格,參照了同一表格中的其他儲存格。"
|
|
526
517
|
},
|
|
527
518
|
"core/audits/accessibility/th-has-data-cells.js | description": {
|
|
528
|
-
"message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保表格標題一律參照特定一組儲存格,或許能有助改善螢幕閱讀器使用者的體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.
|
|
519
|
+
"message": "螢幕閱讀器的功能可讓使用者更輕鬆瀏覽表格。如能確保表格標題一律參照特定一組儲存格,或許能有助改善螢幕閱讀器使用者的體驗。[進一步瞭解表格標題](https://dequeuniversity.com/rules/axe/4.9/th-has-data-cells)。"
|
|
529
520
|
},
|
|
530
521
|
"core/audits/accessibility/th-has-data-cells.js | failureTitle": {
|
|
531
522
|
"message": "`<th>` 元素及帶有 `[role=\"columnheader\"/\"rowheader\"]` 的元素沒有所描述的資料儲存格。"
|
|
@@ -534,7 +525,7 @@
|
|
|
534
525
|
"message": "`<th>` 元素和帶有 `[role=\"columnheader\"/\"rowheader\"]` 的元素有其描述的資料儲存格。"
|
|
535
526
|
},
|
|
536
527
|
"core/audits/accessibility/valid-lang.js | description": {
|
|
537
|
-
"message": "為元素指定有效的 [BCP 47 語言](https://www.w3.org/International/questions/qa-choosing-language-tags#question),可協助螢幕閱讀器正確朗讀文字。[瞭解如何使用 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.
|
|
528
|
+
"message": "為元素指定有效的 [BCP 47 語言](https://www.w3.org/International/questions/qa-choosing-language-tags#question),可協助螢幕閱讀器正確朗讀文字。[瞭解如何使用 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.9/valid-lang)。"
|
|
538
529
|
},
|
|
539
530
|
"core/audits/accessibility/valid-lang.js | failureTitle": {
|
|
540
531
|
"message": "`[lang]` 屬性並無有效的值"
|
|
@@ -543,7 +534,7 @@
|
|
|
543
534
|
"message": "`[lang]` 屬性具備有效的值"
|
|
544
535
|
},
|
|
545
536
|
"core/audits/accessibility/video-caption.js | description": {
|
|
546
|
-
"message": "如果在影片中提供字幕,將有助於失聰或聽障使用者取得影片資料。[進一步瞭解影片字幕](https://dequeuniversity.com/rules/axe/4.
|
|
537
|
+
"message": "如果在影片中提供字幕,將有助於失聰或聽障使用者取得影片資料。[進一步瞭解影片字幕](https://dequeuniversity.com/rules/axe/4.9/video-caption)。"
|
|
547
538
|
},
|
|
548
539
|
"core/audits/accessibility/video-caption.js | failureTitle": {
|
|
549
540
|
"message": "`<video>` 元素不含任何帶有 `[kind=\"captions\"]` 的 `<track>` 元素"
|
|
@@ -743,18 +734,6 @@
|
|
|
743
734
|
"core/audits/byte-efficiency/uses-text-compression.js | title": {
|
|
744
735
|
"message": "啟用文字壓縮"
|
|
745
736
|
},
|
|
746
|
-
"core/audits/content-width.js | description": {
|
|
747
|
-
"message": "如果應用程式內容寬度與檢視區的寬度不相符,應用程式可能無法在流動裝置螢幕上呈現優化效果。[瞭解如何根據檢視區調整內容大小](https://developer.chrome.com/docs/lighthouse/pwa/content-width/)。"
|
|
748
|
-
},
|
|
749
|
-
"core/audits/content-width.js | explanation": {
|
|
750
|
-
"message": "檢視區大小 ({innerWidth} 像素) 與視窗大小 ({outerWidth} 像素) 不相符。"
|
|
751
|
-
},
|
|
752
|
-
"core/audits/content-width.js | failureTitle": {
|
|
753
|
-
"message": "尚未為檢視區正確調整內容大小"
|
|
754
|
-
},
|
|
755
|
-
"core/audits/content-width.js | title": {
|
|
756
|
-
"message": "已將檢視區正確調整內容大小"
|
|
757
|
-
},
|
|
758
737
|
"core/audits/critical-request-chains.js | description": {
|
|
759
738
|
"message": "下方的「關鍵要求鏈結」顯示以高優先次序發佈的資源。為了提高頁面載入速度,建議您縮短鏈結長度,縮減下載資源的大小,或延遲下載不必要資源。[瞭解如何避免鏈結關鍵要求](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains/)。"
|
|
760
739
|
},
|
|
@@ -1004,102 +983,6 @@
|
|
|
1004
983
|
"core/audits/image-size-responsive.js | title": {
|
|
1005
984
|
"message": "提供的圖片解像度適當"
|
|
1006
985
|
},
|
|
1007
|
-
"core/audits/installable-manifest.js | already-installed": {
|
|
1008
|
-
"message": "應用程式已安裝"
|
|
1009
|
-
},
|
|
1010
|
-
"core/audits/installable-manifest.js | cannot-download-icon": {
|
|
1011
|
-
"message": "無法從資訊清單下載必要圖示"
|
|
1012
|
-
},
|
|
1013
|
-
"core/audits/installable-manifest.js | columnValue": {
|
|
1014
|
-
"message": "失敗原因"
|
|
1015
|
-
},
|
|
1016
|
-
"core/audits/installable-manifest.js | description": {
|
|
1017
|
-
"message": "Service Worker 技術可讓您的應用程式使用多項漸進式網絡應用程式的功能,例如離線存取、新增到主畫面和推送通知。瀏覽器可透過適當的 Service Worker 和資訊清單設置主動提示使用者,建議他們將您的應用程式新增至主畫面,藉此提高參與度[進一步瞭解資訊清單可安裝性規定](https://developer.chrome.com/docs/lighthouse/pwa/installable-manifest/)。"
|
|
1018
|
-
},
|
|
1019
|
-
"core/audits/installable-manifest.js | displayValue": {
|
|
1020
|
-
"message": "{itemCount,plural, =1{1 個原因}other{# 個原因}}"
|
|
1021
|
-
},
|
|
1022
|
-
"core/audits/installable-manifest.js | failureTitle": {
|
|
1023
|
-
"message": "網絡應用程式資訊清單或 Service Worker 不符合可安裝性要求"
|
|
1024
|
-
},
|
|
1025
|
-
"core/audits/installable-manifest.js | ids-do-not-match": {
|
|
1026
|
-
"message": "「Play 商店」應用程式網址與「Play 商店」ID 不相符"
|
|
1027
|
-
},
|
|
1028
|
-
"core/audits/installable-manifest.js | in-incognito": {
|
|
1029
|
-
"message": "頁面在無痕式視窗中載入"
|
|
1030
|
-
},
|
|
1031
|
-
"core/audits/installable-manifest.js | manifest-display-not-supported": {
|
|
1032
|
-
"message": "資訊清單的「`display`」屬性必須為 `standalone`、`fullscreen` 或 `minimal-ui`"
|
|
1033
|
-
},
|
|
1034
|
-
"core/audits/installable-manifest.js | manifest-display-override-not-supported": {
|
|
1035
|
-
"message": "資訊清單包含「display_override」欄位;首個支援的顯示模式必須為「standalone」、「fullscreen」或「minimal-ui」"
|
|
1036
|
-
},
|
|
1037
|
-
"core/audits/installable-manifest.js | manifest-empty": {
|
|
1038
|
-
"message": "無法擷取或剖析資訊清單,或剖析資訊沒有內容"
|
|
1039
|
-
},
|
|
1040
|
-
"core/audits/installable-manifest.js | manifest-location-changed": {
|
|
1041
|
-
"message": "資訊清單網址已在擷取資訊清單時變更。"
|
|
1042
|
-
},
|
|
1043
|
-
"core/audits/installable-manifest.js | manifest-missing-name-or-short-name": {
|
|
1044
|
-
"message": "資訊清單未包含 `name` 或 `short_name` 欄位"
|
|
1045
|
-
},
|
|
1046
|
-
"core/audits/installable-manifest.js | manifest-missing-suitable-icon": {
|
|
1047
|
-
"message": "資訊清單未包含合適的圖示 - 必須採用至少 {value0} 像素的 PNG、SVG 或 WebP 格式;必須設定大小屬性;如設定目的屬性,則必須包含「any」。"
|
|
1048
|
-
},
|
|
1049
|
-
"core/audits/installable-manifest.js | no-acceptable-icon": {
|
|
1050
|
-
"message": "所有提供的圖示均並非至少為 {value0} 像素的 PNG、SVG 或 WebP 格式正方形圖像,而且沒有設定目的屬性或將目的屬性設定為「任何 (any)」"
|
|
1051
|
-
},
|
|
1052
|
-
"core/audits/installable-manifest.js | no-icon-available": {
|
|
1053
|
-
"message": "已下載的圖示空白或已損毀"
|
|
1054
|
-
},
|
|
1055
|
-
"core/audits/installable-manifest.js | no-id-specified": {
|
|
1056
|
-
"message": "沒有提供「Play 商店」ID"
|
|
1057
|
-
},
|
|
1058
|
-
"core/audits/installable-manifest.js | no-manifest": {
|
|
1059
|
-
"message": "頁面並無資訊清單 <link> 網址"
|
|
1060
|
-
},
|
|
1061
|
-
"core/audits/installable-manifest.js | no-url-for-service-worker": {
|
|
1062
|
-
"message": "由於資訊清單中沒有「start_url」欄位,因此無法檢查 Service Worker"
|
|
1063
|
-
},
|
|
1064
|
-
"core/audits/installable-manifest.js | noErrorId": {
|
|
1065
|
-
"message": "無法識別可安裝性錯誤 ID「{errorId}」"
|
|
1066
|
-
},
|
|
1067
|
-
"core/audits/installable-manifest.js | not-from-secure-origin": {
|
|
1068
|
-
"message": "頁面並非透過安全來源提供"
|
|
1069
|
-
},
|
|
1070
|
-
"core/audits/installable-manifest.js | not-in-main-frame": {
|
|
1071
|
-
"message": "頁面未在主頁框內載入"
|
|
1072
|
-
},
|
|
1073
|
-
"core/audits/installable-manifest.js | not-offline-capable": {
|
|
1074
|
-
"message": "頁面無法離線工作"
|
|
1075
|
-
},
|
|
1076
|
-
"core/audits/installable-manifest.js | pipeline-restarted": {
|
|
1077
|
-
"message": "PWA 已解除安裝並將重設安裝規定檢查。"
|
|
1078
|
-
},
|
|
1079
|
-
"core/audits/installable-manifest.js | platform-not-supported-on-android": {
|
|
1080
|
-
"message": "Android 不支援此指定的應用平台"
|
|
1081
|
-
},
|
|
1082
|
-
"core/audits/installable-manifest.js | prefer-related-applications": {
|
|
1083
|
-
"message": "資訊清單指定 prefer_related_applications: true"
|
|
1084
|
-
},
|
|
1085
|
-
"core/audits/installable-manifest.js | prefer-related-applications-only-beta-stable": {
|
|
1086
|
-
"message": "prefer_related_applications 僅支援 Android 裝置上的 Chrome Beta 版本和穩定版。"
|
|
1087
|
-
},
|
|
1088
|
-
"core/audits/installable-manifest.js | protocol-timeout": {
|
|
1089
|
-
"message": "Lighthouse 無法判斷該網頁是否可安裝。請嘗試使用較新的 Chrome 版本。"
|
|
1090
|
-
},
|
|
1091
|
-
"core/audits/installable-manifest.js | start-url-not-valid": {
|
|
1092
|
-
"message": "資訊清單起始網址無效"
|
|
1093
|
-
},
|
|
1094
|
-
"core/audits/installable-manifest.js | title": {
|
|
1095
|
-
"message": "網絡應用程式資訊清單和 Service Worker 符合可安裝性要求"
|
|
1096
|
-
},
|
|
1097
|
-
"core/audits/installable-manifest.js | url-not-supported-for-webapk": {
|
|
1098
|
-
"message": "資訊清單中的網址包含使用者名稱、密碼或連接埠"
|
|
1099
|
-
},
|
|
1100
|
-
"core/audits/installable-manifest.js | warn-not-offline-capable": {
|
|
1101
|
-
"message": "頁面無法離線工作。Chrome 93 (2021 年 8 月穩定發行版) 發佈後,頁面將不會被視為可安裝。"
|
|
1102
|
-
},
|
|
1103
986
|
"core/audits/is-on-https.js | allowed": {
|
|
1104
987
|
"message": "允許"
|
|
1105
988
|
},
|
|
@@ -1157,15 +1040,6 @@
|
|
|
1157
1040
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1158
1041
|
"message": "「最大內容繪製」元素"
|
|
1159
1042
|
},
|
|
1160
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1161
|
-
"message": "受版面配置轉移影響的元素數量"
|
|
1162
|
-
},
|
|
1163
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1164
|
-
"message": "版面配置轉移對這些 DOM 元素造成的影響最大。由於[視窗化](https://web.dev/articles/cls#what_is_cls),部分版面配置轉移可能不會包含在 CLS 數據值中。[瞭解如何改善累計版面配置轉移 (CLS)](https://web.dev/articles/optimize-cls)"
|
|
1165
|
-
},
|
|
1166
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1167
|
-
"message": "避免大幅度的版面配置轉移"
|
|
1168
|
-
},
|
|
1169
1043
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1170
1044
|
"message": "版面配置轉移分數"
|
|
1171
1045
|
},
|
|
@@ -1220,33 +1094,6 @@
|
|
|
1220
1094
|
"core/audits/mainthread-work-breakdown.js | title": {
|
|
1221
1095
|
"message": "將主要執行緒的工作減至最少"
|
|
1222
1096
|
},
|
|
1223
|
-
"core/audits/manual/pwa-cross-browser.js | description": {
|
|
1224
|
-
"message": "為盡量觸及最多使用者,網站應能在每個主要瀏覽器上暢順運作。[瞭解跨瀏覽器兼容性](https://developer.chrome.com/docs/lighthouse/pwa/pwa-cross-browser/)。"
|
|
1225
|
-
},
|
|
1226
|
-
"core/audits/manual/pwa-cross-browser.js | title": {
|
|
1227
|
-
"message": "網站可以在不同瀏覽器上運作"
|
|
1228
|
-
},
|
|
1229
|
-
"core/audits/manual/pwa-each-page-has-url.js | description": {
|
|
1230
|
-
"message": "確保每個網頁都可透過網址進行深層連結,且具有不重複網址,方便您在社交媒體上分享。[進一步瞭解如何提供深層連結](https://developer.chrome.com/docs/lighthouse/pwa/pwa-each-page-has-url/)。"
|
|
1231
|
-
},
|
|
1232
|
-
"core/audits/manual/pwa-each-page-has-url.js | title": {
|
|
1233
|
-
"message": "每個網頁都有一個網址"
|
|
1234
|
-
},
|
|
1235
|
-
"core/audits/manual/pwa-page-transitions.js | description": {
|
|
1236
|
-
"message": "即使網絡速度緩慢,只要使用者瀏覽不同網頁也能營造流暢切換的感覺。這就是為使用者帶來高效感觀的關鍵。[進一步瞭解網頁切換](https://developer.chrome.com/docs/lighthouse/pwa/pwa-page-transitions/)。"
|
|
1237
|
-
},
|
|
1238
|
-
"core/audits/manual/pwa-page-transitions.js | title": {
|
|
1239
|
-
"message": "使用者在切換頁面時不會覺得網絡速度緩慢"
|
|
1240
|
-
},
|
|
1241
|
-
"core/audits/maskable-icon.js | description": {
|
|
1242
|
-
"message": "在裝置上安裝應用程式時,罩蓋式圖示可確保圖片會填滿整個形狀,不會產生上下黑邊。[瞭解罩蓋式資訊清單圖示](https://developer.chrome.com/docs/lighthouse/pwa/maskable-icon-audit/)。"
|
|
1243
|
-
},
|
|
1244
|
-
"core/audits/maskable-icon.js | failureTitle": {
|
|
1245
|
-
"message": "資訊清單沒有可遮蓋的圖示"
|
|
1246
|
-
},
|
|
1247
|
-
"core/audits/maskable-icon.js | title": {
|
|
1248
|
-
"message": "資訊清單中有可遮蓋的圖示"
|
|
1249
|
-
},
|
|
1250
1097
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1251
1098
|
"message": "「累計版面配置轉移」會測量檢視區內可見元素的移動。[進一步瞭解「累計版面配置轉移」數據](https://web.dev/articles/cls)。"
|
|
1252
1099
|
},
|
|
@@ -1286,15 +1133,6 @@
|
|
|
1286
1133
|
"core/audits/network-server-latency.js | title": {
|
|
1287
1134
|
"message": "伺服器後端延遲時間"
|
|
1288
1135
|
},
|
|
1289
|
-
"core/audits/no-unload-listeners.js | description": {
|
|
1290
|
-
"message": "「`unload`」事件無法保證觸發,而偵聽此事件可能會防礙瀏覽器優化項目操作,例如向前/返回快取。請改用「`pagehide`」或「`visibilitychange`」事件。[進一步瞭解卸載事件監聽器](https://web.dev/articles/bfcache#never_use_the_unload_event)"
|
|
1291
|
-
},
|
|
1292
|
-
"core/audits/no-unload-listeners.js | failureTitle": {
|
|
1293
|
-
"message": "發現 `unload` 偵聽器"
|
|
1294
|
-
},
|
|
1295
|
-
"core/audits/no-unload-listeners.js | title": {
|
|
1296
|
-
"message": "避免 `unload` 事件偵聽器"
|
|
1297
|
-
},
|
|
1298
1136
|
"core/audits/non-composited-animations.js | description": {
|
|
1299
1137
|
"message": "未合成的動畫可能無法順暢播放,而且會增加累計版面配置轉移 (CLS)。[瞭解如何避免使用非合成動畫](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
|
|
1300
1138
|
},
|
|
@@ -1322,15 +1160,6 @@
|
|
|
1322
1160
|
"core/audits/non-composited-animations.js | unsupportedTimingParameters": {
|
|
1323
1161
|
"message": "效果包含不支援的時間參數"
|
|
1324
1162
|
},
|
|
1325
|
-
"core/audits/performance-budget.js | description": {
|
|
1326
|
-
"message": "讓網絡要求的數量和大小低於使用者根據效能預算所設定的目標。[進一步瞭解效能預算](https://developers.google.com/web/tools/lighthouse/audits/budgets)。"
|
|
1327
|
-
},
|
|
1328
|
-
"core/audits/performance-budget.js | requestCountOverBudget": {
|
|
1329
|
-
"message": "{count,plural, =1{1 個要求}other{# 個要求}}"
|
|
1330
|
-
},
|
|
1331
|
-
"core/audits/performance-budget.js | title": {
|
|
1332
|
-
"message": "效能預算"
|
|
1333
|
-
},
|
|
1334
1163
|
"core/audits/preload-fonts.js | description": {
|
|
1335
1164
|
"message": "請預先載入 `optional` 字型,以便新訪客使用。[進一步瞭解如何預先載入字型](https://web.dev/articles/preload-optional-fonts)"
|
|
1336
1165
|
},
|
|
@@ -1481,15 +1310,6 @@
|
|
|
1481
1310
|
"core/audits/seo/meta-description.js | title": {
|
|
1482
1311
|
"message": "文件具有中繼說明"
|
|
1483
1312
|
},
|
|
1484
|
-
"core/audits/seo/plugins.js | description": {
|
|
1485
|
-
"message": "搜尋引擎無法為外掛程式內容加入索引,而且很多裝置對外掛程式都設有限制甚至不提供支援。[進一步瞭解如何避免使用外掛程式](https://developer.chrome.com/docs/lighthouse/seo/plugins/)。"
|
|
1486
|
-
},
|
|
1487
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1488
|
-
"message": "文件使用外掛程式"
|
|
1489
|
-
},
|
|
1490
|
-
"core/audits/seo/plugins.js | title": {
|
|
1491
|
-
"message": "文件避免使用外掛程式"
|
|
1492
|
-
},
|
|
1493
1313
|
"core/audits/seo/robots-txt.js | description": {
|
|
1494
1314
|
"message": "如果您的 robots.txt 檔案格式錯誤,檢索器可能無法瞭解您偏好的網站檢索或加入索引方式。[進一步瞭解 robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)。"
|
|
1495
1315
|
},
|
|
@@ -1508,27 +1328,6 @@
|
|
|
1508
1328
|
"core/audits/seo/robots-txt.js | title": {
|
|
1509
1329
|
"message": "robots.txt 有效"
|
|
1510
1330
|
},
|
|
1511
|
-
"core/audits/seo/tap-targets.js | description": {
|
|
1512
|
-
"message": "按鈕和連結等互動元素的大小應至少有 48x48 像素,或周圍應保留足夠空間以便使用者輕按,同時避免與其他元素重疊的情況。[進一步瞭解輕按目標](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)。"
|
|
1513
|
-
},
|
|
1514
|
-
"core/audits/seo/tap-targets.js | displayValue": {
|
|
1515
|
-
"message": "{decimalProportion, number, percent} 的輕按目標大小適中"
|
|
1516
|
-
},
|
|
1517
|
-
"core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
|
|
1518
|
-
"message": "由於網頁沒有為流動裝置螢幕設定合適的檢視區中繼標記,因此輕按目標太小"
|
|
1519
|
-
},
|
|
1520
|
-
"core/audits/seo/tap-targets.js | failureTitle": {
|
|
1521
|
-
"message": "輕按目標未設定成適當大小"
|
|
1522
|
-
},
|
|
1523
|
-
"core/audits/seo/tap-targets.js | overlappingTargetHeader": {
|
|
1524
|
-
"message": "重疊的目標"
|
|
1525
|
-
},
|
|
1526
|
-
"core/audits/seo/tap-targets.js | tapTargetHeader": {
|
|
1527
|
-
"message": "輕按目標"
|
|
1528
|
-
},
|
|
1529
|
-
"core/audits/seo/tap-targets.js | title": {
|
|
1530
|
-
"message": "輕按目標已設定成適當大小"
|
|
1531
|
-
},
|
|
1532
1331
|
"core/audits/server-response-time.js | description": {
|
|
1533
1332
|
"message": "請確保主要文件的伺服器回應時間不會太長,因為這會影響所有其他要求。[進一步瞭解「首個字節時間」數據](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)。"
|
|
1534
1333
|
},
|
|
@@ -1541,24 +1340,6 @@
|
|
|
1541
1340
|
"core/audits/server-response-time.js | title": {
|
|
1542
1341
|
"message": "初始伺服器回應時間短暫"
|
|
1543
1342
|
},
|
|
1544
|
-
"core/audits/splash-screen.js | description": {
|
|
1545
|
-
"message": "透過設定啟動畫面的主題,可確保使用者從主畫面啟動您的應用程式時享有優質體驗。[進一步瞭解啟動畫面](https://developer.chrome.com/docs/lighthouse/pwa/splash-screen/)。"
|
|
1546
|
-
},
|
|
1547
|
-
"core/audits/splash-screen.js | failureTitle": {
|
|
1548
|
-
"message": "未設定自訂啟動畫面"
|
|
1549
|
-
},
|
|
1550
|
-
"core/audits/splash-screen.js | title": {
|
|
1551
|
-
"message": "設有自訂啟動畫面"
|
|
1552
|
-
},
|
|
1553
|
-
"core/audits/themed-omnibox.js | description": {
|
|
1554
|
-
"message": "您可以將瀏覽器網址列的主題設定為與網站相符。[進一步瞭解如何設定網址列的主題](https://developer.chrome.com/docs/lighthouse/pwa/themed-omnibox/)。"
|
|
1555
|
-
},
|
|
1556
|
-
"core/audits/themed-omnibox.js | failureTitle": {
|
|
1557
|
-
"message": "未設定網址列的主題顏色。"
|
|
1558
|
-
},
|
|
1559
|
-
"core/audits/themed-omnibox.js | title": {
|
|
1560
|
-
"message": "設定網址列的主題顏色。"
|
|
1561
|
-
},
|
|
1562
1343
|
"core/audits/third-party-cookies.js | description": {
|
|
1563
1344
|
"message": "未來的 Chrome 版本將不再支援第三方 Cookie。[進一步瞭解 Chrome 如何逐步停止支援第三方 Cookie](https://developer.chrome.com/en/docs/privacy-sandbox/third-party-cookie-phase-out/)。"
|
|
1564
1345
|
},
|
|
@@ -1613,18 +1394,6 @@
|
|
|
1613
1394
|
"core/audits/third-party-summary.js | title": {
|
|
1614
1395
|
"message": "減少第三方程式碼使用量"
|
|
1615
1396
|
},
|
|
1616
|
-
"core/audits/timing-budget.js | columnMeasurement": {
|
|
1617
|
-
"message": "測量"
|
|
1618
|
-
},
|
|
1619
|
-
"core/audits/timing-budget.js | columnTimingMetric": {
|
|
1620
|
-
"message": "數據"
|
|
1621
|
-
},
|
|
1622
|
-
"core/audits/timing-budget.js | description": {
|
|
1623
|
-
"message": "設定時間預算可助您隨時留意網站的效能。效能穩定的網站能快速載入網頁,並迅速回應使用者的輸入事件。[進一步瞭解效能預算](https://developers.google.com/web/tools/lighthouse/audits/budgets)。"
|
|
1624
|
-
},
|
|
1625
|
-
"core/audits/timing-budget.js | title": {
|
|
1626
|
-
"message": "時間預算"
|
|
1627
|
-
},
|
|
1628
1397
|
"core/audits/unsized-images.js | description": {
|
|
1629
1398
|
"message": "請明確設定圖片元素的寬度和高度,以減少版面配置轉移及改善累計版面配置轉移 (CLS)。[瞭解如何設定圖片尺寸](https://web.dev/articles/optimize-cls#images_without_dimensions)"
|
|
1630
1399
|
},
|
|
@@ -1718,8 +1487,8 @@
|
|
|
1718
1487
|
"core/audits/work-during-interaction.js | presentationDelay": {
|
|
1719
1488
|
"message": "螢幕畫面分享延遲"
|
|
1720
1489
|
},
|
|
1721
|
-
"core/audits/work-during-interaction.js |
|
|
1722
|
-
"message": "
|
|
1490
|
+
"core/audits/work-during-interaction.js | processingDuration": {
|
|
1491
|
+
"message": "處理時間長度"
|
|
1723
1492
|
},
|
|
1724
1493
|
"core/audits/work-during-interaction.js | title": {
|
|
1725
1494
|
"message": "在重要互動時將工作減至最少"
|
|
@@ -1796,12 +1565,6 @@
|
|
|
1796
1565
|
"core/config/default-config.js | bestPracticesUXGroupTitle": {
|
|
1797
1566
|
"message": "使用者體驗"
|
|
1798
1567
|
},
|
|
1799
|
-
"core/config/default-config.js | budgetsGroupDescription": {
|
|
1800
|
-
"message": "您可根據效能預算設定網站效能的標準。"
|
|
1801
|
-
},
|
|
1802
|
-
"core/config/default-config.js | budgetsGroupTitle": {
|
|
1803
|
-
"message": "預算"
|
|
1804
|
-
},
|
|
1805
1568
|
"core/config/default-config.js | diagnosticsGroupDescription": {
|
|
1806
1569
|
"message": "進一步瞭解應用程式效能。這些數字不會[直接影響](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/)「效能」分數。"
|
|
1807
1570
|
},
|
|
@@ -1814,12 +1577,6 @@
|
|
|
1814
1577
|
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1815
1578
|
"message": "首次繪製改進"
|
|
1816
1579
|
},
|
|
1817
|
-
"core/config/default-config.js | loadOpportunitiesGroupDescription": {
|
|
1818
|
-
"message": "這些建議可加快網頁載入速度,但不會[直接影響](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/)「效能」分數。"
|
|
1819
|
-
},
|
|
1820
|
-
"core/config/default-config.js | loadOpportunitiesGroupTitle": {
|
|
1821
|
-
"message": "優化建議"
|
|
1822
|
-
},
|
|
1823
1580
|
"core/config/default-config.js | metricGroupTitle": {
|
|
1824
1581
|
"message": "數據"
|
|
1825
1582
|
},
|
|
@@ -1832,21 +1589,6 @@
|
|
|
1832
1589
|
"core/config/default-config.js | performanceCategoryTitle": {
|
|
1833
1590
|
"message": "效能"
|
|
1834
1591
|
},
|
|
1835
|
-
"core/config/default-config.js | pwaCategoryDescription": {
|
|
1836
|
-
"message": "這些檢查項目可驗證漸進式網絡應用程式的不同層面。[瞭解良好的漸進式網頁應用程式有什麼特點](https://web.dev/articles/pwa-checklist)。"
|
|
1837
|
-
},
|
|
1838
|
-
"core/config/default-config.js | pwaCategoryManualDescription": {
|
|
1839
|
-
"message": "這些是基本 [PWA 檢查清單](https://web.dev/articles/pwa-checklist)規定的檢查項目,但 Lighthouse 不會自動檢查這些項目。它們不會影響您的分數,但請務必手動驗證這些項目。"
|
|
1840
|
-
},
|
|
1841
|
-
"core/config/default-config.js | pwaCategoryTitle": {
|
|
1842
|
-
"message": "PWA : 漸進式網頁應用程式 (PWA)"
|
|
1843
|
-
},
|
|
1844
|
-
"core/config/default-config.js | pwaInstallableGroupTitle": {
|
|
1845
|
-
"message": "可安裝"
|
|
1846
|
-
},
|
|
1847
|
-
"core/config/default-config.js | pwaOptimizedGroupTitle": {
|
|
1848
|
-
"message": "已優化 PWA"
|
|
1849
|
-
},
|
|
1850
1592
|
"core/config/default-config.js | seoCategoryDescription": {
|
|
1851
1593
|
"message": "這些檢查可確保網頁符合基本搜尋引擎優化建議。這裡有很多其他因素不在 Lighthouse 評分範圍內,但仍可能會影響您的搜尋排名,包括[網站使用體驗核心指標報告](https://web.dev/explore/vitals)的效能。[進一步瞭解 Google Search Essentials](https://support.google.com/webmasters/answer/35769)。"
|
|
1852
1594
|
},
|
|
@@ -2516,9 +2258,6 @@
|
|
|
2516
2258
|
"core/lib/i18n/i18n.js | columnName": {
|
|
2517
2259
|
"message": "名稱"
|
|
2518
2260
|
},
|
|
2519
|
-
"core/lib/i18n/i18n.js | columnOverBudget": {
|
|
2520
|
-
"message": "超出預算"
|
|
2521
|
-
},
|
|
2522
2261
|
"core/lib/i18n/i18n.js | columnRequests": {
|
|
2523
2262
|
"message": "要求"
|
|
2524
2263
|
},
|
|
@@ -2729,9 +2468,6 @@
|
|
|
2729
2468
|
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
2730
2469
|
"message": "效能"
|
|
2731
2470
|
},
|
|
2732
|
-
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
2733
|
-
"message": "漸進式網絡應用程式"
|
|
2734
|
-
},
|
|
2735
2471
|
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
2736
2472
|
"message": "搜尋引擎優化 (SEO)"
|
|
2737
2473
|
},
|
|
@@ -3398,9 +3134,6 @@
|
|
|
3398
3134
|
"report/renderer/report-utils.js | passedAuditsGroupTitle": {
|
|
3399
3135
|
"message": "已通過的審核"
|
|
3400
3136
|
},
|
|
3401
|
-
"report/renderer/report-utils.js | pwaRemovalMessage": {
|
|
3402
|
-
"message": "根據[更新 Chrome 的安裝條件](https://developer.chrome.com/blog/update-install-criteria),Lighthouse 亦將在之後的版本淘汰 PWA 類別。如果之後要進行 PWA 測試,請參閱[新版 PWA 說明文件](https://developer.chrome.com/docs/devtools/progressive-web-apps/)。"
|
|
3403
|
-
},
|
|
3404
3137
|
"report/renderer/report-utils.js | runtimeAnalysisWindow": {
|
|
3405
3138
|
"message": "初始頁面載入"
|
|
3406
3139
|
},
|