lighthouse 11.2.0-dev.20231014 → 11.2.0-dev.20231016
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/__snapshots__/report-assert-test.js.snap +2 -2
- package/core/audits/byte-efficiency/legacy-javascript.js +2 -2
- package/core/audits/image-size-responsive.js +1 -1
- package/core/audits/layout-shift-elements.js +1 -1
- package/core/audits/lcp-lazy-loaded.js +2 -2
- package/core/audits/long-tasks.js +1 -1
- package/core/audits/metrics/cumulative-layout-shift.js +2 -2
- package/core/audits/metrics/interaction-to-next-paint.js +2 -2
- package/core/audits/metrics/largest-contentful-paint.js +1 -1
- package/core/audits/no-unload-listeners.js +1 -1
- package/core/audits/preload-fonts.js +1 -1
- package/core/audits/prioritize-lcp-image.js +1 -1
- package/core/audits/unsized-images.js +1 -1
- package/core/audits/work-during-interaction.js +1 -1
- package/core/config/default-config.js +5 -5
- package/package.json +1 -1
- package/shared/localization/locales/en-US.json +17 -17
- package/shared/localization/locales/en-XL.json +17 -17
|
@@ -14,7 +14,7 @@ exports[`getAssertionReport works (multiple failing) 1`] = `
|
|
|
14
14
|
{
|
|
15
15
|
\\"id\\": \\"cumulative-layout-shift\\",
|
|
16
16
|
\\"title\\": \\"Cumulative Layout Shift\\",
|
|
17
|
-
\\"description\\": \\"Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more about the Cumulative Layout Shift metric](https://web.dev/cls
|
|
17
|
+
\\"description\\": \\"Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more about the Cumulative Layout Shift metric](https://web.dev/articles/cls).\\",
|
|
18
18
|
\\"score\\": 0.8,
|
|
19
19
|
\\"scoreDisplayMode\\": \\"numeric\\",
|
|
20
20
|
\\"numericValue\\": 0.13570762803819444,
|
|
@@ -44,7 +44,7 @@ exports[`getAssertionReport works (trivial failing) 1`] = `
|
|
|
44
44
|
{
|
|
45
45
|
\\"id\\": \\"cumulative-layout-shift\\",
|
|
46
46
|
\\"title\\": \\"Cumulative Layout Shift\\",
|
|
47
|
-
\\"description\\": \\"Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more about the Cumulative Layout Shift metric](https://web.dev/cls
|
|
47
|
+
\\"description\\": \\"Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more about the Cumulative Layout Shift metric](https://web.dev/articles/cls).\\",
|
|
48
48
|
\\"score\\": 0.8,
|
|
49
49
|
\\"scoreDisplayMode\\": \\"numeric\\",
|
|
50
50
|
\\"numericValue\\": 0.13570762803819444,
|
|
@@ -37,9 +37,9 @@ const UIStrings = {
|
|
|
37
37
|
/** Title of a Lighthouse audit that tells the user about legacy polyfills and transforms used on the page. This is displayed in a list of audit titles that Lighthouse generates. */
|
|
38
38
|
title: 'Avoid serving legacy JavaScript to modern browsers',
|
|
39
39
|
// eslint-disable-next-line max-len
|
|
40
|
-
// TODO: developer.chrome.com article. this codelab is good starting place: https://web.dev/codelab-serve-modern-code
|
|
40
|
+
// TODO: developer.chrome.com article. this codelab is good starting place: https://web.dev/articles/codelab-serve-modern-code
|
|
41
41
|
/** Description of a Lighthouse audit that tells the user about old JavaScript that is no longer needed. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
42
|
-
description: 'Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren\'t necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code shipped to modern browsers, while retaining support for legacy browsers. [Learn how to use modern JavaScript](https://web.dev/publish-modern-javascript
|
|
42
|
+
description: 'Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren\'t necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code shipped to modern browsers, while retaining support for legacy browsers. [Learn how to use modern JavaScript](https://web.dev/articles/publish-modern-javascript)',
|
|
43
43
|
};
|
|
44
44
|
|
|
45
45
|
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
|
@@ -24,7 +24,7 @@ const UIStrings = {
|
|
|
24
24
|
/** Description of a Lighthouse audit that tells the user why they should maintain an appropriate size for all images. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
25
25
|
description: 'Image natural dimensions should be proportional to the display size and the ' +
|
|
26
26
|
'pixel ratio to maximize image clarity. ' +
|
|
27
|
-
'[Learn how to provide responsive images](https://web.dev/serve-responsive-images
|
|
27
|
+
'[Learn how to provide responsive images](https://web.dev/articles/serve-responsive-images).',
|
|
28
28
|
/** Label for a column in a data table; entries in the column will be a string representing the displayed size of the image. */
|
|
29
29
|
columnDisplayed: 'Displayed size',
|
|
30
30
|
/** Label for a column in a data table; entries in the column will be a string representing the actual size of the image. */
|
|
@@ -12,7 +12,7 @@ const UIStrings = {
|
|
|
12
12
|
/** Descriptive title of a diagnostic audit that provides up to the top five elements contributing to Cumulative Layout Shift. */
|
|
13
13
|
title: 'Avoid large layout shifts',
|
|
14
14
|
/** Description of a diagnostic audit that provides up to the top five elements contributing to Cumulative Layout Shift. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
15
|
-
description: 'These DOM elements contribute most to the CLS of the page. [Learn how to improve CLS](https://web.dev/optimize-cls
|
|
15
|
+
description: 'These DOM elements contribute most to the CLS of the page. [Learn how to improve CLS](https://web.dev/articles/optimize-cls)',
|
|
16
16
|
/** Label for a column in a data table; entries in this column will be the amount that the corresponding element contributes to the total CLS metric score. */
|
|
17
17
|
columnContribution: 'CLS Contribution',
|
|
18
18
|
};
|
|
@@ -15,7 +15,7 @@ const UIStrings = {
|
|
|
15
15
|
/** Title of a Lighthouse audit that provides detail on whether the largest above-the-fold image was loaded with sufficient priority. This descriptive title is shown to users when the image was loaded inefficiently using the `loading=lazy` attribute. */
|
|
16
16
|
failureTitle: 'Largest Contentful Paint image was lazily loaded',
|
|
17
17
|
/** Description of a Lighthouse audit that tells the user why the advice is important. This is displayed after a user expands the section to see more. No character length limits. */
|
|
18
|
-
description: 'Above-the-fold images that are lazily loaded render later in the page lifecycle, which can delay the largest contentful paint. [Learn more about optimal lazy loading](https://web.dev/lcp-lazy-loading
|
|
18
|
+
description: 'Above-the-fold images that are lazily loaded render later in the page lifecycle, which can delay the largest contentful paint. [Learn more about optimal lazy loading](https://web.dev/articles/lcp-lazy-loading).',
|
|
19
19
|
};
|
|
20
20
|
|
|
21
21
|
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
|
@@ -94,7 +94,7 @@ class LargestContentfulPaintLazyLoaded extends Audit {
|
|
|
94
94
|
let lcpSavings = 0;
|
|
95
95
|
if (wasLazyLoaded && lcpBreakdown.loadStart !== undefined) {
|
|
96
96
|
// Estimate the LCP savings using a statistical percentage.
|
|
97
|
-
// https://web.dev/lcp-lazy-loading
|
|
97
|
+
// https://web.dev/articles/lcp-lazy-loading#causal_performance
|
|
98
98
|
//
|
|
99
99
|
// LCP savings will be at most the LCP load delay.
|
|
100
100
|
const lcpLoadDelay = lcpBreakdown.loadStart - lcpBreakdown.ttfb;
|
|
@@ -23,7 +23,7 @@ const UIStrings = {
|
|
|
23
23
|
/** Description of a diagnostic LH audit that shows the user the longest running tasks that occur when the page loads. */
|
|
24
24
|
description: 'Lists the longest tasks on the main thread, ' +
|
|
25
25
|
'useful for identifying worst contributors to input delay. ' +
|
|
26
|
-
'[Learn how to avoid long main-thread tasks](https://web.dev/long-tasks-devtools
|
|
26
|
+
'[Learn how to avoid long main-thread tasks](https://web.dev/articles/long-tasks-devtools)',
|
|
27
27
|
/** [ICU Syntax] Label identifying the number of long-running CPU tasks that occurred while loading a web page. */
|
|
28
28
|
displayValue: `{itemCount, plural,
|
|
29
29
|
=1 {# long task found}
|
|
@@ -12,7 +12,7 @@ const UIStrings = {
|
|
|
12
12
|
/** Description of the Cumulative Layout Shift metric that indicates how much the page changes its layout while it loads. If big segments of the page shift their location during load, the Cumulative Layout Shift will be higher. This description is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
13
13
|
description: 'Cumulative Layout Shift measures the movement of visible ' +
|
|
14
14
|
'elements within the viewport. ' +
|
|
15
|
-
'[Learn more about the Cumulative Layout Shift metric](https://web.dev/cls
|
|
15
|
+
'[Learn more about the Cumulative Layout Shift metric](https://web.dev/articles/cls).',
|
|
16
16
|
};
|
|
17
17
|
|
|
18
18
|
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
|
@@ -39,7 +39,7 @@ class CumulativeLayoutShift extends Audit {
|
|
|
39
39
|
*/
|
|
40
40
|
static get defaultOptions() {
|
|
41
41
|
return {
|
|
42
|
-
// https://web.dev/cls
|
|
42
|
+
// https://web.dev/articles/cls#what_is_a_good_cls_score
|
|
43
43
|
// This 0.1 target score was determined through both manual evaluation and large-scale analysis.
|
|
44
44
|
// see https://www.desmos.com/calculator/ksp7q91nop
|
|
45
45
|
p10: 0.1,
|
|
@@ -12,7 +12,7 @@ const UIStrings = {
|
|
|
12
12
|
/** Description of the Interaction to Next Paint metric. This description is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
13
13
|
description: 'Interaction to Next Paint measures page responsiveness, how long it ' +
|
|
14
14
|
'takes the page to visibly respond to user input. ' +
|
|
15
|
-
'[Learn more about the Interaction to Next Paint metric](https://web.dev/inp
|
|
15
|
+
'[Learn more about the Interaction to Next Paint metric](https://web.dev/articles/inp).',
|
|
16
16
|
};
|
|
17
17
|
|
|
18
18
|
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
|
@@ -40,7 +40,7 @@ class InteractionToNextPaint extends Audit {
|
|
|
40
40
|
*/
|
|
41
41
|
static get defaultOptions() {
|
|
42
42
|
return {
|
|
43
|
-
// https://web.dev/inp
|
|
43
|
+
// https://web.dev/articles/inp
|
|
44
44
|
// This is using the same threshold as field tools since only supported in
|
|
45
45
|
// unsimulated user flows for now.
|
|
46
46
|
// see https://www.desmos.com/calculator/4xtrhg51th
|
|
@@ -39,7 +39,7 @@ class LargestContentfulPaint extends Audit {
|
|
|
39
39
|
mobile: {
|
|
40
40
|
// 25th and 13th percentiles HTTPArchive -> median and p10 points.
|
|
41
41
|
// https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1
|
|
42
|
-
// https://web.dev/lcp
|
|
42
|
+
// https://web.dev/articles/lcp#what_is_a_good_lcp_score
|
|
43
43
|
// see https://www.desmos.com/calculator/1etesp32kt
|
|
44
44
|
scoring: {
|
|
45
45
|
p10: 2500,
|
|
@@ -14,7 +14,7 @@ const UIStrings = {
|
|
|
14
14
|
/** Descriptive title of a Lighthouse audit that checks if a web page has 'unload' event listeners and finds that it is using them. */
|
|
15
15
|
failureTitle: 'Registers an `unload` listener',
|
|
16
16
|
/** Description of a Lighthouse audit that tells the user why pages should not use the 'unload' event. This is displayed after a user expands the section to see more. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
17
|
-
description: 'The `unload` event does not fire reliably and listening for it can prevent browser optimizations like the Back-Forward Cache. Use `pagehide` or `visibilitychange` events instead. [Learn more about unload event listeners](https://web.dev/bfcache
|
|
17
|
+
description: 'The `unload` event does not fire reliably and listening for it can prevent browser optimizations like the Back-Forward Cache. Use `pagehide` or `visibilitychange` events instead. [Learn more about unload event listeners](https://web.dev/articles/bfcache#never_use_the_unload_event)',
|
|
18
18
|
};
|
|
19
19
|
|
|
20
20
|
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
|
@@ -21,7 +21,7 @@ const UIStrings = {
|
|
|
21
21
|
/** Title of a Lighthouse audit that provides detail on whether fonts that used `font-display: optional` were preloaded. This descriptive title is shown to users when one or more fonts used `font-display: optional` and were not preloaded. */
|
|
22
22
|
failureTitle: 'Fonts with `font-display: optional` are not preloaded',
|
|
23
23
|
/** Description of a Lighthouse audit that tells the user why they should preload fonts if they are using `font-display: optional`. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
24
|
-
description: 'Preload `optional` fonts so first-time visitors may use them. [Learn more about preloading fonts](https://web.dev/preload-optional-fonts
|
|
24
|
+
description: 'Preload `optional` fonts so first-time visitors may use them. [Learn more about preloading fonts](https://web.dev/articles/preload-optional-fonts)',
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
|
@@ -17,7 +17,7 @@ const UIStrings = {
|
|
|
17
17
|
title: 'Preload Largest Contentful Paint image',
|
|
18
18
|
/** Description of a lighthouse audit that tells a user to preload an image in order to improve their LCP time. */
|
|
19
19
|
description: 'If the LCP element is dynamically added to the page, you should preload the ' +
|
|
20
|
-
'image in order to improve LCP. [Learn more about preloading LCP elements](https://web.dev/optimize-lcp
|
|
20
|
+
'image in order to improve LCP. [Learn more about preloading LCP elements](https://web.dev/articles/optimize-lcp#optimize_when_the_resource_is_discovered).',
|
|
21
21
|
};
|
|
22
22
|
|
|
23
23
|
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
|
@@ -19,7 +19,7 @@ const UIStrings = {
|
|
|
19
19
|
/** Title of a Lighthouse audit that provides detail on whether all images have explicit width and height. This descriptive title is shown to users when one or more images does not have explicit width and height */
|
|
20
20
|
failureTitle: 'Image elements do not have explicit `width` and `height`',
|
|
21
21
|
/** Description of a Lighthouse audit that tells the user why they should include explicit width and height for all images. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
22
|
-
description: 'Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/optimize-cls
|
|
22
|
+
description: 'Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/articles/optimize-cls#images_without_dimensions)',
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
|
@@ -27,7 +27,7 @@ const UIStrings = {
|
|
|
27
27
|
/** Title of a diagnostic audit that provides detail on the main thread work the browser did during a key user interaction. This imperative title is shown to users when there is a significant amount of execution time that could be reduced. */
|
|
28
28
|
failureTitle: 'Minimize work during key interaction',
|
|
29
29
|
/** Description of the work-during-interaction metric. This description is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
30
|
-
description: 'This is the thread-blocking work occurring during the Interaction to Next Paint measurement. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp
|
|
30
|
+
description: 'This is the thread-blocking work occurring during the Interaction to Next Paint measurement. [Learn more about the Interaction to Next Paint metric](https://web.dev/articles/inp).',
|
|
31
31
|
/** Label for a column in a data table; entries will be information on the time that the browser is delayed before responding to user input. Ideally fits within a ~40 character limit. */
|
|
32
32
|
inputDelay: 'Input delay',
|
|
33
33
|
/** Label for a column in a data table; entries will be information on the time taken by code processing user input that delays a response to the user. Ideally fits within a ~40 character limit. */
|
|
@@ -39,9 +39,9 @@ const UIStrings = {
|
|
|
39
39
|
/** Title of the Accessibility category of audits. This section contains audits focused on making web content accessible to all users. Also used as a label of a score gauge; try to limit to 20 characters. */
|
|
40
40
|
a11yCategoryTitle: 'Accessibility',
|
|
41
41
|
/** Description of the Accessibility category. This is displayed at the top of a list of audits focused on making web content accessible to all users. No character length limits. 'improve the accessibility of your web app' and 'manual testing' become link texts to additional documentation. */
|
|
42
|
-
a11yCategoryDescription: 'These checks highlight opportunities to [improve the accessibility of your web app](https://developer.chrome.com/docs/lighthouse/accessibility/). Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so [manual testing](https://web.dev/how-to-review
|
|
42
|
+
a11yCategoryDescription: 'These checks highlight opportunities to [improve the accessibility of your web app](https://developer.chrome.com/docs/lighthouse/accessibility/). Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so [manual testing](https://web.dev/articles/how-to-review) is also encouraged.',
|
|
43
43
|
/** Description of the Accessibility manual checks category. This description is displayed above a list of accessibility audits that currently have no automated test and so must be verified manually by the user. No character length limits. 'conducting an accessibility review' becomes link text to additional documentation. */
|
|
44
|
-
a11yCategoryManualDescription: 'These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://web.dev/how-to-review
|
|
44
|
+
a11yCategoryManualDescription: 'These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://web.dev/articles/how-to-review).',
|
|
45
45
|
/** Title of the best practices section of the Accessibility category. Within this section are audits with descriptive titles that highlight common accessibility best practices. */
|
|
46
46
|
a11yBestPracticesGroupTitle: 'Best practices',
|
|
47
47
|
/** Description of the best practices section within the Accessibility category. Within this section are audits with descriptive titles that highlight common accessibility best practices. */
|
|
@@ -79,7 +79,7 @@ const UIStrings = {
|
|
|
79
79
|
/** Description of the Search Engine Optimization (SEO) category. This is displayed at the top of a list of audits focused on optimizing a website for indexing by search engines. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
80
80
|
seoCategoryDescription: 'These checks ensure that your page is following basic search engine optimization advice. ' +
|
|
81
81
|
'There are many additional factors Lighthouse does not score here that may affect your search ranking, ' +
|
|
82
|
-
'including performance on [Core Web Vitals](https://web.dev/
|
|
82
|
+
'including performance on [Core Web Vitals](https://web.dev/explore/vitals). [Learn more about Google Search Essentials](https://support.google.com/webmasters/answer/35769).',
|
|
83
83
|
/** Description of the Search Engine Optimization (SEO) manual checks category, the additional validators must be run by hand in order to check all SEO best practices. This is displayed at the top of a list of manually run audits focused on optimizing a website for indexing by search engines. No character length limits. */
|
|
84
84
|
seoCategoryManualDescription: 'Run these additional validators on your site to check additional SEO best practices.',
|
|
85
85
|
/** Title of the navigation section within the Search Engine Optimization (SEO) category. Within this section are audits with descriptive titles that highlight opportunities to make a page more usable on mobile devices. */
|
|
@@ -99,10 +99,10 @@ const UIStrings = {
|
|
|
99
99
|
pwaCategoryTitle: 'PWA',
|
|
100
100
|
/** Description of the Progressive Web Application (PWA) category. This is displayed at the top of a list of audits focused on topics related to whether or not a site is a progressive web app, e.g. responds offline, uses a service worker, is on https, etc. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
|
|
101
101
|
pwaCategoryDescription: 'These checks validate the aspects of a Progressive Web App. ' +
|
|
102
|
-
'[Learn what makes a good Progressive Web App](https://web.dev/pwa-checklist
|
|
102
|
+
'[Learn what makes a good Progressive Web App](https://web.dev/articles/pwa-checklist).',
|
|
103
103
|
/** Description of the Progressive Web Application (PWA) manual checks category, containing a list of additional validators must be run by hand in order to check all PWA best practices. This is displayed at the top of a list of manually run audits focused on topics related to whether or not a site is a progressive web app, e.g. responds offline, uses a service worker, is on https, etc.. No character length limits. */
|
|
104
104
|
pwaCategoryManualDescription: 'These checks are required by the baseline ' +
|
|
105
|
-
'[PWA Checklist](https://web.dev/pwa-checklist
|
|
105
|
+
'[PWA Checklist](https://web.dev/articles/pwa-checklist) but are ' +
|
|
106
106
|
'not automatically checked by Lighthouse. They do not affect your score but it\'s important that you verify them manually.',
|
|
107
107
|
/** Title of the Best Practices category of audits. This is displayed at the top of a list of audits focused on topics related to following web development best practices and accepted guidelines. Also used as a label of a score gauge; try to limit to 20 characters. */
|
|
108
108
|
bestPracticesCategoryTitle: 'Best Practices',
|
package/package.json
CHANGED
|
@@ -639,7 +639,7 @@
|
|
|
639
639
|
"message": "Use video formats for animated content"
|
|
640
640
|
},
|
|
641
641
|
"core/audits/byte-efficiency/legacy-javascript.js | description": {
|
|
642
|
-
"message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code shipped to modern browsers, while retaining support for legacy browsers. [Learn how to use modern JavaScript](https://web.dev/publish-modern-javascript
|
|
642
|
+
"message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code shipped to modern browsers, while retaining support for legacy browsers. [Learn how to use modern JavaScript](https://web.dev/articles/publish-modern-javascript)"
|
|
643
643
|
},
|
|
644
644
|
"core/audits/byte-efficiency/legacy-javascript.js | title": {
|
|
645
645
|
"message": "Avoid serving legacy JavaScript to modern browsers"
|
|
@@ -993,7 +993,7 @@
|
|
|
993
993
|
"message": "Expected size"
|
|
994
994
|
},
|
|
995
995
|
"core/audits/image-size-responsive.js | description": {
|
|
996
|
-
"message": "Image natural dimensions should be proportional to the display size and the pixel ratio to maximize image clarity. [Learn how to provide responsive images](https://web.dev/serve-responsive-images
|
|
996
|
+
"message": "Image natural dimensions should be proportional to the display size and the pixel ratio to maximize image clarity. [Learn how to provide responsive images](https://web.dev/articles/serve-responsive-images)."
|
|
997
997
|
},
|
|
998
998
|
"core/audits/image-size-responsive.js | failureTitle": {
|
|
999
999
|
"message": "Serves images with low resolution"
|
|
@@ -1158,13 +1158,13 @@
|
|
|
1158
1158
|
"message": "CLS Contribution"
|
|
1159
1159
|
},
|
|
1160
1160
|
"core/audits/layout-shift-elements.js | description": {
|
|
1161
|
-
"message": "These DOM elements contribute most to the CLS of the page. [Learn how to improve CLS](https://web.dev/optimize-cls
|
|
1161
|
+
"message": "These DOM elements contribute most to the CLS of the page. [Learn how to improve CLS](https://web.dev/articles/optimize-cls)"
|
|
1162
1162
|
},
|
|
1163
1163
|
"core/audits/layout-shift-elements.js | title": {
|
|
1164
1164
|
"message": "Avoid large layout shifts"
|
|
1165
1165
|
},
|
|
1166
1166
|
"core/audits/lcp-lazy-loaded.js | description": {
|
|
1167
|
-
"message": "Above-the-fold images that are lazily loaded render later in the page lifecycle, which can delay the largest contentful paint. [Learn more about optimal lazy loading](https://web.dev/lcp-lazy-loading
|
|
1167
|
+
"message": "Above-the-fold images that are lazily loaded render later in the page lifecycle, which can delay the largest contentful paint. [Learn more about optimal lazy loading](https://web.dev/articles/lcp-lazy-loading)."
|
|
1168
1168
|
},
|
|
1169
1169
|
"core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1170
1170
|
"message": "Largest Contentful Paint image was lazily loaded"
|
|
@@ -1173,7 +1173,7 @@
|
|
|
1173
1173
|
"message": "Largest Contentful Paint image was not lazily loaded"
|
|
1174
1174
|
},
|
|
1175
1175
|
"core/audits/long-tasks.js | description": {
|
|
1176
|
-
"message": "Lists the longest tasks on the main thread, useful for identifying worst contributors to input delay. [Learn how to avoid long main-thread tasks](https://web.dev/long-tasks-devtools
|
|
1176
|
+
"message": "Lists the longest tasks on the main thread, useful for identifying worst contributors to input delay. [Learn how to avoid long main-thread tasks](https://web.dev/articles/long-tasks-devtools)"
|
|
1177
1177
|
},
|
|
1178
1178
|
"core/audits/long-tasks.js | displayValue": {
|
|
1179
1179
|
"message": "{itemCount, plural,\n =1 {# long task found}\n other {# long tasks found}\n }"
|
|
@@ -1221,7 +1221,7 @@
|
|
|
1221
1221
|
"message": "Manifest has a maskable icon"
|
|
1222
1222
|
},
|
|
1223
1223
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1224
|
-
"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
|
|
1224
|
+
"message": "Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more about the Cumulative Layout Shift metric](https://web.dev/articles/cls)."
|
|
1225
1225
|
},
|
|
1226
1226
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1227
1227
|
"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/)."
|
|
@@ -1230,7 +1230,7 @@
|
|
|
1230
1230
|
"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/)."
|
|
1231
1231
|
},
|
|
1232
1232
|
"core/audits/metrics/interaction-to-next-paint.js | description": {
|
|
1233
|
-
"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
|
|
1233
|
+
"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/articles/inp)."
|
|
1234
1234
|
},
|
|
1235
1235
|
"core/audits/metrics/interactive.js | description": {
|
|
1236
1236
|
"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/)."
|
|
@@ -1260,7 +1260,7 @@
|
|
|
1260
1260
|
"message": "Server Backend Latencies"
|
|
1261
1261
|
},
|
|
1262
1262
|
"core/audits/no-unload-listeners.js | description": {
|
|
1263
|
-
"message": "The `unload` event does not fire reliably and listening for it can prevent browser optimizations like the Back-Forward Cache. Use `pagehide` or `visibilitychange` events instead. [Learn more about unload event listeners](https://web.dev/bfcache
|
|
1263
|
+
"message": "The `unload` event does not fire reliably and listening for it can prevent browser optimizations like the Back-Forward Cache. Use `pagehide` or `visibilitychange` events instead. [Learn more about unload event listeners](https://web.dev/articles/bfcache#never_use_the_unload_event)"
|
|
1264
1264
|
},
|
|
1265
1265
|
"core/audits/no-unload-listeners.js | failureTitle": {
|
|
1266
1266
|
"message": "Registers an `unload` listener"
|
|
@@ -1305,7 +1305,7 @@
|
|
|
1305
1305
|
"message": "Performance budget"
|
|
1306
1306
|
},
|
|
1307
1307
|
"core/audits/preload-fonts.js | description": {
|
|
1308
|
-
"message": "Preload `optional` fonts so first-time visitors may use them. [Learn more about preloading fonts](https://web.dev/preload-optional-fonts
|
|
1308
|
+
"message": "Preload `optional` fonts so first-time visitors may use them. [Learn more about preloading fonts](https://web.dev/articles/preload-optional-fonts)"
|
|
1309
1309
|
},
|
|
1310
1310
|
"core/audits/preload-fonts.js | failureTitle": {
|
|
1311
1311
|
"message": "Fonts with `font-display: optional` are not preloaded"
|
|
@@ -1314,7 +1314,7 @@
|
|
|
1314
1314
|
"message": "Fonts with `font-display: optional` are preloaded"
|
|
1315
1315
|
},
|
|
1316
1316
|
"core/audits/prioritize-lcp-image.js | description": {
|
|
1317
|
-
"message": "If the LCP element is dynamically added to the page, you should preload the image in order to improve LCP. [Learn more about preloading LCP elements](https://web.dev/optimize-lcp
|
|
1317
|
+
"message": "If the LCP element is dynamically added to the page, you should preload the image in order to improve LCP. [Learn more about preloading LCP elements](https://web.dev/articles/optimize-lcp#optimize_when_the_resource_is_discovered)."
|
|
1318
1318
|
},
|
|
1319
1319
|
"core/audits/prioritize-lcp-image.js | title": {
|
|
1320
1320
|
"message": "Preload Largest Contentful Paint image"
|
|
@@ -1587,7 +1587,7 @@
|
|
|
1587
1587
|
"message": "Timing budget"
|
|
1588
1588
|
},
|
|
1589
1589
|
"core/audits/unsized-images.js | description": {
|
|
1590
|
-
"message": "Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/optimize-cls
|
|
1590
|
+
"message": "Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/articles/optimize-cls#images_without_dimensions)"
|
|
1591
1591
|
},
|
|
1592
1592
|
"core/audits/unsized-images.js | failureTitle": {
|
|
1593
1593
|
"message": "Image elements do not have explicit `width` and `height`"
|
|
@@ -1662,7 +1662,7 @@
|
|
|
1662
1662
|
"message": "Has a `<meta name=\"viewport\">` tag with `width` or `initial-scale`"
|
|
1663
1663
|
},
|
|
1664
1664
|
"core/audits/work-during-interaction.js | description": {
|
|
1665
|
-
"message": "This is the thread-blocking work occurring during the Interaction to Next Paint measurement. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp
|
|
1665
|
+
"message": "This is the thread-blocking work occurring during the Interaction to Next Paint measurement. [Learn more about the Interaction to Next Paint metric](https://web.dev/articles/inp)."
|
|
1666
1666
|
},
|
|
1667
1667
|
"core/audits/work-during-interaction.js | displayValue": {
|
|
1668
1668
|
"message": "{timeInMs, number, milliseconds} ms spent on event '{interactionType}'"
|
|
@@ -1704,10 +1704,10 @@
|
|
|
1704
1704
|
"message": "Best practices"
|
|
1705
1705
|
},
|
|
1706
1706
|
"core/config/default-config.js | a11yCategoryDescription": {
|
|
1707
|
-
"message": "These checks highlight opportunities to [improve the accessibility of your web app](https://developer.chrome.com/docs/lighthouse/accessibility/). Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so [manual testing](https://web.dev/how-to-review
|
|
1707
|
+
"message": "These checks highlight opportunities to [improve the accessibility of your web app](https://developer.chrome.com/docs/lighthouse/accessibility/). Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so [manual testing](https://web.dev/articles/how-to-review) is also encouraged."
|
|
1708
1708
|
},
|
|
1709
1709
|
"core/config/default-config.js | a11yCategoryManualDescription": {
|
|
1710
|
-
"message": "These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://web.dev/how-to-review
|
|
1710
|
+
"message": "These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://web.dev/articles/how-to-review)."
|
|
1711
1711
|
},
|
|
1712
1712
|
"core/config/default-config.js | a11yCategoryTitle": {
|
|
1713
1713
|
"message": "Accessibility"
|
|
@@ -1794,10 +1794,10 @@
|
|
|
1794
1794
|
"message": "Performance"
|
|
1795
1795
|
},
|
|
1796
1796
|
"core/config/default-config.js | pwaCategoryDescription": {
|
|
1797
|
-
"message": "These checks validate the aspects of a Progressive Web App. [Learn what makes a good Progressive Web App](https://web.dev/pwa-checklist
|
|
1797
|
+
"message": "These checks validate the aspects of a Progressive Web App. [Learn what makes a good Progressive Web App](https://web.dev/articles/pwa-checklist)."
|
|
1798
1798
|
},
|
|
1799
1799
|
"core/config/default-config.js | pwaCategoryManualDescription": {
|
|
1800
|
-
"message": "These checks are required by the baseline [PWA Checklist](https://web.dev/pwa-checklist
|
|
1800
|
+
"message": "These checks are required by the baseline [PWA Checklist](https://web.dev/articles/pwa-checklist) but are not automatically checked by Lighthouse. They do not affect your score but it's important that you verify them manually."
|
|
1801
1801
|
},
|
|
1802
1802
|
"core/config/default-config.js | pwaCategoryTitle": {
|
|
1803
1803
|
"message": "PWA"
|
|
@@ -1809,7 +1809,7 @@
|
|
|
1809
1809
|
"message": "PWA Optimized"
|
|
1810
1810
|
},
|
|
1811
1811
|
"core/config/default-config.js | seoCategoryDescription": {
|
|
1812
|
-
"message": "These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on [Core Web Vitals](https://web.dev/
|
|
1812
|
+
"message": "These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on [Core Web Vitals](https://web.dev/explore/vitals). [Learn more about Google Search Essentials](https://support.google.com/webmasters/answer/35769)."
|
|
1813
1813
|
},
|
|
1814
1814
|
"core/config/default-config.js | seoCategoryManualDescription": {
|
|
1815
1815
|
"message": "Run these additional validators on your site to check additional SEO best practices."
|
|
@@ -639,7 +639,7 @@
|
|
|
639
639
|
"message": "Ûśê v́îd́êó f̂ór̂ḿât́ŝ f́ôŕ âńîḿât́êd́ ĉón̂t́êńt̂"
|
|
640
640
|
},
|
|
641
641
|
"core/audits/byte-efficiency/legacy-javascript.js | description": {
|
|
642
|
-
"message": "P̂ól̂ýf̂íl̂ĺŝ án̂d́ t̂ŕâńŝf́ôŕm̂ś êńâb́l̂é l̂éĝáĉý b̂ŕôẃŝér̂ś t̂ó ûśê ńêẃ Ĵáv̂áŜćr̂íp̂t́ f̂éât́ûŕêś. Ĥóŵév̂ér̂, ḿâńŷ ár̂én̂'t́ n̂éĉéŝśâŕŷ f́ôŕ m̂ód̂ér̂ń b̂ŕôẃŝér̂ś. F̂ór̂ ýôúr̂ b́ûńd̂ĺêd́ Ĵáv̂áŜćr̂íp̂t́, âd́ôṕt̂ á m̂ód̂ér̂ń ŝćr̂íp̂t́ d̂ép̂ĺôým̂én̂t́ ŝt́r̂át̂éĝý ûśîńĝ ḿôd́ûĺê/ńôḿôd́ûĺê f́êát̂úr̂é d̂ét̂éĉt́îón̂ t́ô ŕêd́ûćê t́ĥé âḿôún̂t́ ôf́ ĉód̂é ŝh́îṕp̂éd̂ t́ô ḿôd́êŕn̂ b́r̂óŵśêŕŝ, ẃĥíl̂é r̂ét̂áîńîńĝ śûṕp̂ór̂t́ f̂ór̂ ĺêǵâćŷ b́r̂óŵśêŕŝ. [Ĺêár̂ń ĥóŵ t́ô úŝé m̂ód̂ér̂ń Ĵáv̂áŜćr̂íp̂t́](https://web.dev/publish-modern-javascript
|
|
642
|
+
"message": "P̂ól̂ýf̂íl̂ĺŝ án̂d́ t̂ŕâńŝf́ôŕm̂ś êńâb́l̂é l̂éĝáĉý b̂ŕôẃŝér̂ś t̂ó ûśê ńêẃ Ĵáv̂áŜćr̂íp̂t́ f̂éât́ûŕêś. Ĥóŵév̂ér̂, ḿâńŷ ár̂én̂'t́ n̂éĉéŝśâŕŷ f́ôŕ m̂ód̂ér̂ń b̂ŕôẃŝér̂ś. F̂ór̂ ýôúr̂ b́ûńd̂ĺêd́ Ĵáv̂áŜćr̂íp̂t́, âd́ôṕt̂ á m̂ód̂ér̂ń ŝćr̂íp̂t́ d̂ép̂ĺôým̂én̂t́ ŝt́r̂át̂éĝý ûśîńĝ ḿôd́ûĺê/ńôḿôd́ûĺê f́êát̂úr̂é d̂ét̂éĉt́îón̂ t́ô ŕêd́ûćê t́ĥé âḿôún̂t́ ôf́ ĉód̂é ŝh́îṕp̂éd̂ t́ô ḿôd́êŕn̂ b́r̂óŵśêŕŝ, ẃĥíl̂é r̂ét̂áîńîńĝ śûṕp̂ór̂t́ f̂ór̂ ĺêǵâćŷ b́r̂óŵśêŕŝ. [Ĺêár̂ń ĥóŵ t́ô úŝé m̂ód̂ér̂ń Ĵáv̂áŜćr̂íp̂t́](https://web.dev/articles/publish-modern-javascript)"
|
|
643
643
|
},
|
|
644
644
|
"core/audits/byte-efficiency/legacy-javascript.js | title": {
|
|
645
645
|
"message": "Âv́ôíd̂ śêŕv̂ín̂ǵ l̂éĝáĉý Ĵáv̂áŜćr̂íp̂t́ t̂ó m̂ód̂ér̂ń b̂ŕôẃŝér̂ś"
|
|
@@ -993,7 +993,7 @@
|
|
|
993
993
|
"message": "Êx́p̂éĉt́êd́ ŝíẑé"
|
|
994
994
|
},
|
|
995
995
|
"core/audits/image-size-responsive.js | description": {
|
|
996
|
-
"message": "Îḿâǵê ńât́ûŕâĺ d̂ím̂én̂śîón̂ś ŝh́ôúl̂d́ b̂é p̂ŕôṕôŕt̂íôńâĺ t̂ó t̂h́ê d́îśp̂ĺâý ŝíẑé âńd̂ t́ĥé p̂íx̂él̂ ŕât́îó t̂ó m̂áx̂ím̂íẑé îḿâǵê ćl̂ár̂ít̂ý. [L̂éâŕn̂ h́ôẃ t̂ó p̂ŕôv́îd́ê ŕêśp̂ón̂śîv́ê ím̂áĝéŝ](https://web.dev/serve-responsive-images
|
|
996
|
+
"message": "Îḿâǵê ńât́ûŕâĺ d̂ím̂én̂śîón̂ś ŝh́ôúl̂d́ b̂é p̂ŕôṕôŕt̂íôńâĺ t̂ó t̂h́ê d́îśp̂ĺâý ŝíẑé âńd̂ t́ĥé p̂íx̂él̂ ŕât́îó t̂ó m̂áx̂ím̂íẑé îḿâǵê ćl̂ár̂ít̂ý. [L̂éâŕn̂ h́ôẃ t̂ó p̂ŕôv́îd́ê ŕêśp̂ón̂śîv́ê ím̂áĝéŝ](https://web.dev/articles/serve-responsive-images)."
|
|
997
997
|
},
|
|
998
998
|
"core/audits/image-size-responsive.js | failureTitle": {
|
|
999
999
|
"message": "Ŝér̂v́êś îḿâǵêś ŵít̂h́ l̂óŵ ŕêśôĺût́îón̂"
|
|
@@ -1158,13 +1158,13 @@
|
|
|
1158
1158
|
"message": "ĈĹŜ Ćôńt̂ŕîb́ût́îón̂"
|
|
1159
1159
|
},
|
|
1160
1160
|
"core/audits/layout-shift-elements.js | description": {
|
|
1161
|
-
"message": "T̂h́êśê D́ÔḾ êĺêḿêńt̂ś ĉón̂t́r̂íb̂út̂é m̂óŝt́ t̂ó t̂h́ê ĆL̂Ś ôf́ t̂h́ê ṕâǵê. [Ĺêár̂ń ĥóŵ t́ô ím̂ṕr̂óv̂é ĈĹŜ](https://web.dev/optimize-cls
|
|
1161
|
+
"message": "T̂h́êśê D́ÔḾ êĺêḿêńt̂ś ĉón̂t́r̂íb̂út̂é m̂óŝt́ t̂ó t̂h́ê ĆL̂Ś ôf́ t̂h́ê ṕâǵê. [Ĺêár̂ń ĥóŵ t́ô ím̂ṕr̂óv̂é ĈĹŜ](https://web.dev/articles/optimize-cls)"
|
|
1162
1162
|
},
|
|
1163
1163
|
"core/audits/layout-shift-elements.js | title": {
|
|
1164
1164
|
"message": "Âv́ôíd̂ ĺâŕĝé l̂áŷóût́ ŝh́îf́t̂ś"
|
|
1165
1165
|
},
|
|
1166
1166
|
"core/audits/lcp-lazy-loaded.js | description": {
|
|
1167
|
-
"message": "Âb́ôv́ê-t́ĥé-f̂ól̂d́ îḿâǵêś t̂h́ât́ âŕê ĺâźîĺŷ ĺôád̂éd̂ ŕêńd̂ér̂ ĺât́êŕ îń t̂h́ê ṕâǵê ĺîf́êćŷćl̂é, ŵh́îćĥ ćâń d̂él̂áŷ t́ĥé l̂ár̂ǵêśt̂ ćôńt̂én̂t́f̂úl̂ ṕâín̂t́. [L̂éâŕn̂ ḿôŕê áb̂óût́ ôṕt̂ím̂ál̂ ĺâźŷ ĺôád̂ín̂ǵ](https://web.dev/lcp-lazy-loading
|
|
1167
|
+
"message": "Âb́ôv́ê-t́ĥé-f̂ól̂d́ îḿâǵêś t̂h́ât́ âŕê ĺâźîĺŷ ĺôád̂éd̂ ŕêńd̂ér̂ ĺât́êŕ îń t̂h́ê ṕâǵê ĺîf́êćŷćl̂é, ŵh́îćĥ ćâń d̂él̂áŷ t́ĥé l̂ár̂ǵêśt̂ ćôńt̂én̂t́f̂úl̂ ṕâín̂t́. [L̂éâŕn̂ ḿôŕê áb̂óût́ ôṕt̂ím̂ál̂ ĺâźŷ ĺôád̂ín̂ǵ](https://web.dev/articles/lcp-lazy-loading)."
|
|
1168
1168
|
},
|
|
1169
1169
|
"core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1170
1170
|
"message": "L̂ár̂ǵêśt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ îḿâǵê ẃâś l̂áẑíl̂ý l̂óâd́êd́"
|
|
@@ -1173,7 +1173,7 @@
|
|
|
1173
1173
|
"message": "L̂ár̂ǵêśt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ îḿâǵê ẃâś n̂ót̂ ĺâźîĺŷ ĺôád̂éd̂"
|
|
1174
1174
|
},
|
|
1175
1175
|
"core/audits/long-tasks.js | description": {
|
|
1176
|
-
"message": "L̂íŝt́ŝ t́ĥé l̂ón̂ǵêśt̂ t́âśk̂ś ôń t̂h́ê ḿâín̂ t́ĥŕêád̂, úŝéf̂úl̂ f́ôŕ îd́êńt̂íf̂ýîńĝ ẃôŕŝt́ ĉón̂t́r̂íb̂út̂ór̂ś t̂ó îńp̂út̂ d́êĺâý. [L̂éâŕn̂ h́ôẃ t̂ó âv́ôíd̂ ĺôńĝ ḿâín̂-t́ĥŕêád̂ t́âśk̂ś](https://web.dev/long-tasks-devtools
|
|
1176
|
+
"message": "L̂íŝt́ŝ t́ĥé l̂ón̂ǵêśt̂ t́âśk̂ś ôń t̂h́ê ḿâín̂ t́ĥŕêád̂, úŝéf̂úl̂ f́ôŕ îd́êńt̂íf̂ýîńĝ ẃôŕŝt́ ĉón̂t́r̂íb̂út̂ór̂ś t̂ó îńp̂út̂ d́êĺâý. [L̂éâŕn̂ h́ôẃ t̂ó âv́ôíd̂ ĺôńĝ ḿâín̂-t́ĥŕêád̂ t́âśk̂ś](https://web.dev/articles/long-tasks-devtools)"
|
|
1177
1177
|
},
|
|
1178
1178
|
"core/audits/long-tasks.js | displayValue": {
|
|
1179
1179
|
"message": "{itemCount, plural,\n =1 {# l̂ón̂ǵ t̂áŝḱ f̂óûńd̂}\n other {# ĺôńĝ t́âśk̂ś f̂óûńd̂}\n }"
|
|
@@ -1221,7 +1221,7 @@
|
|
|
1221
1221
|
"message": "M̂án̂íf̂éŝt́ ĥáŝ á m̂áŝḱâb́l̂é îćôń"
|
|
1222
1222
|
},
|
|
1223
1223
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1224
|
-
"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
|
|
1224
|
+
"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/articles/cls)."
|
|
1225
1225
|
},
|
|
1226
1226
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1227
1227
|
"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/)."
|
|
@@ -1230,7 +1230,7 @@
|
|
|
1230
1230
|
"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/)."
|
|
1231
1231
|
},
|
|
1232
1232
|
"core/audits/metrics/interaction-to-next-paint.js | description": {
|
|
1233
|
-
"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
|
|
1233
|
+
"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/articles/inp)."
|
|
1234
1234
|
},
|
|
1235
1235
|
"core/audits/metrics/interactive.js | description": {
|
|
1236
1236
|
"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/)."
|
|
@@ -1260,7 +1260,7 @@
|
|
|
1260
1260
|
"message": "Ŝér̂v́êŕ B̂áĉḱêńd̂ Ĺât́êńĉíêś"
|
|
1261
1261
|
},
|
|
1262
1262
|
"core/audits/no-unload-listeners.js | description": {
|
|
1263
|
-
"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/bfcache
|
|
1263
|
+
"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)"
|
|
1264
1264
|
},
|
|
1265
1265
|
"core/audits/no-unload-listeners.js | failureTitle": {
|
|
1266
1266
|
"message": "R̂éĝíŝt́êŕŝ án̂ `unload` ĺîśt̂én̂ér̂"
|
|
@@ -1305,7 +1305,7 @@
|
|
|
1305
1305
|
"message": "P̂ér̂f́ôŕm̂án̂ćê b́ûd́ĝét̂"
|
|
1306
1306
|
},
|
|
1307
1307
|
"core/audits/preload-fonts.js | description": {
|
|
1308
|
-
"message": "P̂ŕêĺôád̂ `optional` f́ôńt̂ś ŝó f̂ír̂śt̂-t́îḿê v́îśît́ôŕŝ ḿâý ûśê t́ĥém̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ ṕr̂él̂óâd́îńĝ f́ôńt̂ś](https://web.dev/preload-optional-fonts
|
|
1308
|
+
"message": "P̂ŕêĺôád̂ `optional` f́ôńt̂ś ŝó f̂ír̂śt̂-t́îḿê v́îśît́ôŕŝ ḿâý ûśê t́ĥém̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ ṕr̂él̂óâd́îńĝ f́ôńt̂ś](https://web.dev/articles/preload-optional-fonts)"
|
|
1309
1309
|
},
|
|
1310
1310
|
"core/audits/preload-fonts.js | failureTitle": {
|
|
1311
1311
|
"message": "F̂ón̂t́ŝ ẃît́ĥ `font-display: optional` ár̂é n̂ót̂ ṕr̂él̂óâd́êd́"
|
|
@@ -1314,7 +1314,7 @@
|
|
|
1314
1314
|
"message": "F̂ón̂t́ŝ ẃît́ĥ `font-display: optional` ár̂é p̂ŕêĺôád̂éd̂"
|
|
1315
1315
|
},
|
|
1316
1316
|
"core/audits/prioritize-lcp-image.js | description": {
|
|
1317
|
-
"message": "Îf́ t̂h́ê ĹĈṔ êĺêḿêńt̂ íŝ d́ŷńâḿîćâĺl̂ý âd́d̂éd̂ t́ô t́ĥé p̂áĝé, ŷóû śĥóûĺd̂ ṕr̂él̂óâd́ t̂h́ê ím̂áĝé îń ôŕd̂ér̂ t́ô ím̂ṕr̂óv̂é L̂ĆP̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ ṕr̂él̂óâd́îńĝ ĹĈṔ êĺêḿêńt̂ś](https://web.dev/optimize-lcp
|
|
1317
|
+
"message": "Îf́ t̂h́ê ĹĈṔ êĺêḿêńt̂ íŝ d́ŷńâḿîćâĺl̂ý âd́d̂éd̂ t́ô t́ĥé p̂áĝé, ŷóû śĥóûĺd̂ ṕr̂él̂óâd́ t̂h́ê ím̂áĝé îń ôŕd̂ér̂ t́ô ím̂ṕr̂óv̂é L̂ĆP̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ ṕr̂él̂óâd́îńĝ ĹĈṔ êĺêḿêńt̂ś](https://web.dev/articles/optimize-lcp#optimize_when_the_resource_is_discovered)."
|
|
1318
1318
|
},
|
|
1319
1319
|
"core/audits/prioritize-lcp-image.js | title": {
|
|
1320
1320
|
"message": "P̂ŕêĺôád̂ Ĺâŕĝéŝt́ Ĉón̂t́êńt̂f́ûĺ P̂áîńt̂ ím̂áĝé"
|
|
@@ -1587,7 +1587,7 @@
|
|
|
1587
1587
|
"message": "T̂ím̂ín̂ǵ b̂úd̂ǵêt́"
|
|
1588
1588
|
},
|
|
1589
1589
|
"core/audits/unsized-images.js | description": {
|
|
1590
|
-
"message": "Ŝét̂ án̂ éx̂ṕl̂íĉít̂ ẃîd́t̂h́ âńd̂ h́êíĝh́t̂ ón̂ ím̂áĝé êĺêḿêńt̂ś t̂ó r̂éd̂úĉé l̂áŷóût́ ŝh́îf́t̂ś âńd̂ ím̂ṕr̂óv̂é ĈĹŜ. [Ĺêár̂ń ĥóŵ t́ô śêt́ îḿâǵê d́îḿêńŝíôńŝ](https://web.dev/optimize-cls
|
|
1590
|
+
"message": "Ŝét̂ án̂ éx̂ṕl̂íĉít̂ ẃîd́t̂h́ âńd̂ h́êíĝh́t̂ ón̂ ím̂áĝé êĺêḿêńt̂ś t̂ó r̂éd̂úĉé l̂áŷóût́ ŝh́îf́t̂ś âńd̂ ím̂ṕr̂óv̂é ĈĹŜ. [Ĺêár̂ń ĥóŵ t́ô śêt́ îḿâǵê d́îḿêńŝíôńŝ](https://web.dev/articles/optimize-cls#images_without_dimensions)"
|
|
1591
1591
|
},
|
|
1592
1592
|
"core/audits/unsized-images.js | failureTitle": {
|
|
1593
1593
|
"message": "Îḿâǵê él̂ém̂én̂t́ŝ d́ô ńôt́ ĥáv̂é êx́p̂ĺîćît́ `width` âńd̂ `height`"
|
|
@@ -1662,7 +1662,7 @@
|
|
|
1662
1662
|
"message": "Ĥáŝ á `<meta name=\"viewport\">` t̂áĝ ẃît́ĥ `width` ór̂ `initial-scale`"
|
|
1663
1663
|
},
|
|
1664
1664
|
"core/audits/work-during-interaction.js | description": {
|
|
1665
|
-
"message": "T̂h́îś îś t̂h́ê t́ĥŕêád̂-b́l̂óĉḱîńĝ ẃôŕk̂ óĉćûŕr̂ín̂ǵ d̂úr̂ín̂ǵ t̂h́ê Ín̂t́êŕâćt̂íôń t̂ó N̂éx̂t́ P̂áîńt̂ ḿêáŝúr̂ém̂én̂t́. [L̂éâŕn̂ ḿôŕê áb̂óût́ t̂h́ê Ín̂t́êŕâćt̂íôń t̂ó N̂éx̂t́ P̂áîńt̂ ḿêt́r̂íĉ](https://web.dev/inp
|
|
1665
|
+
"message": "T̂h́îś îś t̂h́ê t́ĥŕêád̂-b́l̂óĉḱîńĝ ẃôŕk̂ óĉćûŕr̂ín̂ǵ d̂úr̂ín̂ǵ t̂h́ê Ín̂t́êŕâćt̂íôń t̂ó N̂éx̂t́ P̂áîńt̂ ḿêáŝúr̂ém̂én̂t́. [L̂éâŕn̂ ḿôŕê áb̂óût́ t̂h́ê Ín̂t́êŕâćt̂íôń t̂ó N̂éx̂t́ P̂áîńt̂ ḿêt́r̂íĉ](https://web.dev/articles/inp)."
|
|
1666
1666
|
},
|
|
1667
1667
|
"core/audits/work-during-interaction.js | displayValue": {
|
|
1668
1668
|
"message": "{timeInMs, number, milliseconds} m̂ś ŝṕêńt̂ ón̂ év̂én̂t́ '{interactionType}'"
|
|
@@ -1704,10 +1704,10 @@
|
|
|
1704
1704
|
"message": "B̂éŝt́ p̂ŕâćt̂íĉéŝ"
|
|
1705
1705
|
},
|
|
1706
1706
|
"core/config/default-config.js | a11yCategoryDescription": {
|
|
1707
|
-
"message": "T̂h́êśê ćĥéĉḱŝ h́îǵĥĺîǵĥt́ ôṕp̂ór̂t́ûńît́îéŝ t́ô [ím̂ṕr̂óv̂é t̂h́ê áĉćêśŝíb̂íl̂ít̂ý ôf́ ŷóûŕ ŵéb̂ áp̂ṕ](https://developer.chrome.com/docs/lighthouse/accessibility/). Âút̂óm̂át̂íĉ d́êt́êćt̂íôń ĉán̂ ón̂ĺŷ d́êt́êćt̂ á ŝúb̂śêt́ ôf́ îśŝúêś âńd̂ d́ôéŝ ńôt́ ĝúâŕâńt̂éê t́ĥé âćĉéŝśîb́îĺît́ŷ óf̂ ýôúr̂ ẃêb́ âṕp̂, śô [ḿâńûál̂ t́êśt̂ín̂ǵ](https://web.dev/how-to-review
|
|
1707
|
+
"message": "T̂h́êśê ćĥéĉḱŝ h́îǵĥĺîǵĥt́ ôṕp̂ór̂t́ûńît́îéŝ t́ô [ím̂ṕr̂óv̂é t̂h́ê áĉćêśŝíb̂íl̂ít̂ý ôf́ ŷóûŕ ŵéb̂ áp̂ṕ](https://developer.chrome.com/docs/lighthouse/accessibility/). Âút̂óm̂át̂íĉ d́êt́êćt̂íôń ĉán̂ ón̂ĺŷ d́êt́êćt̂ á ŝúb̂śêt́ ôf́ îśŝúêś âńd̂ d́ôéŝ ńôt́ ĝúâŕâńt̂éê t́ĥé âćĉéŝśîb́îĺît́ŷ óf̂ ýôúr̂ ẃêb́ âṕp̂, śô [ḿâńûál̂ t́êśt̂ín̂ǵ](https://web.dev/articles/how-to-review) îś âĺŝó êńĉóûŕâǵêd́."
|
|
1708
1708
|
},
|
|
1709
1709
|
"core/config/default-config.js | a11yCategoryManualDescription": {
|
|
1710
|
-
"message": "T̂h́êśê ít̂ém̂ś âd́d̂ŕêśŝ ár̂éâś ŵh́îćĥ án̂ áût́ôḿât́êd́ t̂éŝt́îńĝ t́ôól̂ ćâńn̂ót̂ ćôv́êŕ. L̂éâŕn̂ ḿôŕê ín̂ óûŕ ĝúîd́ê ón̂ [ćôńd̂úĉt́îńĝ án̂ áĉćêśŝíb̂íl̂ít̂ý r̂év̂íêẃ](https://web.dev/how-to-review
|
|
1710
|
+
"message": "T̂h́êśê ít̂ém̂ś âd́d̂ŕêśŝ ár̂éâś ŵh́îćĥ án̂ áût́ôḿât́êd́ t̂éŝt́îńĝ t́ôól̂ ćâńn̂ót̂ ćôv́êŕ. L̂éâŕn̂ ḿôŕê ín̂ óûŕ ĝúîd́ê ón̂ [ćôńd̂úĉt́îńĝ án̂ áĉćêśŝíb̂íl̂ít̂ý r̂év̂íêẃ](https://web.dev/articles/how-to-review)."
|
|
1711
1711
|
},
|
|
1712
1712
|
"core/config/default-config.js | a11yCategoryTitle": {
|
|
1713
1713
|
"message": "Âćĉéŝśîb́îĺît́ŷ"
|
|
@@ -1794,10 +1794,10 @@
|
|
|
1794
1794
|
"message": "P̂ér̂f́ôŕm̂án̂ćê"
|
|
1795
1795
|
},
|
|
1796
1796
|
"core/config/default-config.js | pwaCategoryDescription": {
|
|
1797
|
-
"message": "T̂h́êśê ćĥéĉḱŝ v́âĺîd́ât́ê t́ĥé âśp̂éĉt́ŝ óf̂ á P̂ŕôǵr̂éŝśîv́ê Ẃêb́ Âṕp̂. [Ĺêár̂ń ŵh́ât́ m̂ák̂éŝ á ĝóôd́ P̂ŕôǵr̂éŝśîv́ê Ẃêb́ Âṕp̂](https://web.dev/pwa-checklist
|
|
1797
|
+
"message": "T̂h́êśê ćĥéĉḱŝ v́âĺîd́ât́ê t́ĥé âśp̂éĉt́ŝ óf̂ á P̂ŕôǵr̂éŝśîv́ê Ẃêb́ Âṕp̂. [Ĺêár̂ń ŵh́ât́ m̂ák̂éŝ á ĝóôd́ P̂ŕôǵr̂éŝśîv́ê Ẃêb́ Âṕp̂](https://web.dev/articles/pwa-checklist)."
|
|
1798
1798
|
},
|
|
1799
1799
|
"core/config/default-config.js | pwaCategoryManualDescription": {
|
|
1800
|
-
"message": "T̂h́êśê ćĥéĉḱŝ ár̂é r̂éq̂úîŕêd́ b̂ý t̂h́ê b́âśêĺîńê [ṔŴÁ Ĉh́êćk̂ĺîśt̂](https://web.dev/pwa-checklist
|
|
1800
|
+
"message": "T̂h́êśê ćĥéĉḱŝ ár̂é r̂éq̂úîŕêd́ b̂ý t̂h́ê b́âśêĺîńê [ṔŴÁ Ĉh́êćk̂ĺîśt̂](https://web.dev/articles/pwa-checklist) b́ût́ âŕê ńôt́ âút̂óm̂át̂íĉál̂ĺŷ ćĥéĉḱêd́ b̂ý L̂íĝh́t̂h́ôúŝé. T̂h́êý d̂ó n̂ót̂ áf̂f́êćt̂ ýôúr̂ śĉór̂é b̂út̂ ít̂'ś îḿp̂ór̂t́âńt̂ t́ĥát̂ ýôú v̂ér̂íf̂ý t̂h́êḿ m̂án̂úâĺl̂ý."
|
|
1801
1801
|
},
|
|
1802
1802
|
"core/config/default-config.js | pwaCategoryTitle": {
|
|
1803
1803
|
"message": "P̂ẂÂ"
|
|
@@ -1809,7 +1809,7 @@
|
|
|
1809
1809
|
"message": "P̂ẂÂ Óp̂t́îḿîźêd́"
|
|
1810
1810
|
},
|
|
1811
1811
|
"core/config/default-config.js | seoCategoryDescription": {
|
|
1812
|
-
"message": "T̂h́êśê ćĥéĉḱŝ én̂śûŕê t́ĥát̂ ýôúr̂ ṕâǵê íŝ f́ôĺl̂óŵín̂ǵ b̂áŝíĉ śêár̂ćĥ én̂ǵîńê óp̂t́îḿîźât́îón̂ ád̂v́îćê. T́ĥér̂é âŕê ḿâńŷ ád̂d́ît́îón̂ál̂ f́âćt̂ór̂ś L̂íĝh́t̂h́ôúŝé d̂óêś n̂ót̂ śĉór̂é ĥér̂é t̂h́ât́ m̂áŷ áf̂f́êćt̂ ýôúr̂ śêár̂ćĥ ŕâńk̂ín̂ǵ, îńĉĺûd́îńĝ ṕêŕf̂ór̂ḿâńĉé ôń [Ĉór̂é Ŵéb̂ V́ît́âĺŝ](https://web.dev/
|
|
1812
|
+
"message": "T̂h́êśê ćĥéĉḱŝ én̂śûŕê t́ĥát̂ ýôúr̂ ṕâǵê íŝ f́ôĺl̂óŵín̂ǵ b̂áŝíĉ śêár̂ćĥ én̂ǵîńê óp̂t́îḿîźât́îón̂ ád̂v́îćê. T́ĥér̂é âŕê ḿâńŷ ád̂d́ît́îón̂ál̂ f́âćt̂ór̂ś L̂íĝh́t̂h́ôúŝé d̂óêś n̂ót̂ śĉór̂é ĥér̂é t̂h́ât́ m̂áŷ áf̂f́êćt̂ ýôúr̂ śêár̂ćĥ ŕâńk̂ín̂ǵ, îńĉĺûd́îńĝ ṕêŕf̂ór̂ḿâńĉé ôń [Ĉór̂é Ŵéb̂ V́ît́âĺŝ](https://web.dev/explore/vitals). [Ĺêár̂ń m̂ór̂é âb́ôút̂ Ǵôóĝĺê Śêár̂ćĥ Éŝśêńt̂íâĺŝ](https://support.google.com/webmasters/answer/35769)."
|
|
1813
1813
|
},
|
|
1814
1814
|
"core/config/default-config.js | seoCategoryManualDescription": {
|
|
1815
1815
|
"message": "R̂ún̂ t́ĥéŝé âd́d̂ít̂íôńâĺ v̂ál̂íd̂át̂ór̂ś ôń ŷóûŕ ŝít̂é t̂ó ĉh́êćk̂ ád̂d́ît́îón̂ál̂ ŚÊÓ b̂éŝt́ p̂ŕâćt̂íĉéŝ."
|