lighthouse 10.3.0-dev.20230709 → 10.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/cli/test/smokehouse/frontends/smokehouse-bin.js +19 -13
  2. package/cli/test/smokehouse/lighthouse-runners/bundle.js +3 -5
  3. package/core/audits/long-tasks.d.ts +48 -0
  4. package/core/audits/long-tasks.js +146 -19
  5. package/dist/report/flow.js +1 -1
  6. package/package.json +1 -1
  7. package/shared/localization/locales/ar-XB.json +233 -2
  8. package/shared/localization/locales/ar.json +233 -2
  9. package/shared/localization/locales/bg.json +233 -2
  10. package/shared/localization/locales/ca.json +233 -2
  11. package/shared/localization/locales/cs.json +246 -15
  12. package/shared/localization/locales/da.json +239 -8
  13. package/shared/localization/locales/de.json +238 -7
  14. package/shared/localization/locales/el.json +234 -3
  15. package/shared/localization/locales/en-GB.json +233 -2
  16. package/shared/localization/locales/en-XA.json +233 -2
  17. package/shared/localization/locales/es-419.json +233 -2
  18. package/shared/localization/locales/es.json +233 -2
  19. package/shared/localization/locales/fi.json +233 -2
  20. package/shared/localization/locales/fil.json +236 -5
  21. package/shared/localization/locales/fr.json +235 -4
  22. package/shared/localization/locales/he.json +233 -2
  23. package/shared/localization/locales/hi.json +236 -5
  24. package/shared/localization/locales/hr.json +234 -3
  25. package/shared/localization/locales/hu.json +233 -2
  26. package/shared/localization/locales/id.json +233 -2
  27. package/shared/localization/locales/it.json +234 -3
  28. package/shared/localization/locales/ja.json +233 -2
  29. package/shared/localization/locales/ko.json +233 -2
  30. package/shared/localization/locales/lt.json +233 -2
  31. package/shared/localization/locales/lv.json +250 -19
  32. package/shared/localization/locales/nl.json +233 -2
  33. package/shared/localization/locales/no.json +235 -4
  34. package/shared/localization/locales/pl.json +233 -2
  35. package/shared/localization/locales/pt-PT.json +233 -2
  36. package/shared/localization/locales/pt.json +234 -3
  37. package/shared/localization/locales/ro.json +233 -2
  38. package/shared/localization/locales/ru.json +233 -2
  39. package/shared/localization/locales/sk.json +233 -2
  40. package/shared/localization/locales/sl.json +233 -2
  41. package/shared/localization/locales/sr-Latn.json +233 -2
  42. package/shared/localization/locales/sr.json +233 -2
  43. package/shared/localization/locales/sv.json +233 -2
  44. package/shared/localization/locales/ta.json +233 -2
  45. package/shared/localization/locales/te.json +233 -2
  46. package/shared/localization/locales/th.json +233 -2
  47. package/shared/localization/locales/tr.json +233 -2
  48. package/shared/localization/locales/uk.json +233 -2
  49. package/shared/localization/locales/vi.json +233 -2
  50. package/shared/localization/locales/zh-HK.json +233 -2
  51. package/shared/localization/locales/zh-TW.json +235 -4
  52. package/shared/localization/locales/zh.json +239 -8
@@ -272,6 +272,15 @@
272
272
  "core/audits/accessibility/html-lang-valid.js | title": {
273
273
  "message": "`<html>` 元素的 `[lang]` 屬性具備有效的值"
274
274
  },
