lighthouse 12.0.0 → 12.1.0-dev.20240619

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": "Attributen av typen `[aria-*]` stämmer med elementets roll"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "Med hjälp av ARIA-`role` kan hjälpmedelstekniken veta rollen för varje element på webbsidan. Om `role`-värdena är felstavade, inte befintliga ARIA-`role`-värden eller abstrakta roller kommer syftet med elementet inte att kommuniceras med användarna av hjälpmedelsteknik. [Läs mer 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": "Värden som tilldelats till `role=\"\"` är inte giltiga ARIA-roller."
24
+ "message": "Uses ARIA roles on incompatible elements"
25
25
  },
26
26
  "core/audits/accessibility/aria-allowed-role.js | title": {
27
- "message": "Värden som tilldelats till `role=\"\"` är giltiga 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": "Utan en maskinläsbar etikett läses element upp med en generell etikett av skärmläsarna. Det gör dem oanvändbara för personer som behöver använda en skärmläsare. [Läs mer om hur du gör kommandoelement mer tillgängliga](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": "Namnen för `button`-, `link`- och `menuitem`-elementen är igenkännliga"
37
37
  },
38
+ "core/audits/accessibility/aria-conditional-attr.js | description": {
39
+ "message": "Vissa ARIA-attribut tillåts endast i ett element under vissa förutsättningar. [Läs mer om villkorsstyrda ARIA-attribut](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
40
+ },
41
+ "core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
42
+ "message": "ARIA-attribut används inte enligt specifikationen för elementets roll"
43
+ },
44
+ "core/audits/accessibility/aria-conditional-attr.js | title": {
45
+ "message": "ARIA-attribut används enligt specifikationen för elementets roll"
46
+ },
47
+ "core/audits/accessibility/aria-deprecated-role.js | description": {
48
+ "message": "Utfasade ARIA-roller kanske inte behandlas korrekt av hjälpmedelsteknik. [Läs mer om utfasade ARIA-roller](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
49
+ },
50
+ "core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
51
+ "message": "Utfasade ARIA-roller har använts"
52
+ },
53
+ "core/audits/accessibility/aria-deprecated-role.js | title": {
54
+ "message": "Utfasade ARIA-roller användes inte"
55
+ },
38
56
  "core/audits/accessibility/aria-dialog-name.js | description": {
39
57
  "message": "ARIA-dialogelement utan maskinläsbara etiketter kan hindra skärmläsaranvändare från att bedöma syftet med dessa element. [Läs om hur du gör ARIA-dialogelement mer tillgängliga](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": "Namnen för `progressbar`-elementen för ARIA är igenkännliga"
91
109
  },
110
+ "core/audits/accessibility/aria-prohibited-attr.js | description": {
111
+ "message": "Om ARIA-attribut används i roller där de är förbjudna kan det innebära att viktig information inte förmedlas till användare av hjälpmedelsteknik. [Läs mer om förbjudna ARIA-roller](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
112
+ },
113
+ "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
+ "message": "Förbjudna ARIA-attribut används i elementen"
115
+ },
116
+ "core/audits/accessibility/aria-prohibited-attr.js | title": {
117
+ "message": "Endast tillåtna ARIA-attribut används i elementen"
118
+ },
92
119
  "core/audits/accessibility/aria-required-attr.js | description": {
93
120
  "message": "Vissa ARIA-roller har obligatoriska attribut som beskriver elementets tillstånd för skärmläsare. [Läs mer om roller och obligatoriska attribut](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": "Läs in bilden i förväg för största uppritningen av innehåll"
1177
1204
  },
