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": "Dokumente yra elementas „`<title>`“"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Visų suaktyvinamų elementų `id` turi būti unikalūs, siekiant užtikrinti, kad elementai bus matomi pagalbinėms technologijoms. [Sužinokite, kaip išspręsti pasikartojančių `id` problemą](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "`[id]` atributai aktyviuose, išryškinamuose elementuose nėra unikalūs"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "`[id]` atributai aktyviuose, išryškinamuose elementuose yra unikalūs"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "ARIA ID vertė turi būti unikali, kad pagalbinės technologijos nepraleistų kitų objektų. [Sužinokite, kaip išspręsti pasikartojančių ARIA ID problemą](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": "Didžiausio turiningo žymėjimo elementas"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Išdėstymo poslinkio poveikio"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Šiems DOM elementams didžiausią poveikį turėjo išdėstymo poslinkiai. Kai kurie išdėstymo poslinkiai gali būti neįtraukti į KIP metrikos vertę dėl [pateikimo lange](https://web.dev/articles/cls#what_is_cls). [Sužinokite, kaip pagerinti KIP](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Venkite didelių išdėstymo poslinkių"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Išdėstymo poslinkio rezultatas"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Serverio vidinės pusės delsa"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "Įvykis „`unload`“ patikimai nesuaktyvinamas ir jį apdorojant gali būti neleidžiama optimizuoti naršyklės, pvz., persiuntimo atgal ir pirmyn talpyklos. Vietoj to naudokite įvykį „`pagehide`“ arba „`visibilitychange`“. [Sužinokite daugiau apie įvykių apdorojimo priemonių iškėlimą](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Užregistruojama „`unload`“ apdorojimo priemonė"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Vengiama įvykio „`unload`“ apdorojimo priemonių"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Nesudėtinės animacijos gali būti prastos kokybės ir dėl jų gali padidėti KIP. [Sužinokite, kaip išvengti nesudėtinių animacijų](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": "Dokumente yra metaaprašas"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Paieškos varikliai negali indeksuoti papildinių turinio ir daug įrenginių riboja papildinius arba jų nepalaiko. [Sužinokite daugiau apie tai, kaip išvengti papildinių](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Dokumente naudojami papildiniai"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Dokumente vengiama papildinių"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Jei failas „robots.txt“ netinkamai suformatuotas, tikrintuvai gali nesuprasti, kaip norite tikrinti ar indeksuoti svetainę. [Sužinokite daugiau apie failą „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 tinkamas"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Interaktyvūs elementai, pvz., mygtukai ir nuorodos, turi būti pakankamai dideli (48 x 48 piks.) arba aplink juos turi būti pakankamai vietos, kad būtų galima lengvai paliesti ir kad jie nepersidengtų su kitais elementais. [Sužinokite daugiau apie liečiamus elementus](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} tinkamo dydžio liečiamų objektų"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Liečiami objektai per maži, nes nėra mobiliųjų įrenginių ekranams optimizuotos peržiūros srities metažymos"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Liečiami objektai netinkamo dydžio"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Persidengiantis objektas"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Liečiamas objektas"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Liečiami objektai tinkamo dydžio"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Padarykite, kad pagrindinio dokumento serverio atsako laikas būtų trumpas, nes nuo jo priklauso visos kitos užklausos. [Sužinokite daugiau apie laiko iki pirmojo baito metriką](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": "Pateikimo delsa"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Apdorojimo laikas"
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": "Pirmojo parodymo patobulinimai"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Pasinaudojus šiais pasiūlymais puslapis gali būti įkeliamas greičiau. Tai [tiesiogiai nepaveiks](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) našumo įvertinimo."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Galimybės"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Metrika"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Dokumentā ir ietverts elements `<title>`"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Visiem fokusējamiem elementiem ir jābūt unikālam `id`, lai tie būtu redzami atbalsta tehnoloģijām. [Uzziniet, kā novērst ar `id` dublikātiem saistītas problēmas](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "`[id]` atribūti aktīvos, fokusējamos elementos nav unikāli"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "`[id]` atribūti aktīvos, fokusējamos elementos ir unikāli"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "ARIA ID vērtībai ir jābūt unikālai, lai atbalsta tehnoloģijas neizlaistu citas instances. [Uzziniet, kā novērst ARIA identifikatoru dublikātus](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 elements"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Izkārtojuma nobīdes ietekme"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Šos DOM elementus visvairāk ietekmēja izkārtojuma nobīdes. Dažas izkārtojuma nobīdes var nebūt iekļautas CLS metrikas vērtībā [logošanas](https://web.dev/articles/cls#what_is_cls) dēļ. [Uzziniet, kā uzlabot CLS](https://web.dev/articles/optimize-cls)."
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Centieties novērst lielas izkārtojuma nobīdes"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Izkārtojuma nobīdes rādītājs"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Servera aizmugursistēmas latentums"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "Notikums “`unload`” nenodrošināja uzticamu aktivizēšanu, un tā uztveršana var liegt pārlūka optimizāciju, piemēram, pilnīgu saglabāšanu kešatmiņā. Tā vietā izmantojiet notikumu “`pagehide`” vai “`visibilitychange`”. [Uzziniet vairāk par ielādes atcelšanas notikumu uztvērējiem](https://web.dev/articles/bfcache#never_use_the_unload_event)."
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Reģistrē notikuma “`unload`” uztvērēju"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Izvairās no notikuma “`unload`” uztvērējiem"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Nesaliktas animācijas var būt lēnas un palielināt kopējo izkārtojuma nobīdi. [Uzziniet, kā izvairīties no nesaliktām animācijām](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ā ir metaapraksts"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Meklētājprogrammas nevar indeksēt spraudņu saturu, un daudzās ierīcēs spraudņi ir ierobežoti vai netiek atbalstīti. [Uzziniet vairāk par izvairīšanos no spraudņiem](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Dokumentā tiek izmantoti spraudņi"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Dokumentā netiek pieļauti spraudņi"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Ja jūsu fails “robots.txt” ir nepareizi veidots, rāpuļprogrammas, iespējams, nevarēs saprast, kā vajadzētu pārmeklēt vai indeksēt vietni atbilstoši jūsu vēlmēm. [Uzziniet vairāk par failu “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 ir derīgs"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Interaktīvajiem elementiem, piemēram, pogām un saitēm, ir jābūt pietiekami lieliem (48 x 48 pikseļi) vai tiem apkārt ir jābūt pietiekami daudz brīvas vietas, lai tiem varētu viegli pieskarties, neaizskarot citus elementus. [Uzziniet vairāk par pieskārienu mērķiem](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} pieskārienu mērķu izmērs ir atbilstošs."
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Pieskārienu mērķu izmērs ir pārāk mazs, jo mobilo ierīču ekrāniem nav optimizēts skatvietas metatags"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Pieskārienu mērķi nav atbilstoša izmēra"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Mērķis, kas pārklājas"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Pieskārienu mērķis"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Pieskārienu mērķi ir pietiekami liela izmēra"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Galvenā dokumenta servera atbildes laikam jābūt īsam, jo no tā ir atkarīga pārējo pieprasījumu izpilde. [Uzziniet vairāk par rādītāju “Laiks līdz pirmajam baitam”](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": "Rādīšanas aizkave"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Apstrādes laiks"
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": "Pirmā satura atveidojuma uzlabojumi"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Šie ieteikumi var palīdzēt ātrāk ielādēt jūsu lapu. Tie [tieša veidā neietekmē](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) veiktspējas rezultātu."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Iespējas"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Metrikas"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Document bevat een `<title>`-element"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Alle focusbare elementen moeten een unieke `id` hebben om ervoor te zorgen dat ze zichtbaar zijn voor ondersteunende technologieën. [Meer informatie over het oplossen van problemen met dubbele `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]`-kenmerken voor actieve, focusbare elementen zijn niet uniek"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "`[id]`-kenmerken voor actieve, focusbare elementen zijn uniek"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "De waarde van een ARIA-ID moet uniek zijn om te voorkomen dat andere instanties over het hoofd worden gezien door ondersteunende technologieën. [Meer informatie over hoe je dubbele ARIA-ID's oplost](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": "LCP-element (grootste weergave met content)"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Impact van indelingsverschuiving"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Deze DOM-elementen zijn het meest beïnvloed door indelingsverschuivingen. Sommige indelingsverschuivingen zijn misschien niet opgenomen in de statistiekwaarde CLS vanwege [normalisatie](https://web.dev/articles/cls#what_is_cls). [Meer informatie over hoe je CLS kunt verbeteren](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Grote indelingsverschuivingen vermijden"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Score voor indelingsverschuiving"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Wachttijden van server-backend"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "De gebeurtenis `unload` wordt niet op een betrouwbare manier geactiveerd en hierop wachten kan ertoe leiden dat browseroptimalisaties zoals de Back-Forward Cache niet worden uitgevoerd. Gebruik in plaats daarvan de gebeurtenis `pagehide` of `visibilitychange`. [Meer informatie over het ongedaan maken van laden van event-listeners](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Registreert een `unload`-listener"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Vermijdt `unload`-event-listeners"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Animaties die niet samengesteld zijn, kunnen langzaam zijn en ertoe leiden dat de CLS toeneemt. [Meer informatie over hoe je niet-samengestelde animaties vermijdt](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 bevat een metabeschrijving"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Zoekmachines kunnen content van plug-ins niet indexeren en veel apparaten beperken plug-ins of ondersteunen deze niet. [Meer informatie over het vermijden van plug-ins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Document gebruikt plug-ins"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Document vermijdt plug-ins"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Als je robots.txt-bestand niet juist is opgemaakt, begrijpen crawlers mogelijk niet hoe je wilt dat je website wordt gecrawld of geïndexeerd. [Meer informatie over 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 geldig"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Interactieve elementen, zoals knoppen en links, moeten groot genoeg zijn (48 x 48 pixels) of moeten voldoende ruimte eromheen hebben, zodat er makkelijk op getikt kan worden zonder dat andere elementen worden aangeraakt. [Meer informatie over tikdoelen](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)"
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} van de tikdoelen heeft een geschikt formaat"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Tikdoelen zijn te klein, omdat er geen kijkvenstermetatag is geoptimaliseerd voor mobiele schermen"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Tikdoelen hebben niet het juiste formaat"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Overlappend doel"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Tikdoel"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Tikdoelen hebben het juiste formaat"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Houd de reactietijd van de server voor het hoofddocument kort, omdat alle andere verzoeken daarvan afhankelijk zijn. [Meer informatie over de statistiek Tijd tot eerste 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": "Presentatievertraging"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Verwerkingstijd"
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": "Verbeteringen voor eerste weergave"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Deze suggesties kunnen helpen je pagina sneller te laden. Ze hebben geen [directe invloed](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) op de prestatiescore."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Aanbevelingen"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Statistieken"
1762
1825
  },
@@ -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 fokuserbare elementer må ha unike `id`-attributter for å sikre at de er synlige for assisterende teknologi. [Finn ut hvordan du korrigerer dupliserte `id`-verdier](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "`[id]`-attributter på aktive, fokuserbare elementer er ikke unike"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "`[id]`-attributter på aktive, fokuserbare elementer er unike"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "ARIA-ID-attributter må ha unike verdier for å unngå at andre forekomster blir oversett av assisterende teknologi. [Finn ut hvordan du korrigerer dupliserte 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": "Elementet med største innholdsrike opptegning (LCP)"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Innvirkning på utseendeforskyvning"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Disse DOM-elementene ble mest påvirket av utseendeforskyvninger. Det kan hende at visse utseendeforskyvninger ikke er tatt med i CLS-beregningsverdien på grunn av [vinduer](https://web.dev/articles/cls#what_is_cls). [Finn ut hvordan du kan gjøre CLS bedre](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Unngå store utseendeforskyvninger"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Poengsum for utseendeforskyvning"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Forsinkelser i tjenerdelen"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "`unload`-hendelsen utløses ikke på en pålitelig måte. Å lytte til den kan forhindre nettleseroptimaliseringer, som frem-og-tilbake-bufferen. Bruk hendelsene `pagehide` eller `visibilitychange` i stedet. [Finn ut mer om utlasting av hendelseslyttere](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Registrerer en `unload`-lytter"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Unngår `unload`-hendelseslyttere"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Animasjoner som ikke er sammensatte, kan være hakkete og bidra til økt CLS. [Finn ut hvordan du unngår ikke-sammensatte animasjoner](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økemotorer kan ikke indeksere innholdet i programtillegg, og mange enheter begrenser programtillegg eller støtter dem ikke. [Finn ut mer om hvordan du unngår programtillegg](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Dokumentet bruker programtillegg"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Dokumentet bruker ikke programtillegg"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Hvis robots.txt-filen har feil format, kan det hende at søkeroboter ikke forstår hvordan du vil at nettstedet ditt skal gjennomsøkes eller indekseres. [Finn ut mer 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 knapper og linker, må være store nok (48 × 48 px) eller ha nok plass rundt seg til at det er lett å trykke på dem uten overlapping med andre elementer. [Finn ut mer om trykkbare områder](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} av de trykkbare elementene er store nok"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "De trykkbare elementene er for små fordi det ikke er noen viewport-metatag som er optimalisert for mobilskjermer"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Trykkbare elementer er ikke store nok"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Overlappende trykkbart element"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Trykkbart element"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Trykkbare elementer er store nok"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Hold tjenerresponstiden for hoveddokumentet lav, siden alle andre forespørsler avhenger av den. [Finn ut mer om beregningen Tid til første 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": "Presentasjonsforsinkelse"
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 av første opptegning"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Disse forslagene kan bidra til at siden lastes inn raskere. De har ingen [direkte innvirkning](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) på ytelsespoengsummen."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Muligheter"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Beregninger"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Dokument zawiera element `<title>`"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Wszystkie elementy, które można zaznaczyć, muszą mieć unikalny atrybut `id`, aby były widoczne dla technologii wspomagających. [Jak naprawić duplikaty elementów `id`](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)"
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "Atrybuty `[id]` aktywnych elementów, które można zaznaczyć, nie są unikalne"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "Atrybuty `[id]` aktywnych elementów, które można zaznaczyć, są unikalne"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "Wartość identyfikatora ARIA musi być unikalna, aby technologie wspomagające nie pominęły innych wystąpień. [Jak naprawić zduplikowane identyfikatory 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": "Najwięszy wyrenderowany element"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Wpływ przesunięcia układu"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Przesunięcia układu miały największy wpływ na te elementy DOM. Niektóre przesunięcia układu mogą nie być uwzględnione w wartości danych CLS z powodu [okienkowania](https://web.dev/articles/cls#what_is_cls). [Dowiedz się, jak poprawić wartość CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Unikaj dużych przesunięć układu"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Wynik przesunięcia układu"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Opóźnienia backendu serwera"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "Zdarzenie `unload` nie zawsze jest uruchamiane prawidłowo, a wykrywanie go może uniemożliwić działanie mechanizmów optymalizujących pracę przeglądarki takich jak np. Back-Forward Cache. Zamiast tego użyj zdarzenia `pagehide` lub `visibilitychange`. [Więcej informacji o detektorach zdarzeń wyładowania](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Zarejestrowanie detektora zdarzeń `unload`"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Zarejestrowanie braku detektorów zdarzeń `unload`"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Nieskomponowane animacje mogą działać nieprawidłowo i zwiększać CLS. [Jak unikać nieskomponowanych animacji](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 ma metaopis"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Wyszukiwarki nie potrafią indeksować treści z wtyczek, a wiele urządzeń nie obsługuje wtyczek lub ogranicza ich działanie. [Więcej informacji o unikaniu wtyczek](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Dokument używa wtyczek"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Dokument nie wymaga wtyczek"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Jeśli plik robots.txt ma nieprawidłowy format, roboty indeksujące mogą nie wiedzieć, jak mają indeksować witrynę. [Więcej informacji o plikach 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": "Plik robots.txt jest prawidłowy"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Elementy interaktywne, takie jak przyciski i linki, powinny być dostatecznie duże (48 x 48 pikseli) lub mieć wokół siebie odpowiednią ilość miejsca, aby można było ich łatwo dotknąć, nie zahaczając o inne elementy. [Więcej informacji o elementach docelowych kliknięcia](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)"
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} elementów dotykowych ma odpowiednią wielkość"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Elementy dotykowe są zbyt małe z powodu braku metatagu viewport zoptymalizowanego na potrzeby ekranów telefonów"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Elementy dotykowe nie mają odpowiedniej wielkości"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Pokrywające się elementy dotykowe"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Element dotykowy"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Elementy dotykowe mają odpowiednią wielkość"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Zadbaj o to, aby czas reakcji serwera był jak najkrótszy dla głównego dokumentu na stronie, bo to od niego zależą wszystkie inne żądania. [Więcej informacji o czasie do pierwszego bajtu](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": "Opóźnienie prezentacji"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Czas przetwarzania"
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": "Ulepszenia pierwszego renderowania"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Te sugestie mogą pomóc przyśpieszyć wczytywanie strony. Nie mają one [bezpośredniego wpływu](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) na wynik w kategorii Wydajność."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Możliwości"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Dane"
1762
1825
  },