lighthouse 12.0.0 → 12.1.0

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 (219) hide show
  1. package/cli/run.js +5 -38
  2. package/cli/test/smokehouse/lighthouse-runners/bundle.js +1 -1
  3. package/cli/test/smokehouse/smokehouse.js +11 -1
  4. package/core/audits/accessibility/aria-allowed-role.js +7 -9
  5. package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +2 -2
  6. package/core/audits/byte-efficiency/byte-efficiency-audit.js +3 -3
  7. package/core/audits/byte-efficiency/offscreen-images.js +1 -1
  8. package/core/audits/byte-efficiency/render-blocking-resources.d.ts +3 -3
  9. package/core/audits/byte-efficiency/render-blocking-resources.js +10 -10
  10. package/core/audits/dobetterweb/uses-http2.d.ts +2 -2
  11. package/core/audits/dobetterweb/uses-http2.js +5 -5
  12. package/core/audits/long-tasks.d.ts +7 -6
  13. package/core/audits/long-tasks.js +5 -4
  14. package/core/audits/metrics/first-meaningful-paint.d.ts +1 -17
  15. package/core/audits/metrics/first-meaningful-paint.js +5 -47
  16. package/core/audits/metrics/interactive.d.ts +1 -1
  17. package/core/audits/metrics/interactive.js +1 -1
  18. package/core/audits/predictive-perf.js +0 -6
  19. package/core/audits/prioritize-lcp-image.d.ts +1 -1
  20. package/core/audits/prioritize-lcp-image.js +2 -2
  21. package/core/audits/redirects.js +2 -3
  22. package/core/audits/third-party-facades.js +1 -1
  23. package/core/audits/third-party-summary.js +1 -1
  24. package/core/audits/uses-rel-preconnect.js +2 -2
  25. package/core/audits/uses-rel-preload.js +9 -9
  26. package/core/computed/critical-request-chains.js +3 -3
  27. package/core/computed/document-urls.js +3 -2
  28. package/core/computed/load-simulator.d.ts +4 -4
  29. package/core/computed/load-simulator.js +3 -54
  30. package/core/computed/main-resource.js +3 -2
  31. package/core/computed/metrics/interactive.d.ts +6 -0
  32. package/core/computed/metrics/interactive.js +2 -2
  33. package/core/computed/metrics/lantern-first-contentful-paint.d.ts +4 -4
  34. package/core/computed/metrics/lantern-first-contentful-paint.js +3 -3
  35. package/core/computed/metrics/lantern-interactive.d.ts +4 -4
  36. package/core/computed/metrics/lantern-interactive.js +6 -6
  37. package/core/computed/metrics/lantern-largest-contentful-paint.d.ts +4 -4
  38. package/core/computed/metrics/lantern-largest-contentful-paint.js +3 -3
  39. package/core/computed/metrics/lantern-max-potential-fid.d.ts +4 -4
  40. package/core/computed/metrics/lantern-max-potential-fid.js +3 -3
  41. package/core/computed/metrics/lantern-metric.d.ts +21 -2
  42. package/core/computed/metrics/lantern-metric.js +39 -4
  43. package/core/computed/metrics/lantern-speed-index.d.ts +4 -4
  44. package/core/computed/metrics/lantern-speed-index.js +4 -4
  45. package/core/computed/metrics/lantern-total-blocking-time.d.ts +4 -4
  46. package/core/computed/metrics/lantern-total-blocking-time.js +3 -3
  47. package/core/computed/metrics/timing-summary.js +0 -6
  48. package/core/computed/metrics/total-blocking-time.js +3 -1
  49. package/core/computed/navigation-insights.d.ts +2 -20
  50. package/core/computed/network-analysis.d.ts +0 -5
  51. package/core/computed/network-analysis.js +2 -42
  52. package/core/computed/page-dependency-graph.d.ts +5 -3
  53. package/core/computed/page-dependency-graph.js +17 -7
  54. package/core/computed/processed-navigation.d.ts +1 -1
  55. package/core/computed/tbt-impact-tasks.js +4 -2
  56. package/core/computed/trace-engine-result.d.ts +0 -11
  57. package/core/computed/trace-engine-result.js +5 -19
  58. package/core/config/constants.d.ts +28 -53
  59. package/core/config/constants.js +2 -43
  60. package/core/gather/driver/navigation.js +1 -1
  61. package/core/gather/driver/network-monitor.d.ts +2 -1
  62. package/core/gather/driver/network-monitor.js +4 -4
  63. package/core/gather/driver/target-manager.d.ts +1 -1
  64. package/core/gather/driver.d.ts +0 -12
  65. package/core/gather/driver.js +1 -26
  66. package/core/gather/gatherers/inspector-issues.js +1 -0
  67. package/core/gather/gatherers/root-causes.js +0 -1
  68. package/core/gather/session.d.ts +5 -3
  69. package/core/gather/session.js +22 -1
  70. package/core/lib/asset-saver.d.ts +13 -9
  71. package/core/lib/asset-saver.js +77 -30
  72. package/core/lib/bf-cache-strings.js +2 -2
  73. package/core/lib/lantern/{base-node.d.ts → BaseNode.d.ts} +7 -9
  74. package/core/lib/lantern/{base-node.js → BaseNode.js} +6 -6
  75. package/core/lib/lantern/BaseNode.test.js +385 -0
  76. package/core/lib/lantern/CpuNode.d.ts +43 -0
  77. package/core/lib/lantern/{cpu-node.js → CpuNode.js} +8 -9
  78. package/core/lib/lantern/{lantern-error.d.ts → LanternError.d.ts} +1 -1
  79. package/core/lib/lantern/{metric.d.ts → Metric.d.ts} +23 -25
  80. package/core/lib/lantern/{metric.js → Metric.js} +14 -16
  81. package/core/lib/lantern/{network-node.d.ts → NetworkNode.d.ts} +6 -7
  82. package/core/lib/lantern/{network-node.js → NetworkNode.js} +7 -9
  83. package/core/lib/lantern/PageDependencyGraph.d.ts +82 -0
  84. package/core/lib/lantern/{page-dependency-graph.js → PageDependencyGraph.js} +185 -50
  85. package/core/lib/lantern/PageDependencyGraph.test.js +654 -0
  86. package/core/{computed/metrics/tbt-utils.d.ts → lib/lantern/TBTUtils.d.ts} +1 -1
  87. package/core/lib/lantern/TBTUtils.test.d.ts +2 -0
  88. package/core/lib/lantern/TBTUtils.test.js +130 -0
  89. package/core/lib/lantern/TraceEngineComputationData.d.ts +25 -0
  90. package/core/lib/lantern/TraceEngineComputationData.js +466 -0
  91. package/core/lib/lantern/lantern.d.ts +19 -7
  92. package/core/lib/lantern/lantern.js +21 -1
  93. package/core/lib/lantern/metrics/{first-contentful-paint.d.ts → FirstContentfulPaint.d.ts} +11 -11
  94. package/core/lib/lantern/metrics/{first-contentful-paint.js → FirstContentfulPaint.js} +11 -13
  95. package/core/lib/lantern/metrics/FirstContentfulPaint.test.js +54 -0
  96. package/core/lib/lantern/metrics/Interactive.d.ts +20 -0
  97. package/core/lib/lantern/metrics/{interactive.js → Interactive.js} +23 -26
  98. package/core/lib/lantern/metrics/Interactive.test.js +56 -0
  99. package/core/lib/lantern/metrics/LargestContentfulPaint.d.ts +19 -0
  100. package/core/lib/lantern/metrics/{largest-contentful-paint.js → LargestContentfulPaint.js} +16 -19
  101. package/core/lib/lantern/metrics/LargestContentfulPaint.test.js +42 -0
  102. package/core/lib/lantern/metrics/MaxPotentialFID.d.ts +24 -0
  103. package/core/lib/lantern/metrics/{max-potential-fid.js → MaxPotentialFID.js} +12 -13
  104. package/core/lib/lantern/metrics/MetricTestUtils.d.ts +19 -0
  105. package/core/lib/lantern/metrics/MetricTestUtils.js +48 -0
  106. package/core/lib/lantern/metrics/{speed-index.d.ts → SpeedIndex.d.ts} +7 -13
  107. package/core/lib/lantern/metrics/{speed-index.js → SpeedIndex.js} +14 -16
  108. package/core/lib/lantern/metrics/SpeedIndex.test.js +83 -0
  109. package/core/lib/lantern/metrics/TotalBlockingTime.d.ts +25 -0
  110. package/core/lib/lantern/metrics/{total-blocking-time.js → TotalBlockingTime.js} +13 -16
  111. package/core/lib/lantern/metrics/__snapshots__/FirstContentfulPaint.test.js.snap +11 -0
  112. package/core/lib/lantern/metrics/__snapshots__/Interactive.test.js.snap +17 -0
  113. package/core/lib/lantern/metrics/metrics.d.ts +9 -0
  114. package/core/lib/lantern/metrics/metrics.js +16 -0
  115. package/core/lib/lantern/{simulator/connection-pool.d.ts → simulation/ConnectionPool.d.ts} +15 -15
  116. package/core/lib/lantern/{simulator/connection-pool.js → simulation/ConnectionPool.js} +25 -25
  117. package/core/lib/lantern/simulation/ConnectionPool.test.js +195 -0
  118. package/core/lib/lantern/simulation/Constants.d.ts +52 -0
  119. package/core/lib/lantern/simulation/Constants.js +48 -0
  120. package/core/lib/lantern/{simulator/dns-cache.d.ts → simulation/DNSCache.d.ts} +3 -3
  121. package/core/lib/lantern/{simulator/dns-cache.js → simulation/DNSCache.js} +2 -2
  122. package/core/lib/lantern/simulation/DNSCache.test.js +72 -0
  123. package/core/lib/lantern/{simulator/network-analyzer.d.ts → simulation/NetworkAnalyzer.d.ts} +34 -21
  124. package/core/lib/lantern/{simulator/network-analyzer.js → simulation/NetworkAnalyzer.js} +106 -57
  125. package/core/lib/lantern/simulation/NetworkAnalyzer.test.js +475 -0
  126. package/core/lib/lantern/{simulator/simulator-timing-map.d.ts → simulation/SimulationTimingMap.d.ts} +7 -7
  127. package/core/lib/lantern/{simulator/simulator-timing-map.js → simulation/SimulationTimingMap.js} +5 -6
  128. package/core/lib/lantern/{simulator/simulator.d.ts → simulation/Simulator.d.ts} +21 -19
  129. package/core/lib/lantern/{simulator/simulator.js → simulation/Simulator.js} +100 -45
  130. package/core/lib/lantern/simulation/Simulator.test.js +434 -0
  131. package/core/lib/lantern/simulation/TCPConnection.test.d.ts +2 -0
  132. package/core/lib/lantern/simulation/TCPConnection.test.js +374 -0
  133. package/core/lib/lantern/{simulator/tcp-connection.d.ts → simulation/TcpConnection.d.ts} +2 -2
  134. package/core/lib/lantern/{simulator/tcp-connection.js → simulation/TcpConnection.js} +1 -1
  135. package/core/lib/lantern/simulation/simulation.d.ts +21 -0
  136. package/core/lib/lantern/simulation/simulation.js +28 -0
  137. package/core/lib/lantern/types/lantern.d.ts +145 -20
  138. package/core/lib/lantern-trace-saver.d.ts +4 -4
  139. package/core/lib/lantern-trace-saver.js +4 -4
  140. package/core/lib/navigation-error.js +3 -3
  141. package/core/lib/network-recorder.js +2 -2
  142. package/core/lib/network-request.d.ts +29 -3
  143. package/core/lib/network-request.js +20 -13
  144. package/core/lib/tracehouse/trace-processor.d.ts +0 -2
  145. package/core/lib/tracehouse/trace-processor.js +1 -31
  146. package/core/lib/traces/metric-trace-events.js +0 -5
  147. package/dist/report/bundle.esm.js +1 -1
  148. package/dist/report/flow.js +1 -1
  149. package/dist/report/standalone.js +1 -1
  150. package/package.json +14 -13
  151. package/report/renderer/performance-category-renderer.js +1 -1
  152. package/shared/localization/locales/ar-XB.json +43 -4
  153. package/shared/localization/locales/ar.json +43 -4
  154. package/shared/localization/locales/bg.json +43 -4
  155. package/shared/localization/locales/ca.json +44 -5
  156. package/shared/localization/locales/cs.json +43 -4
  157. package/shared/localization/locales/da.json +43 -4
  158. package/shared/localization/locales/de.json +43 -4
  159. package/shared/localization/locales/el.json +43 -4
  160. package/shared/localization/locales/en-GB.json +42 -3
  161. package/shared/localization/locales/en-US.json +4 -4
  162. package/shared/localization/locales/en-XA.json +43 -4
  163. package/shared/localization/locales/en-XL.json +4 -4
  164. package/shared/localization/locales/es-419.json +43 -4
  165. package/shared/localization/locales/es.json +42 -3
  166. package/shared/localization/locales/fi.json +43 -4
  167. package/shared/localization/locales/fil.json +42 -3
  168. package/shared/localization/locales/fr.json +42 -3
  169. package/shared/localization/locales/he.json +48 -9
  170. package/shared/localization/locales/hi.json +43 -4
  171. package/shared/localization/locales/hr.json +43 -4
  172. package/shared/localization/locales/hu.json +42 -3
  173. package/shared/localization/locales/id.json +42 -3
  174. package/shared/localization/locales/it.json +43 -4
  175. package/shared/localization/locales/ja.json +42 -3
  176. package/shared/localization/locales/ko.json +43 -4
  177. package/shared/localization/locales/lt.json +42 -3
  178. package/shared/localization/locales/lv.json +43 -4
  179. package/shared/localization/locales/nl.json +44 -5
  180. package/shared/localization/locales/no.json +42 -3
  181. package/shared/localization/locales/pl.json +43 -4
  182. package/shared/localization/locales/pt-PT.json +43 -4
  183. package/shared/localization/locales/pt.json +43 -4
  184. package/shared/localization/locales/ro.json +43 -4
  185. package/shared/localization/locales/ru.json +43 -4
  186. package/shared/localization/locales/sk.json +43 -4
  187. package/shared/localization/locales/sl.json +42 -3
  188. package/shared/localization/locales/sr-Latn.json +43 -4
  189. package/shared/localization/locales/sr.json +43 -4
  190. package/shared/localization/locales/sv.json +42 -3
  191. package/shared/localization/locales/ta.json +42 -3
  192. package/shared/localization/locales/te.json +43 -4
  193. package/shared/localization/locales/th.json +44 -5
  194. package/shared/localization/locales/tr.json +43 -4
  195. package/shared/localization/locales/uk.json +43 -4
  196. package/shared/localization/locales/vi.json +43 -4
  197. package/shared/localization/locales/zh-HK.json +43 -4
  198. package/shared/localization/locales/zh-TW.json +43 -4
  199. package/shared/localization/locales/zh.json +43 -4
  200. package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +1 -0
  201. package/tsconfig-all.json +1 -0
  202. package/tsconfig.json +11 -7
  203. package/types/artifacts.d.ts +23 -25
  204. package/types/gatherer.d.ts +2 -3
  205. package/types/lhr/lhr.d.ts +2 -0
  206. package/core/computed/metrics/first-meaningful-paint.d.ts +0 -21
  207. package/core/computed/metrics/first-meaningful-paint.js +0 -44
  208. package/core/computed/metrics/lantern-first-meaningful-paint.d.ts +0 -25
  209. package/core/computed/metrics/lantern-first-meaningful-paint.js +0 -43
  210. package/core/lib/lantern/cpu-node.d.ts +0 -44
  211. package/core/lib/lantern/metrics/first-meaningful-paint.d.ts +0 -6
  212. package/core/lib/lantern/metrics/first-meaningful-paint.js +0 -64
  213. package/core/lib/lantern/metrics/interactive.d.ts +0 -26
  214. package/core/lib/lantern/metrics/largest-contentful-paint.d.ts +0 -19
  215. package/core/lib/lantern/metrics/max-potential-fid.d.ts +0 -30
  216. package/core/lib/lantern/metrics/total-blocking-time.d.ts +0 -31
  217. package/core/lib/lantern/page-dependency-graph.d.ts +0 -58
  218. /package/core/lib/lantern/{lantern-error.js → LanternError.js} +0 -0
  219. /package/core/{computed/metrics/tbt-utils.js → lib/lantern/TBTUtils.js} +0 -0