1205
+ "core/audits/redirects-http.js | description": {
1206
+ "message": "Omdirigera all HTTP-trafik till HTTPS för att se till att webbfunktionerna är säkra för alla användare. [Läs mer](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
1207
+ },
1208
+ "core/audits/redirects-http.js | failureTitle": {
1209
+ "message": "Omdirigerar inte HTTP-trafik till HTTPS"
1210
+ },
1211
+ "core/audits/redirects-http.js | title": {
1212
+ "message": "Omdirigerar HTTP-trafik till HTTPS"
1213
+ },
1178
1214
  "core/audits/redirects.js | description": {
1179
1215
  "message": "Omdirigeringar medför en ytterligare fördröjning innan sidan kan läsas in. [Läs mer om hur du undviker omdirigeringar av sidor](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
1180
1216
  },
@@ -2432,6 +2468,9 @@
2432
2468
  "core/lib/lh-error.js | requestContentTimeout": {
2433
2469
  "message": "Den angivna tiden för att hämta resurser har överskridits"
2434
2470
  },
2471
+ "core/lib/lh-error.js | targetCrashed": {
2472
+ "message": "Webbläsarfliken har kraschat."
2473
+ },
2435
2474
  "core/lib/lh-error.js | urlInvalid": {
2436
2475
  "message": "Den angivna webbadressen verkar vara ogiltig."
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": "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 உரையாடல் உறுப்புகளின் பெயர்கள் தெளிவாக இல்லை என்றால் ஸ்கிரீன் ரீடர் பயனர்கள் அவற்றின் நோக்கத்தைப் புரிந்துகொள்வது கடினம். [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": "HTTPSக்கு HTTP ட்ராஃபிக்கைத் திசைதிருப்பும்"
1213
+ },
1178
1214
  "core/audits/redirects.js | description": {
1179
1215
  "message": "'திசைதிருப்புதல்கள்' பக்கம் ஏற்றப்படுவதற்கு முன்பு கூடுதல் தாமதங்களை ஏற்படுத்தும். [பக்கம் திசைதிரும்புவதைத் தவிர்ப்பது எப்படி என அறிக](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
1180
1216
  },
@@ -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` విలువల స్పెల్లింగ్ తప్పుగా ఉంటే, ఇప్పటికే ఉన్న ARIA `role` విలువలు లేదా ఆబ్‌స్ట్రాక్ట్ రోల్స్ విలువల స్పెల్లింగ్ తప్పుగా లేకపోయినా కూడా, సహాయక టెక్నాలజీలను ఉపయోగించే యూజర్‌లకు ఎలిమెంట్ ఉద్దేశ్యాన్ని గురించిన సమాచారం అందదు. [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 డైలాగ్ ఎలిమెంట్‌లు స్క్రీన్ రీడర్ యూజర్‌లను ఈ ఎలిమెంట్‌ల ప్రయోజనాన్ని గుర్తించకుండా నిరోధించవచ్చు. [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 అట్రిబ్యూట్‌లును ఉపయోగించడం వలన సహాయక టెక్నాలజీ యూజర్‌లకు అవసరమైన సమాచారం అందించబడలేదని అర్థం. [పరిమితం చేయబడిన అట్రిబ్యూట్‌ల గురించి మరింత తెలుసుకోండి](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
112
+ },
113
+ "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
+ "message": "ఎలిమెంట్‌లు పరిమితం చేయబడిన అట్రిబ్యూట్‌లను ఉపయోగిస్తాయి"
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": "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": "แอตทริบิวต์ `[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 ที่ไม่มีชื่อที่เข้าถึงได้อาจทำให้ผู้ใช้โปรแกรมอ่านหน้าจอแยกแยะจุดประสงค์ขององค์ประกอบเหล่านี้ไม่ได้ [ดูวิธีทำให้องค์ประกอบกล่องโต้ตอบ 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": "โหลดรูปภาพ Largest Contentful Paint ล่วงหน้า"
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 ไม่มีสิทธิ์ใช้ฟีเจอร์ Back-Forward Cache"
1714
1750
  },
1715
1751
  "core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
1716
- "message": "หน้าที่ใช้ WebAuthetication API ไม่มีสิทธิ์ใช้ฟีเจอร์ Back-Forward Cache"
1752
+ "message": "หน้าที่ใช้ WebAuthentication API ไม่มีสิทธิ์ใช้ฟีเจอร์ Back-Forward Cache"
1717
1753
  },
1718
1754
  "core/lib/bf-cache-strings.js | contentWebBluetooth": {
1719
1755
  "message": "หน้าที่ใช้ WebBluetooth API ไม่มีสิทธิ์ใช้ฟีเจอร์ Back-Forward Cache"
@@ -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
  },
@@ -2442,7 +2481,7 @@
2442
2481
  "message": "ประเภท MIME ของหน้าเว็บคือ XHTML: Lighthouse ไม่รองรับเอกสารประเภทนี้อย่างชัดเจน"
2443
2482
  },
