lighthouse 11.7.0-dev.20240408 → 11.7.1

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 (141) hide show
  1. package/CONTRIBUTING.md +2 -2
  2. package/cli/test/smokehouse/core-tests.js +2 -0
  3. package/core/audits/accessibility/duplicate-id-active.d.ts +10 -0
  4. package/core/audits/accessibility/duplicate-id-active.js +42 -0
  5. package/core/audits/accessibility/target-size.js +1 -0
  6. package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +16 -0
  7. package/core/audits/byte-efficiency/byte-efficiency-audit.js +38 -1
  8. package/core/audits/byte-efficiency/offscreen-images.d.ts +11 -0
  9. package/core/audits/byte-efficiency/offscreen-images.js +15 -0
  10. package/core/audits/dobetterweb/uses-http2.d.ts +13 -0
  11. package/core/audits/dobetterweb/uses-http2.js +34 -2
  12. package/core/audits/layout-shift-elements.d.ts +16 -0
  13. package/core/audits/layout-shift-elements.js +101 -0
  14. package/core/audits/no-unload-listeners.d.ts +16 -0
  15. package/core/audits/no-unload-listeners.js +86 -0
  16. package/core/audits/preload-fonts.d.ts +5 -1
  17. package/core/audits/preload-fonts.js +10 -1
  18. package/core/audits/script-elements-test-audit.d.ts +14 -0
  19. package/core/audits/script-elements-test-audit.js +29 -0
  20. package/core/audits/seo/is-crawlable.d.ts +1 -2
  21. package/core/audits/seo/plugins.d.ts +15 -0
  22. package/core/audits/seo/plugins.js +150 -0
  23. package/core/audits/seo/tap-targets.d.ts +50 -0
  24. package/core/audits/seo/tap-targets.js +352 -0
  25. package/core/audits/uses-rel-preload.d.ts +5 -1
  26. package/core/audits/uses-rel-preload.js +11 -1
  27. package/core/audits/work-during-interaction.d.ts +2 -2
  28. package/core/audits/work-during-interaction.js +2 -2
  29. package/core/computed/js-bundles.d.ts +1 -1
  30. package/core/computed/metrics/lantern-first-contentful-paint.d.ts +82 -13
  31. package/core/computed/metrics/lantern-first-contentful-paint.js +178 -15
  32. package/core/computed/metrics/lantern-first-meaningful-paint.d.ts +12 -13
  33. package/core/computed/metrics/lantern-first-meaningful-paint.js +49 -10
  34. package/core/computed/metrics/lantern-interactive.d.ts +21 -13
  35. package/core/computed/metrics/lantern-interactive.js +84 -11
  36. package/core/computed/metrics/lantern-largest-contentful-paint.d.ts +25 -13
  37. package/core/computed/metrics/lantern-largest-contentful-paint.js +80 -12
  38. package/core/computed/metrics/lantern-max-potential-fid.d.ts +24 -13
  39. package/core/computed/metrics/lantern-max-potential-fid.js +64 -11
  40. package/core/computed/metrics/lantern-metric.d.ts +18 -9
  41. package/core/computed/metrics/lantern-metric.js +31 -13
  42. package/core/computed/metrics/lantern-speed-index.d.ts +32 -13
  43. package/core/computed/metrics/lantern-speed-index.js +116 -12
  44. package/core/computed/metrics/lantern-total-blocking-time.d.ts +25 -13
  45. package/core/computed/metrics/lantern-total-blocking-time.js +94 -10
  46. package/core/computed/metrics/metric.js +3 -1
  47. package/core/computed/module-duplication.d.ts +1 -1
  48. package/core/computed/page-dependency-graph.js +1 -2
  49. package/core/config/default-config.js +74 -46
  50. package/core/config/experimental-config.js +0 -11
  51. package/core/config/metrics-to-audits.d.ts +19 -0
  52. package/core/config/metrics-to-audits.js +62 -0
  53. package/core/gather/gatherers/accessibility.js +3 -1
  54. package/core/gather/gatherers/global-listeners.d.ts +27 -0
  55. package/core/gather/gatherers/global-listeners.js +108 -0
  56. package/core/gather/gatherers/script-elements.d.ts +21 -0
  57. package/core/gather/gatherers/script-elements.js +100 -0
  58. package/core/gather/gatherers/seo/embedded-content.d.ts +10 -0
  59. package/core/gather/gatherers/seo/embedded-content.js +63 -0
  60. package/core/gather/gatherers/seo/tap-targets.d.ts +21 -0
  61. package/core/gather/gatherers/seo/tap-targets.js +389 -0
  62. package/core/gather/gatherers/trace-elements.d.ts +10 -0
  63. package/core/gather/gatherers/trace-elements.js +19 -0
  64. package/core/lib/lantern/page-dependency-graph.d.ts +4 -4
  65. package/core/lib/lantern/page-dependency-graph.js +5 -5
  66. package/core/lib/lighthouse-compatibility.js +10 -53
  67. package/dist/report/bundle.esm.js +1 -1
  68. package/dist/report/flow.js +14 -14
  69. package/dist/report/standalone.js +1 -1
  70. package/flow-report/src/summary/category.tsx +12 -10
  71. package/package.json +1 -1
  72. package/report/renderer/performance-category-renderer.d.ts +7 -0
  73. package/report/renderer/performance-category-renderer.js +11 -1
  74. package/report/renderer/report-utils.js +10 -13
  75. package/shared/localization/locales/ar-XB.json +64 -1
  76. package/shared/localization/locales/ar.json +64 -1
  77. package/shared/localization/locales/bg.json +64 -1
  78. package/shared/localization/locales/ca.json +64 -1
  79. package/shared/localization/locales/cs.json +64 -1
  80. package/shared/localization/locales/da.json +64 -1
  81. package/shared/localization/locales/de.json +64 -1
  82. package/shared/localization/locales/el.json +64 -1
  83. package/shared/localization/locales/en-GB.json +64 -1
  84. package/shared/localization/locales/en-US.json +65 -2
  85. package/shared/localization/locales/en-XA.json +64 -1
  86. package/shared/localization/locales/en-XL.json +65 -2
  87. package/shared/localization/locales/es-419.json +64 -1
  88. package/shared/localization/locales/es.json +64 -1
  89. package/shared/localization/locales/fi.json +64 -1
  90. package/shared/localization/locales/fil.json +64 -1
  91. package/shared/localization/locales/fr.json +64 -1
  92. package/shared/localization/locales/he.json +64 -1
  93. package/shared/localization/locales/hi.json +64 -1
  94. package/shared/localization/locales/hr.json +64 -1
  95. package/shared/localization/locales/hu.json +64 -1
  96. package/shared/localization/locales/id.json +64 -1
  97. package/shared/localization/locales/it.json +64 -1
  98. package/shared/localization/locales/ja.json +64 -1
  99. package/shared/localization/locales/ko.json +64 -1
  100. package/shared/localization/locales/lt.json +64 -1
  101. package/shared/localization/locales/lv.json +64 -1
  102. package/shared/localization/locales/nl.json +64 -1
  103. package/shared/localization/locales/no.json +64 -1
  104. package/shared/localization/locales/pl.json +64 -1
  105. package/shared/localization/locales/pt-PT.json +64 -1
  106. package/shared/localization/locales/pt.json +64 -1
  107. package/shared/localization/locales/ro.json +64 -1
  108. package/shared/localization/locales/ru.json +64 -1
  109. package/shared/localization/locales/sk.json +64 -1
  110. package/shared/localization/locales/sl.json +64 -1
  111. package/shared/localization/locales/sr-Latn.json +64 -1
  112. package/shared/localization/locales/sr.json +64 -1
  113. package/shared/localization/locales/sv.json +64 -1
  114. package/shared/localization/locales/ta.json +64 -1
  115. package/shared/localization/locales/te.json +64 -1
  116. package/shared/localization/locales/th.json +64 -1
  117. package/shared/localization/locales/tr.json +64 -1
  118. package/shared/localization/locales/uk.json +64 -1
  119. package/shared/localization/locales/vi.json +64 -1
  120. package/shared/localization/locales/zh-HK.json +64 -1
  121. package/shared/localization/locales/zh-TW.json +64 -1
  122. package/shared/localization/locales/zh.json +64 -1
  123. package/tsconfig.json +0 -1
  124. package/types/artifacts.d.ts +17 -3
  125. package/types/config.d.ts +1 -0
  126. package/types/lhr/audit-details.d.ts +4 -9
  127. package/types/lhr/lhr.d.ts +2 -0
  128. package/core/lib/lantern/metrics/first-contentful-paint.d.ts +0 -79
  129. package/core/lib/lantern/metrics/first-contentful-paint.js +0 -200
  130. package/core/lib/lantern/metrics/first-meaningful-paint.d.ts +0 -6
  131. package/core/lib/lantern/metrics/first-meaningful-paint.js +0 -66
  132. package/core/lib/lantern/metrics/interactive.d.ts +0 -26
  133. package/core/lib/lantern/metrics/interactive.js +0 -112
  134. package/core/lib/lantern/metrics/largest-contentful-paint.d.ts +0 -19
  135. package/core/lib/lantern/metrics/largest-contentful-paint.js +0 -108
  136. package/core/lib/lantern/metrics/max-potential-fid.d.ts +0 -30
  137. package/core/lib/lantern/metrics/max-potential-fid.js +0 -92
  138. package/core/lib/lantern/metrics/speed-index.d.ts +0 -38
  139. package/core/lib/lantern/metrics/speed-index.js +0 -145
  140. package/core/lib/lantern/metrics/total-blocking-time.d.ts +0 -31
  141. package/core/lib/lantern/metrics/total-blocking-time.js +0 -128
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Dokumentet har et `<title>`-element"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Alle elementer, der kan fokuseres på, skal have en unik `id` for at sikre, at de er synlige for hjælpeteknologier. [Få flere oplysninger om, hvordan du løser problemer med identiske `id`'er](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "`[id]`-attributterne på aktive elementer, der kan fokuseres på, er ikke unikke"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "`[id]`-attributterne på aktive elementer, der kan fokuseres på, er unikke"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "Værdien af et ARIA-id skal være unik for at forhindre, at andre forekomster bliver overset af hjælpeteknologier. [Få flere oplysninger om, hvordan du løser problemer med identiske ARIA-id'er](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-aria)."
241
250
  },