275
+ "core/audits/accessibility/html-xml-lang-mismatch.js | description": {
276
+ "message": "如果網頁指定的語言不一致,螢幕閱讀器可能無法正確朗讀頁面上的文字。[進一步瞭解 `lang` 屬性](https://dequeuniversity.com/rules/axe/4.7/html-xml-lang-mismatch)。"
277
+ },
278
+ "core/audits/accessibility/html-xml-lang-mismatch.js | failureTitle": {
279
+ "message": "`<html>` 元素的 `[xml:lang]` 屬性與`[lang]` 屬性中的基本語言不同。"
280
+ },
281
+ "core/audits/accessibility/html-xml-lang-mismatch.js | title": {
282
+ "message": "`<html>` 元素的 `[xml:lang]` 屬性與 `[lang]` 屬性的基本語言相同。"
283
+ },
275
284
  "core/audits/accessibility/image-alt.js | description": {
276
285
  "message": "說明元素應提供簡短貼切的替代文字。如果是裝飾元素,只要將 alt 屬性留空,系統即會忽略該元素。[進一步瞭解 `alt` 屬性](https://dequeuniversity.com/rules/axe/4.7/image-alt)。"
277
286
  },
@@ -281,6 +290,15 @@
281
290
  "core/audits/accessibility/image-alt.js | title": {
282
291
  "message": "圖片元素具有 `[alt]` 屬性"
283
292
  },
293
+ "core/audits/accessibility/input-button-name.js | description": {
294
+ "message": "你可以為輸入按鈕加上容易識讀的說明文字,協助螢幕閱讀器使用者瞭解輸入按鈕的用途。[進一步瞭解輸入按鈕](https://dequeuniversity.com/rules/axe/4.7/input-button-name)。"
295
+ },
296
+ "core/audits/accessibility/input-button-name.js | failureTitle": {
297
+ "message": "輸入按鈕的文字不易辨識。"
298
+ },
299
+ "core/audits/accessibility/input-button-name.js | title": {
300
+ "message": "輸入按鈕的文字容易辨識。"
301
+ },
284
302
  "core/audits/accessibility/input-image-alt.js | description": {
285
303
  "message": "如果 `<input>` 按鈕是以圖片呈現,提供替代文字可協助螢幕閱讀器使用者瞭解該按鈕的用途。[瞭解輸入圖片替代文字](https://dequeuniversity.com/rules/axe/4.7/input-image-alt)。"
286
304
  },
@@ -362,6 +380,24 @@
362
380
  "core/audits/accessibility/tabindex.js | title": {
363
381
  "message": "所有元素的 `[tabindex]` 值皆未超過 0"
364
382
  },
383
+ "core/audits/accessibility/table-fake-caption.js | description": {
384
+ "message": "使用者可運用螢幕閱讀器的功能輕鬆瀏覽表格。如果表格使用實際的標題元素,而非含有 `[colspan]` 屬性的儲存格,或許可以提升螢幕閱讀器的使用體驗。[進一步瞭解標題](https://dequeuniversity.com/rules/axe/4.7/table-fake-caption)。"
385
+ },
386
+ "core/audits/accessibility/table-fake-caption.js | failureTitle": {
387
+ "message": "表格使用含有 `[colspan]` 屬性的儲存格表示標題,而非使用 `<caption>` 屬性。"
388
+ },
389
+ "core/audits/accessibility/table-fake-caption.js | title": {
390
+ "message": "表格使用 `<caption>` 屬性表示標題,而非使用含有 `[colspan]` 屬性的儲存格。"
391
+ },
392
+ "core/audits/accessibility/td-has-header.js | description": {
393
+ "message": "使用者可運用螢幕閱讀器的功能輕鬆瀏覽表格。如果大型表格 (寬度和高度為 3 個以上儲存格) 中的 `<td>` 元素使用相關聯的表格標頭,或許可以提升螢幕閱讀器的使用體驗。[進一步瞭解表格標頭](https://dequeuniversity.com/rules/axe/4.7/td-has-header)。"
394
+ },
395
+ "core/audits/accessibility/td-has-header.js | failureTitle": {
396
+ "message": "大型 `<table>` 中的 `<td>` 元素沒有表格標頭。"
397
+ },
398
+ "core/audits/accessibility/td-has-header.js | title": {
399
+ "message": "大型 `<table>` 中的 `<td>` 元素有一或多個表格標頭。"
400
+ },
365
401
  "core/audits/accessibility/td-headers-attr.js | description": {
366
402
  "message": "螢幕閱讀器的功能可讓使用者輕鬆瀏覽表格。請確保使用 `[headers]` 屬性的 `<td>` 儲存格只參照同一表格中的其他儲存格,這樣可改善螢幕閱讀器的使用體驗。[進一步瞭解 `headers` 屬性](https://dequeuniversity.com/rules/axe/4.7/td-headers-attr)。"
367
403
  },