2444
2483
  "core/user-flow.js | defaultFlowName": {
2445
- "message": "การไหลเวียนของผู้ใช้ ({url})"
2484
+ "message": "โฟลว์ผู้ใช้ ({url})"
2446
2485
  },
2447
2486
  "core/user-flow.js | defaultNavigationName": {
2448
2487
  "message": "รายงานการไปยังส่วนต่างๆ ({url})"
@@ -18,13 +18,13 @@
18
18
  "message": "`[aria-*]` özellikleri rolleriyle eşleşiyor"
19
19
  },
20
20
  "core/audits/accessibility/aria-allowed-role.js | description": {
21
- "message": "Yardımcı teknolojiler, ARIA `role` sayesinde web sayfasındaki her bir öğenin rolünü öğrenebilir. `role` değerleri yanlış yazılmışsa, mevcut ARIA `role` değerleri değilse veya soyut roller kullanılmışsa öğenin amacı, yardımcı teknolojilerin kullanıcılarına bildirilmez. [ARIA rolleri hakkında daha fazla bilgi edinin](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=\"\"` öğesine atanan değerler geçerli ARIA rolleri değil."
24
+ "message": "Uses ARIA roles on incompatible elements"
25
25
  },
26
26
  "core/audits/accessibility/aria-allowed-role.js | title": {
27
- "message": "`role=\"\"` öğesine atanan değerler geçerli ARIA rolleri."
27
+ "message": "Uses ARIA roles only on compatible elements"
28
28
  },
29
29
  "core/audits/accessibility/aria-command-name.js | description": {
30
30
  "message": "Bir öğenin erişilebilir özellikli adı olmadığında ekran okuyucular tarafından genel adla okunur ve öğe, ekran okuyuculardan yararlanan kullanıcılar için kullanılamaz hale gelir. [Komut öğelerini nasıl daha erişilebilir hale getireceğinizi öğrenin](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` ve `menuitem` öğelerinin erişilebilir özellikli adları var."
37
37
  },
38
+ "core/audits/accessibility/aria-conditional-attr.js | description": {
39
+ "message": "Bazı ARIA özelliklerine yalnızca bir öğede belirli koşullarda izin verilir. [Koşullu ARIA özellikleri hakkında daha fazla bilgi edinin](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
40
+ },
41
+ "core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
42
+ "message": "ARIA özellikleri, öğenin rolü için belirtilen şekilde kullanılmıyor"
43
+ },
44
+ "core/audits/accessibility/aria-conditional-attr.js | title": {
45
+ "message": "ARIA özellikleri, öğenin rolü için belirtilen şekilde kullanılıyor"
46
+ },
47
+ "core/audits/accessibility/aria-deprecated-role.js | description": {
48
+ "message": "Yardımcı teknolojiler, desteği sonlandırılmış ARIA rollerini doğru bir şekilde işlemeyebilir. [Desteği sonlandırılan ARIA rolleri hakkında daha fazla bilgi edinin](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
49
+ },
50
+ "core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
51
+ "message": "Desteği sonlandırılmış ARIA rolleri kullanıldı"
52
+ },
53
+ "core/audits/accessibility/aria-deprecated-role.js | title": {
54
+ "message": "Desteği sonlandırılmış ARIA rolleri kullanılmadı"
55
+ },
38
56
  "core/audits/accessibility/aria-dialog-name.js | description": {
39
57
  "message": "Erişilebilir özellikli adları olmayan ARIA iletişim öğeleri, ekran okuyucu kullanıcılarının bu öğelerin amacını ayırt etmesini engelleyebilir. [ARIA iletişim öğelerinin nasıl daha erişilebilir hale getirileceğini öğrenin](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` öğelerinin erişilebilir özellikli adları var"
91
109
  },
