lighthouse 10.2.0 → 10.3.0-dev.20230614

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (133) hide show
  1. package/cli/test/smokehouse/__snapshots__/report-assert-test.js.snap +4 -6
  2. package/core/audits/accessibility/html-xml-lang-mismatch.d.ts +10 -0
  3. package/core/audits/accessibility/html-xml-lang-mismatch.js +47 -0
  4. package/core/audits/accessibility/input-button-name.d.ts +10 -0
  5. package/core/audits/accessibility/input-button-name.js +44 -0
  6. package/core/audits/accessibility/table-fake-caption.d.ts +10 -0
  7. package/core/audits/accessibility/table-fake-caption.js +47 -0
  8. package/core/audits/accessibility/td-has-header.d.ts +10 -0
  9. package/core/audits/accessibility/td-has-header.js +45 -0
  10. package/core/audits/audit.d.ts +2 -1
  11. package/core/audits/audit.js +5 -2
  12. package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +3 -3
  13. package/core/audits/byte-efficiency/byte-efficiency-audit.js +14 -19
  14. package/core/audits/deprecations.js +1 -1
  15. package/core/audits/largest-contentful-paint-element.d.ts +14 -2
  16. package/core/audits/largest-contentful-paint-element.js +49 -31
  17. package/core/audits/layout-shift-elements.d.ts +3 -2
  18. package/core/audits/layout-shift-elements.js +10 -2
  19. package/core/audits/metrics.js +0 -2
  20. package/core/audits/network-requests.js +6 -0
  21. package/core/audits/seo/crawlable-anchors.js +4 -0
  22. package/core/audits/server-response-time.d.ts +2 -1
  23. package/core/audits/server-response-time.js +17 -3
  24. package/core/audits/uses-rel-preconnect.js +20 -4
  25. package/core/computed/entity-classification.d.ts +14 -1
  26. package/core/computed/entity-classification.js +61 -6
  27. package/core/computed/metrics/cumulative-layout-shift.d.ts +2 -9
  28. package/core/computed/metrics/cumulative-layout-shift.js +3 -16
  29. package/core/computed/metrics/time-to-first-byte.js +10 -7
  30. package/core/computed/metrics/timing-summary.js +0 -3
  31. package/core/config/default-config.js +8 -0
  32. package/core/gather/driver/execution-context.js +13 -5
  33. package/core/gather/driver/target-manager.d.ts +13 -0
  34. package/core/gather/driver/target-manager.js +49 -0
  35. package/core/gather/gatherers/accessibility.js +19 -20
  36. package/core/gather/gatherers/anchor-elements.js +2 -0
  37. package/core/gather/gatherers/global-listeners.js +38 -21
  38. package/core/gather/gatherers/inspector-issues.js +2 -1
  39. package/core/gather/gatherers/trace-elements.d.ts +3 -2
  40. package/core/gather/gatherers/trace-elements.js +10 -19
  41. package/core/legacy/config/config.d.ts +1 -1
  42. package/core/legacy/config/config.js +1 -1
  43. package/core/legacy/gather/driver.d.ts +1 -0
  44. package/core/legacy/gather/driver.js +11 -0
  45. package/core/lib/asset-saver.d.ts +4 -0
  46. package/core/lib/asset-saver.js +19 -0
  47. package/core/lib/bf-cache-strings.d.ts +3 -0
  48. package/core/lib/bf-cache-strings.js +248 -232
  49. package/core/lib/cdt/generated/SourceMap.d.ts +18 -31
  50. package/core/lib/cdt/generated/SourceMap.js +51 -101
  51. package/core/lib/dependency-graph/simulator/network-analyzer.d.ts +6 -2
  52. package/core/lib/dependency-graph/simulator/network-analyzer.js +45 -13
  53. package/core/lib/deprecation-description.d.ts +17 -0
  54. package/core/lib/deprecation-description.js +71 -0
  55. package/core/lib/deprecations-strings.d.ts +282 -63
  56. package/core/lib/deprecations-strings.js +282 -551
  57. package/core/lib/lh-error.d.ts +9 -4
  58. package/core/lib/lh-error.js +15 -11
  59. package/core/lib/network-request.d.ts +13 -6
  60. package/core/lib/network-request.js +39 -14
  61. package/core/lib/stack-packs.js +4 -0
  62. package/core/lib/tracehouse/trace-processor.js +1 -1
  63. package/core/lib/url-utils.js +4 -0
  64. package/core/runner.js +4 -2
  65. package/dist/report/bundle.esm.js +24 -7
  66. package/dist/report/flow.js +3 -3
  67. package/dist/report/standalone.js +8 -8
  68. package/package.json +13 -13
  69. package/readme.md +7 -0
  70. package/report/assets/styles.css +18 -2
  71. package/report/assets/templates.html +4 -0
  72. package/report/renderer/category-renderer.js +5 -2
  73. package/report/renderer/components.js +2 -2
  74. package/report/renderer/dom.d.ts +4 -1
  75. package/report/renderer/dom.js +3 -2
  76. package/shared/localization/locales/ar-XB.json +20 -170
  77. package/shared/localization/locales/ar.json +20 -170
  78. package/shared/localization/locales/bg.json +19 -169
  79. package/shared/localization/locales/ca.json +19 -169
  80. package/shared/localization/locales/cs.json +19 -169
  81. package/shared/localization/locales/da.json +19 -169
  82. package/shared/localization/locales/de.json +19 -169
  83. package/shared/localization/locales/el.json +19 -169
  84. package/shared/localization/locales/en-GB.json +9 -159
  85. package/shared/localization/locales/en-US.json +166 -70
  86. package/shared/localization/locales/en-XA.json +20 -170
  87. package/shared/localization/locales/en-XL.json +166 -70
  88. package/shared/localization/locales/es-419.json +19 -169
  89. package/shared/localization/locales/es.json +19 -169
  90. package/shared/localization/locales/fi.json +19 -169
  91. package/shared/localization/locales/fil.json +17 -167
  92. package/shared/localization/locales/fr.json +18 -168
  93. package/shared/localization/locales/he.json +19 -169
  94. package/shared/localization/locales/hi.json +20 -170
  95. package/shared/localization/locales/hr.json +19 -169
  96. package/shared/localization/locales/hu.json +19 -169
  97. package/shared/localization/locales/id.json +19 -169
  98. package/shared/localization/locales/it.json +19 -169
  99. package/shared/localization/locales/ja.json +19 -169
  100. package/shared/localization/locales/ko.json +19 -169
  101. package/shared/localization/locales/lt.json +20 -170
  102. package/shared/localization/locales/lv.json +20 -170
  103. package/shared/localization/locales/nl.json +18 -168
  104. package/shared/localization/locales/no.json +19 -169
  105. package/shared/localization/locales/pl.json +19 -169
  106. package/shared/localization/locales/pt-PT.json +19 -169
  107. package/shared/localization/locales/pt.json +19 -169
  108. package/shared/localization/locales/ro.json +19 -169
  109. package/shared/localization/locales/ru.json +19 -169
  110. package/shared/localization/locales/sk.json +20 -170
  111. package/shared/localization/locales/sl.json +19 -169
  112. package/shared/localization/locales/sr-Latn.json +19 -169
  113. package/shared/localization/locales/sr.json +19 -169
  114. package/shared/localization/locales/sv.json +19 -169
  115. package/shared/localization/locales/ta.json +19 -169
  116. package/shared/localization/locales/te.json +19 -169
  117. package/shared/localization/locales/th.json +19 -169
  118. package/shared/localization/locales/tr.json +19 -169
  119. package/shared/localization/locales/uk.json +19 -169
  120. package/shared/localization/locales/vi.json +20 -170
  121. package/shared/localization/locales/zh-HK.json +19 -169
  122. package/shared/localization/locales/zh-TW.json +19 -169
  123. package/shared/localization/locales/zh.json +19 -169
  124. package/shared/util.d.ts +6 -0
  125. package/shared/util.js +14 -1
  126. package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +2 -1
  127. package/tsconfig-base.json +1 -1
  128. package/types/artifacts.d.ts +10 -8
  129. package/types/audit.d.ts +5 -0
  130. package/types/gatherer.d.ts +1 -0
  131. package/types/lhr/audit-details.d.ts +1 -0
  132. package/types/lhr/audit-result.d.ts +10 -0
  133. package/types/internal/es-main.d.ts +0 -18
