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": "Allowed with warning"
|
|
982
982
|
},
|
|
983
983
|
"core/audits/largest-contentful-paint-element.js | columnPercentOfLCP": {
|
|
984
|
-
"message": "% of LCP"
|
|
984
|
+
"message": "% of LCP"
|
|
985
985
|
},
|
|
986
986
|
"core/audits/largest-contentful-paint-element.js | columnPhase": {
|
|
987
|
-
"message": "Phase"
|
|
987
|
+
"message": "Phase"
|
|
988
988
|
},
|
|
989
989
|
"core/audits/largest-contentful-paint-element.js | columnTiming": {
|
|
990
|
-
"message": "Timing"
|
|
990
|
+
"message": "Timing"
|
|
991
991
|
},
|
|
992
992
|
"core/audits/largest-contentful-paint-element.js | description": {
|
|
993
993
|
"message": "This is the largest contentful element painted within the viewport. [Learn more about the Largest Contentful Paint element](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": "Load Delay"
|
|
996
|
+
"message": "Load Delay"
|
|
997
997
|
},
|
|
998
998
|
"core/audits/largest-contentful-paint-element.js | itemLoadTime": {
|
|
999
|
-
"message": "Load Time"
|
|
999
|
+
"message": "Load Time"
|
|
1000
1000
|
},
|
|
1001
1001
|
"core/audits/largest-contentful-paint-element.js | itemRenderDelay": {
|
|
1002
|
-
"message": "Render Delay"
|
|
1002
|
+
"message": "Render Delay"
|
|
1003
1003
|
},
|
|
1004
1004
|
"core/audits/largest-contentful-paint-element.js | itemTTFB": {
|
|
1005
|
-
"message": "TTFB"
|
|
1005
|
+
"message": "TTFB"
|
|
1006
1006
|
},
|
|
1007
1007
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1008
1008
|
"message": "Largest Contentful Paint element"
|
|
@@ -2138,156 +2138,6 @@
|
|
|
2138
2138
|
"core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
2139
2139
|
"message": "Consider adding 'unsafe-inline' (ignored by browsers supporting nonces/hashes) to be backward compatible with older browsers."
|
|
2140
2140
|
},
|
|
2141
|
-
"core/lib/deprecations-strings.js | authorizationCoveredByWildcard": {
|
|
2142
|
-
"message": "Authorization will not be covered by the wildcard symbol (*) in CORS `Access-Control-Allow-Headers` handling."
|
|
2143
|
-
},
|
|
2144
|
-
"core/lib/deprecations-strings.js | canRequestURLHTTPContainingNewline": {
|
|
2145
|
-
"message": "Resource requests whose URLs contained both removed whitespace `(n|r|t)` characters and less-than characters (`<`) are blocked. Please remove newlines and encode less-than characters from places like element attribute values in order to load these resources."
|
|
2146
|
-
},
|
|
2147
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesConnectionInfo": {
|
|
2148
|
-
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Navigation Timing 2."
|
|
2149
|
-
},
|
|
2150
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2151
|
-
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Paint Timing."
|
|
2152
|
-
},
|
|
2153
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2154
|
-
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: `nextHopProtocol` in Navigation Timing 2."
|
|
2155
|
-
},
|
|
2156
|
-
"core/lib/deprecations-strings.js | cookieWithTruncatingChar": {
|
|
2157
|
-
"message": "Cookies containing a `(0|r|n)` character will be rejected instead of truncated."
|
|
2158
|
-
},
|
|
2159
|
-
"core/lib/deprecations-strings.js | crossOriginAccessBasedOnDocumentDomain": {
|
|
2160
|
-
"message": "Relaxing the same-origin policy by setting `document.domain` is deprecated, and will be disabled by default. This deprecation warning is for a cross-origin access that was enabled by setting `document.domain`."
|
|
2161
|
-
},
|
|
2162
|
-
"core/lib/deprecations-strings.js | crossOriginWindowApi": {
|
|
2163
|
-
"message": "Triggering {PH1} from cross origin iframes has been deprecated and will be removed in the future."
|
|
2164
|
-
},
|
|
2165
|
-
"core/lib/deprecations-strings.js | cssSelectorInternalMediaControlsOverlayCastButton": {
|
|
2166
|
-
"message": "The `disableRemotePlayback` attribute should be used in order to disable the default Cast integration instead of using `-internal-media-controls-overlay-cast-button` selector."
|
|
2167
|
-
},
|
|
2168
|
-
"core/lib/deprecations-strings.js | deprecatedWithReplacement": {
|
|
2169
|
-
"message": "{PH1} is deprecated. Please use {PH2} instead."
|
|
2170
|
-
},
|
|
2171
|
-
"core/lib/deprecations-strings.js | deprecationExample": {
|
|
2172
|
-
"message": "This is an example of a translated deprecation issue message."
|
|
2173
|
-
},
|
|
2174
|
-
"core/lib/deprecations-strings.js | documentDomainSettingWithoutOriginAgentClusterHeader": {
|
|
2175
|
-
"message": "Relaxing the same-origin policy by setting `document.domain` is deprecated, and will be disabled by default. To continue using this feature, please opt-out of origin-keyed agent clusters by sending an `Origin-Agent-Cluster: ?0` header along with the HTTP response for the document and frames. See https://developer.chrome.com/blog/immutable-document-domain/ for more details."
|
|
2176
|
-
},
|
|
2177
|
-
"core/lib/deprecations-strings.js | eventPath": {
|
|
2178
|
-
"message": "`Event.path` is deprecated and will be removed. Please use `Event.composedPath()` instead."
|
|
2179
|
-
},
|
|
2180
|
-
"core/lib/deprecations-strings.js | expectCTHeader": {
|
|
2181
|
-
"message": "The `Expect-CT` header is deprecated and will be removed. Chrome requires Certificate Transparency for all publicly trusted certificates issued after April 30, 2018."
|
|
2182
|
-
},
|
|
2183
|
-
"core/lib/deprecations-strings.js | feature": {
|
|
2184
|
-
"message": "Check the feature status page for more details."
|
|
2185
|
-
},
|
|
2186
|
-
"core/lib/deprecations-strings.js | geolocationInsecureOrigin": {
|
|
2187
|
-
"message": "`getCurrentPosition()` and `watchPosition()` no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
|
2188
|
-
},
|
|
2189
|
-
"core/lib/deprecations-strings.js | geolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2190
|
-
"message": "`getCurrentPosition()` and `watchPosition()` are deprecated on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
|
2191
|
-
},
|
|
2192
|
-
"core/lib/deprecations-strings.js | getUserMediaInsecureOrigin": {
|
|
2193
|
-
"message": "`getUserMedia()` no longer works on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
|
2194
|
-
},
|
|
2195
|
-
"core/lib/deprecations-strings.js | hostCandidateAttributeGetter": {
|
|
2196
|
-
"message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` is deprecated. Please use `RTCPeerConnectionIceErrorEvent.address` or `RTCPeerConnectionIceErrorEvent.port` instead."
|
|
2197
|
-
},
|
|
2198
|
-
"core/lib/deprecations-strings.js | identityInCanMakePaymentEvent": {
|
|
2199
|
-
"message": "The merchant origin and arbitrary data from the `canmakepayment` service worker event are deprecated and will be removed: `topOrigin`, `paymentRequestOrigin`, `methodData`, `modifiers`."
|
|
2200
|
-
},
|
|
2201
|
-
"core/lib/deprecations-strings.js | insecurePrivateNetworkSubresourceRequest": {
|
|
2202
|
-
"message": "The website requested a subresource from a network that it could only access because of its users' privileged network position. These requests expose non-public devices and servers to the internet, increasing the risk of a cross-site request forgery (CSRF) attack, and/or information leakage. To mitigate these risks, Chrome deprecates requests to non-public subresources when initiated from non-secure contexts, and will start blocking them."
|
|
2203
|
-
},
|
|
2204
|
-
"core/lib/deprecations-strings.js | localCSSFileExtensionRejected": {
|
|
2205
|
-
"message": "CSS cannot be loaded from `file:` URLs unless they end in a `.css` file extension."
|
|
2206
|
-
},
|
|
2207
|
-
"core/lib/deprecations-strings.js | mediaSourceAbortRemove": {
|
|
2208
|
-
"message": "Using `SourceBuffer.abort()` to abort `remove()`'s asynchronous range removal is deprecated due to specification change. Support will be removed in the future. You should listen to the `updateend` event instead. `abort()` is intended to only abort an asynchronous media append or reset parser state."
|
|
2209
|
-
},
|
|
2210
|
-
"core/lib/deprecations-strings.js | mediaSourceDurationTruncatingBuffered": {
|
|
2211
|
-
"message": "Setting `MediaSource.duration` below the highest presentation timestamp of any buffered coded frames is deprecated due to specification change. Support for implicit removal of truncated buffered media will be removed in the future. You should instead perform explicit `remove(newDuration, oldDuration)` on all `sourceBuffers`, where `newDuration < oldDuration`."
|
|
2212
|
-
},
|
|
2213
|
-
"core/lib/deprecations-strings.js | milestone": {
|
|
2214
|
-
"message": "This change will go into effect with milestone {milestone}."
|
|
2215
|
-
},
|
|
2216
|
-
"core/lib/deprecations-strings.js | noSysexWebMIDIWithoutPermission": {
|
|
2217
|
-
"message": "Web MIDI will ask a permission to use even if the sysex is not specified in the `MIDIOptions`."
|
|
2218
|
-
},
|
|
2219
|
-
"core/lib/deprecations-strings.js | notificationInsecureOrigin": {
|
|
2220
|
-
"message": "The Notification API may no longer be used from insecure origins. You should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
|
2221
|
-
},
|
|
2222
|
-
"core/lib/deprecations-strings.js | notificationPermissionRequestedIframe": {
|
|
2223
|
-
"message": "Permission for the Notification API may no longer be requested from a cross-origin iframe. You should consider requesting permission from a top-level frame or opening a new window instead."
|
|
2224
|
-
},
|
|
2225
|
-
"core/lib/deprecations-strings.js | obsoleteWebRtcCipherSuite": {
|
|
2226
|
-
"message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
|
|
2227
|
-
},
|
|
2228
|
-
"core/lib/deprecations-strings.js | openWebDatabaseInsecureContext": {
|
|
2229
|
-
"message": "WebSQL in non-secure contexts is deprecated and will be removed soon. Please use Web Storage or Indexed Database."
|
|
2230
|
-
},
|
|
2231
|
-
"core/lib/deprecations-strings.js | overflowVisibleOnReplacedElement": {
|
|
2232
|
-
"message": "Specifying `overflow: visible` on img, video and canvas tags may cause them to produce visual content outside of the element bounds. See 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` is deprecated. Please use just-in-time install for payment handlers instead."
|
|
2236
|
-
},
|
|
2237
|
-
"core/lib/deprecations-strings.js | paymentRequestCSPViolation": {
|
|
2238
|
-
"message": "Your `PaymentRequest` call bypassed Content-Security-Policy (CSP) `connect-src` directive. This bypass is deprecated. Please add the payment method identifier from the `PaymentRequest` API (in `supportedMethods` field) to your CSP `connect-src` directive."
|
|
2239
|
-
},
|
|
2240
|
-
"core/lib/deprecations-strings.js | persistentQuotaType": {
|
|
2241
|
-
"message": "`StorageType.persistent` is deprecated. Please use standardized `navigator.storage` instead."
|
|
2242
|
-
},
|
|
2243
|
-
"core/lib/deprecations-strings.js | pictureSourceSrc": {
|
|
2244
|
-
"message": "`<source src>` with a `<picture>` parent is invalid and therefore ignored. Please use `<source srcset>` instead."
|
|
2245
|
-
},
|
|
2246
|
-
"core/lib/deprecations-strings.js | prefixedStorageInfo": {
|
|
2247
|
-
"message": "`window.webkitStorageInfo` is deprecated. Please use standardized `navigator.storage` instead."
|
|
2248
|
-
},
|
|
2249
|
-
"core/lib/deprecations-strings.js | requestedSubresourceWithEmbeddedCredentials": {
|
|
2250
|
-
"message": "Subresource requests whose URLs contain embedded credentials (e.g. `https://user:pass@host/`) are blocked."
|
|
2251
|
-
},
|
|
2252
|
-
"core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpFalse": {
|
|
2253
|
-
"message": "The constraint `DtlsSrtpKeyAgreement` is removed. You have specified a `false` value for this constraint, which is interpreted as an attempt to use the removed `SDES key negotiation` method. This functionality is removed; use a service that supports `DTLS key negotiation` instead."
|
|
2254
|
-
},
|
|
2255
|
-
"core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpTrue": {
|
|
2256
|
-
"message": "The constraint `DtlsSrtpKeyAgreement` is removed. You have specified a `true` value for this constraint, which had no effect, but you can remove this constraint for tidiness."
|
|
2257
|
-
},
|
|
2258
|
-
"core/lib/deprecations-strings.js | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
|
2259
|
-
"message": "`Complex Plan B SDP` detected. This dialect of the `Session Description Protocol` is no longer supported. Please use `Unified Plan SDP` instead."
|
|
2260
|
-
},
|
|
2261
|
-
"core/lib/deprecations-strings.js | rtcPeerConnectionSdpSemanticsPlanB": {
|
|
2262
|
-
"message": "`Plan B SDP semantics`, which is used when constructing an `RTCPeerConnection` with `{sdpSemantics:plan-b}`, is a legacy non-standard version of the `Session Description Protocol` that has been permanently deleted from the Web Platform. It is still available when building with `IS_FUCHSIA`, but we intend to delete it as soon as possible. Stop depending on it. See https://crbug.com/1302249 for status."
|
|
2263
|
-
},
|
|
2264
|
-
"core/lib/deprecations-strings.js | rtcpMuxPolicyNegotiate": {
|
|
2265
|
-
"message": "The `rtcpMuxPolicy` option is deprecated and will be removed."
|
|
2266
|
-
},
|
|
2267
|
-
"core/lib/deprecations-strings.js | sharedArrayBufferConstructedWithoutIsolation": {
|
|
2268
|
-
"message": "`SharedArrayBuffer` will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
|
2269
|
-
},
|
|
2270
|
-
"core/lib/deprecations-strings.js | textToSpeech_DisallowedByAutoplay": {
|
|
2271
|
-
"message": "`speechSynthesis.speak()` without user activation is deprecated and will be removed."
|
|
2272
|
-
},
|
|
2273
|
-
"core/lib/deprecations-strings.js | title": {
|
|
2274
|
-
"message": "Deprecated Feature Used"
|
|
2275
|
-
},
|
|
2276
|
-
"core/lib/deprecations-strings.js | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2277
|
-
"message": "Extensions should opt into cross-origin isolation to continue using `SharedArrayBuffer`. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
|
2278
|
-
},
|
|
2279
|
-
"core/lib/deprecations-strings.js | vendorSpecificApi": {
|
|
2280
|
-
"message": "{PH1} is vendor-specific. Please use the standard {PH2} instead."
|
|
2281
|
-
},
|
|
2282
|
-
"core/lib/deprecations-strings.js | xhrJSONEncodingDetection": {
|
|
2283
|
-
"message": "UTF-16 is not supported by response json in `XMLHttpRequest`"
|
|
2284
|
-
},
|
|
2285
|
-
"core/lib/deprecations-strings.js | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2286
|
-
"message": "Synchronous `XMLHttpRequest` on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check https://xhr.spec.whatwg.org/."
|
|
2287
|
-
},
|
|
2288
|
-
"core/lib/deprecations-strings.js | xrSupportsSession": {
|
|
2289
|
-
"message": "`supportsSession()` is deprecated. Please use `isSessionSupported()` and check the resolved boolean value instead."
|
|
2290
|
-
},
|
|
2291
2141
|
"core/lib/i18n/i18n.js | columnBlockingTime": {
|
|
2292
2142
|
"message": "Main-Thread Blocking Time"
|
|
2293
2143
|
},
|
|
@@ -2760,31 +2610,31 @@
|
|
|
2760
2610
|
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Resize Images` to resize images to a device appropriate size, reducing network payload sizes."
|
|
2761
2611
|
},
|
|
2762
2612
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | modern-image-formats": {
|
|
2763
|
-
"message": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically optimize image format
|
|
2613
|
+
"message": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically optimize image format. [Learn more](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": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically lazy
|
|
2616
|
+
"message": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically lazy-load images. [Learn more](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": "Use the `gatsby-plugin-image` component and set the `loading` prop to `eager`. [Learn more](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-plugin-image#shared-props)."
|
|
2619
|
+
"message": "Use the `gatsby-plugin-image` component and set the `loading` prop to `eager`. [Learn more](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": "Use the `Gatsby Script API` to defer loading of non
|
|
2622
|
+
"message": "Use the `Gatsby Script API` to defer loading of non-critical third-party scripts. [Learn more](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": "Use the `PurgeCSS` `Gatsby` plugin to remove unused rules from stylesheets
|
|
2625
|
+
"message": "Use the `PurgeCSS` `Gatsby` plugin to remove unused rules from stylesheets. [Learn more](https://purgecss.com/plugins/gatsby.html)."
|
|
2776
2626
|
},
|
|
2777
2627
|
"node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-javascript": {
|
|
2778
|
-
"message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code
|
|
2628
|
+
"message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn more](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": "Configure caching for immutable assets
|
|
2631
|
+
"message": "Configure caching for immutable assets. [Learn more](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": "Use the `gatsby-plugin-image` component instead of `<img>` to adjust image quality
|
|
2634
|
+
"message": "Use the `gatsby-plugin-image` component instead of `<img>` to adjust image quality. [Learn more](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": "Use the `gatsby-plugin-image` component to set appropriate `sizes`. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
|
|
2637
|
+
"message": "Use the `gatsby-plugin-image` component to set appropriate `sizes`. [Learn more](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": "Consider uploading your GIF to a service which will make it available to embed as an HTML5 video."
|
|
@@ -2865,10 +2715,10 @@
|
|
|
2865
2715
|
"message": "`<link rel=preload>` tags can be added by [modifying a themes's layout](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": "Use the `next/image` component instead of `<img>` to automatically optimize image format
|
|
2718
|
+
"message": "Use the `next/image` component instead of `<img>` to automatically optimize image format. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
|
|
2869
2719
|
},
|
|
2870
2720
|
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
|
2871
|
-
"message": "Use the `next/image` component instead of `<img>` to automatically lazy
|
|
2721
|
+
"message": "Use the `next/image` component instead of `<img>` to automatically lazy-load images. [Learn more](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": "Use the `next/image` component and set \"priority\" to true to preload LCP image. [Learn more](https://nextjs.org/docs/api-reference/next/image#priority)."
|
|
@@ -2883,7 +2733,7 @@
|
|
|
2883
2733
|
"message": "Consider setting up `PurgeCSS` in `Next.js` configuration to remove unused rules from stylesheets. [Learn more](https://purgecss.com/guides/next.html)."
|
|
2884
2734
|
},
|
|
2885
2735
|
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
|
|
2886
|
-
"message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code
|
|
2736
|
+
"message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn more](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": "Consider using `Next.js Analytics` to measure your app's real-world performance. [Learn more](https://nextjs.org/docs/advanced-features/measuring-performance)."
|
|
@@ -2892,7 +2742,7 @@
|
|
|
2892
2742
|
"message": "Configure caching for immutable assets and `Server-side Rendered` (SSR) pages. [Learn more](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": "Use the `next/image` component instead of `<img>` to adjust image quality
|
|
2745
|
+
"message": "Use the `next/image` component instead of `<img>` to adjust image quality. [Learn more](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": "Use the `next/image` component to set the appropriate `sizes`. [Learn more](https://nextjs.org/docs/api-reference/next/image#sizes)."
|
|
@@ -981,28 +981,28 @@
|
|
|
981
981
|
"message": "مسموح به مع التحذير"
|
|
982
982
|
},
|
|
983
983
|
"core/audits/largest-contentful-paint-element.js | columnPercentOfLCP": {
|
|
984
|
-
"message": "
|
|
984
|
+
"message": "نسبة سرعة عرض أكبر محتوى مرئي"
|
|
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
|
-
"message": "TTFB"
|
|
1005
|
+
"message": "مدة تحميل أول بايت (TTFB)"
|
|
1006
1006
|
},
|
|
1007
1007
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1008
1008
|
"message": "عنصر \"سرعة عرض أكبر جزء من المحتوى على الصفحة\""
|
|
@@ -2138,156 +2138,6 @@
|
|
|
2138
2138
|
"core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
2139
2139
|
"message": "ننصحك بإضافة الأمر التوجيهي 'unsafe-inline' (الذي تتجاهله المتصفِّحات المتوافقة مع nonces/hashes) لجعل CSP متوافقة مع أنظمة المتصفِّحات القديمة."
|
|
2140
2140
|
},
|
|
2141
|
-
"core/lib/deprecations-strings.js | authorizationCoveredByWildcard": {
|
|
2142
|
-
"message": "لن يشمل رمز حرف البدل (*) الإذن في معالجة العنوان `Access-Control-Allow-Headers` في سياسة Cross-Origin Resource Sharing (CORS)."
|
|
2143
|
-
},
|
|
2144
|
-
"core/lib/deprecations-strings.js | canRequestURLHTTPContainingNewline": {
|
|
2145
|
-
"message": "يتم حظر طلبات الموارد التي تتضمّن عناوين URL الخاصة بها كلاً من أحرف `(n|r|t)` للمسافة البيضاء وأحرف \"أقل من\" (`<`) التي تمت إزالتها. لتحميل هذه الموارد، يُرجى إزالة السطور الجديدة وترميز أحرف \"أقل من\" من خلال مواضع مثل قيم سمات العناصر."
|
|
2146
|
-
},
|
|
2147
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesConnectionInfo": {
|
|
2148
|
-
"message": "تم إيقاف `chrome.loadTimes()` نهائيًا، ويمكنك بدلاً منها استخدام واجهة برمجة التطبيقات Navigation Timing 2 الموحَّدة."
|
|
2149
|
-
},
|
|
2150
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2151
|
-
"message": "تم إيقاف واجهة برمجة التطبيقات `chrome.loadTimes()` نهائيًا. وبدلاً منها، يمكنك استخدام واجهة برمجة التطبيقات الموحَّدة Paint Timing."
|
|
2152
|
-
},
|
|
2153
|
-
"core/lib/deprecations-strings.js | chromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2154
|
-
"message": "تم إيقاف واجهة برمجة التطبيقات `chrome.loadTimes()` نهائيًا. وبدلاً منها، يمكنك استخدام واجهة برمجة التطبيقات الموحَّدة Navigation Timing 2 التي تتضمّن `nextHopProtocol`."
|
|
2155
|
-
},
|
|
2156
|
-
"core/lib/deprecations-strings.js | cookieWithTruncatingChar": {
|
|
2157
|
-
"message": "سيتم رفض ملفات تعريف الارتباط التي تتضمّن الحرف `(0|r|n)` بدلاً من اقتطاعها."
|
|
2158
|
-
},
|
|
2159
|
-
"core/lib/deprecations-strings.js | crossOriginAccessBasedOnDocumentDomain": {
|
|
2160
|
-
"message": "إنّ ميزة تخفيف قيود السياسة المشتركة المصدر من خلال ضبط `document.domain` تم إيقافها نهائيًا، وستصبح غير مفعَّلة تلقائيًا. ويتعلّق تحذير الإيقاف النهائي هذا بإذن الوصول من مصادر متعددة والذي تم تفعيله من خلال ضبط `document.domain`."
|
|
2161
|
-
},
|
|
2162
|
-
"core/lib/deprecations-strings.js | crossOriginWindowApi": {
|
|
2163
|
-
"message": "إنّ ميزة تنفيذ {PH1} المستنِدة إلى إطارات iframe من مصادر متعددة تم إيقافها نهائيًا وستتم إزالتها في المستقبل."
|
|
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 للمستند والإطارات. لمعرفة مزيد من التفاصيل، يمكنك الاطّلاع على 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 توفُّر شهادة الشفافية لجميع الشهادات الموثوق بها التي تم إصدارها بشكل علني بعد 30 نيسان (أبريل) 2018."
|
|
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` تم إيقافهما نهائيًا وستتم إزالتهما: `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) من عناوين URL للملفات `file:` ما لم تنتهِ الملفات بالامتداد `.css`."
|
|
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` على قيمة أقل من الحد الأقصى للطابع الزمني المخصَّص لعرض أي إطارات تم ترميزها وتخزينها مؤقتًا. إنّ الإزالة الضمنية للوسائط المُقتطَعة التي تم تخزينها مؤقتًا لن تكون متاحة في المستقبل. وبدلاً من ذلك، يجب تطبيق `remove(newDuration, oldDuration)` بشكل واضح على جميع `sourceBuffers` التي تتوفّر بها `newDuration < oldDuration`."
|
|
2212
|
-
},
|
|
2213
|
-
"core/lib/deprecations-strings.js | milestone": {
|
|
2214
|
-
"message": "سيسري هذا التغيير عند تحديد المرحلة {milestone}."
|
|
2215
|
-
},
|
|
2216
|
-
"core/lib/deprecations-strings.js | noSysexWebMIDIWithoutPermission": {
|
|
2217
|
-
"message": "ستطلب واجهة برمجة التطبيقات Web MIDI إذنًا للاستخدام حتى في حال عدم تحديد رسائل النظام الحصرية (Sysex) في `MIDIOptions`."
|
|
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": "قد تتوقّف إمكانية طلب إذن لواجهة برمجة التطبيقات Notification API من أحد إطارات iframe من مصادر متعددة. يجب مراعاة طلب إذن من إطار عالي المستوى أو فتح نافذة جديدة بدلاً من ذلك."
|
|
2224
|
-
},
|
|
2225
|
-
"core/lib/deprecations-strings.js | obsoleteWebRtcCipherSuite": {
|
|
2226
|
-
"message": "يتفاوض شريكك لاستخدام إصدار (D) القديم من بروتوكول أمان طبقة النقل (TLS). يُرجى التحقّق من الأمر مع شريكك لحلّ هذه المشكلة."
|
|
2227
|
-
},
|
|
2228
|
-
"core/lib/deprecations-strings.js | openWebDatabaseInsecureContext": {
|
|
2229
|
-
"message": "تم إيقاف WebSQL نهائيًا في السياقات غير الآمنة وستتم إزالتها قريبًا. يُرجى استخدام Web Storage أو Indexed Database."
|
|
2230
|
-
},
|
|
2231
|
-
"core/lib/deprecations-strings.js | overflowVisibleOnReplacedElement": {
|
|
2232
|
-
"message": "في حال تحديد القيمة `overflow: visible` ضمن علامات img وvideo وcanvas، قد يُعرَض محتوى مرئي خارج حدود العنصر. يُرجى الاطّلاع على الرابط 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` نهائيًا. يُرجى استخدام ميزة التثبيت الفوري (JIT) مع تطبيقات معالجة عمليات الدفع."
|
|
2236
|
-
},
|
|
2237
|
-
"core/lib/deprecations-strings.js | paymentRequestCSPViolation": {
|
|
2238
|
-
"message": "تجاوز طلب البيانات من واجهة برمجة التطبيقات `PaymentRequest` التوجيه `connect-src` في Content-Security-Policy (سياسة أمان المحتوى). تم إيقاف هذا التجاوز نهائيًا. يُرجى إضافة معرِّف طريقة الدفع من واجهة برمجة التطبيقات `PaymentRequest` (في حقل `supportedMethods`) إلى توجيه `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": "إنّ استخدام `<source src>` مع العنصر الرئيسي `<picture>` غير صالح، وبالتالي سيتم تجاهله. يُرجى استخدام `<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": "يتم حظر طلبات الموارد الفرعية إذا كانت عناوين URL الخاصة بها تحتوي على بيانات اعتماد مُضمَّنة (مثل `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": "إنّ إصدار `Plan B SDP semantics` المُستخدَم مع `{sdpSemantics:plan-b}` لتصميم `RTCPeerConnection` هو إصدار قديم وغير عادي من `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": "لا يتوفّر الترميز UTF-16 من خلال استجابة تنسيق json في واجهة برمجة التطبيقات `XMLHttpRequest`."
|
|
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 إلى خدمة ستتيح تضمينه في شكل فيديو HTML5."
|
|
@@ -2865,10 +2715,10 @@
|
|
|
2865
2715
|
"message": "يمكن إضافة علامات `<link rel=preload>` عن طريق [تعديل تنسيق التصميمات](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": "يمكنك استخدام المكوِّن `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` وضبط \"الأولوية\" على \"صحيح\" لإجراء التحميل المُسبق لصورة المقياس \"سرعة عرض أكبر جزء من المحتوى على الصفحة (LCP)\". [مزيد من المعلومات](https://nextjs.org/docs/api-reference/next/image#priority)"
|
|
@@ -2883,7 +2733,7 @@
|
|
|
2883
2733
|
"message": "يمكنك إعداد `PurgeCSS` في عملية ضبط `Next.js` لإزالة أي قواعد غير مستخدَمة من أوراق الأنماط. [مزيد من المعلومات](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)"
|