110
+ "core/audits/accessibility/aria-prohibited-attr.js | description": {
111
+ "message": "ARIA özelliklerinin, yasaklanan rollerde kullanılması yardımcı teknolojilerin kullanıcılarına önemli bilgilerin iletilmemesine neden olabilir. [Yasaklanmış ARIA rolleri hakkında daha fazla bilgi edinin](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
112
+ },
113
+ "core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
114
+ "message": "Öğeler, yasaklanmış ARIA özelliklerini kullanıyor"
115
+ },
116
+ "core/audits/accessibility/aria-prohibited-attr.js | title": {
117
+ "message": "Öğeler yalnızca izin verilen ARIA özelliklerini kullanıyor"
118
+ },
92
119
  "core/audits/accessibility/aria-required-attr.js | description": {
93
120
  "message": "Bazı ARIA rolleri, öğenin durumunu ekran okuyuculara açıklayan gerekli özelliklere sahiptir. [Roller ve gerekli özellikler hakkında daha fazla bilgi edinin](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 resmi önceden yükleme"
1177
1204
  },
1205
+ "core/audits/redirects-http.js | description": {
1206
+ "message": "Kullanıcılarınıza güvenli web özellikleri sağlayabilmek için tüm HTTP trafiğini HTTPS'ye yönlendirdiğinizden emin olun. [Daha fazla bilgi](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
1207
+ },
1208
+ "core/audits/redirects-http.js | failureTitle": {
1209
+ "message": "HTTP trafiğini HTTPS'ye yönlendirmiyor"
1210
+ },
1211
+ "core/audits/redirects-http.js | title": {
1212
+ "message": "HTTP trafiğini HTTPS'ye yönlendiriyor"
1213
+ },
1178
1214
  "core/audits/redirects.js | description": {
1179
1215
  "message": "Yönlendirmeler, sayfanın yüklenmesinden önce ek gecikmelere neden olur. [Sayfa yönlendirmelerden nasıl kaçınacağınızı öğrenin](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
1180
1216
  },
@@ -1713,7 +1749,7 @@
1713
1749
  "message": "Serial API kullanan sayfalar geri-ileri önbelleğe alınmaya uygun değildir."
1714
1750
  },
1715
1751
  "core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
1716
- "message": "WebAuthetication API kullanan sayfalar geri-ileri önbelleğe alınmaya uygun değildir."
1752
+ "message": "WebAuthentication API kullanan sayfalar geri-ileri önbelleğe alınmaya uygun değildir."
1717
1753
  },
1718
1754
  "core/lib/bf-cache-strings.js | contentWebBluetooth": {
1719
1755
  "message": "WebBluetooth API kullanan sayfalar geri-ileri önbelleğe alınmaya uygun değildir."
@@ -2432,6 +2468,9 @@
2432
2468
  "core/lib/lh-error.js | requestContentTimeout": {
2433
2469
  "message": "Kaynak içeriğinin getirilmesi için ayrılan süre aşıldı"
2434
2470
  },
2471
+ "core/lib/lh-error.js | targetCrashed": {
2472
+ "message": "Tarayıcı sekmesi beklenmedik şekilde çöktü."
2473
+ },
2435
2474
  "core/lib/lh-error.js | urlInvalid": {
2436
2475
  "message": "Sağladığınız URL'nin geçersiz olduğu anlaşılıyor."
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` написано з орфографічними помилками або вони є неіснуючими значеннями ARIA `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": "Попередньо завантажте зображення для візуалізації великого контенту"
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
  },