@@ -1751,6 +1787,9 @@
1751
1787
  "core/lib/bf-cache-strings.js | appBanner": {
1752
1788
  "message": "已要求 AppBanner 的網頁目前不適用往返快取。"
1753
1789
  },
1790
+ "core/lib/bf-cache-strings.js | authorizationHeader": {
1791
+ "message": "系統收到保持運作的要求,因此停用往返快取。"
1792
+ },
1754
1793
  "core/lib/bf-cache-strings.js | backForwardCacheDisabled": {
1755
1794
  "message": "往返快取已因旗標設定而停用。如要在這部裝置本機上啟用該功能,請前往 chrome://flags/#back-forward-cache。"
1756
1795
  },
@@ -1817,6 +1856,9 @@
1817
1856
  "core/lib/bf-cache-strings.js | contentWebUSB": {
1818
1857
  "message": "使用 WebUSB API 的網頁不適用往返快取。"
1819
1858
  },
1859
+ "core/lib/bf-cache-strings.js | cookieDisabled": {
1860
+ "message": "使用 `Cache-Control: no-store` 的頁面停用 Cookie,因此系統停用往返快取。"
1861
+ },
1820
1862
  "core/lib/bf-cache-strings.js | dedicatedWorkerOrWorklet": {
1821
1863
  "message": "使用專屬 Worker 或 Worklet 的網頁目前不適用往返快取。"
1822
1864
  },
@@ -1892,20 +1934,23 @@
1892
1934
  "core/lib/bf-cache-strings.js | indexedDBConnection": {
1893
1935
  "message": "含有開放式 IndexedDB 連線的網頁目前不適用往返快取。"
1894
1936
  },
1937
+ "core/lib/bf-cache-strings.js | indexedDBEvent": {
1938
+ "message": "發生 IndexedDB 事件,因此往返快取已停用。"
1939
+ },
1895
1940
  "core/lib/bf-cache-strings.js | ineligibleAPI": {
1896
1941
  "message": "使用了不支援的 API。"
1897
1942
  },
1898
1943
  "core/lib/bf-cache-strings.js | injectedJavascript": {
1899
- "message": "由擴充功能插入 JavaScript 的網頁目前不適用往返快取。"
1944
+ "message": "由擴充功能插入 `JavaScript` 的網頁目前不適用往返快取。"
1900
1945
  },
1901
1946
  "core/lib/bf-cache-strings.js | injectedStyleSheet": {
1902
- "message": "由擴充功能插入 StyleSheet 的網頁目前不適用往返快取。"
1947
+ "message": "由擴充功能插入 `StyleSheet` 的網頁目前不適用往返快取。"
1903
1948
  },
1904
1949
  "core/lib/bf-cache-strings.js | internalError": {
1905
1950
  "message": "內部錯誤。"
1906
1951
  },
1907
1952
  "core/lib/bf-cache-strings.js | keepaliveRequest": {
1908
- "message": "由於系統收到保持運作要求,因此往返快取已停用。"
1953
+ "message": "系統收到保持運作的要求,因此停用往返快取。"
1909
1954
  },
