lighthouse 11.7.0-dev.20240408 → 11.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +2 -2
- package/cli/test/smokehouse/core-tests.js +2 -0
- package/core/audits/accessibility/duplicate-id-active.d.ts +10 -0
- package/core/audits/accessibility/duplicate-id-active.js +42 -0
- package/core/audits/accessibility/target-size.js +1 -0
- package/core/audits/byte-efficiency/byte-efficiency-audit.d.ts +16 -0
- package/core/audits/byte-efficiency/byte-efficiency-audit.js +38 -1
- package/core/audits/byte-efficiency/offscreen-images.d.ts +11 -0
- package/core/audits/byte-efficiency/offscreen-images.js +15 -0
- package/core/audits/dobetterweb/uses-http2.d.ts +13 -0
- package/core/audits/dobetterweb/uses-http2.js +34 -2
- package/core/audits/layout-shift-elements.d.ts +16 -0
- package/core/audits/layout-shift-elements.js +101 -0
- package/core/audits/no-unload-listeners.d.ts +16 -0
- package/core/audits/no-unload-listeners.js +86 -0
- package/core/audits/preload-fonts.d.ts +5 -1
- package/core/audits/preload-fonts.js +10 -1
- package/core/audits/script-elements-test-audit.d.ts +14 -0
- package/core/audits/script-elements-test-audit.js +29 -0
- package/core/audits/seo/is-crawlable.d.ts +1 -2
- package/core/audits/seo/plugins.d.ts +15 -0
- package/core/audits/seo/plugins.js +150 -0
- package/core/audits/seo/tap-targets.d.ts +50 -0
- package/core/audits/seo/tap-targets.js +352 -0
- package/core/audits/uses-rel-preload.d.ts +5 -1
- package/core/audits/uses-rel-preload.js +11 -1
- package/core/audits/work-during-interaction.d.ts +2 -2
- package/core/audits/work-during-interaction.js +2 -2
- package/core/computed/js-bundles.d.ts +1 -1
- package/core/computed/metrics/lantern-first-contentful-paint.d.ts +82 -13
- package/core/computed/metrics/lantern-first-contentful-paint.js +178 -15
- package/core/computed/metrics/lantern-first-meaningful-paint.d.ts +12 -13
- package/core/computed/metrics/lantern-first-meaningful-paint.js +49 -10
- package/core/computed/metrics/lantern-interactive.d.ts +21 -13
- package/core/computed/metrics/lantern-interactive.js +84 -11
- package/core/computed/metrics/lantern-largest-contentful-paint.d.ts +25 -13
- package/core/computed/metrics/lantern-largest-contentful-paint.js +80 -12
- package/core/computed/metrics/lantern-max-potential-fid.d.ts +24 -13
- package/core/computed/metrics/lantern-max-potential-fid.js +64 -11
- package/core/computed/metrics/lantern-metric.d.ts +18 -9
- package/core/computed/metrics/lantern-metric.js +31 -13
- package/core/computed/metrics/lantern-speed-index.d.ts +32 -13
- package/core/computed/metrics/lantern-speed-index.js +116 -12
- package/core/computed/metrics/lantern-total-blocking-time.d.ts +25 -13
- package/core/computed/metrics/lantern-total-blocking-time.js +94 -10
- package/core/computed/metrics/metric.js +3 -1
- package/core/computed/module-duplication.d.ts +1 -1
- package/core/computed/page-dependency-graph.js +1 -2
- package/core/config/default-config.js +74 -46
- package/core/config/experimental-config.js +0 -11
- package/core/config/metrics-to-audits.d.ts +19 -0
- package/core/config/metrics-to-audits.js +62 -0
- package/core/gather/gatherers/accessibility.js +3 -1
- package/core/gather/gatherers/global-listeners.d.ts +27 -0
- package/core/gather/gatherers/global-listeners.js +108 -0
- package/core/gather/gatherers/script-elements.d.ts +21 -0
- package/core/gather/gatherers/script-elements.js +100 -0
- package/core/gather/gatherers/seo/embedded-content.d.ts +10 -0
- package/core/gather/gatherers/seo/embedded-content.js +63 -0
- package/core/gather/gatherers/seo/tap-targets.d.ts +21 -0
- package/core/gather/gatherers/seo/tap-targets.js +389 -0
- package/core/gather/gatherers/trace-elements.d.ts +10 -0
- package/core/gather/gatherers/trace-elements.js +19 -0
- package/core/lib/lantern/page-dependency-graph.d.ts +4 -4
- package/core/lib/lantern/page-dependency-graph.js +5 -5
- package/core/lib/lighthouse-compatibility.js +10 -53
- package/dist/report/bundle.esm.js +1 -1
- package/dist/report/flow.js +14 -14
- package/dist/report/standalone.js +1 -1
- package/flow-report/src/summary/category.tsx +12 -10
- package/package.json +1 -1
- package/report/renderer/performance-category-renderer.d.ts +7 -0
- package/report/renderer/performance-category-renderer.js +11 -1
- package/report/renderer/report-utils.js +10 -13
- package/shared/localization/locales/ar-XB.json +64 -1
- package/shared/localization/locales/ar.json +64 -1
- package/shared/localization/locales/bg.json +64 -1
- package/shared/localization/locales/ca.json +64 -1
- package/shared/localization/locales/cs.json +64 -1
- package/shared/localization/locales/da.json +64 -1
- package/shared/localization/locales/de.json +64 -1
- package/shared/localization/locales/el.json +64 -1
- package/shared/localization/locales/en-GB.json +64 -1
- package/shared/localization/locales/en-US.json +65 -2
- package/shared/localization/locales/en-XA.json +64 -1
- package/shared/localization/locales/en-XL.json +65 -2
- package/shared/localization/locales/es-419.json +64 -1
- package/shared/localization/locales/es.json +64 -1
- package/shared/localization/locales/fi.json +64 -1
- package/shared/localization/locales/fil.json +64 -1
- package/shared/localization/locales/fr.json +64 -1
- package/shared/localization/locales/he.json +64 -1
- package/shared/localization/locales/hi.json +64 -1
- package/shared/localization/locales/hr.json +64 -1
- package/shared/localization/locales/hu.json +64 -1
- package/shared/localization/locales/id.json +64 -1
- package/shared/localization/locales/it.json +64 -1
- package/shared/localization/locales/ja.json +64 -1
- package/shared/localization/locales/ko.json +64 -1
- package/shared/localization/locales/lt.json +64 -1
- package/shared/localization/locales/lv.json +64 -1
- package/shared/localization/locales/nl.json +64 -1
- package/shared/localization/locales/no.json +64 -1
- package/shared/localization/locales/pl.json +64 -1
- package/shared/localization/locales/pt-PT.json +64 -1
- package/shared/localization/locales/pt.json +64 -1
- package/shared/localization/locales/ro.json +64 -1
- package/shared/localization/locales/ru.json +64 -1
- package/shared/localization/locales/sk.json +64 -1
- package/shared/localization/locales/sl.json +64 -1
- package/shared/localization/locales/sr-Latn.json +64 -1
- package/shared/localization/locales/sr.json +64 -1
- package/shared/localization/locales/sv.json +64 -1
- package/shared/localization/locales/ta.json +64 -1
- package/shared/localization/locales/te.json +64 -1
- package/shared/localization/locales/th.json +64 -1
- package/shared/localization/locales/tr.json +64 -1
- package/shared/localization/locales/uk.json +64 -1
- package/shared/localization/locales/vi.json +64 -1
- package/shared/localization/locales/zh-HK.json +64 -1
- package/shared/localization/locales/zh-TW.json +64 -1
- package/shared/localization/locales/zh.json +64 -1
- package/tsconfig.json +0 -1
- package/types/artifacts.d.ts +17 -3
- package/types/config.d.ts +1 -0
- package/types/lhr/audit-details.d.ts +4 -9
- package/types/lhr/lhr.d.ts +2 -0
- package/core/lib/lantern/metrics/first-contentful-paint.d.ts +0 -79
- package/core/lib/lantern/metrics/first-contentful-paint.js +0 -200
- package/core/lib/lantern/metrics/first-meaningful-paint.d.ts +0 -6
- package/core/lib/lantern/metrics/first-meaningful-paint.js +0 -66
- package/core/lib/lantern/metrics/interactive.d.ts +0 -26
- package/core/lib/lantern/metrics/interactive.js +0 -112
- package/core/lib/lantern/metrics/largest-contentful-paint.d.ts +0 -19
- package/core/lib/lantern/metrics/largest-contentful-paint.js +0 -108
- package/core/lib/lantern/metrics/max-potential-fid.d.ts +0 -30
- package/core/lib/lantern/metrics/max-potential-fid.js +0 -92
- package/core/lib/lantern/metrics/speed-index.d.ts +0 -38
- package/core/lib/lantern/metrics/speed-index.js +0 -145
- package/core/lib/lantern/metrics/total-blocking-time.d.ts +0 -31
- package/core/lib/lantern/metrics/total-blocking-time.js +0 -128
|
@@ -236,6 +236,15 @@
|
|
|
236
236
|
"core/audits/accessibility/document-title.js | title": {
|
|
237
237
|
"message": "[Ðöçûméñţ ĥåš å ᐅ`<title>`ᐊ éļéméñţ one two three four five six]"
|
|
238
238
|
},
|
|
239
|
+
"core/audits/accessibility/duplicate-id-active.js | description": {
|
|
240
|
+
"message": "[Åļļ ƒöçûšåбļé éļéméñţš mûšţ ĥåvé å ûñîqûé ᐅ`id`ᐊ ţö éñšûŕé ţĥåţ ţĥéý'ŕé vîšîбļé ţö åššîšţîvé ţéçĥñöļöĝîéš. ᐅ[ᐊĻéåŕñ ĥöŵ ţö ƒîx ðûþļîçåţé ᐅ`id`ᐊšᐅ](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone]"
|
|
241
|
+
},
|
|
242
|
+
"core/audits/accessibility/duplicate-id-active.js | failureTitle": {
|
|
243
|
+
"message": "[ᐅ`[id]`ᐊ åţţŕîбûţéš öñ åçţîvé, ƒöçûšåбļé éļéméñţš åŕé ñöţ ûñîqûé one two three four five six seven eight nine ten eleven twelve]"
|
|
244
|
+
},
|
|
245
|
+
"core/audits/accessibility/duplicate-id-active.js | title": {
|
|
246
|
+
"message": "[ᐅ`[id]`ᐊ åţţŕîбûţéš öñ åçţîvé, ƒöçûšåбļé éļéméñţš åŕé ûñîqûé one two three four five six seven eight nine ten eleven]"
|
|
247
|
+
},
|
|
239
248
|
"core/audits/accessibility/duplicate-id-aria.js | description": {
|
|
240
249
|
"message": "[Ţĥé våļûé öƒ åñ ÅŔÎÅ ÎÐ mûšţ бé ûñîqûé ţö þŕévéñţ öţĥéŕ îñšţåñçéš ƒŕöm бéîñĝ övéŕļööķéð бý åššîšţîvé ţéçĥñöļöĝîéš. ᐅ[ᐊĻéåŕñ ĥöŵ ţö ƒîx ðûþļîçåţé ÅŔÎÅ ÎКᐅ](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-aria)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
|
|
241
250
|
},
|
|
@@ -1148,6 +1157,15 @@
|
|
|
1148
1157
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1158
|
"message": "[Ļåŕĝéšţ Çöñţéñţƒûļ Þåîñţ éļéméñţ one two three four five six seven]"
|
|
1150
1159
|
},
|
|
1160
|
+
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1161
|
+
"message": "[Ļåýöûţ šĥîƒţ îmþåçţ one two three]"
|
|
1162
|
+
},
|
|
1163
|
+
"core/audits/layout-shift-elements.js | description": {
|
|
1164
|
+
"message": "[Ţĥéšé ÐÖM éļéméñţš ŵéŕé möšţ 僃éçţéð бý ļåýöûţ šĥîƒţš. Šömé ļåýöûţ šĥîƒţš måý ñöţ бé îñçļûðéð îñ ţĥé ÇĻŠ méţŕîç våļûé ðûé ţö ᐅ[ᐊŵîñðöŵîñĝᐅ](https://web.dev/articles/cls#what_is_cls)ᐊ. ᐅ[ᐊĻéåŕñ ĥöŵ ţö îmþŕövé ÇĻŠᐅ](https://web.dev/articles/optimize-cls)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour]"
|
|
1165
|
+
},
|
|
1166
|
+
"core/audits/layout-shift-elements.js | title": {
|
|
1167
|
+
"message": "[Åvöîð ļåŕĝé ļåýöûţ šĥîƒţš one two three four five six]"
|
|
1168
|
+
},
|
|
1151
1169
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1152
1170
|
"message": "[Ļåýöûţ šĥîƒţ šçöŕé one two three]"
|
|
1153
1171
|
},
|
|
@@ -1268,6 +1286,15 @@
|
|
|
1268
1286
|
"core/audits/network-server-latency.js | title": {
|
|
1269
1287
|
"message": "[Šéŕvéŕ Бåçķéñð Ļåţéñçîéš one two three]"
|
|
1270
1288
|
},
|
|
1289
|
+
"core/audits/no-unload-listeners.js | description": {
|
|
1290
|
+
"message": "[Ţĥé ᐅ`unload`ᐊ évéñţ ðöéš ñöţ ƒîŕé ŕéļîåбļý åñð ļîšţéñîñĝ ƒöŕ îţ çåñ þŕévéñţ бŕöŵšéŕ öþţîmîžåţîöñš ļîķé ţĥé Бåçķ-Föŕŵåŕð Çåçĥé. Ûšé ᐅ`pagehide`ᐊ öŕ ᐅ`visibilitychange`ᐊ évéñţš îñšţéåð. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ûñļöåð évéñţ ļîšţéñéŕšᐅ](https://web.dev/articles/bfcache#never_use_the_unload_event)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven]"
|
|
1291
|
+
},
|
|
1292
|
+
"core/audits/no-unload-listeners.js | failureTitle": {
|
|
1293
|
+
"message": "[Ŕéĝîšţéŕš åñ ᐅ`unload`ᐊ ļîšţéñéŕ one two three four five six]"
|
|
1294
|
+
},
|
|
1295
|
+
"core/audits/no-unload-listeners.js | title": {
|
|
1296
|
+
"message": "[Åvöîðš ᐅ`unload`ᐊ évéñţ ļîšţéñéŕš one two three four five six]"
|
|
1297
|
+
},
|
|
1271
1298
|
"core/audits/non-composited-animations.js | description": {
|
|
1272
1299
|
"message": "[Åñîmåţîöñš ŵĥîçĥ åŕé ñöţ çömþöšîţéð çåñ бé ĵåñķý åñð îñçŕéåšé ÇĻŠ. ᐅ[ᐊĻéåŕñ ĥöŵ ţö åvöîð ñöñ-çömþöšîţéð åñîmåţîöñšᐅ](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen]"
|
|
1273
1300
|
},
|
|
@@ -1454,6 +1481,15 @@
|
|
|
1454
1481
|
"core/audits/seo/meta-description.js | title": {
|
|
1455
1482
|
"message": "[Ðöçûméñţ ĥåš å méţå ðéšçŕîþţîöñ one two three four five six seven]"
|
|
1456
1483
|
},
|
|
1484
|
+
"core/audits/seo/plugins.js | description": {
|
|
1485
|
+
"message": "[Šéåŕçĥ éñĝîñéš çåñ'ţ îñðéx þļûĝîñ çöñţéñţ, åñð måñý ðévîçéš ŕéšţŕîçţ þļûĝîñš öŕ ðöñ'ţ šûþþöŕţ ţĥém. ᐅ[ᐊĻéåŕñ möŕé åбöûţ åvöîðîñĝ þļûĝîñšᐅ](https://developer.chrome.com/docs/lighthouse/seo/plugins/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone]"
|
|
1486
|
+
},
|
|
1487
|
+
"core/audits/seo/plugins.js | failureTitle": {
|
|
1488
|
+
"message": "[Ðöçûméñţ ûšéš þļûĝîñš one two three]"
|
|
1489
|
+
},
|
|
1490
|
+
"core/audits/seo/plugins.js | title": {
|
|
1491
|
+
"message": "[Ðöçûméñţ åvöîðš þļûĝîñš one two three]"
|
|
1492
|
+
},
|
|
1457
1493
|
"core/audits/seo/robots-txt.js | description": {
|
|
1458
1494
|
"message": "[΃ ýöûŕ ŕöбöţš.ţxţ ƒîļé îš måļƒöŕméð, çŕåŵļéŕš måý ñöţ бé åбļé ţö ûñðéŕšţåñð ĥöŵ ýöû ŵåñţ ýöûŕ ŵéбšîţé ţö бé çŕåŵļéð öŕ îñðéxéð. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ŕöбöţš.ţxţᐅ](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
|
|
1459
1495
|
},
|
|
@@ -1472,6 +1508,27 @@
|
|
|
1472
1508
|
"core/audits/seo/robots-txt.js | title": {
|
|
1473
1509
|
"message": "[ŕöбöţš.ţxţ îš våļîð one two three]"
|
|
1474
1510
|
},
|
|
1511
|
+
"core/audits/seo/tap-targets.js | description": {
|
|
1512
|
+
"message": "[Îñţéŕåçţîvé éļéméñţš ļîķé бûţţöñš åñð ļîñķš šĥöûļð бé ļåŕĝé éñöûĝĥ (48x48þx), öŕ ĥåvé éñöûĝĥ šþåçé åŕöûñð ţĥém, ţö бé éåšý éñöûĝĥ ţö ţåþ ŵîţĥöûţ övéŕļåþþîñĝ öñţö öţĥéŕ éļéméñţš. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţåþ ţåŕĝéţšᐅ](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight]"
|
|
1513
|
+
},
|
|
1514
|
+
"core/audits/seo/tap-targets.js | displayValue": {
|
|
1515
|
+
"message": "[ᐅ{decimalProportion, number, percent}ᐊ åþþŕöþŕîåţéļý šîžéð ţåþ ţåŕĝéţš one two three four five six seven eight]"
|
|
1516
|
+
},
|
|
1517
|
+
"core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
|
|
1518
|
+
"message": "[Ţåþ ţåŕĝéţš åŕé ţöö šmåļļ бéçåûšé ţĥéŕé'š ñö vîéŵþöŕţ méţå ţåĝ öþţîmîžéð ƒöŕ möбîļé šçŕééñš one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen]"
|
|
1519
|
+
},
|
|
1520
|
+
"core/audits/seo/tap-targets.js | failureTitle": {
|
|
1521
|
+
"message": "[Ţåþ ţåŕĝéţš åŕé ñöţ šîžéð åþþŕöþŕîåţéļý one two three four five six seven eight]"
|
|
1522
|
+
},
|
|
1523
|
+
"core/audits/seo/tap-targets.js | overlappingTargetHeader": {
|
|
1524
|
+
"message": "[Övéŕļåþþîñĝ Ţåŕĝéţ one two three]"
|
|
1525
|
+
},
|
|
1526
|
+
"core/audits/seo/tap-targets.js | tapTargetHeader": {
|
|
1527
|
+
"message": "[Ţåþ Ţåŕĝéţ one two]"
|
|
1528
|
+
},
|
|
1529
|
+
"core/audits/seo/tap-targets.js | title": {
|
|
1530
|
+
"message": "[Ţåþ ţåŕĝéţš åŕé šîžéð åþþŕöþŕîåţéļý one two three four five six seven eight]"
|
|
1531
|
+
},
|
|
1475
1532
|
"core/audits/server-response-time.js | description": {
|
|
1476
1533
|
"message": "[Ķééþ ţĥé šéŕvéŕ ŕéšþöñšé ţîmé ƒöŕ ţĥé måîñ ðöçûméñţ šĥöŕţ бéçåûšé åļļ öţĥéŕ ŕéqûéšţš ðéþéñð öñ îţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Ţîmé ţö Fîŕšţ Бýţé méţŕîçᐅ](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
|
|
1477
1534
|
},
|
|
@@ -1661,7 +1718,7 @@
|
|
|
1661
1718
|
"core/audits/work-during-interaction.js | presentationDelay": {
|
|
1662
1719
|
"message": "[Þŕéšéñţåţîöñ ðéļåý one two three]"
|
|
1663
1720
|
},
|
|
1664
|
-
"core/audits/work-during-interaction.js |
|
|
1721
|
+
"core/audits/work-during-interaction.js | processingTime": {
|
|
1665
1722
|
"message": "[Þŕöçéššîñĝ ţîmé one two]"
|
|
1666
1723
|
},
|
|
1667
1724
|
"core/audits/work-during-interaction.js | title": {
|
|
@@ -1757,6 +1814,12 @@
|
|
|
1757
1814
|
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1758
1815
|
"message": "[Fîŕšţ Þåîñţ Îmþŕövéméñţš one two three]"
|
|
1759
1816
|
},
|
|
1817
|
+
"core/config/default-config.js | loadOpportunitiesGroupDescription": {
|
|
1818
|
+
"message": "[Ţĥéšé šûĝĝéšţîöñš çåñ ĥéļþ ýöûŕ þåĝé ļöåð ƒåšţéŕ. Ţĥéý ðöñ'ţ ᐅ[ᐊðîŕéçţļý 僃éçţᐅ](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/)ᐊ ţĥé Þéŕƒöŕmåñçé šçöŕé. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen]"
|
|
1819
|
+
},
|
|
1820
|
+
"core/config/default-config.js | loadOpportunitiesGroupTitle": {
|
|
1821
|
+
"message": "[Öþþöŕţûñîţîéš one two]"
|
|
1822
|
+
},
|
|
1760
1823
|
"core/config/default-config.js | metricGroupTitle": {
|
|
1761
1824
|
"message": "[Méţŕîçš one]"
|
|
1762
1825
|
},
|
|
@@ -236,6 +236,15 @@
|
|
|
236
236
|
"core/audits/accessibility/document-title.js | title": {
|
|
237
237
|
"message": "D̂óĉúm̂én̂t́ ĥáŝ á `<title>` êĺêḿêńt̂"
|
|
238
238
|
},
|
|
239
|
+
"core/audits/accessibility/duplicate-id-active.js | description": {
|
|
240
|
+
"message": "Âĺl̂ f́ôćûśâb́l̂é êĺêḿêńt̂ś m̂úŝt́ ĥáv̂é â ún̂íq̂úê `id` t́ô én̂śûŕê t́ĥát̂ t́ĥéŷ'ŕê v́îśîb́l̂é t̂ó âśŝíŝt́îv́ê t́êćĥńôĺôǵîéŝ. [Ĺêár̂ń ĥóŵ t́ô f́îx́ d̂úp̂ĺîćât́ê `id`ś](https://dequeuniversity.com/rules/axe/4.9/duplicate-id-active)."
|
|
241
|
+
},
|
|
242
|
+
"core/audits/accessibility/duplicate-id-active.js | failureTitle": {
|
|
243
|
+
"message": "`[id]` ât́t̂ŕîb́ût́êś ôń âćt̂ív̂é, f̂óĉúŝáb̂ĺê él̂ém̂én̂t́ŝ ár̂é n̂ót̂ ún̂íq̂úê"
|
|
244
|
+
},
|
|
245
|
+
"core/audits/accessibility/duplicate-id-active.js | title": {
|
|
246
|
+
"message": "`[id]` ât́t̂ŕîb́ût́êś ôń âćt̂ív̂é, f̂óĉúŝáb̂ĺê él̂ém̂én̂t́ŝ ár̂é ûńîq́ûé"
|
|
247
|
+
},
|
|
239
248
|
"core/audits/accessibility/duplicate-id-aria.js | description": {
|
|
240
249
|
"message": "T̂h́ê v́âĺûé ôf́ âń ÂŔÎÁ ÎD́ m̂úŝt́ b̂é ûńîq́ûé t̂ó p̂ŕêv́êńt̂ ót̂h́êŕ îńŝt́âńĉéŝ f́r̂óm̂ b́êín̂ǵ ôv́êŕl̂óôḱêd́ b̂ý âśŝíŝt́îv́ê t́êćĥńôĺôǵîéŝ. [Ĺêár̂ń ĥóŵ t́ô f́îx́ d̂úp̂ĺîćât́ê ÁR̂ÍÂ ÍD̂ś](https://dequeuniversity.com/rules/axe/4.9/duplicate-id-aria)."
|
|
241
250
|
},
|
|
@@ -1151,6 +1160,15 @@
|
|
|
1151
1160
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1152
1161
|
"message": "L̂ár̂ǵêśt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ êĺêḿêńt̂"
|
|
1153
1162
|
},
|
|
1163
|
+
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1164
|
+
"message": "L̂áŷóût́ ŝh́îf́t̂ ím̂ṕâćt̂"
|
|
1165
|
+
},
|
|
1166
|
+
"core/audits/layout-shift-elements.js | description": {
|
|
1167
|
+
"message": "T̂h́êśê D́ÔḾ êĺêḿêńt̂ś ŵér̂é m̂óŝt́ âf́f̂éĉt́êd́ b̂ý l̂áŷóût́ ŝh́îf́t̂ś. Ŝóm̂é l̂áŷóût́ ŝh́îf́t̂ś m̂áŷ ńôt́ b̂é îńĉĺûd́êd́ îń t̂h́ê ĆL̂Ś m̂ét̂ŕîć v̂ál̂úê d́ûé t̂ó [ŵín̂d́ôẃîńĝ](https://web.dev/articles/cls#what_is_cls). [Ĺêár̂ń ĥóŵ t́ô ím̂ṕr̂óv̂é ĈĹŜ](https://web.dev/articles/optimize-cls)"
|
|
1168
|
+
},
|
|
1169
|
+
"core/audits/layout-shift-elements.js | title": {
|
|
1170
|
+
"message": "Âv́ôíd̂ ĺâŕĝé l̂áŷóût́ ŝh́îf́t̂ś"
|
|
1171
|
+
},
|
|
1154
1172
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1155
1173
|
"message": "L̂áŷóût́ ŝh́îf́t̂ śĉór̂é"
|
|
1156
1174
|
},
|
|
@@ -1271,6 +1289,15 @@
|
|
|
1271
1289
|
"core/audits/network-server-latency.js | title": {
|
|
1272
1290
|
"message": "Ŝér̂v́êŕ B̂áĉḱêńd̂ Ĺât́êńĉíêś"
|
|
1273
1291
|
},
|
|
1292
|
+
"core/audits/no-unload-listeners.js | description": {
|
|
1293
|
+
"message": "T̂h́ê `unload` év̂én̂t́ d̂óêś n̂ót̂ f́îŕê ŕêĺîáb̂ĺŷ án̂d́ l̂íŝt́êńîńĝ f́ôŕ ît́ ĉán̂ ṕr̂év̂én̂t́ b̂ŕôẃŝér̂ óp̂t́îḿîźât́îón̂ś l̂ík̂é t̂h́ê B́âćk̂-F́ôŕŵár̂d́ Ĉáĉh́ê. Úŝé `pagehide` ôŕ `visibilitychange` êv́êńt̂ś îńŝt́êád̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ ún̂ĺôád̂ év̂én̂t́ l̂íŝt́êńêŕŝ](https://web.dev/articles/bfcache#never_use_the_unload_event)"
|
|
1294
|
+
},
|
|
1295
|
+
"core/audits/no-unload-listeners.js | failureTitle": {
|
|
1296
|
+
"message": "R̂éĝíŝt́êŕŝ án̂ `unload` ĺîśt̂én̂ér̂"
|
|
1297
|
+
},
|
|
1298
|
+
"core/audits/no-unload-listeners.js | title": {
|
|
1299
|
+
"message": "Âv́ôíd̂ś `unload` êv́êńt̂ ĺîśt̂én̂ér̂ś"
|
|
1300
|
+
},
|
|
1274
1301
|
"core/audits/non-composited-animations.js | description": {
|
|
1275
1302
|
"message": "Âńîḿât́îón̂ś ŵh́îćĥ ár̂é n̂ót̂ ćôḿp̂óŝít̂éd̂ ćâń b̂é ĵán̂ḱŷ án̂d́ îńĉŕêáŝé ĈĹŜ. [Ĺêár̂ń ĥóŵ t́ô áv̂óîd́ n̂ón̂-ćôḿp̂óŝít̂éd̂ án̂ím̂át̂íôńŝ](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
|
|
1276
1303
|
},
|
|
@@ -1457,6 +1484,15 @@
|
|
|
1457
1484
|
"core/audits/seo/meta-description.js | title": {
|
|
1458
1485
|
"message": "D̂óĉúm̂én̂t́ ĥáŝ á m̂ét̂á d̂éŝćr̂íp̂t́îón̂"
|
|
1459
1486
|
},
|
|
1487
|
+
"core/audits/seo/plugins.js | description": {
|
|
1488
|
+
"message": "Ŝéâŕĉh́ êńĝín̂éŝ ćâń't̂ ín̂d́êx́ p̂ĺûǵîń ĉón̂t́êńt̂, án̂d́ m̂án̂ý d̂év̂íĉéŝ ŕêśt̂ŕîćt̂ ṕl̂úĝín̂ś ôŕ d̂ón̂'t́ ŝúp̂ṕôŕt̂ t́ĥém̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ áv̂óîd́îńĝ ṕl̂úĝín̂ś](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1489
|
+
},
|
|
1490
|
+
"core/audits/seo/plugins.js | failureTitle": {
|
|
1491
|
+
"message": "D̂óĉúm̂én̂t́ ûśêś p̂ĺûǵîńŝ"
|
|
1492
|
+
},
|
|
1493
|
+
"core/audits/seo/plugins.js | title": {
|
|
1494
|
+
"message": "D̂óĉúm̂én̂t́ âv́ôíd̂ś p̂ĺûǵîńŝ"
|
|
1495
|
+
},
|
|
1460
1496
|
"core/audits/seo/robots-txt.js | description": {
|
|
1461
1497
|
"message": "Îf́ ŷóûŕ r̂ób̂ót̂ś.t̂x́t̂ f́îĺê íŝ ḿâĺf̂ór̂ḿêd́, ĉŕâẃl̂ér̂ś m̂áŷ ńôt́ b̂é âb́l̂é t̂ó ûńd̂ér̂śt̂án̂d́ ĥóŵ ýôú ŵán̂t́ ŷóûŕ ŵéb̂śît́ê t́ô b́ê ćr̂áŵĺêd́ ôŕ îńd̂éx̂éd̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ ŕôb́ôt́ŝ.t́x̂t́](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
|
|
1462
1498
|
},
|
|
@@ -1475,6 +1511,27 @@
|
|
|
1475
1511
|
"core/audits/seo/robots-txt.js | title": {
|
|
1476
1512
|
"message": "r̂ób̂ót̂ś.t̂x́t̂ íŝ v́âĺîd́"
|
|
1477
1513
|
},
|
|
1514
|
+
"core/audits/seo/tap-targets.js | description": {
|
|
1515
|
+
"message": "Îńt̂ér̂áĉt́îv́ê él̂ém̂én̂t́ŝ ĺîḱê b́ût́t̂ón̂ś âńd̂ ĺîńk̂ś ŝh́ôúl̂d́ b̂é l̂ár̂ǵê én̂óûǵĥ (48x́48p̂x́), ôŕ ĥáv̂é êńôúĝh́ ŝṕâćê ár̂óûńd̂ t́ĥém̂, t́ô b́ê éâśŷ én̂óûǵĥ t́ô t́âṕ ŵít̂h́ôút̂ óv̂ér̂ĺâṕp̂ín̂ǵ ôńt̂ó ôt́ĥér̂ él̂ém̂én̂t́ŝ. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́âṕ t̂ár̂ǵêt́ŝ](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
|
|
1516
|
+
},
|
|
1517
|
+
"core/audits/seo/tap-targets.js | displayValue": {
|
|
1518
|
+
"message": "{decimalProportion, number, percent} âṕp̂ŕôṕr̂íât́êĺŷ śîźêd́ t̂áp̂ t́âŕĝét̂ś"
|
|
1519
|
+
},
|
|
1520
|
+
"core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
|
|
1521
|
+
"message": "T̂áp̂ t́âŕĝét̂ś âŕê t́ôó ŝḿâĺl̂ b́êćâúŝé t̂h́êŕê'ś n̂ó v̂íêẃp̂ór̂t́ m̂ét̂á t̂áĝ óp̂t́îḿîźêd́ f̂ór̂ ḿôb́îĺê śĉŕêén̂ś"
|
|
1522
|
+
},
|
|
1523
|
+
"core/audits/seo/tap-targets.js | failureTitle": {
|
|
1524
|
+
"message": "T̂áp̂ t́âŕĝét̂ś âŕê ńôt́ ŝíẑéd̂ áp̂ṕr̂óp̂ŕîát̂él̂ý"
|
|
1525
|
+
},
|
|
1526
|
+
"core/audits/seo/tap-targets.js | overlappingTargetHeader": {
|
|
1527
|
+
"message": "Ôv́êŕl̂áp̂ṕîńĝ T́âŕĝét̂"
|
|
1528
|
+
},
|
|
1529
|
+
"core/audits/seo/tap-targets.js | tapTargetHeader": {
|
|
1530
|
+
"message": "T̂áp̂ T́âŕĝét̂"
|
|
1531
|
+
},
|
|
1532
|
+
"core/audits/seo/tap-targets.js | title": {
|
|
1533
|
+
"message": "T̂áp̂ t́âŕĝét̂ś âŕê śîźêd́ âṕp̂ŕôṕr̂íât́êĺŷ"
|
|
1534
|
+
},
|
|
1478
1535
|
"core/audits/server-response-time.js | description": {
|
|
1479
1536
|
"message": "K̂éêṕ t̂h́ê śêŕv̂ér̂ ŕêśp̂ón̂śê t́îḿê f́ôŕ t̂h́ê ḿâín̂ d́ôćûḿêńt̂ śĥór̂t́ b̂éĉáûśê ál̂ĺ ôt́ĥér̂ ŕêq́ûéŝt́ŝ d́êṕêńd̂ ón̂ ít̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ĥé T̂ím̂é t̂ó F̂ír̂śt̂ B́ŷt́ê ḿêt́r̂íĉ](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)."
|
|
1480
1537
|
},
|
|
@@ -1664,8 +1721,8 @@
|
|
|
1664
1721
|
"core/audits/work-during-interaction.js | presentationDelay": {
|
|
1665
1722
|
"message": "P̂ŕêśêńt̂át̂íôń d̂él̂áŷ"
|
|
1666
1723
|
},
|
|
1667
|
-
"core/audits/work-during-interaction.js |
|
|
1668
|
-
"message": "P̂ŕôćêśŝín̂ǵ
|
|
1724
|
+
"core/audits/work-during-interaction.js | processingTime": {
|
|
1725
|
+
"message": "P̂ŕôćêśŝín̂ǵ t̂ím̂é"
|
|
1669
1726
|
},
|
|
1670
1727
|
"core/audits/work-during-interaction.js | title": {
|
|
1671
1728
|
"message": "M̂ín̂ím̂íẑéŝ ẃôŕk̂ d́ûŕîńĝ ḱêý îńt̂ér̂áĉt́îón̂"
|
|
@@ -1760,6 +1817,12 @@
|
|
|
1760
1817
|
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1761
1818
|
"message": "F̂ír̂śt̂ Ṕâín̂t́ Îḿp̂ŕôv́êḿêńt̂ś"
|
|
1762
1819
|
},
|
|
1820
|
+
"core/config/default-config.js | loadOpportunitiesGroupDescription": {
|
|
1821
|
+
"message": "T̂h́êśê śûǵĝéŝt́îón̂ś ĉán̂ h́êĺp̂ ýôúr̂ ṕâǵê ĺôád̂ f́âśt̂ér̂. T́ĥéŷ d́ôń't̂ [d́îŕêćt̂ĺŷ áf̂f́êćt̂](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) t́ĥé P̂ér̂f́ôŕm̂án̂ćê śĉór̂é."
|
|
1822
|
+
},
|
|
1823
|
+
"core/config/default-config.js | loadOpportunitiesGroupTitle": {
|
|
1824
|
+
"message": "Ôṕp̂ór̂t́ûńît́îéŝ"
|
|
1825
|
+
},
|
|
1763
1826
|
"core/config/default-config.js | metricGroupTitle": {
|
|
1764
1827
|
"message": "M̂ét̂ŕîćŝ"
|
|
1765
1828
|
},
|
|
@@ -236,6 +236,15 @@
|
|
|
236
236
|
"core/audits/accessibility/document-title.js | title": {
|
|
237
237
|
"message": "El documento tiene un elemento `<title>`"
|
|
238
238
|
},
|
|
239
|
+
"core/audits/accessibility/duplicate-id-active.js | description": {
|
|
240
|
+
"message": "Todos los elementos enfocables deben tener un valor de `id` único para que las tecnologías de accesibilidad puedan detectarlos. [Obtén información para corregir `id` duplicados](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
|
|
241
|
+
},
|
|
242
|
+
"core/audits/accessibility/duplicate-id-active.js | failureTitle": {
|
|
243
|
+
"message": "Los atributos de `[id]` de los elementos enfocables y activos no son únicos"
|
|
244
|
+
},
|
|
245
|
+
"core/audits/accessibility/duplicate-id-active.js | title": {
|
|
246
|
+
"message": "Los atributos de `[id]` de los elementos enfocables y activos son únicos"
|
|
247
|
+
},
|
|
239
248
|
"core/audits/accessibility/duplicate-id-aria.js | description": {
|
|
240
249
|
"message": "El valor de un ID de ARIA debe ser único para impedir que las tecnologías de accesibilidad omitan otras instancias. [Obtén información para corregir los IDs de ARIA duplicados](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-aria)."
|
|
241
250
|
},
|
|
@@ -1148,6 +1157,15 @@
|
|
|
1148
1157
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1158
|
"message": "Elemento del Procesamiento de imagen con contenido más grande"
|
|
1150
1159
|
},
|
|
1160
|
+
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1161
|
+
"message": "Impacto del cambio de diseño"
|
|
1162
|
+
},
|
|
1163
|
+
"core/audits/layout-shift-elements.js | description": {
|
|
1164
|
+
"message": "Estos elementos del DOM se vieron más afectados por los cambios de diseño. Es posible que algunos cambios de diseño no se incluyan en el valor de la métrica CLS debido a la [renderización de ventanas](https://web.dev/articles/cls#what_is_cls). [Más información para mejorar CLS](https://web.dev/articles/optimize-cls)"
|
|
1165
|
+
},
|
|
1166
|
+
"core/audits/layout-shift-elements.js | title": {
|
|
1167
|
+
"message": "No realices cambios grandes en el diseño"
|
|
1168
|
+
},
|
|
1151
1169
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1152
1170
|
"message": "Puntuación de cambio de diseño"
|
|
1153
1171
|
},
|
|
@@ -1268,6 +1286,15 @@
|
|
|
1268
1286
|
"core/audits/network-server-latency.js | title": {
|
|
1269
1287
|
"message": "Latencias de backend del servidor"
|
|
1270
1288
|
},
|
|
1289
|
+
"core/audits/no-unload-listeners.js | description": {
|
|
1290
|
+
"message": "El evento `unload` no se ejecuta de forma confiable y su escucha puede impedir las optimizaciones del navegador, como la Memoria caché atrás/adelante. En su lugar, usa los eventos `pagehide` o `visibilitychange`. [Más información sobre la descarga de objetos de escucha de eventos](https://web.dev/articles/bfcache#never_use_the_unload_event)"
|
|
1291
|
+
},
|
|
1292
|
+
"core/audits/no-unload-listeners.js | failureTitle": {
|
|
1293
|
+
"message": "Registra un objeto de escucha de `unload`"
|
|
1294
|
+
},
|
|
1295
|
+
"core/audits/no-unload-listeners.js | title": {
|
|
1296
|
+
"message": "Evita los objetos de escucha de eventos de `unload`"
|
|
1297
|
+
},
|
|
1271
1298
|
"core/audits/non-composited-animations.js | description": {
|
|
1272
1299
|
"message": "Es posible que las animaciones que no estén compuestas se vean entrecortadas y aumenten el valor de CLS. [Más información para evitar las animaciones no compuestas](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
|
|
1273
1300
|
},
|
|
@@ -1454,6 +1481,15 @@
|
|
|
1454
1481
|
"core/audits/seo/meta-description.js | title": {
|
|
1455
1482
|
"message": "El documento tiene una metadescripción"
|
|
1456
1483
|
},
|
|
1484
|
+
"core/audits/seo/plugins.js | description": {
|
|
1485
|
+
"message": "Los motores de búsqueda no pueden indexar el contenido de los complementos y muchos dispositivos limitan el uso de complementos o no los admiten. [Obtén más información para evitar los complementos](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1486
|
+
},
|
|
1487
|
+
"core/audits/seo/plugins.js | failureTitle": {
|
|
1488
|
+
"message": "El documento usa complementos"
|
|
1489
|
+
},
|
|
1490
|
+
"core/audits/seo/plugins.js | title": {
|
|
1491
|
+
"message": "Los documentos evitan el uso de complementos"
|
|
1492
|
+
},
|
|
1457
1493
|
"core/audits/seo/robots-txt.js | description": {
|
|
1458
1494
|
"message": "Si el formato del archivo robots.txt no es correcto, es posible que los rastreadores no puedan interpretar cómo quieres que se rastree o indexe tu sitio web. [Obtén más información acerca de los archivos robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
|
|
1459
1495
|
},
|
|
@@ -1472,6 +1508,27 @@
|
|
|
1472
1508
|
"core/audits/seo/robots-txt.js | title": {
|
|
1473
1509
|
"message": "robots.txt es válido"
|
|
1474
1510
|
},
|
|
1511
|
+
"core/audits/seo/tap-targets.js | description": {
|
|
1512
|
+
"message": "Los elementos interactivos, como los botones y vínculos, deben ser suficientemente grandes (48 × 48 px) o tener alrededor el espacio necesario para que sea posible tocarlos con facilidad sin presionar otros elementos a la vez. [Obtén más información sobre los botones táctiles](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
|
|
1513
|
+
},
|
|
1514
|
+
"core/audits/seo/tap-targets.js | displayValue": {
|
|
1515
|
+
"message": "El {decimalProportion, number, percent} de los elementos táctiles tiene un tamaño adecuado"
|
|
1516
|
+
},
|
|
1517
|
+
"core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
|
|
1518
|
+
"message": "Los elementos táctiles son demasiado pequeños porque no hay metaetiquetas de la vista del puerto optimizadas para pantallas de dispositivos móviles"
|
|
1519
|
+
},
|
|
1520
|
+
"core/audits/seo/tap-targets.js | failureTitle": {
|
|
1521
|
+
"message": "El tamaño de los elementos táctiles no es el adecuado"
|
|
1522
|
+
},
|
|
1523
|
+
"core/audits/seo/tap-targets.js | overlappingTargetHeader": {
|
|
1524
|
+
"message": "Elementos superpuestos"
|
|
1525
|
+
},
|
|
1526
|
+
"core/audits/seo/tap-targets.js | tapTargetHeader": {
|
|
1527
|
+
"message": "Elemento táctil"
|
|
1528
|
+
},
|
|
1529
|
+
"core/audits/seo/tap-targets.js | title": {
|
|
1530
|
+
"message": "El tamaño de los elementos táctiles es el adecuado"
|
|
1531
|
+
},
|
|
1475
1532
|
"core/audits/server-response-time.js | description": {
|
|
1476
1533
|
"message": "Es importante que el tiempo de respuesta del servidor para el documento principal sea breve, ya que afecta a las demás solicitudes. [Obtén más información sobre la métrica Tiempo hasta el primer byte](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)."
|
|
1477
1534
|
},
|
|
@@ -1661,7 +1718,7 @@
|
|
|
1661
1718
|
"core/audits/work-during-interaction.js | presentationDelay": {
|
|
1662
1719
|
"message": "Retraso en la presentación"
|
|
1663
1720
|
},
|
|
1664
|
-
"core/audits/work-during-interaction.js |
|
|
1721
|
+
"core/audits/work-during-interaction.js | processingTime": {
|
|
1665
1722
|
"message": "Tiempo de procesamiento"
|
|
1666
1723
|
},
|
|
1667
1724
|
"core/audits/work-during-interaction.js | title": {
|
|
@@ -1757,6 +1814,12 @@
|
|
|
1757
1814
|
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1758
1815
|
"message": "Mejoras del primer procesamiento de imagen"
|
|
1759
1816
|
},
|
|
1817
|
+
"core/config/default-config.js | loadOpportunitiesGroupDescription": {
|
|
1818
|
+
"message": "Estas sugerencias pueden hacer que tus páginas se carguen más rápido. No [afectan directamente](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) la medición del rendimiento."
|
|
1819
|
+
},
|
|
1820
|
+
"core/config/default-config.js | loadOpportunitiesGroupTitle": {
|
|
1821
|
+
"message": "Oportunidades"
|
|
1822
|
+
},
|
|
1760
1823
|
"core/config/default-config.js | metricGroupTitle": {
|
|
1761
1824
|
"message": "Métricas"
|
|
1762
1825
|
},
|
|
@@ -236,6 +236,15 @@
|
|
|
236
236
|
"core/audits/accessibility/document-title.js | title": {
|
|
237
237
|
"message": "El documento tiene un elemento `<title>`"
|
|
238
238
|
},
|
|
239
|
+
"core/audits/accessibility/duplicate-id-active.js | description": {
|
|
240
|
+
"message": "Todos los elementos seleccionables deben tener un `id` único para asegurar que son visibles para las tecnologías asistenciales. [Consulta cómo corregir `id`s duplicados](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
|
|
241
|
+
},
|
|
242
|
+
"core/audits/accessibility/duplicate-id-active.js | failureTitle": {
|
|
243
|
+
"message": "Los atributos `[id]` de los elementos activos seleccionables no son únicos"
|
|
244
|
+
},
|
|
245
|
+
"core/audits/accessibility/duplicate-id-active.js | title": {
|
|
246
|
+
"message": "Los atributos `[id]` de los elementos activos seleccionables son únicos"
|
|
247
|
+
},
|
|
239
248
|
"core/audits/accessibility/duplicate-id-aria.js | description": {
|
|
240
249
|
"message": "El valor de un ID de ARIA debe ser único para evitar que las tecnologías asistenciales omitan otras instancias. [Consulta cómo corregir IDs de ARIA duplicados](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-aria)"
|
|
241
250
|
},
|
|
@@ -1148,6 +1157,15 @@
|
|
|
1148
1157
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1158
|
"message": "Renderizado del mayor elemento con contenido"
|
|
1150
1159
|
},
|
|
1160
|
+
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1161
|
+
"message": "Impacto de los cambios de diseño"
|
|
1162
|
+
},
|
|
1163
|
+
"core/audits/layout-shift-elements.js | description": {
|
|
1164
|
+
"message": "Estos elementos DOM son los que se han visto más afectados por los cambios de diseño. Es posible que algunos cambios de diseño no se incluyan en el valor de la métrica CLS debido a la [normalización](https://web.dev/articles/cls#what_is_cls). [Descubre cómo mejorar el CLS](https://web.dev/articles/optimize-cls)"
|
|
1165
|
+
},
|
|
1166
|
+
"core/audits/layout-shift-elements.js | title": {
|
|
1167
|
+
"message": "Evitar cambios de diseño importantes"
|
|
1168
|
+
},
|
|
1151
1169
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1152
1170
|
"message": "Puntuación del cambio de diseño"
|
|
1153
1171
|
},
|
|
@@ -1268,6 +1286,15 @@
|
|
|
1268
1286
|
"core/audits/network-server-latency.js | title": {
|
|
1269
1287
|
"message": "Latencias de backend del servidor"
|
|
1270
1288
|
},
|
|
1289
|
+
"core/audits/no-unload-listeners.js | description": {
|
|
1290
|
+
"message": "El evento `unload` no se activa de manera fiable y esperar a que se detecte puede impedir optimizaciones del navegador, como el almacenamiento en caché de páginas completas. Usa los eventos `pagehide` o `visibilitychange` en su lugar. [Más información sobre los procesadores de eventos de descarga](https://web.dev/articles/bfcache#never_use_the_unload_event)"
|
|
1291
|
+
},
|
|
1292
|
+
"core/audits/no-unload-listeners.js | failureTitle": {
|
|
1293
|
+
"message": "Registra un procesador `unload`"
|
|
1294
|
+
},
|
|
1295
|
+
"core/audits/no-unload-listeners.js | title": {
|
|
1296
|
+
"message": "Impide el uso de procesadores de eventos `unload`"
|
|
1297
|
+
},
|
|
1271
1298
|
"core/audits/non-composited-animations.js | description": {
|
|
1272
1299
|
"message": "Las animaciones no compuestas pueden aparecer entrecortadas e incrementar el CLS. [Consulta cómo evitar las animaciones no compuestas](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
|
|
1273
1300
|
},
|
|
@@ -1454,6 +1481,15 @@
|
|
|
1454
1481
|
"core/audits/seo/meta-description.js | title": {
|
|
1455
1482
|
"message": "El documento tiene una metadescripción"
|
|
1456
1483
|
},
|
|
1484
|
+
"core/audits/seo/plugins.js | description": {
|
|
1485
|
+
"message": "Los buscadores no pueden indexar el contenido de los complementos, y muchos dispositivos limitan el uso de complementos o no los admiten. [Más información sobre cómo evitar complementos](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
|
|
1486
|
+
},
|
|
1487
|
+
"core/audits/seo/plugins.js | failureTitle": {
|
|
1488
|
+
"message": "El documento usa complementos"
|
|
1489
|
+
},
|
|
1490
|
+
"core/audits/seo/plugins.js | title": {
|
|
1491
|
+
"message": "El documento no usa complementos"
|
|
1492
|
+
},
|
|
1457
1493
|
"core/audits/seo/robots-txt.js | description": {
|
|
1458
1494
|
"message": "Si el formato del archivo robots.txt no es correcto, es posible que los rastreadores no puedan interpretar cómo quieres que se rastree o indexe tu sitio web. [Más información sobre robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
|
|
1459
1495
|
},
|
|
@@ -1472,6 +1508,27 @@
|
|
|
1472
1508
|
"core/audits/seo/robots-txt.js | title": {
|
|
1473
1509
|
"message": "robots.txt es válido"
|
|
1474
1510
|
},
|
|
1511
|
+
"core/audits/seo/tap-targets.js | description": {
|
|
1512
|
+
"message": "Los elementos interactivos, como los botones y enlaces, deben ser lo suficientemente grandes (48x48 px) o tener suficiente espacio alrededor para poder tocarlos con facilidad sin superponerse con otros elementos. [Más información sobre los objetivos táctiles](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)"
|
|
1513
|
+
},
|
|
1514
|
+
"core/audits/seo/tap-targets.js | displayValue": {
|
|
1515
|
+
"message": "El {decimalProportion, number, percent} de los elementos táctiles tiene un tamaño adecuado"
|
|
1516
|
+
},
|
|
1517
|
+
"core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
|
|
1518
|
+
"message": "Los elementos táctiles son demasiado pequeños porque no hay etiquetas meta de viewport optimizadas para pantallas de dispositivos móviles"
|
|
1519
|
+
},
|
|
1520
|
+
"core/audits/seo/tap-targets.js | failureTitle": {
|
|
1521
|
+
"message": "El tamaño de los elementos táctiles no es el adecuado"
|
|
1522
|
+
},
|
|
1523
|
+
"core/audits/seo/tap-targets.js | overlappingTargetHeader": {
|
|
1524
|
+
"message": "Elementos superpuestos"
|
|
1525
|
+
},
|
|
1526
|
+
"core/audits/seo/tap-targets.js | tapTargetHeader": {
|
|
1527
|
+
"message": "Elemento táctil"
|
|
1528
|
+
},
|
|
1529
|
+
"core/audits/seo/tap-targets.js | title": {
|
|
1530
|
+
"message": "El tamaño de los elementos táctiles es el adecuado"
|
|
1531
|
+
},
|
|
1475
1532
|
"core/audits/server-response-time.js | description": {
|
|
1476
1533
|
"message": "Mantén breve el tiempo de respuesta del servidor para el documento principal, puesto que todas las demás solicitudes dependen de él. [Más información sobre la métrica Tiempo hasta el primer byte](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)"
|
|
1477
1534
|
},
|
|
@@ -1661,7 +1718,7 @@
|
|
|
1661
1718
|
"core/audits/work-during-interaction.js | presentationDelay": {
|
|
1662
1719
|
"message": "Retraso de la presentación"
|
|
1663
1720
|
},
|
|
1664
|
-
"core/audits/work-during-interaction.js |
|
|
1721
|
+
"core/audits/work-during-interaction.js | processingTime": {
|
|
1665
1722
|
"message": "Tiempo de procesamiento"
|
|
1666
1723
|
},
|
|
1667
1724
|
"core/audits/work-during-interaction.js | title": {
|
|
@@ -1757,6 +1814,12 @@
|
|
|
1757
1814
|
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1758
1815
|
"message": "Mejoras del primer renderizado"
|
|
1759
1816
|
},
|
|
1817
|
+
"core/config/default-config.js | loadOpportunitiesGroupDescription": {
|
|
1818
|
+
"message": "Estas sugerencias pueden ayudar a que tu página cargue más rápido. No [afectan directamente](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) a la puntuación del rendimiento"
|
|
1819
|
+
},
|
|
1820
|
+
"core/config/default-config.js | loadOpportunitiesGroupTitle": {
|
|
1821
|
+
"message": "Oportunidades"
|
|
1822
|
+
},
|
|
1760
1823
|
"core/config/default-config.js | metricGroupTitle": {
|
|
1761
1824
|
"message": "Métricas"
|
|
1762
1825
|
},
|
|
@@ -236,6 +236,15 @@
|
|
|
236
236
|
"core/audits/accessibility/document-title.js | title": {
|
|
237
237
|
"message": "Dokumentissa on `<title>`-elementti"
|
|
238
238
|
},
|
|
239
|
+
"core/audits/accessibility/duplicate-id-active.js | description": {
|
|
240
|
+
"message": "Tarkentamista tukevilla elementeillä on oltava yksilöllinen `id`, jotta avustava teknologia havaitsee ne. [Katso, miten voit korjata päällekkäisiä `id`-merkintöjä](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-active)."
|
|
241
|
+
},
|
|
242
|
+
"core/audits/accessibility/duplicate-id-active.js | failureTitle": {
|
|
243
|
+
"message": "Aktiivisten, tarkennettavien elementtien `[id]`-määritteet eivät ole yksilöllisiä"
|
|
244
|
+
},
|
|
245
|
+
"core/audits/accessibility/duplicate-id-active.js | title": {
|
|
246
|
+
"message": "Aktiivisten, tarkennettavien elementtien `[id]`-määritteet ovat yksilöllisiä"
|
|
247
|
+
},
|
|
239
248
|
"core/audits/accessibility/duplicate-id-aria.js | description": {
|
|
240
249
|
"message": "ARIA-tunnisteen on oltava yksilöllinen, jotta avustavat teknologiat eivät jätä muita esiintymiä huomioimatta. [Katso, miten voit korjata päällekkäisiä ARIA-tunnuksia](https://dequeuniversity.com/rules/axe/4.8/duplicate-id-aria)."
|
|
241
250
|
},
|
|
@@ -1148,6 +1157,15 @@
|
|
|
1148
1157
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1158
|
"message": "Suurin renderöity sisältöosa"
|
|
1150
1159
|
},
|
|
1160
|
+
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1161
|
+
"message": "Asettelun muutoksen vaikutus"
|
|
1162
|
+
},
|
|
1163
|
+
"core/audits/layout-shift-elements.js | description": {
|
|
1164
|
+
"message": "Asettelun muutokset vaikuttivat eniten näihin DOM-elementteihin. Joitakin asettelun muutoksia ei välttämättä sisällytetä CLS-mittarin arvoon [ikkunoinnin](https://web.dev/articles/cls#what_is_cls) takia. [Katso, miten voit parantaa CLS:ää](https://web.dev/articles/optimize-cls)"
|
|
1165
|
+
},
|
|
1166
|
+
"core/audits/layout-shift-elements.js | title": {
|
|
1167
|
+
"message": "Vältä suuria asettelun muutoksia"
|
|
1168
|
+
},
|
|
1151
1169
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1152
1170
|
"message": "Asettelun muutospisteet"
|
|
1153
1171
|
},
|
|
@@ -1268,6 +1286,15 @@
|
|
|
1268
1286
|
"core/audits/network-server-latency.js | title": {
|
|
1269
1287
|
"message": "Palvelimen taustaviiveet"
|
|
1270
1288
|
},
|
|
1289
|
+
"core/audits/no-unload-listeners.js | description": {
|
|
1290
|
+
"message": "`unload` ei käynnisty luotettavasti, ja sen kuuntelu voi estää selaimen optimoinnin, esim. Back-Forward-välimuistin toiminnan. Käytä sen sijaan `pagehide`- tai `visibilitychange`-tapahtumia. [Lue lisää tapahtumaseurainten tyhjentämisestä](https://web.dev/articles/bfcache#never_use_the_unload_event)"
|
|
1291
|
+
},
|
|
1292
|
+
"core/audits/no-unload-listeners.js | failureTitle": {
|
|
1293
|
+
"message": "Rekisteröi (`unload`) kuuntelijan"
|
|
1294
|
+
},
|
|
1295
|
+
"core/audits/no-unload-listeners.js | title": {
|
|
1296
|
+
"message": "Ohittaa (`unload`) kuuntelijat"
|
|
1297
|
+
},
|
|
1271
1298
|
"core/audits/non-composited-animations.js | description": {
|
|
1272
1299
|
"message": "Sommittelemattomat animaatiot voivat olla huonolaatuisia ja nostaa CLS:ää. [Katso, miten voit välttää sommittelemattomia animaatioita](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)."
|
|
1273
1300
|
},
|
|
@@ -1454,6 +1481,15 @@
|
|
|
1454
1481
|
"core/audits/seo/meta-description.js | title": {
|
|
1455
1482
|
"message": "Dokumentissa on sisällönkuvauskenttä"
|
|
1456
1483
|
},
|
|
1484
|
+
"core/audits/seo/plugins.js | description": {
|
|
1485
|
+
"message": "Hakukoneet eivät voi indeksoida liitännäisten sisältöä, ja monet laitteet rajoittavat liitännäisten käyttöä tai eivät tue niitä. [Lue lisää liitännäisten välttämisestä](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1486
|
+
},
|
|
1487
|
+
"core/audits/seo/plugins.js | failureTitle": {
|
|
1488
|
+
"message": "Dokumentti käyttää laajennuksia"
|
|
1489
|
+
},
|
|
1490
|
+
"core/audits/seo/plugins.js | title": {
|
|
1491
|
+
"message": "Dokumentti välttää laajennuksia"
|
|
1492
|
+
},
|
|
1457
1493
|
"core/audits/seo/robots-txt.js | description": {
|
|
1458
1494
|
"message": "Jos robots.txt-tiedostosi on muotoiltu väärin, indeksointirobotit eivät välttämättä ymmärrä, miten haluat sivustosi indeksoitavan. [Lue lisää robots.txt-tiedostoista](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
|
|
1459
1495
|
},
|
|
@@ -1472,6 +1508,27 @@
|
|
|
1472
1508
|
"core/audits/seo/robots-txt.js | title": {
|
|
1473
1509
|
"message": "robots.txt on kelvollinen"
|
|
1474
1510
|
},
|
|
1511
|
+
"core/audits/seo/tap-targets.js | description": {
|
|
1512
|
+
"message": "Interaktiivisten elementtien, kuten painikkeiden ja linkkien, on oltava tarpeeksi suuria (48 x 48 px) tai niiden ympärillä on oltava tarpeeksi tilaa, jotta niiden napauttaminen onnistuu helposti niin, etteivät ne ole muiden elementtien päällä. [Lue lisää napautuskohteista](https://developer.chrome.com/docs/lighthouse/seo/tap-targets/)."
|
|
1513
|
+
},
|
|
1514
|
+
"core/audits/seo/tap-targets.js | displayValue": {
|
|
1515
|
+
"message": "{decimalProportion, number, percent} oikean kokoisia napautuskohteita"
|
|
1516
|
+
},
|
|
1517
|
+
"core/audits/seo/tap-targets.js | explanationViewportMetaNotOptimized": {
|
|
1518
|
+
"message": "Napautuskohteet ovat liian pieniä, koska näkymän sisällönkuvauskenttää ei ole optimoitu mobiilinäytöille"
|
|
1519
|
+
},
|
|
1520
|
+
"core/audits/seo/tap-targets.js | failureTitle": {
|
|
1521
|
+
"message": "Napautuskohteet eivät ole sopivan kokoisia"
|
|
1522
|
+
},
|
|
1523
|
+
"core/audits/seo/tap-targets.js | overlappingTargetHeader": {
|
|
1524
|
+
"message": "Päällekkäinen kohde"
|
|
1525
|
+
},
|
|
1526
|
+
"core/audits/seo/tap-targets.js | tapTargetHeader": {
|
|
1527
|
+
"message": "Napautuskohde"
|
|
1528
|
+
},
|
|
1529
|
+
"core/audits/seo/tap-targets.js | title": {
|
|
1530
|
+
"message": "Napautuskohteet ovat sopivan kokoisia"
|
|
1531
|
+
},
|
|
1475
1532
|
"core/audits/server-response-time.js | description": {
|
|
1476
1533
|
"message": "Varmista, että päädokumentin palvelimen vasteaika on lyhyt, koska kaikki muut pyynnöt ovat riippuvaisia siitä. [Lue lisää Ensimmäistä tavua edeltävä aika ‐mittarista](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)."
|
|
1477
1534
|
},
|
|
@@ -1661,7 +1718,7 @@
|
|
|
1661
1718
|
"core/audits/work-during-interaction.js | presentationDelay": {
|
|
1662
1719
|
"message": "Esityksen viive"
|
|
1663
1720
|
},
|
|
1664
|
-
"core/audits/work-during-interaction.js |
|
|
1721
|
+
"core/audits/work-during-interaction.js | processingTime": {
|
|
1665
1722
|
"message": "Käsittelyaika"
|
|
1666
1723
|
},
|
|
1667
1724
|
"core/audits/work-during-interaction.js | title": {
|
|
@@ -1757,6 +1814,12 @@
|
|
|
1757
1814
|
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
|
|
1758
1815
|
"message": "Ensimmäistä renderöintiä koskevat parannusehdotukset"
|
|
1759
1816
|
},
|
|
1817
|
+
"core/config/default-config.js | loadOpportunitiesGroupDescription": {
|
|
1818
|
+
"message": "Nämä ehdotukset voivat auttaa sivua latautumaan nopeammin. Ne eivät [suoraan vaikuta](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) tehokkuusprosenttiin."
|
|
1819
|
+
},
|
|
1820
|
+
"core/config/default-config.js | loadOpportunitiesGroupTitle": {
|
|
1821
|
+
"message": "Suositukset"
|
|
1822
|
+
},
|
|
1760
1823
|
"core/config/default-config.js | metricGroupTitle": {
|
|
1761
1824
|
"message": "Tiedot"
|
|
1762
1825
|
},
|