@@ -981,28 +981,28 @@
981
981
  "message": "Atļauts ar brīdinājumu"
982
982
  },
983
983
  "core/audits/largest-contentful-paint-element.js | columnPercentOfLCP": {
984
- "message": "% of LCP"
984
+ "message": "% no LSA"
985
985
  },
986
986
  "core/audits/largest-contentful-paint-element.js | columnPhase": {
987
- "message": "Phase"
987
+ "message": "Posms"
988
988
  },
989
989
  "core/audits/largest-contentful-paint-element.js | columnTiming": {
990
- "message": "Timing"
990
+ "message": "Laiks"
991
991
  },
992
992
  "core/audits/largest-contentful-paint-element.js | description": {
993
993
  "message": "Tas ir lielākais skatvietā atveidotais satura elements. [Uzziniet vairāk par lielāko satura atveidojuma elementu](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)."
994
994
  },
995
995
  "core/audits/largest-contentful-paint-element.js | itemLoadDelay": {
996
- "message": "Load Delay"
996
+ "message": "Ielādes aizkave"
997
997
  },
998
998
  "core/audits/largest-contentful-paint-element.js | itemLoadTime": {
999
- "message": "Load Time"
999
+ "message": "Ielādes laiks"
1000
1000
  },
1001
1001
  "core/audits/largest-contentful-paint-element.js | itemRenderDelay": {
1002
- "message": "Render Delay"
1002
+ "message": "Atveidošanas aizkave"
1003
1003
  },
1004
1004
  "core/audits/largest-contentful-paint-element.js | itemTTFB": {
1005
- "message": "TTFB"
1005
+ "message": "LLPB"
1006
1006
  },