@@ -18,13 +18,13 @@
18
18
  "message": "سمات `[aria-*]` هي مطابقة لأدوارها"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "يتيح `role` ARIA للتكنولوجيا المساعِدة معرفة دور كل عنصر على صفحة الويب. إذا كانت قيَم `role` مكتوبة بشكل خاطئ أو كانت قيَم `role` ARIA غير موجودة أو كانت الأدوار مجرّدة، لن يعرف مستخدمو التكنولوجيا المساعِدة الغرض من العنصر. [مزيد من المعلومات حول أدوار ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)"
21
+ "message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
22
22
  },
23
23
  "core/audits/accessibility/aria-allowed-role.js | failureTitle": {
24
- "message": "القيَم التي تم تخصيصها للدور `role=\"\"` ليست أدوار ARIA صالحة"
24
+ "message": "Uses ARIA roles on incompatible elements"
25
25
  },
26
26
  "core/audits/accessibility/aria-allowed-role.js | title": {
27
- "message": "تمثِّل القيَم التي تم تخصيصها للدور `role=\"\"` أدوار ARIA صالحة"
27
+ "message": "Uses ARIA roles only on compatible elements"
28
28
  },
29
29
  "core/audits/accessibility/aria-command-name.js | description": {
30
30
  "message": "عند عدم ظهور اسم أحد العناصر على واجهة المستخدم، تشير برامج قراءة الشاشة إلى هذا العنصر باستخدام اسم عام، ما يجعله غير قابل للاستخدام بالنسبة إلى المستخدمين الذين يعتمدون على برامج قراءة الشاشة. تعرَّف على [كيفية تسهيل استخدام عناصر الأوامر](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
@@ -35,6 +35,24 @@
35
35
  "core/audits/accessibility/aria-command-name.js | title": {
36
36
  "message": "تتوفّر لعناصر `button` و`link` و`menuitem` أسماء يمكن الوصول إليها"
37
37
  },
38
+ "core/audits/accessibility/aria-conditional-attr.js | description": {
39
+ "message": "لا يُسمح باستخدام بعض سمات ARIA مع أحد العناصر إلا في حال استيفاء شروط معيّنة. [مزيد من المعلومات حول سمات ARIA الشرطية](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)"
40
+ },
41
+ "core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
42
+ "message": "لا يتم استخدام سمات ARIA على النحو المحدَّد لدور العنصر"
43
+ },
44
+ "core/audits/accessibility/aria-conditional-attr.js | title": {
45
+ "message": "يتم استخدام سمات ARIA على النحو المحدَّد لدور العنصر"
46
+ },
47
+ "core/audits/accessibility/aria-deprecated-role.js | description": {
48
+ "message": "قد لا تتم معالجة أدوار ARIA المتوقّفة نهائيًا بشكلٍ صحيح من خلال التكنولوجيا المساعِدة. [مزيد من المعلومات حول أدوار ARIA المتوقّفة نهائيًا](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)"
49
+ },
50
+ "core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
51
+ "message": "تم استخدام أدوار ARIA المتوقّفة نهائيًا"
52
+ },
53
+ "core/audits/accessibility/aria-deprecated-role.js | title": {
54
+ "message": "لم يتم استخدام أدوار ARIA المتوقّفة نهائيًا"
55
+ },
38
56
  "core/audits/accessibility/aria-dialog-name.js | description": {
39
57
  "message": "عند استخدام عناصر مربّع الحوار ARIA (dialog‏ ARIA) بدون أسماء ظاهرة على واجهة المستخدم، لن يتمكّن مستخدمو برامج قراءة الشاشة من التعرّف على الغرض من هذه العناصر. [التعرّف على كيفية إظهار عناصر مربّع الحوار ARIA (dialog‏ ARIA) على واجهة المستخدم بشكل أوضح](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)"
40
58
  },
