lighthouse 10.2.0 → 10.3.0-dev.20230614
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/cli/test/smokehouse/__snapshots__/report-assert-test.js.snap +4 -6
- package/core/audits/accessibility/html-xml-lang-mismatch.d.ts +10 -0
- package/core/audits/accessibility/html-xml-lang-mismatch.js +47 -0
- package/core/audits/accessibility/input-button-name.d.ts +10 -0
- package/core/audits/accessibility/input-button-name.js +44 -0
- package/core/audits/accessibility/table-fake-caption.d.ts +10 -0
- package/core/audits/accessibility/table-fake-caption.js +47 -0
- package/core/audits/accessibility/td-has-header.d.ts +10 -0
- package/core/audits/accessibility/td-has-header.js +45 -0
- package/core/audits/audit.d.ts +2 -1
- package/core/audits/audit.js +5 -2
- package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +3 -3
- package/core/audits/byte-efficiency/byte-efficiency-audit.js +14 -19
- package/core/audits/deprecations.js +1 -1
- package/core/audits/largest-contentful-paint-element.d.ts +14 -2
- package/core/audits/largest-contentful-paint-element.js +49 -31
- package/core/audits/layout-shift-elements.d.ts +3 -2
- package/core/audits/layout-shift-elements.js +10 -2
- package/core/audits/metrics.js +0 -2
- package/core/audits/network-requests.js +6 -0
- package/core/audits/seo/crawlable-anchors.js +4 -0
- package/core/audits/server-response-time.d.ts +2 -1
- package/core/audits/server-response-time.js +17 -3
- package/core/audits/uses-rel-preconnect.js +20 -4
- package/core/computed/entity-classification.d.ts +14 -1
- package/core/computed/entity-classification.js +61 -6
- package/core/computed/metrics/cumulative-layout-shift.d.ts +2 -9
- package/core/computed/metrics/cumulative-layout-shift.js +3 -16
- package/core/computed/metrics/time-to-first-byte.js +10 -7
- package/core/computed/metrics/timing-summary.js +0 -3
- package/core/config/default-config.js +8 -0
- package/core/gather/driver/execution-context.js +13 -5
- package/core/gather/driver/target-manager.d.ts +13 -0
- package/core/gather/driver/target-manager.js +49 -0
- package/core/gather/gatherers/accessibility.js +19 -20
- package/core/gather/gatherers/anchor-elements.js +2 -0
- package/core/gather/gatherers/global-listeners.js +38 -21
- package/core/gather/gatherers/inspector-issues.js +2 -1
- package/core/gather/gatherers/trace-elements.d.ts +3 -2
- package/core/gather/gatherers/trace-elements.js +10 -19
- package/core/legacy/config/config.d.ts +1 -1
- package/core/legacy/config/config.js +1 -1
- package/core/legacy/gather/driver.d.ts +1 -0
- package/core/legacy/gather/driver.js +11 -0
- package/core/lib/asset-saver.d.ts +4 -0
- package/core/lib/asset-saver.js +19 -0
- package/core/lib/bf-cache-strings.d.ts +3 -0
- package/core/lib/bf-cache-strings.js +248 -232
- package/core/lib/cdt/generated/SourceMap.d.ts +18 -31
- package/core/lib/cdt/generated/SourceMap.js +51 -101
- package/core/lib/dependency-graph/simulator/network-analyzer.d.ts +6 -2
- package/core/lib/dependency-graph/simulator/network-analyzer.js +45 -13
- package/core/lib/deprecation-description.d.ts +17 -0
- package/core/lib/deprecation-description.js +71 -0
- package/core/lib/deprecations-strings.d.ts +282 -63
- package/core/lib/deprecations-strings.js +282 -551
- package/core/lib/lh-error.d.ts +9 -4
- package/core/lib/lh-error.js +15 -11
- package/core/lib/network-request.d.ts +13 -6
- package/core/lib/network-request.js +39 -14
- package/core/lib/stack-packs.js +4 -0
- package/core/lib/tracehouse/trace-processor.js +1 -1
- package/core/lib/url-utils.js +4 -0
- package/core/runner.js +4 -2
- package/dist/report/bundle.esm.js +24 -7
- package/dist/report/flow.js +3 -3
- package/dist/report/standalone.js +8 -8
- package/package.json +13 -13
- package/readme.md +7 -0
- package/report/assets/styles.css +18 -2
- package/report/assets/templates.html +4 -0
- package/report/renderer/category-renderer.js +5 -2
- package/report/renderer/components.js +2 -2
- package/report/renderer/dom.d.ts +4 -1
- package/report/renderer/dom.js +3 -2
- package/shared/localization/locales/ar-XB.json +20 -170
- package/shared/localization/locales/ar.json +20 -170
- package/shared/localization/locales/bg.json +19 -169
- package/shared/localization/locales/ca.json +19 -169
- package/shared/localization/locales/cs.json +19 -169
- package/shared/localization/locales/da.json +19 -169
- package/shared/localization/locales/de.json +19 -169
- package/shared/localization/locales/el.json +19 -169
- package/shared/localization/locales/en-GB.json +9 -159
- package/shared/localization/locales/en-US.json +166 -70
- package/shared/localization/locales/en-XA.json +20 -170
- package/shared/localization/locales/en-XL.json +166 -70
- package/shared/localization/locales/es-419.json +19 -169
- package/shared/localization/locales/es.json +19 -169
- package/shared/localization/locales/fi.json +19 -169
- package/shared/localization/locales/fil.json +17 -167
- package/shared/localization/locales/fr.json +18 -168
- package/shared/localization/locales/he.json +19 -169
- package/shared/localization/locales/hi.json +20 -170
- package/shared/localization/locales/hr.json +19 -169
- package/shared/localization/locales/hu.json +19 -169
- package/shared/localization/locales/id.json +19 -169
- package/shared/localization/locales/it.json +19 -169
- package/shared/localization/locales/ja.json +19 -169
- package/shared/localization/locales/ko.json +19 -169
- package/shared/localization/locales/lt.json +20 -170
- package/shared/localization/locales/lv.json +20 -170
- package/shared/localization/locales/nl.json +18 -168
- package/shared/localization/locales/no.json +19 -169
- package/shared/localization/locales/pl.json +19 -169
- package/shared/localization/locales/pt-PT.json +19 -169
- package/shared/localization/locales/pt.json +19 -169
- package/shared/localization/locales/ro.json +19 -169
- package/shared/localization/locales/ru.json +19 -169
- package/shared/localization/locales/sk.json +20 -170
- package/shared/localization/locales/sl.json +19 -169
- package/shared/localization/locales/sr-Latn.json +19 -169
- package/shared/localization/locales/sr.json +19 -169
- package/shared/localization/locales/sv.json +19 -169
- package/shared/localization/locales/ta.json +19 -169
- package/shared/localization/locales/te.json +19 -169
- package/shared/localization/locales/th.json +19 -169
- package/shared/localization/locales/tr.json +19 -169
- package/shared/localization/locales/uk.json +19 -169
- package/shared/localization/locales/vi.json +20 -170
- package/shared/localization/locales/zh-HK.json +19 -169
- package/shared/localization/locales/zh-TW.json +19 -169
- package/shared/localization/locales/zh.json +19 -169
- package/shared/util.d.ts +6 -0
- package/shared/util.js +14 -1
- package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +2 -1
- package/tsconfig-base.json +1 -1
- package/types/artifacts.d.ts +10 -8
- package/types/audit.d.ts +5 -0
- package/types/gatherer.d.ts +1 -0
- package/types/lhr/audit-details.d.ts +1 -0
- package/types/lhr/audit-result.d.ts +10 -0
- package/types/internal/es-main.d.ts +0 -18
|
@@ -981,28 +981,28 @@
|
|
|
981
981
|
"message": "Được phép nhưng có cảnh báo"
|
|
982
982
|
},
|
|
983
983
|
"core/audits/largest-contentful-paint-element.js | columnPercentOfLCP": {
|
|
984
|
-
"message": "%
|
|
984
|
+
"message": "% LCP (Nội dung lớn nhất hiển thị)"
|
|
985
985
|
},
|
|
986
986
|
"core/audits/largest-contentful-paint-element.js | columnPhase": {
|
|
987
|
-
"message": "
|
|
987
|
+
"message": "Giai đoạn"
|
|
988
988
|
},
|
|
989
989
|
"core/audits/largest-contentful-paint-element.js | columnTiming": {
|
|
990
|
-
"message": "
|
|
990
|
+
"message": "Thời gian"
|
|
991
991
|
},
|
|
992
992
|
"core/audits/largest-contentful-paint-element.js | description": {
|
|
993
993
|
"message": "Đây là thành phần nội dung lớn nhất hiển thị trong khung nhìn. [Tìm hiểu thêm về thành phần Thời gian hiển thị nội dung lớn nhất](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)"
|
|
994
994
|
},
|
|
995
995
|
"core/audits/largest-contentful-paint-element.js | itemLoadDelay": {
|
|
996
|
-
"message": "
|
|
996
|
+
"message": "Độ trễ khi tải"
|
|
997
997
|
},
|
|
998
998
|
"core/audits/largest-contentful-paint-element.js | itemLoadTime": {
|
|
999
|
-
"message": "
|
|
999
|
+
"message": "Thời gian tải"
|
|
1000
1000
|
},
|
|
1001
1001
|
"core/audits/largest-contentful-paint-element.js | itemRenderDelay": {
|
|
1002
|
-
"message": "
|
|
1002
|
+
"message": "Độ trễ khi hiển thị"
|
|
1003
1003
|
},
|
|
1004
1004
|
"core/audits/largest-contentful-paint-element.js | itemTTFB": {
|
|
1005
|
-
"message": "TTFB"
|
|
1005
|
+
"message": "TTFB (Thời gian cho byte đầu tiên)"
|
|
1006
1006
|
},
|
|
1007
1007
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1008
1008
|
"message": "Thành phần Thời gian hiển thị nội dung lớn nhất"
|
|
@@ -2138,156 +2138,6 @@
|
|
|
2138
2138
|
"core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
2139
2139
|
"message": "Hãy cân nhắc thêm \"unsafe-inline\" (bị các trình duyệt hỗ trợ nonces/hashes bỏ qua) để tương thích ngược với những trình duyệt cũ."
|
|
2140
2140
|
},
|
|
2141
|
-
"core/lib/deprecations-strings.js | authorizationCoveredByWildcard": {
|
|
2142
|
-
"message": "Ký tự đại diện (*) sẽ không bao gồm việc uỷ quyền khi xử lý `Access-Control-Allow-Headers` CORS."
|
|
2143
|
-
},
|
|
2144
|
-
"core/lib/deprecations-strings.js | canRequestURLHTTPContainingNewline": {
|
|
2145
|
-
"message": "Các yêu cầu tài nguyên có URL chứa cả ký tự `(n|r|t)` khoảng trắng đã bị xoá và ký tự nhỏ hơn (`<`) sẽ bị chặn. Vui lòng xoá các dòng mới và mã hoá ký tự nhỏ hơn khỏi các vị trí như giá trị thuộc tính phần tử để tải những tài nguyên như vậy."
|
|
2146
|
-
},
|
|
2147
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesConnectionInfo": {
|
|
2148
|
-
"message": "`chrome.loadTimes()` không được dùng nữa; thay vào đó, hãy sử dụng API đã chuẩn hoá: Navigation Timing 2."
|
|
2149
|
-
},
|
|
2150
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2151
|
-
"message": "`chrome.loadTimes()` không được dùng nữa; thay vào đó, hãy sử dụng API đã chuẩn hoá: Paint Timing."
|
|
2152
|
-
},
|
|
2153
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2154
|
-
"message": "`chrome.loadTimes()` không được dùng nữa; thay vào đó, hãy sử dụng API đã chuẩn hoá: `nextHopProtocol` trong Navigation Timing 2."
|
|
2155
|
-
},
|
|
2156
|
-
"core/lib/deprecations-strings.js | cookieWithTruncatingChar": {
|
|
2157
|
-
"message": "Cookie có chứa ký tự `(0|r|n)` sẽ bị từ chối thay vì cắt bớt."
|
|
2158
|
-
},
|
|
2159
|
-
"core/lib/deprecations-strings.js | crossOriginAccessBasedOnDocumentDomain": {
|
|
2160
|
-
"message": "Hệ thống không còn thiết lập `document.domain` để nới lỏng chính sách cùng nguồn gốc nữa và tính năng này sẽ bị tắt theo mặc định. Cảnh bảo về việc không dùng nữa này là dành cho quyền truy cập nhiều nguồn gốc đã được bật bằng cách thiết lập `document.domain`."
|
|
2161
|
-
},
|
|
2162
|
-
"core/lib/deprecations-strings.js | crossOriginWindowApi": {
|
|
2163
|
-
"message": "Tính năng kích hoạt {PH1} qua các iframe nhiều nguồn gốc không được dùng nữa và sẽ bị loại bỏ trong tương lai."
|
|
2164
|
-
},
|
|
2165
|
-
"core/lib/deprecations-strings.js | cssSelectorInternalMediaControlsOverlayCastButton": {
|
|
2166
|
-
"message": "Nên sử dụng thuộc tính `disableRemotePlayback`nhằm tắt chế độ tích hợp Truyền mặc định thay vì sử dụng bộ chọn `-internal-media-controls-overlay-cast-button`."
|
|
2167
|
-
},
|
|
2168
|
-
"core/lib/deprecations-strings.js | deprecatedWithReplacement": {
|
|
2169
|
-
"message": "{PH1} không được dùng nữa. Thay vào đó, hãy sử dụng {PH2}."
|
|
2170
|
-
},
|
|
2171
|
-
"core/lib/deprecations-strings.js | deprecationExample": {
|
|
2172
|
-
"message": "Đây là ví dụ về một thông báo vấn đề không dùng nữa đã được dịch."
|
|
2173
|
-
},
|
|
2174
|
-
"core/lib/deprecations-strings.js | documentDomainSettingWithoutOriginAgentClusterHeader": {
|
|
2175
|
-
"message": "Hệ thống không còn thiết lập `document.domain` để nới lỏng chính sách cùng nguồn gốc nữa và tính năng này sẽ bị tắt theo mặc định. Để tiếp tục sử dụng tính năng này, vui lòng chọn không sử dụng cụm tác nhân dùng khoá gốc bằng cách gửi một tiêu đề `Origin-Agent-Cluster: ?0` kèm theo phản hồi HTTP cho tài liệu và khung. Xem https://developer.chrome.com/blog/immutable-document-domain/ để biết thêm chi tiết."
|
|
2176
|
-
},
|
|
2177
|
-
"core/lib/deprecations-strings.js | eventPath": {
|
|
2178
|
-
"message": "`Event.path` không được dùng nữa và sẽ bị xoá. Thay vào đó, hãy sử dụng `Event.composedPath()`."
|
|
2179
|
-
},
|
|
2180
|
-
"core/lib/deprecations-strings.js | expectCTHeader": {
|
|
2181
|
-
"message": "Tiêu đề `Expect-CT` không được dùng nữa và sẽ bị xoá. Chrome yêu cầu Tính minh bạch của chứng chỉ đối với tất cả chứng chỉ được tin cậy công khai cấp sau ngày 30 tháng 4 năm 2018."
|
|
2182
|
-
},
|
|
2183
|
-
"core/lib/deprecations-strings.js | feature": {
|
|
2184
|
-
"message": "Kiểm tra trang trạng thái của tính năng để biết thêm thông tin."
|
|
2185
|
-
},
|
|
2186
|
-
"core/lib/deprecations-strings.js | geolocationInsecureOrigin": {
|
|
2187
|
-
"message": "`getCurrentPosition()` và `watchPosition()` không còn hoạt động trên các nguồn gốc không an toàn. Để dùng tính năng này, bạn nên cân nhắc việc chuyển ứng dụng sang một nguồn gốc an toàn, chẳng hạn như HTTPS. Xem https://goo.gle/chrome-insecure-origins để biết thêm thông tin."
|
|
2188
|
-
},
|
|
2189
|
-
"core/lib/deprecations-strings.js | geolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2190
|
-
"message": "`getCurrentPosition()` và `watchPosition()` không còn được dùng trên các nguồn gốc không an toàn. Để dùng tính năng này, bạn nên cân nhắc việc chuyển ứng dụng sang một nguồn gốc an toàn, chẳng hạn như HTTPS. Xem https://goo.gle/chrome-insecure-origins để biết thêm thông tin."
|
|
2191
|
-
},
|
|
2192
|
-
"core/lib/deprecations-strings.js | getUserMediaInsecureOrigin": {
|
|
2193
|
-
"message": "`getUserMedia()` không còn hoạt động trên các nguồn gốc không an toàn. Để dùng tính năng này, bạn nên cân nhắc việc chuyển ứng dụng sang một nguồn gốc an toàn, chẳng hạn như HTTPS. Xem https://goo.gle/chrome-insecure-origins để biết thêm thông tin."
|
|
2194
|
-
},
|
|
2195
|
-
"core/lib/deprecations-strings.js | hostCandidateAttributeGetter": {
|
|
2196
|
-
"message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` không được dùng nữa. Thay vào đó, hãy sử dụng `RTCPeerConnectionIceErrorEvent.address` hoặc `RTCPeerConnectionIceErrorEvent.port`."
|
|
2197
|
-
},
|
|
2198
|
-
"core/lib/deprecations-strings.js | identityInCanMakePaymentEvent": {
|
|
2199
|
-
"message": "Nguồn gốc của bên bán và dữ liệu bất kỳ trong sự kiện `canmakepayment` của trình chạy dịch vụ không được dùng nữa và sẽ bị loại bỏ: `topOrigin`, `paymentRequestOrigin`, `methodData`, `modifiers`."
|
|
2200
|
-
},
|
|
2201
|
-
"core/lib/deprecations-strings.js | insecurePrivateNetworkSubresourceRequest": {
|
|
2202
|
-
"message": "Trang web này đã yêu cầu một tài nguyên phụ qua một mạng mà trang web này chỉ truy cập được do có vị thế mạng đặc quyền của người dùng. Những yêu cầu như vậy làm lộ các thiết bị và máy chủ không công khai trên Internet, làm tăng nguy cơ bị tấn công giả mạo yêu cầu trên nhiều trang web (CSRF) và/hoặc rò rỉ thông tin. Để giảm thiểu những rủi ro này, Chrome sẽ ngừng yêu cầu các nguồn phụ không công khai khi được khởi tạo từ các ngữ cảnh không an toàn và sẽ bắt đầu chặn những yêu cầu đó."
|
|
2203
|
-
},
|
|
2204
|
-
"core/lib/deprecations-strings.js | localCSSFileExtensionRejected": {
|
|
2205
|
-
"message": "Không tải được CSS qua các URL `file:` trừ phi chúng kết thúc bằng đuôi tệp `.css`."
|
|
2206
|
-
},
|
|
2207
|
-
"core/lib/deprecations-strings.js | mediaSourceAbortRemove": {
|
|
2208
|
-
"message": "Hệ thống không dùng `SourceBuffer.abort()` để huỷ việc xoá khoảng không đồng bộ của `remove()` nữa do thay đổi về quy cách. Sau này chế độ hỗ trợ cũng sẽ bị xoá. Thay vào đó, bạn nên nghe sự kiện `updateend`. Mục đích của `abort()` chỉ là huỷ lệnh thêm nội dung nghe nhìn không đồng bộ (asynchronous media append) hoặc đặt lại trạng thái của trình phân tích cú pháp."
|
|
2209
|
-
},
|
|
2210
|
-
"core/lib/deprecations-strings.js | mediaSourceDurationTruncatingBuffered": {
|
|
2211
|
-
"message": "Do thay đổi về quy cách, hệ thống không còn dùng chế độ đặt giá trị dưới dấu thời gian trình bày cao nhất cho `MediaSource.duration` nữa đối với mọi khung đã mã hoá và lưu vào vùng đệm. Chế độ hỗ trợ yêu cầu xoá tường minh cho nội dung phương tiện lưu trong bộ đệm bị cắt bớt sau này cũng sẽ bị xoá. Bạn nên triển khai lệnh `remove(newDuration, oldDuration)` tường minh trên mọi `sourceBuffers`, khi `newDuration < oldDuration`."
|
|
2212
|
-
},
|
|
2213
|
-
"core/lib/deprecations-strings.js | milestone": {
|
|
2214
|
-
"message": "Thay đổi này sẽ có hiệu lực từ mốc {milestone}."
|
|
2215
|
-
},
|
|
2216
|
-
"core/lib/deprecations-strings.js | noSysexWebMIDIWithoutPermission": {
|
|
2217
|
-
"message": "Web MIDI sẽ yêu cầu cấp quyền sử dụng ngay cả khi `MIDIOptions` không chỉ rõ sysex."
|
|
2218
|
-
},
|
|
2219
|
-
"core/lib/deprecations-strings.js | notificationInsecureOrigin": {
|
|
2220
|
-
"message": "Có thể Notification API không còn được dùng qua các nguồn gốc không an toàn. Bạn nên cân nhắc việc chuyển ứng dụng sang một nguồn gốc an toàn, chẳng hạn như HTTPS. Xem https://goo.gle/chrome-insecure-origins để biết thêm thông tin."
|
|
2221
|
-
},
|
|
2222
|
-
"core/lib/deprecations-strings.js | notificationPermissionRequestedIframe": {
|
|
2223
|
-
"message": "Có thể quyền cho Notification API không còn được yêu cầu qua một iframe nhiều nguồn gốc nữa. Thay vào đó, bạn nên cân nhắc việc yêu cầu quyền qua một khung cấp cao hoặc mở một cửa sổ mới."
|
|
2224
|
-
},
|
|
2225
|
-
"core/lib/deprecations-strings.js | obsoleteWebRtcCipherSuite": {
|
|
2226
|
-
"message": "Đối tác của bạn đang đàm phán một phiên bản (D)TLS đã lỗi thời. Vui lòng trao đổi với đối tác của bạn để khắc phục."
|
|
2227
|
-
},
|
|
2228
|
-
"core/lib/deprecations-strings.js | openWebDatabaseInsecureContext": {
|
|
2229
|
-
"message": "WebSQL trong ngữ cảnh không an toàn không được dùng nữa và sẽ sớm bị xoá. Vui lòng dùng Bộ nhớ web hoặc Cơ sở dữ liệu đã lập chỉ mục."
|
|
2230
|
-
},
|
|
2231
|
-
"core/lib/deprecations-strings.js | overflowVisibleOnReplacedElement": {
|
|
2232
|
-
"message": "Việc chỉ định `overflow: visible` trên thẻ img, video và canvas có thể khiến các thẻ này tạo ra nội dung hình ảnh bên ngoài ranh giới thành phần. Xem tại https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md."
|
|
2233
|
-
},
|
|
2234
|
-
"core/lib/deprecations-strings.js | paymentInstruments": {
|
|
2235
|
-
"message": "`paymentManager.instruments` không được dùng nữa. Vui lòng sử dụng chế độ cài đặt đúng thời điểm cho trình xử lý thanh toán."
|
|
2236
|
-
},
|
|
2237
|
-
"core/lib/deprecations-strings.js | paymentRequestCSPViolation": {
|
|
2238
|
-
"message": "Lệnh gọi `PaymentRequest` của bạn đã bỏ qua chỉ thị `connect-src` của Chính sách bảo mật nội dung (CSP). Chế độ bỏ qua này không được dùng nữa. Vui lòng thêm giá trị nhận dạng phương thức thanh toán từ API `PaymentRequest` (trong trường `supportedMethods`) vào chỉ thị `connect-src` của CSP."
|
|
2239
|
-
},
|
|
2240
|
-
"core/lib/deprecations-strings.js | persistentQuotaType": {
|
|
2241
|
-
"message": "`StorageType.persistent` không được dùng nữa. Vui lòng sử dụng `navigator.storage` đã chuẩn hoá."
|
|
2242
|
-
},
|
|
2243
|
-
"core/lib/deprecations-strings.js | pictureSourceSrc": {
|
|
2244
|
-
"message": "`<source src>` có phần tử mẹ `<picture>` không hợp lệ nên sẽ bị bỏ qua. Thay vào đó, vui lòng sử dụng `<source srcset>`."
|
|
2245
|
-
},
|
|
2246
|
-
"core/lib/deprecations-strings.js | prefixedStorageInfo": {
|
|
2247
|
-
"message": "`window.webkitStorageInfo` không được dùng nữa. Vui lòng sử dụng `navigator.storage` đã chuẩn hoá."
|
|
2248
|
-
},
|
|
2249
|
-
"core/lib/deprecations-strings.js | requestedSubresourceWithEmbeddedCredentials": {
|
|
2250
|
-
"message": "Yêu cầu tài nguyên phụ có URL chứa thông tin xác thực được nhúng (ví dụ: `https://user:pass@host/`) sẽ bị chặn."
|
|
2251
|
-
},
|
|
2252
|
-
"core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpFalse": {
|
|
2253
|
-
"message": "Điều kiện hạn chế `DtlsSrtpKeyAgreement` đã bị xoá. Bạn đã chỉ định một giá trị `false` cho điều kiện hạn chế này, đây được coi là nỗ lực sử dụng phương thức `SDES key negotiation` đã bị xoá. Chức năng này đã bị xoá; thay vào đó, hãy sử dụng một dịch vụ có hỗ trợ `DTLS key negotiation`."
|
|
2254
|
-
},
|
|
2255
|
-
"core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpTrue": {
|
|
2256
|
-
"message": "Điều kiện hạn chế `DtlsSrtpKeyAgreement` đã bị xoá. Bạn đã chỉ định một giá trị `true` cho điều kiện hạn chế này, việc này không có tác dụng gì nhưng bạn có thể xoá điều kiện hạn chế này cho gọn gàng."
|
|
2257
|
-
},
|
|
2258
|
-
"core/lib/deprecations-strings.js | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
|
2259
|
-
"message": "Đã phát hiện `Complex Plan B SDP`. Phương ngữ này của `Session Description Protocol` không còn được hỗ trợ. Thay vào đó, vui lòng sử dụng `Unified Plan SDP`."
|
|
2260
|
-
},
|
|
2261
|
-
"core/lib/deprecations-strings.js | rtcPeerConnectionSdpSemanticsPlanB": {
|
|
2262
|
-
"message": "`Plan B SDP semantics` (được dùng khi xây dựng một `RTCPeerConnection` bằng `{sdpSemantics:plan-b}`) là một phiên bản đã cũ phi tiêu chuẩn của `Session Description Protocol` và đã bị xoá vĩnh viễn khỏi Nền tảng web (Web Platform). Bạn vẫn dùng được giao thức này khi xây dựng bằng `IS_FUCHSIA`, nhưng chúng tôi có kế hoạch xoá càng sớm càng tốt. Hãy ngừng phụ thuộc vào giao thức này. Xem https://crbug.com/1302249 để nắm được trạng thái."
|
|
2263
|
-
},
|
|
2264
|
-
"core/lib/deprecations-strings.js | rtcpMuxPolicyNegotiate": {
|
|
2265
|
-
"message": "Tuỳ chọn `rtcpMuxPolicy` không được dùng nữa và sẽ bị xoá."
|
|
2266
|
-
},
|
|
2267
|
-
"core/lib/deprecations-strings.js | sharedArrayBufferConstructedWithoutIsolation": {
|
|
2268
|
-
"message": "`SharedArrayBuffer` sẽ đòi hỏi việc tách biệt nhiều nguồn gốc. Xem https://developer.chrome.com/blog/enabling-shared-array-buffer/ để biết thêm thông tin."
|
|
2269
|
-
},
|
|
2270
|
-
"core/lib/deprecations-strings.js | textToSpeech_DisallowedByAutoplay": {
|
|
2271
|
-
"message": "Khi không có hoạt động kích hoạt của người dùng, `speechSynthesis.speak()` không được dùng nữa và sẽ bị loại bỏ."
|
|
2272
|
-
},
|
|
2273
|
-
"core/lib/deprecations-strings.js | title": {
|
|
2274
|
-
"message": "Đang dùng một tính năng không dùng nữa"
|
|
2275
|
-
},
|
|
2276
|
-
"core/lib/deprecations-strings.js | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2277
|
-
"message": "Các tiện ích phải chọn sử dụng chế độ tách biệt nhiều nguồn gốc để có thể tiếp tục sử dụng `SharedArrayBuffer`. Xem https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
|
2278
|
-
},
|
|
2279
|
-
"core/lib/deprecations-strings.js | vendorSpecificApi": {
|
|
2280
|
-
"message": "{PH1} là phương thức tuỳ theo nhà cung cấp. Thay vào đó, hãy sử dụng {PH2} tiêu chuẩn."
|
|
2281
|
-
},
|
|
2282
|
-
"core/lib/deprecations-strings.js | xhrJSONEncodingDetection": {
|
|
2283
|
-
"message": "JSON phản hồi không hỗ trợ UTF-16 trong `XMLHttpRequest`"
|
|
2284
|
-
},
|
|
2285
|
-
"core/lib/deprecations-strings.js | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2286
|
-
"message": "Tính năng `XMLHttpRequest` đồng bộ trên luồng chính không được dùng nữa do có tác động không tốt đối với trải nghiệm của người dùng cuối. Để xem thêm thông tin trợ giúp, hãy tham khảo https://xhr.spec.whatwg.org/."
|
|
2287
|
-
},
|
|
2288
|
-
"core/lib/deprecations-strings.js | xrSupportsSession": {
|
|
2289
|
-
"message": "`supportsSession()` không được dùng nữa. Thay vào đó, hãy sử dụng `isSessionSupported()` và kiểm tra giá trị boolean đã phân giải."
|
|
2290
|
-
},
|
|
2291
2141
|
"core/lib/i18n/i18n.js | columnBlockingTime": {
|
|
2292
2142
|
"message": "Thời gian chặn chuỗi chính"
|
|
2293
2143
|
},
|
|
@@ -2760,31 +2610,31 @@
|
|
|
2760
2610
|
"message": "Dùng [Ezoic Leap](https://pubdash.ezoic.com/speed) và bật `Resize Images` để thay đổi kích thước hình ảnh sao cho phù hợp với thiết bị, qua đó làm giảm dung lượng dữ liệu truyền qua mạng."
|
|
2761
2611
|
},
|
|
2762
2612
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | modern-image-formats": {
|
|
2763
|
-
"message": "
|
|
2613
|
+
"message": "Sử dụng thành phần `gatsby-plugin-image` thay cho `<img>` để tự động tối ưu hoá định dạng hình ảnh. [Tìm hiểu thêm](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
|
|
2764
2614
|
},
|
|
2765
2615
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | offscreen-images": {
|
|
2766
|
-
"message": "
|
|
2616
|
+
"message": "Sử dụng thành phần `gatsby-plugin-image` thay cho `<img>` để tự động tải từng phần của hình ảnh. [Tìm hiểu thêm](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
|
|
2767
2617
|
},
|
|
2768
2618
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | prioritize-lcp-image": {
|
|
2769
|
-
"message": "
|
|
2619
|
+
"message": "Sử dụng thành phần `gatsby-plugin-image` và đặt thuộc tính `loading` thành `eager`. [Tìm hiểu thêm](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-plugin-image#shared-props)."
|
|
2770
2620
|
},
|
|
2771
2621
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | render-blocking-resources": {
|
|
2772
|
-
"message": "
|
|
2622
|
+
"message": "Sử dụng `Gatsby Script API` để trì hoãn việc tải các tập lệnh không quan trọng của bên thứ ba. [Tìm hiểu thêm](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-script/)."
|
|
2773
2623
|
},
|
|
2774
2624
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-css-rules": {
|
|
2775
|
-
"message": "
|
|
2625
|
+
"message": "Sử dụng trình bổ trợ `PurgeCSS` `Gatsby` để xoá các quy tắc không sử dụng khỏi biểu định kiểu. [Tìm hiểu thêm](https://purgecss.com/plugins/gatsby.html)."
|
|
2776
2626
|
},
|
|
2777
2627
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-javascript": {
|
|
2778
|
-
"message": "
|
|
2628
|
+
"message": "Sử dụng `Webpack Bundle Analyzer` để phát hiện mã JavaScript không được sử dụng. [Tìm hiểu thêm](https://www.gatsbyjs.com/plugins/gatsby-plugin-webpack-bundle-analyser-v2/)"
|
|
2779
2629
|
},
|
|
2780
2630
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-long-cache-ttl": {
|
|
2781
|
-
"message": "
|
|
2631
|
+
"message": "Định cấu hình bộ nhớ đệm cho các nội dung không thay đổi được. [Tìm hiểu thêm](https://www.gatsbyjs.com/docs/how-to/previews-deploys-hosting/caching/)."
|
|
2782
2632
|
},
|
|
2783
2633
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-optimized-images": {
|
|
2784
|
-
"message": "
|
|
2634
|
+
"message": "Sử dụng thành phần `gatsby-plugin-image` thay cho `<img>` để điều chỉnh chất lượng ảnh. [Tìm hiểu thêm](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
|
|
2785
2635
|
},
|
|
2786
2636
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-responsive-images": {
|
|
2787
|
-
"message": "
|
|
2637
|
+
"message": "Sử dụng thành phần `gatsby-plugin-image` để đặt `sizes` phù hợp. [Tìm hiểu thêm](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
|
|
2788
2638
|
},
|
|
2789
2639
|
"node_modules/lighthouse-stack-packs/packs/joomla.js | efficient-animated-content": {
|
|
2790
2640
|
"message": "Hãy cân nhắc tải ảnh GIF lên một dịch vụ để có thể nhúng ảnh đó ở dạng video HTML5."
|
|
@@ -2865,10 +2715,10 @@
|
|
|
2865
2715
|
"message": "Có thể thêm thẻ `<link rel=preload>` bằng cách [sửa đổi bố cục của một giao diện](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
|
|
2866
2716
|
},
|
|
2867
2717
|
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
|
|
2868
|
-
"message": "
|
|
2718
|
+
"message": "Sử dụng thành phần `next/image` thay cho `<img>` để tự động tối ưu hoá định dạng hình ảnh. [Tìm hiểu thêm](https://nextjs.org/docs/basic-features/image-optimization)."
|
|
2869
2719
|
},
|
|
2870
2720
|
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
|
2871
|
-
"message": "
|
|
2721
|
+
"message": "Sử dụng thành phần `next/image` thay cho `<img>` để tự động tải từng phần của hình ảnh. [Tìm hiểu thêm](https://nextjs.org/docs/basic-features/image-optimization)."
|
|
2872
2722
|
},
|
|
2873
2723
|
"node_modules/lighthouse-stack-packs/packs/next.js | prioritize-lcp-image": {
|
|
2874
2724
|
"message": "Dùng thành phần `next/image` và thiết lập giá trị \"mức độ ưu tiên\" thành đúng (true) để tải trước hình ảnh LCP. [Tìm hiểu thêm](https://nextjs.org/docs/api-reference/next/image#priority)."
|
|
@@ -2883,7 +2733,7 @@
|
|
|
2883
2733
|
"message": "Hãy cân nhắc đặt `PurgeCSS` trong cấu hình `Next.js` để xoá các quy tắc không sử dụng khỏi biểu định kiểu. [Tìm hiểu thêm](https://purgecss.com/guides/next.html)."
|
|
2884
2734
|
},
|
|
2885
2735
|
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
|
|
2886
|
-
"message": "
|
|
2736
|
+
"message": "Sử dụng `Webpack Bundle Analyzer` để phát hiện mã JavaScript không được sử dụng. [Tìm hiểu thêm](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
|
|
2887
2737
|
},
|
|
2888
2738
|
"node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
|
|
2889
2739
|
"message": "Hãy cân nhắc dùng `Next.js Analytics` để đo lường hiệu suất của ứng dụng trong thực tế. [Tìm hiểu thêm](https://nextjs.org/docs/advanced-features/measuring-performance)."
|
|
@@ -2892,7 +2742,7 @@
|
|
|
2892
2742
|
"message": "Định cấu hình bộ nhớ đệm cho các trang `Server-side Rendered` (SSR) và thành phần không thay đổi được. [Tìm hiểu thêm](https://nextjs.org/docs/going-to-production#caching)."
|
|
2893
2743
|
},
|
|
2894
2744
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
|
|
2895
|
-
"message": "
|
|
2745
|
+
"message": "Sử dụng thành phần `next/image` thay cho `<img>` để điều chỉnh chất lượng ảnh. [Tìm hiểu thêm](https://nextjs.org/docs/basic-features/image-optimization)."
|
|
2896
2746
|
},
|
|
2897
2747
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
|
|
2898
2748
|
"message": "Hãy dùng phần tử `next/image` để đặt `sizes` phù hợp. [Tìm hiểu thêm](https://nextjs.org/docs/api-reference/next/image#sizes)."
|
|
@@ -981,25 +981,25 @@
|
|
|
981
981
|
"message": "允許 (附警告)"
|
|
982
982
|
},
|
|
983
983
|
"core/audits/largest-contentful-paint-element.js | columnPercentOfLCP": {
|
|
984
|
-
"message": "%
|
|
984
|
+
"message": "% 的 LCP"
|
|
985
985
|
},
|
|
986
986
|
"core/audits/largest-contentful-paint-element.js | columnPhase": {
|
|
987
|
-
"message": "
|
|
987
|
+
"message": "階段"
|
|
988
988
|
},
|
|
989
989
|
"core/audits/largest-contentful-paint-element.js | columnTiming": {
|
|
990
|
-
"message": "
|
|
990
|
+
"message": "時間"
|
|
991
991
|
},
|
|
992
992
|
"core/audits/largest-contentful-paint-element.js | description": {
|
|
993
993
|
"message": "這是在檢視區中繪製的最大內容元素。[進一步瞭解「最大內容繪製」元素](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)"
|
|
994
994
|
},
|
|
995
995
|
"core/audits/largest-contentful-paint-element.js | itemLoadDelay": {
|
|
996
|
-
"message": "
|
|
996
|
+
"message": "載入延遲"
|
|
997
997
|
},
|
|
998
998
|
"core/audits/largest-contentful-paint-element.js | itemLoadTime": {
|
|
999
|
-
"message": "
|
|
999
|
+
"message": "載入時間"
|
|
1000
1000
|
},
|
|
1001
1001
|
"core/audits/largest-contentful-paint-element.js | itemRenderDelay": {
|
|
1002
|
-
"message": "
|
|
1002
|
+
"message": "輸出延遲"
|
|
1003
1003
|
},
|
|
1004
1004
|
"core/audits/largest-contentful-paint-element.js | itemTTFB": {
|
|
1005
1005
|
"message": "TTFB"
|
|
@@ -2138,156 +2138,6 @@
|
|
|
2138
2138
|
"core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
2139
2139
|
"message": "建議新增「unsafe-inline」,以便退回兼容舊版瀏覽器 (支援 nonce/hash 的瀏覽器會忽略 unsafe-inline)。"
|
|
2140
2140
|
},
|
|
2141
|
-
"core/lib/deprecations-strings.js | authorizationCoveredByWildcard": {
|
|
2142
|
-
"message": "CORS `Access-Control-Allow-Headers` 處理操作中的萬用字元符號 (*) 不包含授權。"
|
|
2143
|
-
},
|
|
2144
|
-
"core/lib/deprecations-strings.js | canRequestURLHTTPContainingNewline": {
|
|
2145
|
-
"message": "系統將封鎖網址同時包含已移除的空白 `(n|r|t)` 字元和小於字元 (`<`) 的資源要求。請從元素屬性值等位置移除換行符號,並編碼小於字元,以便載入這些資源。"
|
|
2146
|
-
},
|
|
2147
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesConnectionInfo": {
|
|
2148
|
-
"message": "`chrome.loadTimes()` 已淘汰,請改用標準化 API:Navigation Timing 2。"
|
|
2149
|
-
},
|
|
2150
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2151
|
-
"message": "`chrome.loadTimes()` 已淘汰,請改用標準化 API:Paint Timing。"
|
|
2152
|
-
},
|
|
2153
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2154
|
-
"message": "`chrome.loadTimes()` 已淘汰,請改用標準化 API:Navigation Timing 2 中的 `nextHopProtocol`。"
|
|
2155
|
-
},
|
|
2156
|
-
"core/lib/deprecations-strings.js | cookieWithTruncatingChar": {
|
|
2157
|
-
"message": "系統將會拒絕包含 `(0|r|n)` 字元的 Cookie,而非縮短。"
|
|
2158
|
-
},
|
|
2159
|
-
"core/lib/deprecations-strings.js | crossOriginAccessBasedOnDocumentDomain": {
|
|
2160
|
-
"message": "透過設定 `document.domain` 啟用相同來源政策的功能已淘汰,並將根據預設移除。此淘汰警告是針對透過設定 `document.domain` 來啟用跨來源存取功能。"
|
|
2161
|
-
},
|
|
2162
|
-
"core/lib/deprecations-strings.js | crossOriginWindowApi": {
|
|
2163
|
-
"message": "從跨來源 iframe 觸發 {PH1} 的功能已淘汰,並將會在日後移除。"
|
|
2164
|
-
},
|
|
2165
|
-
"core/lib/deprecations-strings.js | cssSelectorInternalMediaControlsOverlayCastButton": {
|
|
2166
|
-
"message": "應使用 `disableRemotePlayback` 屬性停用預設的「投放整合」功能,而非 `-internal-media-controls-overlay-cast-button` 選取器。"
|
|
2167
|
-
},
|
|
2168
|
-
"core/lib/deprecations-strings.js | deprecatedWithReplacement": {
|
|
2169
|
-
"message": "{PH1} 已淘汰。請改用 {PH2}。"
|
|
2170
|
-
},
|
|
2171
|
-
"core/lib/deprecations-strings.js | deprecationExample": {
|
|
2172
|
-
"message": "此例子是經翻譯的淘汰問題訊息。"
|
|
2173
|
-
},
|
|
2174
|
-
"core/lib/deprecations-strings.js | documentDomainSettingWithoutOriginAgentClusterHeader": {
|
|
2175
|
-
"message": "透過設定 `document.domain` 啟用相同來源政策的功能已淘汰,並將根據預設移除。如要繼續使用此功能,請傳送文件和頁框的 `Origin-Agent-Cluster: ?0` 標題和 HTTP 回應,藉此選擇不採用 origin-keyed 代理程式叢集。詳情請參閱 https://developer.chrome.com/blog/immutable-document-domain/。"
|
|
2176
|
-
},
|
|
2177
|
-
"core/lib/deprecations-strings.js | eventPath": {
|
|
2178
|
-
"message": "`Event.path` 已淘汰,並將會移除。請改用 `Event.composedPath()`。"
|
|
2179
|
-
},
|
|
2180
|
-
"core/lib/deprecations-strings.js | expectCTHeader": {
|
|
2181
|
-
"message": "`Expect-CT` 標題已淘汰,並將會移除。Chrome 要求 2018 年 4 月 30 日後發出的所有公開信任憑證都必須符合《憑證透明度政策》的規定。"
|
|
2182
|
-
},
|
|
2183
|
-
"core/lib/deprecations-strings.js | feature": {
|
|
2184
|
-
"message": "詳情請參閱「功能狀態」頁面。"
|
|
2185
|
-
},
|
|
2186
|
-
"core/lib/deprecations-strings.js | geolocationInsecureOrigin": {
|
|
2187
|
-
"message": "`getCurrentPosition()` 和 `watchPosition()` 無法再在不安全來源上運作。如要使用此功能,請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
|
|
2188
|
-
},
|
|
2189
|
-
"core/lib/deprecations-strings.js | geolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2190
|
-
"message": "不安全來源上的 `getCurrentPosition()` 和 `watchPosition()` 已淘汰。如要使用此功能,請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
|
|
2191
|
-
},
|
|
2192
|
-
"core/lib/deprecations-strings.js | getUserMediaInsecureOrigin": {
|
|
2193
|
-
"message": "`getUserMedia()` 無法再在不安全來源上運作。如要使用此功能,請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
|
|
2194
|
-
},
|
|
2195
|
-
"core/lib/deprecations-strings.js | hostCandidateAttributeGetter": {
|
|
2196
|
-
"message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` 已淘汰。請改用 `RTCPeerConnectionIceErrorEvent.address` 或 `RTCPeerConnectionIceErrorEvent.port`。"
|
|
2197
|
-
},
|
|
2198
|
-
"core/lib/deprecations-strings.js | identityInCanMakePaymentEvent": {
|
|
2199
|
-
"message": "「`canmakepayment`」Service Worker 事件的商家來源和任意資料目前已淘汰,並將在之後移除:`topOrigin`、`paymentRequestOrigin`、`methodData`、`modifiers`。"
|
|
2200
|
-
},
|
|
2201
|
-
"core/lib/deprecations-strings.js | insecurePrivateNetworkSubresourceRequest": {
|
|
2202
|
-
"message": "網站根據使用者具備權限的網絡位置,透過只能存取的網絡要求一個子資源。這些要求會向互聯網暴露非公開的裝置和伺服器,因而增加偽造跨網站要求 (CSRF) 攻擊和/或資料洩漏的風險。為降低風險,Chrome 會忽略不安全內容向非公開子資源發出的要求,並將開始封鎖這類要求。"
|
|
2203
|
-
},
|
|
2204
|
-
"core/lib/deprecations-strings.js | localCSSFileExtensionRejected": {
|
|
2205
|
-
"message": "除非 CSS 以 `.css` 副檔名作結,否則無法從 `file:` 網址載入。"
|
|
2206
|
-
},
|
|
2207
|
-
"core/lib/deprecations-strings.js | mediaSourceAbortRemove": {
|
|
2208
|
-
"message": "由於規格變更,系統已淘汰使用 `SourceBuffer.abort()` 取消 `remove()` 的非同步範圍移除操作,日後亦將停止支援此功能。建議您改為監聽 `updateend` 事件。`abort()` 的用途只限於取消非同步媒體附加內容或重設剖析器狀態。"
|
|
2209
|
-
},
|
|
2210
|
-
"core/lib/deprecations-strings.js | mediaSourceDurationTruncatingBuffered": {
|
|
2211
|
-
"message": "由於規格變更,系統已淘汰將 `MediaSource.duration` 設定為低於任何緩衝編碼頁框的最高顯示時間戳記。日後將停止支援對已縮短緩衝媒體的隱含移除操作。請改為在 `newDuration < oldDuration` 的所有 `sourceBuffers` 上執行明確 `remove(newDuration, oldDuration)`。"
|
|
2212
|
-
},
|
|
2213
|
-
"core/lib/deprecations-strings.js | milestone": {
|
|
2214
|
-
"message": "此變更將會在第 {milestone} 個里程碑時生效。"
|
|
2215
|
-
},
|
|
2216
|
-
"core/lib/deprecations-strings.js | noSysexWebMIDIWithoutPermission": {
|
|
2217
|
-
"message": "即使在 `MIDIOptions` 中未指定系統專用 (SysEx) 訊息,Web MIDI 亦會要求使用權限。"
|
|
2218
|
-
},
|
|
2219
|
-
"core/lib/deprecations-strings.js | notificationInsecureOrigin": {
|
|
2220
|
-
"message": "系統可能無法再使用不安全來源的 Notification API。請考慮將應用程式轉移至安全來源,例如 HTTPS。詳情請參閱 https://goo.gle/chrome-insecure-origins。"
|
|
2221
|
-
},
|
|
2222
|
-
"core/lib/deprecations-strings.js | notificationPermissionRequestedIframe": {
|
|
2223
|
-
"message": "系統可能無法再透過跨來源 iframe 要求 Notification API。請考慮透過頂層頁框要求權限,或改為開啟新視窗。"
|
|
2224
|
-
},
|
|
2225
|
-
"core/lib/deprecations-strings.js | obsoleteWebRtcCipherSuite": {
|
|
2226
|
-
"message": "您的合作夥伴正在交涉已過時的傳輸層安全標準 (TLS)/DTLS 版本。請向您的合作夥伴查詢,以便修正問題。"
|
|
2227
|
-
},
|
|
2228
|
-
"core/lib/deprecations-strings.js | openWebDatabaseInsecureContext": {
|
|
2229
|
-
"message": "不安全環境中的 WebSQL 已淘汰,並即將移除。請使用「網絡儲存空間」或「已加入索引的資料庫」。"
|
|
2230
|
-
},
|
|
2231
|
-
"core/lib/deprecations-strings.js | overflowVisibleOnReplacedElement": {
|
|
2232
|
-
"message": "如果指定 img、video 和 canvas 標籤的「`overflow: visible`」,可能會導致這些標籤產生的視覺內容超出元素邊界。詳情請參閱 https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md。"
|
|
2233
|
-
},
|
|
2234
|
-
"core/lib/deprecations-strings.js | paymentInstruments": {
|
|
2235
|
-
"message": "`paymentManager.instruments` 已淘汰。請改用付款處理常式的即時安裝方法。"
|
|
2236
|
-
},
|
|
2237
|
-
"core/lib/deprecations-strings.js | paymentRequestCSPViolation": {
|
|
2238
|
-
"message": "您的「`PaymentRequest`」調用已繞過內容安全政策 (CSP)「`connect-src`」指令,但目前已無法再繞過。請將 `PaymentRequest` API 的付款方法識別碼 (位於「`supportedMethods`」欄位) 新增至 CSP「`connect-src`」指令。"
|
|
2239
|
-
},
|
|
2240
|
-
"core/lib/deprecations-strings.js | persistentQuotaType": {
|
|
2241
|
-
"message": "`StorageType.persistent` 已淘汰。請改用標準化的 `navigator.storage`。"
|
|
2242
|
-
},
|
|
2243
|
-
"core/lib/deprecations-strings.js | pictureSourceSrc": {
|
|
2244
|
-
"message": "具有 `<picture>` 父項的 `<source src>` 無效,因此系統會忽略。請改用「`<source srcset>`」。"
|
|
2245
|
-
},
|
|
2246
|
-
"core/lib/deprecations-strings.js | prefixedStorageInfo": {
|
|
2247
|
-
"message": "`window.webkitStorageInfo` 已淘汰。請改用標準化的 `navigator.storage`。"
|
|
2248
|
-
},
|
|
2249
|
-
"core/lib/deprecations-strings.js | requestedSubresourceWithEmbeddedCredentials": {
|
|
2250
|
-
"message": "系統將封鎖網址包含嵌入憑證 (例如 `https://user:pass@host/`) 的子資源要求。"
|
|
2251
|
-
},
|
|
2252
|
-
"core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpFalse": {
|
|
2253
|
-
"message": "已移除 `DtlsSrtpKeyAgreement` 限制。系統將您為此限制指定的 `false` 值解讀為嘗試使用已移除的「`SDES key negotiation`」方法。此功能已移除,請改用支援「`DTLS key negotiation`」的方法。"
|
|
2254
|
-
},
|
|
2255
|
-
"core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpTrue": {
|
|
2256
|
-
"message": "已移除 `DtlsSrtpKeyAgreement` 限制。您為此限制指定的 `true` 值已不再適用,不過您可將此限制移除以保持畫面整潔。"
|
|
2257
|
-
},
|
|
2258
|
-
"core/lib/deprecations-strings.js | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
|
2259
|
-
"message": "已偵測到「`Complex Plan B SDP`」。系統已不再支援「`Session Description Protocol`」的方言。請改用「`Unified Plan SDP`」。"
|
|
2260
|
-
},
|
|
2261
|
-
"core/lib/deprecations-strings.js | rtcPeerConnectionSdpSemanticsPlanB": {
|
|
2262
|
-
"message": "使用 `{sdpSemantics:plan-b}` 建構 `RTCPeerConnection` 時使用「`Plan B SDP semantics`」是「`Session Description Protocol`」舊款非標準版的做法,現已從「網絡平台」中永久移除。雖然使用 `IS_FUCHSIA` 建構時仍可使用此做法,但我們打算盡快刪除,因此請停止使用此功能。請參閱 https://crbug.com/1302249 瞭解狀態。"
|
|
2263
|
-
},
|
|
2264
|
-
"core/lib/deprecations-strings.js | rtcpMuxPolicyNegotiate": {
|
|
2265
|
-
"message": "`rtcpMuxPolicy` 選項已淘汰,並將會移除。"
|
|
2266
|
-
},
|
|
2267
|
-
"core/lib/deprecations-strings.js | sharedArrayBufferConstructedWithoutIsolation": {
|
|
2268
|
-
"message": "`SharedArrayBuffer` 會要求跨來源隔離。詳情請參閱 https://developer.chrome.com/blog/enabling-shared-array-buffer/。"
|
|
2269
|
-
},
|
|
2270
|
-
"core/lib/deprecations-strings.js | textToSpeech_DisallowedByAutoplay": {
|
|
2271
|
-
"message": "無需使用者啟用即可呼叫 `speechSynthesis.speak()` 的功能已淘汰,並將會移除。"
|
|
2272
|
-
},
|
|
2273
|
-
"core/lib/deprecations-strings.js | title": {
|
|
2274
|
-
"message": "使用已淘汰的功能"
|
|
2275
|
-
},
|
|
2276
|
-
"core/lib/deprecations-strings.js | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2277
|
-
"message": "擴充程式應選擇接受跨來源隔離功能,以繼續使用 `SharedArrayBuffer`。詳情請參閱 https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/。"
|
|
2278
|
-
},
|
|
2279
|
-
"core/lib/deprecations-strings.js | vendorSpecificApi": {
|
|
2280
|
-
"message": "{PH1} 為供應商專用功能,請改用標準 {PH2}。"
|
|
2281
|
-
},
|
|
2282
|
-
"core/lib/deprecations-strings.js | xhrJSONEncodingDetection": {
|
|
2283
|
-
"message": "`XMLHttpRequest` 中的 JSON 回應不支援 UTF-16。"
|
|
2284
|
-
},
|
|
2285
|
-
"core/lib/deprecations-strings.js | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2286
|
-
"message": "主要執行緒上同步的 `XMLHttpRequest` 會對使用者體驗造成負面影響,因此已淘汰。如需進一步說明,請查看 https://xhr.spec.whatwg.org/。"
|
|
2287
|
-
},
|
|
2288
|
-
"core/lib/deprecations-strings.js | xrSupportsSession": {
|
|
2289
|
-
"message": "`supportsSession()` 已淘汰。請改用 `isSessionSupported()` 並查看解析的布林值。"
|
|
2290
|
-
},
|
|
2291
2141
|
"core/lib/i18n/i18n.js | columnBlockingTime": {
|
|
2292
2142
|
"message": "主要執行緒封鎖時間"
|
|
2293
2143
|
},
|
|
@@ -2760,31 +2610,31 @@
|
|
|
2760
2610
|
"message": "使用 [Ezoic Leap](https://pubdash.ezoic.com/speed) 並啟用 `Resize Images` 以將圖片大小調整至適合裝置的尺寸,減少網絡負載大小。"
|
|
2761
2611
|
},
|
|
2762
2612
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | modern-image-formats": {
|
|
2763
|
-
"message": "
|
|
2613
|
+
"message": "請使用 `gatsby-plugin-image` 組件讓系統自動優化圖像格式,而非 `<img>`。[瞭解詳情](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)。"
|
|
2764
2614
|
},
|
|
2765
2615
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | offscreen-images": {
|
|
2766
|
-
"message": "
|
|
2616
|
+
"message": "如要自動延遲載入圖像,請使用 `gatsby-plugin-image` 組件,而非 `<img>`。[瞭解詳情](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)。"
|
|
2767
2617
|
},
|
|
2768
2618
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | prioritize-lcp-image": {
|
|
2769
|
-
"message": "
|
|
2619
|
+
"message": "請使用 `gatsby-plugin-image` 組件,並將 `loading` 屬性設定為 `eager`。[瞭解詳情](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-plugin-image#shared-props)。"
|
|
2770
2620
|
},
|
|
2771
2621
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | render-blocking-resources": {
|
|
2772
|
-
"message": "
|
|
2622
|
+
"message": "請使用 `Gatsby Script API` 延遲載入非關鍵的第三方指令碼。[瞭解詳情](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-script/)。"
|
|
2773
2623
|
},
|
|
2774
2624
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-css-rules": {
|
|
2775
|
-
"message": "
|
|
2625
|
+
"message": "使用 `PurgeCSS` `Gatsby` 外掛程式以從樣式表移除未使用的規則。[瞭解詳情](https://purgecss.com/plugins/gatsby.html)。"
|
|
2776
2626
|
},
|
|
2777
2627
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-javascript": {
|
|
2778
|
-
"message": "
|
|
2628
|
+
"message": "使用 `Webpack Bundle Analyzer` 偵測未使用的 JavaScript 程式碼。[瞭解詳情](https://www.gatsbyjs.com/plugins/gatsby-plugin-webpack-bundle-analyser-v2/)"
|
|
2779
2629
|
},
|
|
2780
2630
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-long-cache-ttl": {
|
|
2781
|
-
"message": "
|
|
2631
|
+
"message": "請設定不可變動資產的快取。[瞭解詳情](https://www.gatsbyjs.com/docs/how-to/previews-deploys-hosting/caching/)。"
|
|
2782
2632
|
},
|
|
2783
2633
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-optimized-images": {
|
|
2784
|
-
"message": "
|
|
2634
|
+
"message": "請使用 `gatsby-plugin-image` 組件調整圖像品質,而非 `<img>`。[瞭解詳情](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)。"
|
|
2785
2635
|
},
|
|
2786
2636
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-responsive-images": {
|
|
2787
|
-
"message": "
|
|
2637
|
+
"message": "請使用 `gatsby-plugin-image` 組件設定適當的 `sizes`。[瞭解詳情](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)。"
|
|
2788
2638
|
},
|
|
2789
2639
|
"node_modules/lighthouse-stack-packs/packs/joomla.js | efficient-animated-content": {
|
|
2790
2640
|
"message": "建議將 GIF 上載至可將 GIF 用作 HTML5 影片嵌入的伺服器。"
|
|
@@ -2865,10 +2715,10 @@
|
|
|
2865
2715
|
"message": "您可透過[修改主題版面配置](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)來新增 `<link rel=preload>` 標籤。"
|
|
2866
2716
|
},
|
|
2867
2717
|
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
|
|
2868
|
-
"message": "
|
|
2718
|
+
"message": "請使用 `next/image` 組件讓系統自動優化圖像格式,而非 `<img>`。[瞭解詳情](https://nextjs.org/docs/basic-features/image-optimization)。"
|
|
2869
2719
|
},
|
|
2870
2720
|
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
|
2871
|
-
"message": "
|
|
2721
|
+
"message": "如要自動延遲載入圖像,請使用 `next/image` 組件,而非 `<img>`。[瞭解詳情](https://nextjs.org/docs/basic-features/image-optimization)。"
|
|
2872
2722
|
},
|
|
2873
2723
|
"node_modules/lighthouse-stack-packs/packs/next.js | prioritize-lcp-image": {
|
|
2874
2724
|
"message": "使用 `next/image` 組件並將「priority」設定為 True 以預先載入 LCP 圖片。[瞭解詳情](https://nextjs.org/docs/api-reference/next/image#priority)。"
|
|
@@ -2883,7 +2733,7 @@
|
|
|
2883
2733
|
"message": "建議您在 `Next.js` 設定中設定 `PurgeCSS` 以從樣式表中移除未使用的規則。[瞭解詳情](https://purgecss.com/guides/next.html)。"
|
|
2884
2734
|
},
|
|
2885
2735
|
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
|
|
2886
|
-
"message": "
|
|
2736
|
+
"message": "使用 `Webpack Bundle Analyzer` 偵測未使用的 JavaScript 程式碼。[瞭解詳情](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
|
|
2887
2737
|
},
|
|
2888
2738
|
"node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
|
|
2889
2739
|
"message": "建議您使用 `Next.js Analytics` 評估應用程式的實際效能。[瞭解詳情](https://nextjs.org/docs/advanced-features/measuring-performance)。"
|
|
@@ -2892,7 +2742,7 @@
|
|
|
2892
2742
|
"message": "請設定不可變動資產和 `Server-side Rendered` (SSR) 頁面的快取。[瞭解詳情](https://nextjs.org/docs/going-to-production#caching)。"
|
|
2893
2743
|
},
|
|
2894
2744
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
|
|
2895
|
-
"message": "
|
|
2745
|
+
"message": "請使用 `next/image` 組件調整圖像品質,而非 `<img>`。[瞭解詳情](https://nextjs.org/docs/basic-features/image-optimization)。"
|
|
2896
2746
|
},
|
|
2897
2747
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
|
|
2898
2748
|
"message": "請使用 `next/image` 組件設定適當的 `sizes`。[瞭解詳情](https://nextjs.org/docs/api-reference/next/image#sizes)。"
|