1007
1007
  "core/audits/largest-contentful-paint-element.js | title": {
1008
1008
  "message": "Lielākais satura atveidojuma elements"
@@ -2138,156 +2138,6 @@
2138
2138
  "core/lib/csp-evaluator.js | unsafeInlineFallback": {
2139
2139
  "message": "Lai nodrošinātu atpakaļsaderību ar vecākām pārlūkprogrammām, varat pievienot atslēgvārdu “unsafe-inline” (pārlūkprogrammās, kas atbalsta vienreizējos kodus vai jaucējvērtības, šis atslēgvārds tiks ignorēts)."
2140
2140
  },
2141
- "core/lib/deprecations-strings.js | authorizationCoveredByWildcard": {
2142
- "message": "Galvenei “authorization” nevarēs izmantot aizstājējzīmi (*), citas izcelsmes resursu kopīgošanas mehānismam apstrādājot “`Access-Control-Allow-Headers`”."
2143
- },
2144
- "core/lib/deprecations-strings.js | canRequestURLHTTPContainingNewline": {
2145
- "message": "Resursu pieprasījumi, kuru vietrāžos URL bija ietvertas gan noņemtas baltstarpas rakstzīmes (`(n|r|t)`), gan rakstzīmes “mazāk nekā” (`<`), ir bloķēti. Lai ielādētu šos resursus, lūdzu, noņemiet jaunas rindas rakstzīmes un kodējiet rakstzīmes “mazāk nekā” tādās vietās kā elementu atribūtu vērtības."
2146
- },
2147
- "core/lib/deprecations-strings.js | chromeLoadTimesConnectionInfo": {
2148
- "message": "Metode “`chrome.loadTimes()`” vairs netiek izmantota, tās vietā izmantojiet standartizētu API: Navigation Timing 2."
2149
- },
2150
- "core/lib/deprecations-strings.js | chromeLoadTimesFirstPaintAfterLoadTime": {
2151
- "message": "Metode “`chrome.loadTimes()`” vairs netiek izmantota, tās vietā izmantojiet standartizētu API: Paint Timing."
2152
- },
2153
- "core/lib/deprecations-strings.js | chromeLoadTimesWasAlternateProtocolAvailable": {
2154
- "message": "Metode “`chrome.loadTimes()`” vairs netiek izmantota, tās vietā izmantojiet standartizētu API: “`nextHopProtocol`” saskarnē Navigation Timing 2."
2155
- },
2156
- "core/lib/deprecations-strings.js | cookieWithTruncatingChar": {
2157
- "message": "Sīkfaili, kuros ir rakstzīme “`(0|r|n)`”, tiks noraidīti, nevis saīsināti."
2158
- },
2159
- "core/lib/deprecations-strings.js | crossOriginAccessBasedOnDocumentDomain": {
2160
- "message": "Tās pašas izcelsmes politikas ierobežojumu noņemšana, iestatot “`document.domain`”, vairs netiek izmantota, un šī iespēja tiks atspējota pēc noklusējuma. Šis darbības pārtraukšanas brīdinājums ir saistīts ar citas izcelsmes piekļuvi, kas tika iespējota, iestatot “`document.domain`”."
2161
- },
2162
- "core/lib/deprecations-strings.js | crossOriginWindowApi": {
2163
- "message": "Metodes “{PH1}” aktivizēšana no citas izcelsmes iframe ietvariem vairs netiek izmantota un nākotnē tiks noņemta."
2164
- },
2165
- "core/lib/deprecations-strings.js | cssSelectorInternalMediaControlsOverlayCastButton": {
2166
- "message": "Lai atspējotu noklusējuma Cast integrāciju, ir jāizmanto atribūts “`disableRemotePlayback`”, nevis atlasītājs “`-internal-media-controls-overlay-cast-button`”."
2167
- },
2168
- "core/lib/deprecations-strings.js | deprecatedWithReplacement": {
2169
- "message": "Funkcija “{PH1}” vairs netiek atbalstīta. Tās vietā, lūdzu, izmantojiet funkciju “{PH2}”."
2170
- },
2171
- "core/lib/deprecations-strings.js | deprecationExample": {
2172
- "message": "Šis ir tulkotā darbības pārtraukšanas problēmas ziņojuma piemērs."
2173
- },
2174
- "core/lib/deprecations-strings.js | documentDomainSettingWithoutOriginAgentClusterHeader": {
2175
- "message": "Tās pašas izcelsmes politikas ierobežojumu noņemšana, iestatot “`document.domain`”, vairs netiek izmantota, un šī iespēja tiks atspējota pēc noklusējuma. Lai turpinātu izmantot šo funkciju, lūdzu, atsakieties no aģentu grupēšanas pēc izcelsmes, nosūtot galveni “`Origin-Agent-Cluster: ?0`” kopā ar HTTP atbildi dokumentam un ietvariem. Plašāku informāciju skatiet vietnē https://developer.chrome.com/blog/immutable-document-domain/."
2176
- },
2177
- "core/lib/deprecations-strings.js | eventPath": {
2178
- "message": "Saskarne “`Event.path`” vairs netiek izmantota un tiks noņemta. Tās vietā, lūdzu, izmantojiet metodi “`Event.composedPath()`”."
2179
- },
2180
- "core/lib/deprecations-strings.js | expectCTHeader": {
2181
- "message": "Galvene “`Expect-CT`” vairs netiek atbalstīta un tiks noņemta. Pārlūkā Chrome visiem sertifikātiem, kas izdoti pēc 2018. gada 30. aprīļa un publiski atzīti par uzticamiem, ir jāizmanto sertifikāta pārredzamība."
2182
- },
2183
- "core/lib/deprecations-strings.js | feature": {
2184
- "message": "Plašāku informāciju skatiet funkcijas statusa lapā."
2185
- },
2186
- "core/lib/deprecations-strings.js | geolocationInsecureOrigin": {
2187
- "message": "Metodes “`getCurrentPosition()`” un “`watchPosition()`” vairs nedarbojas nedrošos avotos. Lai izmantotu šo funkciju, apsveriet iespēju lietojumprogrammā izmantot drošu avotu, piemēram, HTTPS. Plašāku informāciju skatiet vietnē https://goo.gle/chrome-insecure-origins."
2188
- },
2189
- "core/lib/deprecations-strings.js | geolocationInsecureOriginDeprecatedNotRemoved": {
2190
- "message": "Metodes “`getCurrentPosition()`” un “`watchPosition()`” vairs netiek izmantotas nedrošos avotos. Lai izmantotu šo funkciju, apsveriet iespēju lietojumprogrammā izmantot drošu avotu, piemēram, HTTPS. Plašāku informāciju skatiet vietnē https://goo.gle/chrome-insecure-origins."
2191
- },
2192
- "core/lib/deprecations-strings.js | getUserMediaInsecureOrigin": {
2193
- "message": "Metode “`getUserMedia()`” vairs nedarbojas nedrošiem avotiem. Lai izmantotu šo funkciju, apsveriet iespēju lietojumprogrammā izmantot drošu avotu, piemēram, HTTPS. Plašāku informāciju skatiet vietnē https://goo.gle/chrome-insecure-origins."
2194
- },
2195
- "core/lib/deprecations-strings.js | hostCandidateAttributeGetter": {
2196
- "message": "Objekts “`RTCPeerConnectionIceErrorEvent.hostCandidate`” vairs netiek atbalstīts. Tā vietā izmantojiet “`RTCPeerConnectionIceErrorEvent.address`” vai “`RTCPeerConnectionIceErrorEvent.port`”."
2197
- },
2198
- "core/lib/deprecations-strings.js | identityInCanMakePaymentEvent": {
2199
- "message": "Tirgotāja izcelsme un patvaļīgi noteikti dati no pakalpojumu skripta notikuma “`canmakepayment`” ir novecojuši un tiks noņemti: `topOrigin`, `paymentRequestOrigin`, `methodData` un `modifiers`."
2200
- },
2201
- "core/lib/deprecations-strings.js | insecurePrivateNetworkSubresourceRequest": {
2202
- "message": "Vietne pieprasīja apakšresursu no tīkla, kam varēja piekļūt tikai lietotāju priviliģētā tīkla stāvokļa dēļ. Šie pieprasījumi saista publiski nepieejamas ierīces un serverus ar internetu, palielinot starpvietņu pieprasījuma viltošanas uzbrukumu un/vai informācijas noplūdes risku. Lai samazinātu šos riskus, Chrome pārtrauc atbalstīt pieprasījumus publiski nepieejamiem apakšresursiem, ja tie aktivizēti nedrošā vidē, un sāks tos bloķēt."
2203
- },
2204
- "core/lib/deprecations-strings.js | localCSSFileExtensionRejected": {
2205
- "message": "CSS nevar ielādēt no “`file:`” vietrāžiem URL, ja tie nebeidzas ar faila paplašinājumu “`.css`”."
2206
- },
2207
- "core/lib/deprecations-strings.js | mediaSourceAbortRemove": {
2208
- "message": "Specifikācijas izmaiņu dēļ metodes “`SourceBuffer.abort()`” izmantošana, lai priekšlaikus pārtrauktu “`remove()`” asinhrono diapazona noņemšanu, ir novecojusi. Tiek plānots pārtraukt tās atbalstu. Tās vietā ieteicams izmantot notikuma “`updateend`” uztveršanu. Metode “`abort()`” ir paredzēta tikai asinhronas multivides līdzekļu pievienošanas priekšlaicīgai pārtraukšanai vai parsētāja statusa atiestatīšanai."
2209
- },
2210
- "core/lib/deprecations-strings.js | mediaSourceDurationTruncatingBuffered": {
2211
- "message": "Specifikācijas izmaiņu dēļ vairs netiek atbalstīta “`MediaSource.duration`” iestatīšana zem lielākā parādīšanas laikspiedola buferī ievietotiem kodētiem ietvariem. Saīsināta, buferī ievietota multivides satura netiešas noņemšanas atbalsts tiks pārtraukts. Tās vietā izmantojiet tiešu metodi “`remove(newDuration, oldDuration)`” visiem objektiem “`sourceBuffers`”, ja tiek izpildīts nosacījums “`newDuration < oldDuration`”."
2212
- },
2213
- "core/lib/deprecations-strings.js | milestone": {
2214
- "message": "Šīs izmaiņas stāsies spēkā galvenajā versijā {milestone}."
2215
- },
2216
- "core/lib/deprecations-strings.js | noSysexWebMIDIWithoutPermission": {
2217
- "message": "Web MIDI vaicās izmantošanas atļauju, pat ja objektā “`MIDIOptions`” nav norādīta vērtība “sysex”."
2218
- },
2219
- "core/lib/deprecations-strings.js | notificationInsecureOrigin": {
2220
- "message": "Paziņojumu API vairs nevar izmantot no nedrošiem avotiem. Apsveriet iespēju lietojumprogrammā izmantot drošu avotu, piemēram, HTTPS. Plašāku informāciju skatiet vietnē https://goo.gle/chrome-insecure-origins."
2221
- },
2222
- "core/lib/deprecations-strings.js | notificationPermissionRequestedIframe": {
2223
- "message": "No citas izcelsmes iframe ietvara vairs nevar pieprasīt atļauju saskarnei Paziņojumu API. Apsveriet iespēju pieprasīt atļauju no augšējā līmeņa ietvara vai atvērt jaunu logu."
2224
- },
2225
- "core/lib/deprecations-strings.js | obsoleteWebRtcCipherSuite": {
2226
- "message": "Jūsu partneris saskaņo novecojušu (D)TLS versiju. Lūdzu, sazinieties ar partneri, lai to novērstu."
2227
- },
2228
- "core/lib/deprecations-strings.js | openWebDatabaseInsecureContext": {
2229
- "message": "Saskarne WebSQL vairs netiek izmantota nedrošos kontekstos un drīz tiks noņemta. Lūdzu, izmantojiet saskarni Web Storage vai Indexed Database."
2230
- },
2231
- "core/lib/deprecations-strings.js | overflowVisibleOnReplacedElement": {
2232
- "message": "Tagos “img”, “video” un “canvas” norādot vērtību “`overflow: visible`”, vizuāls saturs var tikt rādīts ārpus elementa robežām. Skatiet vietni https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md."
2233
- },
2234
- "core/lib/deprecations-strings.js | paymentInstruments": {
2235
- "message": "Saskarne `paymentManager.instruments` vairs netiek atbalstīta. Tās vietā maksājumu apdarinātājiem izmantojiet instalēšanu tieši laikā."
2236
- },
2237
- "core/lib/deprecations-strings.js | paymentRequestCSPViolation": {
2238
- "message": "Ar jūsu `PaymentRequest` izsaukumu tika apieta Content-Security-Policy (satura drošības politikas — SDP) direktīva “`connect-src`”. Šādai apiešanai ir pārtraukts atbalsts. SDP direktīvai “`connect-src`” pievienojiet maksājuma veida identifikatoru no `PaymentRequest` API (laukā `supportedMethods`)."
2239
- },
2240
- "core/lib/deprecations-strings.js | persistentQuotaType": {
2241
- "message": "Elements “`StorageType.persistent`” vairs netiek atbalstīts. Tā vietā, lūdzu, izmantojiet standartizēto elementu “`navigator.storage`”."
2242
- },
2243
- "core/lib/deprecations-strings.js | pictureSourceSrc": {
2244
- "message": "Elements `<source src>` ar galveno elementu `<picture>` nav derīgs, tādēļ tiks ignorēts. Tā vietā, lūdzu, izmantojiet `<source srcset>`."
2245
- },
2246
- "core/lib/deprecations-strings.js | prefixedStorageInfo": {
2247
- "message": "Saskarne “`window.webkitStorageInfo`” vairs netiek atbalstīta. Tās vietā, lūdzu, izmantojiet standartizēto elementu “`navigator.storage`”."
2248
- },
2249
- "core/lib/deprecations-strings.js | requestedSubresourceWithEmbeddedCredentials": {
2250
- "message": "Apakšresursu pieprasījumi, kuru vietrāžos URL ir iegulti akreditācijas dati (piem., `https://user:pass@host/`), ir bloķēti."
2251
- },
2252
- "core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpFalse": {
2253
- "message": "Ierobežojums “`DtlsSrtpKeyAgreement`” ir noņemts. Jūs šim ierobežojumam esat noteicis vērtību “`false`”, un tas tiek interpretēts kā mēģinājums izmantot noņemto metodi “`SDES key negotiation`”. Šī funkcionalitāte ir noņemta. Tās vietā izmantojiet pakalpojumu, kas atbalsta metodi “`DTLS key negotiation`”."
2254
- },
2255
- "core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpTrue": {
2256
- "message": "Ierobežojums “`DtlsSrtpKeyAgreement`” ir noņemts. Jūs šim ierobežojumam esat noteicis vērtību “`true`”, taču tas nedarbojās. Skaidrības labad varat noņemt šo ierobežojumu."
2257
- },
2258
- "core/lib/deprecations-strings.js | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
2259
- "message": "Tika konstatēts protokols “`Complex Plan B SDP`”. Šis protokola “`Session Description Protocol`” veids vairs netiek izmantots. Tā vietā, lūdzu, izmantojiet “`Unified Plan SDP`”."
2260
- },
2261
- "core/lib/deprecations-strings.js | rtcPeerConnectionSdpSemanticsPlanB": {
2262
- "message": "Protokols “`Plan B SDP semantics`”, kas tiek izmantots, veidojot “`RTCPeerConnection`” ar `{sdpSemantics:plan-b}`, ir protokola “`Session Description Protocol`” mantota nestandarta versija, kas ir neatgriezeniski izdzēsta no tīmekļa platformas. Tas joprojām ir pieejams, veidošanai izmantojot “`IS_FUCHSIA`”, taču ir plānots to pēc iespējas drīzāk dzēst. Pārtrauciet to izmantot. Lai uzzinātu statusu, skatiet vietni https://crbug.com/1302249."
2263
- },
2264
- "core/lib/deprecations-strings.js | rtcpMuxPolicyNegotiate": {
2265
- "message": "Opcija “`rtcpMuxPolicy`” vairs nav pieejama un tiks noņemta."
2266
- },
2267
- "core/lib/deprecations-strings.js | sharedArrayBufferConstructedWithoutIsolation": {
2268
- "message": "Objektam “`SharedArrayBuffer`” būs nepieciešama izolēšana no citas izcelsmes resursiem. Plašāku informāciju skatiet vietnē https://developer.chrome.com/blog/enabling-shared-array-buffer/."
2269
- },
2270
- "core/lib/deprecations-strings.js | textToSpeech_DisallowedByAutoplay": {
2271
- "message": "Metode “`speechSynthesis.speak()`” bez lietotāja aktivizācijas vairs netiek izmantota un tiks noņemta."
2272
- },
2273
- "core/lib/deprecations-strings.js | title": {
2274
- "message": "Tiek izmantota novecojusi funkcija"
2275
- },
2276
- "core/lib/deprecations-strings.js | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
2277
- "message": "Lai turpinātu izmantot “`SharedArrayBuffer`”, paplašinājumiem ir jāizvēlas izolācija no citas izcelsmes resursiem. Plašāku informāciju skatiet vietnē https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
2278
- },
2279
- "core/lib/deprecations-strings.js | vendorSpecificApi": {
2280
- "message": "Funkcija “{PH1}” ir piesaistīta nodrošinātājam. Lūdzu, izmantojiet standarta funkciju “{PH2}”."
2281
- },
2282
- "core/lib/deprecations-strings.js | xhrJSONEncodingDetection": {
2283
- "message": "Saskarnē “`XMLHttpRequest`” atbildes json failos netiek atbalstīts UTF-16."
2284
- },
2285
- "core/lib/deprecations-strings.js | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
2286
- "message": "Sinhronā saskarne “`XMLHttpRequest`” galvenajā pavedienā vairs netiek izmantota, jo tā negatīvi ietekmēja galalietotāju pieredzi. Plašāku informāciju skatiet vietnē https://xhr.spec.whatwg.org/."
2287
- },
2288
- "core/lib/deprecations-strings.js | xrSupportsSession": {
2289
- "message": "Metode “`supportsSession()`” vairs netiek atbalstīta. Lūdzu, izmantojiet metodi “`isSessionSupported()`” un pārbaudiet saņemto Būla vērtību."
2290
- },
2291
2141
  "core/lib/i18n/i18n.js | columnBlockingTime": {
2292
2142
  "message": "Galvenā pavediena bloķēšanas laiks"
2293
2143
  },