@@ -89,6 +107,15 @@
89
107
  "core/audits/accessibility/aria-progressbar-name.js | title": {
90
108
  "message": "تتوفّر لعناصر ARIA `progressbar` أسماء يمكن الوصول إليها"
91
109
  },
110
+ "core/audits/accessibility/aria-prohibited-attr.js | description": {
111
+ "message": "قد يؤدي استخدام سمات ARIA في الأدوار التي يُحظر فيها استخدامها إلى عدم نقل معلومات مُهمّة إلى مستخدمي التكنولوجيات المساعِدة. [مزيد من المعلومات حول أدوار ARIA المحظورة](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)"
112
+ },
113
+ "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
+ "message": "تستخدِم العناصر سمات ARIA المحظورة"
115
+ },
116
+ "core/audits/accessibility/aria-prohibited-attr.js | title": {
117
+ "message": "تستخدِم العناصر سمات ARIA المسموح بها فقط"
118
+ },
92
119
  "core/audits/accessibility/aria-required-attr.js | description": {
93
120
  "message": "تتطلّب بعض أدوار ARIA تزويد برامج قراءة الشاشة بسمات تصف حالة العنصر. [مزيد من المعلومات حول الأدوار والسمات المطلوبة](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)"
94
121
  },
@@ -1175,6 +1202,15 @@
1175
1202
  "core/audits/prioritize-lcp-image.js | title": {
1176
1203
  "message": "التحميل المُسبَق لصورة المقياس \"سرعة عرض أكبر جزء من المحتوى على الصفحة\""
1177
1204
  },