@@ -1148,6 +1157,15 @@
1148
1157
  "core/audits/largest-contentful-paint-element.js | title": {
1149
1158
  "message": "Element med Largest Contentful Paint"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Effekt af layoutskift"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Disse DOM-elementer blev mest påvirket af layoutskift. Nogle layoutskift medtages muligvis ikke i CLS-metricværdien som følge af [windowing](https://web.dev/articles/cls#what_is_cls). [Se, hvordan du forbedrer CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Undgå store layoutskift"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Resultat for layoutskift"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Forsinkelser for serverens backend"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "Hændelsen `unload` starter ikke stabilt, og hvis der ventes på den, kan det forhindre browseroptimeringer som f.eks. Back-Forward Cache. Anvend hændelsen `pagehide` eller `visibilitychange` i stedet. [Få flere oplysninger om hændelsesfunktioner for frigivelse](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Registrerer en hændelsesfunktion for `unload`"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Undgå hændelsesfunktioner for `unload`"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Animationer, der ikke er sammensat, kan være langsomme og øge CLS. [Få oplysninger om, hvordan du undgår ikke-sammensatte animationer](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
1273
1300
  },
@@ -1454,6 +1481,15 @@
1454
1481
  "core/audits/seo/meta-description.js | title": {
1455
1482
  "message": "Dokumentet har en metabeskrivelse"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Søgemaskiner kan ikke indeksere indhold i plugins, og mange enheder begrænser plugins eller understøtter dem ikke. [Få flere oplysninger om, hvordan du undgår plugins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Dokumentet bruger plugins"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Dokumentet undgår plugins"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Hvis din robots.txt-fil indeholder fejl, kan crawlere muligvis ikke forstå, hvordan du vil have dit website crawlet eller indekseret. [Få flere oplysninger om robots.txt.](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
1459
1495
  },
@@ -1472,6 +1508,27 @@
1472
1508
  "core/audits/seo/robots-txt.js | title": {
1473
1509
  "message": "robots.txt er gyldig"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Interaktive elementer som f.eks. knapper og links skal være store nok (48 x 48 px) eller have tilstrækkelig plads omkring sig for at gøre det let at trykke på dem uden at overlappe andre elementer. [Få flere oplysninger om trykbare elementer](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} trykbare elementer med passende størrelse"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Trykbare elementer er for små, fordi der ikke er et viewport-metatag, som er optimeret til mobilskærme"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Trykbare elementer har ikke en passende størrelse"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Overlappende mål"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Trykbart element"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Trykbare elementer har en passende størrelse"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Sørg for at holde serversvartiden for hoveddokumentet kort, da alle andre anmodninger afhænger af den. [Få flere oplysninger om metric'en Time to First Byte](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)."
1477
1534
  },
@@ -1661,7 +1718,7 @@
1661
1718
  "core/audits/work-during-interaction.js | presentationDelay": {
1662
1719
  "message": "Præsentationsforsinkelse"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Behandlingstid"
1666
1723
  },
1667
1724
  "core/audits/work-during-interaction.js | title": {
@@ -1757,6 +1814,12 @@
1757
1814
  "core/config/default-config.js | firstPaintImprovementsGroupTitle": {
1758
1815
  "message": "Forbedringer af første udfyldning"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Disse forslag kan være med til at forbedre indlæsningstiden for din side. De [berører ikke direkte](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) resultatet."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Muligheder"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Metrics"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Dokument enthält ein `<title>`-Element"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Für alle fokussierbaren Elemente ist eine eindeutige `id` erforderlich, damit sie von Hilfstechnologien erkannt werden können. [Informationen zum Korrigieren doppelter `id`s.](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)"
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "`[id]`-Attribute zu aktiven, fokussierbaren Elementen sind nicht eindeutig"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "`[id]`-Attribute zu aktiven, fokussierbaren Elementen sind eindeutig"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "Der Wert einer ARIA-ID muss eindeutig sein, damit andere Instanzen nicht von Hilfstechnologien übersehen werden. [Informationen zum Korrigieren doppelter ARIA-IDs.](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-aria)"
241
250
  },
@@ -1148,6 +1157,15 @@
1148
1157
  "core/audits/largest-contentful-paint-element.js | title": {
1149
1158
  "message": "Largest Contentful Paint-Element"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Auswirkung von Layout Shifts"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Diese DOM-Elemente wurden am stärksten von Layout Shifts beeinflusst. Einige Layout Shifts sind aufgrund von [Windowing](https://web.dev/articles/cls#what_is_cls) möglicherweise nicht im CLS-Messwert enthalten. [Informationen zur Verbesserung der CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Umfangreiche Layoutverschiebungen vermeiden"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Layout-Shift-Ergebnis"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Server-Backend-Latenzen"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "Das `unload`-Ereignis wird nicht zuverlässig ausgelöst. Wenn der Listener darauf wartet, kann das Browseroptimierungen wie den Back-Forward-Cache beeinträchtigen. Bitte verwende stattdessen `pagehide`- oder `visibilitychange`-Ereignisse. [Weitere Informationen zum Entfernen von Event-Listenern](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Registriert einen `unload`-Listener"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Keine `unload`-Ereignis-Listener gefunden"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Nicht zusammengesetzte Animationen werden eventuell nicht richtig gerendert und können den CLS-Wert erhöhen. [Informationen dazu, wie sich nicht zusammengefasste Animationen vermeiden lassen](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
1273
1300
  },
@@ -1454,6 +1481,15 @@
1454
1481
  "core/audits/seo/meta-description.js | title": {
1455
1482
  "message": "Dokument enthält eine Meta-Beschreibung"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Suchmaschinen können keine Plug-in-Inhalte indexieren. Außerdem werden Plug-ins auf vielen Geräten eingeschränkt oder nicht unterstützt. [Weitere Informationen zum Vermeiden von Plug-ins.](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Dokument verwendet Plug-ins"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Dokument verwendet keine Plug-ins"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Wenn deine robots.txt-Datei fehlerhaft ist, können Crawler möglicherweise nicht nachvollziehen, wie deine Website gecrawlt oder indexiert werden soll. [Weitere Informationen zu robots.txt.](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
1459
1495
  },
@@ -1472,6 +1508,27 @@
1472
1508
  "core/audits/seo/robots-txt.js | title": {
1473
1509
  "message": "robots.txt ist gültig"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Interaktive Elemente wie Schaltflächen und Links sollten groß genug sein (48 × 48 px) oder über genügend Zwischenraum verfügen, damit sie leicht angetippt werden können. Sie dürfen sich nicht mit anderen Elementen überschneiden. [Weitere Informationen zu Tippzielen.](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)"
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} der Tippziele haben eine passende Größe"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Die Tippziele sind zu klein, weil kein Meta-Tag für den Darstellungsbereich vorhanden ist, das für Bildschirme von Mobilgeräten optimiert ist"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Größe von Tippzielen ist nicht richtig eingestellt"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Sich überschneidendes Ziel"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Tippziel"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Größe von Tippzielen ist richtig eingestellt"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Achte auf eine möglichst kurze Serverantwortzeit für das Hauptdokument, weil alle anderen Anfragen davon abhängen. [Weitere Informationen zum Messwert „Time to First Byte“.](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)"
1477
1534
  },
@@ -1661,7 +1718,7 @@
1661
1718
  "core/audits/work-during-interaction.js | presentationDelay": {
1662
1719
  "message": "Verzögerung bei der Präsentation"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Verarbeitungszeit"
1666
1723
  },
1667
1724
  "core/audits/work-during-interaction.js | title": {
@@ -1757,6 +1814,12 @@
1757
1814
  "core/config/default-config.js | firstPaintImprovementsGroupTitle": {
1758
1815
  "message": "Verbesserungen beim Zeichnen der ersten Inhalte"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Mithilfe dieser Empfehlungen lässt sich die Ladezeit deiner Seite möglicherweise verkürzen. Sie haben keinen [direkten Einfluss](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) auf die Leistungsbewertung."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Empfehlungen"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Messwerte"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Το έγγραφο έχει ένα στοιχείο `<title>`"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Όλα τα στοιχεία με δυνατότητα εστίασης πρέπει να διαθέτουν ένα μοναδικό `id`, για να διασφαλιστεί ότι είναι ορατά σε τεχνολογίες υποβοήθησης. [Μάθετε πώς μπορείτε να διορθώσετε διπλότυπα `id`](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "`[id]` χαρακτηριστικά σε ενεργά στοιχεία με δυνατότητα εστίασης, δεν είναι μοναδικά"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "`[id]` χαρακτηριστικά σε ενεργά στοιχεία με δυνατότητα εστίασης, είναι μοναδικά"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "Η τιμή ενός αναγνωριστικού ARIA πρέπει να είναι μοναδική, προκειμένου να μην παραβλέπονται άλλες παρουσίες κατά τη χρήση τεχνολογιών υποβοήθησης. [Μάθετε πώς μπορείτε να διορθώσετε διπλότυπα αναγνωριστικά ARIA](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-aria)."
241
250
  },
@@ -1148,6 +1157,15 @@
1148
1157
  "core/audits/largest-contentful-paint-element.js | title": {
1149
1158
  "message": "Στοιχείο Μεγαλύτερης σχεδίασης με περιεχόμενο"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Αντίκτυπος αλλαγής διάταξης"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Αυτά τα στοιχεία DOM επηρεάστηκαν περισσότερο από τις αλλαγές διάταξης. Ορισμένες αλλαγές στη διάταξη ενδέχεται να μην περιλαμβάνονται στην τιμή της μέτρησης CLS λόγω της [προσαρμογής σε παράθυρο](https://web.dev/articles/cls#what_is_cls). [Μάθετε πώς μπορείτε να βελτιώσετε το CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Αποφύγετε τις μεγάλες μετατοπίσεις διάταξης"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Βαθμολογία αλλαγής διάταξης"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Λανθάνοντες χρόνοι συστημάτων υποστήριξης διακομιστή"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "Το συμβάν `unload` δεν ενεργοποιείται με αξιοπιστία και η ακρόαση για το συμβάν μπορεί να αποτρέψει τις βελτιστοποιήσεις προγράμματος περιήγησης, όπως την κρυφή μνήμη πίσω/εμπρός. Αντ' αυτού, χρησιμοποιήστε το `pagehide` ή το `visibilitychange`. [Μάθετε περισσότερα σχετικά με την κατάργηση φόρτωσης των λειτουργιών αναμονής συμβάντος](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Εγγράφει μια λειτουργία αναμονής `unload`"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Αποφεύγει λειτουργίες αναμονής συμβάντων `unload`"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Οι μη σύνθετες κινούμενες εικόνες ενδέχεται να είναι κακής ποιότητας και να αυξάνουν το CLS. [Μάθετε πώς μπορείτε να αποφύγετε τις μη σύνθετες κινούμενες εικόνες](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
1273
1300
  },
@@ -1454,6 +1481,15 @@
1454
1481
  "core/audits/seo/meta-description.js | title": {
1455
1482
  "message": "Το έγγραφο έχει περιγραφή μεταδεδομένων"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Οι μηχανές αναζήτησης δεν μπορούν να καταλογοποιήσουν το περιεχόμενο των προσθηκών, ενώ πολλές συσκευές περιορίζουν ή δεν υποστηρίζουν τις προσθήκες. [Μάθετε περισσότερα σχετικά με την αποφυγή προσθηκών](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Το έγγραφο χρησιμοποιεί προσθήκες"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Το έγγραφο αποφεύγει τις προσθήκες"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Εάν το αρχείο σας robots.txt έχει εσφαλμένη μορφή, οι ανιχνευτές ενδεχομένως να μην μπορούν να κατανοήσουν με ποιον τρόπο θέλετε να γίνεται η ανίχνευση ή η καταλογοποίηση του ιστοτόπου σας. [Μάθετε περισσότερα σχετικά με το robots.txt.](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
1459
1495
  },
@@ -1472,6 +1508,27 @@
1472
1508
  "core/audits/seo/robots-txt.js | title": {
1473
1509
  "message": "Το αρχείο robots.txt είναι έγκυρο"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Τα στοιχεία αλληλεπίδρασης, όπως είναι τα κουμπιά και οι σύνδεσμοι, θα πρέπει να είναι αρκετά μεγάλα (48x48px) ή με επαρκή χώρο γύρω τους, ώστε να μπορούν να πατηθούν εύκολα από τους χρήστες χωρίς να επικαλύπτουν άλλα στοιχεία. [Μάθετε περισσότερα σχετικά με τα στοιχεία που επιλέγονται με πάτημα](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "Το {decimalProportion, number, percent} των επιλεγόμενων με πάτημα στοιχείων έχουν κατάλληλο μέγεθος"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Τα στοιχεία που επιλέγονται με πάτημα είναι υπερβολικά μικρά γιατί δεν υπάρχει βελτιστοποιημένη μεταετικέτα θύρας προβολής για οθόνες κινητών"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Τα στοιχεία που επιλέγονται με πάτημα δεν έχουν κατάλληλο μέγεθος"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Αλληλεπικαλυπτόμενο στοιχείο επιλογής με πάτημα"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Στοιχείο επιλογής με πάτημα"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Τα στοιχεία που επιλέγονται με πάτημα έχουν το κατάλληλο μέγεθος"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Φροντίστε να παραμείνει σύντομος ο χρόνος απόκρισης διακομιστή για το κύριο έγγραφο, επειδή όλα τα άλλα αιτήματα εξαρτώνται από αυτόν. [Μάθετε περισσότερα σχετικά με τη μέτρηση Time to First Byte](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)."
1477
1534
  },
@@ -1661,7 +1718,7 @@
1661
1718
  "core/audits/work-during-interaction.js | presentationDelay": {
1662
1719
  "message": "Καθυστέρηση παρουσίασης"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Χρόνος επεξεργασίας"
1666
1723
  },
1667
1724
  "core/audits/work-during-interaction.js | title": {
@@ -1757,6 +1814,12 @@
1757
1814
  "core/config/default-config.js | firstPaintImprovementsGroupTitle": {
1758
1815
  "message": "Βελτιώσεις πρώτης μορφής"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Αυτές οι προτάσεις μπορούν να βοηθήσουν στην ταχύτερη φόρτωση της σελίδας σας. Δεν [επηρεάζουν άμεσα](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) τη βαθμολογία απόδοσης."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Ευκαιρίες"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Μετρήσεις"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Document has a `<title>` element"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "All focusable elements must have a unique `id` to ensure that they're visible to assistive technologies. [Learn how to fix duplicate `id`s](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "`[id]` attributes on active, focusable elements are not unique"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "`[id]` attributes on active, focusable elements are unique"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "The value of an ARIA ID must be unique to prevent other instances from being overlooked by assistive technologies. [Learn how to fix duplicate ARIA IDs](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-aria)."
241
250
  },
@@ -1148,6 +1157,15 @@
1148
1157
  "core/audits/largest-contentful-paint-element.js | title": {
1149
1158
  "message": "Largest contentful paint element"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Layout shift impact"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "These DOM elements were most affected by layout shifts. Some layout shifts may not be included in the CLS metric value due to [windowing](https://web.dev/articles/cls#what_is_cls). [Learn how to improve CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Avoid large layout shifts"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Layout shift score"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Server Back-end Latencies"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "The `unload` event does not fire reliably and listening for it can prevent browser optimisations like the back-forward cache. Use `pagehide` or `visibilitychange` events instead. [Learn more about unload event listeners](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Registers an `unload` listener"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Avoids `unload` event listeners"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Animations that are not composited can be poor, slow and increase CLS. [Learn how to avoid non-composited animations](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
1273
1300
  },
@@ -1454,6 +1481,15 @@
1454
1481
  "core/audits/seo/meta-description.js | title": {
1455
1482
  "message": "Document has a meta description"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Search engines can't index plug-in content and many devices restrict plug-ins or don't support them. [Learn more about avoiding plugins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Document uses plugins"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Document avoids plugins"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. [Learn more about robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
1459
1495
  },
@@ -1472,6 +1508,27 @@
1472
1508
  "core/audits/seo/robots-txt.js | title": {
1473
1509
  "message": "robots.txt is valid"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Interactive elements like buttons and links should be large enough (48 x 48 px) or have enough space around them to be easy enough to tap without overlapping onto other elements. [Learn more about tap targets](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} appropriately sized tap targets"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Tap targets are too small because there's no viewport meta tag optimised for mobile screens"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Tap targets are not sized appropriately"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Overlapping target"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Tap target"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Tap targets are sized appropriately"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Keep the server response time for the main document short because all other requests depend on it. [Learn more about the Time to First Byte metric](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)."
1477
1534
  },
@@ -1661,7 +1718,7 @@
1661
1718
  "core/audits/work-during-interaction.js | presentationDelay": {
1662
1719
  "message": "Presentation delay"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Processing time"
1666
1723
  },
1667
1724
  "core/audits/work-during-interaction.js | title": {
@@ -1757,6 +1814,12 @@
1757
1814
  "core/config/default-config.js | firstPaintImprovementsGroupTitle": {
1758
1815
  "message": "First Paint Improvements"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "These suggestions can help your page load faster. They don't [directly affect](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) the performance score."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Opportunities"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Metrics"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Document has a `<title>` element"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "All focusable elements must have a unique `id` to ensure that they're visible to assistive technologies. [Learn how to fix duplicate `id`s](https://dequeuniversity.com/rules/axe/4.9/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "`[id]` attributes on active, focusable elements are not unique"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "`[id]` attributes on active, focusable elements are unique"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "The value of an ARIA ID must be unique to prevent other instances from being overlooked by assistive technologies. [Learn how to fix duplicate ARIA IDs](https://dequeuniversity.com/rules/axe/4.9/duplicate-id-aria)."
241
250
  },
@@ -1151,6 +1160,15 @@
1151
1160
  "core/audits/largest-contentful-paint-element.js | title": {
1152
1161
  "message": "Largest Contentful Paint element"
1153
1162
  },
1163
+ "core/audits/layout-shift-elements.js | columnContribution": {
1164
+ "message": "Layout shift impact"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | description": {
1167
+ "message": "These DOM elements were most affected by layout shifts. Some layout shifts may not be included in the CLS metric value due to [windowing](https://web.dev/articles/cls#what_is_cls). [Learn how to improve CLS](https://web.dev/articles/optimize-cls)"
1168
+ },
1169
+ "core/audits/layout-shift-elements.js | title": {
1170
+ "message": "Avoid large layout shifts"
1171
+ },
1154
1172
  "core/audits/layout-shifts.js | columnScore": {
1155
1173
  "message": "Layout shift score"
1156
1174
  },
@@ -1271,6 +1289,15 @@
1271
1289
  "core/audits/network-server-latency.js | title": {
1272
1290
  "message": "Server Backend Latencies"
1273
1291
  },
1292
+ "core/audits/no-unload-listeners.js | description": {
1293
+ "message": "The `unload` event does not fire reliably and listening for it can prevent browser optimizations like the Back-Forward Cache. Use `pagehide` or `visibilitychange` events instead. [Learn more about unload event listeners](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | failureTitle": {
1296
+ "message": "Registers an `unload` listener"
1297
+ },
1298
+ "core/audits/no-unload-listeners.js | title": {
1299
+ "message": "Avoids `unload` event listeners"
1300
+ },
1274
1301
  "core/audits/non-composited-animations.js | description": {
1275
1302
  "message": "Animations which are not composited can be janky and increase CLS. [Learn how to avoid non-composited animations](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
1276
1303
  },
@@ -1457,6 +1484,15 @@
1457
1484
  "core/audits/seo/meta-description.js | title": {
1458
1485
  "message": "Document has a meta description"
1459
1486
  },
1487
+ "core/audits/seo/plugins.js | description": {
1488
+ "message": "Search engines can't index plugin content, and many devices restrict plugins or don't support them. [Learn more about avoiding plugins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1489
+ },
1490
+ "core/audits/seo/plugins.js | failureTitle": {
1491
+ "message": "Document uses plugins"
1492
+ },
1493
+ "core/audits/seo/plugins.js | title": {
1494
+ "message": "Document avoids plugins"
1495
+ },
1460
1496
  "core/audits/seo/robots-txt.js | description": {
1461
1497
  "message": "If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. [Learn more about robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
1462
1498
  },
@@ -1475,6 +1511,27 @@
1475
1511
  "core/audits/seo/robots-txt.js | title": {
1476
1512
  "message": "robots.txt is valid"
1477
1513
  },
1514
+ "core/audits/seo/tap-targets.js | description": {
1515
+ "message": "Interactive elements like buttons and links should be large enough (48x48px), or have enough space around them, to be easy enough to tap without overlapping onto other elements. [Learn more about tap targets](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | displayValue": {
1518
+ "message": "{decimalProportion, number, percent} appropriately sized tap targets"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1521
+ "message": "Tap targets are too small because there's no viewport meta tag optimized for mobile screens"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | failureTitle": {
1524
+ "message": "Tap targets are not sized appropriately"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1527
+ "message": "Overlapping Target"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1530
+ "message": "Tap Target"
1531
+ },
1532
+ "core/audits/seo/tap-targets.js | title": {
1533
+ "message": "Tap targets are sized appropriately"
1534
+ },
1478
1535
  "core/audits/server-response-time.js | description": {
1479
1536
  "message": "Keep the server response time for the main document short because all other requests depend on it. [Learn more about the Time to First Byte metric](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)."
1480
1537
  },
@@ -1664,8 +1721,8 @@
1664
1721
  "core/audits/work-during-interaction.js | presentationDelay": {
1665
1722
  "message": "Presentation delay"
1666
1723
  },
1667
- "core/audits/work-during-interaction.js | processingDuration": {
1668
- "message": "Processing duration"
1724
+ "core/audits/work-during-interaction.js | processingTime": {
1725
+ "message": "Processing time"
1669
1726
  },
1670
1727
  "core/audits/work-during-interaction.js | title": {
1671
1728
  "message": "Minimizes work during key interaction"
@@ -1760,6 +1817,12 @@
1760
1817
  "core/config/default-config.js | firstPaintImprovementsGroupTitle": {
1761
1818
  "message": "First Paint Improvements"
1762
1819
  },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1821
+ "message": "These suggestions can help your page load faster. They don't [directly affect](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) the Performance score."
1822
+ },
1823
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1824
+ "message": "Opportunities"
1825
+ },
1763
1826
  "core/config/default-config.js | metricGroupTitle": {
1764
1827
  "message": "Metrics"
1765
1828
  },