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": "O documento tem um elemento `<title>`"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Todos os elementos focalizáveis têm de ter um `id` exclusivo para garantir que são visíveis para as tecnologias de assistência. [Saiba como corrigir `id`s duplicados](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "Os atributos `[id]` nos elementos ativos e focáveis não são exclusivos"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "Os atributos `[id]` nos elementos ativos e focáveis são exclusivos"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "O valor de um ID ARIA tem de ser exclusivo para evitar que outras instâncias sejam ignoradas pelas tecnologias de assistência. [Saiba como corrigir IDs ARIA duplicados](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": "Elemento de Maior preenchimento com conteúdo"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Impacto da mudança de esquema"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Estes elementos DOM foram os mais afetados por mudanças de esquema. Algumas mudanças de esquema podem não ser incluídas no valor da métrica CLS devido à [normalização](https://web.dev/articles/cls#what_is_cls). [Saiba como melhorar a CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Evite mudanças de esquemas grandes"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Pontuação da mudança de esquema"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Latências de back-end do servidor"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "O evento `unload` não é acionado de forma fiável e detetá-lo pode impedir otimizações do navegador, como a cache para a frente/para trás. Opte por usar eventos `pagehide` ou `visibilitychange`. [Saiba mais acerca dos ouvintes de eventos unload](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Regista um ouvinte `unload`"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Evita ouvintes de eventos `unload`"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "As animações que não são compostas podem ser de má qualidade e aumentar o CLS. [Saiba como evitar animações não compostas](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": "O documento tem uma meta descrição"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Não é possível aos motores de pesquisa indexar o conteúdo de plug-ins, e muitos dispositivos restringem plug-ins ou não os suportam. [Saiba como evitar plug-ins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "O documento utiliza plug-ins"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "O documento evita plug-ins"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Se o ficheiro robots.txt estiver mal formado, os motores de rastreio podem não conseguir compreender como quer que o seu Website seja rastreado ou indexado. [Saiba mais acerca do ficheiro 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": "O ficheiro robots.txt é válido"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Os elementos interativos, como botões e links, devem ser suficientemente grandes (48 x 48 px) ou ter espaço suficiente à volta para serem fáceis de tocar sem que se sobreponham a outros elementos. [Saiba mais acerca dos alvos táteis](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "Os alvos táteis foram dimensionados corretamente com um tamanho de {decimalProportion, number, percent}"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Os alvos táteis são demasiado pequenos porque não existe nenhuma metatag de área visível otimizada para ecrãs de dispositivos móveis."
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Os alvos táteis não estão dimensionados corretamente"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Alvo sobreposto"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Alvo tátil"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Os alvos táteis estão dimensionados corretamente"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Mantenha o tempo de resposta do servidor para o documento principal curto porque todos os outros pedidos dependem do mesmo. [Saiba mais acerca da métrica Tempo até ao primeiro 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": "Atraso na apresentação"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Tempo de processamento"
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": "Melhorias no primeiro preenchimento"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Estas sugestões podem ajudar a sua página a ser carregada mais rapidamente. As mesmas não [afetam diretamente](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) a pontuação de desempenho."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Oportunidades"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Métricas"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "O documento tem um elemento `<title>`"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Todos os elementos focalizáveis precisam ter um `id` único para garantir que estejam visíveis para tecnologias adaptativas. [Aprenda a corrigir `id`s duplicados](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "Os atributos `[id]` em elementos focalizáveis ativos não são únicos"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "Os atributos `[id]` em elementos focalizáveis ativos são únicos"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "É necessário que o valor de um código ARIA seja único para impedir que outras instâncias sejam ignoradas por tecnologias adaptativas. [Aprenda a corrigir códigos ARIA duplicados](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": "Elemento de Maior exibição de conteúdo"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Impacto da troca de layout"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Esses elementos DOM foram mais afetados pelas trocas de layout. Algumas trocas de layout podem não ser incluídas no valor da métrica de CLS devido ao [janelamento](https://web.dev/articles/cls#what_is_cls). [Aprenda a melhorar o CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Evite grandes mudanças no layout"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Pontuação da troca de layout"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Latências do back-end do servidor"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "O evento `unload` não é acionado de maneira confiável, e a detecção dele pode evitar otimizações do navegador, como o Back-Forward Cache. Use `pagehide` ou `visibilitychange`. [Saiba mais sobre como descarregar listeners de eventos](https://web.dev/articles/bfcache#never_use_the_unload_event)."
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Registra um listener `unload`"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Evita listeners de eventos `unload`"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Animações que não são compostas podem ficar instáveis e aumentar a CLS. [Aprenda a evitar animações que não são compostas](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": "O documento tem uma metadescrição"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Mecanismos de pesquisa não podem indexar conteúdo de plug-in, e muitos dispositivos restringem plug-ins ou não são compatíveis com eles. [Saiba mais sobre como evitar plug-ins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "O documento usa plug-ins"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "O documento evita plug-ins"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Se o arquivo robots.txt for inválido, talvez não seja possível aos rastreadores entender como você quer que seu site seja rastreado ou indexado. [Saiba mais sobre o arquivo 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 é válido"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Elementos interativos, como botões e links, precisam ser grandes o bastante (48x48 px) ou ter espaço suficiente ao redor para poderem ser tocados sem sobreposição com outros elementos. [Saiba mais sobre áreas de toque](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} de áreas de toque dimensionadas corretamente"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "As áreas de toque são muito pequenas porque não há nenhuma metatag de janela de visualização otimizada para telas de dispositivos móveis"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "As áreas de toque não estão dimensionadas corretamente"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Área com sobreposição"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Área de toque"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "As áreas de toque estão dimensionadas corretamente"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Mantenha curto o tempo de resposta do servidor para o documento principal, já que todos os outros pedidos dependem dele. [Saiba mais sobre a métrica \"Tempo até o primeiro 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": "Atraso na apresentação"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Tempo de processamento"
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": "Melhorias do primeiro aparecimento"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Essas sugestões podem ajudar a acelerar o carregamento de página. Elas não [afetam diretamente](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) o índice de desempenho."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Oportunidades"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Métricas"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Documentul are un element `<title>`"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Toate elementele focalizabile trebuie să aibă un `id` unic ca să fie vizibile pentru tehnologiile de asistare. [Află cum să remediezi dublurile de `id`](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "Atributele `[id]` ale elementelor focalizabile active nu sunt unice"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "Atributele `[id]` ale elementelor focalizabile active sunt unice"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "Valoarea unui ID ARIA trebuie să fie unică pentru a preveni omiterea altor instanțe de tehnologiile de asistare. [Află cum să remediezi ID-urile ARIA dublură](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": "Elementul cu cea mai mare redare de conținut"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Impactul schimbării aspectului"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Aceste elemente DOM au fost afectate cel mai mult de schimbările aspectului. Este posibil ca unele schimbări ale aspectului să nu fie incluse în valoarea CLS din cauza practicii de [windowing](https://web.dev/articles/cls#what_is_cls). [Află cum să îmbunătățești CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Evită schimbările majore ale aspectului"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Scorul pentru schimbarea aspectului"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Latențe ale backendului serverului"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "Evenimentul `unload` nu se declanșează într-un mod fiabil și ascultarea lui poate împiedica optimizări de browser cum ar fi memoria cache înainte-înapoi. Folosește evenimente `pagehide` sau `visibilitychange` în loc. [Află mai multe despre funcțiile de procesare a evenimentelor unload](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Înregistrează un listener `unload`"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Evită funcțiile de procesare a evenimentelor `unload`"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Animațiile care nu sunt compuse pot fi dificile și pot spori CLS. [Află cum să eviți animațiile care nu sunt compuse](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": "Documentul are o metadescriere"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Motoarele de căutare nu pot indexa conținutul pluginurilor și multe dispozitive restricționează pluginurile sau nu le acceptă. [Află mai multe despre evitarea pluginurilor](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Documentul folosește pluginuri"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Documentul evită pluginurile"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Dacă fișierul robots.txt este deteriorat, este posibil ca aplicațiile crawler să nu poată înțelege cum vrei să fie site-ul tău accesat cu crawlere sau indexat. [Află mai multe despre 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": "Fișierul robots.txt este valid"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Elementele interactive, precum butoanele și linkurile, trebuie să fie suficient de mari (48x48 px) și să aibă suficient spațiu în jurul lor pentru a fi ușor de atins, fără a se suprapune peste alte elemente. [Află mai multe despre țintele de atingere](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} direcționări ale atingerilor au mărimea corectă"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Direcționările atingerilor sunt prea mici, deoarece nu există o metaetichetă Viewport optimizată pentru ecranele dispozitivelor mobile"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Direcționările atingerilor nu sunt dimensionate corect"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Direcționarea se suprapune"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Direcționarea atingerii"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Direcționările atingerilor sunt dimensionate corect"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Menține o durată scurtă de răspuns de la server pentru documentul principal, deoarece toate celelalte solicitări depind de acest lucru. [Află mai multe despre valoarea Timpul până la primul 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": "Întârzierea prezentării"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Durată de procesare"
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": "Îmbunătățirile pentru prima redare"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Aceste sugestii îți pot face pagina să se încarce mai repede. Ele nu [influențează direct](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) scorul de performanță."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Oportunități"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Valori"
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`. Подробнее [о прослушивателе событий unload](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": "Некомбинированные анимации могут пропускать кадры и усиливать совокупное смещение макета. Подробнее о том, [как убрать некомбинированные анимации](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": "Интерактивные элементы, такие как кнопки и ссылки, должны быть достаточно крупными (48 x 48 пкс) или располагаться на достаточном расстоянии друг от друга. Тогда при нажатии пользователи не будут задевать соседние объекты. Подробнее [об оптимальных размерах интерактивных элементов](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": "Слишком маленькие интерактивные элементы. Настройте область просмотра для экранов мобильных устройств с помощью метатега viewport."
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": "Время ответа сервера для основного документа должно быть небольшим, так как все прочие запросы зависят от этого показателя. Подробнее [о времени до получения первого байта](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": "Dokument má prvok `<title>`"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Všetky označiteľné prvky musia mať jedinečný atribút `id`, aby ich dokázali rozpoznať asistenčné technológie. [Ako opraviť duplicitné atribúty `id`](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)"
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "Atribúty `[id]` aktívnych označiteľných prvkov nie sú jedinečné"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "Atribúty `[id]` aktívnych označiteľných prvkov sú jedinečné"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "Hodnota identifikátora ARIA musí byť jedinečná, aby asistenčné technológie neprehliadli ďalšie výskyty. [Ako opraviť duplicitné identifikátory 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": "Prvok vykreslenia najväčšieho obsahu"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Vplyv zmeny rozloženia"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Tieto prvky DOM boli najviac ovplyvnené zmenami rozloženia. Niektoré zmeny rozloženia nemusia byť zahrnuté v hodnote metriky súhrnu posunov rozloženia stránky, pretože bol použitý [windowing](https://web.dev/articles/cls#what_is_cls). [Ako zlepšiť súhrn posunov rozloženia stránky](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Nepoužívajte veľké posuny rozloženia"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Skóre posunu rozloženia"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Latencie na strane servera"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "Udalosť `unload` sa nespúšťa spoľahlivo a jej prijímanie môže brániť optimalizáciám prehliadača, ako je spätná vyrovnávacia pamäť. Použite namiesto nej udalosť `pagehide` alebo `visibilitychange`. [Ďalšie informácie o uvoľňovacích prijímačoch udalostí](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Registruje sa ako prijímač udalosti `unload`"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Nepoužíva prijímače udalosti `unload`"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Nezložené animácie môžu byť nekvalitné a môžu zvýšiť kumulatívnu zmenu rozloženia. [Ako sa vyhnúť nezloženým animáciá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 má metapopis"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Vyhľadávače nemôžu indexovať obsah doplnkov a mnoho zariadení obmedzuje doplnky alebo ich nepodporuje. [Ako sa vyhnúť doplnkom](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Dokument používa doplnky"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "Dokument nepoužíva doplnky"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Ak máte chybný súbor robots.txt, prehľadávače nemusia pochopiť, akým spôsobom majú váš web prehľadávať alebo indexovať. [Ďalšie informácie o súboroch 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": "Súbor robots.txt je platný"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Interaktívne prvky, ako sú tlačidlá a odkazy, by mali byť dostatočne veľké (48 × 48 px) a mať okolo seba dostatočné voľné miesto, aby sa na ne dalo ľahko klepnúť a neprekrývali ďalšie prvky. [Ďalšie informácie o cieľoch klepnutí](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)"
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "{decimalProportion, number, percent} cieľových oblastí s vhodnou veľkosťou"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Cieľové oblasti klepnutia sú príliš malé, pretože neexistuje žiadna metaznačka oblasti zobrazenia optimalizovaná pre mobilné obrazovky"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Cieľové oblasti klepnutia nemajú vhodnú veľkosť"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Prekrývajúce sa cieľové oblasti"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Cieľová oblasť klepnutia"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Cieľové oblasti klepnutia majú vhodnú veľkosť"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Zaistite, aby bol čas odozvy servera pre hlavný dokument krátky, pretože od neho závisia všetky ostatné žiadosti. [Ďalšie informácie o metrike Čas do prvého 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": "Oneskorenie prezentácie"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Čas spracovania"
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": "Vylepšenia prvého vyfarbenia"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Tieto návrhy môžu pomôcť s rýchlejším načítavaním vašej stránky. [Neovplyvňujú priamo](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) skóre výkonnosti."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Príležitosti"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Metriky"
1762
1825
  },