1205
+ "core/audits/redirects-http.js | description": {
1206
+ "message": "تأكَّد من إعادة توجيه جميع الزيارات على HTTP إلى HTTPS لتفعيل ميزات الويب الآمنة لجميع المستخدمين. [مزيد من المعلومات](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)"
1207
+ },
1208
+ "core/audits/redirects-http.js | failureTitle": {
1209
+ "message": "عدم إعادة توجيه زيارات HTTP إلى HTTPS"
1210
+ },
1211
+ "core/audits/redirects-http.js | title": {
1212
+ "message": "إعادة توجيه زيارات HTTP إلى HTTPS"
1213
+ },
1178
1214
  "core/audits/redirects.js | description": {
1179
1215
  "message": "تؤدي عمليات إعادة التوجيه إلى حدوث تأخيرات إضافية قبل أن يتم تحميل الصفحة. تعرَّف على [كيفية تجنُّب عمليات إعادة توجيه الصفحة](https://developer.chrome.com/docs/lighthouse/performance/redirects/)"
1180
1216
  },
@@ -1713,7 +1749,7 @@
1713
1749
  "message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" لتخزين الصفحات التي تستخدم Serial API."
1714
1750
  },
1715
1751
  "core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
1716
- "message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" لتخزين الصفحات التي تستخدم WebAuthentication API."
1752
+ "message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" في الصفحات التي تستخدم واجهة برمجة التطبيقات WebAuthentication API."
1717
1753
  },
1718
1754
  "core/lib/bf-cache-strings.js | contentWebBluetooth": {
1719
1755
  "message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" لتخزين الصفحات التي تستخدم WebBluetooth API."
@@ -2432,6 +2468,9 @@
2432
2468
  "core/lib/lh-error.js | requestContentTimeout": {
2433
2469
  "message": "تجاوز جلب محتوى المورد الوقت المخصّص"
2434
2470
  },
2471
+ "core/lib/lh-error.js | targetCrashed": {
2472
+ "message": "تعطّلت علامة تبويب المتصفّح بشكل غير متوقّع."
2473
+ },
2435
2474
  "core/lib/lh-error.js | urlInvalid": {
2436
2475
  "message": "يبدو أن عنوان URL الذي قدمته غير صحيح."
2437
2476
  },
@@ -18,13 +18,13 @@
18
18
  "message": "Атрибутите `[aria-*]` съответстват на ролите си"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "Ролите на ARIA, задавани чрез атрибута `role`, информират помощните технологии каква функция изпълнява всеки елемент в уеб страницата. Ако стойностите на `role` са изписани неправилно, не са сред съществуващите за `role` или са абстрактни роли, предназначението на елемента няма да се съобщава на потребителите на помощни технологии. [Научете повече за ролите на ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
21
+ "message": "На много от HTML елементите могат да бъдат присвоени само определени роли на ARIA. Използването на роли на ARIA на места, където не са разрешени, може да възпрепятства достъпността на уеб страницата. [Научете повече за ролите на ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
22
22
  },
23
23
  "core/audits/accessibility/aria-allowed-role.js | failureTitle": {
24
- "message": "Стойностите, зададени за `role=\"\"`, не са валидни роли на ARIA."
24
+ "message": "Използва роли на ARIA за несъвместими елементи"
25
25
  },
26
26
  "core/audits/accessibility/aria-allowed-role.js | title": {
27
- "message": "Стойностите, зададени за `role=\"\"`, са валидни роли на ARIA."
27
+ "message": "Използва роли на ARIA само за съвместими елементи"
28
28
  },
29
29
  "core/audits/accessibility/aria-command-name.js | description": {
30
30
  "message": "Когато даден елемент няма достъпно име, екранните четци ще произнасят за него общо име и той ще бъде неизползваем за потребителите, разчитащи на тази технология. [Научете как да направите по-достъпни елементите, свързани с команди](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
@@ -35,6 +35,24 @@
35
35
  "core/audits/accessibility/aria-command-name.js | title": {
36
36
  "message": "Елементите `button`, `link` и `menuitem` имат достъпни имена"
37
37
  },
38
+ "core/audits/accessibility/aria-conditional-attr.js | description": {
39
+ "message": "Някои атрибути на ARIA са разрешени за елемент само при определени условия. [Научете повече за условните атрибути на ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
40
+ },
41
+ "core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
42
+ "message": "Атрибутите на ARIA не се използват, както е посочено за ролята на елемента"
43
+ },
44
+ "core/audits/accessibility/aria-conditional-attr.js | title": {
45
+ "message": "Атрибутите на ARIA се използват, както е посочено за ролята на елемента"
46
+ },
47
+ "core/audits/accessibility/aria-deprecated-role.js | description": {
48
+ "message": "Оттеглените роли на ARIA може да не бъдат обработени правилно от помощната технология. [Научете повече за оттеглените роли на ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
49
+ },
50
+ "core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
51
+ "message": "Използвани са оттеглени роли на ARIA"
52
+ },
53
+ "core/audits/accessibility/aria-deprecated-role.js | title": {
54
+ "message": "Не са използвани оттеглени роли на ARIA"
55
+ },
38
56
  "core/audits/accessibility/aria-dialog-name.js | description": {
39
57
  "message": "Елементите ARIA в диалоговите прозорци без достъпни имена може да попречат на потребителите на екранни четци да разберат целта на тези елементи. [Научете как да направите по-достъпни елементите ARIA в диалоговите прозорци](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)."
40
58
  },
@@ -89,6 +107,15 @@
89
107
  "core/audits/accessibility/aria-progressbar-name.js | title": {
90
108
  "message": "ARIA елементите `progressbar` имат достъпни имена"
91
109
  },
110
+ "core/audits/accessibility/aria-prohibited-attr.js | description": {
111
+ "message": "Използването на атрибути на ARIA в роли, където те са забранени, може да означава, че на потребителите на помощни технологии не се съобщава важна информация. [Научете повече за забранените роли на ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
112
+ },
113
+ "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
+ "message": "Елементите използват забранени атрибути на ARIA"
115
+ },
116
+ "core/audits/accessibility/aria-prohibited-attr.js | title": {
117
+ "message": "Елементите използват само разрешени атрибути на ARIA"
118
+ },
92
119
  "core/audits/accessibility/aria-required-attr.js | description": {
93
120
  "message": "Някои роли на ARIA имат задължителни атрибути, от които екранните четци получават описание на състоянието на съответния елемент. [Научете повече за ролите и задължителните атрибути](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)."
94
121
  },
@@ -1175,6 +1202,15 @@
1175
1202
  "core/audits/prioritize-lcp-image.js | title": {
1176
1203
  "message": "Предварително зареждане на изображението, рендерирано при изобразяване на най-голямото съдържание (LPC)"
1177
1204
  },
1205
+ "core/audits/redirects-http.js | description": {
1206
+ "message": "Уверете се, че пренасочвате целия HTTP трафик към HTTPS, за да може функциите за сигурност в мрежата да са активирани за всичките ви потребители. [Научете повече](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
1207
+ },
1208
+ "core/audits/redirects-http.js | failureTitle": {
1209
+ "message": "HTTP трафикът не се пренасочва към HTTPS"
1210
+ },
1211
+ "core/audits/redirects-http.js | title": {
1212
+ "message": "HTTP трафикът се пренасочва към HTTPS"
1213
+ },
1178
1214
  "core/audits/redirects.js | description": {
1179
1215
  "message": "Пренасочванията водят до допълнително забавяне на зареждането на страницата. [Научете как да ги избягвате](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
1180
1216
  },