@@ -2760,31 +2610,31 @@
2760
2610
  "message": "Izmantojiet [Ezoic Leap](https://pubdash.ezoic.com/speed) un iespējojiet `Resize Images`, lai mainītu attēlu izmērus atbilstoši ierīcei, tādējādi samazinot tīkla lietderīgo slodzi."
2761
2611
  },
2762
2612
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | modern-image-formats": {
2763
- "message": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically optimize image format. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2613
+ "message": "Lai automātiski optimizētu attēlu formātu, izmantojiet komponentu `gatsby-plugin-image`, nevis `<img>`. [Uzziniet vairāk](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2764
2614
  },
2765
2615
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | offscreen-images": {
2766
- "message": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically lazy-load images. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2616
+ "message": "Lai automātiski atliktu attēlu ielādi, izmantojiet komponentu `gatsby-plugin-image`, nevis `<img>`. [Uzziniet vairāk](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2767
2617
  },
2768
2618
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | prioritize-lcp-image": {
2769
- "message": "Use the `gatsby-plugin-image` component and set the `loading` prop to `eager`. [Learn more](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-plugin-image#shared-props)."
2619
+ "message": "Izmantojiet komponentu `gatsby-plugin-image` un iestatiet elementa `loading` vērtību `eager`. [Uzziniet vairāk](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-plugin-image#shared-props)."
2770
2620
  },
2771
2621
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | render-blocking-resources": {
2772
- "message": "Use the `Gatsby Script API` to defer loading of non-critical third-party scripts. [Learn more](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-script/)."
2622
+ "message": "Izmantojiet `Gatsby Script API`, lai atliktu mazāk svarīgu trešās puses skriptu ielādi. [Uzziniet vairāk](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-script/)."
2773
2623
  },