1910
1955
  "core/lib/bf-cache-strings.js | keyboardLock": {
1911
1956
  "message": "使用鍵盤鎖定功能的網頁目前不適用往返快取。"
@@ -2138,6 +2183,192 @@
2138
2183
  "core/lib/csp-evaluator.js | unsafeInlineFallback": {
2139
2184
  "message": "建議新增「unsafe-inline」,以便回溯相容於舊版瀏覽器 (支援 nonce/hash 的瀏覽器會忽略 unsafe-inline)。"
2140
2185
  },
2186
+ "core/lib/deprecation-description.js | feature": {
2187
+ "message": "查看「功能狀態」頁面瞭解詳情。"
2188
+ },
2189
+ "core/lib/deprecation-description.js | milestone": {
2190
+ "message": "這項變更將於主要版本 {milestone} 生效。"
2191
+ },
2192
+ "core/lib/deprecation-description.js | title": {
2193
+ "message": "使用已淘汰的功能"
2194
+ },
2195
+ "core/lib/deprecations-strings.js | AuthorizationCoveredByWildcard": {
2196
+ "message": "CORS `Access-Control-Allow-Headers` 處理作業中無法使用萬用字元符號 (*) 標示授權。"
2197
+ },
2198
+ "core/lib/deprecations-strings.js | CSSSelectorInternalMediaControlsOverlayCastButton": {
2199
+ "message": "應使用 `disableRemotePlayback` 屬性 (而非 `-internal-media-controls-overlay-cast-button` 選取器) 停用預設的 Cast 整合功能。"
2200
+ },
2201
+ "core/lib/deprecations-strings.js | CanRequestURLHTTPContainingNewline": {
2202
+ "message": "如果資源要求網址中同時包含已移除的 `(n|r|t)` 空白字元和小於字元 (`<`),系統會予以封鎖。請從元素屬性值等位置移除換行符號,並編碼小於字元,以便載入這些資源。"
2203
+ },
2204
+ "core/lib/deprecations-strings.js | ChromeLoadTimesConnectionInfo": {
2205
+ "message": "`chrome.loadTimes()` 已淘汰,請改用標準化 API:Navigation Timing 2。"
2206
+ },
2207
+ "core/lib/deprecations-strings.js | ChromeLoadTimesFirstPaintAfterLoadTime": {
2208
+ "message": "`chrome.loadTimes()` 已遭淘汰,請改用標準化 API:Paint Timing。"
2209
+ },
2210
+ "core/lib/deprecations-strings.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
2211
+ "message": "`chrome.loadTimes()` 已淘汰,請改用標準化 API:Navigation Timing 2 中的 `nextHopProtocol`。"
2212
+ },
2213
+ "core/lib/deprecations-strings.js | CookieWithTruncatingChar": {
2214
+ "message": "系統會拒絕包含 `(0|r|n)` 字元的 Cookie,而非截斷。"
2215
+ },
2216
+ "core/lib/deprecations-strings.js | CrossOriginAccessBasedOnDocumentDomain": {
2217
+ "message": "透過設定 `document.domain` 放寬相同來源政策的功能已淘汰,將於日後予以移除。如果是透過設定 `document.domain` 啟用跨來源存取功能,系統就會顯示這則淘汰警告訊息。"
2218
+ },
2219
+ "core/lib/deprecations-strings.js | CrossOriginWindowAlert": {
2220
+ "message": "從跨來源 iframe 觸發 window.alert 的功能已淘汰,並將於日後移除。"
2221
+ },
2222
+ "core/lib/deprecations-strings.js | CrossOriginWindowConfirm": {
2223
+ "message": "從跨來源 iframe 觸發 window.confirm 的功能已淘汰,並將在之後移除。"
2224
+ },
2225
+ "core/lib/deprecations-strings.js | DOMMutationEvents": {
2226
+ "message": "DOM 變更事件 (包括 `DOMSubtreeModified`、`DOMNodeInserted`、`DOMNodeRemoved`、`DOMNodeRemovedFromDocument`、`DOMNodeInsertedIntoDocument` 和 `DOMCharacterDataModified`) 已淘汰 (https://w3c.github.io/uievents/#legacy-event-types),並將於日後移除。請改用 `MutationObserver`。"
2227
+ },
2228
+ "core/lib/deprecations-strings.js | DataUrlInSvgUse": {
2229
+ "message": "SVG <use> 元素不再支援「data: 網址」,並將於日後移除。"
2230
+ },
2231
+ "core/lib/deprecations-strings.js | DocumentDomainSettingWithoutOriginAgentClusterHeader": {
2232
+ "message": "透過設定 `document.domain` 放寬相同來源政策的功能已淘汰,將於日後予以移除。如要繼續使用這項功能,請傳送文件和頁框的 `Origin-Agent-Cluster: ?0` 標頭和 HTTP 回應,藉此選擇不採用 origin-keyed 代理程式叢集。詳情請參閱 https://developer.chrome.com/blog/immutable-document-domain/。"
2233
+ },
2234
+ "core/lib/deprecations-strings.js | ExpectCTHeader": {
2235
+ "message": "`Expect-CT` 標頭已遭淘汰,日後將予以移除。Chrome 要求 2018 年 4 月 30 日後核發的所有公開信任憑證都必須符合憑證透明化政策的規範。"
2236
+ },
2237
+ "core/lib/deprecations-strings.js | GeolocationInsecureOrigin": {
2238
+ "message": "`getCurrentPosition()` 和 `watchPosition()` 不再適用於不安全的來源。如要使用這個功能,請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
2239
+ },
2240
+ "core/lib/deprecations-strings.js | GeolocationInsecureOriginDeprecatedNotRemoved": {
2241
+ "message": "不安全來源上的 `getCurrentPosition()` 和 `watchPosition()` 已遭淘汰。如要使用這個功能,請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
2242
+ },
2243
+ "core/lib/deprecations-strings.js | GetUserMediaInsecureOrigin": {
2244
+ "message": "`getUserMedia()` 不再適用於不安全的來源。如要使用這個功能,請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
2245
+ },
2246
+ "core/lib/deprecations-strings.js | HostCandidateAttributeGetter": {
2247
+ "message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` 已淘汰。請改用 `RTCPeerConnectionIceErrorEvent.address` 或 `RTCPeerConnectionIceErrorEvent.port`。"
2248
+ },
2249
+ "core/lib/deprecations-strings.js | IdentityInCanMakePaymentEvent": {
2250
+ "message": "「`canmakepayment`」Service Worker 事件的商家來源和任意資料目前已淘汰,並將在之後移除:`topOrigin`、`paymentRequestOrigin`、`methodData`、`modifiers`。"
2251
+ },
2252
+ "core/lib/deprecations-strings.js | InsecurePrivateNetworkSubresourceRequest": {
2253
+ "message": "由於網站的使用者具有權限可存取網路位置,因此網站透過只能存取的網路要求一個子資源。這些要求會讓非公開裝置和伺服器暴露在網際網路上,導致遭到跨網站要求偽造 (CSRF) 攻擊和/或資訊外洩的風險增加。為降低風險,Chrome 會忽略不安全內容向非公開子資源發出的要求,並將開始封鎖這類要求。"
2254
+ },
2255
+ "core/lib/deprecations-strings.js | InterestGroupDailyUpdateUrl": {
2256
+ "message": "傳遞到 `joinAdInterestGroup()` 的 `InterestGroups` `dailyUpdateUrl` 欄位已重新命名為 `updateUrl`,這樣可以更準確地反映其行為。"
2257
+ },
2258
+ "core/lib/deprecations-strings.js | LocalCSSFileExtensionRejected": {
2259
+ "message": "除非 CSS 以 `.css` 的副檔名結尾,否則無法從 `file:` 網址載入。"
2260
+ },
2261
+ "core/lib/deprecations-strings.js | MediaSourceAbortRemove": {
2262
+ "message": "由於規格變更,系統已淘汰使用 `SourceBuffer.abort()` 取消 `remove()` 的非同步範圍移除作業,日後也將停止支援這項功能。建議你改為監聽 `updateend` 事件。`abort()` 的用途僅限於取消非同步媒體附加內容或重設剖析器狀態。"
2263
+ },
2264
+ "core/lib/deprecations-strings.js | MediaSourceDurationTruncatingBuffered": {
2265
+ "message": "由於規格變更,系統已淘汰將 `MediaSource.duration` 設為低於任何緩衝編碼頁框的最高顯示時間戳記。日後將停止支援對已截斷緩衝媒體的隱性移除作業。請改為在 `newDuration < oldDuration` 的所有 `sourceBuffers` 上執行明確 `remove(newDuration, oldDuration)`。"
2266
+ },
2267
+ "core/lib/deprecations-strings.js | NoSysexWebMIDIWithoutPermission": {
2268
+ "message": "即使在 `MIDIOptions` 中未指定系統專用 (SysEx) 訊息,Web MIDI 也會要求使用權限。"
2269
+ },
2270
+ "core/lib/deprecations-strings.js | NonStandardDeclarativeShadowDOM": {
2271
+ "message": "未標準化的舊款 `shadowroot` 屬性已淘汰,自 M119 起將*無法再使用*。請改用標準化的新 `shadowrootmode` 屬性。"
2272
+ },
2273
+ "core/lib/deprecations-strings.js | NotificationInsecureOrigin": {
2274
+ "message": "系統不再允許透過不安全的來源使用 Notification API。請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
2275
+ },
2276
+ "core/lib/deprecations-strings.js | NotificationPermissionRequestedIframe": {
2277
+ "message": "系統已不再允許透過跨來源 iframe 要求 Notification API 的權限。請考慮透過頂層頁框要求權限,或改為開啟新視窗。"
2278
+ },
2279
+ "core/lib/deprecations-strings.js | ObsoleteCreateImageBitmapImageOrientationNone": {
2280
+ "message": "createImageBitmap 中的 `imageOrientation: 'none'` 選項已淘汰,使用 createImageBitmap 時請改用 \\{imageOrientation: 'from-image'\\} 選項。"
2281
+ },
2282
+ "core/lib/deprecations-strings.js | ObsoleteWebRtcCipherSuite": {
2283
+ "message": "你的合作夥伴正在交涉已過時的 TLS/DTLS 版本。請洽詢你的合作夥伴,請對方解決這個問題。"
2284
+ },
2285
+ "core/lib/deprecations-strings.js | OverflowVisibleOnReplacedElement": {
2286
+ "message": "如果指定 img、video 和 canvas 標記的「`overflow: visible`」,可能會導致這些標記產生的視覺內容超出元素邊界。詳情請參閱 https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md。"
2287
+ },
2288
+ "core/lib/deprecations-strings.js | PaymentInstruments": {
2289
+ "message": "`paymentManager.instruments` 已淘汰,請改用付款處理常式的即時安裝方法。"
2290
+ },
2291
+ "core/lib/deprecations-strings.js | PaymentRequestCSPViolation": {
2292
+ "message": "你的「`PaymentRequest`」呼叫略過了內容安全政策 (CSP)「`connect-src`」指令,但目前已無法再略過。請將 `PaymentRequest` API 的付款方式 ID (位於「`supportedMethods`」欄位) 新增到 CSP「`connect-src`」指令。"
2293
+ },
2294
+ "core/lib/deprecations-strings.js | PersistentQuotaType": {
2295
+ "message": "`StorageType.persistent` 已淘汰,請改用標準化的 `navigator.storage`。"
2296
+ },
2297
+ "core/lib/deprecations-strings.js | PictureSourceSrc": {
2298
+ "message": "具有 `<picture>` 父項的 `<source src>` 無效,因此予以忽略。請改用 `<source srcset>`。"
2299
+ },
2300
+ "core/lib/deprecations-strings.js | PrefixedCancelAnimationFrame": {
2301
+ "message": "webkitCancelAnimationFrame 僅限供應商使用,請改用標準 cancelAnimationFrame。"
2302
+ },
2303
+ "core/lib/deprecations-strings.js | PrefixedRequestAnimationFrame": {
2304
+ "message": "webkitRequestAnimationFrame 僅限供應商使用,請改用標準 requestAnimationFrame。"
2305
+ },
2306
+ "core/lib/deprecations-strings.js | PrefixedVideoDisplayingFullscreen": {
2307
+ "message": "HTMLVideoElement.webkitDisplayingFullscreen 已淘汰,請改用 Document.fullscreenElement。"
2308
+ },
2309
+ "core/lib/deprecations-strings.js | PrefixedVideoEnterFullScreen": {
2310
+ "message": "HTMLVideoElement.webkitEnterFullScreen() 已淘汰,請改用 Element.requestFullscreen()。"
2311
+ },
2312
+ "core/lib/deprecations-strings.js | PrefixedVideoEnterFullscreen": {
2313
+ "message": "HTMLVideoElement.webkitEnterFullscreen() 已淘汰,請改用 Element.requestFullscreen()。"
2314
+ },
2315
+ "core/lib/deprecations-strings.js | PrefixedVideoExitFullScreen": {
2316
+ "message": "HTMLVideoElement.webkitExitFullScreen() 已淘汰,請改用 Document.exitFullscreen()。"
2317
+ },
2318
+ "core/lib/deprecations-strings.js | PrefixedVideoExitFullscreen": {
2319
+ "message": "HTMLVideoElement.webkitExitFullscreen() 已淘汰,請改用 Document.exitFullscreen()。"
2320
+ },
2321
+ "core/lib/deprecations-strings.js | PrefixedVideoSupportsFullscreen": {
2322
+ "message": "HTMLVideoElement.webkitSupportsFullscreen 已淘汰,請改用 Document.fullscreenEnabled。"
2323
+ },
2324
+ "core/lib/deprecations-strings.js | PrivacySandboxExtensionsAPI": {
2325
+ "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。"
2326
+ },
2327
+ "core/lib/deprecations-strings.js | RTCConstraintEnableDtlsSrtpFalse": {
2328
+ "message": "已移除 `DtlsSrtpKeyAgreement` 限制條件。系統將你為這項限制指定的 `false` 值解讀為嘗試使用已移除的「`SDES key negotiation`」方法。這項功能已移除,請改用支援「`DTLS key negotiation`」的服務。"
2329
+ },
2330
+ "core/lib/deprecations-strings.js | RTCConstraintEnableDtlsSrtpTrue": {
2331
+ "message": "已移除 `DtlsSrtpKeyAgreement` 限制條件。你為這項限制指定的 `true` 值已不再適用,可以將這項限制移除以保持畫面整潔。"
2332
+ },
2333
+ "core/lib/deprecations-strings.js | RTCPeerConnectionGetStatsLegacyNonCompliant": {
2334
+ "message": "回呼式 getStats() 已淘汰,並將在之後移除。請改用符合規格要求的 getStats()。"
2335
+ },
2336
+ "core/lib/deprecations-strings.js | RangeExpand": {
2337
+ "message": "Range.expand() 已淘汰,請改用 Selection.modify()。"
2338
+ },
2339
+ "core/lib/deprecations-strings.js | RequestedSubresourceWithEmbeddedCredentials": {
2340
+ "message": "如果子資源要求的網址包含內嵌憑證 (例如 `https://user:pass@host/`),系統會予以封鎖。"
2341
+ },
2342
+ "core/lib/deprecations-strings.js | RtcpMuxPolicyNegotiate": {
2343
+ "message": "`rtcpMuxPolicy` 選項已遭淘汰,日後將予以移除。"
2344
+ },
2345
+ "core/lib/deprecations-strings.js | SharedArrayBufferConstructedWithoutIsolation": {
2346
+ "message": "`SharedArrayBuffer` 會要求跨來源隔離。詳情請參閱 https://developer.chrome.com/blog/enabling-shared-array-buffer/。"
2347
+ },
2348
+ "core/lib/deprecations-strings.js | TextToSpeech_DisallowedByAutoplay": {
2349
+ "message": "無須使用者啟用即可呼叫 `speechSynthesis.speak()` 的功能已遭淘汰,日後將予以移除。"
2350
+ },
2351
+ "core/lib/deprecations-strings.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
2352
+ "message": "擴充功能應選擇啟用跨來源隔離功能,以便繼續使用 `SharedArrayBuffer`。詳情請參閱 https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/。"
2353
+ },
2354
+ "core/lib/deprecations-strings.js | WebSQL": {
2355
+ "message": "網路 SQL 已淘汰,請使用 SQLite WebAssembly 或已建立索引的資料庫"
2356
+ },
2357
+ "core/lib/deprecations-strings.js | WindowPlacementPermissionDescriptorUsed": {
2358
+ "message": "權限描述元 `window-placement` 已淘汰,請改用 `window-management`。詳情請參閱 https://bit.ly/window-placement-rename。"
2359
+ },
2360
+ "core/lib/deprecations-strings.js | WindowPlacementPermissionPolicyParsed": {
2361
+ "message": "權限政策 `window-placement` 已淘汰,請改用 `window-management`。詳情請參閱 https://bit.ly/window-placement-rename。"
2362
+ },
2363
+ "core/lib/deprecations-strings.js | XHRJSONEncodingDetection": {
2364
+ "message": "`XMLHttpRequest` 中的 JSON 回應不支援 UTF-16"
2365
+ },
2366
+ "core/lib/deprecations-strings.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
2367
+ "message": "主要執行緒上的同步 `XMLHttpRequest` 對使用者體驗有負面影響,因此已淘汰。如需更多說明,請前往 https://xhr.spec.whatwg.org/。"
2368
+ },
2369
+ "core/lib/deprecations-strings.js | XRSupportsSession": {
2370
+ "message": "`supportsSession()` 已淘汰。請改用 `isSessionSupported()` 並查看解析的布林值。"
2371
+ },
2141
2372
  "core/lib/i18n/i18n.js | columnBlockingTime": {
2142
2373
  "message": "主要執行緒封鎖時間"
2143
2374
  },