@@ -1713,7 +1749,7 @@
1713
1749
  "message": "Страниците, които използват Serial API, не отговарят на условията за кеша за назад/напред."
1714
1750
  },
1715
1751
  "core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
1716
- "message": "Страниците, които използват WebAuthetication API, не отговарят на условията за кеша за назад/напред."
1752
+ "message": "Страниците, които използват WebAuthentication API, не отговарят на условията за кеша за назад/напред."
1717
1753
  },
1718
1754
  "core/lib/bf-cache-strings.js | contentWebBluetooth": {
1719
1755
  "message": "Страниците, които използват WebBluetooth API, не отговарят на условията за кеша за назад/напред."
@@ -2432,6 +2468,9 @@
2432
2468
  "core/lib/lh-error.js | requestContentTimeout": {
2433
2469
  "message": "Предвиденото време за извличане на съдържанието на ресурсите бе превишено"
2434
2470
  },
2471
+ "core/lib/lh-error.js | targetCrashed": {
2472
+ "message": "Разделът на браузъра претърпя неочакван срив."
2473
+ },
2435
2474
  "core/lib/lh-error.js | urlInvalid": {
2436
2475
  "message": "Предоставеният от вас URL адрес изглежда невалиден."
2437
2476
  },
@@ -18,13 +18,13 @@
18
18
  "message": "Els atributs `[aria-*]` coincideixen amb les seves funcions"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "Les funcions d'ARIA (`role`s) permeten que les tecnologies assistencials coneguin la funció de cada element a la pàgina web. Si els valors de `role` estan mal escrits, són valors de `role` d'ARIA inexistents o funcions abstractes, la finalitat de l'element no es comunicarà als usuaris de tecnologies assistencials. [Obtén més informació sobre les funcions d'ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
21
+ "message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
22
22
  },
23
23
  "core/audits/accessibility/aria-allowed-role.js | failureTitle": {
24
- "message": "Els valors assignats a `role=\"\"` no són funcions d'ARIA vàlides."
24
+ "message": "Uses ARIA roles on incompatible elements"
25
25
  },
26
26
  "core/audits/accessibility/aria-allowed-role.js | title": {
27
- "message": "Els valors assignats a `role=\"\"` són funcions d'ARIA vàlides."
27
+ "message": "Uses ARIA roles only on compatible elements"
28
28
  },
29
29
  "core/audits/accessibility/aria-command-name.js | description": {
30
30
  "message": "Si un element no té un nom accessible, els lectors de pantalla l'enuncien amb un nom genèric, de manera que queda inservible per als usuaris que depenen d'aquesta tecnologia. [Obtén informació sobre com pots fer que els elements de les ordres siguin més accessibles](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
@@ -35,6 +35,24 @@
35
35
  "core/audits/accessibility/aria-command-name.js | title": {
36
36
  "message": "Els elements `button`, `link` i `menuitem` tenen noms accessibles"
37
37
  },
38
+ "core/audits/accessibility/aria-conditional-attr.js | description": {
39
+ "message": "Alguns atributs ARIA només es permeten en un element en determinades condicions. [Obtén més informació sobre els atributs ARIA condicionals](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
40
+ },
41
+ "core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
42
+ "message": "Els atributs ARIA no s'utilitzen tal com s'especifica per a la funció de l'element"
43
+ },
44
+ "core/audits/accessibility/aria-conditional-attr.js | title": {
45
+ "message": "Els atributs ARIA s'utilitzen tal com s'especifica per a la funció de l'element"
46
+ },
47
+ "core/audits/accessibility/aria-deprecated-role.js | description": {
48
+ "message": "És possible que la tecnologia assistencial no pugui processar correctament funcions d'ARIA obsoletes. [Obtén més informació sobre les funcions d'ARIA obsoletes](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
49
+ },
50
+ "core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
51
+ "message": "S'han utilitzat funcions d'ARIA obsoletes"
52
+ },
53
+ "core/audits/accessibility/aria-deprecated-role.js | title": {
54
+ "message": "No s'han utilitzat funcions d'ARIA obsoletes"
55
+ },
38
56
  "core/audits/accessibility/aria-dialog-name.js | description": {
39
57
  "message": "Els elements del quadre de diàleg d'ARIA que no tenen noms accessibles poden impedir que els usuaris de lectors de pantalla puguin discernir la finalitat d'aquests elements. [Obtén informació sobre com pots fer que els elements del quadre de diàleg d'ARIA siguin més accessibles](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)."
40
58
  },
@@ -89,6 +107,15 @@
89
107
  "core/audits/accessibility/aria-progressbar-name.js | title": {
90
108
  "message": "Els elements `progressbar` d'ARIA tenen noms accessibles"
91
109
  },
110
+ "core/audits/accessibility/aria-prohibited-attr.js | description": {
111
+ "message": "L'ús d'atributs ARIA en funcions en què estan prohibits pot fer que no es comuniqui informació important als usuaris de tecnologies assistencials. [Obtén més informació sobre les funcions d'ARIA prohibides](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
112
+ },
113
+ "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
+ "message": "Els elements utilitzen atributs ARIA prohibits"
115
+ },
116
+ "core/audits/accessibility/aria-prohibited-attr.js | title": {
117
+ "message": "Els elements només utilitzen atributs ARIA permesos"
118
+ },
92
119
  "core/audits/accessibility/aria-required-attr.js | description": {
93
120
  "message": "Algunes funcions d'ARIA tenen atributs obligatoris que descriuen l'estat de l'element als lectors de pantalla. [Obtén més informació sobre les funcions i els atributs obligatoris](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)."
94
121
  },
@@ -1175,6 +1202,15 @@
1175
1202
  "core/audits/prioritize-lcp-image.js | title": {
1176
1203
  "message": "Precarrega la imatge de renderització de l'element més gran amb contingut"
1177
1204
  },
1205
+ "core/audits/redirects-http.js | description": {
1206
+ "message": "Assegura't de redirigir tot el trànsit HTTP cap a HTTPS per activar funcions web segures per a tots els usuaris. [Obtén més informació](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
1207
+ },
1208
+ "core/audits/redirects-http.js | failureTitle": {
1209
+ "message": "No redirigeix el trànsit HTTP cap a HTTPS"
1210
+ },
1211
+ "core/audits/redirects-http.js | title": {
1212
+ "message": "Redirigeix el trànsit HTTP cap a HTTPS"
1213
+ },
1178
1214
  "core/audits/redirects.js | description": {
1179
1215
  "message": "La mètrica Redireccions introdueix retards addicionals abans de poder carregar la pàgina. [Obtén informació sobre com pots evitar les redireccions de pàgina](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
1180
1216
  },
@@ -1833,7 +1869,7 @@
1833
1869
  "message": "La navegació s'ha cancel·lat abans que la pàgina es pogués restaurar de la memòria cau endavant/enrere."
1834
1870
  },
1835
1871
  "core/lib/bf-cache-strings.js | networkExceedsBufferLimit": {
1836
- "message": "La pàgina s'ha tret de la memòria cau perquè una connexió a la xarxa activa ha rebut massa dades. Chrome limita la quantitat de dades que pot rebre una pàgina mentre està desada a la memòria cau."
1872
+ "message": "La pàgina s'ha tret de la memòria cau perquè una connexió de xarxa activa ha rebut massa dades. Chrome limita la quantitat de dades que pot rebre una pàgina mentre està desada a la memòria cau."
1837
1873
  },
