lighthouse 12.4.0 → 12.5.0-dev.20250325
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/core/audits/audit.js +3 -1
- package/core/audits/bootup-time.js +1 -1
- package/core/audits/byte-efficiency/duplicated-javascript.js +1 -1
- package/core/audits/byte-efficiency/efficient-animated-content.js +1 -1
- package/core/audits/byte-efficiency/legacy-javascript.d.ts +0 -65
- package/core/audits/byte-efficiency/legacy-javascript.js +11 -363
- package/core/audits/byte-efficiency/modern-image-formats.js +1 -1
- package/core/audits/byte-efficiency/offscreen-images.js +4 -3
- package/core/audits/byte-efficiency/render-blocking-resources.js +6 -3
- package/core/audits/byte-efficiency/unminified-css.js +2 -1
- package/core/audits/byte-efficiency/unminified-javascript.js +2 -1
- package/core/audits/byte-efficiency/unused-css-rules.js +1 -1
- package/core/audits/byte-efficiency/unused-javascript.js +2 -2
- package/core/audits/byte-efficiency/uses-long-cache-ttl.js +1 -1
- package/core/audits/byte-efficiency/uses-optimized-images.js +1 -1
- package/core/audits/byte-efficiency/uses-responsive-images.js +1 -1
- package/core/audits/byte-efficiency/uses-text-compression.js +2 -1
- package/core/audits/critical-request-chains.js +5 -3
- package/core/audits/dobetterweb/dom-size.js +1 -1
- package/core/audits/dobetterweb/uses-http2.js +1 -1
- package/core/audits/insights/cls-culprits-insight.js +1 -1
- package/core/audits/insights/document-latency-insight.js +1 -1
- package/core/audits/insights/dom-size-insight.js +1 -1
- package/core/audits/insights/{long-critical-network-tree-insight.d.ts → duplicated-javascript-insight.d.ts} +3 -3
- package/core/audits/insights/duplicated-javascript-insight.js +54 -0
- package/core/audits/insights/font-display-insight.js +8 -7
- package/core/audits/insights/forced-reflow-insight.d.ts +10 -0
- package/core/audits/insights/forced-reflow-insight.js +64 -12
- package/core/audits/insights/image-delivery-insight.js +9 -10
- package/core/audits/insights/insight-audit.js +9 -4
- package/core/audits/insights/interaction-to-next-paint-insight.js +1 -1
- package/core/audits/insights/lcp-discovery-insight.js +1 -1
- package/core/audits/insights/lcp-phases-insight.js +1 -1
- package/core/audits/insights/network-dependency-tree-insight.d.ts +11 -0
- package/core/audits/insights/{long-critical-network-tree-insight.js → network-dependency-tree-insight.js} +7 -7
- package/core/audits/insights/render-blocking-insight.js +1 -1
- package/core/audits/insights/slow-css-selector-insight.js +1 -1
- package/core/audits/insights/third-parties-insight.js +1 -1
- package/core/audits/insights/use-cache-insight.d.ts +11 -0
- package/core/audits/insights/use-cache-insight.js +61 -0
- package/core/audits/insights/viewport-insight.js +1 -1
- package/core/audits/largest-contentful-paint-element.js +7 -3
- package/core/audits/layout-shifts.js +5 -2
- package/core/audits/lcp-lazy-loaded.js +1 -1
- package/core/audits/long-tasks.js +6 -4
- package/core/audits/mainthread-work-breakdown.js +1 -1
- package/core/audits/metrics/first-contentful-paint.js +4 -2
- package/core/audits/metrics/interactive.js +6 -3
- package/core/audits/metrics/largest-contentful-paint.js +7 -3
- package/core/audits/metrics/max-potential-fid.js +6 -3
- package/core/audits/metrics/speed-index.js +6 -3
- package/core/audits/metrics/total-blocking-time.js +6 -3
- package/core/audits/metrics.js +4 -3
- package/core/audits/predictive-perf.js +4 -3
- package/core/audits/prioritize-lcp-image.js +5 -3
- package/core/audits/redirects.js +4 -2
- package/core/audits/script-treemap-data.js +8 -4
- package/core/audits/third-party-facades.js +1 -1
- package/core/audits/third-party-summary.js +1 -1
- package/core/audits/uses-rel-preconnect.js +7 -5
- package/core/audits/uses-rel-preload.js +5 -3
- package/core/computed/computed-artifact.d.ts +5 -1
- package/core/computed/computed-artifact.js +23 -2
- package/core/computed/critical-request-chains.d.ts +5 -1
- package/core/computed/critical-request-chains.js +4 -4
- package/core/computed/js-bundles.d.ts +1 -1
- package/core/computed/metrics/first-contentful-paint-all-frames.js +1 -1
- package/core/computed/metrics/first-contentful-paint.js +1 -1
- package/core/computed/metrics/interactive.js +1 -1
- package/core/computed/metrics/lantern-first-contentful-paint.js +1 -1
- package/core/computed/metrics/lantern-interactive.js +1 -1
- package/core/computed/metrics/lantern-largest-contentful-paint.js +1 -1
- package/core/computed/metrics/lantern-max-potential-fid.js +1 -1
- package/core/computed/metrics/lantern-metric.js +1 -1
- package/core/computed/metrics/lantern-speed-index.js +1 -1
- package/core/computed/metrics/lantern-total-blocking-time.js +1 -1
- package/core/computed/metrics/largest-contentful-paint-all-frames.js +1 -1
- package/core/computed/metrics/largest-contentful-paint.js +1 -1
- package/core/computed/metrics/lcp-breakdown.js +1 -1
- package/core/computed/metrics/max-potential-fid.js +1 -1
- package/core/computed/metrics/metric.js +2 -0
- package/core/computed/metrics/speed-index.js +1 -1
- package/core/computed/metrics/time-to-first-byte.js +1 -1
- package/core/computed/metrics/timing-summary.d.ts +5 -2
- package/core/computed/metrics/timing-summary.js +8 -4
- package/core/computed/metrics/total-blocking-time.js +1 -1
- package/core/computed/module-duplication.d.ts +1 -1
- package/core/computed/navigation-insights.d.ts +11 -3
- package/core/computed/navigation-insights.js +7 -4
- package/core/computed/page-dependency-graph.d.ts +7 -3
- package/core/computed/page-dependency-graph.js +6 -5
- package/core/computed/tbt-impact-tasks.js +1 -1
- package/core/computed/trace-engine-result.d.ts +36 -2
- package/core/computed/trace-engine-result.js +119 -25
- package/core/computed/unused-javascript-summary.d.ts +2 -2
- package/core/computed/unused-javascript-summary.js +1 -1
- package/core/config/default-config.js +19 -15
- package/core/config/experimental-config.js +19 -0
- package/core/gather/gatherers/source-maps.d.ts +1 -0
- package/core/gather/gatherers/source-maps.js +3 -0
- package/core/gather/gatherers/trace-elements.d.ts +4 -4
- package/core/gather/gatherers/trace-elements.js +8 -4
- package/core/gather/gatherers/trace.js +5 -0
- package/core/lib/bf-cache-strings.d.ts +0 -122
- package/core/lib/bf-cache-strings.js +1 -2
- package/core/lib/deprecation-description.js +2 -1
- package/core/lib/legacy-javascript/legacy-javascript.d.ts +29 -0
- package/core/lib/legacy-javascript/legacy-javascript.js +351 -0
- package/core/lib/legacy-javascript/polyfill-graph-data.json +93 -0
- package/core/lib/legacy-javascript/polyfill-module-data.json +623 -0
- package/core/lib/trace-engine.d.ts +6 -1
- package/core/lib/trace-engine.js +1 -2
- package/package.json +10 -8
- package/shared/localization/locales/ar-XB.json +783 -513
- package/shared/localization/locales/ar.json +783 -513
- package/shared/localization/locales/bg.json +933 -663
- package/shared/localization/locales/ca.json +925 -655
- package/shared/localization/locales/cs.json +926 -656
- package/shared/localization/locales/da.json +926 -656
- package/shared/localization/locales/de.json +803 -533
- package/shared/localization/locales/el.json +928 -658
- package/shared/localization/locales/en-GB.json +929 -659
- package/shared/localization/locales/en-US.json +593 -551
- package/shared/localization/locales/en-XA.json +28 -508
- package/shared/localization/locales/en-XL.json +593 -551
- package/shared/localization/locales/es-419.json +928 -658
- package/shared/localization/locales/es.json +787 -517
- package/shared/localization/locales/fi.json +925 -655
- package/shared/localization/locales/fil.json +929 -659
- package/shared/localization/locales/fr.json +927 -657
- package/shared/localization/locales/he.json +795 -528
- package/shared/localization/locales/hi.json +798 -528
- package/shared/localization/locales/hr.json +929 -659
- package/shared/localization/locales/hu.json +926 -656
- package/shared/localization/locales/id.json +926 -656
- package/shared/localization/locales/it.json +930 -660
- package/shared/localization/locales/ja.json +927 -657
- package/shared/localization/locales/ko.json +936 -666
- package/shared/localization/locales/lt.json +933 -663
- package/shared/localization/locales/lv.json +809 -539
- package/shared/localization/locales/nl.json +925 -655
- package/shared/localization/locales/no.json +928 -658
- package/shared/localization/locales/pl.json +927 -657
- package/shared/localization/locales/pt-PT.json +841 -571
- package/shared/localization/locales/pt.json +841 -571
- package/shared/localization/locales/ro.json +925 -655
- package/shared/localization/locales/ru.json +935 -668
- package/shared/localization/locales/sk.json +925 -655
- package/shared/localization/locales/sl.json +927 -657
- package/shared/localization/locales/sr-Latn.json +925 -655
- package/shared/localization/locales/sr.json +925 -655
- package/shared/localization/locales/sv.json +936 -666
- package/shared/localization/locales/ta.json +935 -668
- package/shared/localization/locales/te.json +785 -515
- package/shared/localization/locales/th.json +813 -543
- package/shared/localization/locales/tr.json +927 -657
- package/shared/localization/locales/uk.json +795 -525
- package/shared/localization/locales/vi.json +929 -659
- package/shared/localization/locales/zh-HK.json +926 -656
- package/shared/localization/locales/zh-TW.json +784 -514
- package/shared/localization/locales/zh.json +926 -656
- package/tsconfig.json +2 -1
- package/types/artifacts.d.ts +2 -1
- package/core/audits/byte-efficiency/polyfill-graph-data.json +0 -53
|
@@ -660,7 +660,10 @@
|
|
|
660
660
|
"message": "使用影片格式的動畫內容"
|
|
661
661
|
},
|
|
662
662
|
"core/audits/byte-efficiency/legacy-javascript.js | description": {
|
|
663
|
-
"message": "
|
|
663
|
+
"message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile [Baseline](https://web.dev/baseline) features, unless you know you must support legacy browsers. [Learn why most sites can deploy ES6+ code without transpiling](https://philipwalton.com/articles/the-state-of-es5-on-the-web/)"
|
|
664
|
+
},
|
|
665
|
+
"core/audits/byte-efficiency/legacy-javascript.js | detectedCoreJs2Warning": {
|
|
666
|
+
"message": "系統偵測到網頁採用 core-js 第 2 版。第 3 版大幅提升效能,請務必升級。"
|
|
664
667
|
},
|
|
665
668
|
"core/audits/byte-efficiency/legacy-javascript.js | title": {
|
|
666
669
|
"message": "避免向新型瀏覽器提供舊版 JavaScript"
|
|
@@ -761,6 +764,18 @@
|
|
|
761
764
|
"core/audits/byte-efficiency/uses-text-compression.js | title": {
|
|
762
765
|
"message": "啟用文字壓縮"
|
|
763
766
|
},
|
|
767
|
+
"core/audits/clickjacking-mitigation.js | columnSeverity": {
|
|
768
|
+
"message": "嚴重程度"
|
|
769
|
+
},
|
|
770
|
+
"core/audits/clickjacking-mitigation.js | description": {
|
|
771
|
+
"message": "`X-Frame-Options` (XFO) 標題或 `Content-Security-Policy` (CSP) 標題中的 `frame-ancestors` 指令控制可嵌入網頁的位置,使用這些做法可禁止部分或所有網站嵌入網頁,有助緩解點擊劫持攻擊。[進一步瞭解如何防範劫持攻擊](https://developer.chrome.com/docs/lighthouse/best-practices/clickjacking-mitigation)。"
|
|
772
|
+
},
|
|
773
|
+
"core/audits/clickjacking-mitigation.js | noClickjackingMitigation": {
|
|
774
|
+
"message": "找不到任何頁框控制政策"
|
|
775
|
+
},
|
|
776
|
+
"core/audits/clickjacking-mitigation.js | title": {
|
|
777
|
+
"message": "使用 XFO 或 CSP 防範點擊劫持攻擊"
|
|
778
|
+
},
|
|
764
779
|
"core/audits/critical-request-chains.js | description": {
|
|
765
780
|
"message": "下方的「關鍵要求鏈結」顯示以高優先次序發佈的資源。為了提高頁面載入速度,建議您縮短鏈結長度,縮減下載資源的大小,或延遲下載不必要資源。[瞭解如何避免鏈結關鍵要求](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains/)。"
|
|
766
781
|
},
|
|
@@ -1040,6 +1055,9 @@
|
|
|
1040
1055
|
"core/audits/image-size-responsive.js | title": {
|
|
1041
1056
|
"message": "提供的圖片解像度適當"
|
|
1042
1057
|
},
|
|
1058
|
+
"core/audits/insights/cls-culprits-insight.js | columnScore": {
|
|
1059
|
+
"message": "版面配置轉移分數"
|
|
1060
|
+
},
|
|
1043
1061
|
"core/audits/is-on-https.js | allowed": {
|
|
1044
1062
|
"message": "允許"
|
|
1045
1063
|
},
|
|
@@ -1658,6 +1676,9 @@
|
|
|
1658
1676
|
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1659
1677
|
"message": "首次繪製改進"
|
|
1660
1678
|
},
|
|
1679
|
+
"core/config/default-config.js | insightGroupTitle": {
|
|
1680
|
+
"message": "分析資料"
|
|
1681
|
+
},
|
|
1661
1682
|
"core/config/default-config.js | metricGroupTitle": {
|
|
1662
1683
|
"message": "數據"
|
|
1663
1684
|
},
|
|
@@ -1721,1013 +1742,1259 @@
|
|
|
1721
1742
|
"core/gather/timespan-runner.js | warningNavigationDetected": {
|
|
1722
1743
|
"message": "系統在執行期間偵測到網頁瀏覽活動。我們不建議使用時間範圍模式審核網頁瀏覽活動。請使用導覽模式審核網頁瀏覽活動,提升第三方歸因和主要執行緒偵測的效能。"
|
|
1723
1744
|
},
|
|
1724
|
-
"core/lib/
|
|
1725
|
-
"message": "
|
|
1726
|
-
},
|
|
1727
|
-
"core/lib/bf-cache-strings.js | HTTPStatusNotOK": {
|
|
1728
|
-
"message": "只有狀態碼為 2XX 的網頁才可快取。"
|
|
1745
|
+
"core/lib/csp-evaluator.js | allowlistFallback": {
|
|
1746
|
+
"message": "建議新增 https: 和 http: 網址配置,以便向下兼容舊版瀏覽器 (支援`'strict-dynamic'`的瀏覽器會忽略這些配置)。"
|
|
1729
1747
|
},
|
|
1730
|
-
"core/lib/
|
|
1731
|
-
"message": "
|
|
1748
|
+
"core/lib/csp-evaluator.js | deprecatedDisownOpener": {
|
|
1749
|
+
"message": "`disown-opener` 已於 CSP3 淘汰。請改用 Cross-Origin-Opener-Policy 標題。"
|
|
1732
1750
|
},
|
|
1733
|
-
"core/lib/
|
|
1734
|
-
"message": "
|
|
1751
|
+
"core/lib/csp-evaluator.js | deprecatedReferrer": {
|
|
1752
|
+
"message": "`referrer` 已於 CSP2 淘汰。請改用 Referrer-Policy 標題。"
|
|
1735
1753
|
},
|
|
1736
|
-
"core/lib/
|
|
1737
|
-
"message": "
|
|
1754
|
+
"core/lib/csp-evaluator.js | deprecatedReflectedXSS": {
|
|
1755
|
+
"message": "`reflected-xss` 已於 CSP2 淘汰。請改用 X-XSS-Protection 標題。"
|
|
1738
1756
|
},
|
|
1739
|
-
"core/lib/
|
|
1740
|
-
"message": "
|
|
1757
|
+
"core/lib/csp-evaluator.js | missingBaseUri": {
|
|
1758
|
+
"message": "如果缺少 `base-uri`,有心人士就能利用已插入的 `<base>` 標籤,將所有相對網址 (例如指令碼) 的基本網址設定為攻擊者控制的網域。建議將 `base-uri` 設定為`'none'`或`'self'`。"
|
|
1741
1759
|
},
|
|
1742
|
-
"core/lib/
|
|
1743
|
-
"message": "
|
|
1760
|
+
"core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1761
|
+
"message": "如果缺少 `object-src`,有心人士就能插入可執行不安全指令碼的外掛程式。在可行情況下,建議將 `object-src` 設定為`'none'`。"
|
|
1744
1762
|
},
|
|
1745
|
-
"core/lib/
|
|
1746
|
-
"message": "
|
|
1763
|
+
"core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1764
|
+
"message": "缺少 `script-src` 指令。這可能導致系統執行不安全的指令碼。"
|
|
1747
1765
|
},
|
|
1748
|
-
"core/lib/
|
|
1749
|
-
"message": "
|
|
1766
|
+
"core/lib/csp-evaluator.js | missingSemicolon": {
|
|
1767
|
+
"message": "忘記使用分號嗎?{keyword} 似乎是指令,而不是關鍵字。"
|
|
1750
1768
|
},
|
|
1751
|
-
"core/lib/
|
|
1752
|
-
"message": "
|
|
1769
|
+
"core/lib/csp-evaluator.js | nonceCharset": {
|
|
1770
|
+
"message": "nonce 應使用 base64 字元集。"
|
|
1753
1771
|
},
|
|
1754
|
-
"core/lib/
|
|
1755
|
-
"message": "
|
|
1772
|
+
"core/lib/csp-evaluator.js | nonceLength": {
|
|
1773
|
+
"message": "nonce 的長度至少要有 8 個字元。"
|
|
1756
1774
|
},
|
|
1757
|
-
"core/lib/
|
|
1758
|
-
"message": "
|
|
1775
|
+
"core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1776
|
+
"message": "請避免在此指令之中使用純網址配置 ({keyword})。純網址配置會容許有心人士從不安全的網域取得指令碼。"
|
|
1759
1777
|
},
|
|
1760
|
-
"core/lib/
|
|
1761
|
-
"message": "
|
|
1778
|
+
"core/lib/csp-evaluator.js | plainWildcards": {
|
|
1779
|
+
"message": "請避免在此指令中使用純萬用字元 ({keyword})。純萬用字元會容許有心人士從不安全的網域取得指令碼。"
|
|
1762
1780
|
},
|
|
1763
|
-
"core/lib/
|
|
1764
|
-
"message": "
|
|
1781
|
+
"core/lib/csp-evaluator.js | reportToOnly": {
|
|
1782
|
+
"message": "報告目的地只能透過 report-to 指令設定。由於只有以 Chromium 為基礎的瀏覽器支援這項指令,建議同時使用 `report-uri` 指令。"
|
|
1765
1783
|
},
|
|
1766
|
-
"core/lib/
|
|
1767
|
-
"message": "
|
|
1784
|
+
"core/lib/csp-evaluator.js | reportingDestinationMissing": {
|
|
1785
|
+
"message": "沒有 CSP 設定報告目的地。這會導致系統難以持續維護 CSP 及監察故障情況。"
|
|
1768
1786
|
},
|
|
1769
|
-
"core/lib/
|
|
1770
|
-
"message": "
|
|
1787
|
+
"core/lib/csp-evaluator.js | strictDynamic": {
|
|
1788
|
+
"message": "由於主機許可名單經常被忽略,建議改用 CSP nonce 或 hash,並按需要配搭使用`'strict-dynamic'`。"
|
|
1771
1789
|
},
|
|
1772
|
-
"core/lib/
|
|
1773
|
-
"message": "
|
|
1790
|
+
"core/lib/csp-evaluator.js | unknownDirective": {
|
|
1791
|
+
"message": "CSP 指令不明。"
|
|
1774
1792
|
},
|
|
1775
|
-
"core/lib/
|
|
1776
|
-
"message": "
|
|
1793
|
+
"core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1794
|
+
"message": "{keyword} 似乎是無效關鍵字。"
|
|
1777
1795
|
},
|
|
1778
|
-
"core/lib/
|
|
1779
|
-
"message": "
|
|
1796
|
+
"core/lib/csp-evaluator.js | unsafeInline": {
|
|
1797
|
+
"message": "`'unsafe-inline'`會允許執行不安全的頁面內嵌指令碼和事件處理常式。建議使用 CSP nonce 或 hash 個別允許指令碼。"
|
|
1780
1798
|
},
|
|
1781
|
-
"core/lib/
|
|
1782
|
-
"message": "
|
|
1799
|
+
"core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1800
|
+
"message": "建議新增`'unsafe-inline'`,以便向下兼容舊版瀏覽器 (支援 nonce/hash 的瀏覽器會忽略此項目)。"
|
|
1783
1801
|
},
|
|
1784
|
-
"core/lib/
|
|
1785
|
-
"message": "
|
|
1802
|
+
"core/lib/deprecation-description.js | feature": {
|
|
1803
|
+
"message": "詳情請參閱「功能狀態」頁面。"
|
|
1786
1804
|
},
|
|
1787
|
-
"core/lib/
|
|
1788
|
-
"message": "
|
|
1805
|
+
"core/lib/deprecation-description.js | milestone": {
|
|
1806
|
+
"message": "此變更將會在第 {milestone} 個里程碑時生效。"
|
|
1789
1807
|
},
|
|
1790
|
-
"core/lib/
|
|
1791
|
-
"message": "
|
|
1808
|
+
"core/lib/deprecation-description.js | title": {
|
|
1809
|
+
"message": "使用已淘汰的功能"
|
|
1792
1810
|
},
|
|
1793
|
-
"core/lib/
|
|
1794
|
-
"message": "
|
|
1811
|
+
"core/lib/i18n/i18n.js | columnBlockingTime": {
|
|
1812
|
+
"message": "主要執行緒封鎖時間"
|
|
1795
1813
|
},
|
|
1796
|
-
"core/lib/
|
|
1797
|
-
"message": "
|
|
1814
|
+
"core/lib/i18n/i18n.js | columnCacheTTL": {
|
|
1815
|
+
"message": "快取 TTL"
|
|
1798
1816
|
},
|
|
1799
|
-
"core/lib/
|
|
1800
|
-
"message": "
|
|
1817
|
+
"core/lib/i18n/i18n.js | columnDescription": {
|
|
1818
|
+
"message": "說明"
|
|
1801
1819
|
},
|
|
1802
|
-
"core/lib/
|
|
1803
|
-
"message": "
|
|
1820
|
+
"core/lib/i18n/i18n.js | columnDuration": {
|
|
1821
|
+
"message": "時間長度"
|
|
1804
1822
|
},
|
|
1805
|
-
"core/lib/
|
|
1806
|
-
"message": "
|
|
1823
|
+
"core/lib/i18n/i18n.js | columnElement": {
|
|
1824
|
+
"message": "元素"
|
|
1807
1825
|
},
|
|
1808
|
-
"core/lib/
|
|
1809
|
-
"message": "
|
|
1826
|
+
"core/lib/i18n/i18n.js | columnFailingElem": {
|
|
1827
|
+
"message": "審核失敗的元素"
|
|
1810
1828
|
},
|
|
1811
|
-
"core/lib/
|
|
1812
|
-
"message": "
|
|
1829
|
+
"core/lib/i18n/i18n.js | columnLocation": {
|
|
1830
|
+
"message": "位置"
|
|
1813
1831
|
},
|
|
1814
|
-
"core/lib/
|
|
1815
|
-
"message": "
|
|
1832
|
+
"core/lib/i18n/i18n.js | columnName": {
|
|
1833
|
+
"message": "名稱"
|
|
1816
1834
|
},
|
|
1817
|
-
"core/lib/
|
|
1818
|
-
"message": "
|
|
1835
|
+
"core/lib/i18n/i18n.js | columnRequests": {
|
|
1836
|
+
"message": "要求"
|
|
1819
1837
|
},
|
|
1820
|
-
"core/lib/
|
|
1821
|
-
"message": "
|
|
1838
|
+
"core/lib/i18n/i18n.js | columnResourceSize": {
|
|
1839
|
+
"message": "資源大小"
|
|
1822
1840
|
},
|
|
1823
|
-
"core/lib/
|
|
1824
|
-
"message": "
|
|
1841
|
+
"core/lib/i18n/i18n.js | columnResourceType": {
|
|
1842
|
+
"message": "資源類型"
|
|
1825
1843
|
},
|
|
1826
|
-
"core/lib/
|
|
1827
|
-
"message": "
|
|
1844
|
+
"core/lib/i18n/i18n.js | columnSize": {
|
|
1845
|
+
"message": "大小"
|
|
1828
1846
|
},
|
|
1829
|
-
"core/lib/
|
|
1830
|
-
"message": "
|
|
1847
|
+
"core/lib/i18n/i18n.js | columnSource": {
|
|
1848
|
+
"message": "來源"
|
|
1831
1849
|
},
|
|
1832
|
-
"core/lib/
|
|
1833
|
-
"message": "
|
|
1850
|
+
"core/lib/i18n/i18n.js | columnStartTime": {
|
|
1851
|
+
"message": "開始時間"
|
|
1834
1852
|
},
|
|
1835
|
-
"core/lib/
|
|
1836
|
-
"message": "
|
|
1853
|
+
"core/lib/i18n/i18n.js | columnTimeSpent": {
|
|
1854
|
+
"message": "所用的時間"
|
|
1837
1855
|
},
|
|
1838
|
-
"core/lib/
|
|
1839
|
-
"message": "
|
|
1856
|
+
"core/lib/i18n/i18n.js | columnTransferSize": {
|
|
1857
|
+
"message": "傳輸大小"
|
|
1840
1858
|
},
|
|
1841
|
-
"core/lib/
|
|
1842
|
-
"message": "
|
|
1859
|
+
"core/lib/i18n/i18n.js | columnURL": {
|
|
1860
|
+
"message": "網址"
|
|
1843
1861
|
},
|
|
1844
|
-
"core/lib/
|
|
1845
|
-
"message": "
|
|
1862
|
+
"core/lib/i18n/i18n.js | columnWastedBytes": {
|
|
1863
|
+
"message": "可節省的數據用量"
|
|
1846
1864
|
},
|
|
1847
|
-
"core/lib/
|
|
1848
|
-
"message": "
|
|
1865
|
+
"core/lib/i18n/i18n.js | columnWastedMs": {
|
|
1866
|
+
"message": "可節省的數據用量"
|
|
1849
1867
|
},
|
|
1850
|
-
"core/lib/
|
|
1851
|
-
"message": "
|
|
1868
|
+
"core/lib/i18n/i18n.js | cumulativeLayoutShiftMetric": {
|
|
1869
|
+
"message": "Cumulative Layout Shift"
|
|
1852
1870
|
},
|
|
1853
|
-
"core/lib/
|
|
1854
|
-
"message": "
|
|
1871
|
+
"core/lib/i18n/i18n.js | displayValueByteSavings": {
|
|
1872
|
+
"message": "可節省 {wastedBytes, number, bytes} KiB"
|
|
1855
1873
|
},
|
|
1856
|
-
"core/lib/
|
|
1857
|
-
"message": "
|
|
1874
|
+
"core/lib/i18n/i18n.js | displayValueElementsFound": {
|
|
1875
|
+
"message": "{nodeCount,plural, =1{找到 1 個元素}other{找到 # 個元素}}"
|
|
1858
1876
|
},
|
|
1859
|
-
"core/lib/
|
|
1860
|
-
"message": "
|
|
1877
|
+
"core/lib/i18n/i18n.js | displayValueMsSavings": {
|
|
1878
|
+
"message": "可減少 {wastedMs, number, milliseconds} 毫秒"
|
|
1861
1879
|
},
|
|
1862
|
-
"core/lib/
|
|
1863
|
-
"message": "
|
|
1880
|
+
"core/lib/i18n/i18n.js | documentResourceType": {
|
|
1881
|
+
"message": "文件"
|
|
1864
1882
|
},
|
|
1865
|
-
"core/lib/
|
|
1866
|
-
"message": "
|
|
1883
|
+
"core/lib/i18n/i18n.js | firstContentfulPaintMetric": {
|
|
1884
|
+
"message": "First Contentful Paint"
|
|
1867
1885
|
},
|
|
1868
|
-
"core/lib/
|
|
1869
|
-
"message": "
|
|
1886
|
+
"core/lib/i18n/i18n.js | firstMeaningfulPaintMetric": {
|
|
1887
|
+
"message": "首次有效繪製時間"
|
|
1870
1888
|
},
|
|
1871
|
-
"core/lib/
|
|
1872
|
-
"message": "
|
|
1889
|
+
"core/lib/i18n/i18n.js | fontResourceType": {
|
|
1890
|
+
"message": "字型"
|
|
1873
1891
|
},
|
|
1874
|
-
"core/lib/
|
|
1875
|
-
"message": "
|
|
1892
|
+
"core/lib/i18n/i18n.js | imageResourceType": {
|
|
1893
|
+
"message": "圖片"
|
|
1876
1894
|
},
|
|
1877
|
-
"core/lib/
|
|
1878
|
-
"message": "
|
|
1895
|
+
"core/lib/i18n/i18n.js | interactionToNextPaint": {
|
|
1896
|
+
"message": "互動至「下一個繪製」"
|
|
1879
1897
|
},
|
|
1880
|
-
"core/lib/
|
|
1881
|
-
"message": "
|
|
1898
|
+
"core/lib/i18n/i18n.js | interactiveMetric": {
|
|
1899
|
+
"message": "Time to Interactive"
|
|
1882
1900
|
},
|
|
1883
|
-
"core/lib/
|
|
1884
|
-
"message": "
|
|
1901
|
+
"core/lib/i18n/i18n.js | itemSeverityHigh": {
|
|
1902
|
+
"message": "高"
|
|
1885
1903
|
},
|
|
1886
|
-
"core/lib/
|
|
1887
|
-
"message": "
|
|
1904
|
+
"core/lib/i18n/i18n.js | itemSeverityLow": {
|
|
1905
|
+
"message": "低"
|
|
1888
1906
|
},
|
|
1889
|
-
"core/lib/
|
|
1890
|
-
"message": "
|
|
1907
|
+
"core/lib/i18n/i18n.js | itemSeverityMedium": {
|
|
1908
|
+
"message": "中"
|
|
1891
1909
|
},
|
|
1892
|
-
"core/lib/
|
|
1893
|
-
"message": "
|
|
1910
|
+
"core/lib/i18n/i18n.js | largestContentfulPaintMetric": {
|
|
1911
|
+
"message": "Largest Contentful Paint"
|
|
1894
1912
|
},
|
|
1895
|
-
"core/lib/
|
|
1896
|
-
"message": "
|
|
1913
|
+
"core/lib/i18n/i18n.js | maxPotentialFIDMetric": {
|
|
1914
|
+
"message": "首次輸入延遲時間最長預計值"
|
|
1897
1915
|
},
|
|
1898
|
-
"core/lib/
|
|
1899
|
-
"message": "
|
|
1916
|
+
"core/lib/i18n/i18n.js | mediaResourceType": {
|
|
1917
|
+
"message": "媒體"
|
|
1900
1918
|
},
|
|
1901
|
-
"core/lib/
|
|
1902
|
-
"message": "
|
|
1919
|
+
"core/lib/i18n/i18n.js | ms": {
|
|
1920
|
+
"message": "{timeInMs, number, milliseconds} 毫秒"
|
|
1903
1921
|
},
|
|
1904
|
-
"core/lib/
|
|
1905
|
-
"message": "
|
|
1922
|
+
"core/lib/i18n/i18n.js | otherResourceType": {
|
|
1923
|
+
"message": "其他"
|
|
1906
1924
|
},
|
|
1907
|
-
"core/lib/
|
|
1908
|
-
"message": "
|
|
1925
|
+
"core/lib/i18n/i18n.js | otherResourcesLabel": {
|
|
1926
|
+
"message": "其他資源"
|
|
1909
1927
|
},
|
|
1910
|
-
"core/lib/
|
|
1911
|
-
"message": "
|
|
1928
|
+
"core/lib/i18n/i18n.js | scriptResourceType": {
|
|
1929
|
+
"message": "指令碼"
|
|
1912
1930
|
},
|
|
1913
|
-
"core/lib/
|
|
1914
|
-
"message": "
|
|
1931
|
+
"core/lib/i18n/i18n.js | seconds": {
|
|
1932
|
+
"message": "{timeInMs, number, seconds} 秒"
|
|
1915
1933
|
},
|
|
1916
|
-
"core/lib/
|
|
1917
|
-
"message": "
|
|
1934
|
+
"core/lib/i18n/i18n.js | speedIndexMetric": {
|
|
1935
|
+
"message": "Speed Index"
|
|
1918
1936
|
},
|
|
1919
|
-
"core/lib/
|
|
1920
|
-
"message": "
|
|
1937
|
+
"core/lib/i18n/i18n.js | stylesheetResourceType": {
|
|
1938
|
+
"message": "樣式表"
|
|
1921
1939
|
},
|
|
1922
|
-
"core/lib/
|
|
1923
|
-
"message": "
|
|
1940
|
+
"core/lib/i18n/i18n.js | thirdPartyResourceType": {
|
|
1941
|
+
"message": "第三方"
|
|
1924
1942
|
},
|
|
1925
|
-
"core/lib/
|
|
1926
|
-
"message": "
|
|
1943
|
+
"core/lib/i18n/i18n.js | total": {
|
|
1944
|
+
"message": "總計"
|
|
1927
1945
|
},
|
|
1928
|
-
"core/lib/
|
|
1929
|
-
"message": "
|
|
1946
|
+
"core/lib/i18n/i18n.js | totalBlockingTimeMetric": {
|
|
1947
|
+
"message": "Total Blocking Time"
|
|
1930
1948
|
},
|
|
1931
|
-
"core/lib/
|
|
1932
|
-
"message": "
|
|
1949
|
+
"core/lib/i18n/i18n.js | totalResourceType": {
|
|
1950
|
+
"message": "總計"
|
|
1933
1951
|
},
|
|
1934
|
-
"core/lib/
|
|
1935
|
-
"message": "
|
|
1952
|
+
"core/lib/lh-error.js | badTraceRecording": {
|
|
1953
|
+
"message": "追蹤記錄網頁載入情況時發生錯誤。請重新執行 Lighthouse。({errorCode})"
|
|
1936
1954
|
},
|
|
1937
|
-
"core/lib/
|
|
1938
|
-
"message": "
|
|
1955
|
+
"core/lib/lh-error.js | criTimeout": {
|
|
1956
|
+
"message": "等待「Debugger 通訊協定」初始連線時逾時。"
|
|
1939
1957
|
},
|
|
1940
|
-
"core/lib/
|
|
1941
|
-
"message": "
|
|
1958
|
+
"core/lib/lh-error.js | didntCollectScreenshots": {
|
|
1959
|
+
"message": "Chrome 在網頁載入期間未能收集任何螢幕擷取畫面。請確認網頁上有可見內容,然後嘗試重新執行 Lighthouse。({errorCode})"
|
|
1942
1960
|
},
|
|
1943
|
-
"core/lib/
|
|
1944
|
-
"message": "
|
|
1961
|
+
"core/lib/lh-error.js | dnsFailure": {
|
|
1962
|
+
"message": "DNS 伺服器無法解析您提供的網域。"
|
|
1945
1963
|
},
|
|
1946
|
-
"core/lib/
|
|
1947
|
-
"message": "
|
|
1964
|
+
"core/lib/lh-error.js | erroredRequiredArtifact": {
|
|
1965
|
+
"message": "必要的 {artifactName} 收集程式發生錯誤:{errorMessage}"
|
|
1948
1966
|
},
|
|
1949
|
-
"core/lib/
|
|
1950
|
-
"message": "
|
|
1967
|
+
"core/lib/lh-error.js | internalChromeError": {
|
|
1968
|
+
"message": "Chrome 發生內部錯誤。請重新啟動 Chrome,並嘗試重新執行 Lighthouse。"
|
|
1951
1969
|
},
|
|
1952
|
-
"core/lib/
|
|
1953
|
-
"message": "
|
|
1970
|
+
"core/lib/lh-error.js | missingRequiredArtifact": {
|
|
1971
|
+
"message": "未執行必要的 {artifactName} 收集程式。"
|
|
1954
1972
|
},
|
|
1955
|
-
"core/lib/
|
|
1956
|
-
"message": "
|
|
1973
|
+
"core/lib/lh-error.js | noFcp": {
|
|
1974
|
+
"message": "頁面未套用任何內容。請確保在載入期間將瀏覽器視窗保持在前景,然後再試一次。({errorCode})"
|
|
1957
1975
|
},
|
|
1958
|
-
"core/lib/
|
|
1959
|
-
"message": "
|
|
1976
|
+
"core/lib/lh-error.js | noLcp": {
|
|
1977
|
+
"message": "此網頁顯示的內容不符合最大內容繪製 (LCP) 的資格,請確保網頁包含有效的 LCP 元素,然後再試一次。({errorCode})"
|
|
1960
1978
|
},
|
|
1961
|
-
"core/lib/
|
|
1962
|
-
"message": "
|
|
1979
|
+
"core/lib/lh-error.js | notHtml": {
|
|
1980
|
+
"message": "提供的頁面並非 HTML (MIME 類 {mimeType})。"
|
|
1963
1981
|
},
|
|
1964
|
-
"core/lib/
|
|
1965
|
-
"message": "
|
|
1982
|
+
"core/lib/lh-error.js | oldChromeDoesNotSupportFeature": {
|
|
1983
|
+
"message": "這個版本的 Chrome 太舊,無法支援「{featureName}」。請使用較新版本的 Chrome 以便查看完整結果。"
|
|
1966
1984
|
},
|
|
1967
|
-
"core/lib/
|
|
1968
|
-
"message": "
|
|
1985
|
+
"core/lib/lh-error.js | pageLoadFailed": {
|
|
1986
|
+
"message": "Lighthouse 無法穩定載入您要求的網頁。請確認您測試的網址是否正確,以及伺服器是否正確回應所有要求。"
|
|
1969
1987
|
},
|
|
1970
|
-
"core/lib/
|
|
1971
|
-
"message": "
|
|
1988
|
+
"core/lib/lh-error.js | pageLoadFailedHung": {
|
|
1989
|
+
"message": "您要求的網頁已停止回應,因此 Lighthouse 無法穩定載入該網址。"
|
|
1972
1990
|
},
|
|
1973
|
-
"core/lib/
|
|
1974
|
-
"message": "
|
|
1991
|
+
"core/lib/lh-error.js | pageLoadFailedInsecure": {
|
|
1992
|
+
"message": "您提供的網址並無有效的安全憑證。{securityMessages}"
|
|
1975
1993
|
},
|
|
1976
|
-
"core/lib/
|
|
1977
|
-
"message": "
|
|
1994
|
+
"core/lib/lh-error.js | pageLoadFailedInterstitial": {
|
|
1995
|
+
"message": "Chrome 使用插頁式畫面阻止系統載入網頁。請確認您測試的網址是否正確,以及伺服器是否正確回應所有要求。"
|
|
1978
1996
|
},
|
|
1979
|
-
"core/lib/
|
|
1980
|
-
"message": "
|
|
1997
|
+
"core/lib/lh-error.js | pageLoadFailedWithDetails": {
|
|
1998
|
+
"message": "Lighthouse 無法穩定載入您要求的網頁。請確認您測試的網址是否正確,以及伺服器是否正確回應所有要求。(詳情:{errorDetails})"
|
|
1981
1999
|
},
|
|
1982
|
-
"core/lib/
|
|
1983
|
-
"message": "
|
|
2000
|
+
"core/lib/lh-error.js | pageLoadFailedWithStatusCode": {
|
|
2001
|
+
"message": "Lighthouse 無法穩定載入你要求的網頁。請確認你測試的網址是否正確,以及伺服器是否正確回應所有要求。(狀態碼:{statusCode})"
|
|
1984
2002
|
},
|
|
1985
|
-
"core/lib/
|
|
1986
|
-
"message": "
|
|
2003
|
+
"core/lib/lh-error.js | pageLoadTookTooLong": {
|
|
2004
|
+
"message": "網頁的載入時間過長。請按照報告中的建議縮短網頁的載入時間,並嘗試重新啟動 Lighthouse。({errorCode})"
|
|
1987
2005
|
},
|
|
1988
|
-
"core/lib/
|
|
1989
|
-
"message": "
|
|
2006
|
+
"core/lib/lh-error.js | protocolTimeout": {
|
|
2007
|
+
"message": "等待 DevTools 通訊協定回應的時間超出系統分配上限。(方法:{protocolMethod})"
|
|
1990
2008
|
},
|
|
1991
|
-
"core/lib/
|
|
1992
|
-
"message": "
|
|
2009
|
+
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2010
|
+
"message": "擷取資源內容的時間超出系統分配上限。"
|
|
1993
2011
|
},
|
|
1994
|
-
"core/lib/
|
|
1995
|
-
"message": "
|
|
2012
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2013
|
+
"message": "瀏覽器分頁已意外當機。"
|
|
1996
2014
|
},
|
|
1997
|
-
"core/lib/
|
|
1998
|
-
"message": "
|
|
2015
|
+
"core/lib/lh-error.js | urlInvalid": {
|
|
2016
|
+
"message": "您提供的網址無效。"
|
|
1999
2017
|
},
|
|
2000
|
-
"core/lib/
|
|
2001
|
-
"message": "
|
|
2018
|
+
"core/lib/navigation-error.js | warningStatusCode": {
|
|
2019
|
+
"message": "Lighthouse 無法穩定載入你要求的網頁。請確認你測試的網址是否正確,以及伺服器是否正確回應所有要求。(狀態碼:{errorCode})"
|
|
2002
2020
|
},
|
|
2003
|
-
"core/lib/
|
|
2004
|
-
"message": "
|
|
2021
|
+
"core/lib/navigation-error.js | warningXhtml": {
|
|
2022
|
+
"message": "網頁 MIME 類型為 XHTML:Lighthouse 未明確支援此文件類型"
|
|
2005
2023
|
},
|
|
2006
|
-
"core/
|
|
2007
|
-
"message": "
|
|
2024
|
+
"core/user-flow.js | defaultFlowName": {
|
|
2025
|
+
"message": "使用者流量 ({url})"
|
|
2008
2026
|
},
|
|
2009
|
-
"core/
|
|
2010
|
-
"message": "
|
|
2027
|
+
"core/user-flow.js | defaultNavigationName": {
|
|
2028
|
+
"message": "導覽報告 ({url})"
|
|
2011
2029
|
},
|
|
2012
|
-
"core/
|
|
2013
|
-
"message": "
|
|
2030
|
+
"core/user-flow.js | defaultSnapshotName": {
|
|
2031
|
+
"message": "快覽報告 ({url})"
|
|
2014
2032
|
},
|
|
2015
|
-
"core/
|
|
2016
|
-
"message": "
|
|
2033
|
+
"core/user-flow.js | defaultTimespanName": {
|
|
2034
|
+
"message": "時間範圍報告 ({url})"
|
|
2017
2035
|
},
|
|
2018
|
-
"
|
|
2019
|
-
"message": "
|
|
2036
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
2037
|
+
"message": "全部報告"
|
|
2020
2038
|
},
|
|
2021
|
-
"
|
|
2022
|
-
"message": "
|
|
2039
|
+
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
2040
|
+
"message": "類別"
|
|
2023
2041
|
},
|
|
2024
|
-
"
|
|
2025
|
-
"message": "
|
|
2042
|
+
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
2043
|
+
"message": "無障礙功能"
|
|
2026
2044
|
},
|
|
2027
|
-
"
|
|
2028
|
-
"message": "
|
|
2045
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
2046
|
+
"message": "最佳做法"
|
|
2029
2047
|
},
|
|
2030
|
-
"
|
|
2031
|
-
"message": "
|
|
2048
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
2049
|
+
"message": "效能"
|
|
2032
2050
|
},
|
|
2033
|
-
"
|
|
2034
|
-
"message": "
|
|
2051
|
+
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
2052
|
+
"message": "搜尋引擎優化 (SEO)"
|
|
2035
2053
|
},
|
|
2036
|
-
"
|
|
2037
|
-
"message": "
|
|
2054
|
+
"flow-report/src/i18n/ui-strings.js | desktop": {
|
|
2055
|
+
"message": "桌面電腦"
|
|
2038
2056
|
},
|
|
2039
|
-
"
|
|
2040
|
-
"message": "
|
|
2057
|
+
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
2058
|
+
"message": "瞭解 Lighthouse 流程報告"
|
|
2041
2059
|
},
|
|
2042
|
-
"
|
|
2043
|
-
"message": "
|
|
2060
|
+
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
2061
|
+
"message": "解讀流程"
|
|
2044
2062
|
},
|
|
2045
|
-
"
|
|
2046
|
-
"message": "
|
|
2063
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
2064
|
+
"message": "使用「導覽」報告來…"
|
|
2047
2065
|
},
|
|
2048
|
-
"
|
|
2049
|
-
"message": "
|
|
2066
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
2067
|
+
"message": "使用「快覽」報告來…"
|
|
2050
2068
|
},
|
|
2051
|
-
"
|
|
2052
|
-
"message": "
|
|
2069
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
2070
|
+
"message": "使用「時間範圍」報告來…"
|
|
2053
2071
|
},
|
|
2054
|
-
"
|
|
2055
|
-
"message": "
|
|
2072
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
2073
|
+
"message": "取得 Lighthouse 效能分數。"
|
|
2056
2074
|
},
|
|
2057
|
-
"
|
|
2058
|
-
"message": "
|
|
2075
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
2076
|
+
"message": "測量頁面載入效能數據,例如「最大內容繪製」和「速度指數」。"
|
|
2059
2077
|
},
|
|
2060
|
-
"
|
|
2061
|
-
"message": "
|
|
2078
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
2079
|
+
"message": "存取「漸進式網頁應用程式」功能。"
|
|
2062
2080
|
},
|
|
2063
|
-
"
|
|
2064
|
-
"message": "
|
|
2081
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
2082
|
+
"message": "在單頁應用程式或複合式表格中尋找無障礙功能問題。"
|
|
2065
2083
|
},
|
|
2066
|
-
"
|
|
2067
|
-
"message": "
|
|
2084
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
2085
|
+
"message": "評估互動背後安排選單和使用者介面元素的最佳做法。"
|
|
2068
2086
|
},
|
|
2069
|
-
"
|
|
2070
|
-
"message": "
|
|
2087
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
2088
|
+
"message": "測量一連串互動的版面配置轉移和 JavaScript 執行時間。"
|
|
2071
2089
|
},
|
|
2072
|
-
"
|
|
2073
|
-
"message": "
|
|
2090
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
2091
|
+
"message": "探索效能優化建議,以便改善永久頁面和單頁應用程式的使用體驗。"
|
|
2074
2092
|
},
|
|
2075
|
-
"
|
|
2076
|
-
"message": "
|
|
2093
|
+
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
2094
|
+
"message": "最大影響"
|
|
2077
2095
|
},
|
|
2078
|
-
"
|
|
2079
|
-
"message": "
|
|
2096
|
+
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
2097
|
+
"message": "{numInformative,plural, =1{{numInformative} 項資訊型審核}other{{numInformative} 項資訊型審核}}"
|
|
2080
2098
|
},
|
|
2081
|
-
"
|
|
2082
|
-
"message": "
|
|
2099
|
+
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
2100
|
+
"message": "流動裝置"
|
|
2083
2101
|
},
|
|
2084
|
-
"
|
|
2085
|
-
"message": "
|
|
2102
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
2103
|
+
"message": "網頁載入"
|
|
2086
2104
|
},
|
|
2087
|
-
"
|
|
2088
|
-
"message": "
|
|
2105
|
+
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
2106
|
+
"message": "「導覽」報告會分析單次網頁載入情況,方式與原來的 Lighthouse 報告完全相同。"
|
|
2089
2107
|
},
|
|
2090
|
-
"
|
|
2091
|
-
"message": "
|
|
2108
|
+
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
2109
|
+
"message": "導覽報告"
|
|
2092
2110
|
},
|
|
2093
|
-
"
|
|
2094
|
-
"message": "
|
|
2111
|
+
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
2112
|
+
"message": "{numNavigation,plural, =1{{numNavigation} 項導覽報告}other{{numNavigation} 項導覽報告}}"
|
|
2095
2113
|
},
|
|
2096
|
-
"
|
|
2097
|
-
"message": "
|
|
2114
|
+
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
2115
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} 項可通過的審核}other{{numPassableAudits} 項可通過的審核}}"
|
|
2098
2116
|
},
|
|
2099
|
-
"
|
|
2100
|
-
"message": "
|
|
2117
|
+
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
2118
|
+
"message": "{numPassed,plural, =1{已通過 {numPassed} 項審核}other{已通過 {numPassed} 項審核}}"
|
|
2101
2119
|
},
|
|
2102
|
-
"
|
|
2103
|
-
"message": "
|
|
2120
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
2121
|
+
"message": "一般"
|
|
2104
2122
|
},
|
|
2105
|
-
"
|
|
2106
|
-
"message": "
|
|
2123
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
2124
|
+
"message": "錯誤"
|
|
2107
2125
|
},
|
|
2108
|
-
"
|
|
2109
|
-
"message": "
|
|
2126
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
2127
|
+
"message": "欠佳"
|
|
2110
2128
|
},
|
|
2111
|
-
"
|
|
2112
|
-
"message": "
|
|
2129
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
2130
|
+
"message": "良好"
|
|
2113
2131
|
},
|
|
2114
|
-
"
|
|
2115
|
-
"message": "
|
|
2132
|
+
"flow-report/src/i18n/ui-strings.js | save": {
|
|
2133
|
+
"message": "儲存"
|
|
2116
2134
|
},
|
|
2117
|
-
"
|
|
2118
|
-
"message": "
|
|
2135
|
+
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
2136
|
+
"message": "已採集網頁狀態"
|
|
2119
2137
|
},
|
|
2120
|
-
"
|
|
2121
|
-
"message": "
|
|
2138
|
+
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
2139
|
+
"message": "「快覽」報告會分析處於特定狀態 (通常是在使用者進行互動之後) 的頁面。"
|
|
2122
2140
|
},
|
|
2123
|
-
"
|
|
2124
|
-
"message": "
|
|
2141
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
2142
|
+
"message": "快覽報告"
|
|
2125
2143
|
},
|
|
2126
|
-
"
|
|
2127
|
-
"message": "
|
|
2144
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
2145
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} 項快覽報告}other{{numSnapshot} 項快覽報告}}"
|
|
2128
2146
|
},
|
|
2129
|
-
"
|
|
2130
|
-
"message": "
|
|
2147
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
2148
|
+
"message": "摘要"
|
|
2131
2149
|
},
|
|
2132
|
-
"
|
|
2133
|
-
"message": "
|
|
2150
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
2151
|
+
"message": "用戶的互動行為"
|
|
2152
|
+
},
|
|
2153
|
+
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
2154
|
+
"message": "「時間範圍」報告會分析任意一個時段 (通常包含使用者互動)。"
|
|
2134
2155
|
},
|
|
2135
|
-
"
|
|
2136
|
-
"message": "
|
|
2156
|
+
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
2157
|
+
"message": "時間範圍報告"
|
|
2137
2158
|
},
|
|
2138
|
-
"
|
|
2139
|
-
"message": "
|
|
2159
|
+
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
2160
|
+
"message": "{numTimespan,plural, =1{{numTimespan} 項時間範圍報告}other{{numTimespan} 項時間範圍報告}}"
|
|
2140
2161
|
},
|
|
2141
|
-
"
|
|
2142
|
-
"message": "
|
|
2162
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
2163
|
+
"message": "Lighthouse 用戶流程報告"
|
|
2143
2164
|
},
|
|
2144
|
-
"
|
|
2145
|
-
"message": "
|
|
2165
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | AuthorizationCoveredByWildcard": {
|
|
2166
|
+
"message": "CORS Access-Control-Allow-Headers 處理操作中的萬用字元符號 (*) 不包含授權。"
|
|
2146
2167
|
},
|
|
2147
|
-
"
|
|
2148
|
-
"message": "
|
|
2168
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSSelectorInternalMediaControlsOverlayCastButton": {
|
|
2169
|
+
"message": "應使用 disableRemotePlayback 屬性停用預設的投放整合功能,而非 -internal-media-controls-overlay-cast-button 選取器。"
|
|
2149
2170
|
},
|
|
2150
|
-
"
|
|
2151
|
-
"message": "
|
|
2171
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSValueAppearanceSliderVertical": {
|
|
2172
|
+
"message": "CSS 外觀值 slider-vertical 並未標準化,因此將會移除。"
|
|
2152
2173
|
},
|
|
2153
|
-
"
|
|
2154
|
-
"message": "
|
|
2174
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CanRequestURLHTTPContainingNewline": {
|
|
2175
|
+
"message": "系統將封鎖網址同時包含已移除的空白 \\(n|r|t) 字元和小於字元 (<) 的資源要求。請從元素屬性值等位置移除換行符號,並編碼小於字元,以便載入這些資源。"
|
|
2155
2176
|
},
|
|
2156
|
-
"
|
|
2157
|
-
"message": "
|
|
2177
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesConnectionInfo": {
|
|
2178
|
+
"message": "chrome.loadTimes() 已淘汰,請改用標準化 API:Navigation Timing 2。"
|
|
2158
2179
|
},
|
|
2159
|
-
"
|
|
2180
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2181
|
+
"message": "chrome.loadTimes() 已淘汰,請改用標準化 API:Paint Timing。"
|
|
2182
|
+
},
|
|
2183
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2184
|
+
"message": "chrome.loadTimes() 已淘汰,請改用標準化 API:Navigation Timing 2 中的 nextHopProtocol。"
|
|
2185
|
+
},
|
|
2186
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CookieWithTruncatingChar": {
|
|
2187
|
+
"message": "系統將會拒絕包含 \\(0|r|n) 字元的 Cookie,而非縮短。"
|
|
2188
|
+
},
|
|
2189
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginAccessBasedOnDocumentDomain": {
|
|
2190
|
+
"message": "透過設定 document.domain 啟用相同來源政策的功能已淘汰,並將根據預設移除。此淘汰警告是針對透過設定 document.domain 來啟用跨來源存取功能。"
|
|
2191
|
+
},
|
|
2192
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowAlert": {
|
|
2160
2193
|
"message": "從跨來源 iframe 觸發 window.alert 的功能已淘汰,並將會在日後移除。"
|
|
2161
2194
|
},
|
|
2162
|
-
"
|
|
2195
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowConfirm": {
|
|
2163
2196
|
"message": "從跨來源 iframe 觸發 window.confirm 的功能已淘汰,並將會在日後移除。"
|
|
2164
2197
|
},
|
|
2165
|
-
"
|
|
2166
|
-
"message": "DOM 變更事件 (包括
|
|
2198
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DOMMutationEvents": {
|
|
2199
|
+
"message": "DOM 變更事件 (包括 DOMSubtreeModified、DOMNodeInserted、DOMNodeRemoved、DOMNodeRemovedFromDocument、DOMNodeInsertedIntoDocument 和 DOMCharacterDataModified) 已淘汰 (https://w3c.github.io/uievents/#legacy-event-types),並將於日後移除。請改用 MutationObserver。"
|
|
2167
2200
|
},
|
|
2168
|
-
"
|
|
2169
|
-
"message": "
|
|
2201
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DataUrlInSvgUse": {
|
|
2202
|
+
"message": "SVGUseElement 不再支援「data: 網址」,並將於日後移除。"
|
|
2170
2203
|
},
|
|
2171
|
-
"
|
|
2172
|
-
"message": "
|
|
2204
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOrigin": {
|
|
2205
|
+
"message": "getCurrentPosition() 和 watchPosition() 無法再在不安全來源上運作。如要使用此功能,請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
|
|
2173
2206
|
},
|
|
2174
|
-
"
|
|
2175
|
-
"message": "不安全來源上的
|
|
2207
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2208
|
+
"message": "不安全來源上的 getCurrentPosition() 和 watchPosition() 已淘汰。如要使用此功能,請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
|
|
2176
2209
|
},
|
|
2177
|
-
"
|
|
2178
|
-
"message": "
|
|
2210
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GetUserMediaInsecureOrigin": {
|
|
2211
|
+
"message": "getUserMedia() 無法再在不安全來源上運作。如要使用此功能,請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
|
|
2179
2212
|
},
|
|
2180
|
-
"
|
|
2181
|
-
"message": "
|
|
2213
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | HostCandidateAttributeGetter": {
|
|
2214
|
+
"message": "RTCPeerConnectionIceErrorEvent.hostCandidate 已淘汰。請改為使用 RTCPeerConnectionIceErrorEvent.address 或 RTCPeerConnectionIceErrorEvent.port。"
|
|
2182
2215
|
},
|
|
2183
|
-
"
|
|
2184
|
-
"message": "
|
|
2216
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IdentityInCanMakePaymentEvent": {
|
|
2217
|
+
"message": "「canmakepayment」Service Worker 事件的商家來源和任意資料目前已淘汰,並將在之後移除:topOrigin、paymentRequestOrigin、methodData、modifiers。"
|
|
2185
2218
|
},
|
|
2186
|
-
"
|
|
2219
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InsecurePrivateNetworkSubresourceRequest": {
|
|
2187
2220
|
"message": "網站根據使用者具備權限的網絡位置,透過只能存取的網絡要求一個子資源。這些要求會向互聯網暴露非公開的裝置和伺服器,因而增加偽造跨網站要求 (CSRF) 攻擊和/或資料洩漏的風險。為降低風險,Chrome 會忽略不安全內容向非公開子資源發出的要求,並將開始封鎖這類要求。"
|
|
2188
2221
|
},
|
|
2189
|
-
"
|
|
2190
|
-
"message": "已傳送至
|
|
2222
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InterestGroupDailyUpdateUrl": {
|
|
2223
|
+
"message": "已傳送至 joinAdInterestGroup() 的 InterestGroups dailyUpdateUrl 欄位已重新命名為 updateUrl,以便更準確地反映其行為。"
|
|
2191
2224
|
},
|
|
2192
|
-
"
|
|
2193
|
-
"message": "
|
|
2225
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IntlV8BreakIterator": {
|
|
2226
|
+
"message": "Intl.v8BreakIterator 已淘汰。請改用 Intl.Segmenter。"
|
|
2194
2227
|
},
|
|
2195
|
-
"
|
|
2196
|
-
"message": "
|
|
2228
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LocalCSSFileExtensionRejected": {
|
|
2229
|
+
"message": "除非 CSS 以 .css 副檔名作結,否則無法從 file: 網址載入。"
|
|
2197
2230
|
},
|
|
2198
|
-
"
|
|
2199
|
-
"message": "
|
|
2231
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceAbortRemove": {
|
|
2232
|
+
"message": "由於規格變更,系統已淘汰使用 SourceBuffer.abort() 取消 remove() 的非同步範圍移除操作,日後亦將停止支援此功能。建議您改為監聽 updateend 事件。abort() 的用途只限於取消非同步媒體附加內容或重設剖析器狀態。"
|
|
2200
2233
|
},
|
|
2201
|
-
"
|
|
2202
|
-
"message": "
|
|
2234
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceDurationTruncatingBuffered": {
|
|
2235
|
+
"message": "由於規格變更,系統已淘汰將 MediaSource.duration 設定為低於任何緩衝編碼頁框的最高顯示時間戳記。日後將停止支援對已縮短緩衝媒體的隱含移除操作。請改為在 newDuration < oldDuration 的所有 sourceBuffers 上執行明確 remove(newDuration, oldDuration)。"
|
|
2203
2236
|
},
|
|
2204
|
-
"
|
|
2237
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NoSysexWebMIDIWithoutPermission": {
|
|
2238
|
+
"message": "即使在 MIDIOptions 中未指定系統專用 (SysEx) 訊息,Web MIDI 亦會要求使用權限。"
|
|
2239
|
+
},
|
|
2240
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationInsecureOrigin": {
|
|
2205
2241
|
"message": "系統可能無法再使用不安全來源的 Notification API。請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
|
|
2206
2242
|
},
|
|
2207
|
-
"
|
|
2243
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationPermissionRequestedIframe": {
|
|
2208
2244
|
"message": "系統可能無法再透過跨來源 iframe 要求 Notification API。請考慮透過頂層頁框要求權限,或改為開啟新視窗。"
|
|
2209
2245
|
},
|
|
2210
|
-
"
|
|
2211
|
-
"message": "createImageBitmap 中的
|
|
2246
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteCreateImageBitmapImageOrientationNone": {
|
|
2247
|
+
"message": "createImageBitmap 中的 imageOrientation: 'none' 選項已淘汰。請改用 createImageBitmap 配搭「\\\\{imageOrientation: 'from-image'\\\\}」選項。"
|
|
2212
2248
|
},
|
|
2213
|
-
"
|
|
2249
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteWebRtcCipherSuite": {
|
|
2214
2250
|
"message": "您的合作夥伴正在交涉已過時的傳輸層安全標準 (TLS)/DTLS 版本。請向您的合作夥伴查詢,以便修正問題。"
|
|
2215
2251
|
},
|
|
2216
|
-
"
|
|
2217
|
-
"message": "如果指定 img、video 和 canvas
|
|
2252
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | OverflowVisibleOnReplacedElement": {
|
|
2253
|
+
"message": "如果指定 img、video 和 canvas 標籤的「overflow: visible」,可能會導致這些標籤產生的視覺內容超出元素邊界。詳情請參閱 https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md。"
|
|
2218
2254
|
},
|
|
2219
|
-
"
|
|
2220
|
-
"message": "
|
|
2255
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentInstruments": {
|
|
2256
|
+
"message": "「paymentManager.instruments」已淘汰。請改用付款處理常式的即時安裝方法。"
|
|
2221
2257
|
},
|
|
2222
|
-
"
|
|
2223
|
-
"message": "
|
|
2258
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentRequestCSPViolation": {
|
|
2259
|
+
"message": "您的「PaymentRequest」調用已繞過內容安全政策 (CSP)「connect-src」指令,但目前已無法再繞過。請將 PaymentRequest API 的付款方法識別碼 (位於「supportedMethods」欄位) 新增至 CSP「connect-src」指令。"
|
|
2224
2260
|
},
|
|
2225
|
-
"
|
|
2226
|
-
"message": "
|
|
2261
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PersistentQuotaType": {
|
|
2262
|
+
"message": "StorageType.persistent 已淘汰。請改為標準化的 navigator.storage。"
|
|
2227
2263
|
},
|
|
2228
|
-
"
|
|
2229
|
-
"message": "具有
|
|
2264
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PictureSourceSrc": {
|
|
2265
|
+
"message": "具有 <picture> 父項的 <source src> 無效,因此系統會忽略。請改用「<source srcset>」。"
|
|
2230
2266
|
},
|
|
2231
|
-
"
|
|
2267
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedCancelAnimationFrame": {
|
|
2232
2268
|
"message": "webkitCancelAnimationFrame 只限供應商使用,請改用標準的 cancelAnimationFrame。"
|
|
2233
2269
|
},
|
|
2234
|
-
"
|
|
2270
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedRequestAnimationFrame": {
|
|
2235
2271
|
"message": "webkitRequestAnimationFrame 只限供應商使用,請改用標準 requestAnimationFrame。"
|
|
2236
2272
|
},
|
|
2237
|
-
"
|
|
2273
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoDisplayingFullscreen": {
|
|
2238
2274
|
"message": "HTMLVideoElement.webkitDisplayingFullscreen 已淘汰,請改用 Document.fullscreenElement。"
|
|
2239
2275
|
},
|
|
2240
|
-
"
|
|
2276
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullScreen": {
|
|
2241
2277
|
"message": "HTMLVideoElement.webkitEnterFullScreen() 已淘汰,請改用 Element.requestFullscreen()。"
|
|
2242
2278
|
},
|
|
2243
|
-
"
|
|
2279
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullscreen": {
|
|
2244
2280
|
"message": "HTMLVideoElement.webkitEnterFullscreen() 已淘汰,請改用 Element.requestFullscreen()。"
|
|
2245
2281
|
},
|
|
2246
|
-
"
|
|
2282
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullScreen": {
|
|
2247
2283
|
"message": "HTMLVideoElement.webkitExitFullScreen() 已淘汰,請改用 Document.exitFullscreen()。"
|
|
2248
2284
|
},
|
|
2249
|
-
"
|
|
2285
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullscreen": {
|
|
2250
2286
|
"message": "HTMLVideoElement.webkitExitFullscreen() 已淘汰,請改用 Document.exitFullscreen()。"
|
|
2251
2287
|
},
|
|
2252
|
-
"
|
|
2288
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoSupportsFullscreen": {
|
|
2253
2289
|
"message": "HTMLVideoElement.webkitSupportsFullscreen 已淘汰,請改用 Document.fullscreenEnabled。"
|
|
2254
2290
|
},
|
|
2255
|
-
"
|
|
2256
|
-
"message": "我們已淘汰此 API
|
|
2291
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrivacySandboxExtensionsAPI": {
|
|
2292
|
+
"message": "我們已淘汰此 API chrome.privacy.websites.privacySandboxEnabled,但為提供回溯兼容性,此 API 可持續使用至版本 M113。請改用 chrome.privacy.websites.topicsEnabled、chrome.privacy.websites.fledgeEnabled 和 chrome.privacy.websites.adMeasurementEnabled。詳情請參閱 https://developer.chrome.com/docs/extensions/reference/privacy/#property-websites-privacySandboxEnabled。"
|
|
2257
2293
|
},
|
|
2258
|
-
"
|
|
2259
|
-
"message": "已移除
|
|
2294
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpFalse": {
|
|
2295
|
+
"message": "已移除 DtlsSrtpKeyAgreement 限制。系統將您為此限制指定的 false 值解讀為嘗試使用已移除的「SDES key negotiation」方法。此功能已移除,請改用支援「DTLS key negotiation」的方法。"
|
|
2260
2296
|
},
|
|
2261
|
-
"
|
|
2262
|
-
"message": "已移除
|
|
2297
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpTrue": {
|
|
2298
|
+
"message": "已移除 DtlsSrtpKeyAgreement 限制。您為此限制指定的 true 值已不再適用,不過您可將此限制移除以保持畫面整潔。"
|
|
2263
2299
|
},
|
|
2264
|
-
"
|
|
2300
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCPeerConnectionGetStatsLegacyNonCompliant": {
|
|
2265
2301
|
"message": "回呼式 getStats() 已淘汰,並將會移除。請改用合規的 getStats()。"
|
|
2266
2302
|
},
|
|
2267
|
-
"
|
|
2303
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RangeExpand": {
|
|
2268
2304
|
"message": "Range.expand() 已淘汰,請改用 Selection.modify()。"
|
|
2269
2305
|
},
|
|
2270
|
-
"
|
|
2271
|
-
"message": "系統將封鎖網址包含嵌入憑證 (例如
|
|
2306
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RequestedSubresourceWithEmbeddedCredentials": {
|
|
2307
|
+
"message": "系統將封鎖網址包含嵌入憑證 (例如 https://user:pass@host/) 的子資源要求。"
|
|
2272
2308
|
},
|
|
2273
|
-
"
|
|
2274
|
-
"message": "
|
|
2309
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RtcpMuxPolicyNegotiate": {
|
|
2310
|
+
"message": "rtcpMuxPolicy 選項已淘汰,並將會移除。"
|
|
2275
2311
|
},
|
|
2276
|
-
"
|
|
2277
|
-
"message": "
|
|
2312
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | SharedArrayBufferConstructedWithoutIsolation": {
|
|
2313
|
+
"message": "SharedArrayBuffer 會要求跨來源隔離。詳情請參閱 https://developer.chrome.com/blog/enabling-shared-array-buffer/。"
|
|
2278
2314
|
},
|
|
2279
|
-
"
|
|
2280
|
-
"message": "無需使用者啟用即可呼叫
|
|
2315
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | TextToSpeech_DisallowedByAutoplay": {
|
|
2316
|
+
"message": "無需使用者啟用即可呼叫 speechSynthesis.speak() 的功能已淘汰,並將會移除。"
|
|
2281
2317
|
},
|
|
2282
|
-
"
|
|
2283
|
-
"message": "
|
|
2318
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | UnloadHandler": {
|
|
2319
|
+
"message": "卸載事件監聽器已淘汰,並將於日後移除。"
|
|
2284
2320
|
},
|
|
2285
|
-
"
|
|
2286
|
-
"message": "
|
|
2321
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2322
|
+
"message": "擴充程式應選擇接受跨來源隔離功能,以繼續使用 SharedArrayBuffer。詳情請參閱 https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/。"
|
|
2287
2323
|
},
|
|
2288
|
-
"
|
|
2289
|
-
"message": "
|
|
2324
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XHRJSONEncodingDetection": {
|
|
2325
|
+
"message": "XMLHttpRequest 中的 JSON 回應不支援 UTF-16。"
|
|
2290
2326
|
},
|
|
2291
|
-
"
|
|
2292
|
-
"message": "主要執行緒上同步的
|
|
2327
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2328
|
+
"message": "主要執行緒上同步的 XMLHttpRequest 會對使用者體驗造成負面影響,因此已淘汰。如需進一步說明,請查看 https://xhr.spec.whatwg.org/。"
|
|
2293
2329
|
},
|
|
2294
|
-
"
|
|
2295
|
-
"message": "
|
|
2330
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | animation": {
|
|
2331
|
+
"message": "動畫"
|
|
2296
2332
|
},
|
|
2297
|
-
"
|
|
2298
|
-
"message": "
|
|
2333
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | description": {
|
|
2334
|
+
"message": "當元素在無使用者互動下移動,就會出現版面配置轉移。請[調查版面配置轉移的原因](https://web.dev/articles/optimize-cls),例如隨頁面載入有元素加入、移除或字型變更。"
|
|
2299
2335
|
},
|
|
2300
|
-
"
|
|
2301
|
-
"message": "
|
|
2336
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | fontRequest": {
|
|
2337
|
+
"message": "字型要求"
|
|
2302
2338
|
},
|
|
2303
|
-
"
|
|
2304
|
-
"message": "
|
|
2339
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | injectedIframe": {
|
|
2340
|
+
"message": "已插入 iframe"
|
|
2305
2341
|
},
|
|
2306
|
-
"
|
|
2307
|
-
"message": "
|
|
2342
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | layoutShiftCluster": {
|
|
2343
|
+
"message": "版面配置轉移叢集 @ {PH1}"
|
|
2308
2344
|
},
|
|
2309
|
-
"
|
|
2310
|
-
"message": "
|
|
2345
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | noCulprits": {
|
|
2346
|
+
"message": "無法偵測任何版面配置轉移起因"
|
|
2311
2347
|
},
|
|
2312
|
-
"
|
|
2313
|
-
"message": "
|
|
2348
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | noLayoutShifts": {
|
|
2349
|
+
"message": "沒有版面配置轉移"
|
|
2314
2350
|
},
|
|
2315
|
-
"
|
|
2316
|
-
"message": "
|
|
2351
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | title": {
|
|
2352
|
+
"message": "版面配置轉換起因"
|
|
2317
2353
|
},
|
|
2318
|
-
"
|
|
2319
|
-
"message": "
|
|
2354
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | topCulprits": {
|
|
2355
|
+
"message": "版面配置轉移的主要原因"
|
|
2320
2356
|
},
|
|
2321
|
-
"
|
|
2322
|
-
"message": "
|
|
2357
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | unsizedImages": {
|
|
2358
|
+
"message": "未設定大小的圖片"
|
|
2323
2359
|
},
|
|
2324
|
-
"
|
|
2325
|
-
"message": "
|
|
2360
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | worstCluster": {
|
|
2361
|
+
"message": "最差的叢集"
|
|
2326
2362
|
},
|
|
2327
|
-
"
|
|
2328
|
-
"message": "
|
|
2363
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | worstLayoutShiftCluster": {
|
|
2364
|
+
"message": "最差的版面配置轉移叢集"
|
|
2329
2365
|
},
|
|
2330
|
-
"
|
|
2331
|
-
"message": "
|
|
2366
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | description": {
|
|
2367
|
+
"message": "大型 DOM 可能會增加樣式運算和版面配置重排的時長,繼而影響頁面回應速度。大型 DOM 也會增加記憶體用量。[瞭解如何避免 DOM 過大](https://developer.chrome.com/docs/lighthouse/performance/dom-size/)。"
|
|
2332
2368
|
},
|
|
2333
|
-
"
|
|
2334
|
-
"message": "
|
|
2369
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | element": {
|
|
2370
|
+
"message": "元素"
|
|
2335
2371
|
},
|
|
2336
|
-
"
|
|
2337
|
-
"message": "
|
|
2372
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | maxChildren": {
|
|
2373
|
+
"message": "大部分子項"
|
|
2338
2374
|
},
|
|
2339
|
-
"
|
|
2340
|
-
"message": "
|
|
2375
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | maxDOMDepth": {
|
|
2376
|
+
"message": "DOM 深度"
|
|
2341
2377
|
},
|
|
2342
|
-
"
|
|
2343
|
-
"message": "
|
|
2378
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | statistic": {
|
|
2379
|
+
"message": "統計資料"
|
|
2344
2380
|
},
|
|
2345
|
-
"
|
|
2346
|
-
"message": "
|
|
2381
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | title": {
|
|
2382
|
+
"message": "優化 DOM 大小"
|
|
2347
2383
|
},
|
|
2348
|
-
"
|
|
2349
|
-
"message": "
|
|
2384
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | totalElements": {
|
|
2385
|
+
"message": "元素總計"
|
|
2350
2386
|
},
|
|
2351
|
-
"
|
|
2352
|
-
"message": "
|
|
2387
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | value": {
|
|
2388
|
+
"message": "值"
|
|
2353
2389
|
},
|
|
2354
|
-
"
|
|
2355
|
-
"message": "
|
|
2390
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | description": {
|
|
2391
|
+
"message": "首個網絡要求至關重要。避免重新導向、確保伺服器快速回應,並啟用文字壓縮功能,都有助縮短延遲時間。"
|
|
2356
2392
|
},
|
|
2357
|
-
"
|
|
2358
|
-
"message": "
|
|
2393
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedRedirects": {
|
|
2394
|
+
"message": "有重新導向"
|
|
2359
2395
|
},
|
|
2360
|
-
"
|
|
2361
|
-
"message": "
|
|
2396
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedServerResponseTime": {
|
|
2397
|
+
"message": "伺服器回應緩慢"
|
|
2362
2398
|
},
|
|
2363
|
-
"
|
|
2364
|
-
"message": "
|
|
2399
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedTextCompression": {
|
|
2400
|
+
"message": "未套用任何壓縮"
|
|
2365
2401
|
},
|
|
2366
|
-
"
|
|
2367
|
-
"message": "
|
|
2402
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingRedirects": {
|
|
2403
|
+
"message": "避免重新導向"
|
|
2368
2404
|
},
|
|
2369
|
-
"
|
|
2370
|
-
"message": "
|
|
2405
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingServerResponseTime": {
|
|
2406
|
+
"message": "伺服器回應迅速"
|
|
2371
2407
|
},
|
|
2372
|
-
"
|
|
2373
|
-
"message": "
|
|
2408
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingTextCompression": {
|
|
2409
|
+
"message": "套用文字壓縮"
|
|
2374
2410
|
},
|
|
2375
|
-
"
|
|
2411
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | redirectsLabel": {
|
|
2412
|
+
"message": "重新導向"
|
|
2413
|
+
},
|
|
2414
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | serverResponseTimeLabel": {
|
|
2415
|
+
"message": "伺服器回應時間"
|
|
2416
|
+
},
|
|
2417
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | title": {
|
|
2418
|
+
"message": "文件要求延遲時間"
|
|
2419
|
+
},
|
|
2420
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | uncompressedDownload": {
|
|
2421
|
+
"message": "未壓縮下載"
|
|
2422
|
+
},
|
|
2423
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | description": {
|
|
2424
|
+
"message": "建議將 [font-display](https://developer.chrome.com/blog/font-display) 設定為 swap 或 optional,確保文字能持續顯示。如要進一步優化 swap,你可[覆寫字型數據](https://developer.chrome.com/blog/font-fallbacks)來緩解版面配置轉換問題。"
|
|
2425
|
+
},
|
|
2426
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | fontColumn": {
|
|
2376
2427
|
"message": "字型"
|
|
2377
2428
|
},
|
|
2378
|
-
"
|
|
2379
|
-
"message": "
|
|
2429
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | title": {
|
|
2430
|
+
"message": "字型顯示"
|
|
2380
2431
|
},
|
|
2381
|
-
"
|
|
2382
|
-
"message": "
|
|
2432
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | wastedTimeColumn": {
|
|
2433
|
+
"message": "浪費的時間"
|
|
2383
2434
|
},
|
|
2384
|
-
"
|
|
2385
|
-
"message": "
|
|
2435
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | description": {
|
|
2436
|
+
"message": "很多 API (通常讀取版面配置幾何圖形) 會強制輸出引擎暫停執行指令碼,以計算樣式和版面配置。進一步瞭解[強制重排](https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing#avoid-forced-synchronous-layouts)及其緩解措施。"
|
|
2386
2437
|
},
|
|
2387
|
-
"
|
|
2388
|
-
"message": "
|
|
2438
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | relatedStackTrace": {
|
|
2439
|
+
"message": "堆疊追蹤"
|
|
2389
2440
|
},
|
|
2390
|
-
"
|
|
2391
|
-
"message": "
|
|
2441
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | title": {
|
|
2442
|
+
"message": "強制重排"
|
|
2392
2443
|
},
|
|
2393
|
-
"
|
|
2394
|
-
"message": "
|
|
2444
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | topTimeConsumingFunctionCall": {
|
|
2445
|
+
"message": "最費時的函數調用"
|
|
2395
2446
|
},
|
|
2396
|
-
"
|
|
2397
|
-
"message": "
|
|
2447
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | totalReflowTime": {
|
|
2448
|
+
"message": "重排總時間"
|
|
2398
2449
|
},
|
|
2399
|
-
"
|
|
2400
|
-
"message": "
|
|
2450
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | description": {
|
|
2451
|
+
"message": "縮短圖像下載時間,可縮減使用者感知的網頁載入時間,並提升 LCP 數據的表現。[進一步瞭解如何優化圖像大小](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)"
|
|
2401
2452
|
},
|
|
2402
|
-
"
|
|
2403
|
-
"message": "
|
|
2453
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | estimatedSavings": {
|
|
2454
|
+
"message": "{PH1} (預估大小為 {PH2})"
|
|
2404
2455
|
},
|
|
2405
|
-
"
|
|
2406
|
-
"message": "
|
|
2456
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | noOptimizableImages": {
|
|
2457
|
+
"message": "沒有可優化的圖像"
|
|
2407
2458
|
},
|
|
2408
|
-
"
|
|
2409
|
-
"message": "
|
|
2459
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | optimizeFile": {
|
|
2460
|
+
"message": "優化檔案大小"
|
|
2410
2461
|
},
|
|
2411
|
-
"
|
|
2412
|
-
"message": "
|
|
2462
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | others": {
|
|
2463
|
+
"message": "還有另外 {PH1} 個項目"
|
|
2413
2464
|
},
|
|
2414
|
-
"
|
|
2415
|
-
"message": "
|
|
2465
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | title": {
|
|
2466
|
+
"message": "改善圖像放送"
|
|
2416
2467
|
},
|
|
2417
|
-
"
|
|
2418
|
-
"message": "
|
|
2468
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useCompression": {
|
|
2469
|
+
"message": "提高圖像壓縮系數可縮減此圖像的下載大小。"
|
|
2419
2470
|
},
|
|
2420
|
-
"
|
|
2421
|
-
"message": "
|
|
2471
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useModernFormat": {
|
|
2472
|
+
"message": "使用新式圖像格式 (WebP、AVIF) 或提高圖像壓縮系數,可縮減此圖像的下載大小"
|
|
2422
2473
|
},
|
|
2423
|
-
"
|
|
2424
|
-
"message": "
|
|
2474
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useResponsiveSize": {
|
|
2475
|
+
"message": "此圖像檔案的原始尺寸 ({PH2}) 大於所需顯示尺寸 ({PH1})。請使用回應式圖像來縮減圖像下載大小。"
|
|
2425
2476
|
},
|
|
2426
|
-
"
|
|
2427
|
-
"message": "
|
|
2477
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useVideoFormat": {
|
|
2478
|
+
"message": "使用影片格式而非 GIF,可以縮減動畫內容的下載大小。"
|
|
2428
2479
|
},
|
|
2429
|
-
"
|
|
2430
|
-
"message": "
|
|
2480
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | description": {
|
|
2481
|
+
"message": "由最長的階段開始調查,[盡量縮短延遲時間](https://web.dev/articles/optimize-inp#optimize_interactions)。要減少處理時長,建議[優化主要執行緒成本](https://web.dev/articles/optimize-long-tasks) (通常為 JavaScript)。"
|
|
2431
2482
|
},
|
|
2432
|
-
"
|
|
2483
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | duration": {
|
|
2484
|
+
"message": "時間長度"
|
|
2485
|
+
},
|
|
2486
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | inputDelay": {
|
|
2487
|
+
"message": "輸入延遲"
|
|
2488
|
+
},
|
|
2489
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | noInteractions": {
|
|
2490
|
+
"message": "未能偵測到互動"
|
|
2491
|
+
},
|
|
2492
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | phase": {
|
|
2493
|
+
"message": "階段"
|
|
2494
|
+
},
|
|
2495
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | presentationDelay": {
|
|
2496
|
+
"message": "簡報顯示延遲"
|
|
2497
|
+
},
|
|
2498
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | processingDuration": {
|
|
2499
|
+
"message": "處理時間長度"
|
|
2500
|
+
},
|
|
2501
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | title": {
|
|
2502
|
+
"message": "按階段劃分 INP"
|
|
2503
|
+
},
|
|
2504
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | description": {
|
|
2505
|
+
"message": "如要提升 LCP,請讓 LCP 圖片立即[顯示](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay)在 HTML 中,[避免延遲載入](https://web.dev/articles/lcp-lazy-loading)"
|
|
2506
|
+
},
|
|
2507
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityApplied": {
|
|
2508
|
+
"message": "已套用 fetchpriority 的 high 屬性值"
|
|
2509
|
+
},
|
|
2510
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityShouldBeApplied": {
|
|
2511
|
+
"message": "應套用 fetchpriority=high"
|
|
2512
|
+
},
|
|
2513
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lazyLoadNotApplied": {
|
|
2514
|
+
"message": "未套用延遲載入"
|
|
2515
|
+
},
|
|
2516
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lcpLoadDelay": {
|
|
2517
|
+
"message": "LCP 圖片在最早的開始點 {PH1} 後載入。"
|
|
2518
|
+
},
|
|
2519
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | noLcp": {
|
|
2520
|
+
"message": "未能偵測到 LCP"
|
|
2521
|
+
},
|
|
2522
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | noLcpResource": {
|
|
2523
|
+
"message": "LCP 不是圖像,因此未偵測到 LCP 資源"
|
|
2524
|
+
},
|
|
2525
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | requestDiscoverable": {
|
|
2526
|
+
"message": "要求內容可於初始文件中查看"
|
|
2527
|
+
},
|
|
2528
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | title": {
|
|
2529
|
+
"message": "LCP 要求探索"
|
|
2530
|
+
},
|
|
2531
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | description": {
|
|
2532
|
+
"message": "每個[階段都有特定的改善策略](https://web.dev/articles/optimize-lcp#lcp-breakdown)。理想狀態下,大部分的 LCP 時間應該用於載入資源,而非延遲。"
|
|
2533
|
+
},
|
|
2534
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | duration": {
|
|
2535
|
+
"message": "時間長度"
|
|
2536
|
+
},
|
|
2537
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | elementRenderDelay": {
|
|
2538
|
+
"message": "元素輸出延遲"
|
|
2539
|
+
},
|
|
2540
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | fieldDuration": {
|
|
2541
|
+
"message": "實際資料的第 75 個百分位數"
|
|
2542
|
+
},
|
|
2543
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | noLcp": {
|
|
2544
|
+
"message": "未能偵測到 LCP"
|
|
2545
|
+
},
|
|
2546
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | phase": {
|
|
2547
|
+
"message": "階段"
|
|
2548
|
+
},
|
|
2549
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | resourceLoadDelay": {
|
|
2550
|
+
"message": "資源載入延遲"
|
|
2551
|
+
},
|
|
2552
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | resourceLoadDuration": {
|
|
2553
|
+
"message": "資源載入時長"
|
|
2554
|
+
},
|
|
2555
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | timeToFirstByte": {
|
|
2556
|
+
"message": "首個字節時間"
|
|
2557
|
+
},
|
|
2558
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | title": {
|
|
2559
|
+
"message": "按階段劃分 LCP"
|
|
2560
|
+
},
|
|
2561
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | description": {
|
|
2562
|
+
"message": "如要[避免鏈結關鍵要求](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains),你可以縮短鏈結長度、縮減下載資源的大小或延遲下載不必要資源,以提高頁面載入速度。"
|
|
2563
|
+
},
|
|
2564
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | maxCriticalPathLatency": {
|
|
2565
|
+
"message": "關鍵路徑延遲時間上限:"
|
|
2566
|
+
},
|
|
2567
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | noNetworkDependencyTree": {
|
|
2568
|
+
"message": "網絡依附組件沒有影響任何輸出工作"
|
|
2569
|
+
},
|
|
2570
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | title": {
|
|
2571
|
+
"message": "網絡依附組件樹狀結構"
|
|
2572
|
+
},
|
|
2573
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | warningDescription": {
|
|
2574
|
+
"message": "如要避免鏈結關鍵要求,你可以縮短鏈結長度、縮減下載資源的大小或延遲下載不必要資源,以提高頁面載入速度。"
|
|
2575
|
+
},
|
|
2576
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | description": {
|
|
2577
|
+
"message": "要求會封鎖頁面的初始輸出,可能會導致 LCP 延遲。[延遲或內嵌](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources/)可以將這些網絡要求移離關鍵路徑。"
|
|
2578
|
+
},
|
|
2579
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | duration": {
|
|
2580
|
+
"message": "時間長度"
|
|
2581
|
+
},
|
|
2582
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | noRenderBlocking": {
|
|
2583
|
+
"message": "此導覽沒有輸出封鎖要求"
|
|
2584
|
+
},
|
|
2585
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | renderBlockingRequest": {
|
|
2586
|
+
"message": "要求"
|
|
2587
|
+
},
|
|
2588
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | title": {
|
|
2589
|
+
"message": "輸出封鎖要求"
|
|
2590
|
+
},
|
|
2591
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | description": {
|
|
2592
|
+
"message": "如果「重新計算樣式」的成本仍然偏高,可以使用選取器優化功能降低成本。針對經過時間偏長及慢速路徑百分比偏高的[選取器作出優化](https://developer.chrome.com/docs/devtools/performance/selector-stats),例如簡化選取器和減少數量,以及縮減 DOM 大小和結構,都有助降低配對成本。"
|
|
2593
|
+
},
|
|
2594
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | elapsed": {
|
|
2595
|
+
"message": "經過時間"
|
|
2596
|
+
},
|
|
2597
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | enableSelectorData": {
|
|
2598
|
+
"message": "找不到任何 CSS 選取器資料。你需要在成效面板設定中,啟用 CSS 選取器統計資料。"
|
|
2599
|
+
},
|
|
2600
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | matchAttempts": {
|
|
2601
|
+
"message": "嘗試配對次數"
|
|
2602
|
+
},
|
|
2603
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | matchCount": {
|
|
2604
|
+
"message": "相符數量"
|
|
2605
|
+
},
|
|
2606
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | title": {
|
|
2607
|
+
"message": "CSS 選取器成本"
|
|
2608
|
+
},
|
|
2609
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | topSelectors": {
|
|
2610
|
+
"message": "最花時間/心力的選取器"
|
|
2611
|
+
},
|
|
2612
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | total": {
|
|
2433
2613
|
"message": "總計"
|
|
2434
2614
|
},
|
|
2435
|
-
"
|
|
2436
|
-
"message": "
|
|
2615
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnMainThreadTime": {
|
|
2616
|
+
"message": "主要執行緒的執行時間"
|
|
2437
2617
|
},
|
|
2438
|
-
"
|
|
2439
|
-
"message": "
|
|
2618
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnThirdParty": {
|
|
2619
|
+
"message": "第三方"
|
|
2440
2620
|
},
|
|
2441
|
-
"
|
|
2442
|
-
"message": "
|
|
2621
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnTransferSize": {
|
|
2622
|
+
"message": "傳輸大小"
|
|
2443
2623
|
},
|
|
2444
|
-
"
|
|
2445
|
-
"message": "
|
|
2624
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | description": {
|
|
2625
|
+
"message": "第三方程式碼可能會嚴重影響載入效能。建議[減少第三方程式碼和延遲載入](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/),優先載入網頁內容。"
|
|
2446
2626
|
},
|
|
2447
|
-
"
|
|
2448
|
-
"message": "
|
|
2627
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | noThirdParties": {
|
|
2628
|
+
"message": "找不到第三方內容"
|
|
2449
2629
|
},
|
|
2450
|
-
"
|
|
2451
|
-
"message": "
|
|
2630
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | title": {
|
|
2631
|
+
"message": "第三方"
|
|
2452
2632
|
},
|
|
2453
|
-
"
|
|
2454
|
-
"message": "
|
|
2633
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | description": {
|
|
2634
|
+
"message": "如果不優化流動裝置的檢視區,輕按互動可能會[延遲最多 300 毫秒](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/)。"
|
|
2455
2635
|
},
|
|
2456
|
-
"
|
|
2457
|
-
"message": "
|
|
2636
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | title": {
|
|
2637
|
+
"message": "優化流動裝置的檢視區"
|
|
2638
|
+
},
|
|
2639
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPMethodNotGET": {
|
|
2640
|
+
"message": "只有透過 GET 要求載入的網頁才符合向前/返回快取的資格。"
|
|
2641
|
+
},
|
|
2642
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPStatusNotOK": {
|
|
2643
|
+
"message": "只有狀態碼為 2XX 的網頁才可快取。"
|
|
2644
|
+
},
|
|
2645
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | JavaScriptExecution": {
|
|
2646
|
+
"message": "Chrome 偵測到嘗試在快取中執行 JavaScript。"
|
|
2647
|
+
},
|
|
2648
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | appBanner": {
|
|
2649
|
+
"message": "要求 AppBanner 的網頁目前不符合向前/返回快取的資格。"
|
|
2650
|
+
},
|
|
2651
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabled": {
|
|
2652
|
+
"message": "標記已停用向前/返回快取。如要在此裝置上啟用該功能,請前往 chrome://flags/#back-forward-cache。"
|
|
2653
|
+
},
|
|
2654
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByCommandLine": {
|
|
2655
|
+
"message": "指令列已停用向前/返回快取。"
|
|
2656
|
+
},
|
|
2657
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByLowMemory": {
|
|
2658
|
+
"message": "由於記憶體不足,因此系統已停用向前/返回快取。"
|
|
2659
|
+
},
|
|
2660
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForDelegate": {
|
|
2661
|
+
"message": "委派目標不支援向前/返回快取。"
|
|
2662
|
+
},
|
|
2663
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForPrerender": {
|
|
2664
|
+
"message": "已為預先轉譯器停用向前/返回快取。"
|
|
2665
|
+
},
|
|
2666
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | broadcastChannel": {
|
|
2667
|
+
"message": "網頁有包含已註冊監聽器的 BroadcastChannel 例項,因此系統無法快取網頁。"
|
|
2668
|
+
},
|
|
2669
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheControlNoStore": {
|
|
2670
|
+
"message": "包含 cache-control:no-store 標題的網頁無法儲存至向前/返回快取。"
|
|
2671
|
+
},
|
|
2672
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheFlushed": {
|
|
2673
|
+
"message": "有人刻意清除快取。"
|
|
2674
|
+
},
|
|
2675
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheLimit": {
|
|
2676
|
+
"message": "為了讓系統可快取其他網頁,此網頁已從快取中移除。"
|
|
2677
|
+
},
|
|
2678
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | containsPlugins": {
|
|
2679
|
+
"message": "包含外掛程式的網頁目前不符合向前/返回快取的資格。"
|
|
2680
|
+
},
|
|
2681
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentDiscarded": {
|
|
2682
|
+
"message": "未定義"
|
|
2683
|
+
},
|
|
2684
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileChooser": {
|
|
2685
|
+
"message": "使用 FileChooser API 的網頁不符合向前/返回快取的資格。"
|
|
2686
|
+
},
|
|
2687
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileSystemAccess": {
|
|
2688
|
+
"message": "使用檔案系統存取 API 的網頁不符合向前/返回快取的資格。"
|
|
2689
|
+
},
|
|
2690
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaDevicesDispatcherHost": {
|
|
2691
|
+
"message": "使用媒體裝置調度工具的網頁不符合向前/返回快取的資格。"
|
|
2692
|
+
},
|
|
2693
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaPlay": {
|
|
2694
|
+
"message": "使用者離開網頁時,媒體播放器正在播放內容。"
|
|
2695
|
+
},
|
|
2696
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSession": {
|
|
2697
|
+
"message": "使用 MediaSession API 並設定播放狀態的網頁不符合向前/返回快取的資格。"
|
|
2698
|
+
},
|
|
2699
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSessionService": {
|
|
2700
|
+
"message": "使用 MediaSession API 並設定動作處理常式的網頁不符合向前/返回快取的資格。"
|
|
2701
|
+
},
|
|
2702
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentScreenReader": {
|
|
2703
|
+
"message": "由於螢幕閱讀器的關係,系統已停用向前/返回快取。"
|
|
2704
|
+
},
|
|
2705
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSecurityHandler": {
|
|
2706
|
+
"message": "使用 SecurityHandler 的網頁不符合向前/返回快取的資格。"
|
|
2707
|
+
},
|
|
2708
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSerial": {
|
|
2709
|
+
"message": "使用序號 API 的網頁不符合向前/返回快取的資格。"
|
|
2710
|
+
},
|
|
2711
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebAuthenticationAPI": {
|
|
2712
|
+
"message": "使用 WebAuthetication API 的網頁不符合向前/返回快取的資格。"
|
|
2713
|
+
},
|
|
2714
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebBluetooth": {
|
|
2715
|
+
"message": "使用 WebBluetooth API 的網頁不符合向前/返回快取的資格。"
|
|
2716
|
+
},
|
|
2717
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebUSB": {
|
|
2718
|
+
"message": "使用 WebUSB API 的網頁不符合向前/返回快取的資格。"
|
|
2719
|
+
},
|
|
2720
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cookieDisabled": {
|
|
2721
|
+
"message": "由於使用 Cache-Control: no-store 的頁面已停用 Cookie,因此系統已停用向前/返回快取。"
|
|
2458
2722
|
},
|
|
2459
|
-
"
|
|
2460
|
-
"message": "
|
|
2723
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | dedicatedWorkerOrWorklet": {
|
|
2724
|
+
"message": "使用專屬 Worker 或 Worklet 的網頁目前不符合向前/返回快取的資格。"
|
|
2461
2725
|
},
|
|
2462
|
-
"
|
|
2463
|
-
"message": "
|
|
2726
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | documentLoaded": {
|
|
2727
|
+
"message": "文件未在使用者離開前完成載入。"
|
|
2464
2728
|
},
|
|
2465
|
-
"
|
|
2466
|
-
"message": "
|
|
2729
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderAppBannerManager": {
|
|
2730
|
+
"message": "使用者離開網頁時,系統會顯示應用程式橫額。"
|
|
2467
2731
|
},
|
|
2468
|
-
"
|
|
2469
|
-
"message": "
|
|
2732
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderChromePasswordManagerClientBindCredentialManager": {
|
|
2733
|
+
"message": "使用者離開網頁時,系統會顯示 Chrome 密碼管理工具。"
|
|
2470
2734
|
},
|
|
2471
|
-
"
|
|
2472
|
-
"message": "
|
|
2735
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerSelfDeletingRequestDelegate": {
|
|
2736
|
+
"message": "使用者離開網頁時,DOM distillation 正在處理中。"
|
|
2473
2737
|
},
|
|
2474
|
-
"
|
|
2475
|
-
"message": "
|
|
2738
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerViewerSource": {
|
|
2739
|
+
"message": "使用者離開網頁時,系統會顯示 DOM Distiller Viewer。"
|
|
2476
2740
|
},
|
|
2477
|
-
"
|
|
2478
|
-
"message": "
|
|
2741
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessaging": {
|
|
2742
|
+
"message": "由於擴充程式使用訊息 API,因此系統已停用向前/返回快取。"
|
|
2479
2743
|
},
|
|
2480
|
-
"
|
|
2481
|
-
"message": "
|
|
2744
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessagingForOpenPort": {
|
|
2745
|
+
"message": "在儲存至往向前/返回快取前,可持續連線的擴充程式應中斷連線。"
|
|
2482
2746
|
},
|
|
2483
|
-
"
|
|
2484
|
-
"message": "
|
|
2747
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionSentMessageToCachedFrame": {
|
|
2748
|
+
"message": "可持續連線的擴充程式嘗試在向前/返回快取中傳送訊息給頁框。"
|
|
2485
2749
|
},
|
|
2486
|
-
"
|
|
2487
|
-
"message": "
|
|
2750
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensions": {
|
|
2751
|
+
"message": "由於擴充程式的關係,系統已停用向前/返回快取。"
|
|
2488
2752
|
},
|
|
2489
|
-
"
|
|
2490
|
-
"message": "
|
|
2753
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderModalDialog": {
|
|
2754
|
+
"message": "使用者離開網頁時,系統會在該頁面顯示強制回應對話方塊,例如重新提交表格或 HTTP 密碼對話框。"
|
|
2491
2755
|
},
|
|
2492
|
-
"
|
|
2493
|
-
"message": "
|
|
2756
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOfflinePage": {
|
|
2757
|
+
"message": "使用者離開網頁時,系統會顯示離線頁面。"
|
|
2494
2758
|
},
|
|
2495
|
-
"
|
|
2496
|
-
"message": "
|
|
2759
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOomInterventionTabHelper": {
|
|
2760
|
+
"message": "使用者離開網頁時,系統會顯示 Out-Of-Memory Intervention。"
|
|
2497
2761
|
},
|
|
2498
|
-
"
|
|
2499
|
-
"message": "
|
|
2762
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPermissionRequestManager": {
|
|
2763
|
+
"message": "使用者離開網頁時,系統會要求權限。"
|
|
2500
2764
|
},
|
|
2501
|
-
"
|
|
2502
|
-
"message": "
|
|
2765
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPopupBlockerTabHelper": {
|
|
2766
|
+
"message": "使用者離開網頁時,系統會顯示彈出式視窗封鎖器。"
|
|
2503
2767
|
},
|
|
2504
|
-
"
|
|
2505
|
-
"message": "
|
|
2768
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingThreatDetails": {
|
|
2769
|
+
"message": "使用者離開網頁時,系統會顯示安全瀏覽詳細資料。"
|
|
2506
2770
|
},
|
|
2507
|
-
"
|
|
2508
|
-
"message": "
|
|
2771
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingTriggeredPopupBlocker": {
|
|
2772
|
+
"message": "安全瀏覽功能將此網頁視為濫用,並已封鎖彈出式視窗。"
|
|
2509
2773
|
},
|
|
2510
|
-
"
|
|
2511
|
-
"message": "
|
|
2774
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
|
|
2775
|
+
"message": "Service Worker 已在網頁儲存於向前/返回快取時啟用。"
|
|
2512
2776
|
},
|
|
2513
|
-
"
|
|
2514
|
-
"message": "
|
|
2777
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | errorDocument": {
|
|
2778
|
+
"message": "由於發生文件錯誤,因此向前/返回快取已停用。"
|
|
2515
2779
|
},
|
|
2516
|
-
"
|
|
2517
|
-
"message": "
|
|
2780
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | fencedFramesEmbedder": {
|
|
2781
|
+
"message": "使用 FencedFrames 的頁面無法儲存在向前/返回快取之中。"
|
|
2518
2782
|
},
|
|
2519
|
-
"
|
|
2520
|
-
"message": "
|
|
2783
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | foregroundCacheLimit": {
|
|
2784
|
+
"message": "為了讓系統可快取其他網頁,此網頁已從快取中移除。"
|
|
2521
2785
|
},
|
|
2522
|
-
"
|
|
2523
|
-
"message": "
|
|
2786
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | grantedMediaStreamAccess": {
|
|
2787
|
+
"message": "授予媒體串流播放權限的網頁目前不符合向前/返回快取的資格。"
|
|
2524
2788
|
},
|
|
2525
|
-
"
|
|
2526
|
-
"message": "
|
|
2789
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | haveInnerContents": {
|
|
2790
|
+
"message": "有特定嵌入內容類型 (例如 PDF) 的頁面目前不支援向前/返回快取。"
|
|
2527
2791
|
},
|
|
2528
|
-
"
|
|
2529
|
-
"message": "
|
|
2792
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | idleManager": {
|
|
2793
|
+
"message": "使用 IdleManager 的網頁目前不符合向前/返回快取的資格。"
|
|
2530
2794
|
},
|
|
2531
|
-
"
|
|
2532
|
-
"message": "
|
|
2795
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBConnection": {
|
|
2796
|
+
"message": "包含開放式 IndexedDB 連線的網頁目前不符合向前/返回快取的資格。"
|
|
2533
2797
|
},
|
|
2534
|
-
"
|
|
2535
|
-
"message": "
|
|
2798
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBEvent": {
|
|
2799
|
+
"message": "由於發生 IndexedDB 事件,因此向前/返回快取已停用。"
|
|
2536
2800
|
},
|
|
2537
|
-
"
|
|
2538
|
-
"message": "
|
|
2801
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | ineligibleAPI": {
|
|
2802
|
+
"message": "使用了不符合資格的 API。"
|
|
2539
2803
|
},
|
|
2540
|
-
"
|
|
2541
|
-
"message": "
|
|
2804
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedJavascript": {
|
|
2805
|
+
"message": "由擴充程式插入 JavaScript 的網頁目前不符合向前/返回快取的資格。"
|
|
2542
2806
|
},
|
|
2543
|
-
"
|
|
2544
|
-
"message": "
|
|
2807
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedStyleSheet": {
|
|
2808
|
+
"message": "由擴充程式插入 StyleSheet 的網頁目前不符合向前/返回快取的資格。"
|
|
2545
2809
|
},
|
|
2546
|
-
"
|
|
2547
|
-
"message": "
|
|
2810
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | internalError": {
|
|
2811
|
+
"message": "內部錯誤。"
|
|
2548
2812
|
},
|
|
2549
|
-
"
|
|
2550
|
-
"message": "
|
|
2813
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | jsNetworkRequestReceivedCacheControlNoStoreResource": {
|
|
2814
|
+
"message": "由於部分 JavaScript 網絡要求收到含有「Cache-Control: no-store」標題的資源,因此向前/返回快取已停用。"
|
|
2551
2815
|
},
|
|
2552
|
-
"
|
|
2553
|
-
"message": "
|
|
2816
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keepaliveRequest": {
|
|
2817
|
+
"message": "由於有 Keepalive 要求,因此系統已停用向前/返回快取功能。"
|
|
2554
2818
|
},
|
|
2555
|
-
"
|
|
2556
|
-
"message": "
|
|
2819
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keyboardLock": {
|
|
2820
|
+
"message": "使用鍵盤鎖定的網頁目前不符合向前/返回快取的資格。"
|
|
2557
2821
|
},
|
|
2558
|
-
"
|
|
2559
|
-
"message": "
|
|
2822
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | loading": {
|
|
2823
|
+
"message": "網頁在使用者離開前尚未完成載入。"
|
|
2560
2824
|
},
|
|
2561
|
-
"
|
|
2562
|
-
"message": "
|
|
2825
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoCache": {
|
|
2826
|
+
"message": "主要資源包含 cache-control:no-cache 的網頁無法儲存至向前/返回快取。"
|
|
2563
2827
|
},
|
|
2564
|
-
"
|
|
2565
|
-
"message": "
|
|
2828
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoStore": {
|
|
2829
|
+
"message": "主要資源包含 cache-control:no-store 的網頁無法儲存至向前/返回快取。"
|
|
2566
2830
|
},
|
|
2567
|
-
"
|
|
2568
|
-
"message": "
|
|
2831
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | navigationCancelledWhileRestoring": {
|
|
2832
|
+
"message": "瀏覽操作在網頁從向前/返回快取中還原前取消。"
|
|
2569
2833
|
},
|
|
2570
|
-
"
|
|
2571
|
-
"message": "
|
|
2834
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkExceedsBufferLimit": {
|
|
2835
|
+
"message": "由於有效的網路連線收到太多資料,因此網頁已從快取中移除。Chrome 會限制網頁可在快取時接收的資料量。"
|
|
2572
2836
|
},
|
|
2573
|
-
"
|
|
2574
|
-
"message": "
|
|
2837
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
|
|
2838
|
+
"message": "包含 in-flight fetch() 或 XHR 的網頁目前不符合向前/返回快取的資格。"
|
|
2575
2839
|
},
|
|
2576
|
-
"
|
|
2577
|
-
"message": "
|
|
2840
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestRedirected": {
|
|
2841
|
+
"message": "有效的網絡要求涉及重新導向,因此網頁已從往返快取中移除。"
|
|
2578
2842
|
},
|
|
2579
|
-
"
|
|
2580
|
-
"message": "
|
|
2843
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestTimeout": {
|
|
2844
|
+
"message": "由於網絡連線開啟時間過長,因此網頁已從快取中移除。Chrome 會限制網頁可在快取時接收資料的時間長度。"
|
|
2581
2845
|
},
|
|
2582
|
-
"
|
|
2583
|
-
"message": "
|
|
2846
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | noResponseHead": {
|
|
2847
|
+
"message": "沒有有效回應標題的網頁無法儲存至向前/返回快取。"
|
|
2584
2848
|
},
|
|
2585
|
-
"
|
|
2586
|
-
"message": "
|
|
2849
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | notMainFrame": {
|
|
2850
|
+
"message": "導覽已在主頁框以外的頁框中執行。"
|
|
2587
2851
|
},
|
|
2588
|
-
"
|
|
2589
|
-
"message": "
|
|
2852
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingIndexedDBTransaction": {
|
|
2853
|
+
"message": "網頁包含已建立索引的資料庫所執行的進行中交易,目前不符合向前/返回快取的資格。"
|
|
2590
2854
|
},
|
|
2591
|
-
"
|
|
2592
|
-
"message": "
|
|
2855
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestDirectSocket": {
|
|
2856
|
+
"message": "包含 in-flight 網絡要求的網頁目前不符合向前/返回快取的資格。"
|
|
2593
2857
|
},
|
|
2594
|
-
"
|
|
2595
|
-
"message": "
|
|
2858
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestFetch": {
|
|
2859
|
+
"message": "正在傳送擷取網絡要求的網頁目前不符合向前/返回快取的資格。"
|
|
2596
2860
|
},
|
|
2597
|
-
"
|
|
2598
|
-
"message": "
|
|
2861
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestOthers": {
|
|
2862
|
+
"message": "包含 in-flight 網絡要求的網頁目前不符合向前/返回快取的資格。"
|
|
2599
2863
|
},
|
|
2600
|
-
"
|
|
2601
|
-
"message": "
|
|
2864
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestXHR": {
|
|
2865
|
+
"message": "正在傳送 XHR 網絡要求的網頁目前不符合向前/返回快取的資格。"
|
|
2602
2866
|
},
|
|
2603
|
-
"
|
|
2604
|
-
"message": "
|
|
2867
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | paymentManager": {
|
|
2868
|
+
"message": "使用 PaymentManager 的網頁目前不符合向前/返回快取的資格。"
|
|
2605
2869
|
},
|
|
2606
|
-
"
|
|
2607
|
-
"message": "
|
|
2870
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | pictureInPicture": {
|
|
2871
|
+
"message": "使用「畫中畫」的網頁目前不符合資格提供向前/返回快取。"
|
|
2608
2872
|
},
|
|
2609
|
-
"
|
|
2610
|
-
"message": "
|
|
2873
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | printing": {
|
|
2874
|
+
"message": "顯示列印使用者介面的網頁目前不符合向前/返回快取的資格。"
|
|
2611
2875
|
},
|
|
2612
|
-
"
|
|
2613
|
-
"message": "
|
|
2876
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | relatedActiveContentsExist": {
|
|
2877
|
+
"message": "網頁已透過「window.open()」開啟且其他分頁含有該網頁的參照內容,或網頁已開啟視窗。"
|
|
2614
2878
|
},
|
|
2615
|
-
"
|
|
2616
|
-
"message": "
|
|
2879
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessCrashed": {
|
|
2880
|
+
"message": "向前/返回快取中網頁的轉譯器處理程序已當機。"
|
|
2617
2881
|
},
|
|
2618
|
-
"
|
|
2619
|
-
"message": "
|
|
2882
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessKilled": {
|
|
2883
|
+
"message": "向前/返回快取中網頁的轉譯器處理程序已中斷。"
|
|
2620
2884
|
},
|
|
2621
|
-
"
|
|
2622
|
-
"message": "
|
|
2885
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedAudioCapturePermission": {
|
|
2886
|
+
"message": "要求音訊擷取權限的網頁目前不符合向前/返回快取的資格。"
|
|
2623
2887
|
},
|
|
2624
|
-
"
|
|
2625
|
-
"message": "
|
|
2888
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackForwardCacheBlockedSensors": {
|
|
2889
|
+
"message": "已要求感應器權限的網頁目前不符合向前/返回快取的資格。"
|
|
2626
2890
|
},
|
|
2627
|
-
"
|
|
2628
|
-
"message": "
|
|
2891
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackgroundWorkPermission": {
|
|
2892
|
+
"message": "要求背景同步處理或擷取權限的網頁目前不符合向前/返回快取的資格。"
|
|
2629
2893
|
},
|
|
2630
|
-
"
|
|
2631
|
-
"message": "
|
|
2894
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedMIDIPermission": {
|
|
2895
|
+
"message": "要求 MIDI 權限的網頁目前不符合向前/返回快取的資格。"
|
|
2632
2896
|
},
|
|
2633
|
-
"
|
|
2634
|
-
"message": "
|
|
2897
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedNotificationsPermission": {
|
|
2898
|
+
"message": "要求通知權限的網頁目前不符合向前/返回快取的資格。"
|
|
2635
2899
|
},
|
|
2636
|
-
"
|
|
2637
|
-
"message": "
|
|
2900
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedStorageAccessGrant": {
|
|
2901
|
+
"message": "要求儲存空間存取權的網頁目前不符合向前/返回快取的資格。"
|
|
2638
2902
|
},
|
|
2639
|
-
"
|
|
2640
|
-
"message": "
|
|
2903
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedVideoCapturePermission": {
|
|
2904
|
+
"message": "要求影片擷取權限的網頁目前不符合向前/返回快取的資格。"
|
|
2641
2905
|
},
|
|
2642
|
-
"
|
|
2643
|
-
"message": "
|
|
2906
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | schemeNotHTTPOrHTTPS": {
|
|
2907
|
+
"message": "只能快取網址配置為 HTTP/HTTPS 的網頁。"
|
|
2644
2908
|
},
|
|
2645
|
-
"
|
|
2646
|
-
"message": "
|
|
2909
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerClaim": {
|
|
2910
|
+
"message": "在網頁處於向前/返回快取時,由 Service Worker 聲明擁有權。"
|
|
2647
2911
|
},
|
|
2648
|
-
"node_modules/@paulirish/trace_engine/
|
|
2649
|
-
"message": "
|
|
2912
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerPostMessage": {
|
|
2913
|
+
"message": "Service Worker 已嘗試向於向前/返回快取中的網頁傳送 MessageEvent。"
|
|
2650
2914
|
},
|
|
2651
|
-
"node_modules/@paulirish/trace_engine/
|
|
2652
|
-
"message": "
|
|
2915
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerUnregistration": {
|
|
2916
|
+
"message": "Service Worker 已在網頁儲存於向前/返回快取時取消註冊。"
|
|
2653
2917
|
},
|
|
2654
|
-
"node_modules/@paulirish/trace_engine/
|
|
2655
|
-
"message": "
|
|
2918
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerVersionActivation": {
|
|
2919
|
+
"message": "由於系統已啟用 Service Worker,因此網頁已從向前/返回快取中移除。"
|
|
2656
2920
|
},
|
|
2657
|
-
"node_modules/@paulirish/trace_engine/
|
|
2658
|
-
"message": "
|
|
2921
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sessionRestored": {
|
|
2922
|
+
"message": "Chrome 已重新啟動,並清除向前/返回快取項目。"
|
|
2659
2923
|
},
|
|
2660
|
-
"node_modules/@paulirish/trace_engine/
|
|
2661
|
-
"message": "
|
|
2924
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sharedWorker": {
|
|
2925
|
+
"message": "使用 SharedWorker 的網頁目前不符合向前/返回快取的資格。"
|
|
2662
2926
|
},
|
|
2663
|
-
"node_modules/@paulirish/trace_engine/
|
|
2664
|
-
"message": "
|
|
2927
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechRecognizer": {
|
|
2928
|
+
"message": "使用 SpeechRecognizer 的網頁目前不符合向前/返回快取的資格。"
|
|
2665
2929
|
},
|
|
2666
|
-
"node_modules/@paulirish/trace_engine/
|
|
2667
|
-
"message": "
|
|
2930
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechSynthesis": {
|
|
2931
|
+
"message": "使用 SpeechSynthesis 的網頁目前不符合向前/返回快取的資格。"
|
|
2668
2932
|
},
|
|
2669
|
-
"node_modules/@paulirish/trace_engine/
|
|
2670
|
-
"message": "
|
|
2933
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subframeIsNavigating": {
|
|
2934
|
+
"message": "網頁上 iframe 啟動的導覽並未完成。"
|
|
2671
2935
|
},
|
|
2672
|
-
"node_modules/@paulirish/trace_engine/
|
|
2673
|
-
"message": "
|
|
2936
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoCache": {
|
|
2937
|
+
"message": "子資源包含 cache-control:no-cache 的網頁無法儲存至向前/返回快取。"
|
|
2674
2938
|
},
|
|
2675
|
-
"node_modules/@paulirish/trace_engine/
|
|
2676
|
-
"message": "
|
|
2939
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoStore": {
|
|
2940
|
+
"message": "子資源包含 cache-control:no-store 的網頁無法儲存至向前/返回快取。"
|
|
2677
2941
|
},
|
|
2678
|
-
"node_modules/@paulirish/trace_engine/
|
|
2679
|
-
"message": "
|
|
2942
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeout": {
|
|
2943
|
+
"message": "網頁已超出向前/返回快取中的時間上限,因此已過期。"
|
|
2680
2944
|
},
|
|
2681
|
-
"node_modules/@paulirish/trace_engine/
|
|
2682
|
-
"message": "
|
|
2945
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeoutPuttingInCache": {
|
|
2946
|
+
"message": "將網頁儲存至向前/返回快取時已逾時 (可能是由於網頁隱藏事件處理常式的執行時間太長所致)。"
|
|
2683
2947
|
},
|
|
2684
|
-
"node_modules/@paulirish/trace_engine/
|
|
2685
|
-
"message": "
|
|
2948
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInMainFrame": {
|
|
2949
|
+
"message": "網頁的主頁框中有卸載處理常式。"
|
|
2686
2950
|
},
|
|
2687
|
-
"node_modules/@paulirish/trace_engine/
|
|
2688
|
-
"message": "
|
|
2951
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInSubFrame": {
|
|
2952
|
+
"message": "網頁在子頁框中含有卸載處理常式。"
|
|
2689
2953
|
},
|
|
2690
|
-
"node_modules/@paulirish/trace_engine/
|
|
2691
|
-
"message": "
|
|
2954
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | userAgentOverrideDiffers": {
|
|
2955
|
+
"message": "瀏覽器已變更用戶代理程式覆寫標題。"
|
|
2692
2956
|
},
|
|
2693
|
-
"node_modules/@paulirish/trace_engine/
|
|
2694
|
-
"message": "
|
|
2957
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | wasGrantedMediaAccess": {
|
|
2958
|
+
"message": "授權錄製影片或音效的網頁目前不符合向前/返回快取的資格。"
|
|
2695
2959
|
},
|
|
2696
|
-
"node_modules/@paulirish/trace_engine/
|
|
2697
|
-
"message": "
|
|
2960
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webDatabase": {
|
|
2961
|
+
"message": "使用 WebDatabase 的網頁目前不符合向前/返回快取的資格。"
|
|
2698
2962
|
},
|
|
2699
|
-
"node_modules/@paulirish/trace_engine/
|
|
2700
|
-
"message": "
|
|
2963
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webHID": {
|
|
2964
|
+
"message": "使用 WebHID 的網頁目前不符合向前/返回快取的資格。"
|
|
2701
2965
|
},
|
|
2702
|
-
"node_modules/@paulirish/trace_engine/
|
|
2703
|
-
"message": "
|
|
2966
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webLocks": {
|
|
2967
|
+
"message": "使用 WebLocks 的網頁目前不符合向前/返回快取的資格。"
|
|
2704
2968
|
},
|
|
2705
|
-
"node_modules/@paulirish/trace_engine/
|
|
2706
|
-
"message": "
|
|
2969
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webNfc": {
|
|
2970
|
+
"message": "使用 WebNfc 的網頁目前不符合向前/返回快取的資格。"
|
|
2707
2971
|
},
|
|
2708
|
-
"node_modules/@paulirish/trace_engine/
|
|
2709
|
-
"message": "
|
|
2972
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webOTPService": {
|
|
2973
|
+
"message": "使用 WebOTPService 的網頁目前不符合向前/返回快取的資格。"
|
|
2710
2974
|
},
|
|
2711
|
-
"node_modules/@paulirish/trace_engine/
|
|
2712
|
-
"message": "
|
|
2975
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
|
|
2976
|
+
"message": "使用 WebRTC 的網頁無法儲存至向前/返回快取。"
|
|
2713
2977
|
},
|
|
2714
|
-
"node_modules/@paulirish/trace_engine/
|
|
2715
|
-
"message": "
|
|
2978
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
|
|
2979
|
+
"message": "由於已使用 WebRTC,因此系統已停用向前/返回快取。"
|
|
2716
2980
|
},
|
|
2717
|
-
"node_modules/@paulirish/trace_engine/
|
|
2718
|
-
"message": "
|
|
2981
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
|
|
2982
|
+
"message": "使用 WebShare 的網頁目前不符合向前/返回快取的資格。"
|
|
2719
2983
|
},
|
|
2720
|
-
"node_modules/@paulirish/trace_engine/
|
|
2721
|
-
"message": "
|
|
2984
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
|
|
2985
|
+
"message": "使用 WebSocket 的網頁無法儲存至向前/返回快取。"
|
|
2722
2986
|
},
|
|
2723
|
-
"node_modules/@paulirish/trace_engine/
|
|
2724
|
-
"message": "
|
|
2987
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
|
|
2988
|
+
"message": "由於已使用 WebSocket,因此系統已停用向前/返回快取。"
|
|
2725
2989
|
},
|
|
2726
|
-
"node_modules/@paulirish/trace_engine/
|
|
2727
|
-
"message": "
|
|
2990
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
|
|
2991
|
+
"message": "使用 WebTransport 的網頁無法儲存至向前/返回快取。"
|
|
2728
2992
|
},
|
|
2729
|
-
"node_modules/@paulirish/trace_engine/
|
|
2730
|
-
"message": "
|
|
2993
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
|
|
2994
|
+
"message": "由於已使用 WebTransport,因此系統已停用向前/返回快取。"
|
|
2995
|
+
},
|
|
2996
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
|
|
2997
|
+
"message": "使用 WebXR 的網頁目前不符合向前/返回快取的資格。"
|
|
2731
2998
|
},
|
|
2732
2999
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2733
3000
|
"message": "當動畫內容在顯示螢幕之外時,您可以使用 [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) 標籤來節省 CPU 用量。"
|
|
@@ -3221,6 +3488,9 @@
|
|
|
3221
3488
|
"report/renderer/report-utils.js | dropdownDarkTheme": {
|
|
3222
3489
|
"message": "切換至深色主題背景"
|
|
3223
3490
|
},
|
|
3491
|
+
"report/renderer/report-utils.js | dropdownInsightsToggle": {
|
|
3492
|
+
"message": "切換實驗性分析資料"
|
|
3493
|
+
},
|
|
3224
3494
|
"report/renderer/report-utils.js | dropdownPrintExpanded": {
|
|
3225
3495
|
"message": "已展開列印"
|
|
3226
3496
|
},
|