lighthouse 12.4.0 → 12.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/audits/audit.js +3 -1
- package/core/audits/bootup-time.js +1 -1
- package/core/audits/byte-efficiency/duplicated-javascript.js +1 -1
- package/core/audits/byte-efficiency/efficient-animated-content.js +1 -1
- package/core/audits/byte-efficiency/legacy-javascript.d.ts +0 -65
- package/core/audits/byte-efficiency/legacy-javascript.js +11 -363
- package/core/audits/byte-efficiency/modern-image-formats.js +1 -1
- package/core/audits/byte-efficiency/offscreen-images.js +4 -3
- package/core/audits/byte-efficiency/render-blocking-resources.js +6 -3
- package/core/audits/byte-efficiency/unminified-css.js +2 -1
- package/core/audits/byte-efficiency/unminified-javascript.js +2 -1
- package/core/audits/byte-efficiency/unused-css-rules.js +1 -1
- package/core/audits/byte-efficiency/unused-javascript.js +2 -2
- package/core/audits/byte-efficiency/uses-long-cache-ttl.js +1 -1
- package/core/audits/byte-efficiency/uses-optimized-images.js +1 -1
- package/core/audits/byte-efficiency/uses-responsive-images.js +1 -1
- package/core/audits/byte-efficiency/uses-text-compression.js +2 -1
- package/core/audits/critical-request-chains.js +5 -3
- package/core/audits/dobetterweb/dom-size.js +1 -1
- package/core/audits/dobetterweb/uses-http2.js +1 -1
- package/core/audits/insights/cls-culprits-insight.js +1 -1
- package/core/audits/insights/document-latency-insight.js +1 -1
- package/core/audits/insights/dom-size-insight.js +1 -1
- package/core/audits/insights/{long-critical-network-tree-insight.d.ts → duplicated-javascript-insight.d.ts} +3 -3
- package/core/audits/insights/duplicated-javascript-insight.js +54 -0
- package/core/audits/insights/font-display-insight.js +8 -7
- package/core/audits/insights/forced-reflow-insight.d.ts +10 -0
- package/core/audits/insights/forced-reflow-insight.js +64 -12
- package/core/audits/insights/image-delivery-insight.js +9 -10
- package/core/audits/insights/insight-audit.js +9 -4
- package/core/audits/insights/interaction-to-next-paint-insight.js +1 -1
- package/core/audits/insights/lcp-discovery-insight.js +1 -1
- package/core/audits/insights/lcp-phases-insight.js +1 -1
- package/core/audits/insights/network-dependency-tree-insight.d.ts +11 -0
- package/core/audits/insights/{long-critical-network-tree-insight.js → network-dependency-tree-insight.js} +7 -7
- package/core/audits/insights/render-blocking-insight.js +1 -1
- package/core/audits/insights/slow-css-selector-insight.js +1 -1
- package/core/audits/insights/third-parties-insight.js +1 -1
- package/core/audits/insights/use-cache-insight.d.ts +11 -0
- package/core/audits/insights/use-cache-insight.js +61 -0
- package/core/audits/insights/viewport-insight.js +1 -1
- package/core/audits/largest-contentful-paint-element.js +7 -3
- package/core/audits/layout-shifts.js +5 -2
- package/core/audits/lcp-lazy-loaded.js +1 -1
- package/core/audits/long-tasks.js +6 -4
- package/core/audits/mainthread-work-breakdown.js +1 -1
- package/core/audits/metrics/first-contentful-paint.js +4 -2
- package/core/audits/metrics/interactive.js +6 -3
- package/core/audits/metrics/largest-contentful-paint.js +7 -3
- package/core/audits/metrics/max-potential-fid.js +6 -3
- package/core/audits/metrics/speed-index.js +6 -3
- package/core/audits/metrics/total-blocking-time.js +6 -3
- package/core/audits/metrics.js +4 -3
- package/core/audits/predictive-perf.js +4 -3
- package/core/audits/prioritize-lcp-image.js +5 -3
- package/core/audits/redirects.js +4 -2
- package/core/audits/script-treemap-data.js +8 -4
- package/core/audits/third-party-facades.js +1 -1
- package/core/audits/third-party-summary.js +1 -1
- package/core/audits/uses-rel-preconnect.js +7 -5
- package/core/audits/uses-rel-preload.js +5 -3
- package/core/computed/computed-artifact.d.ts +5 -1
- package/core/computed/computed-artifact.js +23 -2
- package/core/computed/critical-request-chains.d.ts +5 -1
- package/core/computed/critical-request-chains.js +4 -4
- package/core/computed/js-bundles.d.ts +1 -1
- package/core/computed/metrics/first-contentful-paint-all-frames.js +1 -1
- package/core/computed/metrics/first-contentful-paint.js +1 -1
- package/core/computed/metrics/interactive.js +1 -1
- package/core/computed/metrics/lantern-first-contentful-paint.js +1 -1
- package/core/computed/metrics/lantern-interactive.js +1 -1
- package/core/computed/metrics/lantern-largest-contentful-paint.js +1 -1
- package/core/computed/metrics/lantern-max-potential-fid.js +1 -1
- package/core/computed/metrics/lantern-metric.js +1 -1
- package/core/computed/metrics/lantern-speed-index.js +1 -1
- package/core/computed/metrics/lantern-total-blocking-time.js +1 -1
- package/core/computed/metrics/largest-contentful-paint-all-frames.js +1 -1
- package/core/computed/metrics/largest-contentful-paint.js +1 -1
- package/core/computed/metrics/lcp-breakdown.js +1 -1
- package/core/computed/metrics/max-potential-fid.js +1 -1
- package/core/computed/metrics/metric.js +2 -0
- package/core/computed/metrics/speed-index.js +1 -1
- package/core/computed/metrics/time-to-first-byte.js +1 -1
- package/core/computed/metrics/timing-summary.d.ts +5 -2
- package/core/computed/metrics/timing-summary.js +8 -4
- package/core/computed/metrics/total-blocking-time.js +1 -1
- package/core/computed/module-duplication.d.ts +1 -1
- package/core/computed/navigation-insights.d.ts +11 -3
- package/core/computed/navigation-insights.js +7 -4
- package/core/computed/page-dependency-graph.d.ts +7 -3
- package/core/computed/page-dependency-graph.js +6 -5
- package/core/computed/tbt-impact-tasks.js +1 -1
- package/core/computed/trace-engine-result.d.ts +36 -2
- package/core/computed/trace-engine-result.js +119 -25
- package/core/computed/unused-javascript-summary.d.ts +2 -2
- package/core/computed/unused-javascript-summary.js +1 -1
- package/core/config/default-config.js +19 -15
- package/core/config/experimental-config.js +19 -0
- package/core/gather/gatherers/source-maps.d.ts +1 -0
- package/core/gather/gatherers/source-maps.js +3 -0
- package/core/gather/gatherers/trace-elements.d.ts +4 -4
- package/core/gather/gatherers/trace-elements.js +8 -4
- package/core/gather/gatherers/trace.js +5 -0
- package/core/lib/bf-cache-strings.d.ts +0 -122
- package/core/lib/bf-cache-strings.js +1 -2
- package/core/lib/deprecation-description.js +2 -1
- package/core/lib/legacy-javascript/legacy-javascript.d.ts +29 -0
- package/core/lib/legacy-javascript/legacy-javascript.js +351 -0
- package/core/lib/legacy-javascript/polyfill-graph-data.json +93 -0
- package/core/lib/legacy-javascript/polyfill-module-data.json +623 -0
- package/core/lib/trace-engine.d.ts +6 -1
- package/core/lib/trace-engine.js +1 -2
- package/package.json +10 -8
- package/shared/localization/locales/ar-XB.json +783 -513
- package/shared/localization/locales/ar.json +783 -513
- package/shared/localization/locales/bg.json +933 -663
- package/shared/localization/locales/ca.json +925 -655
- package/shared/localization/locales/cs.json +926 -656
- package/shared/localization/locales/da.json +926 -656
- package/shared/localization/locales/de.json +803 -533
- package/shared/localization/locales/el.json +928 -658
- package/shared/localization/locales/en-GB.json +929 -659
- package/shared/localization/locales/en-US.json +593 -551
- package/shared/localization/locales/en-XA.json +28 -508
- package/shared/localization/locales/en-XL.json +593 -551
- package/shared/localization/locales/es-419.json +928 -658
- package/shared/localization/locales/es.json +787 -517
- package/shared/localization/locales/fi.json +925 -655
- package/shared/localization/locales/fil.json +929 -659
- package/shared/localization/locales/fr.json +927 -657
- package/shared/localization/locales/he.json +795 -528
- package/shared/localization/locales/hi.json +798 -528
- package/shared/localization/locales/hr.json +929 -659
- package/shared/localization/locales/hu.json +926 -656
- package/shared/localization/locales/id.json +926 -656
- package/shared/localization/locales/it.json +930 -660
- package/shared/localization/locales/ja.json +927 -657
- package/shared/localization/locales/ko.json +936 -666
- package/shared/localization/locales/lt.json +933 -663
- package/shared/localization/locales/lv.json +809 -539
- package/shared/localization/locales/nl.json +925 -655
- package/shared/localization/locales/no.json +928 -658
- package/shared/localization/locales/pl.json +927 -657
- package/shared/localization/locales/pt-PT.json +841 -571
- package/shared/localization/locales/pt.json +841 -571
- package/shared/localization/locales/ro.json +925 -655
- package/shared/localization/locales/ru.json +935 -668
- package/shared/localization/locales/sk.json +925 -655
- package/shared/localization/locales/sl.json +927 -657
- package/shared/localization/locales/sr-Latn.json +925 -655
- package/shared/localization/locales/sr.json +925 -655
- package/shared/localization/locales/sv.json +936 -666
- package/shared/localization/locales/ta.json +935 -668
- package/shared/localization/locales/te.json +785 -515
- package/shared/localization/locales/th.json +813 -543
- package/shared/localization/locales/tr.json +927 -657
- package/shared/localization/locales/uk.json +795 -525
- package/shared/localization/locales/vi.json +929 -659
- package/shared/localization/locales/zh-HK.json +926 -656
- package/shared/localization/locales/zh-TW.json +784 -514
- package/shared/localization/locales/zh.json +926 -656
- package/tsconfig.json +2 -1
- package/types/artifacts.d.ts +2 -1
- package/core/audits/byte-efficiency/polyfill-graph-data.json +0 -53
|
@@ -660,7 +660,10 @@
|
|
|
660
660
|
"message": "Use video formats for animated content"
|
|
661
661
|
},
|
|
662
662
|
"core/audits/byte-efficiency/legacy-javascript.js | description": {
|
|
663
|
-
"message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers.
|
|
663
|
+
"message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile [Baseline](https://web.dev/baseline) features, unless you know you must support legacy browsers. [Learn why most sites can deploy ES6+ code without transpiling](https://philipwalton.com/articles/the-state-of-es5-on-the-web/)"
|
|
664
|
+
},
|
|
665
|
+
"core/audits/byte-efficiency/legacy-javascript.js | detectedCoreJs2Warning": {
|
|
666
|
+
"message": "Version 2 of core-js was detected on the page. You should upgrade to version 3 for many performance improvements."
|
|
664
667
|
},
|
|
665
668
|
"core/audits/byte-efficiency/legacy-javascript.js | title": {
|
|
666
669
|
"message": "Avoid serving legacy JavaScript to modern browsers"
|
|
@@ -761,6 +764,18 @@
|
|
|
761
764
|
"core/audits/byte-efficiency/uses-text-compression.js | title": {
|
|
762
765
|
"message": "Enable text compression"
|
|
763
766
|
},
|
|
767
|
+
"core/audits/clickjacking-mitigation.js | columnSeverity": {
|
|
768
|
+
"message": "Severity"
|
|
769
|
+
},
|
|
770
|
+
"core/audits/clickjacking-mitigation.js | description": {
|
|
771
|
+
"message": "The `X-Frame-Options` (XFO) header or the `frame-ancestors` directive in the `Content-Security-Policy` (CSP) header control where a page can be embedded. These can mitigate clickjacking attacks by blocking some or all sites from embedding the page. [Learn more about mitigating clickjacking](https://developer.chrome.com/docs/lighthouse/best-practices/clickjacking-mitigation)."
|
|
772
|
+
},
|
|
773
|
+
"core/audits/clickjacking-mitigation.js | noClickjackingMitigation": {
|
|
774
|
+
"message": "No frame control policy found"
|
|
775
|
+
},
|
|
776
|
+
"core/audits/clickjacking-mitigation.js | title": {
|
|
777
|
+
"message": "Mitigate clickjacking with XFO or CSP"
|
|
778
|
+
},
|
|
764
779
|
"core/audits/critical-request-chains.js | description": {
|
|
765
780
|
"message": "The Critical Request Chains below show you what resources are loaded with a high priority. Consider reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load. [Learn how to avoid chaining critical requests](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains/)."
|
|
766
781
|
},
|
|
@@ -1040,6 +1055,9 @@
|
|
|
1040
1055
|
"core/audits/image-size-responsive.js | title": {
|
|
1041
1056
|
"message": "Serves images with appropriate resolution"
|
|
1042
1057
|
},
|
|
1058
|
+
"core/audits/insights/cls-culprits-insight.js | columnScore": {
|
|
1059
|
+
"message": "Layout shift score"
|
|
1060
|
+
},
|
|
1043
1061
|
"core/audits/is-on-https.js | allowed": {
|
|
1044
1062
|
"message": "Allowed"
|
|
1045
1063
|
},
|
|
@@ -1658,6 +1676,9 @@
|
|
|
1658
1676
|
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1659
1677
|
"message": "First Paint Improvements"
|
|
1660
1678
|
},
|
|
1679
|
+
"core/config/default-config.js | insightGroupTitle": {
|
|
1680
|
+
"message": "Insights"
|
|
1681
|
+
},
|
|
1661
1682
|
"core/config/default-config.js | metricGroupTitle": {
|
|
1662
1683
|
"message": "Metrics"
|
|
1663
1684
|
},
|
|
@@ -1721,351 +1742,6 @@
|
|
|
1721
1742
|
"core/gather/timespan-runner.js | warningNavigationDetected": {
|
|
1722
1743
|
"message": "A page navigation was detected during the run. Using timespan mode to audit page navigations is not recommended. Use navigation mode to audit page navigations for better third-party attribution and main thread detection."
|
|
1723
1744
|
},
|
|
1724
|
-
"core/lib/bf-cache-strings.js | HTTPMethodNotGET": {
|
|
1725
|
-
"message": "Only pages loaded via a GET request are eligible for back/forward cache."
|
|
1726
|
-
},
|
|
1727
|
-
"core/lib/bf-cache-strings.js | HTTPStatusNotOK": {
|
|
1728
|
-
"message": "Only pages with a status code of 2XX can be cached."
|
|
1729
|
-
},
|
|
1730
|
-
"core/lib/bf-cache-strings.js | JavaScriptExecution": {
|
|
1731
|
-
"message": "Chrome detected an attempt to execute JavaScript while in the cache."
|
|
1732
|
-
},
|
|
1733
|
-
"core/lib/bf-cache-strings.js | appBanner": {
|
|
1734
|
-
"message": "Pages that requested an AppBanner are not currently eligible for back/forward cache."
|
|
1735
|
-
},
|
|
1736
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabled": {
|
|
1737
|
-
"message": "Back/forward cache is disabled by flags. Visit chrome://flags/#back-forward-cache to enable it locally on this device."
|
|
1738
|
-
},
|
|
1739
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabledByCommandLine": {
|
|
1740
|
-
"message": "Back/forward cache is disabled by the command line."
|
|
1741
|
-
},
|
|
1742
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabledByLowMemory": {
|
|
1743
|
-
"message": "Back/forward cache is disabled due to insufficient memory."
|
|
1744
|
-
},
|
|
1745
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabledForDelegate": {
|
|
1746
|
-
"message": "Back/forward cache is not supported by delegate."
|
|
1747
|
-
},
|
|
1748
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabledForPrerender": {
|
|
1749
|
-
"message": "Back/forward cache is disabled for prerenderer."
|
|
1750
|
-
},
|
|
1751
|
-
"core/lib/bf-cache-strings.js | broadcastChannel": {
|
|
1752
|
-
"message": "The page cannot be cached because it has a BroadcastChannel instance with registered listeners."
|
|
1753
|
-
},
|
|
1754
|
-
"core/lib/bf-cache-strings.js | cacheControlNoStore": {
|
|
1755
|
-
"message": "Pages with cache-control:no-store header cannot enter back/forward cache."
|
|
1756
|
-
},
|
|
1757
|
-
"core/lib/bf-cache-strings.js | cacheFlushed": {
|
|
1758
|
-
"message": "The cache was intentionally cleared."
|
|
1759
|
-
},
|
|
1760
|
-
"core/lib/bf-cache-strings.js | cacheLimit": {
|
|
1761
|
-
"message": "The page was evicted from the cache to allow another page to be cached."
|
|
1762
|
-
},
|
|
1763
|
-
"core/lib/bf-cache-strings.js | containsPlugins": {
|
|
1764
|
-
"message": "Pages containing plugins are not currently eligible for back/forward cache."
|
|
1765
|
-
},
|
|
1766
|
-
"core/lib/bf-cache-strings.js | contentFileChooser": {
|
|
1767
|
-
"message": "Pages that use FileChooser API are not eligible for back/forward cache."
|
|
1768
|
-
},
|
|
1769
|
-
"core/lib/bf-cache-strings.js | contentFileSystemAccess": {
|
|
1770
|
-
"message": "Pages that use File System Access API are not eligible for back/forward cache."
|
|
1771
|
-
},
|
|
1772
|
-
"core/lib/bf-cache-strings.js | contentMediaDevicesDispatcherHost": {
|
|
1773
|
-
"message": "Pages that use Media Device Dispatcher are not eligible for back/forward cache."
|
|
1774
|
-
},
|
|
1775
|
-
"core/lib/bf-cache-strings.js | contentMediaPlay": {
|
|
1776
|
-
"message": "A media player was playing upon navigating away."
|
|
1777
|
-
},
|
|
1778
|
-
"core/lib/bf-cache-strings.js | contentMediaSession": {
|
|
1779
|
-
"message": "Pages that use MediaSession API and set a playback state are not eligible for back/forward cache."
|
|
1780
|
-
},
|
|
1781
|
-
"core/lib/bf-cache-strings.js | contentMediaSessionService": {
|
|
1782
|
-
"message": "Pages that use MediaSession API and set action handlers are not eligible for back/forward cache."
|
|
1783
|
-
},
|
|
1784
|
-
"core/lib/bf-cache-strings.js | contentScreenReader": {
|
|
1785
|
-
"message": "Back/forward cache is disabled due to screen reader."
|
|
1786
|
-
},
|
|
1787
|
-
"core/lib/bf-cache-strings.js | contentSecurityHandler": {
|
|
1788
|
-
"message": "Pages that use SecurityHandler are not eligible for back/forward cache."
|
|
1789
|
-
},
|
|
1790
|
-
"core/lib/bf-cache-strings.js | contentSerial": {
|
|
1791
|
-
"message": "Pages that use Serial API are not eligible for back/forward cache."
|
|
1792
|
-
},
|
|
1793
|
-
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1794
|
-
"message": "Pages that use WebAuthentication API are not eligible for back/forward cache."
|
|
1795
|
-
},
|
|
1796
|
-
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1797
|
-
"message": "Pages that use WebBluetooth API are not eligible for back/forward cache."
|
|
1798
|
-
},
|
|
1799
|
-
"core/lib/bf-cache-strings.js | contentWebUSB": {
|
|
1800
|
-
"message": "Pages that use WebUSB API are not eligible for back/forward cache."
|
|
1801
|
-
},
|
|
1802
|
-
"core/lib/bf-cache-strings.js | cookieDisabled": {
|
|
1803
|
-
"message": "Back/forward cache is disabled because cookies are disabled on a page that uses `Cache-Control: no-store`."
|
|
1804
|
-
},
|
|
1805
|
-
"core/lib/bf-cache-strings.js | dedicatedWorkerOrWorklet": {
|
|
1806
|
-
"message": "Pages that use a dedicated worker or worklet are not currently eligible for back/forward cache."
|
|
1807
|
-
},
|
|
1808
|
-
"core/lib/bf-cache-strings.js | documentLoaded": {
|
|
1809
|
-
"message": "The document did not finish loading before navigating away."
|
|
1810
|
-
},
|
|
1811
|
-
"core/lib/bf-cache-strings.js | embedderAppBannerManager": {
|
|
1812
|
-
"message": "App Banner was present upon navigating away."
|
|
1813
|
-
},
|
|
1814
|
-
"core/lib/bf-cache-strings.js | embedderChromePasswordManagerClientBindCredentialManager": {
|
|
1815
|
-
"message": "Chrome Password Manager was present upon navigating away."
|
|
1816
|
-
},
|
|
1817
|
-
"core/lib/bf-cache-strings.js | embedderDomDistillerSelfDeletingRequestDelegate": {
|
|
1818
|
-
"message": "DOM distillation was in progress upon navigating away."
|
|
1819
|
-
},
|
|
1820
|
-
"core/lib/bf-cache-strings.js | embedderDomDistillerViewerSource": {
|
|
1821
|
-
"message": "DOM Distiller Viewer was present upon navigating away."
|
|
1822
|
-
},
|
|
1823
|
-
"core/lib/bf-cache-strings.js | embedderExtensionMessaging": {
|
|
1824
|
-
"message": "Back/forward cache is disabled due to extensions using messaging API."
|
|
1825
|
-
},
|
|
1826
|
-
"core/lib/bf-cache-strings.js | embedderExtensionMessagingForOpenPort": {
|
|
1827
|
-
"message": "Extensions with long-lived connection should close the connection before entering back/forward cache."
|
|
1828
|
-
},
|
|
1829
|
-
"core/lib/bf-cache-strings.js | embedderExtensionSentMessageToCachedFrame": {
|
|
1830
|
-
"message": "Extensions with long-lived connection attempted to send messages to frames in back/forward cache."
|
|
1831
|
-
},
|
|
1832
|
-
"core/lib/bf-cache-strings.js | embedderExtensions": {
|
|
1833
|
-
"message": "Back/forward cache is disabled due to extensions."
|
|
1834
|
-
},
|
|
1835
|
-
"core/lib/bf-cache-strings.js | embedderModalDialog": {
|
|
1836
|
-
"message": "Modal dialog such as form resubmission or http password dialog was shown for the page upon navigating away."
|
|
1837
|
-
},
|
|
1838
|
-
"core/lib/bf-cache-strings.js | embedderOfflinePage": {
|
|
1839
|
-
"message": "The offline page was shown upon navigating away."
|
|
1840
|
-
},
|
|
1841
|
-
"core/lib/bf-cache-strings.js | embedderOomInterventionTabHelper": {
|
|
1842
|
-
"message": "Out-Of-Memory Intervention bar was present upon navigating away."
|
|
1843
|
-
},
|
|
1844
|
-
"core/lib/bf-cache-strings.js | embedderPermissionRequestManager": {
|
|
1845
|
-
"message": "There were permission requests upon navigating away."
|
|
1846
|
-
},
|
|
1847
|
-
"core/lib/bf-cache-strings.js | embedderPopupBlockerTabHelper": {
|
|
1848
|
-
"message": "Popup blocker was present upon navigating away."
|
|
1849
|
-
},
|
|
1850
|
-
"core/lib/bf-cache-strings.js | embedderSafeBrowsingThreatDetails": {
|
|
1851
|
-
"message": "Safe Browsing details were shown upon navigating away."
|
|
1852
|
-
},
|
|
1853
|
-
"core/lib/bf-cache-strings.js | embedderSafeBrowsingTriggeredPopupBlocker": {
|
|
1854
|
-
"message": "Safe Browsing considered this page to be abusive and blocked popup."
|
|
1855
|
-
},
|
|
1856
|
-
"core/lib/bf-cache-strings.js | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
|
|
1857
|
-
"message": "A service worker was activated while the page was in back/forward cache."
|
|
1858
|
-
},
|
|
1859
|
-
"core/lib/bf-cache-strings.js | errorDocument": {
|
|
1860
|
-
"message": "Back/forward cache is disabled due to a document error."
|
|
1861
|
-
},
|
|
1862
|
-
"core/lib/bf-cache-strings.js | fencedFramesEmbedder": {
|
|
1863
|
-
"message": "Pages using FencedFrames cannot be stored in bfcache."
|
|
1864
|
-
},
|
|
1865
|
-
"core/lib/bf-cache-strings.js | foregroundCacheLimit": {
|
|
1866
|
-
"message": "The page was evicted from the cache to allow another page to be cached."
|
|
1867
|
-
},
|
|
1868
|
-
"core/lib/bf-cache-strings.js | grantedMediaStreamAccess": {
|
|
1869
|
-
"message": "Pages that have granted media stream access are not currently eligible for back/forward cache."
|
|
1870
|
-
},
|
|
1871
|
-
"core/lib/bf-cache-strings.js | haveInnerContents": {
|
|
1872
|
-
"message": "Pages that use portals are not currently eligible for back/forward cache."
|
|
1873
|
-
},
|
|
1874
|
-
"core/lib/bf-cache-strings.js | idleManager": {
|
|
1875
|
-
"message": "Pages that use IdleManager are not currently eligible for back/forward cache."
|
|
1876
|
-
},
|
|
1877
|
-
"core/lib/bf-cache-strings.js | indexedDBConnection": {
|
|
1878
|
-
"message": "Pages that have an open IndexedDB connection are not currently eligible for back/forward cache."
|
|
1879
|
-
},
|
|
1880
|
-
"core/lib/bf-cache-strings.js | indexedDBEvent": {
|
|
1881
|
-
"message": "Back/forward cache is disabled due to an IndexedDB event."
|
|
1882
|
-
},
|
|
1883
|
-
"core/lib/bf-cache-strings.js | ineligibleAPI": {
|
|
1884
|
-
"message": "Ineligible APIs were used."
|
|
1885
|
-
},
|
|
1886
|
-
"core/lib/bf-cache-strings.js | injectedJavascript": {
|
|
1887
|
-
"message": "Pages that `JavaScript` is injected into by extensions are not currently eligible for back/forward cache."
|
|
1888
|
-
},
|
|
1889
|
-
"core/lib/bf-cache-strings.js | injectedStyleSheet": {
|
|
1890
|
-
"message": "Pages that a `StyleSheet` is injected into by extensions are not currently eligible for back/forward cache."
|
|
1891
|
-
},
|
|
1892
|
-
"core/lib/bf-cache-strings.js | internalError": {
|
|
1893
|
-
"message": "Internal error."
|
|
1894
|
-
},
|
|
1895
|
-
"core/lib/bf-cache-strings.js | keepaliveRequest": {
|
|
1896
|
-
"message": "Back/forward cache is disabled due to a keepalive request."
|
|
1897
|
-
},
|
|
1898
|
-
"core/lib/bf-cache-strings.js | keyboardLock": {
|
|
1899
|
-
"message": "Pages that use Keyboard lock are not currently eligible for back/forward cache."
|
|
1900
|
-
},
|
|
1901
|
-
"core/lib/bf-cache-strings.js | loading": {
|
|
1902
|
-
"message": "The page did not finish loading before navigating away."
|
|
1903
|
-
},
|
|
1904
|
-
"core/lib/bf-cache-strings.js | mainResourceHasCacheControlNoCache": {
|
|
1905
|
-
"message": "Pages whose main resource has cache-control:no-cache cannot enter back/forward cache."
|
|
1906
|
-
},
|
|
1907
|
-
"core/lib/bf-cache-strings.js | mainResourceHasCacheControlNoStore": {
|
|
1908
|
-
"message": "Pages whose main resource has cache-control:no-store cannot enter back/forward cache."
|
|
1909
|
-
},
|
|
1910
|
-
"core/lib/bf-cache-strings.js | navigationCancelledWhileRestoring": {
|
|
1911
|
-
"message": "Navigation was cancelled before the page could be restored from back/forward cache."
|
|
1912
|
-
},
|
|
1913
|
-
"core/lib/bf-cache-strings.js | networkExceedsBufferLimit": {
|
|
1914
|
-
"message": "The page was evicted from the cache because an active network connection received too much data. Chrome limits the amount of data that a page may receive while cached."
|
|
1915
|
-
},
|
|
1916
|
-
"core/lib/bf-cache-strings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
|
|
1917
|
-
"message": "Pages that have inflight fetch() or XHR are not currently eligible for back/forward cache."
|
|
1918
|
-
},
|
|
1919
|
-
"core/lib/bf-cache-strings.js | networkRequestRedirected": {
|
|
1920
|
-
"message": "The page was evicted from back/forward cache because an active network request involved a redirect."
|
|
1921
|
-
},
|
|
1922
|
-
"core/lib/bf-cache-strings.js | networkRequestTimeout": {
|
|
1923
|
-
"message": "The page was evicted from the cache because a network connection was open too long. Chrome limits the amount of time that a page may receive data while cached."
|
|
1924
|
-
},
|
|
1925
|
-
"core/lib/bf-cache-strings.js | noResponseHead": {
|
|
1926
|
-
"message": "Pages that do not have a valid response head cannot enter back/forward cache."
|
|
1927
|
-
},
|
|
1928
|
-
"core/lib/bf-cache-strings.js | notMainFrame": {
|
|
1929
|
-
"message": "Navigation happened in a frame other than the main frame."
|
|
1930
|
-
},
|
|
1931
|
-
"core/lib/bf-cache-strings.js | outstandingIndexedDBTransaction": {
|
|
1932
|
-
"message": "Page with ongoing indexed DB transactions are not currently eligible for back/forward cache."
|
|
1933
|
-
},
|
|
1934
|
-
"core/lib/bf-cache-strings.js | outstandingNetworkRequestDirectSocket": {
|
|
1935
|
-
"message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
|
|
1936
|
-
},
|
|
1937
|
-
"core/lib/bf-cache-strings.js | outstandingNetworkRequestFetch": {
|
|
1938
|
-
"message": "Pages with an in-flight fetch network request are not currently eligible for back/forward cache."
|
|
1939
|
-
},
|
|
1940
|
-
"core/lib/bf-cache-strings.js | outstandingNetworkRequestOthers": {
|
|
1941
|
-
"message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
|
|
1942
|
-
},
|
|
1943
|
-
"core/lib/bf-cache-strings.js | outstandingNetworkRequestXHR": {
|
|
1944
|
-
"message": "Pages with an in-flight XHR network request are not currently eligible for back/forward cache."
|
|
1945
|
-
},
|
|
1946
|
-
"core/lib/bf-cache-strings.js | paymentManager": {
|
|
1947
|
-
"message": "Pages that use PaymentManager are not currently eligible for back/forward cache."
|
|
1948
|
-
},
|
|
1949
|
-
"core/lib/bf-cache-strings.js | pictureInPicture": {
|
|
1950
|
-
"message": "Pages that use Picture-in-Picture are not currently eligible for back/forward cache."
|
|
1951
|
-
},
|
|
1952
|
-
"core/lib/bf-cache-strings.js | printing": {
|
|
1953
|
-
"message": "Pages that show Printing UI are not currently eligible for back/forward cache."
|
|
1954
|
-
},
|
|
1955
|
-
"core/lib/bf-cache-strings.js | relatedActiveContentsExist": {
|
|
1956
|
-
"message": "The page was opened using '`window.open()`' and another tab has a reference to it, or the page opened a window."
|
|
1957
|
-
},
|
|
1958
|
-
"core/lib/bf-cache-strings.js | rendererProcessCrashed": {
|
|
1959
|
-
"message": "The renderer process for the page in back/forward cache crashed."
|
|
1960
|
-
},
|
|
1961
|
-
"core/lib/bf-cache-strings.js | rendererProcessKilled": {
|
|
1962
|
-
"message": "The renderer process for the page in back/forward cache was killed."
|
|
1963
|
-
},
|
|
1964
|
-
"core/lib/bf-cache-strings.js | requestedAudioCapturePermission": {
|
|
1965
|
-
"message": "Pages that have requested audio capture permissions are not currently eligible for back/forward cache."
|
|
1966
|
-
},
|
|
1967
|
-
"core/lib/bf-cache-strings.js | requestedBackForwardCacheBlockedSensors": {
|
|
1968
|
-
"message": "Pages that have requested sensor permissions are not currently eligible for back/forward cache."
|
|
1969
|
-
},
|
|
1970
|
-
"core/lib/bf-cache-strings.js | requestedBackgroundWorkPermission": {
|
|
1971
|
-
"message": "Pages that have requested background sync or fetch permissions are not currently eligible for back/forward cache."
|
|
1972
|
-
},
|
|
1973
|
-
"core/lib/bf-cache-strings.js | requestedMIDIPermission": {
|
|
1974
|
-
"message": "Pages that have requested MIDI permissions are not currently eligible for back/forward cache."
|
|
1975
|
-
},
|
|
1976
|
-
"core/lib/bf-cache-strings.js | requestedNotificationsPermission": {
|
|
1977
|
-
"message": "Pages that have requested notifications permissions are not currently eligible for back/forward cache."
|
|
1978
|
-
},
|
|
1979
|
-
"core/lib/bf-cache-strings.js | requestedStorageAccessGrant": {
|
|
1980
|
-
"message": "Pages that have requested storage access are not currently eligible for back/forward cache."
|
|
1981
|
-
},
|
|
1982
|
-
"core/lib/bf-cache-strings.js | requestedVideoCapturePermission": {
|
|
1983
|
-
"message": "Pages that have requested video capture permissions are not currently eligible for back/forward cache."
|
|
1984
|
-
},
|
|
1985
|
-
"core/lib/bf-cache-strings.js | schemeNotHTTPOrHTTPS": {
|
|
1986
|
-
"message": "Only pages whose URL scheme is HTTP / HTTPS can be cached."
|
|
1987
|
-
},
|
|
1988
|
-
"core/lib/bf-cache-strings.js | serviceWorkerClaim": {
|
|
1989
|
-
"message": "The page was claimed by a service worker while it is in back/forward cache."
|
|
1990
|
-
},
|
|
1991
|
-
"core/lib/bf-cache-strings.js | serviceWorkerPostMessage": {
|
|
1992
|
-
"message": "A service worker attempted to send the page in back/forward cache a `MessageEvent`."
|
|
1993
|
-
},
|
|
1994
|
-
"core/lib/bf-cache-strings.js | serviceWorkerUnregistration": {
|
|
1995
|
-
"message": "ServiceWorker was unregistered while a page was in back/forward cache."
|
|
1996
|
-
},
|
|
1997
|
-
"core/lib/bf-cache-strings.js | serviceWorkerVersionActivation": {
|
|
1998
|
-
"message": "The page was evicted from back/forward cache due to a service worker activation."
|
|
1999
|
-
},
|
|
2000
|
-
"core/lib/bf-cache-strings.js | sessionRestored": {
|
|
2001
|
-
"message": "Chrome restarted and cleared the back/forward cache entries."
|
|
2002
|
-
},
|
|
2003
|
-
"core/lib/bf-cache-strings.js | sharedWorker": {
|
|
2004
|
-
"message": "Pages that use SharedWorker are not currently eligible for back/forward cache."
|
|
2005
|
-
},
|
|
2006
|
-
"core/lib/bf-cache-strings.js | speechRecognizer": {
|
|
2007
|
-
"message": "Pages that use SpeechRecognizer are not currently eligible for back/forward cache."
|
|
2008
|
-
},
|
|
2009
|
-
"core/lib/bf-cache-strings.js | speechSynthesis": {
|
|
2010
|
-
"message": "Pages that use SpeechSynthesis are not currently eligible for back/forward cache."
|
|
2011
|
-
},
|
|
2012
|
-
"core/lib/bf-cache-strings.js | subframeIsNavigating": {
|
|
2013
|
-
"message": "An iframe on the page started a navigation that did not complete."
|
|
2014
|
-
},
|
|
2015
|
-
"core/lib/bf-cache-strings.js | subresourceHasCacheControlNoCache": {
|
|
2016
|
-
"message": "Pages whose subresource has cache-control:no-cache cannot enter back/forward cache."
|
|
2017
|
-
},
|
|
2018
|
-
"core/lib/bf-cache-strings.js | subresourceHasCacheControlNoStore": {
|
|
2019
|
-
"message": "Pages whose subresource has cache-control:no-store cannot enter back/forward cache."
|
|
2020
|
-
},
|
|
2021
|
-
"core/lib/bf-cache-strings.js | timeout": {
|
|
2022
|
-
"message": "The page exceeded the maximum time in back/forward cache and was expired."
|
|
2023
|
-
},
|
|
2024
|
-
"core/lib/bf-cache-strings.js | timeoutPuttingInCache": {
|
|
2025
|
-
"message": "The page timed out entering back/forward cache (likely due to long-running pagehide handlers)."
|
|
2026
|
-
},
|
|
2027
|
-
"core/lib/bf-cache-strings.js | unloadHandlerExistsInMainFrame": {
|
|
2028
|
-
"message": "The page has an unload handler in the main frame."
|
|
2029
|
-
},
|
|
2030
|
-
"core/lib/bf-cache-strings.js | unloadHandlerExistsInSubFrame": {
|
|
2031
|
-
"message": "The page has an unload handler in a sub frame."
|
|
2032
|
-
},
|
|
2033
|
-
"core/lib/bf-cache-strings.js | userAgentOverrideDiffers": {
|
|
2034
|
-
"message": "Browser has changed the user agent override header."
|
|
2035
|
-
},
|
|
2036
|
-
"core/lib/bf-cache-strings.js | wasGrantedMediaAccess": {
|
|
2037
|
-
"message": "Pages that have granted access to record video or audio are not currently eligible for back/forward cache."
|
|
2038
|
-
},
|
|
2039
|
-
"core/lib/bf-cache-strings.js | webDatabase": {
|
|
2040
|
-
"message": "Pages that use WebDatabase are not currently eligible for back/forward cache."
|
|
2041
|
-
},
|
|
2042
|
-
"core/lib/bf-cache-strings.js | webHID": {
|
|
2043
|
-
"message": "Pages that use WebHID are not currently eligible for back/forward cache."
|
|
2044
|
-
},
|
|
2045
|
-
"core/lib/bf-cache-strings.js | webLocks": {
|
|
2046
|
-
"message": "Pages that use WebLocks are not currently eligible for back/forward cache."
|
|
2047
|
-
},
|
|
2048
|
-
"core/lib/bf-cache-strings.js | webNfc": {
|
|
2049
|
-
"message": "Pages that use WebNfc are not currently eligible for back/forwad cache."
|
|
2050
|
-
},
|
|
2051
|
-
"core/lib/bf-cache-strings.js | webOTPService": {
|
|
2052
|
-
"message": "Pages that use WebOTPService are not currently eligible for bfcache."
|
|
2053
|
-
},
|
|
2054
|
-
"core/lib/bf-cache-strings.js | webRTC": {
|
|
2055
|
-
"message": "Pages with WebRTC cannot enter back/forward cache."
|
|
2056
|
-
},
|
|
2057
|
-
"core/lib/bf-cache-strings.js | webShare": {
|
|
2058
|
-
"message": "Pages that use WebShare are not currently eligible for back/forwad cache."
|
|
2059
|
-
},
|
|
2060
|
-
"core/lib/bf-cache-strings.js | webSocket": {
|
|
2061
|
-
"message": "Pages with WebSocket cannot enter back/forward cache."
|
|
2062
|
-
},
|
|
2063
|
-
"core/lib/bf-cache-strings.js | webTransport": {
|
|
2064
|
-
"message": "Pages with WebTransport cannot enter back/forward cache."
|
|
2065
|
-
},
|
|
2066
|
-
"core/lib/bf-cache-strings.js | webXR": {
|
|
2067
|
-
"message": "Pages that use WebXR are not currently eligible for back/forward cache."
|
|
2068
|
-
},
|
|
2069
1745
|
"core/lib/csp-evaluator.js | allowlistFallback": {
|
|
2070
1746
|
"message": "Consider adding https: and http: URL schemes (ignored by browsers supporting `'strict-dynamic'`) to be backward compatible with older browsers."
|
|
2071
1747
|
},
|
|
@@ -2132,168 +1808,6 @@
|
|
|
2132
1808
|
"core/lib/deprecation-description.js | title": {
|
|
2133
1809
|
"message": "Deprecated Feature Used"
|
|
2134
1810
|
},
|
|
2135
|
-
"core/lib/deprecations-strings.js | AuthorizationCoveredByWildcard": {
|
|
2136
|
-
"message": "Authorization will not be covered by the wildcard symbol (*) in CORS `Access-Control-Allow-Headers` handling."
|
|
2137
|
-
},
|
|
2138
|
-
"core/lib/deprecations-strings.js | CSSSelectorInternalMediaControlsOverlayCastButton": {
|
|
2139
|
-
"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."
|
|
2140
|
-
},
|
|
2141
|
-
"core/lib/deprecations-strings.js | CanRequestURLHTTPContainingNewline": {
|
|
2142
|
-
"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."
|
|
2143
|
-
},
|
|
2144
|
-
"core/lib/deprecations-strings.js | ChromeLoadTimesConnectionInfo": {
|
|
2145
|
-
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Navigation Timing 2."
|
|
2146
|
-
},
|
|
2147
|
-
"core/lib/deprecations-strings.js | ChromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2148
|
-
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Paint Timing."
|
|
2149
|
-
},
|
|
2150
|
-
"core/lib/deprecations-strings.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2151
|
-
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: `nextHopProtocol` in Navigation Timing 2."
|
|
2152
|
-
},
|
|
2153
|
-
"core/lib/deprecations-strings.js | CookieWithTruncatingChar": {
|
|
2154
|
-
"message": "Cookies containing a `(0|r|n)` character will be rejected instead of truncated."
|
|
2155
|
-
},
|
|
2156
|
-
"core/lib/deprecations-strings.js | CrossOriginAccessBasedOnDocumentDomain": {
|
|
2157
|
-
"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`."
|
|
2158
|
-
},
|
|
2159
|
-
"core/lib/deprecations-strings.js | CrossOriginWindowAlert": {
|
|
2160
|
-
"message": "Triggering window.alert from cross origin iframes has been deprecated and will be removed in the future."
|
|
2161
|
-
},
|
|
2162
|
-
"core/lib/deprecations-strings.js | CrossOriginWindowConfirm": {
|
|
2163
|
-
"message": "Triggering window.confirm from cross origin iframes has been deprecated and will be removed in the future."
|
|
2164
|
-
},
|
|
2165
|
-
"core/lib/deprecations-strings.js | DOMMutationEvents": {
|
|
2166
|
-
"message": "DOM Mutation Events, including `DOMSubtreeModified`, `DOMNodeInserted`, `DOMNodeRemoved`, `DOMNodeRemovedFromDocument`, `DOMNodeInsertedIntoDocument`, and `DOMCharacterDataModified` are deprecated (https://w3c.github.io/uievents/#legacy-event-types) and will be removed. Please use `MutationObserver` instead."
|
|
2167
|
-
},
|
|
2168
|
-
"core/lib/deprecations-strings.js | DataUrlInSvgUse": {
|
|
2169
|
-
"message": "Support for data: URLs in SVG <use> element is deprecated and it will be removed in the future."
|
|
2170
|
-
},
|
|
2171
|
-
"core/lib/deprecations-strings.js | GeolocationInsecureOrigin": {
|
|
2172
|
-
"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."
|
|
2173
|
-
},
|
|
2174
|
-
"core/lib/deprecations-strings.js | GeolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2175
|
-
"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."
|
|
2176
|
-
},
|
|
2177
|
-
"core/lib/deprecations-strings.js | GetUserMediaInsecureOrigin": {
|
|
2178
|
-
"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."
|
|
2179
|
-
},
|
|
2180
|
-
"core/lib/deprecations-strings.js | HostCandidateAttributeGetter": {
|
|
2181
|
-
"message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` is deprecated. Please use `RTCPeerConnectionIceErrorEvent.address` or `RTCPeerConnectionIceErrorEvent.port` instead."
|
|
2182
|
-
},
|
|
2183
|
-
"core/lib/deprecations-strings.js | IdentityInCanMakePaymentEvent": {
|
|
2184
|
-
"message": "The merchant origin and arbitrary data from the `canmakepayment` service worker event are deprecated and will be removed: `topOrigin`, `paymentRequestOrigin`, `methodData`, `modifiers`."
|
|
2185
|
-
},
|
|
2186
|
-
"core/lib/deprecations-strings.js | InsecurePrivateNetworkSubresourceRequest": {
|
|
2187
|
-
"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."
|
|
2188
|
-
},
|
|
2189
|
-
"core/lib/deprecations-strings.js | InterestGroupDailyUpdateUrl": {
|
|
2190
|
-
"message": "The `dailyUpdateUrl` field of `InterestGroups` passed to `joinAdInterestGroup()` has been renamed to `updateUrl`, to more accurately reflect its behavior."
|
|
2191
|
-
},
|
|
2192
|
-
"core/lib/deprecations-strings.js | LocalCSSFileExtensionRejected": {
|
|
2193
|
-
"message": "CSS cannot be loaded from `file:` URLs unless they end in a `.css` file extension."
|
|
2194
|
-
},
|
|
2195
|
-
"core/lib/deprecations-strings.js | MediaSourceAbortRemove": {
|
|
2196
|
-
"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."
|
|
2197
|
-
},
|
|
2198
|
-
"core/lib/deprecations-strings.js | MediaSourceDurationTruncatingBuffered": {
|
|
2199
|
-
"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`."
|
|
2200
|
-
},
|
|
2201
|
-
"core/lib/deprecations-strings.js | NoSysexWebMIDIWithoutPermission": {
|
|
2202
|
-
"message": "Web MIDI will ask a permission to use even if the sysex is not specified in the `MIDIOptions`."
|
|
2203
|
-
},
|
|
2204
|
-
"core/lib/deprecations-strings.js | NotificationInsecureOrigin": {
|
|
2205
|
-
"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."
|
|
2206
|
-
},
|
|
2207
|
-
"core/lib/deprecations-strings.js | NotificationPermissionRequestedIframe": {
|
|
2208
|
-
"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."
|
|
2209
|
-
},
|
|
2210
|
-
"core/lib/deprecations-strings.js | ObsoleteCreateImageBitmapImageOrientationNone": {
|
|
2211
|
-
"message": "Option `imageOrientation: 'none'` in createImageBitmap is deprecated. Please use createImageBitmap with option \\{imageOrientation: 'from-image'\\} instead."
|
|
2212
|
-
},
|
|
2213
|
-
"core/lib/deprecations-strings.js | ObsoleteWebRtcCipherSuite": {
|
|
2214
|
-
"message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
|
|
2215
|
-
},
|
|
2216
|
-
"core/lib/deprecations-strings.js | OverflowVisibleOnReplacedElement": {
|
|
2217
|
-
"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."
|
|
2218
|
-
},
|
|
2219
|
-
"core/lib/deprecations-strings.js | PaymentInstruments": {
|
|
2220
|
-
"message": "`paymentManager.instruments` is deprecated. Please use just-in-time install for payment handlers instead."
|
|
2221
|
-
},
|
|
2222
|
-
"core/lib/deprecations-strings.js | PaymentRequestCSPViolation": {
|
|
2223
|
-
"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."
|
|
2224
|
-
},
|
|
2225
|
-
"core/lib/deprecations-strings.js | PersistentQuotaType": {
|
|
2226
|
-
"message": "`StorageType.persistent` is deprecated. Please use standardized `navigator.storage` instead."
|
|
2227
|
-
},
|
|
2228
|
-
"core/lib/deprecations-strings.js | PictureSourceSrc": {
|
|
2229
|
-
"message": "`<source src>` with a `<picture>` parent is invalid and therefore ignored. Please use `<source srcset>` instead."
|
|
2230
|
-
},
|
|
2231
|
-
"core/lib/deprecations-strings.js | PrefixedCancelAnimationFrame": {
|
|
2232
|
-
"message": "webkitCancelAnimationFrame is vendor-specific. Please use the standard cancelAnimationFrame instead."
|
|
2233
|
-
},
|
|
2234
|
-
"core/lib/deprecations-strings.js | PrefixedRequestAnimationFrame": {
|
|
2235
|
-
"message": "webkitRequestAnimationFrame is vendor-specific. Please use the standard requestAnimationFrame instead."
|
|
2236
|
-
},
|
|
2237
|
-
"core/lib/deprecations-strings.js | PrefixedVideoDisplayingFullscreen": {
|
|
2238
|
-
"message": "HTMLVideoElement.webkitDisplayingFullscreen is deprecated. Please use Document.fullscreenElement instead."
|
|
2239
|
-
},
|
|
2240
|
-
"core/lib/deprecations-strings.js | PrefixedVideoEnterFullScreen": {
|
|
2241
|
-
"message": "HTMLVideoElement.webkitEnterFullScreen() is deprecated. Please use Element.requestFullscreen() instead."
|
|
2242
|
-
},
|
|
2243
|
-
"core/lib/deprecations-strings.js | PrefixedVideoEnterFullscreen": {
|
|
2244
|
-
"message": "HTMLVideoElement.webkitEnterFullscreen() is deprecated. Please use Element.requestFullscreen() instead."
|
|
2245
|
-
},
|
|
2246
|
-
"core/lib/deprecations-strings.js | PrefixedVideoExitFullScreen": {
|
|
2247
|
-
"message": "HTMLVideoElement.webkitExitFullScreen() is deprecated. Please use Document.exitFullscreen() instead."
|
|
2248
|
-
},
|
|
2249
|
-
"core/lib/deprecations-strings.js | PrefixedVideoExitFullscreen": {
|
|
2250
|
-
"message": "HTMLVideoElement.webkitExitFullscreen() is deprecated. Please use Document.exitFullscreen() instead."
|
|
2251
|
-
},
|
|
2252
|
-
"core/lib/deprecations-strings.js | PrefixedVideoSupportsFullscreen": {
|
|
2253
|
-
"message": "HTMLVideoElement.webkitSupportsFullscreen is deprecated. Please use Document.fullscreenEnabled instead."
|
|
2254
|
-
},
|
|
2255
|
-
"core/lib/deprecations-strings.js | PrivacySandboxExtensionsAPI": {
|
|
2256
|
-
"message": "We're deprecating the API `chrome.privacy.websites.privacySandboxEnabled`, though it will remain active for backward compatibility until release M113. Instead, please use `chrome.privacy.websites.topicsEnabled`, `chrome.privacy.websites.fledgeEnabled` and `chrome.privacy.websites.adMeasurementEnabled`. See https://developer.chrome.com/docs/extensions/reference/privacy/#property-websites-privacySandboxEnabled."
|
|
2257
|
-
},
|
|
2258
|
-
"core/lib/deprecations-strings.js | RTCConstraintEnableDtlsSrtpFalse": {
|
|
2259
|
-
"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."
|
|
2260
|
-
},
|
|
2261
|
-
"core/lib/deprecations-strings.js | RTCConstraintEnableDtlsSrtpTrue": {
|
|
2262
|
-
"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."
|
|
2263
|
-
},
|
|
2264
|
-
"core/lib/deprecations-strings.js | RTCPeerConnectionGetStatsLegacyNonCompliant": {
|
|
2265
|
-
"message": "The callback-based getStats() is deprecated and will be removed. Use the spec-compliant getStats() instead."
|
|
2266
|
-
},
|
|
2267
|
-
"core/lib/deprecations-strings.js | RangeExpand": {
|
|
2268
|
-
"message": "Range.expand() is deprecated. Please use Selection.modify() instead."
|
|
2269
|
-
},
|
|
2270
|
-
"core/lib/deprecations-strings.js | RequestedSubresourceWithEmbeddedCredentials": {
|
|
2271
|
-
"message": "Subresource requests whose URLs contain embedded credentials (e.g. `https://user:pass@host/`) are blocked."
|
|
2272
|
-
},
|
|
2273
|
-
"core/lib/deprecations-strings.js | RtcpMuxPolicyNegotiate": {
|
|
2274
|
-
"message": "The `rtcpMuxPolicy` option is deprecated and will be removed."
|
|
2275
|
-
},
|
|
2276
|
-
"core/lib/deprecations-strings.js | SharedArrayBufferConstructedWithoutIsolation": {
|
|
2277
|
-
"message": "`SharedArrayBuffer` will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
|
2278
|
-
},
|
|
2279
|
-
"core/lib/deprecations-strings.js | TextToSpeech_DisallowedByAutoplay": {
|
|
2280
|
-
"message": "`speechSynthesis.speak()` without user activation is deprecated and will be removed."
|
|
2281
|
-
},
|
|
2282
|
-
"core/lib/deprecations-strings.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2283
|
-
"message": "Extensions should opt into cross-origin isolation to continue using `SharedArrayBuffer`. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
|
2284
|
-
},
|
|
2285
|
-
"core/lib/deprecations-strings.js | WebSQL": {
|
|
2286
|
-
"message": "Web SQL is deprecated. Please use SQLite WebAssembly or Indexed Database"
|
|
2287
|
-
},
|
|
2288
|
-
"core/lib/deprecations-strings.js | XHRJSONEncodingDetection": {
|
|
2289
|
-
"message": "UTF-16 is not supported by response json in `XMLHttpRequest`"
|
|
2290
|
-
},
|
|
2291
|
-
"core/lib/deprecations-strings.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2292
|
-
"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/."
|
|
2293
|
-
},
|
|
2294
|
-
"core/lib/deprecations-strings.js | XRSupportsSession": {
|
|
2295
|
-
"message": "`supportsSession()` is deprecated. Please use `isSessionSupported()` and check the resolved boolean value instead."
|
|
2296
|
-
},
|
|
2297
1811
|
"core/lib/i18n/i18n.js | columnBlockingTime": {
|
|
2298
1812
|
"message": "Main-Thread Blocking Time"
|
|
2299
1813
|
},
|
|
@@ -2426,6 +1940,9 @@
|
|
|
2426
1940
|
"core/lib/i18n/i18n.js | thirdPartyResourceType": {
|
|
2427
1941
|
"message": "Third-party"
|
|
2428
1942
|
},
|
|
1943
|
+
"core/lib/i18n/i18n.js | total": {
|
|
1944
|
+
"message": "Total"
|
|
1945
|
+
},
|
|
2429
1946
|
"core/lib/i18n/i18n.js | totalBlockingTimeMetric": {
|
|
2430
1947
|
"message": "Total Blocking Time"
|
|
2431
1948
|
},
|
|
@@ -2645,81 +2162,471 @@
|
|
|
2645
2162
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
2646
2163
|
"message": "Lighthouse User Flow Report"
|
|
2647
2164
|
},
|
|
2165
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | AuthorizationCoveredByWildcard": {
|
|
2166
|
+
"message": "لن يشمل رمز حرف البدل (*) الإذن في معالجة العنوان Access-Control-Allow-Headers في سياسة Cross-Origin Resource Sharing (CORS)."
|
|
2167
|
+
},
|
|
2168
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSSelectorInternalMediaControlsOverlayCastButton": {
|
|
2169
|
+
"message": "يجب استخدام السمة disableRemotePlayback لإيقاف الدمج التلقائي لتقنية Google Cast بدلاً من استخدام أداة الاختيار -internal-media-controls-overlay-cast-button."
|
|
2170
|
+
},
|
|
2171
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSValueAppearanceSliderVertical": {
|
|
2172
|
+
"message": "لم يتم توحيد قيمة ظهور خدمة مقارنة الأسعار slider-vertical وستتم إزالتها."
|
|
2173
|
+
},
|
|
2174
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CanRequestURLHTTPContainingNewline": {
|
|
2175
|
+
"message": "يتم حظر طلبات المصادر التي تتضمّن عناوين URL الخاصة بها كلاً من أحرف المسافة البيضاء \\(n|r|t) ورمز \"الأقل من\" (<). لتحميل هذه المصادر، يُرجى إزالة السطور الجديدة وترميز رمز \"الأقل من\" من خلال مواضع مثل قيم سمات العناصر."
|
|
2176
|
+
},
|
|
2177
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesConnectionInfo": {
|
|
2178
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات chrome.loadTimes() نهائيًا ويمكنك بدلاً منها استخدام واجهة برمجة التطبيقات Navigation Timing 2 الموحَّدة."
|
|
2179
|
+
},
|
|
2180
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2181
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات chrome.loadTimes() نهائيًا. وبدلاً منها، يمكنك استخدام واجهة برمجة التطبيقات الموحَّدة: Paint Timing."
|
|
2182
|
+
},
|
|
2183
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2184
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات chrome.loadTimes() نهائيًا. وبدلاً منها، يمكنك استخدام واجهة برمجة التطبيقات الموحَّدة Navigation Timing 2 التي تتضمّن السمة nextHopProtocol."
|
|
2185
|
+
},
|
|
2186
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CookieWithTruncatingChar": {
|
|
2187
|
+
"message": "سيتم رفض ملفات تعريف الارتباط التي تتضمّن الحرف \\(0|r|n) بدلاً من اقتطاعها."
|
|
2188
|
+
},
|
|
2189
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginAccessBasedOnDocumentDomain": {
|
|
2190
|
+
"message": "بالنسبة إلى ميزة تخفيف قيود السياسة المشتركة المصدر من خلال ضبط الميزة document.domain، تم إيقافها نهائيًا وستكون غير مفعَّلة تلقائيًا. إنّ تحذير الإيقاف النهائي هذا متعلِّق بإذن الوصول من مصادر متعددة والذي تم تفعيله من خلال ضبط الميزة document.domain."
|
|
2191
|
+
},
|
|
2192
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowAlert": {
|
|
2193
|
+
"message": "إنَّ ميزة تنفيذ الوظيفة window.alert المستنِدة إلى إطارات iframe من مصادر متعددة تم إيقافها نهائيًا وستتم إزالتها في المستقبل."
|
|
2194
|
+
},
|
|
2195
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowConfirm": {
|
|
2196
|
+
"message": "إنّ ميزة تنفيذ الوظيفة window.confirm المستنِدة إلى إطارات iframe من مصادر متعددة تم إيقافها نهائيًا وستتم إزالتها في المستقبل."
|
|
2197
|
+
},
|
|
2198
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DOMMutationEvents": {
|
|
2199
|
+
"message": "إنّ أحداث تغيُّر نموذج العناصر في المستند (DOM)، بما في ذلك\nDOMSubtreeModified وDOMNodeInserted وDOMNodeRemoved وDOMNodeRemovedFromDocument وDOMNodeInsertedIntoDocument وDOMCharacterDataModified \nتم إيقافها نهائيًا (https://w3c.github.io/uievents/#legacy-event-types)، وستتم إزالتها. يُرجى استخدام MutationObserver بدلاً من ذلك."
|
|
2200
|
+
},
|
|
2201
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DataUrlInSvgUse": {
|
|
2202
|
+
"message": "تم بشكل نهائي إيقاف استخدام عناوين URL التي تبدأ بمخطّط \"data:\" في واجهة SVGUseElement، وستتم إزالة هذه الميزة في المستقبل."
|
|
2203
|
+
},
|
|
2204
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOrigin": {
|
|
2205
|
+
"message": "لم يعد الإجراءان getCurrentPosition() وwatchPosition() متوافقين مع المصادر غير الآمنة. لاستخدام هذه الميزة، يجب مراعاة نقل تطبيقك إلى مصدر آمن مثل HTTPS. لمعرفة مزيد من التفاصيل، يُرجى الاطّلاع على https://goo.gle/chrome-insecure-origins."
|
|
2206
|
+
},
|
|
2207
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2208
|
+
"message": "تم إيقاف الإجراءين getCurrentPosition() وwatchPosition() نهائيًا على المصادر غير الآمنة. لاستخدام هذه الميزة، يجب مراعاة نقل تطبيقك إلى مصدر آمن مثل HTTPS. لمعرفة مزيد من التفاصيل، يُرجى الاطّلاع على https://goo.gle/chrome-insecure-origins."
|
|
2209
|
+
},
|
|
2210
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GetUserMediaInsecureOrigin": {
|
|
2211
|
+
"message": "لم تعد الميزة getUserMedia() متوافقة مع المصادر غير الآمنة. لاستخدام هذه الميزة، يجب مراعاة نقل تطبيقك إلى مصدر آمن مثل HTTPS. لمعرفة مزيد من التفاصيل، يُرجى الاطّلاع على https://goo.gle/chrome-insecure-origins."
|
|
2212
|
+
},
|
|
2213
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | HostCandidateAttributeGetter": {
|
|
2214
|
+
"message": "تم إيقاف RTCPeerConnectionIceErrorEvent.hostCandidate نهائيًا. يُرجى استخدام RTCPeerConnectionIceErrorEvent.address أو RTCPeerConnectionIceErrorEvent.port بدلاً منها."
|
|
2215
|
+
},
|
|
2216
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IdentityInCanMakePaymentEvent": {
|
|
2217
|
+
"message": "إنّ أصل التاجر والبيانات العشوائية من حدث مشغّل الخدمات في canmakepayment تم إيقافهما نهائيًا وستتم إزالتهما: topOrigin وpaymentRequestOrigin وmethodData وmodifiers."
|
|
2218
|
+
},
|
|
2219
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InsecurePrivateNetworkSubresourceRequest": {
|
|
2220
|
+
"message": "طلب الموقع الإلكتروني مصدرًا فرعيًا من شبكة يمكن الوصول إليه من خلال الموقع الإلكتروني فقط بسبب موضع مستخدميه المميّز على الشبكة. تكشف هذه الطلبات الأجهزة والخوادم الخاصة على الإنترنت، ما يزيد من خطر تزوير الطلب من موقع إلكتروني مختلف (CSRF) و/أو تسرُّب المعلومات. وللحدِّ من هذه المخاطر، أوقف Chrome نهائيًا طلبات الوصول إلى مصادر فرعية خاصة، وذلك عند تقديمها من خلال سياقات غير آمنة، وسيبدأ في حظرها."
|
|
2221
|
+
},
|
|
2222
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InterestGroupDailyUpdateUrl": {
|
|
2223
|
+
"message": "تمت إعادة تسمية الحقل dailyUpdateUrl في InterestGroups الذي تم تمريره إلى joinAdInterestGroup() ليصبح updateUrl لكي يوضّح اسم الحقل سلوكه بدقة أكبر."
|
|
2224
|
+
},
|
|
2225
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IntlV8BreakIterator": {
|
|
2226
|
+
"message": "تم إيقاف Intl.v8BreakIterator نهائيًا. يُرجى استخدام Intl.Segmenter بدلاً منها."
|
|
2227
|
+
},
|
|
2228
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LocalCSSFileExtensionRejected": {
|
|
2229
|
+
"message": "لا يمكن تحميل صفحات الأنماط المتتالية (CSS) من عناوين URL للملفات file: ما لم تنتهِ الملفات بالامتداد .css."
|
|
2230
|
+
},
|
|
2231
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceAbortRemove": {
|
|
2232
|
+
"message": "تم بشكل نهائي إيقاف ميزة استخدام SourceBuffer.abort() لإلغاء إزالة النطاق غير المتزامن للإجراء remove() بسبب تغيُّر المواصفات. ستتم إزالة الميزة في المستقبل. وعليك معالجة الحدث updateend بدلاً من ذلك. يهدف الإجراء abort() فقط إلى إلغاء إمكانية إلحاق الوسائط غير المتزامنة أو إعادة ضبط حالة المحلِّل."
|
|
2233
|
+
},
|
|
2234
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceDurationTruncatingBuffered": {
|
|
2235
|
+
"message": "تم بشكل نهائي إيقاف إمكانية ضبط السمة MediaSource.duration على قيمة أقل من الحد الأقصى للطابع الزمني المخصَّص لعرض أي إطارات تم ترميزها وتخزينها مؤقتًا بسبب تغيُّر المواصفات. إنّ الإزالة الضمنية للوسائط المُقتطَعة التي تم تخزينها مؤقتًا لن تكون متاحة في المستقبل. وبدلاً من ذلك، يجب تطبيق الوظيفة remove(newDuration, oldDuration) بشكل واضح على جميع واجهات برمجة التطبيقات sourceBuffers التي تتوفّر بها newDuration < oldDuration."
|
|
2236
|
+
},
|
|
2237
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NoSysexWebMIDIWithoutPermission": {
|
|
2238
|
+
"message": "ستطلب واجهة برمجة التطبيقات Web MIDI إذنًا للاستخدام حتى في حال عدم تحديد رسائل النظام الحصرية (Sysex) في MIDIOptions."
|
|
2239
|
+
},
|
|
2240
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationInsecureOrigin": {
|
|
2241
|
+
"message": "قد يتوقف استخدام واجهة برمجة التطبيقات Notification API من مصادر غير آمنة. يجب مراعاة نقل تطبيقك إلى مصدر آمن، مثل HTTPS. لمعرفة مزيد من التفاصيل، يُرجى الاطّلاع على https://goo.gle/chrome-insecure-origins."
|
|
2242
|
+
},
|
|
2243
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationPermissionRequestedIframe": {
|
|
2244
|
+
"message": "قد تتوقّف إمكانية طلب إذن لواجهة برمجة التطبيقات Notification API من أحد إطارات iframe من مصادر متعددة. يجب مراعاة طلب إذن من إطار عالٍ المستوى أو فتح نافذة جديدة بدلاً من ذلك."
|
|
2245
|
+
},
|
|
2246
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteCreateImageBitmapImageOrientationNone": {
|
|
2247
|
+
"message": "تم إيقاف الخيار \"imageOrientation: 'none'\" في createImageBitmap. يُرجى استخدام createImageBitmap مع الخيار \\\\{imageOrientation: 'from-image'\\\\} بدلاً منه."
|
|
2248
|
+
},
|
|
2249
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteWebRtcCipherSuite": {
|
|
2250
|
+
"message": "يتفاوض شريكك لاستخدام إصدار (D) القديم من بروتوكول أمان طبقة النقل (TLS). يُرجى التحقّق من الأمر مع شريكك لحلّ هذه المشكلة."
|
|
2251
|
+
},
|
|
2252
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | OverflowVisibleOnReplacedElement": {
|
|
2253
|
+
"message": "في حال تحديد القيمة \"overflow: visible\" ضمن علامات img وvideo وcanvas، قد يُعرَض محتوى مرئي خارج حدود العنصر. يُرجى الاطّلاع على https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md."
|
|
2254
|
+
},
|
|
2255
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentInstruments": {
|
|
2256
|
+
"message": "تم إيقاف paymentManager.instruments نهائيًا. بدلاً من ذلك، يُرجى استخدام ميزة \"التثبيت في وقت التشغيل\" (JIT) مع تطبيقات معالجة الدفع."
|
|
2257
|
+
},
|
|
2258
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentRequestCSPViolation": {
|
|
2259
|
+
"message": "تجاوز طلب البيانات من واجهة برمجة التطبيقات PaymentRequest التوجيه connect-src في Content-Security-Policy (سياسة أمان المحتوى). تم إيقاف هذا التجاوز نهائيًا. يُرجى إضافة معرِّف طريقة الدفع من واجهة برمجة التطبيقات PaymentRequest (في حقل supportedMethods) إلى توجيه connect-src في سياسة أمان المحتوى (CSP)."
|
|
2260
|
+
},
|
|
2261
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PersistentQuotaType": {
|
|
2262
|
+
"message": "تم إيقاف StorageType.persistent نهائيًا. يُرجى استخدام navigator.storage الموحّدة بدلاً منها."
|
|
2263
|
+
},
|
|
2264
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PictureSourceSrc": {
|
|
2265
|
+
"message": "إنّ استخدام العنصر <source src> مع العنصر الرئيسي <picture> غير صالح، وبالتالي سيتم تجاهله. يُرجى استخدام السمة <source srcset> بدلاً من ذلك."
|
|
2266
|
+
},
|
|
2267
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedCancelAnimationFrame": {
|
|
2268
|
+
"message": "إنّ طريقة webkitCancelAnimationFrame مخصّصة للمورّدين. يُرجى استخدام طريقة cancelAnimationFrame العادية بدلاً من ذلك."
|
|
2269
|
+
},
|
|
2270
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedRequestAnimationFrame": {
|
|
2271
|
+
"message": "إنّ طريقة webkitRequestAnimationFrame مخصّصة للمورّدين. يُرجى استخدام طريقة requestAnimationFrame العادية بدلاً من ذلك."
|
|
2272
|
+
},
|
|
2273
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoDisplayingFullscreen": {
|
|
2274
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitDisplayingFullscreen نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Document.fullscreenElement بدلاً من ذلك."
|
|
2275
|
+
},
|
|
2276
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullScreen": {
|
|
2277
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitEnterFullscreen() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Element.requestFullscreen() بدلاً من ذلك."
|
|
2278
|
+
},
|
|
2279
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullscreen": {
|
|
2280
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitEnterFullscreen() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Element.requestFullscreen() بدلاً من ذلك."
|
|
2281
|
+
},
|
|
2282
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullScreen": {
|
|
2283
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitExitFullscreen() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Document.exitFullscreen() بدلاً من ذلك."
|
|
2284
|
+
},
|
|
2285
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullscreen": {
|
|
2286
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitExitFullscreen() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Document.exitFullscreen() بدلاً من ذلك."
|
|
2287
|
+
},
|
|
2288
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoSupportsFullscreen": {
|
|
2289
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitSupportsFullscreen نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Document.fullscreenEnabled بدلاً من ذلك."
|
|
2290
|
+
},
|
|
2291
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrivacySandboxExtensionsAPI": {
|
|
2292
|
+
"message": "سيتم إيقاف واجهة برمجة التطبيقات chrome.privacy.websites.privacySandboxEnabled نهائيًا، علمًا بأنّها ستظل نشطة للتوافق مع الأنظمة القديمة إلى أن يتم طرح الإصدار الرئيسي M113. بدلاً من هذه الواجهة، يُرجى استخدام واجهات برمجة التطبيقات chrome.privacy.websites.topicsEnabled وchrome.privacy.websites.fledgeEnabled وchrome.privacy.websites.adMeasurementEnabled. لمعرفة مزيد من المعلومات، يمكنك الانتقال إلى https://developer.chrome.com/docs/extensions/reference/privacy/#property-websites-privacySandboxEnabled."
|
|
2293
|
+
},
|
|
2294
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpFalse": {
|
|
2295
|
+
"message": "تمت إزالة القيد DtlsSrtpKeyAgreement. لقد حدَّدت القيمة false لهذا القيد، وهو أمر يتم تفسيره كمحاولة لاستخدام الميزة SDES key negotiation التي تمت إزالتها. لقد تمت إزالة هذه الميزة. وبدلاً منها، يمكنك استخدام إحدى الخدمات التي تتوفّر فيها الميزة DTLS key negotiation."
|
|
2296
|
+
},
|
|
2297
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpTrue": {
|
|
2298
|
+
"message": "تمت إزالة القيد DtlsSrtpKeyAgreement. لقد حدَّدت القيمة true لهذا القيد، وهو أمر ليس له أي تأثير. وفي جميع الأحوال، يمكنك إزالة هذا القيد بغرض التنظيم."
|
|
2299
|
+
},
|
|
2300
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCPeerConnectionGetStatsLegacyNonCompliant": {
|
|
2301
|
+
"message": "تم إيقاف الطريقة getStats() المستنِدة إلى معاودة الاتصال نهائيًا وستتم إزالتها. يُرجى استخدام الطريقة getStats() المتوافقة مع المواصفات بدلاً من ذلك."
|
|
2302
|
+
},
|
|
2303
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RangeExpand": {
|
|
2304
|
+
"message": "تم إيقاف واجهة برمجة التطبيقات Range.expand() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Select.modify() بدلاً من ذلك."
|
|
2305
|
+
},
|
|
2306
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RequestedSubresourceWithEmbeddedCredentials": {
|
|
2307
|
+
"message": "يتم حظر طلبات المصادر الفرعية التي تتضمّن عناوين URL الخاصة بها بيانات اعتماد مُضمَّنة (مثل https://user:pass@host/)."
|
|
2308
|
+
},
|
|
2309
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RtcpMuxPolicyNegotiate": {
|
|
2310
|
+
"message": "تم إيقاف الخيار rtcpMuxPolicy نهائيًا وستتم إزالته."
|
|
2311
|
+
},
|
|
2312
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | SharedArrayBufferConstructedWithoutIsolation": {
|
|
2313
|
+
"message": "سيطلب الكائن SharedArrayBuffer حظر الوصول من نطاقات أخرى. لمعرفة مزيد من التفاصيل، يُرجى الاطّلاع على https://developer.chrome.com/blog/enabling-shared-array-buffer/."
|
|
2314
|
+
},
|
|
2315
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | TextToSpeech_DisallowedByAutoplay": {
|
|
2316
|
+
"message": "إنّ ميزة تنفيذ الإجراء speechSynthesis.speak() بدون تفعيل المستخدِم متوقفة نهائيًا وستتم إزالتها."
|
|
2317
|
+
},
|
|
2318
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | UnloadHandler": {
|
|
2319
|
+
"message": "تم نهائيًا إيقاف أدوات معالجة الأحداث التي تم إلغاء تحميلها، وستتم إزالتها."
|
|
2320
|
+
},
|
|
2321
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2322
|
+
"message": "يجب أن تستخدم الإضافات ميزة حظر الوصول من نطاقات أخرى لمواصلة استخدام الكائن SharedArrayBuffer. يُرجى الاطّلاع على https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
|
2323
|
+
},
|
|
2324
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XHRJSONEncodingDetection": {
|
|
2325
|
+
"message": "لا يتوفّر الترميز UTF-16 من خلال استجابة json في واجهة برمجة التطبيقات XMLHttpRequest."
|
|
2326
|
+
},
|
|
2327
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2328
|
+
"message": "واجهة برمجة التطبيقات XMLHttpRequest المتزامنة في سلسلة أنظمة التشغيل الرئيسية متوقفة نهائيًا بسبب تأثيراتها الضارة في تجربة المستخدِم النهائي. للحصول على مزيد من المساعدة، يُرجى الاطّلاع على https://xhr.spec.whatwg.org/."
|
|
2329
|
+
},
|
|
2330
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | animation": {
|
|
2331
|
+
"message": "صورة متحركة"
|
|
2332
|
+
},
|
|
2648
2333
|
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | description": {
|
|
2649
2334
|
"message": "تحدث تغييرات التصميم عندما تتحرك العناصر بدون أي تدخُّل من المستخدم. [تحقَّق من أسباب تغييرات التصميم](https://web.dev/articles/optimize-cls)، مثل إضافة عناصر أو إزالتها أو تغيير خطوطها أثناء تحميل الصفحة."
|
|
2650
2335
|
},
|
|
2336
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | fontRequest": {
|
|
2337
|
+
"message": "طلب الخط"
|
|
2338
|
+
},
|
|
2339
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | injectedIframe": {
|
|
2340
|
+
"message": "إطار iframe الذي تم إدخاله"
|
|
2341
|
+
},
|
|
2342
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | layoutShiftCluster": {
|
|
2343
|
+
"message": "وقت بدء مجموعة متغيّرات التصميم: {PH1}"
|
|
2344
|
+
},
|
|
2345
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | noCulprits": {
|
|
2346
|
+
"message": "تعذَّر رصد أي أسباب لتغييرات التصميم"
|
|
2347
|
+
},
|
|
2348
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | noLayoutShifts": {
|
|
2349
|
+
"message": "ما مِن تغييرات في التصميم"
|
|
2350
|
+
},
|
|
2651
2351
|
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | title": {
|
|
2652
2352
|
"message": "أسباب تغييرات التصميم"
|
|
2653
2353
|
},
|
|
2354
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | topCulprits": {
|
|
2355
|
+
"message": "أهم أسباب تغييرات التصميم"
|
|
2356
|
+
},
|
|
2357
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | unsizedImages": {
|
|
2358
|
+
"message": "صور بلا حجم محدَّد"
|
|
2359
|
+
},
|
|
2360
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | worstCluster": {
|
|
2361
|
+
"message": "أسوأ مجموعة"
|
|
2362
|
+
},
|
|
2363
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | worstLayoutShiftCluster": {
|
|
2364
|
+
"message": "أسوأ مجموعة لمتغيّرات التصميم"
|
|
2365
|
+
},
|
|
2654
2366
|
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | description": {
|
|
2655
|
-
"message": "
|
|
2367
|
+
"message": "إنّ الحجم الكبير لنموذج العناصر في المستند (DOM) يمكن أن يؤدي إلى زيادة مدة عمليات احتساب الأنماط وإعادة تدفق التنسيقات، ما يؤثر في سرعة استجابة الصفحة. وسيزيد هذا الحجم الكبير أيضًا من استخدام الذاكرة. [التعرّف على كيفية تجنُّب زيادة حجم DOM](https://developer.chrome.com/docs/lighthouse/performance/dom-size/)"
|
|
2368
|
+
},
|
|
2369
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | element": {
|
|
2370
|
+
"message": "العنصر"
|
|
2371
|
+
},
|
|
2372
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | maxChildren": {
|
|
2373
|
+
"message": "الحد الأقصى للعناصر الفرعية"
|
|
2374
|
+
},
|
|
2375
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | maxDOMDepth": {
|
|
2376
|
+
"message": "الحد الأقصى للعناصر المضمّنة في DOM"
|
|
2377
|
+
},
|
|
2378
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | statistic": {
|
|
2379
|
+
"message": "الإحصاءات"
|
|
2656
2380
|
},
|
|
2657
2381
|
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | title": {
|
|
2658
2382
|
"message": "تحسين حجم عناصر DOM"
|
|
2659
2383
|
},
|
|
2384
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | totalElements": {
|
|
2385
|
+
"message": "إجمالي العناصر"
|
|
2386
|
+
},
|
|
2387
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | value": {
|
|
2388
|
+
"message": "القيمة"
|
|
2389
|
+
},
|
|
2660
2390
|
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | description": {
|
|
2661
2391
|
"message": "طلب الشبكة الأول هو الأهم. يمكنك تقليل وقت الاستجابة للطلب عن طريق تجنُّب عمليات إعادة التوجيه وضمان استجابة الخادم بسرعة وتفعيل ميزة ضغط النص."
|
|
2662
2392
|
},
|
|
2393
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedRedirects": {
|
|
2394
|
+
"message": "تضمَّن الطلب عمليات إعادة توجيه"
|
|
2395
|
+
},
|
|
2396
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedServerResponseTime": {
|
|
2397
|
+
"message": "استجابة الخادم كانت بطيئة"
|
|
2398
|
+
},
|
|
2399
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedTextCompression": {
|
|
2400
|
+
"message": "لم يتمّ تطبيق أي ضغط"
|
|
2401
|
+
},
|
|
2402
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingRedirects": {
|
|
2403
|
+
"message": "يتجنّب هذا الطلب عمليات إعادة التوجيه"
|
|
2404
|
+
},
|
|
2405
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingServerResponseTime": {
|
|
2406
|
+
"message": "استجاب الخادم بسرعة"
|
|
2407
|
+
},
|
|
2408
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingTextCompression": {
|
|
2409
|
+
"message": "تمّ تطبيق ضغط النص"
|
|
2410
|
+
},
|
|
2411
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | redirectsLabel": {
|
|
2412
|
+
"message": "عمليات إعادة التوجيه"
|
|
2413
|
+
},
|
|
2414
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | serverResponseTimeLabel": {
|
|
2415
|
+
"message": "مدة استجابة الخادم"
|
|
2416
|
+
},
|
|
2663
2417
|
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | title": {
|
|
2664
2418
|
"message": "وقت الاستجابة لطلب المستند"
|
|
2665
2419
|
},
|
|
2420
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | uncompressedDownload": {
|
|
2421
|
+
"message": "عملية تنزيل غير مضغوطة"
|
|
2422
|
+
},
|
|
2666
2423
|
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | description": {
|
|
2667
2424
|
"message": "يمكنك ضبط [font-display](https://developer.chrome.com/blog/font-display) على swap أو optional لضمان ظهور النص بشكل ثابت. ويمكن تحسين swap بشكل أكبر للتخفيف من تغييرات التصميم باستخدام [إجراءات تجاوز مقاييس الخطوط](https://developer.chrome.com/blog/font-fallbacks)."
|
|
2668
2425
|
},
|
|
2426
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | fontColumn": {
|
|
2427
|
+
"message": "الخط"
|
|
2428
|
+
},
|
|
2669
2429
|
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | title": {
|
|
2670
2430
|
"message": "عرض الخط"
|
|
2671
2431
|
},
|
|
2432
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | wastedTimeColumn": {
|
|
2433
|
+
"message": "الوقت الضائع"
|
|
2434
|
+
},
|
|
2435
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | description": {
|
|
2436
|
+
"message": "إنّ العديد من واجهات برمجة التطبيقات، التي تقرأ عادةً عناصر التنسيق الهندسية، تجبر محرّك العرض على إيقاف تنفيذ النص البرمجي مؤقتًا لاحتساب عناصر النمط والتنسيق. يمكنك التعرّف على مزيد من المعلومات حول [إعادة التدفق الإلزامي](https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing#avoid-forced-synchronous-layouts) وإجراءات التخفيف من آثاره."
|
|
2437
|
+
},
|
|
2438
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | relatedStackTrace": {
|
|
2439
|
+
"message": "تتبُّع تسلسل استدعاء الدوال البرمجية"
|
|
2440
|
+
},
|
|
2441
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | title": {
|
|
2442
|
+
"message": "إعادة التدفق الإلزامية"
|
|
2443
|
+
},
|
|
2444
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | topTimeConsumingFunctionCall": {
|
|
2445
|
+
"message": "استدعاء الدالة الأكثر شيوعًا"
|
|
2446
|
+
},
|
|
2447
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | totalReflowTime": {
|
|
2448
|
+
"message": "إجمالي مدة إعادة التدفق"
|
|
2449
|
+
},
|
|
2672
2450
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | description": {
|
|
2673
2451
|
"message": "يمكن أن يؤدي تقليل وقت تنزيل الصور إلى تحسين مدّة التحميل المُدرَكة للصفحة، بالإضافة إلى تحسين سرعة عرض أكبر محتوى مرئي. [مزيد من المعلومات حول تحسين حجم الصورة](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)"
|
|
2674
2452
|
},
|
|
2453
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | estimatedSavings": {
|
|
2454
|
+
"message": "{PH1} (الحجم المقدَّر: {PH2})"
|
|
2455
|
+
},
|
|
2456
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | noOptimizableImages": {
|
|
2457
|
+
"message": "ما مِن صور يمكن تحسينها"
|
|
2458
|
+
},
|
|
2459
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | optimizeFile": {
|
|
2460
|
+
"message": "تحسين حجم الملف"
|
|
2461
|
+
},
|
|
2462
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | others": {
|
|
2463
|
+
"message": "عدد العناصر المتبقية: {PH1}"
|
|
2464
|
+
},
|
|
2675
2465
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | title": {
|
|
2676
2466
|
"message": "تحسين عرض الصور"
|
|
2677
2467
|
},
|
|
2678
2468
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useCompression": {
|
|
2679
|
-
"message": "يمكن أن يؤدي زيادة عامل ضغط الصورة إلى تحسين حجم تنزيلها.
|
|
2469
|
+
"message": "يمكن أن يؤدي زيادة عامل ضغط الصورة إلى تحسين حجم تنزيلها."
|
|
2680
2470
|
},
|
|
2681
2471
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useModernFormat": {
|
|
2682
|
-
"message": "يمكن تحسين حجم تنزيل هذه الصورة باستخدام تنسيق صور حديث (مثل WebP أو AVIF) أو زيادة ضغط الصورة.
|
|
2472
|
+
"message": "يمكن تحسين حجم تنزيل هذه الصورة باستخدام تنسيق صور حديث (مثل WebP أو AVIF) أو زيادة ضغط الصورة."
|
|
2683
2473
|
},
|
|
2684
2474
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useResponsiveSize": {
|
|
2685
|
-
"message": "حجم ملف الصورة هذا أكبر من الحجم المطلوب ({
|
|
2475
|
+
"message": "حجم ملف الصورة هذا أكبر من الحجم المطلوب ({PH1}) لأبعادها المعروضة ({PH2}). يُرجى استخدام الصور المتجاوبة مع مختلف الأجهزة لتقليل حجم تنزيل الصورة."
|
|
2686
2476
|
},
|
|
2687
2477
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useVideoFormat": {
|
|
2688
|
-
"message": "إنّ استخدام تنسيقات الفيديو بدلاً من ملفات GIF يمكن أن يؤدي إلى تحسين حجم تنزيل المحتوى المتحرك.
|
|
2478
|
+
"message": "إنّ استخدام تنسيقات الفيديو بدلاً من ملفات GIF يمكن أن يؤدي إلى تحسين حجم تنزيل المحتوى المتحرك."
|
|
2689
2479
|
},
|
|
2690
2480
|
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | description": {
|
|
2691
2481
|
"message": "ابدأ بالتحقيق في المرحلة الأطول. [يمكن تقليل التأخيرات](https://web.dev/articles/optimize-inp#optimize_interactions). ولتقليل مدة المعالجة، [حسِّن تكاليف سلسلة التعليمات الرئيسية](https://web.dev/articles/optimize-long-tasks)، والتي تكون في الغالب بيانات JavaScript."
|
|
2692
2482
|
},
|
|
2483
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | duration": {
|
|
2484
|
+
"message": "المدة"
|
|
2485
|
+
},
|
|
2486
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | inputDelay": {
|
|
2487
|
+
"message": "تأخير عملية الإدخال"
|
|
2488
|
+
},
|
|
2489
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | noInteractions": {
|
|
2490
|
+
"message": "لم يتم رصد أي تفاعلات"
|
|
2491
|
+
},
|
|
2492
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | phase": {
|
|
2493
|
+
"message": "المرحلة"
|
|
2494
|
+
},
|
|
2495
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | presentationDelay": {
|
|
2496
|
+
"message": "تأخير العرض"
|
|
2497
|
+
},
|
|
2498
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | processingDuration": {
|
|
2499
|
+
"message": "مدة المعالجة"
|
|
2500
|
+
},
|
|
2693
2501
|
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | title": {
|
|
2694
2502
|
"message": "مدى استجابة الصفحة لتفاعلات المستخدم (INP) حسب المرحلة"
|
|
2695
2503
|
},
|
|
2696
2504
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | description": {
|
|
2697
2505
|
"message": "يمكنك تحسين مقياس سرعة عرض أكبر محتوى مرئي (LCP) من خلال جعل صورة مقياس LCP [قابلة للاكتشاف](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) من HTML على الفور، و[تجنُّب التحميل الكسول](https://web.dev/articles/lcp-lazy-loading)."
|
|
2698
2506
|
},
|
|
2507
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityApplied": {
|
|
2508
|
+
"message": "تم تطبيق السمة fetchpriority=high"
|
|
2509
|
+
},
|
|
2510
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityShouldBeApplied": {
|
|
2511
|
+
"message": "يجب تطبيق القيمة fetchpriority=high"
|
|
2512
|
+
},
|
|
2513
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lazyLoadNotApplied": {
|
|
2514
|
+
"message": "لم يتم تطبيق طريقة \"التحميل الكسول\""
|
|
2515
|
+
},
|
|
2516
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lcpLoadDelay": {
|
|
2517
|
+
"message": "تم تحميل الصورة الخاصة بمقياس \"سرعة عرض أكبر محتوى مرئي\" (LCP) بعد {PH1} من نقطة البداية الأقدم."
|
|
2518
|
+
},
|
|
2519
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | noLcp": {
|
|
2520
|
+
"message": "لم يتم رصد أي مقياس لسرعة عرض أكبر محتوى مرئي (LCP)"
|
|
2521
|
+
},
|
|
2522
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | noLcpResource": {
|
|
2523
|
+
"message": "لم يتم العثور على أي مصدر لسرعة عرض أكبر محتوى مرئي على الصفحة لأنّه ليس صورة"
|
|
2524
|
+
},
|
|
2525
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | requestDiscoverable": {
|
|
2526
|
+
"message": "الطلب قابل للاكتشاف في المستند الأوّلي"
|
|
2527
|
+
},
|
|
2699
2528
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | title": {
|
|
2700
2529
|
"message": "الاطّلاع على طلبات LCP"
|
|
2701
2530
|
},
|
|
2702
2531
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | description": {
|
|
2703
2532
|
"message": "لكل [مرحلة استراتيجيات تحسين محدَّدة](https://web.dev/articles/optimize-lcp#lcp-breakdown). ومن الأفضل أن يتم قضاء معظم وقت سرعة عرض أكبر محتوى مرئي (LCP) في تحميل الموارد، وليس في التأخيرات."
|
|
2704
2533
|
},
|
|
2534
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | duration": {
|
|
2535
|
+
"message": "المدة"
|
|
2536
|
+
},
|
|
2537
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | elementRenderDelay": {
|
|
2538
|
+
"message": "مهلة عرض العناصر"
|
|
2539
|
+
},
|
|
2540
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | fieldDuration": {
|
|
2541
|
+
"message": "الشريحة المئوية الـ 75 من بيانات تجارب المستخدمِين الحقيقيين"
|
|
2542
|
+
},
|
|
2543
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | noLcp": {
|
|
2544
|
+
"message": "لم يتم رصد أي مقياس لسرعة عرض أكبر محتوى مرئي (LCP)"
|
|
2545
|
+
},
|
|
2546
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | phase": {
|
|
2547
|
+
"message": "المرحلة"
|
|
2548
|
+
},
|
|
2549
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | resourceLoadDelay": {
|
|
2550
|
+
"message": "مهلة تحميل الموارد"
|
|
2551
|
+
},
|
|
2552
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | resourceLoadDuration": {
|
|
2553
|
+
"message": "مدة تحميل المورد"
|
|
2554
|
+
},
|
|
2555
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | timeToFirstByte": {
|
|
2556
|
+
"message": "مدة تحميل أول بايت"
|
|
2557
|
+
},
|
|
2705
2558
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | title": {
|
|
2706
2559
|
"message": "سرعة عرض أكبر محتوى مرئي (LCP) حسب المرحلة"
|
|
2707
2560
|
},
|
|
2561
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | description": {
|
|
2562
|
+
"message": "يُمكن [تجنُّب تقييد الطلبات المهمة](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains) عن طريق تقليل طول السلاسل أو تقليل حجم تنزيل الموارد أو تأجيل تنزيل الموارد غير الضرورية لتحسين تحميل الصفحة."
|
|
2563
|
+
},
|
|
2564
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | maxCriticalPathLatency": {
|
|
2565
|
+
"message": "الحد الأقصى لوقت استجابة سلسلة الطلبات المُهمّة:"
|
|
2566
|
+
},
|
|
2567
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | noNetworkDependencyTree": {
|
|
2568
|
+
"message": "ما مِن مهام عرض متأثرة بطلبات اعتمادية الشبكة"
|
|
2569
|
+
},
|
|
2570
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | title": {
|
|
2571
|
+
"message": "شجرة اعتمادية الشبكة"
|
|
2572
|
+
},
|
|
2573
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | warningDescription": {
|
|
2574
|
+
"message": "يُمكن تجنُّب تقييد الطلبات المهمة عن طريق تقليل طول السلاسل أو تقليل حجم تنزيل الموارد أو تأجيل تنزيل الموارد غير الضرورية لتحسين تحميل الصفحة."
|
|
2575
|
+
},
|
|
2708
2576
|
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | description": {
|
|
2709
2577
|
"message": "تؤدي الطلبات إلى حظر العرض الأوّلي للصفحة، ما قد يُبطئ سرعة عرض أكبر محتوى مرئي (LCP). ويمكن [تأجيل هذه الطلبات](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources/) أو تضمينها لإخراجها من المسار الحرج."
|
|
2710
2578
|
},
|
|
2579
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | duration": {
|
|
2580
|
+
"message": "المدة"
|
|
2581
|
+
},
|
|
2582
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | noRenderBlocking": {
|
|
2583
|
+
"message": "لم يتم حظر أي طلبات لعرض إطار التنقّل هذا"
|
|
2584
|
+
},
|
|
2585
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | renderBlockingRequest": {
|
|
2586
|
+
"message": "طلب الشبكة"
|
|
2587
|
+
},
|
|
2711
2588
|
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | title": {
|
|
2712
2589
|
"message": "طلبات حظر العرض"
|
|
2713
2590
|
},
|
|
2714
2591
|
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | description": {
|
|
2715
2592
|
"message": "إذا ظلت تكاليف ميزة \"إعادة احتساب النمط\" مرتفعة، يمكن أن يؤدي تحسين أداة الاختيار إلى خفضها. يمكنك [تحسين أدوات الاختيار](https://developer.chrome.com/docs/devtools/performance/selector-stats) من خلال زيادة الوقت المنقضي وزيادة النسبة المئوية للمسار البطيء. وسيؤدي استخدام أدوات الاختيار الأبسط وعدد أدوات الاختيار الأقل ونموذج DOM الأصغر ونموذج DOM الأقل تعقيدًا إلى تقليل تكاليف المطابقة."
|
|
2716
2593
|
},
|
|
2594
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | elapsed": {
|
|
2595
|
+
"message": "الوقت المنقضي"
|
|
2596
|
+
},
|
|
2597
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | enableSelectorData": {
|
|
2598
|
+
"message": "لم يتم العثور على أي بيانات لأدوات اختيار لغة CSS. يجب تفعيل إحصاءات أداة اختيار لغة CSS في إعدادات لوحة الأداء."
|
|
2599
|
+
},
|
|
2600
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | matchAttempts": {
|
|
2601
|
+
"message": "عدد محاولات المطابقة"
|
|
2602
|
+
},
|
|
2603
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | matchCount": {
|
|
2604
|
+
"message": "عدد العناصر المطابِقة"
|
|
2605
|
+
},
|
|
2717
2606
|
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | title": {
|
|
2718
2607
|
"message": "تكاليف أداة اختيار لغة CSS"
|
|
2719
2608
|
},
|
|
2609
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | topSelectors": {
|
|
2610
|
+
"message": "أدوات الاختيار الأعلى استهلاكًا للوقت والجهد"
|
|
2611
|
+
},
|
|
2612
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | total": {
|
|
2613
|
+
"message": "الإجمالي"
|
|
2614
|
+
},
|
|
2615
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnMainThreadTime": {
|
|
2616
|
+
"message": "وقت سلسلة المحادثات الأساسية"
|
|
2617
|
+
},
|
|
2618
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnThirdParty": {
|
|
2619
|
+
"message": "الجهة الخارجية"
|
|
2620
|
+
},
|
|
2621
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnTransferSize": {
|
|
2622
|
+
"message": "حجم عملية النقل"
|
|
2623
|
+
},
|
|
2720
2624
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | description": {
|
|
2721
2625
|
"message": "يمكن أن يؤثر الرمز البرمجي التابع لجهة خارجية بشكل كبير في أداء التحميل. [يمكنك تقليل تحميل الرموز البرمجية التابعة لجهات خارجية وتأجيله](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/)، ومنح الأولوية لمحتوى صفحتك."
|
|
2722
2626
|
},
|
|
2627
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | noThirdParties": {
|
|
2628
|
+
"message": "لم يتم العثور على أي محتوى خارجي"
|
|
2629
|
+
},
|
|
2723
2630
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | title": {
|
|
2724
2631
|
"message": "الجهات الخارجية"
|
|
2725
2632
|
},
|
|
@@ -2729,6 +2636,366 @@
|
|
|
2729
2636
|
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | title": {
|
|
2730
2637
|
"message": "تحسين إطار العرض للأجهزة الجوّالة"
|
|
2731
2638
|
},
|
|
2639
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPMethodNotGET": {
|
|
2640
|
+
"message": "الصفحات فقط التي تم تحميلها من خلال طلب استرداد بيانات باستخدام GET يمكن حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2641
|
+
},
|
|
2642
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPStatusNotOK": {
|
|
2643
|
+
"message": "لا يمكن إجراء تخزين مؤقت إلا للصفحات التي تتضمّن رمز الحالة 2XX."
|
|
2644
|
+
},
|
|
2645
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | JavaScriptExecution": {
|
|
2646
|
+
"message": "اكتشف Chrome محاولة لتنفيذ JavaScript أثناء التخزين المؤقت."
|
|
2647
|
+
},
|
|
2648
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | appBanner": {
|
|
2649
|
+
"message": "الصفحات التي طلبت AppBanner يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2650
|
+
},
|
|
2651
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabled": {
|
|
2652
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" في chrome://flags. ويمكنك الانتقال إلى الرابط chrome://flags/#back-forward-cache لتفعيلها على هذا الجهاز."
|
|
2653
|
+
},
|
|
2654
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByCommandLine": {
|
|
2655
|
+
"message": "أوقفَ سطر الأوامر ميزة \"التخزين المؤقت للصفحات\"."
|
|
2656
|
+
},
|
|
2657
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByLowMemory": {
|
|
2658
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب عدم توفّر مساحة كافية في الذاكرة."
|
|
2659
|
+
},
|
|
2660
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForDelegate": {
|
|
2661
|
+
"message": "لا تتوفّر ميزة \"التخزين المؤقت للصفحات\" من خلال التفويض."
|
|
2662
|
+
},
|
|
2663
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForPrerender": {
|
|
2664
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" في العارض المسبق."
|
|
2665
|
+
},
|
|
2666
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | broadcastChannel": {
|
|
2667
|
+
"message": "لا يمكن تخزين الصفحة مؤقتًا لأنها تحتوي على مثال BroadcastChannel يتضمّن أدوات مسجَّلة لمعالجة الحدث."
|
|
2668
|
+
},
|
|
2669
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheControlNoStore": {
|
|
2670
|
+
"message": "الصفحات التي تحتوي على عنوان cache-control:no-store يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
|
|
2671
|
+
},
|
|
2672
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheFlushed": {
|
|
2673
|
+
"message": "سيتم محو ذاكرة التخزين المؤقت عن قصد."
|
|
2674
|
+
},
|
|
2675
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheLimit": {
|
|
2676
|
+
"message": "تم إخراج الصفحة من ذاكرة التخزين المؤقت للسماح بالتخزين المؤقت لصفحة أخرى."
|
|
2677
|
+
},
|
|
2678
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | containsPlugins": {
|
|
2679
|
+
"message": "الصفحات التي تحتوي على مكوّنات إضافية يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2680
|
+
},
|
|
2681
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentDiscarded": {
|
|
2682
|
+
"message": "غير محدّد"
|
|
2683
|
+
},
|
|
2684
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileChooser": {
|
|
2685
|
+
"message": "الصفحات التي تستخدِم FileChooser API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2686
|
+
},
|
|
2687
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileSystemAccess": {
|
|
2688
|
+
"message": "الصفحات التي تستخدِم File System Access API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2689
|
+
},
|
|
2690
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaDevicesDispatcherHost": {
|
|
2691
|
+
"message": "الصفحات التي تستخدِم أداة Media Device Dispatcher يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2692
|
+
},
|
|
2693
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaPlay": {
|
|
2694
|
+
"message": "كان مشغّل الوسائط قيد التشغيل عند مغادرته."
|
|
2695
|
+
},
|
|
2696
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSession": {
|
|
2697
|
+
"message": "الصفحات التي تستخدِم MediaSession API وتضبط حالة للتشغيل يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2698
|
+
},
|
|
2699
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSessionService": {
|
|
2700
|
+
"message": "الصفحات التي تستخدِم MediaSession API وتضبط معالِجات الإجراءات يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2701
|
+
},
|
|
2702
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentScreenReader": {
|
|
2703
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب استخدام قارئ الشاشة."
|
|
2704
|
+
},
|
|
2705
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSecurityHandler": {
|
|
2706
|
+
"message": "الصفحات التي تستخدِم SecurityHandler يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2707
|
+
},
|
|
2708
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSerial": {
|
|
2709
|
+
"message": "الصفحات التي تستخدِم Serial API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2710
|
+
},
|
|
2711
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebAuthenticationAPI": {
|
|
2712
|
+
"message": "الصفحات التي تستخدِم WebAuthentication API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2713
|
+
},
|
|
2714
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebBluetooth": {
|
|
2715
|
+
"message": "الصفحات التي تستخدِم WebBluetooth API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2716
|
+
},
|
|
2717
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebUSB": {
|
|
2718
|
+
"message": "الصفحات التي تستخدِم WebUSB API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2719
|
+
},
|
|
2720
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cookieDisabled": {
|
|
2721
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب إيقاف ملفات تعريف الارتباط على صفحة تستخدم السمة Cache-Control: no-store."
|
|
2722
|
+
},
|
|
2723
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | dedicatedWorkerOrWorklet": {
|
|
2724
|
+
"message": "الصفحات التي تستخدِم مشغّل خدمات مخصَّصًا أو وظيفة صغيرة يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2725
|
+
},
|
|
2726
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | documentLoaded": {
|
|
2727
|
+
"message": "تمت مغادرة المستند قبل أن ينتهي من التحميل."
|
|
2728
|
+
},
|
|
2729
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderAppBannerManager": {
|
|
2730
|
+
"message": "كان بانر التطبيق قيد الاستخدام أثناء مغادرة الصفحة."
|
|
2731
|
+
},
|
|
2732
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderChromePasswordManagerClientBindCredentialManager": {
|
|
2733
|
+
"message": "كان مدير كلمات المرور في Chrome قيد الاستخدام أثناء مغادرة الصفحة."
|
|
2734
|
+
},
|
|
2735
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerSelfDeletingRequestDelegate": {
|
|
2736
|
+
"message": "كانت عملية تصفية \"نموذج العناصر في المستند\" قيد التقدُّم أثناء مغادرة الصفحة."
|
|
2737
|
+
},
|
|
2738
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerViewerSource": {
|
|
2739
|
+
"message": "كان عارض DOM Distiller Viewer قيد الاستخدام أثناء مغادرة الصفحة."
|
|
2740
|
+
},
|
|
2741
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessaging": {
|
|
2742
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" لأنّ الإضافات تستخدم واجهة برمجة تطبيقات خدمة المراسلة."
|
|
2743
|
+
},
|
|
2744
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessagingForOpenPort": {
|
|
2745
|
+
"message": "الإضافات ذات الاتصال الطويل الأمد يجب أن تُغلِق الاتصال قبل تخزينها مؤقتًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2746
|
+
},
|
|
2747
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionSentMessageToCachedFrame": {
|
|
2748
|
+
"message": "حاولت الإضافات ذات الاتصال الطويل الأمد إرسال رسائل إلى الإطارات المدرَجة في ميزة \"التخزين المؤقت للصفحات\"."
|
|
2749
|
+
},
|
|
2750
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensions": {
|
|
2751
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب استخدام الإضافات."
|
|
2752
|
+
},
|
|
2753
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderModalDialog": {
|
|
2754
|
+
"message": "تم عرض مربع حوار نمطي، مثل مربع حوار إعادة إرسال النموذج أو مربع حوار مصادقة HTTP باستخدام كلمة مرور، في الصفحة أثناء مغادرتها."
|
|
2755
|
+
},
|
|
2756
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOfflinePage": {
|
|
2757
|
+
"message": "تم عرض الصفحة المتوفّرة بلا اتصال بالإنترنت أثناء المغادرة."
|
|
2758
|
+
},
|
|
2759
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOomInterventionTabHelper": {
|
|
2760
|
+
"message": "كان شريط Out-Of-Memory Intervention قيد الاستخدام أثناء مغادرة الصفحة."
|
|
2761
|
+
},
|
|
2762
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPermissionRequestManager": {
|
|
2763
|
+
"message": "كانت طلبات الأذونات قيد التقدُّم أثناء مغادرة الصفحة."
|
|
2764
|
+
},
|
|
2765
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPopupBlockerTabHelper": {
|
|
2766
|
+
"message": "كان حاجب النوافذ المنبثقة قيد الاستخدام أثناء مغادرة الصفحة."
|
|
2767
|
+
},
|
|
2768
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingThreatDetails": {
|
|
2769
|
+
"message": "تم عرض تفاصيل \"التصفُّح الآمن\" أثناء مغادرة الصفحة."
|
|
2770
|
+
},
|
|
2771
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingTriggeredPopupBlocker": {
|
|
2772
|
+
"message": "رصدت ميزة \"التصفُّح الآمن\" أنّ هذه الصفحة تتضمن محتوى مسيئًا وحظرت نافذة منبثقة."
|
|
2773
|
+
},
|
|
2774
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
|
|
2775
|
+
"message": "تم تفعيل مشغّل خدمات أثناء إدراج الصفحة في \"التخزين المؤقت للصفحات\"."
|
|
2776
|
+
},
|
|
2777
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | errorDocument": {
|
|
2778
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب خطأ في المستند."
|
|
2779
|
+
},
|
|
2780
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | fencedFramesEmbedder": {
|
|
2781
|
+
"message": "لا يمكن تخزين الصفحات التي تستخدم الإطار FencedFrames من خلال ميزة \"التخزين المؤقت للصفحات\"."
|
|
2782
|
+
},
|
|
2783
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | foregroundCacheLimit": {
|
|
2784
|
+
"message": "تم إخراج الصفحة من ذاكرة التخزين المؤقت للسماح بالتخزين المؤقت لصفحة أخرى."
|
|
2785
|
+
},
|
|
2786
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | grantedMediaStreamAccess": {
|
|
2787
|
+
"message": "الصفحات التي سمحت بالوصول إلى محتوى بث الوسائط يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2788
|
+
},
|
|
2789
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | haveInnerContents": {
|
|
2790
|
+
"message": "الصفحات التي تحتوي على أنواع معيّنة من المحتوى المضمّن (مثل ملفات PDF) غير مؤهَّلة حاليًا لاستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2791
|
+
},
|
|
2792
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | idleManager": {
|
|
2793
|
+
"message": "الصفحات التي تستخدِم IdleManager يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2794
|
+
},
|
|
2795
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBConnection": {
|
|
2796
|
+
"message": "الصفحات التي تحتوي على اتصال مفتوح لقاعدة بيانات مفهرسة يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2797
|
+
},
|
|
2798
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBEvent": {
|
|
2799
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب حدث في IndexedDB."
|
|
2800
|
+
},
|
|
2801
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | ineligibleAPI": {
|
|
2802
|
+
"message": "تم استخدام واجهات غير مؤهَّلة لبرمجة التطبيقات."
|
|
2803
|
+
},
|
|
2804
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedJavascript": {
|
|
2805
|
+
"message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" حاليًا لتخزين الصفحات التي تم إدخال JavaScript فيها من خلال الإضافات."
|
|
2806
|
+
},
|
|
2807
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedStyleSheet": {
|
|
2808
|
+
"message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" حاليًا لتخزين الصفحات التي تم إدخال StyleSheet فيها من خلال الإضافات."
|
|
2809
|
+
},
|
|
2810
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | internalError": {
|
|
2811
|
+
"message": "حدث خطأ داخلي."
|
|
2812
|
+
},
|
|
2813
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | jsNetworkRequestReceivedCacheControlNoStoreResource": {
|
|
2814
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" لأنّ بعض طلبات شبكة JavaScript تلقّت موردًا يحمل العنوان Cache-Control: no-store."
|
|
2815
|
+
},
|
|
2816
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keepaliveRequest": {
|
|
2817
|
+
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب طلب رسالة التحقّق من الاتصال."
|
|
2818
|
+
},
|
|
2819
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keyboardLock": {
|
|
2820
|
+
"message": "الصفحات التي تستخدِم قفل لوحة المفاتيح يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2821
|
+
},
|
|
2822
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | loading": {
|
|
2823
|
+
"message": "تمت مغادرة الصفحة قبل أن تنتهي من التحميل."
|
|
2824
|
+
},
|
|
2825
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoCache": {
|
|
2826
|
+
"message": "الصفحات التي يحتوي موردها الرئيسي على cache-control:no-cache يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
|
|
2827
|
+
},
|
|
2828
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoStore": {
|
|
2829
|
+
"message": "الصفحات التي يحتوي موردها الرئيسي على cache-control:no-store يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
|
|
2830
|
+
},
|
|
2831
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | navigationCancelledWhileRestoring": {
|
|
2832
|
+
"message": "تم إلغاء التنقّل قبل أن تتم استعادة الصفحة من خلال ميزة \"التخزين المؤقت للصفحات\"."
|
|
2833
|
+
},
|
|
2834
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkExceedsBufferLimit": {
|
|
2835
|
+
"message": "تم إخراج الصفحة من ذاكرة التخزين المؤقت لأنّ الاتصال النشط بالشبكة تلقّى الكثير من البيانات، علمًا بأنّ Chrome يقيّد مقدار البيانات التي قد تتلقّاها الصفحة أثناء تخزينها مؤقتًا."
|
|
2836
|
+
},
|
|
2837
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
|
|
2838
|
+
"message": "الصفحات التي تستخدِم XHR أو fetch() قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2839
|
+
},
|
|
2840
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestRedirected": {
|
|
2841
|
+
"message": "تم إخراج الصفحة من ذاكرة \"التخزين المؤقت للصفحات\" لأنّ أحد طلبات الشبكة النشطة تضمَّن إعادة توجيه."
|
|
2842
|
+
},
|
|
2843
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestTimeout": {
|
|
2844
|
+
"message": "تم إخراج الصفحة من ذاكرة التخزين المؤقت لأنّ الاتصال بالشبكة كان مفتوحًا لفترة طويلة جدًا، علمًا بأنّ Chrome يقيّد مقدار الوقت الذي قد تتلقّى خلاله الصفحة البيانات أثناء تخزينها مؤقتًا."
|
|
2845
|
+
},
|
|
2846
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | noResponseHead": {
|
|
2847
|
+
"message": "الصفحات التي لا تحتوي على عنوان استجابة صالح يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
|
|
2848
|
+
},
|
|
2849
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | notMainFrame": {
|
|
2850
|
+
"message": "حدث التنقُّل في إطار غير الإطار الرئيسي."
|
|
2851
|
+
},
|
|
2852
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingIndexedDBTransaction": {
|
|
2853
|
+
"message": "الصفحات التي تتضمّن عمليات جارية لقاعدة البيانات المُفهرَسة يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2854
|
+
},
|
|
2855
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestDirectSocket": {
|
|
2856
|
+
"message": "الصفحات التي تستخدِم طلب شبكة قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2857
|
+
},
|
|
2858
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestFetch": {
|
|
2859
|
+
"message": "الصفحات التي تستخدِم طلب شبكة fetch قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2860
|
+
},
|
|
2861
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestOthers": {
|
|
2862
|
+
"message": "الصفحات التي تستخدِم طلب شبكة قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2863
|
+
},
|
|
2864
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestXHR": {
|
|
2865
|
+
"message": "الصفحات التي تستخدِم طلب شبكة XHR قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2866
|
+
},
|
|
2867
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | paymentManager": {
|
|
2868
|
+
"message": "الصفحات التي تستخدِم PaymentManager يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2869
|
+
},
|
|
2870
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | pictureInPicture": {
|
|
2871
|
+
"message": "الصفحات التي تستخدِم ميزة \"نافذة ضمن النافذة\" يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2872
|
+
},
|
|
2873
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | printing": {
|
|
2874
|
+
"message": "الصفحات التي تعرض \"واجهة مستخدم الطباعة\" يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2875
|
+
},
|
|
2876
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | relatedActiveContentsExist": {
|
|
2877
|
+
"message": "تم فتح الصفحة باستخدام \"window.open()\" وعلامة تبويب أخرى بها مرجع إليها، أو أنّ الصفحة فتحت نافذة."
|
|
2878
|
+
},
|
|
2879
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessCrashed": {
|
|
2880
|
+
"message": "تعطّلت عملية العرض للصفحة خلال \"التخزين المؤقت للصفحات\"."
|
|
2881
|
+
},
|
|
2882
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessKilled": {
|
|
2883
|
+
"message": "تم إنهاء عملية العرض للصفحة خلال \"التخزين المؤقت للصفحات\"."
|
|
2884
|
+
},
|
|
2885
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedAudioCapturePermission": {
|
|
2886
|
+
"message": "الصفحات التي طلبت أذونات تسجيل الصوت يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2887
|
+
},
|
|
2888
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackForwardCacheBlockedSensors": {
|
|
2889
|
+
"message": "الصفحات التي طلبت أذونات جهاز الاستشعار يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2890
|
+
},
|
|
2891
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackgroundWorkPermission": {
|
|
2892
|
+
"message": "الصفحات التي طلبت أذونات الاسترجاع أو المزامنة في الخلفية يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2893
|
+
},
|
|
2894
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedMIDIPermission": {
|
|
2895
|
+
"message": "الصفحات التي طلبت أذونات الوصول إلى أجهزة MIDI يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2896
|
+
},
|
|
2897
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedNotificationsPermission": {
|
|
2898
|
+
"message": "الصفحات التي طلبت أذونات الإشعارات يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2899
|
+
},
|
|
2900
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedStorageAccessGrant": {
|
|
2901
|
+
"message": "الصفحات التي طلبت الوصول إلى مساحة التخزين يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2902
|
+
},
|
|
2903
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedVideoCapturePermission": {
|
|
2904
|
+
"message": "الصفحات التي طلبت أذونات تسجيل الفيديو يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2905
|
+
},
|
|
2906
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | schemeNotHTTPOrHTTPS": {
|
|
2907
|
+
"message": "لا يمكن إجراء تخزين مؤقت إلا للصفحات التي يكون مخطَّط URL فيها هو HTTP/HTTPS."
|
|
2908
|
+
},
|
|
2909
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerClaim": {
|
|
2910
|
+
"message": "استدعى مشغّل الخدمات الصفحة أثناء محاولة حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2911
|
+
},
|
|
2912
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerPostMessage": {
|
|
2913
|
+
"message": "حاول مشغّل خدمات إرسال MessageEvent إلى الصفحة في ميزة \"التخزين المؤقت للصفحات\"."
|
|
2914
|
+
},
|
|
2915
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerUnregistration": {
|
|
2916
|
+
"message": "تم إلغاء تسجيل ServiceWorkers أثناء إدراج الصفحة في \"التخزين المؤقت للصفحات\"."
|
|
2917
|
+
},
|
|
2918
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerVersionActivation": {
|
|
2919
|
+
"message": "تم إخراج الصفحة من \"التخزين المؤقت للصفحات\" بسبب تنشيط مشغّل الخدمات."
|
|
2920
|
+
},
|
|
2921
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sessionRestored": {
|
|
2922
|
+
"message": "تمت إعادة تشغيل Chrome الذي محا إدخالات ميزة \"التخزين المؤقت للصفحات\"."
|
|
2923
|
+
},
|
|
2924
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sharedWorker": {
|
|
2925
|
+
"message": "الصفحات التي تستخدِم SharedWorker يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2926
|
+
},
|
|
2927
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechRecognizer": {
|
|
2928
|
+
"message": "الصفحات التي تستخدِم SpeechRecognizer يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2929
|
+
},
|
|
2930
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechSynthesis": {
|
|
2931
|
+
"message": "الصفحات التي تستخدِم SpeechSynthesis يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2932
|
+
},
|
|
2933
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subframeIsNavigating": {
|
|
2934
|
+
"message": "بدأ إطار iframe على الصفحة عملية تنقُّل لم تكتمل."
|
|
2935
|
+
},
|
|
2936
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoCache": {
|
|
2937
|
+
"message": "الصفحات التي يحتوي موردها الفرعي على cache-control:no-cache يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
|
|
2938
|
+
},
|
|
2939
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoStore": {
|
|
2940
|
+
"message": "الصفحات التي يحتوي موردها الفرعي على cache-control:no-store يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
|
|
2941
|
+
},
|
|
2942
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeout": {
|
|
2943
|
+
"message": "تجاوزت الصفحة الحدّ الأقصى للوقت أثناء حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\" وانتهت صلاحيتها."
|
|
2944
|
+
},
|
|
2945
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeoutPuttingInCache": {
|
|
2946
|
+
"message": "انتهت مهلة إدراج الصفحة في \"التخزين المؤقت للصفحات\" (قد يرجع ذلك إلى معالِجات إخفاء الصفحات التي تستغرق مدة زمنية طويلة)."
|
|
2947
|
+
},
|
|
2948
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInMainFrame": {
|
|
2949
|
+
"message": "تحتوي الصفحة على معالج لإلغاء التحميل في الإطار الرئيسي."
|
|
2950
|
+
},
|
|
2951
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInSubFrame": {
|
|
2952
|
+
"message": "تحتوي الصفحة على معالِج لإلغاء التحميل في إطار فرعي."
|
|
2953
|
+
},
|
|
2954
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | userAgentOverrideDiffers": {
|
|
2955
|
+
"message": "غيَّر المتصفّح عنوان تجاوز وكيل المستخدم."
|
|
2956
|
+
},
|
|
2957
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | wasGrantedMediaAccess": {
|
|
2958
|
+
"message": "الصفحات التي سمحت بتسجيل فيديو أو صوت يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2959
|
+
},
|
|
2960
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webDatabase": {
|
|
2961
|
+
"message": "الصفحات التي تستخدِم WebDatabase يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2962
|
+
},
|
|
2963
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webHID": {
|
|
2964
|
+
"message": "الصفحات التي تستخدِم WebHID يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2965
|
+
},
|
|
2966
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webLocks": {
|
|
2967
|
+
"message": "الصفحات التي تستخدِم WebLocks يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2968
|
+
},
|
|
2969
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webNfc": {
|
|
2970
|
+
"message": "الصفحات التي تستخدِم WebNfc يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2971
|
+
},
|
|
2972
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webOTPService": {
|
|
2973
|
+
"message": "الصفحات التي تستخدِم خدمة WebOTPService يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2974
|
+
},
|
|
2975
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
|
|
2976
|
+
"message": "الصفحات التي تحتوي على WebRTC يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
|
|
2977
|
+
},
|
|
2978
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
|
|
2979
|
+
"message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعَّلة بسبب استخدام WebRTC."
|
|
2980
|
+
},
|
|
2981
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
|
|
2982
|
+
"message": "الصفحات التي تستخدِم WebShare يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2983
|
+
},
|
|
2984
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
|
|
2985
|
+
"message": "الصفحات التي تحتوي على WebSocket يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
|
|
2986
|
+
},
|
|
2987
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
|
|
2988
|
+
"message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعّلة بسبب استخدام WebSocket."
|
|
2989
|
+
},
|
|
2990
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
|
|
2991
|
+
"message": "الصفحات التي تحتوي على WebTransport يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
|
|
2992
|
+
},
|
|
2993
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
|
|
2994
|
+
"message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعَّلة بسبب استخدام WebTransport."
|
|
2995
|
+
},
|
|
2996
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
|
|
2997
|
+
"message": "الصفحات التي تستخدِم WebXR يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
|
|
2998
|
+
},
|
|
2732
2999
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2733
3000
|
"message": "For animated content, use [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) to minimize CPU usage when the content is offscreen."
|
|
2734
3001
|
},
|
|
@@ -3221,6 +3488,9 @@
|
|
|
3221
3488
|
"report/renderer/report-utils.js | dropdownDarkTheme": {
|
|
3222
3489
|
"message": "Toggle Dark Theme"
|
|
3223
3490
|
},
|
|
3491
|
+
"report/renderer/report-utils.js | dropdownInsightsToggle": {
|
|
3492
|
+
"message": "Toggle experimental insights"
|
|
3493
|
+
},
|
|
3224
3494
|
"report/renderer/report-utils.js | dropdownPrintExpanded": {
|
|
3225
3495
|
"message": "Print Expanded"
|
|
3226
3496
|
},
|