1838
1874
  "core/lib/bf-cache-strings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
1839
1875
  "message": "Actualment, les pàgines que tenen un fetch() o un XHR en trànsit no són aptes per a la memòria cau endavant/enrere."
@@ -1842,7 +1878,7 @@
1842
1878
  "message": "La pàgina s'ha tret de la memòria cau endavant/enrere perquè una sol·licitud a la xarxa activa incloïa una redirecció."
1843
1879
  },
1844
1880
  "core/lib/bf-cache-strings.js | networkRequestTimeout": {
1845
- "message": "La pàgina s'ha tret de la memòria cau perquè una connexió a la xarxa ha estat oberta durant massa temps. Chrome limita la quantitat de temps durant el qual una pàgina pot rebre dades mentre està desada a la memòria cau."
1881
+ "message": "La pàgina s'ha tret de la memòria cau perquè una connexió de xarxa ha estat oberta durant massa temps. Chrome limita la quantitat de temps durant el qual una pàgina pot rebre dades mentre està desada a la memòria cau."
1846
1882
  },
1847
1883
  "core/lib/bf-cache-strings.js | noResponseHead": {
1848
1884
  "message": "Les pàgines que no tenen una capçalera de resposta vàlida no poden accedir a la memòria cau endavant/enrere."
@@ -2432,6 +2468,9 @@
2432
2468
  "core/lib/lh-error.js | requestContentTimeout": {
2433
2469
  "message": "S'ha superat el temps assignat per obtenir el contingut dels recursos"
2434
2470
  },
2471
+ "core/lib/lh-error.js | targetCrashed": {
2472
+ "message": "La pestanya del navegador ha fallat de manera inesperada."
2473
+ },
2435
2474
  "core/lib/lh-error.js | urlInvalid": {
2436
2475
  "message": "Sembla que l'URL que has proporcionat no és vàlid."
2437
2476
  },
@@ -18,13 +18,13 @@
18
18
  "message": "Atributy `[aria-*]` odpovídají příslušným rolím"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "Atributy `role` odpovídající specifikaci ARIA poskytují asistenčním technologiím informace o roli jednotlivých prvků na webové stránce. Pokud jsou v hodnotách `role` překlepy, neodpovídají hodnotám `role` podle specifikace ARIA nebo se jedná o abstraktní role, uživatelé asistenčních technologií se nedozvědí účel prvku. [Další informace o rolích ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)"
21
+ "message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
22
22
  },
23
23
  "core/audits/accessibility/aria-allowed-role.js | failureTitle": {
24
- "message": "Hodnoty atributů `role=\"\"` nejsou platné role ARIA."
24
+ "message": "Uses ARIA roles on incompatible elements"
25
25
  },
26
26
  "core/audits/accessibility/aria-allowed-role.js | title": {
27
- "message": "Hodnoty atributů `role=\"\"` jsou platné role ARIA."
27
+ "message": "Uses ARIA roles only on compatible elements"
28
28
  },
29
29
  "core/audits/accessibility/aria-command-name.js | description": {
30
30
  "message": "Když prvek nemá přístupný název, čtečky obrazovek oznamují obecný název a pro jejich uživatele je pak tento prvek v podstatě nepoužitelný. [Jak zajistit, aby příkazové prvky byly přístupnější](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
@@ -35,6 +35,24 @@
35
35
  "core/audits/accessibility/aria-command-name.js | title": {
36
36
  "message": "Prvky `button`, `link` a `menuitem` mají přístupné názvy"
37
37
  },
38
+ "core/audits/accessibility/aria-conditional-attr.js | description": {
39
+ "message": "Některé atributy ARIA jsou u prvků povoleny pouze za určitých podmínek. [Další informace o podmíněných atributech ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
40
+ },
41
+ "core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
42
+ "message": "Atributy ARIA nejsou použity tak, jak je uvedeno pro roli prvku"
43
+ },
44
+ "core/audits/accessibility/aria-conditional-attr.js | title": {
45
+ "message": "Atributy ARIA jsou použity tak, jak je uvedeno pro roli prvku"
46
+ },
47
+ "core/audits/accessibility/aria-deprecated-role.js | description": {
48
+ "message": "Zastaralé role ARIA nemusí asistenční technologie zpracovat správně. [Další informace o zastaralých rolích ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
49
+ },
50
+ "core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
51
+ "message": "Byly použity zastaralé role ARIA"
52
+ },
53
+ "core/audits/accessibility/aria-deprecated-role.js | title": {
54
+ "message": "Zastaralé role ARIA nebyly použity"
55
+ },
38
56
  "core/audits/accessibility/aria-dialog-name.js | description": {
39
57
  "message": "Dialogové prvky ARIA bez přístupových názvů mohou uživatelům čteček obrazovky znemožňovat rozeznat účel těchto prvků. [Přečtěte si, jak dialogové prvky ARIA zpřístupnit](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)."
40
58
  },
@@ -89,6 +107,15 @@
89
107
  "core/audits/accessibility/aria-progressbar-name.js | title": {
90
108
  "message": "Prvky ARIA `progressbar` mají přístupné názvy"
91
109
  },
110
+ "core/audits/accessibility/aria-prohibited-attr.js | description": {
111
+ "message": "Pokud jsou atributy ARIA použity v rolích, ve kterých jsou zakázány, nemusejí se uživatelé asistenčních technologií dozvědět některé důležité informace. [Další informace o zakázaných rolích ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
112
+ },
113
+ "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
+ "message": "Prvky používají zakázané atributy ARIA"
115
+ },
116
+ "core/audits/accessibility/aria-prohibited-attr.js | title": {
117
+ "message": "Prvky používají pouze povolené atributy ARIA"
118
+ },
92
119
  "core/audits/accessibility/aria-required-attr.js | description": {
93
120
  "message": "Některé role ARIA mají povinné atributy, které čtečkám obrazovek popisují stav prvku. [Další informace o rolích a povinných atributech](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)"
94
121
  },
@@ -1175,6 +1202,15 @@
1175
1202
  "core/audits/prioritize-lcp-image.js | title": {
1176
1203
  "message": "Předběžné načtení obrázku s vykreslením největšího obsahu"
1177
1204
  },
1205
+ "core/audits/redirects-http.js | description": {
1206
+ "message": "Veškerý provoz HTTP přesměrujte přes HTTPS, aby všichni vaši uživatelé měli k dispozici funkce zabezpečeného webu. [Další informace](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)"
1207
+ },
1208
+ "core/audits/redirects-http.js | failureTitle": {
1209
+ "message": "Nepřesměrovává provoz přes protokol HTTP na HTTPS"
1210
+ },
1211
+ "core/audits/redirects-http.js | title": {
1212
+ "message": "Přesměrovává provoz přes protokol HTTP na HTTPS"
1213
+ },
1178
1214
  "core/audits/redirects.js | description": {
1179
1215
  "message": "Přesměrování způsobují další prodlevy před načtením stránky. [Jak se vyhnout přesměrování stránek](https://developer.chrome.com/docs/lighthouse/performance/redirects/)"
1180
1216
  },
@@ -1713,7 +1749,7 @@
1713
1749
  "message": "Stránky, které používají rozhraní Serial API, nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
1714
1750
  },
1715
1751
  "core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
1716
- "message": "Stránky, které používají rozhraní WebAuthetication API, nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
1752
+ "message": "Stránky, které používají rozhraní WebAuthentication API, nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
1717
1753
  },