2774
2624
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-css-rules": {
2775
- "message": "Use the `PurgeCSS` `Gatsby` plugin to remove unused rules from stylesheets. [Learn more](https://purgecss.com/plugins/gatsby.html)."
2625
+ "message": "Izmantojiet `PurgeCSS` `Gatsby` spraudni, lai noņemtu neizmantotas stilu lapu kārtulas. [Uzziniet vairāk](https://purgecss.com/plugins/gatsby.html)."
2776
2626
  },
2777
2627
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-javascript": {
2778
- "message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn more](https://www.gatsbyjs.com/plugins/gatsby-plugin-webpack-bundle-analyser-v2/)"
2628
+ "message": "Lai noteiktu neizmantotu JavaScript kodu, izmantojiet `Webpack Bundle Analyzer`. [Uzziniet vairāk](https://www.gatsbyjs.com/plugins/gatsby-plugin-webpack-bundle-analyser-v2/)."
2779
2629
  },
2780
2630
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-long-cache-ttl": {
2781
- "message": "Configure caching for immutable assets. [Learn more](https://www.gatsbyjs.com/docs/how-to/previews-deploys-hosting/caching/)."
2631
+ "message": "Konfigurējiet nemainīgu līdzekļu saglabāšanu kešatmiņā. [Uzziniet vairāk](https://www.gatsbyjs.com/docs/how-to/previews-deploys-hosting/caching/)."
2782
2632
  },
2783
2633
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-optimized-images": {
2784
- "message": "Use the `gatsby-plugin-image` component instead of `<img>` to adjust image quality. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2634
+ "message": "Lai pielāgotu attēlu kvalitāti, izmantojiet komponentu `gatsby-plugin-image`, nevis `<img>`. [Uzziniet vairāk](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2785
2635
  },
2786
2636
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-responsive-images": {
2787
- "message": "Use the `gatsby-plugin-image` component to set appropriate `sizes`. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2637
+ "message": "Lai iestatītu atbilstošās elementa `sizes` vērtības, izmantojiet komponentu `gatsby-plugin-image`. [Uzziniet vairāk](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2788
2638
  },
2789
2639
  "node_modules/lighthouse-stack-packs/packs/joomla.js | efficient-animated-content": {
2790
2640
  "message": "Ieteicams augšupielādēt GIF failu pakalpojumā, kuru varēs izmantot, lai iegultu GIF failu kā HTML5 videoklipu."
@@ -2865,10 +2715,10 @@
2865
2715
  "message": "Varat pievienot `<link rel=preload>` tagus, [modificējot motīva izkārtojumu](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
2866
2716
  },
2867
2717
  "node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
2868
- "message": "Use the `next/image` component instead of `<img>` to automatically optimize image format. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
2718
+ "message": "Lai automātiski optimizētu attēlu formātu, izmantojiet komponentu `next/image`, nevis `<img>`. [Uzziniet vairāk](https://nextjs.org/docs/basic-features/image-optimization)."
2869
2719
  },
2870
2720
  "node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
2871
- "message": "Use the `next/image` component instead of `<img>` to automatically lazy-load images. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
2721
+ "message": "Lai automātiski atliktu attēlu ielādi, izmantojiet komponentu `next/image`, nevis `<img>`. [Uzziniet vairāk](https://nextjs.org/docs/basic-features/image-optimization)."
2872
2722
  },
2873
2723
  "node_modules/lighthouse-stack-packs/packs/next.js | prioritize-lcp-image": {
2874
2724
  "message": "Izmantojiet komponentu `next/image` un iestatiet opcijai “priority” vērtību “true”, lai iepriekš ielādētu LCP attēlu. [Uzziniet vairāk](https://nextjs.org/docs/api-reference/next/image#priority)."
@@ -2883,7 +2733,7 @@
2883
2733
  "message": "Lai noņemtu neizmantotas stilu lapu kārtulas, `Next.js` konfigurācijā ieteicams iestatīt spraudni `PurgeCSS`. [Uzziniet vairāk](https://purgecss.com/guides/next.html)."
2884
2734
  },
2885
2735
  "node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
2886
- "message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn more](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
2736
+ "message": "Lai noteiktu neizmantotu JavaScript kodu, izmantojiet `Webpack Bundle Analyzer`. [Uzziniet vairāk](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)."
2887
2737
  },
2888
2738
  "node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
2889
2739
  "message": "Lai novērtētu lietotnes faktisko veiktspēju ieteicams izmantot `Next.js Analytics`. [Uzziniet vairāk](https://nextjs.org/docs/advanced-features/measuring-performance)."
@@ -2892,7 +2742,7 @@
2892
2742
  "message": "Konfigurējiet nemainīgu līdzekļu un `Server-side Rendered` (SSR) lapu saglabāšanu kešatmiņā. [Uzziniet vairāk](https://nextjs.org/docs/going-to-production#caching)."
2893
2743
  },
2894
2744
  "node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
2895
- "message": "Use the `next/image` component instead of `<img>` to adjust image quality. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
2745
+ "message": "Lai pielāgotu attēlu kvalitāti, izmantojiet komponentu `next/image`, nevis `<img>`. [Uzziniet vairāk](https://nextjs.org/docs/basic-features/image-optimization)."
2896
2746
  },
2897
2747
  "node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
2898
2748
  "message": "Lai iestatītu atbilstošās elementa `sizes` vērtības, izmantojiet komponentu `next/image`. [Uzziniet vairāk](https://nextjs.org/docs/api-reference/next/image#sizes)."
@@ -981,10 +981,10 @@
981
981
  "message": "Toegestaan met waarschuwing"
982
982
  },
983
983
  "core/audits/largest-contentful-paint-element.js | columnPercentOfLCP": {
984
- "message": "% of LCP"
984
+ "message": "% van LCP"
985
985
  },
986
986
  "core/audits/largest-contentful-paint-element.js | columnPhase": {
987
- "message": "Phase"
987
+ "message": "Fase"
988
988
  },
989
989
  "core/audits/largest-contentful-paint-element.js | columnTiming": {
990
990
  "message": "Timing"
@@ -993,13 +993,13 @@
993
993
  "message": "Dit is het grootste element met content dat weergegeven wordt in de viewport. [Meer informatie over het element Grootste weergave met content (LCP)](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)"
994
994
  },
995
995
  "core/audits/largest-contentful-paint-element.js | itemLoadDelay": {
996
- "message": "Load Delay"
996
+ "message": "Laadvertraging"
997
997
  },
998
998
  "core/audits/largest-contentful-paint-element.js | itemLoadTime": {
999
- "message": "Load Time"
999
+ "message": "Laadtijd"
1000
1000
  },
1001
1001
  "core/audits/largest-contentful-paint-element.js | itemRenderDelay": {
1002
- "message": "Render Delay"
1002
+ "message": "Weergavevertraging"
1003
1003
  },
