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": "‏‮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‬‏ ‏‮Backend‬‏ ‏‮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‬‏ ‏‮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)"
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‬‏ ‏‮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/)"
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‬‏ ‏‮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/)."
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‬‏ ‏‮optimized‬‏ ‏‮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": "المستند يحتوي على عنصر `<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). [التعرُّف على كيفية تحسين متغيّرات التصميم التراكمية](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": "يجب أن تكون العناصر التفاعلية، مثل الأزرار والروابط، كبيرة بشكلٍ كافٍ (48 × 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": "أهداف النقر صغيرة جدًا لأنه لا تتوفّر علامة وصفية لإطار العرض محسنة لشاشات الجوّال."
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": "Документът има елемент `<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": "Елемент, рендериран при изобразяване на най-голямото съдържание (LCP)"
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` не се задейства надеждно и приемането му може да попречи на оптимизациите на браузъра, като например Back-Forward Cache. Вместо това използвайте събитията `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": "Анимациите, които не са комбинирани, могат да са с лошо качество и да увеличат стойността на показателя 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": "Интерактивните елементи, като бутони и връзки, трябва да са достатъчно големи (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": "El document té un element `<title>`"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Tots els elements enfocables han de tenir un `id` únic per garantir que les tecnologies assistencials els puguin veure. [Obtén informació sobre com pots corregir els `id` duplicats](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "Els atributs `[id]` en elements actius en què es pot posar el focus no són únics"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "Els atributs `[id]` en elements actius en què es pot posar el focus són únics"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "El valor d'un identificador ARIA ha de ser únic per impedir que les tecnologies assistencials passin per alt altres instàncies. [Obtén informació sobre com pots corregir els identificadors ARIA duplicats](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 de renderització de l'element més gran amb contingut"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Impacte del canvi de disseny"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Aquests són els elements de DOM que més s'han vist afectats pels canvis de disseny. És possible que alguns d'aquests canvis no s'incloguin al valor de la mètrica CLS a causa de la [normalització](https://web.dev/articles/cls#what_is_cls). [Informació sobre com pots millorar el CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Evita els canvis de disseny importants"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Puntuació del canvi de disseny"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Latències dorsals del servidor"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "L'esdeveniment `unload` no es pot activar amb fiabilitat i detectar-lo pot impedir optimitzacions del navegador, com ara la memòria cau endavant/enrere. Substitueix-lo pels esdeveniments `pagehide` o `visibilitychange`. [Més informació sobre com es poden baixar els detectors d'esdeveniments](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Registra un detector de `unload`"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Evita detectors d'esdeveniments `unload`"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Les animacions que no són compostes poden ser lentes i augmentar el canvi de disseny acumulatiu. [Informació sobre com pots evitar les animacions no compostes](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": "El document té una metadescripció"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Els motors de cerca no poden indexar el contingut dels connectors. A més, molts dispositius restringeixen o no admeten connectors. [Obtén més informació sobre com pots evitar els connectors](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "El document utilitza connectors"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "El document evita els connectors"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Si el format del fitxer robots.txt no és correcte, és possible que els rastrejadors no puguin entendre com vols que rastregin o indexin el lloc web. [Obtén més informació sobre 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": "El fitxer robots.txt és vàlid"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Els elements interactius, com ara els botons i els enllaços, han de ser prou grans (48 x 48 píxels) o han de tenir prou espai al voltant perquè els usuaris els puguin tocar sense que se superposin a altres elements. [Obtén més informació sobre els objectius tàctils](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "El {decimalProportion, number, percent} de les mides dels objectius tàctils és correcte"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Els elements tàctils són massa petits perquè no hi ha cap metaetiqueta de finestra gràfica optimitzada per a pantalles de mòbil"
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "La mida dels elements tàctils no és correcta"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Objectiu superposat"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Element tàctil"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "La mida dels elements tàctils és correcta"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Fes que el temps de resposta del servidor per al document principal sigui breu, ja que la resta de sol·licituds en depenen. [Obtén més informació sobre la mètrica Temps fins al primer 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": "Retard en la presentació"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Temps de processament"
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": "Millores de la primera renderització"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Aquests suggeriments poden ajudar la pàgina a carregar-se més de pressa. No [afecten directament](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) el resultat del rendiment."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Oportunitats"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Mètriques"
1762
1825
  },
@@ -236,6 +236,15 @@
236
236
  "core/audits/accessibility/document-title.js | title": {
237
237
  "message": "Dokument obsahuje prvek `<title>`"
238
238
  },
239
+ "core/audits/accessibility/duplicate-id-active.js | description": {
240
+ "message": "Všechny vybratelné prvky musí mít unikátní atribut `id`, aby bylo zaručeno, že budou viditelné pro asistenční technologie. [Jak opravit duplicitní položky `id`](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
241
+ },
242
+ "core/audits/accessibility/duplicate-id-active.js | failureTitle": {
243
+ "message": "Atributy `[id]` u aktivních, zaměřitelných prvků nejsou unikátní"
244
+ },
245
+ "core/audits/accessibility/duplicate-id-active.js | title": {
246
+ "message": "Atributy `[id]` u aktivních, zaměřitelných prvků jsou unikátní"
247
+ },
239
248
  "core/audits/accessibility/duplicate-id-aria.js | description": {
240
249
  "message": "Hodnota ID ARIA musí být unikátní, aby asistenční technologie nepřehlížely ostatní instance. [Jak opravit duplicitní ID 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": "Prvek Largest Contentful Paint"
1150
1159
  },
1160
+ "core/audits/layout-shift-elements.js | columnContribution": {
1161
+ "message": "Dopad změny rozvržení"
1162
+ },
1163
+ "core/audits/layout-shift-elements.js | description": {
1164
+ "message": "Tyto prvky DOM byly změnami rozvržení ovlivněny nejvíce. Některé změny rozvržení do hodnoty metriky CLS vzhledem k [normalizaci ](https://web.dev/articles/cls#what_is_cls) nemusí zahrnuty. [Jak zlepšit CLS](https://web.dev/articles/optimize-cls)"
1165
+ },
1166
+ "core/audits/layout-shift-elements.js | title": {
1167
+ "message": "Zajistěte, aby nedocházelo k velkým změnám rozvržení"
1168
+ },
1151
1169
  "core/audits/layout-shifts.js | columnScore": {
1152
1170
  "message": "Skóre změny rozvržení"
1153
1171
  },
@@ -1268,6 +1286,15 @@
1268
1286
  "core/audits/network-server-latency.js | title": {
1269
1287
  "message": "Latence backendu na serveru"
1270
1288
  },
1289
+ "core/audits/no-unload-listeners.js | description": {
1290
+ "message": "Událost `unload` se nespouští spolehlivě. Naslouchání této události může zabránit optimalizacím v prohlížečích, jako je mezipaměť pro přechod zpět nebo vpřed. Použijte místo ní událost `pagehide` nebo `visibilitychange`. [Další informace o posluchačích událostí unload](https://web.dev/articles/bfcache#never_use_the_unload_event)"
1291
+ },
1292
+ "core/audits/no-unload-listeners.js | failureTitle": {
1293
+ "message": "Registruje posluchač události `unload`"
1294
+ },
1295
+ "core/audits/no-unload-listeners.js | title": {
1296
+ "message": "Nepoužívá posluchače událostí `unload`"
1297
+ },
1271
1298
  "core/audits/non-composited-animations.js | description": {
1272
1299
  "message": "Neskládané animace mohou být nekvalitní a mohou zvyšovat míru kumulativní změny rozvržení (CLS). [Jak se vyhnout neskládaným animací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á metaznačku „description“"
1456
1483
  },
1484
+ "core/audits/seo/plugins.js | description": {
1485
+ "message": "Vyhledávače obsah pluginů nedokážou indexovat a na mnoha zařízeních jsou pluginy zakázány nebo nejsou podporovány. [Jak se vyhnout použití pluginů](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
1486
+ },
1487
+ "core/audits/seo/plugins.js | failureTitle": {
1488
+ "message": "Dokument používá pluginy"
1489
+ },
1490
+ "core/audits/seo/plugins.js | title": {
1491
+ "message": "V dokumentu nejsou použity pluginy"
1492
+ },
1457
1493
  "core/audits/seo/robots-txt.js | description": {
1458
1494
  "message": "Pokud soubor robots.txt nemá správný formát, prohledávače nemusejí být schopné zjistit, jak váš web mají procházet nebo indexovat. [Další informace o souboru 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": "Soubor robots.txt je platný"
1474
1510
  },
1511
+ "core/audits/seo/tap-targets.js | description": {
1512
+ "message": "Interaktivní prvky, jako jsou tlačítka a odkazy, by měly být dostatečně velké (48 × 48 px) nebo by okolo nich mělo být dost místa na to, aby se na ně dalo dostatečně snadno klepnout bez přesahování do dalších prvků. [Další informace o dotykových prvcích](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
1513
+ },
1514
+ "core/audits/seo/tap-targets.js | displayValue": {
1515
+ "message": "Podíl dostatečně velkých dotykových prvků: {decimalProportion, number, percent}"
1516
+ },
1517
+ "core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
1518
+ "message": "Dotykové prvky jsou příliš malé, protože není k dispozici metaznačka viewport optimalizovaná pro obrazovky mobilních zařízení."
1519
+ },
1520
+ "core/audits/seo/tap-targets.js | failureTitle": {
1521
+ "message": "Dotykové prvky nejsou dostatečně velké"
1522
+ },
1523
+ "core/audits/seo/tap-targets.js | overlappingTargetHeader": {
1524
+ "message": "Překrývající se cíl"
1525
+ },
1526
+ "core/audits/seo/tap-targets.js | tapTargetHeader": {
1527
+ "message": "Dotykový prvek"
1528
+ },
1529
+ "core/audits/seo/tap-targets.js | title": {
1530
+ "message": "Dotykové prvky jsou dostatečně velké"
1531
+ },
1475
1532
  "core/audits/server-response-time.js | description": {
1476
1533
  "message": "Odpověď serveru s hlavním dokumentem by měla být rychlá, protože na ní závisejí všechny ostatní požadavky. [Další informace o metrice doby do přijetí první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": "Prodleva prezentace"
1663
1720
  },
1664
- "core/audits/work-during-interaction.js | processingDuration": {
1721
+ "core/audits/work-during-interaction.js | processingTime": {
1665
1722
  "message": "Doba zpracování"
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šení prvního vykreslení"
1759
1816
  },
1817
+ "core/config/default-config.js | loadOpportunitiesGroupDescription": {
1818
+ "message": "Tyto návrhy vám mohou pomoci zrychlit načítání stránky. Na skóre výkonu nemají [přímý vliv](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/)."
1819
+ },
1820
+ "core/config/default-config.js | loadOpportunitiesGroupTitle": {
1821
+ "message": "Příležitosti"
1822
+ },
1760
1823
  "core/config/default-config.js | metricGroupTitle": {
1761
1824
  "message": "Metriky"
1762
1825
  },