1718
1754
  "core/lib/bf-cache-strings.js | contentWebBluetooth": {
1719
1755
  "message": "Stránky, které používají rozhraní WebBluetooth API, nemohou využívat mezipaměť pro přechod zpět nebo vpřed."
@@ -2432,6 +2468,9 @@
2432
2468
  "core/lib/lh-error.js | requestContentTimeout": {
2433
2469
  "message": "Při načítání obsahu zdroje byla překročena přidělená doba"
2434
2470
  },
2471
+ "core/lib/lh-error.js | targetCrashed": {
2472
+ "message": "Karta prohlížeče neočekávaně selhala."
2473
+ },
2435
2474
  "core/lib/lh-error.js | urlInvalid": {
2436
2475
  "message": "Adresa URL, kterou jste poskytli, se zdá být neplatná."
2437
2476
  },
@@ -18,13 +18,13 @@
18
18
  "message": "`[aria-*]`-attributterne stemmer overens med deres roller"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "ARIA `role`r gør det muligt for hjælpeteknologier at forstå hvert elements rolle på websiden. Hvis `role`værdierne er stavet forkert, ikke er eksisterende ARIA-`role`værdier eller abstrakte roller, kommunikeres elementets formål ikke til brugere med hjælpeteknologier. [ flere oplysninger om ARIA-roller](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
21
+ "message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
22
22
  },
23
23
  "core/audits/accessibility/aria-allowed-role.js | failureTitle": {
24
- "message": "De værdier, der er tildelt `role=\"\"`, er ikke gyldige ARIA-roller."
24
+ "message": "Uses ARIA roles on incompatible elements"
25
25
  },
26
26
  "core/audits/accessibility/aria-allowed-role.js | title": {
27
- "message": "De værdier, der er tildelt `role=\"\"`, er gyldige ARIA-roller."
27
+ "message": "Uses ARIA roles only on compatible elements"
28
28
  },
29
29
  "core/audits/accessibility/aria-command-name.js | description": {
30
30
  "message": "Hvis et element ikke har et tilgængeligt navn, giver skærmlæsere feltet et generisk navn, så det ikke kan anvendes af brugere, der får læst indhold op af skærmlæsere. [Få flere oplysninger om, hvordan du gør kommandoelementer mere tilgængelige](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)."
@@ -35,6 +35,24 @@
35
35
  "core/audits/accessibility/aria-command-name.js | title": {
36
36
  "message": "Elementerne `button`, `link` og `menuitem` har tilgængelige navne"
37
37
  },
38
+ "core/audits/accessibility/aria-conditional-attr.js | description": {
39
+ "message": "Visse ARIA-attributter tillades kun for et element under visse betingelser. [Få flere oplysninger om betingede ARIA-attributter](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
40
+ },
41
+ "core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
42
+ "message": "ARIA-attributter anvendes ikke som angivet for elementets rolle"
43
+ },
44
+ "core/audits/accessibility/aria-conditional-attr.js | title": {
45
+ "message": "ARIA-attributter anvendes som angivet for elementets rolle"
46
+ },
47
+ "core/audits/accessibility/aria-deprecated-role.js | description": {
48
+ "message": "Udfasede ARIA-roller kan muligvis ikke behandles korrekt af hjælpeteknologi. [Få flere oplysninger om udfasede ARIA-roller](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
49
+ },
50
+ "core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
51
+ "message": "Udfasede ARIA-roller blev anvendt"
52
+ },
53
+ "core/audits/accessibility/aria-deprecated-role.js | title": {
54
+ "message": "Udfasede ARIA-roller blev ikke anvendt"
55
+ },
38
56
  "core/audits/accessibility/aria-dialog-name.js | description": {
39
57
  "message": "ARIA-dialogbokselementer uden tilgængelighedsnavne kan forhindre brugere med skærmlæser i at forstå formålet med disse elementer. [Se, hvordan du gør ARIA-dialogboksselementer mere brugervenlige](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)."
40
58
  },
@@ -89,6 +107,15 @@
89
107
  "core/audits/accessibility/aria-progressbar-name.js | title": {
90
108
  "message": "\"ARIA `progressbar`\"-elementerne har tilgængelige navne"
91
109
  },
110
+ "core/audits/accessibility/aria-prohibited-attr.js | description": {
111
+ "message": "Anvendelse af ARIA-attributter i roller, hvor de er forbudt, kan medføre, at vigtige oplysninger ikke kommunikeres til brugere af hjælpeteknologier. [Få flere oplysninger om forbudte ARIA-roller](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
112
+ },
113
+ "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
+ "message": "Elementer anvender forbudte ARIA-attributter"
115
+ },
116
+ "core/audits/accessibility/aria-prohibited-attr.js | title": {
117
+ "message": "Elementer anvender kun tilladte ARIA-attributter"
118
+ },
92
119
  "core/audits/accessibility/aria-required-attr.js | description": {
93
120
  "message": "Nogle ARIA-roller har opnået attributter, der beskriver elementets tilstand for skærmlæsere. [Få flere oplysninger om roller og obligatoriske attributter](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)."
94
121
  },
@@ -1175,6 +1202,15 @@
1175
1202
  "core/audits/prioritize-lcp-image.js | title": {
1176
1203
  "message": "Forudindlæs billedet Largest Contentful Paint"
1177
1204
  },
1205
+ "core/audits/redirects-http.js | description": {
1206
+ "message": "Sørg for at omdirigere al HTTP-trafik til HTTPS, så alle dine brugere får sikre webfunktioner. [Få flere oplysninger](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
1207
+ },
1208
+ "core/audits/redirects-http.js | failureTitle": {
1209
+ "message": "Omdirigerer ikke HTTP-trafik til HTTPS"
1210
+ },
1211
+ "core/audits/redirects-http.js | title": {
1212
+ "message": "Omdirigerer HTTP-trafik til HTTPS"
1213
+ },
1178
1214
  "core/audits/redirects.js | description": {
1179
1215
  "message": "Omdirigeringer medfører yderligere forsinkelser, inden siden kan indlæses. [Få oplysninger om, hvordan du undgår sideomdirigeringer](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
1180
1216
  },
@@ -1713,7 +1749,7 @@
1713
1749
  "message": "Sider, der anvender Serial API, er ikke kvalificeret til back/forward-cachen."
1714
1750
  },
1715
1751
  "core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
1716
- "message": "Sider, der anvender WebAuthentication API, er ikke kvalificeret til back/forward-cachen."
1752
+ "message": "Sider, der anvender WebAuthentication API, er ikke kvalificeret til back/forward-cachen i øjeblikket."
1717
1753
  },
1718
1754
  "core/lib/bf-cache-strings.js | contentWebBluetooth": {
1719
1755
  "message": "Sider, der anvender WebBluetooth API, er ikke kvalificeret til back/forward-cachen."
@@ -2432,6 +2468,9 @@
2432
2468
  "core/lib/lh-error.js | requestContentTimeout": {
2433
2469
  "message": "Hentning af ressourceindhold har taget længere tid end tilladt"
2434
2470
  },
2471
+ "core/lib/lh-error.js | targetCrashed": {
2472
+ "message": "Browserfanen er uventet gået ned."
2473
+ },
2435
2474
  "core/lib/lh-error.js | urlInvalid": {
2436
2475
  "message": "Den angivne webadresse lader til at være ugyldig."
2437
2476
  },
@@ -18,13 +18,13 @@
18
18
  "message": "`[aria-*]`-Attribute entsprechen ihren Rollen"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "Durch ARIA-Rollen („`role`s“) wird die Rolle einzelner Elemente auf einer Webseite an Hilfstechnologien weitergegeben. Wenn die „`role`“-Werte falsch geschrieben sind, keine vorhandenen ARIA-„`role`“-Werte sind oder abstrakte Rollen sind, wird der Zweck des Elements nicht an Nutzer von Hilfstechnologien weitergegeben. [Weitere Informationen zu ARIA-Rollen](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)"
21
+ "message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
22
22
  },
