lighthouse 10.4.0-dev.20230725 → 10.4.0-dev.20230727
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/test/smokehouse/lighthouse-runners/bundle.js +1 -1
- package/core/audits/accessibility/aria-allowed-role.d.ts +10 -0
- package/core/audits/accessibility/aria-allowed-role.js +46 -0
- package/core/audits/accessibility/image-redundant-alt.d.ts +10 -0
- package/core/audits/accessibility/image-redundant-alt.js +45 -0
- package/core/audits/accessibility/label-content-name-mismatch.d.ts +10 -0
- package/core/audits/accessibility/label-content-name-mismatch.js +44 -0
- package/core/audits/accessibility/skip-link.d.ts +10 -0
- package/core/audits/accessibility/skip-link.js +43 -0
- package/core/audits/accessibility/table-duplicate-name.d.ts +10 -0
- package/core/audits/accessibility/table-duplicate-name.js +44 -0
- package/core/audits/accessibility/target-size.js +1 -1
- package/core/audits/metrics/{experimental-interaction-to-next-paint.d.ts → interaction-to-next-paint.d.ts} +3 -3
- package/core/audits/metrics/{experimental-interaction-to-next-paint.js → interaction-to-next-paint.js} +3 -3
- package/core/audits/work-during-interaction.js +2 -2
- package/core/config/default-config.js +49 -39
- package/core/config/validation.d.ts +2 -2
- package/core/config/validation.js +4 -4
- package/core/gather/driver/network-monitor.js +0 -1
- package/core/gather/gatherers/accessibility.js +5 -0
- package/core/lib/stack-packs.js +4 -0
- package/package.json +5 -5
- package/readme.md +1 -1
- package/shared/localization/locales/ar-XB.json +0 -3
- package/shared/localization/locales/ar.json +0 -3
- package/shared/localization/locales/bg.json +0 -3
- package/shared/localization/locales/ca.json +0 -3
- package/shared/localization/locales/cs.json +0 -3
- package/shared/localization/locales/da.json +0 -3
- package/shared/localization/locales/de.json +0 -3
- package/shared/localization/locales/el.json +0 -3
- package/shared/localization/locales/en-GB.json +0 -3
- package/shared/localization/locales/en-US.json +94 -7
- package/shared/localization/locales/en-XA.json +0 -3
- package/shared/localization/locales/en-XL.json +94 -7
- package/shared/localization/locales/es-419.json +0 -3
- package/shared/localization/locales/es.json +0 -3
- package/shared/localization/locales/fi.json +0 -3
- package/shared/localization/locales/fil.json +0 -3
- package/shared/localization/locales/fr.json +0 -3
- package/shared/localization/locales/he.json +0 -3
- package/shared/localization/locales/hi.json +0 -3
- package/shared/localization/locales/hr.json +0 -3
- package/shared/localization/locales/hu.json +0 -3
- package/shared/localization/locales/id.json +0 -3
- package/shared/localization/locales/it.json +0 -3
- package/shared/localization/locales/ja.json +0 -3
- package/shared/localization/locales/ko.json +0 -3
- package/shared/localization/locales/lt.json +0 -3
- package/shared/localization/locales/lv.json +0 -3
- package/shared/localization/locales/nl.json +0 -3
- package/shared/localization/locales/no.json +0 -3
- package/shared/localization/locales/pl.json +0 -3
- package/shared/localization/locales/pt-PT.json +0 -3
- package/shared/localization/locales/pt.json +0 -3
- package/shared/localization/locales/ro.json +0 -3
- package/shared/localization/locales/ru.json +0 -3
- package/shared/localization/locales/sk.json +0 -3
- package/shared/localization/locales/sl.json +0 -3
- package/shared/localization/locales/sr-Latn.json +0 -3
- package/shared/localization/locales/sr.json +0 -3
- package/shared/localization/locales/sv.json +0 -3
- package/shared/localization/locales/ta.json +0 -3
- package/shared/localization/locales/te.json +0 -3
- package/shared/localization/locales/th.json +0 -3
- package/shared/localization/locales/tr.json +0 -3
- package/shared/localization/locales/uk.json +0 -3
- package/shared/localization/locales/vi.json +0 -3
- package/shared/localization/locales/zh-HK.json +0 -3
- package/shared/localization/locales/zh-TW.json +0 -3
- package/shared/localization/locales/zh.json +0 -3
- package/tsconfig.json +0 -1
- package/types/gatherer.d.ts +2 -2
- package/types/lhr/settings.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "10.4.0-dev.
|
|
4
|
+
"version": "10.4.0-dev.20230727",
|
|
5
5
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
6
6
|
"main": "./core/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"smokehouse": "./cli/test/smokehouse/frontends/smokehouse-bin.js"
|
|
11
11
|
},
|
|
12
12
|
"engines": {
|
|
13
|
-
"node": ">=
|
|
13
|
+
"node": ">=18.16"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"prepack": "yarn build-report --standalone --flow --esm && yarn build-types",
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
173
173
|
"tabulator-tables": "^4.9.3",
|
|
174
174
|
"terser": "^5.18.2",
|
|
175
|
-
"testdouble": "^3.
|
|
175
|
+
"testdouble": "^3.18.0",
|
|
176
176
|
"typed-query-selector": "^2.6.1",
|
|
177
177
|
"typescript": "^5.0.4",
|
|
178
178
|
"wait-for-expect": "^3.0.2",
|
|
@@ -189,9 +189,9 @@
|
|
|
189
189
|
"http-link-header": "^1.1.1",
|
|
190
190
|
"intl-messageformat": "^4.4.0",
|
|
191
191
|
"jpeg-js": "^0.4.4",
|
|
192
|
-
"js-library-detector": "^6.
|
|
192
|
+
"js-library-detector": "^6.7.0",
|
|
193
193
|
"lighthouse-logger": "^2.0.1",
|
|
194
|
-
"lighthouse-stack-packs": "1.
|
|
194
|
+
"lighthouse-stack-packs": "1.12.0",
|
|
195
195
|
"lodash": "^4.17.21",
|
|
196
196
|
"lookup-closest-locale": "6.2.0",
|
|
197
197
|
"metaviewport-parser": "0.3.0",
|
package/readme.md
CHANGED
|
@@ -52,7 +52,7 @@ The Chrome extension was available prior to Lighthouse being available in Chrome
|
|
|
52
52
|
|
|
53
53
|
The Node CLI provides the most flexibility in how Lighthouse runs can be configured and reported. Users who want more advanced usage, or want to run Lighthouse in an automated fashion should use the Node CLI.
|
|
54
54
|
|
|
55
|
-
_Lighthouse requires Node
|
|
55
|
+
_Lighthouse requires Node 18 LTS (18.x) or later._
|
|
56
56
|
|
|
57
57
|
**Installation**:
|
|
58
58
|
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more about the Cumulative Layout Shift metric](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint marks the time at which the first text or image is painted. [Learn more about the First Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "يحدِّد مقياس \"متغيّرات التصميم التراكمية\" مقدار حركة العناصر المرئية في إطار العرض. [مزيد من المعلومات حول مقياس \"متغيّرات التصميم التراكمية\"](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "يحدِّد مقياس \"مدة عرض الاستجابة لتفاعل المستخدم\" سرعة استجابة الصفحة والمدّة التي تستغرِقها الصفحة للاستجابة بشكل واضح للبيانات التي أدخلها المستخدم. [مزيد من المعلومات حول مقياس \"مدة عرض الاستجابة لتفاعل المستخدم\"](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "يحدِّد مقياس \"سرعة عرض المحتوى على الصفحة\" الوقت الذي يُعرَض فيه أول نص أو صورة من محتوى الصفحة. [مزيد من المعلومات حول مقياس \"سرعة عرض المحتوى على الصفحة\"](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Показателят „Кумулативни структурни промени (CLS)“ измерва движението на видимите елементи в прозоречния изглед. [Научете повече за този показател](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Показателят „Изобразяване след взаимодействие“ измерва колко време е необходимо на страницата, за да реагира визуално след входящи данни от действие на потребител. [Научете повече за този показател](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Показателят „Първо изобразяване на съдържание (FCP)“ указва след колко време се изобразява първият текстов или графичен елемент. [Научете повече за този показател](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "El canvi de disseny acumulatiu mesura el moviment d'elements visibles a la finestra gràfica. [Obtén més informació sobre la mètrica Canvi de disseny acumulatiu](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "La mètrica Interacció amb la renderització següent mesura la capacitat de resposta de la pàgina; és a dir, el temps que tarda la pàgina a respondre visiblement a l'entrada de l'usuari. [Obtén més informació sobre la mètrica Interacció amb la renderització següent](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "La mètrica Primera renderització de contingut marca el moment en què es renderitza el primer text o la primera imatge. [Obtén més informació sobre la mètrica Primera renderització de contingut](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Kumulativní změna rozvržení měří přesuny viditelných prvků v zobrazované oblasti. [Další informace o metrice Kumulativní změna rozvržení](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Doba od interakce k dalšímu vykreslení měří rychlost odezvy stránky, tj. za jak dlouho stránka viditelně zareaguje na uživatelský vstup. [Další informace o metrice Doba od interakce k dalšímu vykreslení](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "První vykreslení obsahu je okamžik vykreslení prvního textu nebo obrázku. [Další informace o metrice První vykreslení obsahu (FCP)](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Akkumuleret layoutskift måler synlige elementers bevægelse i det synlige område. [Få flere oplysninger om metric'en Akkumuleret layoutskift](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaktion indtil næste visning måler sidens svartid, dvs. hvor lang tid det tager, før siden reagerer på brugerinput på en synlig måde. [Få flere oplysninger om metric'en for interaktion indtil næste visning](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Første visning af indhold markerer tidspunktet, hvor den første tekst eller det første billede vises. [Få flere oplysninger om metric'en Første visning af indhold](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "„Cumulative Layout Shift“ misst die Bewegung sichtbarer Elemente innerhalb des Darstellungsbereichs. [Weitere Informationen zum Messwert „Cumulative Layout Shift“.](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "„Interaction to Next Paint“ misst die Reaktionsfähigkeit der Seite, d. h. wie lange die Seite braucht, um sichtbar auf Nutzereingaben zu reagieren. [Weitere Informationen zum Messwert „Interaction to Next Paint“.](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "„First Contentful Paint“ gibt an, wann der erste Text oder das erste Bild gerendert wird. [Weitere Informationen zum Messwert „First Contentful Paint“.](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Οι Συνολικές αλλαγές διάταξης μετρούν την κίνηση των ορατών στοιχείων εντός της θύρας προβολής. [Μάθετε περισσότερα σχετικά με τη μέτρηση Συνολικές αλλαγές διάταξης](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Το Interaction to Next Paint μετρά την ανταπόκριση της σελίδας και τον χρόνο που χρειάζεται η σελίδα για να ανταποκριθεί εμφανώς στην εισαγωγή στοιχείων από τους χρήστες. [Μάθετε περισσότερα σχετικά με τη μέτρηση Interaction to Next Paint](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Η Πρώτη σχεδίαση περιεχομένου (FCP) επισημαίνει πότε σχεδιάζεται το πρώτο κείμενο ή η πρώτη εικόνα. [Μάθετε περισσότερα σχετικά με τη μέτρηση Πρώτη σχεδίαση περιεχομένου (FCP)](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative layout shift measures the movement of visible elements within the viewport. [Learn more about the cumulative layout shift metric](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint marks the time at which the first text or image is painted. [Learn more about the First Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -17,6 +17,15 @@
|
|
|
17
17
|
"core/audits/accessibility/aria-allowed-attr.js | title": {
|
|
18
18
|
"message": "`[aria-*]` attributes match their roles"
|
|
19
19
|
},
|
|
20
|
+
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
+
"message": "ARIA `role`s enable assistive technologies to know the role of each element on the web page. If the `role` values are misspelled, not existing ARIA `role` values, or abstract roles, then the purpose of the element will not be communicated to users of assistive technologies. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.7/aria-allowed-roles)."
|
|
22
|
+
},
|
|
23
|
+
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
|
+
"message": "Values assigned to `role=\"\"` are not valid ARIA roles."
|
|
25
|
+
},
|
|
26
|
+
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
+
"message": "Values assigned to `role=\"\"` are valid ARIA roles."
|
|
28
|
+
},
|
|
20
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
21
30
|
"message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to make command elements more accessible](https://dequeuniversity.com/rules/axe/4.7/aria-command-name)."
|
|
22
31
|
},
|
|
@@ -326,6 +335,15 @@
|
|
|
326
335
|
"core/audits/accessibility/image-alt.js | title": {
|
|
327
336
|
"message": "Image elements have `[alt]` attributes"
|
|
328
337
|
},
|
|
338
|
+
"core/audits/accessibility/image-redundant-alt.js | description": {
|
|
339
|
+
"message": "Informative elements should aim for short, descriptive alternative text. Alternative text that is exactly the same as the text adjacent to the link or image is potentially confusing for screen reader users, because the text will be read twice. [Learn more about the `alt` attribute](https://dequeuniversity.com/rules/axe/4.7/image-redundant-alt)."
|
|
340
|
+
},
|
|
341
|
+
"core/audits/accessibility/image-redundant-alt.js | failureTitle": {
|
|
342
|
+
"message": "Image elements have `[alt]` attributes that are redundant text."
|
|
343
|
+
},
|
|
344
|
+
"core/audits/accessibility/image-redundant-alt.js | title": {
|
|
345
|
+
"message": "Image elements do not have `[alt]` attributes that are redundant text."
|
|
346
|
+
},
|
|
329
347
|
"core/audits/accessibility/input-button-name.js | description": {
|
|
330
348
|
"message": "Adding discernable and accessible text to input buttons may help screen reader users understand the purpose of the input button. [Learn more about input buttons](https://dequeuniversity.com/rules/axe/4.7/input-button-name)."
|
|
331
349
|
},
|
|
@@ -344,6 +362,15 @@
|
|
|
344
362
|
"core/audits/accessibility/input-image-alt.js | title": {
|
|
345
363
|
"message": "`<input type=\"image\">` elements have `[alt]` text"
|
|
346
364
|
},
|
|
365
|
+
"core/audits/accessibility/label-content-name-mismatch.js | description": {
|
|
366
|
+
"message": "Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. [Learn more about accessible names](https://dequeuniversity.com/rules/axe/4.7/label-content-name-mismatch)."
|
|
367
|
+
},
|
|
368
|
+
"core/audits/accessibility/label-content-name-mismatch.js | failureTitle": {
|
|
369
|
+
"message": "Elements with visible text labels do not have matching accessible names."
|
|
370
|
+
},
|
|
371
|
+
"core/audits/accessibility/label-content-name-mismatch.js | title": {
|
|
372
|
+
"message": "Elements with visible text labels have matching accessible names."
|
|
373
|
+
},
|
|
347
374
|
"core/audits/accessibility/label.js | description": {
|
|
348
375
|
"message": "Labels ensure that form controls are announced properly by assistive technologies, like screen readers. [Learn more about form element labels](https://dequeuniversity.com/rules/axe/4.7/label)."
|
|
349
376
|
},
|
|
@@ -434,6 +461,15 @@
|
|
|
434
461
|
"core/audits/accessibility/select-name.js | title": {
|
|
435
462
|
"message": "Select elements have associated label elements."
|
|
436
463
|
},
|
|
464
|
+
"core/audits/accessibility/skip-link.js | description": {
|
|
465
|
+
"message": "Including a skip link can help users skip to the main content to save time. [Learn more about skip links](https://dequeuniversity.com/rules/axe/4.7/skip-link)."
|
|
466
|
+
},
|
|
467
|
+
"core/audits/accessibility/skip-link.js | failureTitle": {
|
|
468
|
+
"message": "Skip links are not focusable."
|
|
469
|
+
},
|
|
470
|
+
"core/audits/accessibility/skip-link.js | title": {
|
|
471
|
+
"message": "Skip links are focusable."
|
|
472
|
+
},
|
|
437
473
|
"core/audits/accessibility/tabindex.js | description": {
|
|
438
474
|
"message": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more about the `tabindex` attribute](https://dequeuniversity.com/rules/axe/4.7/tabindex)."
|
|
439
475
|
},
|
|
@@ -443,6 +479,15 @@
|
|
|
443
479
|
"core/audits/accessibility/tabindex.js | title": {
|
|
444
480
|
"message": "No element has a `[tabindex]` value greater than 0"
|
|
445
481
|
},
|
|
482
|
+
"core/audits/accessibility/table-duplicate-name.js | description": {
|
|
483
|
+
"message": "The summary attribute should describe the table structure, while `<caption>` should have the onscreen title. Accurate table mark-up helps users of screen readers. [Learn more about summary and caption](https://dequeuniversity.com/rules/axe/4.7/table-duplicate-name)."
|
|
484
|
+
},
|
|
485
|
+
"core/audits/accessibility/table-duplicate-name.js | failureTitle": {
|
|
486
|
+
"message": "Tables have the same content in the summary attribute and `<caption>.`"
|
|
487
|
+
},
|
|
488
|
+
"core/audits/accessibility/table-duplicate-name.js | title": {
|
|
489
|
+
"message": "Tables have different content in the summary attribute and `<caption>`."
|
|
490
|
+
},
|
|
446
491
|
"core/audits/accessibility/table-fake-caption.js | description": {
|
|
447
492
|
"message": "Screen readers have features to make navigating tables easier. Ensuring that tables use the actual caption element instead of cells with the `[colspan]` attribute may improve the experience for screen reader users. [Learn more about captions](https://dequeuniversity.com/rules/axe/4.7/table-fake-caption)."
|
|
448
493
|
},
|
|
@@ -453,7 +498,7 @@
|
|
|
453
498
|
"message": "Tables use `<caption>` instead of cells with the `[colspan]` attribute to indicate a caption."
|
|
454
499
|
},
|
|
455
500
|
"core/audits/accessibility/target-size.js | description": {
|
|
456
|
-
"message": "Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls activate the targets. [Learn more about touch targets](https://dequeuniversity.com/rules/axe/4.7/target-size)."
|
|
501
|
+
"message": "Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. [Learn more about touch targets](https://dequeuniversity.com/rules/axe/4.7/target-size)."
|
|
457
502
|
},
|
|
458
503
|
"core/audits/accessibility/target-size.js | failureTitle": {
|
|
459
504
|
"message": "Touch targets do not have sufficient size or spacing."
|
|
@@ -1181,15 +1226,15 @@
|
|
|
1181
1226
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1182
1227
|
"message": "Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more about the Cumulative Layout Shift metric](https://web.dev/cls/)."
|
|
1183
1228
|
},
|
|
1184
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1185
|
-
"message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
|
|
1186
|
-
},
|
|
1187
1229
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1188
1230
|
"message": "First Contentful Paint marks the time at which the first text or image is painted. [Learn more about the First Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1189
1231
|
},
|
|
1190
1232
|
"core/audits/metrics/first-meaningful-paint.js | description": {
|
|
1191
1233
|
"message": "First Meaningful Paint measures when the primary content of a page is visible. [Learn more about the First Meaningful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/)."
|
|
1192
1234
|
},
|
|
1235
|
+
"core/audits/metrics/interaction-to-next-paint.js | description": {
|
|
1236
|
+
"message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
|
|
1237
|
+
},
|
|
1193
1238
|
"core/audits/metrics/interactive.js | description": {
|
|
1194
1239
|
"message": "Time to Interactive is the amount of time it takes for the page to become fully interactive. [Learn more about the Time to Interactive metric](https://developer.chrome.com/docs/lighthouse/performance/interactive/)."
|
|
1195
1240
|
},
|
|
@@ -2817,7 +2862,7 @@
|
|
|
2817
2862
|
"message": "Install [a Drupal module](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A67&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=%22lazy+load%22&solrsort=iss_project_release_usage+desc&op=Search) that can lazy load images. Such modules provide the ability to defer any offscreen images to improve performance."
|
|
2818
2863
|
},
|
|
2819
2864
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | render-blocking-resources": {
|
|
2820
|
-
"message": "Consider using a module to inline critical CSS and JavaScript,
|
|
2865
|
+
"message": "Consider using a module to inline critical CSS and JavaScript, and use the defer attribute for non-critical CSS or JavaScript."
|
|
2821
2866
|
},
|
|
2822
2867
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | server-response-time": {
|
|
2823
2868
|
"message": "Themes, modules, and server specifications all contribute to server response time. Consider finding a more optimized theme, carefully selecting an optimization module, and/or upgrading your server. Your hosting servers should make use of PHP opcode caching, memory-caching to reduce database query times such as Redis or Memcached, as well as optimized application logic to prepare pages faster."
|
|
@@ -2826,10 +2871,10 @@
|
|
|
2826
2871
|
"message": "Consider using [Responsive Image Styles](https://www.drupal.org/docs/8/mobile-guide/responsive-images-in-drupal-8) to reduce the size of images loaded on your page. If you are using Views to show multiple content items on a page, consider implementing pagination to limit the number of content items shown on a given page."
|
|
2827
2872
|
},
|
|
2828
2873
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-css": {
|
|
2829
|
-
"message": "Ensure you have enabled \"Aggregate CSS files\" in the \"Administration » Configuration » Development\" page.
|
|
2874
|
+
"message": "Ensure you have enabled \"Aggregate CSS files\" in the \"Administration » Configuration » Development\" page. Ensure your Drupal site is running at least Drupal 10.1 for improved asset aggregation support."
|
|
2830
2875
|
},
|
|
2831
2876
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-javascript": {
|
|
2832
|
-
"message": "Ensure you have enabled \"Aggregate JavaScript files\" in the \"Administration » Configuration » Development\" page.
|
|
2877
|
+
"message": "Ensure you have enabled \"Aggregate JavaScript files\" in the \"Administration » Configuration » Development\" page. Ensure your Drupal site is running at least Drupal 10.1 for improved asset aggregation support."
|
|
2833
2878
|
},
|
|
2834
2879
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unused-css-rules": {
|
|
2835
2880
|
"message": "Consider removing unused CSS rules and only attach the needed Drupal libraries to the relevant page or component in a page. See the [Drupal documentation link](https://www.drupal.org/docs/8/creating-custom-modules/adding-stylesheets-css-and-javascript-js-to-a-drupal-8-module#library) for details. To identify attached libraries that are adding extraneous CSS, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the theme/module responsible from the URL of the stylesheet when CSS aggregation is disabled in your Drupal site. Look out for themes/modules that have many stylesheets in the list which have a lot of red in code coverage. A theme/module should only enqueue a stylesheet if it is actually used on the page."
|
|
@@ -3029,6 +3074,48 @@
|
|
|
3029
3074
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
3030
3075
|
"message": "Enable compression on your Next.js server. [Learn more](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
|
3031
3076
|
},
|
|
3077
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | dom-size": {
|
|
3078
|
+
"message": "Contact your account manager to enable [`HTML Lazy Load`](https://support.nitropack.io/hc/en-us/articles/17144942904337). Configuring it will prioritize and optimize your page rendering performance."
|
|
3079
|
+
},
|
|
3080
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | font-display": {
|
|
3081
|
+
"message": "Use the [`Override Font Rendering Behavior`](https://support.nitropack.io/hc/en-us/articles/16547358865041) option in NitroPack to set a desired value for the CSS font-display rule."
|
|
3082
|
+
},
|
|
3083
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | modern-image-formats": {
|
|
3084
|
+
"message": "Use [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/16547237162513) to automatically convert your images to WebP."
|
|
3085
|
+
},
|
|
3086
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | offscreen-images": {
|
|
3087
|
+
"message": "Defer offscreen images by enabling [`Automatic Image Lazy Loading`](https://support.nitropack.io/hc/en-us/articles/12457493524369-NitroPack-Lazy-Loading-Feature-for-Images)."
|
|
3088
|
+
},
|
|
3089
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | render-blocking-resources": {
|
|
3090
|
+
"message": "Enable [`Remove render-blocking resources`](https://support.nitropack.io/hc/en-us/articles/13820893500049-How-to-Deal-with-Render-Blocking-Resources-in-NitroPack) in NitroPack for faster initial load times."
|
|
3091
|
+
},
|
|
3092
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | server-response-time": {
|
|
3093
|
+
"message": "Improve server response time and optimize perceived performance by activating [`Instant Load`](https://support.nitropack.io/hc/en-us/articles/16547340617361)."
|
|
3094
|
+
},
|
|
3095
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-css": {
|
|
3096
|
+
"message": "Enable [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) in your Caching settings to reduce the size of your CSS, HTML, and JavaScript files for faster load times."
|
|
3097
|
+
},
|
|
3098
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-javascript": {
|
|
3099
|
+
"message": "Enable [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) in your Caching settings to reduce the size of your JS, HTML, and CSS files for faster load times."
|
|
3100
|
+
},
|
|
3101
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-css-rules": {
|
|
3102
|
+
"message": "Enable [`Reduce Unused CSS`](https://support.nitropack.io/hc/en-us/articles/360020418457-Reduce-Unused-CSS) to remove CSS rules that are not applicable to this page."
|
|
3103
|
+
},
|
|
3104
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-javascript": {
|
|
3105
|
+
"message": "Configure [`Delayed Scripts`](https://support.nitropack.io/hc/en-us/articles/1500002600942-Delayed-Scripts) in NitroPack to delay loading of scripts until they are needed."
|
|
3106
|
+
},
|
|
3107
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-long-cache-ttl": {
|
|
3108
|
+
"message": "Go to the [`Improve Server Response Time`](https://support.nitropack.io/hc/en-us/articles/1500002321821-Improve-Server-Response-Time) feature in the `Caching` menu and adjust your page cache expiration time to improve loading times and user experience."
|
|
3109
|
+
},
|
|
3110
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-optimized-images": {
|
|
3111
|
+
"message": "Automatically compress, optimize, and convert your images into WebP by enabling the [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/14177271695121-How-to-serve-images-in-next-gen-formats-using-NitroPack) setting."
|
|
3112
|
+
},
|
|
3113
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-responsive-images": {
|
|
3114
|
+
"message": "Enable [`Adaptive Image Sizing`](https://support.nitropack.io/hc/en-us/articles/10123833029905-How-to-Enable-Adaptive-Image-Sizing-For-Your-Site) to preemptively optimize your images and make them match the dimensions of the containers they’re displayed in across all devices."
|
|
3115
|
+
},
|
|
3116
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-text-compression": {
|
|
3117
|
+
"message": "Use [`Gzip compression`](https://support.nitropack.io/hc/en-us/articles/13229297479313-Enabling-GZIP-compression) in NitroPack to reduce the size of the files that are sent to the browser."
|
|
3118
|
+
},
|
|
3032
3119
|
"node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
|
|
3033
3120
|
"message": "Use the `nuxt/image` component and set `format=\"webp\"`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#format)."
|
|
3034
3121
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "[Çûmûļåţîvé Ļåýöûţ Šĥîƒţ méåšûŕéš ţĥé mövéméñţ öƒ vîšîбļé éļéméñţš ŵîţĥîñ ţĥé vîéŵþöŕţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Çûmûļåţîvé Ļåýöûţ Šĥîƒţ méţŕîçᐅ](https://web.dev/cls/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "[Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méåšûŕéš þåĝé ŕéšþöñšîvéñéšš, ĥöŵ ļöñĝ îţ ţåķéš ţĥé þåĝé ţö vîšîбļý ŕéšþöñð ţö ûšéŕ îñþûţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méţŕîçᐅ](https://web.dev/inp/)ᐊ. 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]"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "[Fîŕšţ Çöñţéñţƒûļ Þåîñţ måŕķš ţĥé ţîmé åţ ŵĥîçĥ ţĥé ƒîŕšţ ţéxţ öŕ îmåĝé îš þåîñţéð. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Fîŕšţ Çöñţéñţƒûļ Þåîñţ méţŕîçᐅ](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone]"
|
|
1117
1114
|
},
|
|
@@ -17,6 +17,15 @@
|
|
|
17
17
|
"core/audits/accessibility/aria-allowed-attr.js | title": {
|
|
18
18
|
"message": "`[aria-*]` ât́t̂ŕîb́ût́êś m̂át̂ćĥ t́ĥéîŕ r̂ól̂éŝ"
|
|
19
19
|
},
|
|
20
|
+
"core/audits/accessibility/aria-allowed-role.js | description": {
|
|
21
|
+
"message": "ÂŔÎÁ `role`ŝ én̂áb̂ĺê áŝśîśt̂ív̂é t̂éĉh́n̂ól̂óĝíêś t̂ó k̂ńôẃ t̂h́ê ŕôĺê óf̂ éâćĥ él̂ém̂én̂t́ ôń t̂h́ê ẃêb́ p̂áĝé. Îf́ t̂h́ê `role` v́âĺûéŝ ár̂é m̂íŝśp̂él̂ĺêd́, n̂ót̂ éx̂íŝt́îńĝ ÁR̂ÍÂ `role` v́âĺûéŝ, ór̂ áb̂śt̂ŕâćt̂ ŕôĺêś, t̂h́êń t̂h́ê ṕûŕp̂óŝé ôf́ t̂h́ê él̂ém̂én̂t́ ŵíl̂ĺ n̂ót̂ b́ê ćôḿm̂ún̂íĉát̂éd̂ t́ô úŝér̂ś ôf́ âśŝíŝt́îv́ê t́êćĥńôĺôǵîéŝ. [Ĺêár̂ń m̂ór̂é âb́ôút̂ ÁR̂ÍÂ ŕôĺêś](https://dequeuniversity.com/rules/axe/4.7/aria-allowed-roles)."
|
|
22
|
+
},
|
|
23
|
+
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
|
|
24
|
+
"message": "V̂ál̂úêś âśŝíĝńêd́ t̂ó `role=\"\"` âŕê ńôt́ v̂ál̂íd̂ ÁR̂ÍÂ ŕôĺêś."
|
|
25
|
+
},
|
|
26
|
+
"core/audits/accessibility/aria-allowed-role.js | title": {
|
|
27
|
+
"message": "V̂ál̂úêś âśŝíĝńêd́ t̂ó `role=\"\"` âŕê v́âĺîd́ ÂŔÎÁ r̂ól̂éŝ."
|
|
28
|
+
},
|
|
20
29
|
"core/audits/accessibility/aria-command-name.js | description": {
|
|
21
30
|
"message": "Ŵh́êń âń êĺêḿêńt̂ d́ôéŝń't̂ h́âv́ê án̂ áĉćêśŝíb̂ĺê ńâḿê, śĉŕêén̂ ŕêád̂ér̂ś âńn̂óûńĉé ît́ ŵít̂h́ â ǵêńêŕîć n̂ám̂é, m̂ák̂ín̂ǵ ît́ ûńûśâb́l̂é f̂ór̂ úŝér̂ś ŵh́ô ŕêĺŷ ón̂ śĉŕêén̂ ŕêád̂ér̂ś. [L̂éâŕn̂ h́ôẃ t̂ó m̂ák̂é ĉóm̂ḿâńd̂ él̂ém̂én̂t́ŝ ḿôŕê áĉćêśŝíb̂ĺê](https://dequeuniversity.com/rules/axe/4.7/aria-command-name)."
|
|
22
31
|
},
|
|
@@ -326,6 +335,15 @@
|
|
|
326
335
|
"core/audits/accessibility/image-alt.js | title": {
|
|
327
336
|
"message": "Îḿâǵê él̂ém̂én̂t́ŝ h́âv́ê `[alt]` át̂t́r̂íb̂út̂éŝ"
|
|
328
337
|
},
|
|
338
|
+
"core/audits/accessibility/image-redundant-alt.js | description": {
|
|
339
|
+
"message": "Îńf̂ór̂ḿât́îv́ê él̂ém̂én̂t́ŝ śĥóûĺd̂ áîḿ f̂ór̂ śĥór̂t́, d̂éŝćr̂íp̂t́îv́ê ál̂t́êŕn̂át̂ív̂é t̂éx̂t́. Âĺt̂ér̂ńât́îv́ê t́êx́t̂ t́ĥát̂ íŝ éx̂áĉt́l̂ý t̂h́ê śâḿê áŝ t́ĥé t̂éx̂t́ âd́ĵáĉén̂t́ t̂ó t̂h́ê ĺîńk̂ ór̂ ím̂áĝé îś p̂ót̂én̂t́îál̂ĺŷ ćôńf̂úŝín̂ǵ f̂ór̂ śĉŕêén̂ ŕêád̂ér̂ úŝér̂ś, b̂éĉáûśê t́ĥé t̂éx̂t́ ŵíl̂ĺ b̂é r̂éâd́ t̂ẃîćê. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ĥé `alt` ât́t̂ŕîb́ût́ê](https://dequeuniversity.com/rules/axe/4.7/image-redundant-alt)."
|
|
340
|
+
},
|
|
341
|
+
"core/audits/accessibility/image-redundant-alt.js | failureTitle": {
|
|
342
|
+
"message": "Îḿâǵê él̂ém̂én̂t́ŝ h́âv́ê `[alt]` át̂t́r̂íb̂út̂éŝ t́ĥát̂ ár̂é r̂éd̂ún̂d́âńt̂ t́êx́t̂."
|
|
343
|
+
},
|
|
344
|
+
"core/audits/accessibility/image-redundant-alt.js | title": {
|
|
345
|
+
"message": "Îḿâǵê él̂ém̂én̂t́ŝ d́ô ńôt́ ĥáv̂é `[alt]` ât́t̂ŕîb́ût́êś t̂h́ât́ âŕê ŕêd́ûńd̂án̂t́ t̂éx̂t́."
|
|
346
|
+
},
|
|
329
347
|
"core/audits/accessibility/input-button-name.js | description": {
|
|
330
348
|
"message": "Âd́d̂ín̂ǵ d̂íŝćêŕn̂áb̂ĺê án̂d́ âćĉéŝśîb́l̂é t̂éx̂t́ t̂ó îńp̂út̂ b́ût́t̂ón̂ś m̂áŷ h́êĺp̂ śĉŕêén̂ ŕêád̂ér̂ úŝér̂ś ûńd̂ér̂śt̂án̂d́ t̂h́ê ṕûŕp̂óŝé ôf́ t̂h́ê ín̂ṕût́ b̂út̂t́ôń. [L̂éâŕn̂ ḿôŕê áb̂óût́ îńp̂út̂ b́ût́t̂ón̂ś](https://dequeuniversity.com/rules/axe/4.7/input-button-name)."
|
|
331
349
|
},
|
|
@@ -344,6 +362,15 @@
|
|
|
344
362
|
"core/audits/accessibility/input-image-alt.js | title": {
|
|
345
363
|
"message": "`<input type=\"image\">` êĺêḿêńt̂ś ĥáv̂é `[alt]` t̂éx̂t́"
|
|
346
364
|
},
|
|
365
|
+
"core/audits/accessibility/label-content-name-mismatch.js | description": {
|
|
366
|
+
"message": "V̂íŝíb̂ĺê t́êx́t̂ ĺâb́êĺŝ t́ĥát̂ d́ô ńôt́ m̂át̂ćĥ t́ĥé âćĉéŝśîb́l̂é n̂ám̂é ĉán̂ ŕêśûĺt̂ ín̂ á ĉón̂f́ûśîńĝ éx̂ṕêŕîén̂ćê f́ôŕ ŝćr̂éêń r̂éâd́êŕ ûśêŕŝ. [Ĺêár̂ń m̂ór̂é âb́ôút̂ áĉćêśŝíb̂ĺê ńâḿêś](https://dequeuniversity.com/rules/axe/4.7/label-content-name-mismatch)."
|
|
367
|
+
},
|
|
368
|
+
"core/audits/accessibility/label-content-name-mismatch.js | failureTitle": {
|
|
369
|
+
"message": "Êĺêḿêńt̂ś ŵít̂h́ v̂íŝíb̂ĺê t́êx́t̂ ĺâb́êĺŝ d́ô ńôt́ ĥáv̂é m̂át̂ćĥín̂ǵ âćĉéŝśîb́l̂é n̂ám̂éŝ."
|
|
370
|
+
},
|
|
371
|
+
"core/audits/accessibility/label-content-name-mismatch.js | title": {
|
|
372
|
+
"message": "Êĺêḿêńt̂ś ŵít̂h́ v̂íŝíb̂ĺê t́êx́t̂ ĺâb́êĺŝ h́âv́ê ḿât́ĉh́îńĝ áĉćêśŝíb̂ĺê ńâḿêś."
|
|
373
|
+
},
|
|
347
374
|
"core/audits/accessibility/label.js | description": {
|
|
348
375
|
"message": "L̂áb̂él̂ś êńŝúr̂é t̂h́ât́ f̂ór̂ḿ ĉón̂t́r̂ól̂ś âŕê án̂ńôún̂ćêd́ p̂ŕôṕêŕl̂ý b̂ý âśŝíŝt́îv́ê t́êćĥńôĺôǵîéŝ, ĺîḱê śĉŕêén̂ ŕêád̂ér̂ś. [L̂éâŕn̂ ḿôŕê áb̂óût́ f̂ór̂ḿ êĺêḿêńt̂ ĺâb́êĺŝ](https://dequeuniversity.com/rules/axe/4.7/label)."
|
|
349
376
|
},
|
|
@@ -434,6 +461,15 @@
|
|
|
434
461
|
"core/audits/accessibility/select-name.js | title": {
|
|
435
462
|
"message": "Ŝél̂éĉt́ êĺêḿêńt̂ś ĥáv̂é âśŝóĉíât́êd́ l̂áb̂él̂ él̂ém̂én̂t́ŝ."
|
|
436
463
|
},
|
|
464
|
+
"core/audits/accessibility/skip-link.js | description": {
|
|
465
|
+
"message": "Îńĉĺûd́îńĝ á ŝḱîṕ l̂ín̂ḱ ĉán̂ h́êĺp̂ úŝér̂ś ŝḱîṕ t̂ó t̂h́ê ḿâín̂ ćôńt̂én̂t́ t̂ó ŝáv̂é t̂ím̂é. [L̂éâŕn̂ ḿôŕê áb̂óût́ ŝḱîṕ l̂ín̂ḱŝ](https://dequeuniversity.com/rules/axe/4.7/skip-link)."
|
|
466
|
+
},
|
|
467
|
+
"core/audits/accessibility/skip-link.js | failureTitle": {
|
|
468
|
+
"message": "Ŝḱîṕ l̂ín̂ḱŝ ár̂é n̂ót̂ f́ôćûśâb́l̂é."
|
|
469
|
+
},
|
|
470
|
+
"core/audits/accessibility/skip-link.js | title": {
|
|
471
|
+
"message": "Ŝḱîṕ l̂ín̂ḱŝ ár̂é f̂óĉúŝáb̂ĺê."
|
|
472
|
+
},
|
|
437
473
|
"core/audits/accessibility/tabindex.js | description": {
|
|
438
474
|
"message": "Â v́âĺûé ĝŕêát̂ér̂ t́ĥán̂ 0 ím̂ṕl̂íêś âń êx́p̂ĺîćît́ n̂áv̂íĝát̂íôń ôŕd̂ér̂ín̂ǵ. Âĺt̂h́ôúĝh́ t̂éĉh́n̂íĉál̂ĺŷ v́âĺîd́, t̂h́îś ôf́t̂én̂ ćr̂éât́êś f̂ŕûśt̂ŕât́îńĝ éx̂ṕêŕîén̂ćêś f̂ór̂ úŝér̂ś ŵh́ô ŕêĺŷ ón̂ áŝśîśt̂ív̂é t̂éĉh́n̂ól̂óĝíêś. [L̂éâŕn̂ ḿôŕê áb̂óût́ t̂h́ê `tabindex` át̂t́r̂íb̂út̂é](https://dequeuniversity.com/rules/axe/4.7/tabindex)."
|
|
439
475
|
},
|
|
@@ -443,6 +479,15 @@
|
|
|
443
479
|
"core/audits/accessibility/tabindex.js | title": {
|
|
444
480
|
"message": "N̂ó êĺêḿêńt̂ h́âś â `[tabindex]` v́âĺûé ĝŕêát̂ér̂ t́ĥán̂ 0"
|
|
445
481
|
},
|
|
482
|
+
"core/audits/accessibility/table-duplicate-name.js | description": {
|
|
483
|
+
"message": "T̂h́ê śûḿm̂ár̂ý ât́t̂ŕîb́ût́ê śĥóûĺd̂ d́êśĉŕîb́ê t́ĥé t̂áb̂ĺê śt̂ŕûćt̂úr̂é, ŵh́îĺê `<caption>` śĥóûĺd̂ h́âv́ê t́ĥé ôńŝćr̂éêń t̂ít̂ĺê. Áĉćûŕât́ê t́âb́l̂é m̂ár̂ḱ-ûṕ ĥél̂ṕŝ úŝér̂ś ôf́ ŝćr̂éêń r̂éâd́êŕŝ. [Ĺêár̂ń m̂ór̂é âb́ôút̂ śûḿm̂ár̂ý âńd̂ ćâṕt̂íôń](https://dequeuniversity.com/rules/axe/4.7/table-duplicate-name)."
|
|
484
|
+
},
|
|
485
|
+
"core/audits/accessibility/table-duplicate-name.js | failureTitle": {
|
|
486
|
+
"message": "T̂áb̂ĺêś ĥáv̂é t̂h́ê śâḿê ćôńt̂én̂t́ îń t̂h́ê śûḿm̂ár̂ý ât́t̂ŕîb́ût́ê án̂d́ `<caption>.`"
|
|
487
|
+
},
|
|
488
|
+
"core/audits/accessibility/table-duplicate-name.js | title": {
|
|
489
|
+
"message": "T̂áb̂ĺêś ĥáv̂é d̂íf̂f́êŕêńt̂ ćôńt̂én̂t́ îń t̂h́ê śûḿm̂ár̂ý ât́t̂ŕîb́ût́ê án̂d́ `<caption>`."
|
|
490
|
+
},
|
|
446
491
|
"core/audits/accessibility/table-fake-caption.js | description": {
|
|
447
492
|
"message": "Ŝćr̂éêń r̂éâd́êŕŝ h́âv́ê f́êát̂úr̂éŝ t́ô ḿâḱê ńâv́îǵât́îńĝ t́âb́l̂éŝ éâśîér̂. Én̂śûŕîńĝ t́ĥát̂ t́âb́l̂éŝ úŝé t̂h́ê áĉt́ûál̂ ćâṕt̂íôń êĺêḿêńt̂ ín̂śt̂éâd́ ôf́ ĉél̂ĺŝ ẃît́ĥ t́ĥé `[colspan]` ât́t̂ŕîb́ût́ê ḿâý îḿp̂ŕôv́ê t́ĥé êx́p̂ér̂íêńĉé f̂ór̂ śĉŕêén̂ ŕêád̂ér̂ úŝér̂ś. [L̂éâŕn̂ ḿôŕê áb̂óût́ ĉáp̂t́îón̂ś](https://dequeuniversity.com/rules/axe/4.7/table-fake-caption)."
|
|
448
493
|
},
|
|
@@ -453,7 +498,7 @@
|
|
|
453
498
|
"message": "T̂áb̂ĺêś ûśê `<caption>` ín̂śt̂éâd́ ôf́ ĉél̂ĺŝ ẃît́ĥ t́ĥé `[colspan]` ât́t̂ŕîb́ût́ê t́ô ín̂d́îćât́ê á ĉáp̂t́îón̂."
|
|
454
499
|
},
|
|
455
500
|
"core/audits/accessibility/target-size.js | description": {
|
|
456
|
-
"message": "T̂óûćĥ t́âŕĝét̂ś ŵít̂h́ ŝúf̂f́îćîén̂t́ ŝíẑé âńd̂ śp̂áĉín̂ǵ ĥél̂ṕ ûśêŕŝ ẃĥó m̂áŷ h́âv́ê d́îf́f̂íĉúl̂t́ŷ t́âŕĝét̂ín̂ǵ ŝḿâĺl̂ ćôńt̂ŕôĺŝ áĉt́îv́ât́ê t́ĥé t̂ár̂ǵêt́ŝ. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ôúĉh́ t̂ár̂ǵêt́ŝ](https://dequeuniversity.com/rules/axe/4.7/target-size)."
|
|
501
|
+
"message": "T̂óûćĥ t́âŕĝét̂ś ŵít̂h́ ŝúf̂f́îćîén̂t́ ŝíẑé âńd̂ śp̂áĉín̂ǵ ĥél̂ṕ ûśêŕŝ ẃĥó m̂áŷ h́âv́ê d́îf́f̂íĉúl̂t́ŷ t́âŕĝét̂ín̂ǵ ŝḿâĺl̂ ćôńt̂ŕôĺŝ t́ô áĉt́îv́ât́ê t́ĥé t̂ár̂ǵêt́ŝ. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ôúĉh́ t̂ár̂ǵêt́ŝ](https://dequeuniversity.com/rules/axe/4.7/target-size)."
|
|
457
502
|
},
|
|
458
503
|
"core/audits/accessibility/target-size.js | failureTitle": {
|
|
459
504
|
"message": "T̂óûćĥ t́âŕĝét̂ś d̂ó n̂ót̂ h́âv́ê śûf́f̂íĉíêńt̂ śîźê ór̂ śp̂áĉín̂ǵ."
|
|
@@ -1181,15 +1226,15 @@
|
|
|
1181
1226
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1182
1227
|
"message": "Ĉúm̂úl̂át̂ív̂é L̂áŷóût́ Ŝh́îf́t̂ ḿêáŝúr̂éŝ t́ĥé m̂óv̂ém̂én̂t́ ôf́ v̂íŝíb̂ĺê él̂ém̂én̂t́ŝ ẃît́ĥín̂ t́ĥé v̂íêẃp̂ór̂t́. [L̂éâŕn̂ ḿôŕê áb̂óût́ t̂h́ê Ćûḿûĺât́îv́ê Ĺâýôút̂ Śĥíf̂t́ m̂ét̂ŕîć](https://web.dev/cls/)."
|
|
1183
1228
|
},
|
|
1184
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1185
|
-
"message": "Îńt̂ér̂áĉt́îón̂ t́ô Ńêx́t̂ Ṕâín̂t́ m̂éâśûŕêś p̂áĝé r̂éŝṕôńŝív̂én̂éŝś, ĥóŵ ĺôńĝ ít̂ t́âḱêś t̂h́ê ṕâǵê t́ô v́îśîb́l̂ý r̂éŝṕôńd̂ t́ô úŝér̂ ín̂ṕût́. [L̂éâŕn̂ ḿôŕê áb̂óût́ t̂h́ê Ín̂t́êŕâćt̂íôń t̂ó N̂éx̂t́ P̂áîńt̂ ḿêt́r̂íĉ](https://web.dev/inp/)."
|
|
1186
|
-
},
|
|
1187
1229
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1188
1230
|
"message": "F̂ír̂śt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ m̂ár̂ḱŝ t́ĥé t̂ím̂é ât́ ŵh́îćĥ t́ĥé f̂ír̂śt̂ t́êx́t̂ ór̂ ím̂áĝé îś p̂áîńt̂éd̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ĥé F̂ír̂śt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ m̂ét̂ŕîć](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1189
1231
|
},
|
|
1190
1232
|
"core/audits/metrics/first-meaningful-paint.js | description": {
|
|
1191
1233
|
"message": "F̂ír̂śt̂ Ḿêán̂ín̂ǵf̂úl̂ Ṕâín̂t́ m̂éâśûŕêś ŵh́êń t̂h́ê ṕr̂ím̂ár̂ý ĉón̂t́êńt̂ óf̂ á p̂áĝé îś v̂íŝíb̂ĺê. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ĥé F̂ír̂śt̂ Ḿêán̂ín̂ǵf̂úl̂ Ṕâín̂t́ m̂ét̂ŕîć](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/)."
|
|
1192
1234
|
},
|
|
1235
|
+
"core/audits/metrics/interaction-to-next-paint.js | description": {
|
|
1236
|
+
"message": "Îńt̂ér̂áĉt́îón̂ t́ô Ńêx́t̂ Ṕâín̂t́ m̂éâśûŕêś p̂áĝé r̂éŝṕôńŝív̂én̂éŝś, ĥóŵ ĺôńĝ ít̂ t́âḱêś t̂h́ê ṕâǵê t́ô v́îśîb́l̂ý r̂éŝṕôńd̂ t́ô úŝér̂ ín̂ṕût́. [L̂éâŕn̂ ḿôŕê áb̂óût́ t̂h́ê Ín̂t́êŕâćt̂íôń t̂ó N̂éx̂t́ P̂áîńt̂ ḿêt́r̂íĉ](https://web.dev/inp/)."
|
|
1237
|
+
},
|
|
1193
1238
|
"core/audits/metrics/interactive.js | description": {
|
|
1194
1239
|
"message": "T̂ím̂é t̂ó Îńt̂ér̂áĉt́îv́ê íŝ t́ĥé âḿôún̂t́ ôf́ t̂ím̂é ît́ t̂ák̂éŝ f́ôŕ t̂h́ê ṕâǵê t́ô b́êćôḿê f́ûĺl̂ý îńt̂ér̂áĉt́îv́ê. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ĥé T̂ím̂é t̂ó Îńt̂ér̂áĉt́îv́ê ḿêt́r̂íĉ](https://developer.chrome.com/docs/lighthouse/performance/interactive/)."
|
|
1195
1240
|
},
|
|
@@ -2817,7 +2862,7 @@
|
|
|
2817
2862
|
"message": "Îńŝt́âĺl̂ [á D̂ŕûṕâĺ m̂ód̂úl̂é](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A67&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=%22lazy+load%22&solrsort=iss_project_release_usage+desc&op=Search) t̂h́ât́ ĉán̂ ĺâźŷ ĺôád̂ ím̂áĝéŝ. Śûćĥ ḿôd́ûĺêś p̂ŕôv́îd́ê t́ĥé âb́îĺît́ŷ t́ô d́êf́êŕ âńŷ óf̂f́ŝćr̂éêń îḿâǵêś t̂ó îḿp̂ŕôv́ê ṕêŕf̂ór̂ḿâńĉé."
|
|
2818
2863
|
},
|
|
2819
2864
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | render-blocking-resources": {
|
|
2820
|
-
"message": "Ĉón̂śîd́êŕ ûśîńĝ á m̂ód̂úl̂é t̂ó îńl̂ín̂é ĉŕît́îćâĺ ĈŚŜ án̂d́ Ĵáv̂áŜćr̂íp̂t́,
|
|
2865
|
+
"message": "Ĉón̂śîd́êŕ ûśîńĝ á m̂ód̂úl̂é t̂ó îńl̂ín̂é ĉŕît́îćâĺ ĈŚŜ án̂d́ Ĵáv̂áŜćr̂íp̂t́, âńd̂ úŝé t̂h́ê d́êf́êŕ ât́t̂ŕîb́ût́ê f́ôŕ n̂ón̂-ćr̂ít̂íĉál̂ ĆŜŚ ôŕ Ĵáv̂áŜćr̂íp̂t́."
|
|
2821
2866
|
},
|
|
2822
2867
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | server-response-time": {
|
|
2823
2868
|
"message": "T̂h́êḿêś, m̂ód̂úl̂éŝ, án̂d́ ŝér̂v́êŕ ŝṕêćîf́îćât́îón̂ś âĺl̂ ćôńt̂ŕîb́ût́ê t́ô śêŕv̂ér̂ ŕêśp̂ón̂śê t́îḿê. Ćôńŝíd̂ér̂ f́îńd̂ín̂ǵ â ḿôŕê óp̂t́îḿîźêd́ t̂h́êḿê, ćâŕêf́ûĺl̂ý ŝél̂éĉt́îńĝ án̂ óp̂t́îḿîźât́îón̂ ḿôd́ûĺê, án̂d́/ôŕ ûṕĝŕâd́îńĝ ýôúr̂ śêŕv̂ér̂. Ýôúr̂ h́ôśt̂ín̂ǵ ŝér̂v́êŕŝ śĥóûĺd̂ ḿâḱê úŝé ôf́ P̂H́P̂ óp̂ćôd́ê ćâćĥín̂ǵ, m̂ém̂ór̂ý-ĉáĉh́îńĝ t́ô ŕêd́ûćê d́ât́âb́âśê q́ûér̂ý t̂ím̂éŝ śûćĥ áŝ Ŕêd́îś ôŕ M̂ém̂ćâćĥéd̂, áŝ ẃêĺl̂ áŝ óp̂t́îḿîźêd́ âṕp̂ĺîćât́îón̂ ĺôǵîć t̂ó p̂ŕêṕâŕê ṕâǵêś f̂áŝt́êŕ."
|
|
@@ -2826,10 +2871,10 @@
|
|
|
2826
2871
|
"message": "Ĉón̂śîd́êŕ ûśîńĝ [Ŕêśp̂ón̂śîv́ê Ím̂áĝé Ŝt́ŷĺêś](https://www.drupal.org/docs/8/mobile-guide/responsive-images-in-drupal-8) t̂ó r̂éd̂úĉé t̂h́ê śîźê óf̂ ím̂áĝéŝ ĺôád̂éd̂ ón̂ ýôúr̂ ṕâǵê. Íf̂ ýôú âŕê úŝín̂ǵ V̂íêẃŝ t́ô śĥóŵ ḿûĺt̂íp̂ĺê ćôńt̂én̂t́ ît́êḿŝ ón̂ á p̂áĝé, ĉón̂śîd́êŕ îḿp̂ĺêḿêńt̂ín̂ǵ p̂áĝín̂át̂íôń t̂ó l̂ím̂ít̂ t́ĥé n̂úm̂b́êŕ ôf́ ĉón̂t́êńt̂ ít̂ém̂ś ŝh́ôẃn̂ ón̂ á ĝív̂én̂ ṕâǵê."
|
|
2827
2872
|
},
|
|
2828
2873
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-css": {
|
|
2829
|
-
"message": "Êńŝúr̂é ŷóû h́âv́ê én̂áb̂ĺêd́ \"Âǵĝŕêǵât́ê ĆŜŚ f̂íl̂éŝ\" ín̂ t́ĥé \"Âd́m̂ín̂íŝt́r̂át̂íôń » Ĉón̂f́îǵûŕât́îón̂ » D́êv́êĺôṕm̂én̂t́\" p̂áĝé.
|
|
2874
|
+
"message": "Êńŝúr̂é ŷóû h́âv́ê én̂áb̂ĺêd́ \"Âǵĝŕêǵât́ê ĆŜŚ f̂íl̂éŝ\" ín̂ t́ĥé \"Âd́m̂ín̂íŝt́r̂át̂íôń » Ĉón̂f́îǵûŕât́îón̂ » D́êv́êĺôṕm̂én̂t́\" p̂áĝé. Êńŝúr̂é ŷóûŕ D̂ŕûṕâĺ ŝít̂é îś r̂ún̂ńîńĝ át̂ ĺêáŝt́ D̂ŕûṕâĺ 10.1 f̂ór̂ ím̂ṕr̂óv̂éd̂ áŝśêt́ âǵĝŕêǵât́îón̂ śûṕp̂ór̂t́."
|
|
2830
2875
|
},
|
|
2831
2876
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-javascript": {
|
|
2832
|
-
"message": "Êńŝúr̂é ŷóû h́âv́ê én̂áb̂ĺêd́ \"Âǵĝŕêǵât́ê J́âv́âŚĉŕîṕt̂ f́îĺêś\" îń t̂h́ê \"Ád̂ḿîńîśt̂ŕât́îón̂ » Ćôńf̂íĝúr̂át̂íôń » D̂év̂él̂óp̂ḿêńt̂\" ṕâǵê.
|
|
2877
|
+
"message": "Êńŝúr̂é ŷóû h́âv́ê én̂áb̂ĺêd́ \"Âǵĝŕêǵât́ê J́âv́âŚĉŕîṕt̂ f́îĺêś\" îń t̂h́ê \"Ád̂ḿîńîśt̂ŕât́îón̂ » Ćôńf̂íĝúr̂át̂íôń » D̂év̂él̂óp̂ḿêńt̂\" ṕâǵê. Én̂śûŕê ýôúr̂ D́r̂úp̂ál̂ śît́ê íŝ ŕûńn̂ín̂ǵ ât́ l̂éâśt̂ D́r̂úp̂ál̂ 10.1 f́ôŕ îḿp̂ŕôv́êd́ âśŝét̂ áĝǵr̂éĝát̂íôń ŝúp̂ṕôŕt̂."
|
|
2833
2878
|
},
|
|
2834
2879
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unused-css-rules": {
|
|
2835
2880
|
"message": "Ĉón̂śîd́êŕ r̂ém̂óv̂ín̂ǵ ûńûśêd́ ĈŚŜ ŕûĺêś âńd̂ ón̂ĺŷ át̂t́âćĥ t́ĥé n̂éêd́êd́ D̂ŕûṕâĺ l̂íb̂ŕâŕîéŝ t́ô t́ĥé r̂él̂év̂án̂t́ p̂áĝé ôŕ ĉóm̂ṕôńêńt̂ ín̂ á p̂áĝé. Ŝéê t́ĥé [D̂ŕûṕâĺ d̂óĉúm̂én̂t́ât́îón̂ ĺîńk̂](https://www.drupal.org/docs/8/creating-custom-modules/adding-stylesheets-css-and-javascript-js-to-a-drupal-8-module#library) f́ôŕ d̂ét̂áîĺŝ. T́ô íd̂én̂t́îf́ŷ át̂t́âćĥéd̂ ĺîb́r̂ár̂íêś t̂h́ât́ âŕê ád̂d́îńĝ éx̂t́r̂án̂éôúŝ ĆŜŚ, t̂ŕŷ ŕûńn̂ín̂ǵ [ĉód̂é ĉóv̂ér̂áĝé](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) îń Ĉh́r̂óm̂é D̂év̂T́ôól̂ś. Ŷóû ćâń îd́êńt̂íf̂ý t̂h́ê t́ĥém̂é/m̂ód̂úl̂é r̂éŝṕôńŝíb̂ĺê f́r̂óm̂ t́ĥé ÛŔL̂ óf̂ t́ĥé ŝt́ŷĺêśĥéêt́ ŵh́êń ĈŚŜ áĝǵr̂éĝát̂íôń îś d̂íŝáb̂ĺêd́ îń ŷóûŕ D̂ŕûṕâĺ ŝít̂é. L̂óôḱ ôút̂ f́ôŕ t̂h́êḿêś/m̂ód̂úl̂éŝ t́ĥát̂ h́âv́ê ḿâńŷ śt̂ýl̂éŝh́êét̂ś îń t̂h́ê ĺîśt̂ ẃĥíĉh́ ĥáv̂é â ĺôt́ ôf́ r̂éd̂ ín̂ ćôd́ê ćôv́êŕâǵê. Á t̂h́êḿê/ḿôd́ûĺê śĥóûĺd̂ ón̂ĺŷ én̂q́ûéûé â śt̂ýl̂éŝh́êét̂ íf̂ ít̂ íŝ áĉt́ûál̂ĺŷ úŝéd̂ ón̂ t́ĥé p̂áĝé."
|
|
@@ -3029,6 +3074,48 @@
|
|
|
3029
3074
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
3030
3075
|
"message": "Êńâb́l̂é ĉóm̂ṕr̂éŝśîón̂ ón̂ ýôúr̂ Ńêx́t̂.j́ŝ śêŕv̂ér̂. [Ĺêár̂ń m̂ór̂é](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
|
3031
3076
|
},
|
|
3077
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | dom-size": {
|
|
3078
|
+
"message": "Ĉón̂t́âćt̂ ýôúr̂ áĉćôún̂t́ m̂án̂áĝér̂ t́ô én̂áb̂ĺê [`HTML Lazy Load`](https://support.nitropack.io/hc/en-us/articles/17144942904337). Ćôńf̂íĝúr̂ín̂ǵ ît́ ŵíl̂ĺ p̂ŕîór̂ít̂íẑé âńd̂ óp̂t́îḿîźê ýôúr̂ ṕâǵê ŕêńd̂ér̂ín̂ǵ p̂ér̂f́ôŕm̂án̂ćê."
|
|
3079
|
+
},
|
|
3080
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | font-display": {
|
|
3081
|
+
"message": "Ûśê t́ĥé [`Override Font Rendering Behavior`](https://support.nitropack.io/hc/en-us/articles/16547358865041) ôṕt̂íôń îń N̂ít̂ŕôṔâćk̂ t́ô śêt́ â d́êśîŕêd́ v̂ál̂úê f́ôŕ t̂h́ê ĆŜŚ f̂ón̂t́-d̂íŝṕl̂áŷ ŕûĺê."
|
|
3082
|
+
},
|
|
3083
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | modern-image-formats": {
|
|
3084
|
+
"message": "Ûśê [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/16547237162513) t́ô áût́ôḿât́îćâĺl̂ý ĉón̂v́êŕt̂ ýôúr̂ ím̂áĝéŝ t́ô Ẃêb́P̂."
|
|
3085
|
+
},
|
|
3086
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | offscreen-images": {
|
|
3087
|
+
"message": "D̂éf̂ér̂ óf̂f́ŝćr̂éêń îḿâǵêś b̂ý êńâb́l̂ín̂ǵ [`Automatic Image Lazy Loading`](https://support.nitropack.io/hc/en-us/articles/12457493524369-NitroPack-Lazy-Loading-Feature-for-Images)."
|
|
3088
|
+
},
|
|
3089
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | render-blocking-resources": {
|
|
3090
|
+
"message": "Êńâb́l̂é [`Remove render-blocking resources`](https://support.nitropack.io/hc/en-us/articles/13820893500049-How-to-Deal-with-Render-Blocking-Resources-in-NitroPack) îń N̂ít̂ŕôṔâćk̂ f́ôŕ f̂áŝt́êŕ îńît́îál̂ ĺôád̂ t́îḿêś."
|
|
3091
|
+
},
|
|
3092
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | server-response-time": {
|
|
3093
|
+
"message": "Îḿp̂ŕôv́ê śêŕv̂ér̂ ŕêśp̂ón̂śê t́îḿê án̂d́ ôṕt̂ím̂íẑé p̂ér̂ćêív̂éd̂ ṕêŕf̂ór̂ḿâńĉé b̂ý âćt̂ív̂át̂ín̂ǵ [`Instant Load`](https://support.nitropack.io/hc/en-us/articles/16547340617361)."
|
|
3094
|
+
},
|
|
3095
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-css": {
|
|
3096
|
+
"message": "Êńâb́l̂é [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) îń ŷóûŕ Ĉáĉh́îńĝ śêt́t̂ín̂ǵŝ t́ô ŕêd́ûćê t́ĥé ŝíẑé ôf́ ŷóûŕ ĈŚŜ, H́T̂ḾL̂, án̂d́ Ĵáv̂áŜćr̂íp̂t́ f̂íl̂éŝ f́ôŕ f̂áŝt́êŕ l̂óâd́ t̂ím̂éŝ."
|
|
3097
|
+
},
|
|
3098
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-javascript": {
|
|
3099
|
+
"message": "Êńâb́l̂é [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) îń ŷóûŕ Ĉáĉh́îńĝ śêt́t̂ín̂ǵŝ t́ô ŕêd́ûćê t́ĥé ŝíẑé ôf́ ŷóûŕ ĴŚ, ĤT́M̂Ĺ, âńd̂ ĆŜŚ f̂íl̂éŝ f́ôŕ f̂áŝt́êŕ l̂óâd́ t̂ím̂éŝ."
|
|
3100
|
+
},
|
|
3101
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-css-rules": {
|
|
3102
|
+
"message": "Êńâb́l̂é [`Reduce Unused CSS`](https://support.nitropack.io/hc/en-us/articles/360020418457-Reduce-Unused-CSS) t̂ó r̂ém̂óv̂é ĈŚŜ ŕûĺêś t̂h́ât́ âŕê ńôt́ âṕp̂ĺîćâb́l̂é t̂ó t̂h́îś p̂áĝé."
|
|
3103
|
+
},
|
|
3104
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-javascript": {
|
|
3105
|
+
"message": "Ĉón̂f́îǵûŕê [`Delayed Scripts`](https://support.nitropack.io/hc/en-us/articles/1500002600942-Delayed-Scripts) ín̂ Ńît́r̂óP̂áĉḱ t̂ó d̂él̂áŷ ĺôád̂ín̂ǵ ôf́ ŝćr̂íp̂t́ŝ ún̂t́îĺ t̂h́êý âŕê ńêéd̂éd̂."
|
|
3106
|
+
},
|
|
3107
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-long-cache-ttl": {
|
|
3108
|
+
"message": "Ĝó t̂ó t̂h́ê [`Improve Server Response Time`](https://support.nitropack.io/hc/en-us/articles/1500002321821-Improve-Server-Response-Time) f́êát̂úr̂é îń t̂h́ê `Caching` ḿêńû án̂d́ âd́ĵúŝt́ ŷóûŕ p̂áĝé ĉáĉh́ê éx̂ṕîŕât́îón̂ t́îḿê t́ô ím̂ṕr̂óv̂é l̂óâd́îńĝ t́îḿêś âńd̂ úŝér̂ éx̂ṕêŕîén̂ćê."
|
|
3109
|
+
},
|
|
3110
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-optimized-images": {
|
|
3111
|
+
"message": "Âút̂óm̂át̂íĉál̂ĺŷ ćôḿp̂ŕêśŝ, óp̂t́îḿîźê, án̂d́ ĉón̂v́êŕt̂ ýôúr̂ ím̂áĝéŝ ín̂t́ô Ẃêb́P̂ b́ŷ én̂áb̂ĺîńĝ t́ĥé [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/14177271695121-How-to-serve-images-in-next-gen-formats-using-NitroPack) ŝét̂t́îńĝ."
|
|
3112
|
+
},
|
|
3113
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-responsive-images": {
|
|
3114
|
+
"message": "Êńâb́l̂é [`Adaptive Image Sizing`](https://support.nitropack.io/hc/en-us/articles/10123833029905-How-to-Enable-Adaptive-Image-Sizing-For-Your-Site) t̂ó p̂ŕêém̂ṕt̂ív̂él̂ý ôṕt̂ím̂íẑé ŷóûŕ îḿâǵêś âńd̂ ḿâḱê t́ĥém̂ ḿât́ĉh́ t̂h́ê d́îḿêńŝíôńŝ óf̂ t́ĥé ĉón̂t́âín̂ér̂ś t̂h́êý’r̂é d̂íŝṕl̂áŷéd̂ ín̂ áĉŕôśŝ ál̂ĺ d̂év̂íĉéŝ."
|
|
3115
|
+
},
|
|
3116
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-text-compression": {
|
|
3117
|
+
"message": "Ûśê [`Gzip compression`](https://support.nitropack.io/hc/en-us/articles/13229297479313-Enabling-GZIP-compression) ín̂ Ńît́r̂óP̂áĉḱ t̂ó r̂éd̂úĉé t̂h́ê śîźê óf̂ t́ĥé f̂íl̂éŝ t́ĥát̂ ár̂é ŝén̂t́ t̂ó t̂h́ê b́r̂óŵśêŕ."
|
|
3118
|
+
},
|
|
3032
3119
|
"node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
|
|
3033
3120
|
"message": "Ûśê t́ĥé `nuxt/image` ĉóm̂ṕôńêńt̂ án̂d́ ŝét̂ `format=\"webp\"`. [Ĺêár̂ń m̂ór̂é](https://image.nuxtjs.org/components/nuxt-img#format)."
|
|
3034
3121
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "El Cambio de diseño acumulado mide el movimiento de los elementos visibles dentro del viewport. [Obtén más información sobre la métrica de Cambio de diseño acumulado](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "La Interacción a la siguiente pintura mide la capacidad de respuesta de la página, es decir, cuánto tarda en responder de manera visible a las entradas del usuario. [Obtén más información sobre la métrica de Interacción a la siguiente pintura](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "El primer procesamiento de imagen con contenido indica el momento en el que se visualiza en la pantalla el primer texto o imagen. [Obtén más información sobre la métrica de Primer procesamiento de imagen con contenido](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|