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.
- package/cli/run.js +5 -38
- package/cli/test/smokehouse/lighthouse-runners/bundle.js +1 -1
- package/cli/test/smokehouse/smokehouse.js +11 -1
- package/core/audits/accessibility/aria-allowed-role.js +7 -9
- package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +2 -2
- package/core/audits/byte-efficiency/byte-efficiency-audit.js +3 -3
- package/core/audits/byte-efficiency/offscreen-images.js +1 -1
- package/core/audits/byte-efficiency/render-blocking-resources.d.ts +3 -3
- package/core/audits/byte-efficiency/render-blocking-resources.js +10 -10
- package/core/audits/dobetterweb/uses-http2.d.ts +2 -2
- package/core/audits/dobetterweb/uses-http2.js +5 -5
- package/core/audits/long-tasks.d.ts +7 -6
- package/core/audits/long-tasks.js +5 -4
- package/core/audits/metrics/first-meaningful-paint.d.ts +1 -17
- package/core/audits/metrics/first-meaningful-paint.js +5 -47
- package/core/audits/metrics/interactive.d.ts +1 -1
- package/core/audits/metrics/interactive.js +1 -1
- package/core/audits/predictive-perf.js +0 -6
- package/core/audits/prioritize-lcp-image.d.ts +1 -1
- package/core/audits/prioritize-lcp-image.js +2 -2
- package/core/audits/redirects.js +2 -3
- package/core/audits/third-party-facades.js +1 -1
- package/core/audits/third-party-summary.js +1 -1
- package/core/audits/uses-rel-preconnect.js +2 -2
- package/core/audits/uses-rel-preload.js +9 -9
- package/core/computed/critical-request-chains.js +3 -3
- package/core/computed/document-urls.js +3 -2
- package/core/computed/load-simulator.d.ts +4 -4
- package/core/computed/load-simulator.js +3 -54
- package/core/computed/main-resource.js +3 -2
- package/core/computed/metrics/interactive.d.ts +6 -0
- package/core/computed/metrics/interactive.js +2 -2
- package/core/computed/metrics/lantern-first-contentful-paint.d.ts +4 -4
- package/core/computed/metrics/lantern-first-contentful-paint.js +3 -3
- package/core/computed/metrics/lantern-interactive.d.ts +4 -4
- package/core/computed/metrics/lantern-interactive.js +6 -6
- package/core/computed/metrics/lantern-largest-contentful-paint.d.ts +4 -4
- package/core/computed/metrics/lantern-largest-contentful-paint.js +3 -3
- package/core/computed/metrics/lantern-max-potential-fid.d.ts +4 -4
- package/core/computed/metrics/lantern-max-potential-fid.js +3 -3
- package/core/computed/metrics/lantern-metric.d.ts +21 -2
- package/core/computed/metrics/lantern-metric.js +39 -4
- package/core/computed/metrics/lantern-speed-index.d.ts +4 -4
- package/core/computed/metrics/lantern-speed-index.js +4 -4
- package/core/computed/metrics/lantern-total-blocking-time.d.ts +4 -4
- package/core/computed/metrics/lantern-total-blocking-time.js +3 -3
- package/core/computed/metrics/timing-summary.js +0 -6
- package/core/computed/metrics/total-blocking-time.js +3 -1
- package/core/computed/navigation-insights.d.ts +2 -20
- package/core/computed/network-analysis.d.ts +0 -5
- package/core/computed/network-analysis.js +2 -42
- package/core/computed/page-dependency-graph.d.ts +5 -3
- package/core/computed/page-dependency-graph.js +17 -7
- package/core/computed/processed-navigation.d.ts +1 -1
- package/core/computed/tbt-impact-tasks.js +4 -2
- package/core/computed/trace-engine-result.d.ts +0 -11
- package/core/computed/trace-engine-result.js +5 -19
- package/core/config/constants.d.ts +28 -53
- package/core/config/constants.js +2 -43
- package/core/gather/driver/navigation.js +1 -1
- package/core/gather/driver/network-monitor.d.ts +2 -1
- package/core/gather/driver/network-monitor.js +4 -4
- package/core/gather/driver/target-manager.d.ts +1 -1
- package/core/gather/driver.d.ts +0 -12
- package/core/gather/driver.js +1 -26
- package/core/gather/gatherers/inspector-issues.js +1 -0
- package/core/gather/gatherers/root-causes.js +0 -1
- package/core/gather/session.d.ts +5 -3
- package/core/gather/session.js +22 -1
- package/core/lib/asset-saver.d.ts +13 -9
- package/core/lib/asset-saver.js +77 -30
- package/core/lib/bf-cache-strings.js +2 -2
- package/core/lib/lantern/{base-node.d.ts → BaseNode.d.ts} +7 -9
- package/core/lib/lantern/{base-node.js → BaseNode.js} +6 -6
- package/core/lib/lantern/BaseNode.test.js +385 -0
- package/core/lib/lantern/CpuNode.d.ts +43 -0
- package/core/lib/lantern/{cpu-node.js → CpuNode.js} +8 -9
- package/core/lib/lantern/{lantern-error.d.ts → LanternError.d.ts} +1 -1
- package/core/lib/lantern/{metric.d.ts → Metric.d.ts} +23 -25
- package/core/lib/lantern/{metric.js → Metric.js} +14 -16
- package/core/lib/lantern/{network-node.d.ts → NetworkNode.d.ts} +6 -7
- package/core/lib/lantern/{network-node.js → NetworkNode.js} +7 -9
- package/core/lib/lantern/PageDependencyGraph.d.ts +82 -0
- package/core/lib/lantern/{page-dependency-graph.js → PageDependencyGraph.js} +185 -50
- package/core/lib/lantern/PageDependencyGraph.test.js +654 -0
- package/core/{computed/metrics/tbt-utils.d.ts → lib/lantern/TBTUtils.d.ts} +1 -1
- package/core/lib/lantern/TBTUtils.test.d.ts +2 -0
- package/core/lib/lantern/TBTUtils.test.js +130 -0
- package/core/lib/lantern/TraceEngineComputationData.d.ts +25 -0
- package/core/lib/lantern/TraceEngineComputationData.js +466 -0
- package/core/lib/lantern/lantern.d.ts +19 -7
- package/core/lib/lantern/lantern.js +21 -1
- package/core/lib/lantern/metrics/{first-contentful-paint.d.ts → FirstContentfulPaint.d.ts} +11 -11
- package/core/lib/lantern/metrics/{first-contentful-paint.js → FirstContentfulPaint.js} +11 -13
- package/core/lib/lantern/metrics/FirstContentfulPaint.test.js +54 -0
- package/core/lib/lantern/metrics/Interactive.d.ts +20 -0
- package/core/lib/lantern/metrics/{interactive.js → Interactive.js} +23 -26
- package/core/lib/lantern/metrics/Interactive.test.js +56 -0
- package/core/lib/lantern/metrics/LargestContentfulPaint.d.ts +19 -0
- package/core/lib/lantern/metrics/{largest-contentful-paint.js → LargestContentfulPaint.js} +16 -19
- package/core/lib/lantern/metrics/LargestContentfulPaint.test.js +42 -0
- package/core/lib/lantern/metrics/MaxPotentialFID.d.ts +24 -0
- package/core/lib/lantern/metrics/{max-potential-fid.js → MaxPotentialFID.js} +12 -13
- package/core/lib/lantern/metrics/MetricTestUtils.d.ts +19 -0
- package/core/lib/lantern/metrics/MetricTestUtils.js +48 -0
- package/core/lib/lantern/metrics/{speed-index.d.ts → SpeedIndex.d.ts} +7 -13
- package/core/lib/lantern/metrics/{speed-index.js → SpeedIndex.js} +14 -16
- package/core/lib/lantern/metrics/SpeedIndex.test.js +83 -0
- package/core/lib/lantern/metrics/TotalBlockingTime.d.ts +25 -0
- package/core/lib/lantern/metrics/{total-blocking-time.js → TotalBlockingTime.js} +13 -16
- package/core/lib/lantern/metrics/__snapshots__/FirstContentfulPaint.test.js.snap +11 -0
- package/core/lib/lantern/metrics/__snapshots__/Interactive.test.js.snap +17 -0
- package/core/lib/lantern/metrics/metrics.d.ts +9 -0
- package/core/lib/lantern/metrics/metrics.js +16 -0
- package/core/lib/lantern/{simulator/connection-pool.d.ts → simulation/ConnectionPool.d.ts} +15 -15
- package/core/lib/lantern/{simulator/connection-pool.js → simulation/ConnectionPool.js} +25 -25
- package/core/lib/lantern/simulation/ConnectionPool.test.js +195 -0
- package/core/lib/lantern/simulation/Constants.d.ts +52 -0
- package/core/lib/lantern/simulation/Constants.js +48 -0
- package/core/lib/lantern/{simulator/dns-cache.d.ts → simulation/DNSCache.d.ts} +3 -3
- package/core/lib/lantern/{simulator/dns-cache.js → simulation/DNSCache.js} +2 -2
- package/core/lib/lantern/simulation/DNSCache.test.js +72 -0
- package/core/lib/lantern/{simulator/network-analyzer.d.ts → simulation/NetworkAnalyzer.d.ts} +34 -21
- package/core/lib/lantern/{simulator/network-analyzer.js → simulation/NetworkAnalyzer.js} +106 -57
- package/core/lib/lantern/simulation/NetworkAnalyzer.test.js +475 -0
- package/core/lib/lantern/{simulator/simulator-timing-map.d.ts → simulation/SimulationTimingMap.d.ts} +7 -7
- package/core/lib/lantern/{simulator/simulator-timing-map.js → simulation/SimulationTimingMap.js} +5 -6
- package/core/lib/lantern/{simulator/simulator.d.ts → simulation/Simulator.d.ts} +21 -19
- package/core/lib/lantern/{simulator/simulator.js → simulation/Simulator.js} +100 -45
- package/core/lib/lantern/simulation/Simulator.test.js +434 -0
- package/core/lib/lantern/simulation/TCPConnection.test.d.ts +2 -0
- package/core/lib/lantern/simulation/TCPConnection.test.js +374 -0
- package/core/lib/lantern/{simulator/tcp-connection.d.ts → simulation/TcpConnection.d.ts} +2 -2
- package/core/lib/lantern/{simulator/tcp-connection.js → simulation/TcpConnection.js} +1 -1
- package/core/lib/lantern/simulation/simulation.d.ts +21 -0
- package/core/lib/lantern/simulation/simulation.js +28 -0
- package/core/lib/lantern/types/lantern.d.ts +145 -20
- package/core/lib/lantern-trace-saver.d.ts +4 -4
- package/core/lib/lantern-trace-saver.js +4 -4
- package/core/lib/navigation-error.js +3 -3
- package/core/lib/network-recorder.js +2 -2
- package/core/lib/network-request.d.ts +29 -3
- package/core/lib/network-request.js +20 -13
- package/core/lib/tracehouse/trace-processor.d.ts +0 -2
- package/core/lib/tracehouse/trace-processor.js +1 -31
- package/core/lib/traces/metric-trace-events.js +0 -5
- package/dist/report/bundle.esm.js +1 -1
- package/dist/report/flow.js +1 -1
- package/dist/report/standalone.js +1 -1
- package/package.json +14 -13
- package/report/renderer/performance-category-renderer.js +1 -1
- package/shared/localization/locales/ar-XB.json +43 -4
- package/shared/localization/locales/ar.json +43 -4
- package/shared/localization/locales/bg.json +43 -4
- package/shared/localization/locales/ca.json +44 -5
- package/shared/localization/locales/cs.json +43 -4
- package/shared/localization/locales/da.json +43 -4
- package/shared/localization/locales/de.json +43 -4
- package/shared/localization/locales/el.json +43 -4
- package/shared/localization/locales/en-GB.json +42 -3
- package/shared/localization/locales/en-US.json +4 -4
- package/shared/localization/locales/en-XA.json +43 -4
- package/shared/localization/locales/en-XL.json +4 -4
- package/shared/localization/locales/es-419.json +43 -4
- package/shared/localization/locales/es.json +42 -3
- package/shared/localization/locales/fi.json +43 -4
- package/shared/localization/locales/fil.json +42 -3
- package/shared/localization/locales/fr.json +42 -3
- package/shared/localization/locales/he.json +48 -9
- package/shared/localization/locales/hi.json +43 -4
- package/shared/localization/locales/hr.json +43 -4
- package/shared/localization/locales/hu.json +42 -3
- package/shared/localization/locales/id.json +42 -3
- package/shared/localization/locales/it.json +43 -4
- package/shared/localization/locales/ja.json +42 -3
- package/shared/localization/locales/ko.json +43 -4
- package/shared/localization/locales/lt.json +42 -3
- package/shared/localization/locales/lv.json +43 -4
- package/shared/localization/locales/nl.json +44 -5
- package/shared/localization/locales/no.json +42 -3
- package/shared/localization/locales/pl.json +43 -4
- package/shared/localization/locales/pt-PT.json +43 -4
- package/shared/localization/locales/pt.json +43 -4
- package/shared/localization/locales/ro.json +43 -4
- package/shared/localization/locales/ru.json +43 -4
- package/shared/localization/locales/sk.json +43 -4
- package/shared/localization/locales/sl.json +42 -3
- package/shared/localization/locales/sr-Latn.json +43 -4
- package/shared/localization/locales/sr.json +43 -4
- package/shared/localization/locales/sv.json +42 -3
- package/shared/localization/locales/ta.json +42 -3
- package/shared/localization/locales/te.json +43 -4
- package/shared/localization/locales/th.json +44 -5
- package/shared/localization/locales/tr.json +43 -4
- package/shared/localization/locales/uk.json +43 -4
- package/shared/localization/locales/vi.json +43 -4
- package/shared/localization/locales/zh-HK.json +43 -4
- package/shared/localization/locales/zh-TW.json +43 -4
- package/shared/localization/locales/zh.json +43 -4
- package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +1 -0
- package/tsconfig-all.json +1 -0
- package/tsconfig.json +11 -7
- package/types/artifacts.d.ts +23 -25
- package/types/gatherer.d.ts +2 -3
- package/types/lhr/lhr.d.ts +2 -0
- package/core/computed/metrics/first-meaningful-paint.d.ts +0 -21
- package/core/computed/metrics/first-meaningful-paint.js +0 -44
- package/core/computed/metrics/lantern-first-meaningful-paint.d.ts +0 -25
- package/core/computed/metrics/lantern-first-meaningful-paint.js +0 -43
- package/core/lib/lantern/cpu-node.d.ts +0 -44
- package/core/lib/lantern/metrics/first-meaningful-paint.d.ts +0 -6
- package/core/lib/lantern/metrics/first-meaningful-paint.js +0 -64
- package/core/lib/lantern/metrics/interactive.d.ts +0 -26
- package/core/lib/lantern/metrics/largest-contentful-paint.d.ts +0 -19
- package/core/lib/lantern/metrics/max-potential-fid.d.ts +0 -30
- package/core/lib/lantern/metrics/total-blocking-time.d.ts +0 -31
- package/core/lib/lantern/page-dependency-graph.d.ts +0 -58
- /package/core/lib/lantern/{lantern-error.js → LanternError.js} +0 -0
- /package/core/{computed/metrics/tbt-utils.js → lib/lantern/TBTUtils.js} +0 -0
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "Atribūti `[aria-*]` atbilst savām lomām"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
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": "
|
|
24
|
+
"message": "Uses ARIA roles on incompatible elements"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Uses ARIA roles only on compatible elements"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "Ja elementam nav pieejama nosaukuma, ekrāna lasītāji nolasa to ar vispārīgu nosaukumu, līdz ar to elements kļūst nelietojams ekrāna lasītāju lietotājiem. [Uzziniet, kā padarīt komandu elementus pieejamākus](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": "Elementiem “`button`”, “`link`” un “`menuitem`” ir pieejami nosaukumi"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Dažus ARIA atribūtus elementam drīkst izmantot tikai tad, ja ir izpildīti noteikti nosacījumi. [Uzziniet vairāk par nosacījuma ARIA atribūtiem.](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)"
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "ARIA atribūti netiek izmantoti tā, kā norādīts elementa lomai"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "ARIA atribūti tiek izmantoti tā, kā norādīts elementa lomai"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "Pastāv iespēja, ka atbalsta tehnoloģija nevarēs pareizi apstrādāt ARIA lomas, kam pārtraukts atbalsts. [Uzziniet vairāk par ARIA lomām, kam pārtraukts atbalsts.](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)"
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "Tika izmantotas ARIA lomas, kam pārtraukts atbalsts"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "Netika izmantotas ARIA lomas, kam pārtraukts atbalsts."
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "Ja ARIA dialoglodziņu elementiem nav pieejamu nosaukumu, ekrāna lasītāju lietotāji var nesaprast šo elementu mērķi. [Uzziniet, kā padarīt ARIA dialoglodziņu elementus pieejamākus](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 elementiem “`progressbar`” ir pieejami nosaukumi"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "Izmantojot ARIA atribūtus lomās, kur tie ir aizliegti, pastāv iespēja, ka svarīga informācija netiks nodota atbalsta tehnoloģiju lietotājiem. [Uzziniet vairāk par aizliegtām ARIA lomām.](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)"
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "Elementiem tiek izmantoti aizliegti ARIA atribūti"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Elementos tiek izmantoti tikai atļauti ARIA atribūti"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Dažām ARIA lomām ir obligāti atribūti, kas ekrāna lasītājiem norāda elementa statusu. [Uzziniet vairāk par lomām un obligātajiem atribūtiem](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 attēla iepriekšēja ielāde"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Noteikti novirziet visu HTTP datplūsmu uz HTTPS, lai visiem lietotājiem iespējotu droša tīmekļa funkcijas. [Uzziniet vairāk.](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)"
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "HTTP datplūsma netiek novirzīta uz HTTPS lapām"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "HTTP datplūsma tiek novirzīta uz HTTPS lapām"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "Novirzīšana rada papildu aizkaves pirms lapas ielādes. [Uzziniet, kā izvairīties no lapu novirzīšanas.](https://developer.chrome.com/docs/lighthouse/performance/redirects/)"
|
|
1180
1216
|
},
|
|
@@ -1713,7 +1749,7 @@
|
|
|
1713
1749
|
"message": "Lapas, kurās tiek izmantota saskarne Serial API, nevar pilnīgi saglabāt kešatmiņā."
|
|
1714
1750
|
},
|
|
1715
1751
|
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1716
|
-
"message": "
|
|
1752
|
+
"message": "Nevar pilnīgi saglabāt kešatmiņā lapas, kurās tiek izmantota saskarne WebAuthentication API."
|
|
1717
1753
|
},
|
|
1718
1754
|
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1719
1755
|
"message": "Lapas, kurās tiek izmantota saskarne WebBluetooth API, nevar pilnīgi saglabāt kešatmiņā."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "Resursu satura izgūšanai ir nepieciešams ilgāks laiks, nekā pieļaujams"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "Pārlūka cilne negaidīti avarēja."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "Šķiet, ka jūsu norādītais URL nav derīgs."
|
|
2437
2476
|
},
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "`[aria-*]`-kenmerken komen overeen met hun rollen"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
21
|
+
"message": "Aan veel HTML-elementen kunnen alleen bepaalde ARIA-rollen worden toegewezen. Als je ARIA-rollen gebruikt waar ze niet zijn toegestaan, kan dit de toegankelijkheid van de webpagina beïnvloeden. [Meer informatie over ARIA-rollen](https://dequeuniversity.com/rules/axe/4.9/aria-allowed-role)."
|
|
22
22
|
},
|
|
23
23
|
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
|
-
"message": "
|
|
24
|
+
"message": "Gebruikt ARIA-rollen voor incompatibele elementen"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Gebruikt ARIA-rollen alleen voor compatibele elementen"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "Als een element geen toegankelijke naam heeft, kondigen schermlezers dit aan met een generieke naam, waardoor het veld onbruikbaar wordt voor gebruikers die afhankelijk zijn van schermlezers. [Meer informatie over hoe je opdrachtelementen toegankelijker maakt](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`- en `menuitem`-elementen hebben toegankelijke namen"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Bepaalde ARIA-kenmerken zijn alleen onder bepaalde omstandigheden toegestaan voor een element. [Meer informatie over voorwaardelijke ARIA-kenmerken](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)"
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "ARIA-kenmerken worden niet gebruikt zoals aangegeven voor de rol van het element"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "ARIA-kenmerken worden gebruikt zoals aangegeven voor de rol van het element"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "Beëindigde ARIA-rollen worden misschien niet goed verwerkt door ondersteunende technologie. [Meer informatie over beëindigde ARIA-rollen](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)"
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "Er worden beëindigde ARIA-rollen gebruikt"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "Er worden geen beëindigde ARIA-rollen gebruikt"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "ARIA-dialoogvensterelementen zonder toegankelijke namen kunnen voorkomen dat gebruikers van schermlezers het doel van deze elementen kunnen herkennen. [Meer informatie over hoe je ARIA-dialoogelementen toegankelijker maakt](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`-elementen hebben toegankelijke namen"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "Als ARIA-kenmerken worden gebruikt in rollen waarin ze niet zijn toegestaan, kan dit betekenen dat belangrijke informatie niet wordt gecommuniceerd aan gebruikers van ondersteunende technologieën. [Meer informatie over niet-toegestane ARIA-rollen](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)"
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "Elementen gebruiken niet-toegestane ARIA-kenmerken"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Elementen gebruiken alleen toegestane ARIA-kenmerken"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Sommige ARIA-rollen hebben vereiste kenmerken die de status van het element beschrijven voor schermlezers. [Meer informatie over rollen en vereiste kenmerken](https://dequeuniversity.com/rules/axe/4.9/aria-required-attr)"
|
|
94
121
|
},
|
|
@@ -783,7 +810,7 @@
|
|
|
783
810
|
"message": "Vermijdt beëindigde API's"
|
|
784
811
|
},
|
|
785
812
|
"core/audits/dobetterweb/charset.js | description": {
|
|
786
|
-
"message": "Een
|
|
813
|
+
"message": "Een verklaring tekencodering is vereist. Dit kan worden gedaan met een `<meta>`-tag in de eerste 1024 bytes van de html of in de HTTP-reactiekop voor het contenttype. [Meer informatie over het definiëren van de tekencodering](https://developer.chrome.com/docs/lighthouse/best-practices/charset/)"
|
|
787
814
|
},
|
|
788
815
|
"core/audits/dobetterweb/charset.js | failureTitle": {
|
|
789
816
|
"message": "Tekensetdeclaratie ontbreekt of komt te laat in de HTML"
|
|
@@ -1175,6 +1202,15 @@
|
|
|
1175
1202
|
"core/audits/prioritize-lcp-image.js | title": {
|
|
1176
1203
|
"message": "Afbeelding voor Grootste weergave met content (LCP) vooraf laden"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Zorg dat je al het HTTP-verkeer omleidt naar HTTPS om beveiligde webfuncties aan te zetten voor al je gebruikers. [Meer informatie](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)"
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "Hiermee wordt HTTP-verkeer niet omgeleid naar HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "Hiermee wordt HTTP-verkeer omgeleid naar HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "Omleidingen zorgen voor extra vertraging voordat de pagina kan worden geladen. [Meer informatie over hoe je pagina-omleidingen vermijdt](https://developer.chrome.com/docs/lighthouse/performance/redirects/)"
|
|
1180
1216
|
},
|
|
@@ -1713,7 +1749,7 @@
|
|
|
1713
1749
|
"message": "Pagina's die de Serial API gebruiken, komen niet in aanmerking voor Back-Forward Cache."
|
|
1714
1750
|
},
|
|
1715
1751
|
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1716
|
-
"message": "Pagina's die de
|
|
1752
|
+
"message": "Pagina's die de WebAuthentication API gebruiken, komen niet in aanmerking voor Back-Forward Cache."
|
|
1717
1753
|
},
|
|
1718
1754
|
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1719
1755
|
"message": "Pagina's die de WebBluetooth API gebruiken, komen niet in aanmerking voor Back-Forward Cache."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "Voor het ophalen van broncontent is de toegewezen tijd overschreden"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "Browsertabblad is onverwacht gecrasht."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "Het lijkt erop dat je een ongeldige URL hebt opgegeven."
|
|
2437
2476
|
},
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "`[aria-*]`-attributtene samsvarer med rollene sine"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
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": "
|
|
24
|
+
"message": "Uses ARIA roles on incompatible elements"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Uses ARIA roles only on compatible elements"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "Når elementer ikke har tilgjengelige navn, beskriver skjermlesere dem med generiske navn. Dermed er de ubrukelige for brukere som er avhengige av skjermlesere. [Finn ut hvordan du gjør kommandoelementer mer tilgjengelige](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`- og `menuitem`-elementer har tilgjengelige navn"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Noen ARIA-attributter er bare tillatt på elementer under visse betingelser. [Finn ut mer 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 brukes ikke i tråd med spesifikasjonene for elementets rolle"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "ARIA-attributter brukes i tråd med spesifikasjonene for elementets rolle"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "Assisterende teknologi kan kanskje ikke håndtere avviklede ARIA-roller på riktig måte. [Finn ut mer om avviklede ARIA-roller](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "Avviklede ARIA-roller ble brukt"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "Avviklede ARIA-roller ble ikke brukt"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "Når ARIA-dialogelementer ikke har tilgjengelige navn, kan det forhindre brukere av skjermlesere fra å forstå formålet med disse elementene. [Finn ut hvordan du gjør ARIA-dialogelementer mer tilgjengelige](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`-elementer har tilgjengelige navn"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "Hvis du bruker ARIA-attributter i roller der de er forbudt, kan det bety at viktig informasjon ikke formidles til brukere av assisterende teknologi. [Finn ut mer 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 bruker forbudte ARIA-attributter"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Elementer bruker bare tillatte ARIA-attributter"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Noen ARIA-roller har obligatoriske attributter som beskriver elementenes tilstand for skjermlesere. [Finn ut mer 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": "Forhåndslast bildet med største innholdsrike opptegning"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Sørg for at du viderekobler all HTTP-trafikk til HTTPS, slik at alle brukerne dine får tilgang til sikker nettfunksjonalitet. [Finn ut mer](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "Viderekobler ikke HTTP-trafikk til HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "Viderekobler HTTP-trafikk til HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "Viderekoblinger fører til flere forsinkelser før siden kan lastes inn. [Finn ut hvordan du kan unngå viderekoblinger fra sider](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": "Henting av ressursinnhold har overskredet den kvoterte tiden"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "Nettleserfanen krasjet uventet."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "Nettadressen du oppga, ser ut til å være ugyldig."
|
|
2437
2476
|
},
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "Atrybuty `[aria-*]` odpowiadają swoim rolom"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
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": "
|
|
24
|
+
"message": "Uses ARIA roles on incompatible elements"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Uses ARIA roles only on compatible elements"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "Gdy element nie ma nazwy na potrzeby ułatwień dostępu, czytniki ekranu określają go nazwą ogólną, przez co jest on bezużyteczny dla ich użytkowników. [Jak ułatwić dostęp do elementów poleceń](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": "Elementy `button`, `link` i `menuitem` mają nazwy na potrzeby ułatwień dostępu"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Niektóre atrybuty ARIA są dozwolone w elemencie tylko pod pewnymi warunkami. [Więcej informacji o warunkowych atrybutach ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)"
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "Atrybuty ARIA nie są używane zgodnie z określoną rolą elementu"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "Atrybuty ARIA są używane zgodnie z określoną rolą elementu"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "Wycofane role ARIA mogą nie być prawidłowo przetwarzane przez technologię wspomagającą osoby z niepełnosprawnością. [Więcej informacji o wycofanych rolach ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)"
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "Użyto wycofanych ról ARIA"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "Nie użyto wycofanych ról ARIA"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "Elementy okien ARIA, które nie zawierają nazw na potrzeby ułatwień dostępu, mogą uniemożliwiać użytkownikom czytników ekranu rozpoznanie zastosowania tych elementów. [Więcej informacji o ułatwieniach dostępu w elementach okien 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": "Elementy ARIA `progressbar` mają nazwy na potrzeby ułatwień dostępu"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "Używanie atrybutów ARIA w rolach, w których jest to zabronione, może spowodować, że użytkownikom technologii wspomagających osoby z niepełnosprawnością nie będą przekazywane ważne informacje. [Więcej informacji o zabronionych rolach ARIA](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)"
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "Elementy używają zabronionych atrybutów ARIA"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Elementy używają tylko dozwolonych atrybutów ARIA"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Niektóre role ARIA mają atrybuty wymagane, które opisują stan elementu na potrzeby czytników ekranu. [Więcej informacji o rolach i wymaganych atrybutach](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": "Wstępnie wczytuj największy wyrenderowany obraz"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Przekieruj cały ruch HTTP do HTTPS, aby wszyscy użytkownicy mogli korzystać z bezpiecznych funkcji internetowych. [Więcej informacji](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)"
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "Nie przekierowuje ruchu HTTP do HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "Przekierowuje ruch HTTP do HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "Przekierowania wprowadzają dodatkowe opóźnienia przed załadowaniem strony. [Jak unikać przekierowań strony](https://developer.chrome.com/docs/lighthouse/performance/redirects/)"
|
|
1180
1216
|
},
|
|
@@ -1713,7 +1749,7 @@
|
|
|
1713
1749
|
"message": "Strony, które używają interfejsu Serial API, nie kwalifikują się do korzystania z pamięci podręcznej stanu strony internetowej."
|
|
1714
1750
|
},
|
|
1715
1751
|
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1716
|
-
"message": "Strony, które używają interfejsu
|
|
1752
|
+
"message": "Strony, które używają interfejsu WebAuthentication API, nie kwalifikują się do korzystania z pamięci podręcznej stanu strony internetowej."
|
|
1717
1753
|
},
|
|
1718
1754
|
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1719
1755
|
"message": "Strony, które używają interfejsu WebBluetooth API, nie kwalifikują się do korzystania z pamięci podręcznej stanu strony internetowej."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "Przekroczono czas przydzielony na pobranie zasobów"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "W karcie przeglądarki nieoczekiwanie wystąpił poważny błąd."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "Podany URL jest nieprawidłowy."
|
|
2437
2476
|
},
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "Os atributos `[aria-*]` correspondem às respetivas funções"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
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": "
|
|
24
|
+
"message": "Uses ARIA roles on incompatible elements"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Uses ARIA roles only on compatible elements"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "Quando um elemento não tem um nome acessível, os leitores de ecrã anunciam-no com um nome genérico, tornando-o inutilizável para os utilizadores que dependem de leitores de ecrã. [Saiba como tornar os elementos de comandos mais acessíveis](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": "Os elementos `button`, `link` e `menuitem` têm nomes acessíveis"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Alguns atributos ARIA só são permitidos num elemento em determinadas condições. [Saiba mais acerca dos atributos ARIA condicionais](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "Os atributos ARIA não são usados conforme especificado para a função do elemento"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "Os atributos ARIA são usados conforme especificado para a função do elemento"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "As funções ARIA descontinuadas podem não ser processadas corretamente pela tecnologia de assistência. [Saiba mais acerca das funções ARIA descontinuadas](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "Foram usadas funções ARIA descontinuadas"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "As funções ARIA descontinuadas não foram usadas"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "Os elementos da caixa de diálogo ARIA sem nomes acessíveis podem impedir os utilizadores de leitores de ecrã de perceberem a finalidade destes elementos. [Saiba como tornar os elementos da caixa de diálogo ARIA mais acessíveis](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": "Os elementos `progressbar` ARIA têm nomes acessíveis"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "A utilização de atributos ARIA em funções onde são proibidos pode significar que informações importantes não são comunicadas aos utilizadores de tecnologias de assistência. [Saiba mais sobre as funções ARIA proibidas](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "Os elementos usam atributos ARIA proibidos"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Os elementos usam apenas atributos ARIA permitidos"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Algumas funções ARIA têm atributos obrigatórios que descrevem o estado do elemento para os leitores de ecrã. [Saiba mais acerca das funções e dos atributos obrigatórios](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": "Pré-carregue a imagem de Maior preenchimento com conteúdo"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Certifique-se de que redireciona todo o tráfego HTTP para HTTPS de modo a ativar as funcionalidades Web seguras para todos os seus utilizadores. [Saiba mais](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "Não redireciona o tráfego HTTP para HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "Redireciona o tráfego HTTP para HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "Os redirecionamentos introduzem atrasos adicionais antes do carregamento da página. [Saiba como evitar redirecionamentos de páginas](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
|
|
1180
1216
|
},
|
|
@@ -1713,7 +1749,7 @@
|
|
|
1713
1749
|
"message": "As páginas que usam a API Serial não são elegíveis para a cache para a frente/para trás."
|
|
1714
1750
|
},
|
|
1715
1751
|
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1716
|
-
"message": "As páginas que usam a API
|
|
1752
|
+
"message": "As páginas que usam a API WebAuthentication não são elegíveis para a cache para a frente/para trás."
|
|
1717
1753
|
},
|
|
1718
1754
|
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1719
1755
|
"message": "As páginas que usam a API WebBluetooth não são elegíveis para a cache para a frente/para trás."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "A obtenção de conteúdo de recursos excedeu o tempo atribuído."
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "O separador do navegador falhou inesperadamente."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "O URL que forneceu parece ser inválido."
|
|
2437
2476
|
},
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"message": "Os atributos `[aria-*]` correspondem às próprias funções"
|
|
19
19
|
},
|
|
20
20
|
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
-
"message": "
|
|
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": "
|
|
24
|
+
"message": "Uses ARIA roles on incompatible elements"
|
|
25
25
|
},
|
|
26
26
|
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Uses ARIA roles only on compatible elements"
|
|
28
28
|
},
|
|
29
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
30
30
|
"message": "Quando um elemento não tem um nome acessível, os leitores de tela o anunciam com um nome genérico, fazendo com que os usuários que dependem desses leitores não possam usá-lo. [Aprenda a tornar os elementos de comando mais acessíveis](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": "Os elementos `button`, `link` e `menuitem` têm nomes acessíveis"
|
|
37
37
|
},
|
|
38
|
+
"core/audits/accessibility/aria-conditional-attr.js | description": {
|
|
39
|
+
"message": "Alguns atributos ARIA só são permitidos em um elemento sob certas condições. [Saiba mais sobre os atributos ARIA condicionais](https://dequeuniversity.com/rules/axe/4.9/aria-conditional-attr)."
|
|
40
|
+
},
|
|
41
|
+
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
|
|
42
|
+
"message": "Os atributos ARIA não são usados conforme especificado para a função do elemento"
|
|
43
|
+
},
|
|
44
|
+
"core/audits/accessibility/aria-conditional-attr.js | title": {
|
|
45
|
+
"message": "Os atributos ARIA são usados conforme especificado para a função do elemento"
|
|
46
|
+
},
|
|
47
|
+
"core/audits/accessibility/aria-deprecated-role.js | description": {
|
|
48
|
+
"message": "As funções ARIA descontinuadas talvez não sejam processadas corretamente pela tecnologia adaptativa. [Saiba mais sobre as funções ARIA descontinuadas](https://dequeuniversity.com/rules/axe/4.9/aria-deprecated-role)."
|
|
49
|
+
},
|
|
50
|
+
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
|
|
51
|
+
"message": "As funções ARIA descontinuadas foram usadas"
|
|
52
|
+
},
|
|
53
|
+
"core/audits/accessibility/aria-deprecated-role.js | title": {
|
|
54
|
+
"message": "As funções ARIA descontinuadas não foram usadas"
|
|
55
|
+
},
|
|
38
56
|
"core/audits/accessibility/aria-dialog-name.js | description": {
|
|
39
57
|
"message": "Elementos de caixa de diálogo ARIA sem nomes acessíveis podem impedir que usuários de leitores de tela entendam a finalidade desses elementos. [Saiba como tornar os elementos da caixa de diálogo ARIA mais acessíveis](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": "Os elementos ARIA `progressbar` têm nomes acessíveis"
|
|
91
109
|
},
|
|
110
|
+
"core/audits/accessibility/aria-prohibited-attr.js | description": {
|
|
111
|
+
"message": "Usar atributos ARIA em funções em que eles são proibidos pode fazer com que informações importantes não sejam comunicadas aos usuários de tecnologias adaptativas. [Saiba mais sobre as funções ARIA proibidas](https://dequeuniversity.com/rules/axe/4.9/aria-prohibited-attr)."
|
|
112
|
+
},
|
|
113
|
+
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
|
|
114
|
+
"message": "Os elementos usam atributos ARIA proibidos"
|
|
115
|
+
},
|
|
116
|
+
"core/audits/accessibility/aria-prohibited-attr.js | title": {
|
|
117
|
+
"message": "Os elementos usam apenas atributos ARIA permitidos"
|
|
118
|
+
},
|
|
92
119
|
"core/audits/accessibility/aria-required-attr.js | description": {
|
|
93
120
|
"message": "Algumas funções ARIA têm atributos obrigatórios que descrevem o estado do elemento para leitores de tela. [Saiba mais sobre funções e atributos obrigatórios](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": "Pré-carregar imagem de Maior exibição de conteúdo"
|
|
1177
1204
|
},
|
|
1205
|
+
"core/audits/redirects-http.js | description": {
|
|
1206
|
+
"message": "Redirecione todo o tráfego HTTP para HTTPS para garantir recursos da Web para todos os seus usuários. [Saiba mais](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
|
|
1207
|
+
},
|
|
1208
|
+
"core/audits/redirects-http.js | failureTitle": {
|
|
1209
|
+
"message": "O tráfego HTTP não é redirecionado para HTTPS"
|
|
1210
|
+
},
|
|
1211
|
+
"core/audits/redirects-http.js | title": {
|
|
1212
|
+
"message": "O tráfego HTTP é redirecionado para HTTPS"
|
|
1213
|
+
},
|
|
1178
1214
|
"core/audits/redirects.js | description": {
|
|
1179
1215
|
"message": "Os redirecionamentos causam mais atrasos antes do carregamento da página. [Aprenda a evitar o redirecionamentos de página](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
|
|
1180
1216
|
},
|
|
@@ -1713,7 +1749,7 @@
|
|
|
1713
1749
|
"message": "As páginas que usam a API Serial não são qualificadas para o cache de avanço e retorno."
|
|
1714
1750
|
},
|
|
1715
1751
|
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1716
|
-
"message": "As páginas que usam a API
|
|
1752
|
+
"message": "As páginas que usam a API WebAuthentication não estão qualificadas para o cache de avanço e retorno."
|
|
1717
1753
|
},
|
|
1718
1754
|
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1719
1755
|
"message": "As páginas que usam a API WebBluetooth não são qualificadas para o cache de avanço e retorno."
|
|
@@ -2432,6 +2468,9 @@
|
|
|
2432
2468
|
"core/lib/lh-error.js | requestContentTimeout": {
|
|
2433
2469
|
"message": "A busca de conteúdo de recursos excedeu o tempo limite"
|
|
2434
2470
|
},
|
|
2471
|
+
"core/lib/lh-error.js | targetCrashed": {
|
|
2472
|
+
"message": "A guia do navegador parou de funcionar inesperadamente."
|
|
2473
|
+
},
|
|
2435
2474
|
"core/lib/lh-error.js | urlInvalid": {
|
|
2436
2475
|
"message": "O URL informado parece ser inválido."
|
|
2437
2476
|
},
|