1004
1004
  "core/audits/largest-contentful-paint-element.js | itemTTFB": {
1005
1005
  "message": "TTFB"
@@ -2138,156 +2138,6 @@
2138
2138
  "core/lib/csp-evaluator.js | unsafeInlineFallback": {
2139
2139
  "message": "Voor compatibiliteit met oudere browsers kun je overwegen 'unsafe-inline' toe te voegen (dit wordt genegeerd door browsers die nonces/hashes ondersteunen)."
2140
2140
  },
2141
- "core/lib/deprecations-strings.js | authorizationCoveredByWildcard": {
2142
- "message": "Autorisatie wordt niet gedekt door het jokerteken (*) voor het gebruik van `Access-Control-Allow-Headers` in CORS."
2143
- },
2144
- "core/lib/deprecations-strings.js | canRequestURLHTTPContainingNewline": {
2145
- "message": "Bronverzoeken waarvan de URL's verwijderde `(n|r|t)`-tekens voor witruimten en kleiner-dan-tekens (`<`) bevatten, worden geblokkeerd. Verwijder nieuwe-regelitems en codeer kleiner-dan-tekens, bijvoorbeeld in kenmerkwaarden voor elementen, om deze bronnen te laden."
2146
- },
2147
- "core/lib/deprecations-strings.js | chromeLoadTimesConnectionInfo": {
2148
- "message": "`chrome.loadTimes()` is beëindigd, gebruik in plaats daarvan de gestandaardiseerde API: Navigation Timing 2."
2149
- },
2150
- "core/lib/deprecations-strings.js | chromeLoadTimesFirstPaintAfterLoadTime": {
2151
- "message": "`chrome.loadTimes()` is beëindigd, gebruik in plaats daarvan de gestandaardiseerde API: Paint Timing."
2152
- },
2153
- "core/lib/deprecations-strings.js | chromeLoadTimesWasAlternateProtocolAvailable": {
2154
- "message": "`chrome.loadTimes()` is beëindigd, gebruik in plaats daarvan de gestandaardiseerde API: `nextHopProtocol` in Navigation Timing 2."
2155
- },
2156
- "core/lib/deprecations-strings.js | cookieWithTruncatingChar": {
2157
- "message": "Cookies die een `(0|r|n)`-teken bevatten, worden afgewezen in plaats van afgekapt."
2158
- },
2159
- "core/lib/deprecations-strings.js | crossOriginAccessBasedOnDocumentDomain": {
2160
- "message": "Versoepeling van het same-origin-beleid door `document.domain` in te stellen is beëindigd en wordt standaard uitgezet. Deze beëindigingswaarschuwing is voor een cross-origin-toegang die is aangezet door `document.domain` in te stellen."
2161
- },
2162
- "core/lib/deprecations-strings.js | crossOriginWindowApi": {
2163
- "message": "De activering van {PH1} via cross-origin iframes is beëindigd en wordt in de toekomst verwijderd."
2164
- },
2165
- "core/lib/deprecations-strings.js | cssSelectorInternalMediaControlsOverlayCastButton": {
2166
- "message": "In plaats van de kiezer `-internal-media-controls-overlay-cast-button` moet het kenmerk `disableRemotePlayback` worden gebruikt om de standaardintegratie van Cast uit te zetten."
2167
- },
2168
- "core/lib/deprecations-strings.js | deprecatedWithReplacement": {
2169
- "message": "{PH1} is beëindigd. Gebruik in plaats daarvan {PH2}."
2170
- },
2171
- "core/lib/deprecations-strings.js | deprecationExample": {
2172
- "message": "Dit is een voorbeeld van een vertaalde foutmelding over een beëindigde functie."
2173
- },
2174
- "core/lib/deprecations-strings.js | documentDomainSettingWithoutOriginAgentClusterHeader": {
2175
- "message": "Versoepeling van het same-origin-beleid door `document.domain` in te stellen is beëindigd en wordt standaard uitgezet. Als je deze functie wilt blijven gebruiken, meld je je af voor origin-keyed agentclusters door een `Origin-Agent-Cluster: ?0`-header met de HTTP-reactie voor het document en de frames mee te sturen. Zie https://developer.chrome.com/blog/immutable-document-domain/ voor meer informatie."
2176
- },
2177
- "core/lib/deprecations-strings.js | eventPath": {
2178
- "message": "`Event.path` is beëindigd en wordt verwijderd. Gebruik in plaats daarvan `Event.composedPath()`."
2179
- },
2180
- "core/lib/deprecations-strings.js | expectCTHeader": {
2181
- "message": "De header `Expect-CT` is beëindigd en wordt verwijderd. Chrome vereist certificaattransparantie voor alle openbaar vertrouwde certificaten die na 30 april 2018 zijn uitgegeven."
2182
- },
2183
- "core/lib/deprecations-strings.js | feature": {
2184
- "message": "Check de statuspagina van de functie voor meer informatie."
2185
- },
2186
- "core/lib/deprecations-strings.js | geolocationInsecureOrigin": {
2187
- "message": "`getCurrentPosition()` en `watchPosition()` werken niet meer op niet-beveiligde oorsprongen. Als je deze functie wilt gebruiken, kun je overwegen om een beveiligde oorsprong voor je app te gebruiken, zoals HTTPS. Zie https://goo.gle/chrome-insecure-origins voor meer informatie."
2188
- },
2189
- "core/lib/deprecations-strings.js | geolocationInsecureOriginDeprecatedNotRemoved": {
2190
- "message": "`getCurrentPosition()` en `watchPosition()` zijn beëindigd op niet-beveiligde oorsprongen. Als je deze functie wilt gebruiken, kun je overwegen om een beveiligde oorsprong voor je app te gebruiken, zoals HTTPS. Zie https://goo.gle/chrome-insecure-origins voor meer informatie."
2191
- },
2192
- "core/lib/deprecations-strings.js | getUserMediaInsecureOrigin": {
2193
- "message": "`getUserMedia()` werkt niet meer op niet-beveiligde oorsprongen. Als je deze functie wilt gebruiken, kun je overwegen om een beveiligde oorsprong voor je app te gebruiken, zoals HTTPS. Zie https://goo.gle/chrome-insecure-origins voor meer informatie."
2194
- },
2195
- "core/lib/deprecations-strings.js | hostCandidateAttributeGetter": {
2196
- "message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` is beëindigd. Gebruik in plaats daarvan `RTCPeerConnectionIceErrorEvent.address` of `RTCPeerConnectionIceErrorEvent.port`."
2197
- },
2198
- "core/lib/deprecations-strings.js | identityInCanMakePaymentEvent": {
2199
- "message": "De verkoperoorsprong en willekeurige gegevens van de `canmakepayment`-service worker-gebeurtenis zijn beëindigd en worden verwijderd: `topOrigin`, `paymentRequestOrigin`, `methodData`, `modifiers`."
2200
- },
2201
- "core/lib/deprecations-strings.js | insecurePrivateNetworkSubresourceRequest": {
2202
- "message": "De website heeft een subbron bij een netwerk aangevraagd die alleen toegankelijk is vanwege de bevoorrechte netwerkpositie van de gebruikers. Deze verzoeken stellen niet-openbare apparaten en servers bloot aan internet, waardoor het risico op een CSRF-aanval (cross-site request forgery) en/of informatielekken toeneemt. Ter beperking van deze risico's beëindigt Chrome verzoeken naar niet-openbare subbronnen als deze worden gestart vanuit onbeveiligde omgevingen en gaat Chrome dergelijke verzoeken blokkeren."
2203
- },
2204
- "core/lib/deprecations-strings.js | localCSSFileExtensionRejected": {
2205
- "message": "Css kan niet worden geladen via `file:`-URL's, tenzij ze eindigen op een `.css`-bestandsextensie."
2206
- },
2207
- "core/lib/deprecations-strings.js | mediaSourceAbortRemove": {
2208
- "message": "Het gebruik van `SourceBuffer.abort()` om de verwijdering van het asynchrone bereik van `remove()` te annuleren, is verwijderd vanwege wijzigingen in de specificaties. Ondersteuning wordt in de toekomst verwijderd. Gebruik in plaats daarvan een listener voor de gebeurtenis `updateend`. `abort()` is alleen bedoeld om een asynchrone mediatoevoeging te annuleren of om de status van de parser te resetten."
2209
- },
2210
- "core/lib/deprecations-strings.js | mediaSourceDurationTruncatingBuffered": {
2211
- "message": "Het instellen van `MediaSource.duration` onder het hoogste presentatietijdstempel van gebufferde gecodeerde frames is beëindigd vanwege wijzigingen in de specificaties. Ondersteuning voor impliciete verwijdering van afgebroken gebufferde media wordt in de toekomst verwijderd. In plaats daarvan moet je `remove(newDuration, oldDuration)` expliciet uitvoeren voor alle `sourceBuffers`, waarbij `newDuration < oldDuration` is."
2212
- },
2213
- "core/lib/deprecations-strings.js | milestone": {
2214
- "message": "Deze wijziging wordt van kracht vanaf mijlpaal {milestone}."
2215
- },
2216
- "core/lib/deprecations-strings.js | noSysexWebMIDIWithoutPermission": {
2217
- "message": "Web MIDI vraagt toestemming voor het gebruik van SysEx, zelfs als de SysEx niet is opgegeven in de `MIDIOptions`."
2218
- },
2219
- "core/lib/deprecations-strings.js | notificationInsecureOrigin": {
2220
- "message": "De Notification API mag niet meer worden gebruikt vanaf niet-beveiligde oorsprongen. Je kunt overwegen om een beveiligde oorsprong voor je app te gebruiken, zoals HTTPS. Zie https://goo.gle/chrome-insecure-origins voor meer informatie."
2221
- },
2222
- "core/lib/deprecations-strings.js | notificationPermissionRequestedIframe": {
2223
- "message": "Rechten voor de Notification API kunnen niet meer worden aangevraagd bij een cross-origin iframe. Je kunt rechten aanvragen bij een frame op het hoofdniveau of in plaats daarvan een nieuw venster openen."
2224
- },
2225
- "core/lib/deprecations-strings.js | obsoleteWebRtcCipherSuite": {
2226
- "message": "Je partner gebruikt een verouderde (D)TLS-versie. Neem contact op met je partner om dit op te lossen."
2227
- },
2228
- "core/lib/deprecations-strings.js | openWebDatabaseInsecureContext": {
2229
- "message": "WebSQL in niet-beveiligde contexten is beëindigd en wordt binnenkort verwijderd. Gebruik Web Storage of Indexed Database."
2230
- },
2231
- "core/lib/deprecations-strings.js | overflowVisibleOnReplacedElement": {
2232
- "message": "Als je `overflow: visible` opgeeft voor img-, video- en canvas-tags, kunnen deze visuele content produceren buiten de elementgrenzen. Zie https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md."
2233
- },
2234
- "core/lib/deprecations-strings.js | paymentInstruments": {
2235
- "message": "`paymentManager.instruments` is beëindigd. Gebruik in plaats daarvan just-in-time-installaties voor betalingshandlers."
2236
- },
2237
- "core/lib/deprecations-strings.js | paymentRequestCSPViolation": {
2238
- "message": "Je aanroep van `PaymentRequest` heeft de instructie Content-Security-Policy (CSP) `connect-src` genegeerd. Deze negeeractie is beëindigd. Voeg de betaalmethode-ID van de `PaymentRequest`-API (in het veld `supportedMethods`) toe aan je CSP-instructie `connect-src`."
2239
- },
2240
- "core/lib/deprecations-strings.js | persistentQuotaType": {
2241
- "message": "`StorageType.persistent` is beëindigd. Gebruik in plaats daarvan de gestandaardiseerde `navigator.storage`."
2242
- },
2243
- "core/lib/deprecations-strings.js | pictureSourceSrc": {
2244
- "message": "`<source src>` met een bovenliggende `<picture>` is ongeldig en wordt daarom genegeerd. Gebruik in plaats daarvan `<source srcset>`."
2245
- },
2246
- "core/lib/deprecations-strings.js | prefixedStorageInfo": {
2247
- "message": "`window.webkitStorageInfo` is beëindigd. Gebruik in plaats daarvan de gestandaardiseerde `navigator.storage`."
2248
- },
2249
- "core/lib/deprecations-strings.js | requestedSubresourceWithEmbeddedCredentials": {
2250
- "message": "Subbronverzoeken waarvan de URL's ingesloten inloggegevens bevatten (bijv. `https://user:pass@host/`), worden geblokkeerd."
2251
- },
2252
- "core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpFalse": {
2253
- "message": "De beperking `DtlsSrtpKeyAgreement` is verwijderd. Je hebt een `false`-waarde voor deze beperking opgegeven. Deze wordt geïnterpreteerd als een poging om de verwijderde `SDES key negotiation`-methode te gebruiken. Deze functionaliteit is verwijderd. Gebruik een service die `DTLS key negotiation` wel ondersteunt."
2254
- },
2255
- "core/lib/deprecations-strings.js | rtcConstraintEnableDtlsSrtpTrue": {
2256
- "message": "De beperking `DtlsSrtpKeyAgreement` is verwijderd. Je hebt een `true`-waarde voor deze beperking opgegeven. Deze heeft geen effect en kan worden verwijderd om meer orde te scheppen."
2257
- },
2258
- "core/lib/deprecations-strings.js | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
2259
- "message": "`Complex Plan B SDP` waargenomen. Dit dialect van `Session Description Protocol` wordt niet meer ondersteund. Gebruik in plaats daarvan `Unified Plan SDP`."
2260
- },
2261
- "core/lib/deprecations-strings.js | rtcPeerConnectionSdpSemanticsPlanB": {
2262
- "message": "`Plan B SDP semantics`, dat wordt gebruikt om een `RTCPeerConnection` samen te stellen met `{sdpSemantics:plan-b}`, is een verouderde niet-standaard versie van `Session Description Protocol` dat definitief van het Web Platform is verwijderd. Het protocol is nog wel beschikbaar als je met `IS_FUCHSIA` ontwikkelt, maar we willen het protocol zo snel mogelijk verwijderen. Vertrouw er niet meer op. Zie https://crbug.com/1302249 voor de status."
2263
- },
2264
- "core/lib/deprecations-strings.js | rtcpMuxPolicyNegotiate": {
2265
- "message": "De optie `rtcpMuxPolicy` is beëindigd en wordt verwijderd."
2266
- },
2267
- "core/lib/deprecations-strings.js | sharedArrayBufferConstructedWithoutIsolation": {
2268
- "message": "`SharedArrayBuffer` vereist cross-origin-isolatie. Zie https://developer.chrome.com/blog/enabling-shared-array-buffer/ voor meer informatie."
2269
- },
2270
- "core/lib/deprecations-strings.js | textToSpeech_DisallowedByAutoplay": {
2271
- "message": "`speechSynthesis.speak()` zonder gebruikersactivering is beëindigd en wordt verwijderd."
2272
- },
2273
- "core/lib/deprecations-strings.js | title": {
2274
- "message": "Beëindigde functie gebruikt"
2275
- },
2276
- "core/lib/deprecations-strings.js | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
2277
- "message": "Extensies moeten toestemming geven voor cross-origin-isolatie om `SharedArrayBuffer` te blijven gebruiken. Zie https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
2278
- },
2279
- "core/lib/deprecations-strings.js | vendorSpecificApi": {
2280
- "message": "{PH1} is leverancierspecifiek. Gebruik in plaats daarvan de standaard {PH2}."
2281
- },
2282
- "core/lib/deprecations-strings.js | xhrJSONEncodingDetection": {
2283
- "message": "UTF-16 wordt niet ondersteund door de reactie-json in `XMLHttpRequest`"
2284
- },
2285
- "core/lib/deprecations-strings.js | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
2286
- "message": "Synchrone `XMLHttpRequest` op de primaire thread is beëindigd vanwege het nadelige effect op de gebruikerservaring van de eindgebruiker. Check https://xhr.spec.whatwg.org/ voor meer hulp."
2287
- },
2288
- "core/lib/deprecations-strings.js | xrSupportsSession": {
2289
- "message": "`supportsSession()` is beëindigd. Gebruik `isSessionSupported()` en check in plaats daarvan de omgezette booleaanse waarde."
2290
- },
2291
2141
  "core/lib/i18n/i18n.js | columnBlockingTime": {
2292
2142
  "message": "Tijd dat primaire thread is geblokkeerd"
2293
2143
  },