23
23
  "core/audits/accessibility/aria-allowed-role.js | failureTitle": {
24
- "message": "Werte, die „`role=\"\"`“ zugewiesen sind, sind keine gültigen ARIA-Rollen."
24
+ "message": "Uses ARIA roles on incompatible elements"
25
25
  },
26
26
  "core/audits/accessibility/aria-allowed-role.js | title": {
27
- "message": "Werte, die „`role=\"\"`“ zugewiesen sind, sind gültige ARIA-Rollen."
27
+ "message": "Uses ARIA roles only on compatible elements"
28
28
  },
29
29
  "core/audits/accessibility/aria-command-name.js | description": {
30
30
  "message": "Wenn ein Element keinen barrierefreien Namen hat, wird es von Screenreadern mit einer allgemeinen Bezeichnung angesagt. Dadurch ist es für Nutzer, die auf Screenreader angewiesen sind, unbrauchbar. [Informationen zum barrierefreieren Gestalten von Befehlselementen.](https://dequeuniversity.com/rules/axe/4.9/aria-command-name)"
@@ -35,6 +35,24 @@
35
35
  "core/audits/accessibility/aria-command-name.js | title": {
36
36
  "message": "`button`-, `link`- und `menuitem`-Elemente haben zugängliche Namen"
37
37
  },
38
+ "core/audits/accessibility/aria-conditional-attr.js | description": {
39
+ "message": "Einige ARIA-Attribute sind nur unter bestimmten Umständen für ein Element zulässig. [Weitere Informationen zu bedingten ARIA-Attributen](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
40
+ },
41
+ "core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
42
+ "message": "ARIA-Attribute werden nicht wie angegeben für die Rolle des Elements verwendet"
43
+ },
44
+ "core/audits/accessibility/aria-conditional-attr.js | title": {
45
+ "message": "ARIA-Attribute werden wie angegeben für die Rolle des Elements verwendet"
46
+ },
47
+ "core/audits/accessibility/aria-deprecated-role.js | description": {
48
+ "message": "Verworfene ARIA-Rollen werden möglicherweise nicht richtig von Hilfstechnologien verarbeitet. [Weitere Informationen zu verworfenen ARIA-Rollen](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
49
+ },
50
+ "core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
51
+ "message": "Verworfene ARIA-Rollen wurden verwendet"
52
+ },
53
+ "core/audits/accessibility/aria-deprecated-role.js | title": {
54
+ "message": "Es wurden keine verworfenen ARIA-Rollen verwendet"
55
+ },
38
56
  "core/audits/accessibility/aria-dialog-name.js | description": {
39
57
  "message": "ARIA-Dialogelemente ohne barrierefreie Namen können Nutzer von Screenreadern daran hindern, den Zweck dieser Elemente zu erkennen. [Informationen zum Verbessern der Barrierefreiheit von ARIA-Dialogelementen](https://dequeuniversity.com/rules/axe/4.9/aria-dialog-name)"
40
58
  },
@@ -89,6 +107,15 @@
89
107
  "core/audits/accessibility/aria-progressbar-name.js | title": {
90
108
  "message": "ARIA `progressbar`-Elemente haben zugängliche Namen"
91
109
  },
110
+ "core/audits/accessibility/aria-prohibited-attr.js | description": {
111
+ "message": "Die Verwendung von ARIA-Attributen in Rollen, für die sie nicht zulässig sind, kann bedeuten, dass wichtige Informationen nicht an Nutzer von Hilfstechnologien weitergegeben werden. [Weitere Informationen zu unzulässigen ARIA-Rollen](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)"
112
+ },
113
+ "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
+ "message": "Elemente verwenden unzulässige ARIA-Attribute"
115
+ },
116
+ "core/audits/accessibility/aria-prohibited-attr.js | title": {
117
+ "message": "Elemente verwenden nur zulässige ARIA-Attribute"
118
+ },
92
119
  "core/audits/accessibility/aria-required-attr.js | description": {
93
120
  "message": "Für einige ARIA-Rollen sind Attribute erforderlich, die Screenreadern den Zustand des Elements beschreiben. [Weitere Informationen zu Rollen und erforderlichen Attributen.](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)"
94
121
  },
@@ -1175,6 +1202,15 @@
1175
1202
  "core/audits/prioritize-lcp-image.js | title": {
1176
1203
  "message": "Largest Contentful Paint-Bild vorab laden"
1177
1204
  },
1205
+ "core/audits/redirects-http.js | description": {
1206
+ "message": "Achte darauf, den gesamten HTTP-Traffic zu HTTPS weiterzuleiten, damit sichere Webfunktionen für alle Nutzer aktiviert werden. [Weitere Informationen](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
1207
+ },
1208
+ "core/audits/redirects-http.js | failureTitle": {
1209
+ "message": "HTTP-Traffic wird nicht auf HTTPS weitergeleitet"
1210
+ },
1211
+ "core/audits/redirects-http.js | title": {
1212
+ "message": "HTTP-Traffic wird auf HTTPS weitergeleitet"
1213
+ },
1178
1214
  "core/audits/redirects.js | description": {
1179
1215
  "message": "Weiterleitungen führen zu zusätzlichen Verzögerungen, bevor die Seite geladen werden kann. [Informationen zum Vermeiden von Seitenweiterleitungen.](https://developer.chrome.com/docs/lighthouse/performance/redirects/)"
1180
1216
  },
@@ -1713,7 +1749,7 @@
1713
1749
  "message": "Seiten, auf denen die Serial API genutzt wird, können den Back-Forward-Cache nicht verwenden."
1714
1750
  },
1715
1751
  "core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
1716
- "message": "Seiten, auf denen die WebAuthentication API genutzt wird, können den Back-Forward-Cache nicht verwenden."
1752
+ "message": "Seiten, auf denen die WebAuthentication API genutzt wird, können den BackForwardCache nicht verwenden."
1717
1753
  },
1718
1754
  "core/lib/bf-cache-strings.js | contentWebBluetooth": {
1719
1755
  "message": "Seiten, auf denen die WebBluetooth API genutzt wird, können den Back-Forward-Cache nicht verwenden."
@@ -2432,6 +2468,9 @@
2432
2468
  "core/lib/lh-error.js | requestContentTimeout": {
2433
2469
  "message": "Die maximal zulässige Zeit für das Abrufen von Ressourceninhalten wurde überschritten"
2434
2470
  },
2471
+ "core/lib/lh-error.js | targetCrashed": {
2472
+ "message": "Browsertab ist unerwartet abgestürzt."
2473
+ },
2435
2474
  "core/lib/lh-error.js | urlInvalid": {
2436
2475
  "message": "Die von dir angegebene URL scheint ungültig zu sein."
2437
2476
  },