@@ -2769,7 +3000,7 @@
2769
3000
  "message": "請使用 `nuxt/image` 元件並設定適當的 `sizes`。[瞭解詳情](https://image.nuxtjs.org/components/nuxt-img#sizes)。"
2770
3001
  },
2771
3002
  "node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
2772
- "message": "[用影片取代 GIF 動畫](https://web.dev/replace-gifs-with-videos/)以加快載入網頁,並考慮使用 [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) 或 [AV1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder) 等新型檔案格式,這樣可讓目前最先進的影片轉碼器 VP9 的壓縮效率再提高超過 30%。"
3003
+ "message": "[用影片取代 GIF 動畫](https://web.dev/replace-gifs-with-videos/)以加快載入網頁,並考慮使用 [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) 或 [AV1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder) 等新型檔案格式,這樣可讓目前最先進的視訊轉碼器 VP9 的壓縮效率再提高超過 30%。"
2773
3004
  },
2774
3005
  "node_modules/lighthouse-stack-packs/packs/octobercms.js | modern-image-formats": {
2775
3006
  "message": "建議你使用可自動將上傳圖片轉換成最佳格式的[外掛程式](https://octobercms.com/plugins?search=image)或服務。[WebP 無失真圖片](https://developers.google.com/speed/webp)的大小比 PNG 小 26%,與 SSIM 畫質指數相等的類似 JPEG 圖片相比,則小 25-34%。另一種可考慮使用的新一代圖片格式為 [AVIF](https://jakearchibald.com/2020/avif-has-landed/)。"