@@ -2760,31 +2610,31 @@
2760
2610
  "message": "Gebruik [Ezoic Leap](https://pubdash.ezoic.com/speed) en zet `Resize Images` aan om het formaat van afbeeldingen aan te passen tot een geschikt formaat voor apparaten om zo de omvang van netwerkpayloads te verkleinen."
2761
2611
  },
2762
2612
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | modern-image-formats": {
2763
- "message": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically optimize image format. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2613
+ "message": "Gebruik de component `gatsby-plugin-image` in plaats van `<img>` om de afbeeldingsindeling automatisch te optimaliseren. [Meer informatie](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)"
2764
2614
  },
2765
2615
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | offscreen-images": {
2766
- "message": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically lazy-load images. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2616
+ "message": "Gebruik de component `gatsby-plugin-image` in plaats van `<img>` om afbeeldingen automatisch te laden via lazy loading. [Meer informatie](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)"
2767
2617
  },
2768
2618
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | prioritize-lcp-image": {
2769
- "message": "Use the `gatsby-plugin-image` component and set the `loading` prop to `eager`. [Learn more](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-plugin-image#shared-props)."
2619
+ "message": "Gebruik de component `gatsby-plugin-image` en stel de property `loading` in op `eager`. [Meer informatie](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-plugin-image#shared-props)"
2770
2620
  },
2771
2621
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | render-blocking-resources": {
2772
- "message": "Use the `Gatsby Script API` to defer loading of non-critical third-party scripts. [Learn more](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-script/)."
2622
+ "message": "Gebruik de `Gatsby Script API` om het laden van niet-kritieke scripts van derden uit te stellen. [Meer informatie](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-script/)"
2773
2623
  },
2774
2624
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-css-rules": {
2775
- "message": "Use the `PurgeCSS` `Gatsby` plugin to remove unused rules from stylesheets. [Learn more](https://purgecss.com/plugins/gatsby.html)."
2625
+ "message": "Gebruik de `Gatsby`-plug-in `PurgeCSS` om ongebruikte regels uit stylesheets te verwijderen. [Meer informatie](https://purgecss.com/plugins/gatsby.html)"
2776
2626
  },
2777
2627
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-javascript": {
2778
- "message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn more](https://www.gatsbyjs.com/plugins/gatsby-plugin-webpack-bundle-analyser-v2/)"
2628
+ "message": "Gebruik `Webpack Bundle Analyzer` om ongebruikte JavaScript-code waar te nemen. [Meer informatie](https://www.gatsbyjs.com/plugins/gatsby-plugin-webpack-bundle-analyser-v2/)"
2779
2629
  },
2780
2630
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-long-cache-ttl": {
2781
- "message": "Configure caching for immutable assets. [Learn more](https://www.gatsbyjs.com/docs/how-to/previews-deploys-hosting/caching/)."
2631
+ "message": "Opslaan in het cachegeheugen instellen voor onveranderbare items. [Meer informatie](https://www.gatsbyjs.com/docs/how-to/previews-deploys-hosting/caching/)"
2782
2632
  },
2783
2633
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-optimized-images": {
2784
- "message": "Use the `gatsby-plugin-image` component instead of `<img>` to adjust image quality. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2634
+ "message": "Gebruik de component `gatsby-plugin-image` in plaats van `<img>` om de afbeeldingskwaliteit aan te passen. [Meer informatie](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)"
2785
2635
  },
2786
2636
  "node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-responsive-images": {
2787
- "message": "Use the `gatsby-plugin-image` component to set appropriate `sizes`. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
2637
+ "message": "Gebruik de component `gatsby-plugin-image` om de juiste `sizes` in te stellen. [Meer informatie](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)"
2788
2638
  },
2789
2639
  "node_modules/lighthouse-stack-packs/packs/joomla.js | efficient-animated-content": {
2790
2640
  "message": "Overweeg je gif te uploaden naar een service waarmee het mogelijk is de gif in te sluiten als html5-video."
@@ -2865,10 +2715,10 @@
2865
2715
  "message": "`<link rel=preload>`-tags kunnen worden toegevoegd door [de lay-out van een thema te wijzigen](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
2866
2716
  },
2867
2717
  "node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
2868
- "message": "Use the `next/image` component instead of `<img>` to automatically optimize image format. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
2718
+ "message": "Gebruik de component `next/image` in plaats van `<img>` om de afbeeldingsindeling automatisch te optimaliseren. [Meer informatie](https://nextjs.org/docs/basic-features/image-optimization)"
2869
2719
  },
2870
2720
  "node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
2871
- "message": "Use the `next/image` component instead of `<img>` to automatically lazy-load images. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
2721
+ "message": "Gebruik de component `next/image` in plaats van `<img>` om afbeeldingen automatisch te laden via lazy loading. [Meer informatie](https://nextjs.org/docs/basic-features/image-optimization)"
2872
2722
  },
2873
2723
  "node_modules/lighthouse-stack-packs/packs/next.js | prioritize-lcp-image": {
2874
2724
  "message": "Gebruik de component `next/image` en stel 'priority' in op True om de LCP-afbeelding vooraf te laden. [Meer informatie](https://nextjs.org/docs/api-reference/next/image#priority)"
@@ -2883,7 +2733,7 @@
2883
2733
  "message": "Je kunt eventueel `PurgeCSS` instellen in de `Next.js`-instellingen om niet-gebruikte regels uit stylesheets te verwijderen. [Meer informatie](https://purgecss.com/guides/next.html)"
2884
2734
  },
2885
2735
  "node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
2886
- "message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn more](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
2736
+ "message": "Gebruik `Webpack Bundle Analyzer` om ongebruikte JavaScript-code waar te nemen. [Meer informatie](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
2887
2737
  },
2888
2738
  "node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
2889
2739
  "message": "Je kunt eventueel `Next.js Analytics` gebruiken om de daadwerkelijke prestaties van je app te meten. [Meer informatie](https://nextjs.org/docs/advanced-features/measuring-performance)"
@@ -2892,7 +2742,7 @@
2892
2742
  "message": "Opslaan in het cachegeheugen instellen voor onveranderbare items en `Server-side Rendered`-pagina's (SSR). [Meer informatie](https://nextjs.org/docs/going-to-production#caching)"
2893
2743
  },
2894
2744
  "node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
2895
- "message": "Use the `next/image` component instead of `<img>` to adjust image quality. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
2745
+ "message": "Gebruik de component `next/image` in plaats van `<img>` om de afbeeldingskwaliteit aan te passen. [Meer informatie](https://nextjs.org/docs/basic-features/image-optimization)"
2896
2746
  },
2897
2747
  "node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
2898
2748
  "message": "Gebruik de component `next/image` om de juiste `sizes` in te stellen. [Meer informatie](https://nextjs.org/docs/api-reference/next/image#sizes)"