diff --git a/lighthouse-core/audits/deprecations.js b/lighthouse-core/audits/deprecations.js index f7eb7b14bfb2..4dfa35a94566 100644 --- a/lighthouse-core/audits/deprecations.js +++ b/lighthouse-core/audits/deprecations.js @@ -21,7 +21,7 @@ const UIStrings = { failureTitle: 'Uses deprecated APIs', /** Description of a Lighthouse audit that tells the user why they should not use deprecated APIs on their page. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Deprecated APIs will eventually be removed from the browser. ' + - '[Learn more](https://www.chromestatus.com/features#deprecated).', + '[Learn more](https://web.dev/deprecations).', /** [ICU Syntax] Label for the audit identifying the number of warnings generated by using deprecated APIs. */ displayValue: `{itemCount, plural, =1 {1 warning found} diff --git a/lighthouse-core/audits/dobetterweb/appcache-manifest.js b/lighthouse-core/audits/dobetterweb/appcache-manifest.js index b20ab17afed3..7e4f0fa40adc 100644 --- a/lighthouse-core/audits/dobetterweb/appcache-manifest.js +++ b/lighthouse-core/audits/dobetterweb/appcache-manifest.js @@ -20,7 +20,7 @@ const UIStrings = { failureTitle: 'Uses Application Cache', /** Description of a Lighthouse audit that tells the user why they should not use the Application Cache API. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Application Cache is deprecated. ' + - '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/appcache).', + '[Learn more](https://web.dev/appcache-manifest).', /** * @description Label for the audit identifying uses of the Application Cache. * @example {clock.appcache} AppCacheManifest diff --git a/lighthouse-core/audits/dobetterweb/doctype.js b/lighthouse-core/audits/dobetterweb/doctype.js index 48f38df9c789..78d86189e7d6 100644 --- a/lighthouse-core/audits/dobetterweb/doctype.js +++ b/lighthouse-core/audits/dobetterweb/doctype.js @@ -15,8 +15,8 @@ const UIStrings = { failureTitle: 'Page lacks the HTML doctype, thus triggering quirks-mode', /** Description of a Lighthouse audit that tells the user why they should define an HTML doctype. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Specifying a doctype prevents the browser ' + - 'from switching to quirks-mode. Read more on the ' + - '[MDN Web Docs page](https://developer.mozilla.org/en-US/docs/Glossary/Doctype)', + 'from switching to quirks-mode. ' + + '[Learn more](https://web.dev/doctype).', /** Explanatory message stating that the document has no doctype. */ explanationNoDoctype: 'Document must contain a doctype', /** Explanatory message stating that the publicId field is not empty. */ diff --git a/lighthouse-core/audits/dobetterweb/dom-size.js b/lighthouse-core/audits/dobetterweb/dom-size.js index 8e64ca7d8015..b0cfc7c09bd6 100644 --- a/lighthouse-core/audits/dobetterweb/dom-size.js +++ b/lighthouse-core/audits/dobetterweb/dom-size.js @@ -31,7 +31,7 @@ const UIStrings = { `depth < ${MAX_DOM_TREE_DEPTH} elements and fewer than ${MAX_DOM_TREE_WIDTH} ` + 'children/parent element. A large DOM can increase memory usage, cause longer ' + '[style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), ' + - 'and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://developers.google.com/web/tools/lighthouse/audits/dom-size).', + 'and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://web.dev/dom-size).', /** Table column header for the type of statistic. These statistics describe how big the DOM is (count of DOM elements, children, depth). */ columnStatistic: 'Statistic', /** Table column header for the DOM element. Each DOM element is described with its HTML representation. */ diff --git a/lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js b/lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js index f8ccee8ffee2..5fc0bdd18d0f 100644 --- a/lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js +++ b/lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js @@ -17,7 +17,7 @@ const UIStrings = { /** Description of a Lighthouse audit that tells the user why and how they should secure cross-origin links. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Add `rel="noopener"` or `rel="noreferrer"` to any external links to improve ' + 'performance and prevent security vulnerabilities. ' + - '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/noopener).', + '[Learn more](https://web.dev/external-anchors-use-rel-noopener).', /** * @description Warning that some links' destinations cannot be determined and therefore the audit cannot evaluate the link's safety. * @example {} anchorHTML diff --git a/lighthouse-core/audits/dobetterweb/geolocation-on-start.js b/lighthouse-core/audits/dobetterweb/geolocation-on-start.js index 208040e26c58..abad7e916b1a 100644 --- a/lighthouse-core/audits/dobetterweb/geolocation-on-start.js +++ b/lighthouse-core/audits/dobetterweb/geolocation-on-start.js @@ -22,7 +22,7 @@ const UIStrings = { /** Description of a Lighthouse audit that tells the user why they should not ask for geolocation permissions on load. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Users are mistrustful of or confused by sites that request their ' + 'location without context. Consider tying the request to a user action instead. ' + - '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/geolocation-on-load).', + '[Learn more](https://web.dev/geolocation-on-start).', }; const str_ = i18n.createMessageInstanceIdFn(__filename, UIStrings); diff --git a/lighthouse-core/audits/dobetterweb/js-libraries.js b/lighthouse-core/audits/dobetterweb/js-libraries.js index 7a30e9f8dd10..ac1e4d17083e 100644 --- a/lighthouse-core/audits/dobetterweb/js-libraries.js +++ b/lighthouse-core/audits/dobetterweb/js-libraries.js @@ -17,7 +17,7 @@ const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ - description: 'All front-end JavaScript libraries detected on the page.', + description: 'All front-end JavaScript libraries detected on the page. [Learn more](https://web.dev/js-libraries).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', }; diff --git a/lighthouse-core/audits/dobetterweb/no-document-write.js b/lighthouse-core/audits/dobetterweb/no-document-write.js index 77368e048fba..e470353fe61d 100644 --- a/lighthouse-core/audits/dobetterweb/no-document-write.js +++ b/lighthouse-core/audits/dobetterweb/no-document-write.js @@ -21,7 +21,7 @@ const UIStrings = { /** Description of a Lighthouse audit that tells the user why they should avoid `document.write`. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'For users on slow connections, external scripts dynamically injected via ' + '`document.write()` can delay page load by tens of seconds. ' + - '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/document-write).', + '[Learn more](https://web.dev/no-document-write).', }; const str_ = i18n.createMessageInstanceIdFn(__filename, UIStrings); diff --git a/lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js b/lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js index ec3036e1053a..7e875b6a26a4 100644 --- a/lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js +++ b/lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js @@ -28,7 +28,7 @@ const UIStrings = { /** Description of a Lighthouse audit that tells the user why they should be concerned about the third party Javascript libraries that they use. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Some third-party scripts may contain known security vulnerabilities ' + 'that are easily identified and exploited by attackers. ' + - '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/vulnerabilities).', + '[Learn more](https://web.dev/no-vulnerable-libraries).', /** [ICU Syntax] Label for the audit identifying the number of vulnerable Javascript libraries found. */ displayValue: `{itemCount, plural, =1 {1 vulnerability detected} diff --git a/lighthouse-core/audits/dobetterweb/notification-on-start.js b/lighthouse-core/audits/dobetterweb/notification-on-start.js index 25559a96cec0..490a526f5dc7 100644 --- a/lighthouse-core/audits/dobetterweb/notification-on-start.js +++ b/lighthouse-core/audits/dobetterweb/notification-on-start.js @@ -22,7 +22,7 @@ const UIStrings = { /** Description of a Lighthouse audit that tells the user why they should not ask for notification permission on load. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Users are mistrustful of or confused by sites that request to send ' + 'notifications without context. Consider tying the request to user gestures ' + - 'instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/notifications-on-load).', + 'instead. [Learn more](https://web.dev/notification-on-start).', }; const str_ = i18n.createMessageInstanceIdFn(__filename, UIStrings); diff --git a/lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js b/lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js index b417988ca634..3e90b7f06f06 100644 --- a/lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js +++ b/lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js @@ -15,7 +15,7 @@ const UIStrings = { failureTitle: 'Prevents users to paste into password fields', /** Description of a Lighthouse audit that tells the user why they should allow pasting of content into password fields. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Preventing password pasting undermines good security policy. ' + - '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/password-pasting).', + '[Learn more](https://web.dev/password-inputs-can-be-pasted-into).', /** Table column header for the HTML elements that do not allow pasting of content. */ columnFailingElem: 'Failing Elements', }; diff --git a/lighthouse-core/audits/dobetterweb/uses-http2.js b/lighthouse-core/audits/dobetterweb/uses-http2.js index 73d2524fb612..10d980ef00b8 100644 --- a/lighthouse-core/audits/dobetterweb/uses-http2.js +++ b/lighthouse-core/audits/dobetterweb/uses-http2.js @@ -23,7 +23,7 @@ const UIStrings = { failureTitle: 'Does not use HTTP/2 for all of its resources', /** Description of a Lighthouse audit that tells the user why they should use HTTP/2. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'HTTP/2 offers many benefits over HTTP/1.1, including binary headers, ' + - 'multiplexing, and server push. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http2).', + 'multiplexing, and server push. [Learn more](https://web.dev/uses-http2).', /** [ICU Syntax] Label identifying the number of network requests that were not served with HTTP/2. */ displayValue: `{itemCount, plural, =1 {1 request not served via HTTP/2} diff --git a/lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js b/lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js index 24e476c0a8c4..b1a638780f5f 100644 --- a/lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js +++ b/lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js @@ -22,7 +22,7 @@ const UIStrings = { /** Description of a Lighthouse audit that tells the user why they should use passive event listeners on the page. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Consider marking your touch and wheel event listeners as `passive` ' + 'to improve your page\'s scroll performance. ' + - '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/passive-event-listeners).', + '[Learn more](https://web.dev/uses-passive-event-listeners).', }; const str_ = i18n.createMessageInstanceIdFn(__filename, UIStrings); diff --git a/lighthouse-core/audits/errors-in-console.js b/lighthouse-core/audits/errors-in-console.js index 22b6afae448b..05cff456b8c7 100644 --- a/lighthouse-core/audits/errors-in-console.js +++ b/lighthouse-core/audits/errors-in-console.js @@ -20,7 +20,8 @@ const UIStrings = { failureTitle: 'Browser errors were logged to the console', /** Description of a Lighthouse audit that tells the user why errors being logged to the devtools console are a cause for concern and so should be fixed. This is displayed after a user expands the section to see more. No character length limits. */ description: 'Errors logged to the console indicate unresolved problems. ' + - 'They can come from network request failures and other browser concerns.', + 'They can come from network request failures and other browser concerns. ' + + '[Learn more](https://web.dev/errors-in-console)', /** Label for a column in a data table; entries in the column will be the descriptions of logged browser errors. */ columnDesc: 'Description', }; diff --git a/lighthouse-core/audits/image-aspect-ratio.js b/lighthouse-core/audits/image-aspect-ratio.js index b736977dfc5e..3b5114c3faca 100644 --- a/lighthouse-core/audits/image-aspect-ratio.js +++ b/lighthouse-core/audits/image-aspect-ratio.js @@ -22,7 +22,7 @@ const UIStrings = { failureTitle: 'Displays images with incorrect aspect ratio', /** Description of a Lighthouse audit that tells the user why they should maintain the correct aspect ratios for all images. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. */ description: 'Image display dimensions should match natural aspect ratio. ' + - '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/aspect-ratio).', + '[Learn more](https://web.dev/image-aspect-ratio).', /** * @description Warning that the size information for an image was nonsensical. * @example {https://image.cdn.com/} url diff --git a/lighthouse-core/audits/is-on-https.js b/lighthouse-core/audits/is-on-https.js index 9b1d245fdfff..707df928f598 100644 --- a/lighthouse-core/audits/is-on-https.js +++ b/lighthouse-core/audits/is-on-https.js @@ -20,7 +20,7 @@ const UIStrings = { 'sensitive data. HTTPS prevents intruders from tampering with or passively listening ' + 'in on the communications between your app and your users, and is a prerequisite for ' + 'HTTP/2 and many new web platform APIs. ' + - '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/https).', + '[Learn more](https://web.dev/is-on-https).', /** [ICU Syntax] Label identifying the number of insecure network requests found by an audit of a web page. */ displayValue: `{itemCount, plural, =1 {1 insecure request found} diff --git a/lighthouse-core/lib/i18n/locales/en-US.json b/lighthouse-core/lib/i18n/locales/en-US.json index 7f65c17fd653..fd9e83a21766 100644 --- a/lighthouse-core/lib/i18n/locales/en-US.json +++ b/lighthouse-core/lib/i18n/locales/en-US.json @@ -456,7 +456,7 @@ "message": "Line" }, "lighthouse-core/audits/deprecations.js | description": { - "message": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://www.chromestatus.com/features#deprecated)." + "message": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://web.dev/deprecations)." }, "lighthouse-core/audits/deprecations.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 warning found}\n other {# warnings found}\n }" @@ -468,7 +468,7 @@ "message": "Avoids deprecated APIs" }, "lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": { - "message": "Application Cache is deprecated. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/appcache)." + "message": "Application Cache is deprecated. [Learn more](https://web.dev/appcache-manifest)." }, "lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": { "message": "Found \"{AppCacheManifest}\"" @@ -480,7 +480,7 @@ "message": "Avoids Application Cache" }, "lighthouse-core/audits/dobetterweb/doctype.js | description": { - "message": "Specifying a doctype prevents the browser from switching to quirks-mode. Read more on the [MDN Web Docs page](https://developer.mozilla.org/en-US/docs/Glossary/Doctype)" + "message": "Specifying a doctype prevents the browser from switching to quirks-mode. [Learn more](https://web.dev/doctype)." }, "lighthouse-core/audits/dobetterweb/doctype.js | explanationBadDoctype": { "message": "Doctype name must be the lowercase string `html`" @@ -510,7 +510,7 @@ "message": "Value" }, "lighthouse-core/audits/dobetterweb/dom-size.js | description": { - "message": "Browser engineers recommend pages contain fewer than ~1,500 DOM elements. The sweet spot is a tree depth < 32 elements and fewer than 60 children/parent element. A large DOM can increase memory usage, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://developers.google.com/web/tools/lighthouse/audits/dom-size)." + "message": "Browser engineers recommend pages contain fewer than ~1,500 DOM elements. The sweet spot is a tree depth < 32 elements and fewer than 60 children/parent element. A large DOM can increase memory usage, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://web.dev/dom-size)." }, "lighthouse-core/audits/dobetterweb/dom-size.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 element}\n other {# elements}\n }" @@ -537,7 +537,7 @@ "message": "Target" }, "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": { - "message": "Add `rel=\"noopener\"` or `rel=\"noreferrer\"` to any external links to improve performance and prevent security vulnerabilities. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/noopener)." + "message": "Add `rel=\"noopener\"` or `rel=\"noreferrer\"` to any external links to improve performance and prevent security vulnerabilities. [Learn more](https://web.dev/external-anchors-use-rel-noopener)." }, "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": { "message": "Links to cross-origin destinations are unsafe" @@ -549,7 +549,7 @@ "message": "Unable to determine the destination for anchor ({anchorHTML}). If not used as a hyperlink, consider removing target=_blank." }, "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": { - "message": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/geolocation-on-load)." + "message": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. [Learn more](https://web.dev/geolocation-on-start)." }, "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | failureTitle": { "message": "Requests the geolocation permission on page load" @@ -561,13 +561,13 @@ "message": "Version" }, "lighthouse-core/audits/dobetterweb/js-libraries.js | description": { - "message": "All front-end JavaScript libraries detected on the page." + "message": "All front-end JavaScript libraries detected on the page. [Learn more](https://web.dev/js-libraries)." }, "lighthouse-core/audits/dobetterweb/js-libraries.js | title": { "message": "Detected JavaScript libraries" }, "lighthouse-core/audits/dobetterweb/no-document-write.js | description": { - "message": "For users on slow connections, external scripts dynamically injected via `document.write()` can delay page load by tens of seconds. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/document-write)." + "message": "For users on slow connections, external scripts dynamically injected via `document.write()` can delay page load by tens of seconds. [Learn more](https://web.dev/no-document-write)." }, "lighthouse-core/audits/dobetterweb/no-document-write.js | failureTitle": { "message": "Uses `document.write()`" @@ -585,7 +585,7 @@ "message": "Vulnerability Count" }, "lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | description": { - "message": "Some third-party scripts may contain known security vulnerabilities that are easily identified and exploited by attackers. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/vulnerabilities)." + "message": "Some third-party scripts may contain known security vulnerabilities that are easily identified and exploited by attackers. [Learn more](https://web.dev/no-vulnerable-libraries)." }, "lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 vulnerability detected}\n other {# vulnerabilities detected}\n }" @@ -606,7 +606,7 @@ "message": "Avoids front-end JavaScript libraries with known security vulnerabilities" }, "lighthouse-core/audits/dobetterweb/notification-on-start.js | description": { - "message": "Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/notifications-on-load)." + "message": "Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. [Learn more](https://web.dev/notification-on-start)." }, "lighthouse-core/audits/dobetterweb/notification-on-start.js | failureTitle": { "message": "Requests the notification permission on page load" @@ -618,7 +618,7 @@ "message": "Failing Elements" }, "lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": { - "message": "Preventing password pasting undermines good security policy. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/password-pasting)." + "message": "Preventing password pasting undermines good security policy. [Learn more](https://web.dev/password-inputs-can-be-pasted-into)." }, "lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": { "message": "Prevents users to paste into password fields" @@ -630,7 +630,7 @@ "message": "Protocol" }, "lighthouse-core/audits/dobetterweb/uses-http2.js | description": { - "message": "HTTP/2 offers many benefits over HTTP/1.1, including binary headers, multiplexing, and server push. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http2)." + "message": "HTTP/2 offers many benefits over HTTP/1.1, including binary headers, multiplexing, and server push. [Learn more](https://web.dev/uses-http2)." }, "lighthouse-core/audits/dobetterweb/uses-http2.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 request not served via HTTP/2}\n other {# requests not served via HTTP/2}\n }" @@ -642,7 +642,7 @@ "message": "Uses HTTP/2 for its own resources" }, "lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js | description": { - "message": "Consider marking your touch and wheel event listeners as `passive` to improve your page's scroll performance. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/passive-event-listeners)." + "message": "Consider marking your touch and wheel event listeners as `passive` to improve your page's scroll performance. [Learn more](https://web.dev/uses-passive-event-listeners)." }, "lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js | failureTitle": { "message": "Does not use passive listeners to improve scrolling performance" @@ -654,7 +654,7 @@ "message": "Description" }, "lighthouse-core/audits/errors-in-console.js | description": { - "message": "Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns." + "message": "Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. [Learn more](https://web.dev/errors-in-console)" }, "lighthouse-core/audits/errors-in-console.js | failureTitle": { "message": "Browser errors were logged to the console" @@ -681,7 +681,7 @@ "message": "Aspect Ratio (Displayed)" }, "lighthouse-core/audits/image-aspect-ratio.js | description": { - "message": "Image display dimensions should match natural aspect ratio. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/aspect-ratio)." + "message": "Image display dimensions should match natural aspect ratio. [Learn more](https://web.dev/image-aspect-ratio)." }, "lighthouse-core/audits/image-aspect-ratio.js | failureTitle": { "message": "Displays images with incorrect aspect ratio" @@ -696,7 +696,7 @@ "message": "Insecure URL" }, "lighthouse-core/audits/is-on-https.js | description": { - "message": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/https)." + "message": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://web.dev/is-on-https)." }, "lighthouse-core/audits/is-on-https.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 insecure request found}\n other {# insecure requests found}\n }" diff --git a/lighthouse-core/lib/i18n/locales/en-XL.json b/lighthouse-core/lib/i18n/locales/en-XL.json index 4ff4399b076f..fa9e8c73a856 100644 --- a/lighthouse-core/lib/i18n/locales/en-XL.json +++ b/lighthouse-core/lib/i18n/locales/en-XL.json @@ -456,7 +456,7 @@ "message": "L̂ín̂é" }, "lighthouse-core/audits/deprecations.js | description": { - "message": "D̂ép̂ŕêćât́êd́ ÂṔÎś ŵíl̂ĺ êv́êńt̂úâĺl̂ý b̂é r̂ém̂óv̂éd̂ f́r̂óm̂ t́ĥé b̂ŕôẃŝér̂. [Ĺêár̂ń m̂ór̂é](https://www.chromestatus.com/features#deprecated)." + "message": "D̂ép̂ŕêćât́êd́ ÂṔÎś ŵíl̂ĺ êv́êńt̂úâĺl̂ý b̂é r̂ém̂óv̂éd̂ f́r̂óm̂ t́ĥé b̂ŕôẃŝér̂. [Ĺêár̂ń m̂ór̂é](https://web.dev/deprecations)." }, "lighthouse-core/audits/deprecations.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 ŵár̂ńîńĝ f́ôún̂d́}\n other {# ŵár̂ńîńĝś f̂óûńd̂}\n }" @@ -468,7 +468,7 @@ "message": "Âv́ôíd̂ś d̂ép̂ŕêćât́êd́ ÂṔÎś" }, "lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": { - "message": "Âṕp̂ĺîćât́îón̂ Ćâćĥé îś d̂ép̂ŕêćât́êd́. [L̂éâŕn̂ ḿôŕê](https://developers.google.com/web/tools/lighthouse/audits/appcache)." + "message": "Âṕp̂ĺîćât́îón̂ Ćâćĥé îś d̂ép̂ŕêćât́êd́. [L̂éâŕn̂ ḿôŕê](https://web.dev/appcache-manifest)." }, "lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": { "message": "F̂óûńd̂ \"{AppCacheManifest}\"" @@ -480,7 +480,7 @@ "message": "Âv́ôíd̂ś Âṕp̂ĺîćât́îón̂ Ćâćĥé" }, "lighthouse-core/audits/dobetterweb/doctype.js | description": { - "message": "Ŝṕêćîf́ŷín̂ǵ â d́ôćt̂ýp̂é p̂ŕêv́êńt̂ś t̂h́ê b́r̂óŵśêŕ f̂ŕôḿ ŝẃît́ĉh́îńĝ t́ô q́ûír̂ḱŝ-ḿôd́ê. Ŕêád̂ ḿôŕê ón̂ t́ĥé [M̂D́N̂ Ẃêb́ D̂óĉś p̂áĝé](https://developer.mozilla.org/en-US/docs/Glossary/Doctype)" + "message": "Ŝṕêćîf́ŷín̂ǵ â d́ôćt̂ýp̂é p̂ŕêv́êńt̂ś t̂h́ê b́r̂óŵśêŕ f̂ŕôḿ ŝẃît́ĉh́îńĝ t́ô q́ûír̂ḱŝ-ḿôd́ê. [Ĺêár̂ń m̂ór̂é](https://web.dev/doctype)." }, "lighthouse-core/audits/dobetterweb/doctype.js | explanationBadDoctype": { "message": "D̂óĉt́ŷṕê ńâḿê ḿûśt̂ b́ê t́ĥé l̂óŵér̂ćâśê śt̂ŕîńĝ `html`" @@ -510,7 +510,7 @@ "message": "V̂ál̂úê" }, "lighthouse-core/audits/dobetterweb/dom-size.js | description": { - "message": "B̂ŕôẃŝér̂ én̂ǵîńêér̂ś r̂éĉóm̂ḿêńd̂ ṕâǵêś ĉón̂t́âín̂ f́êẃêŕ t̂h́âń ~1,500 D̂ÓM̂ él̂ém̂én̂t́ŝ. T́ĥé ŝẃêét̂ śp̂ót̂ íŝ á t̂ŕêé d̂ép̂t́ĥ < 32 él̂ém̂én̂t́ŝ án̂d́ f̂éŵér̂ t́ĥán̂ 60 ćĥíl̂d́r̂én̂/ṕâŕêńt̂ él̂ém̂én̂t́.  ĺâŕĝé D̂ÓM̂ ćâń îńĉŕêáŝé m̂ém̂ór̂ý ûśâǵê, ćâúŝé l̂ón̂ǵêŕ [ŝt́ŷĺê ćâĺĉúl̂át̂íôńŝ](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), án̂d́ p̂ŕôd́ûćê ćôśt̂ĺŷ [ĺâýôút̂ ŕêf́l̂óŵś](https://developers.google.com/speed/articles/reflow). [L̂éâŕn̂ ḿôŕê](https://developers.google.com/web/tools/lighthouse/audits/dom-size)." + "message": "B̂ŕôẃŝér̂ én̂ǵîńêér̂ś r̂éĉóm̂ḿêńd̂ ṕâǵêś ĉón̂t́âín̂ f́êẃêŕ t̂h́âń ~1,500 D̂ÓM̂ él̂ém̂én̂t́ŝ. T́ĥé ŝẃêét̂ śp̂ót̂ íŝ á t̂ŕêé d̂ép̂t́ĥ < 32 él̂ém̂én̂t́ŝ án̂d́ f̂éŵér̂ t́ĥán̂ 60 ćĥíl̂d́r̂én̂/ṕâŕêńt̂ él̂ém̂én̂t́.  ĺâŕĝé D̂ÓM̂ ćâń îńĉŕêáŝé m̂ém̂ór̂ý ûśâǵê, ćâúŝé l̂ón̂ǵêŕ [ŝt́ŷĺê ćâĺĉúl̂át̂íôńŝ](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), án̂d́ p̂ŕôd́ûćê ćôśt̂ĺŷ [ĺâýôút̂ ŕêf́l̂óŵś](https://developers.google.com/speed/articles/reflow). [L̂éâŕn̂ ḿôŕê](https://web.dev/dom-size)." }, "lighthouse-core/audits/dobetterweb/dom-size.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 êĺêḿêńt̂}\n other {# él̂ém̂én̂t́ŝ}\n }" @@ -537,7 +537,7 @@ "message": "T̂ár̂ǵêt́" }, "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": { - "message": "Âd́d̂ `rel=\"noopener\"` ór̂ `rel=\"noreferrer\"` t́ô án̂ý êx́t̂ér̂ńâĺ l̂ín̂ḱŝ t́ô ím̂ṕr̂óv̂é p̂ér̂f́ôŕm̂án̂ćê án̂d́ p̂ŕêv́êńt̂ śêćûŕît́ŷ v́ûĺn̂ér̂áb̂íl̂ít̂íêś. [L̂éâŕn̂ ḿôŕê](https://developers.google.com/web/tools/lighthouse/audits/noopener)." + "message": "Âd́d̂ `rel=\"noopener\"` ór̂ `rel=\"noreferrer\"` t́ô án̂ý êx́t̂ér̂ńâĺ l̂ín̂ḱŝ t́ô ím̂ṕr̂óv̂é p̂ér̂f́ôŕm̂án̂ćê án̂d́ p̂ŕêv́êńt̂ śêćûŕît́ŷ v́ûĺn̂ér̂áb̂íl̂ít̂íêś. [L̂éâŕn̂ ḿôŕê](https://web.dev/external-anchors-use-rel-noopener)." }, "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": { "message": "L̂ín̂ḱŝ t́ô ćr̂óŝś-ôŕîǵîń d̂éŝt́îńât́îón̂ś âŕê ún̂śâf́ê" @@ -549,7 +549,7 @@ "message": "Ûńâb́l̂é t̂ó d̂ét̂ér̂ḿîńê t́ĥé d̂éŝt́îńât́îón̂ f́ôŕ âńĉh́ôŕ ({anchorHTML}). Îf́ n̂ót̂ úŝéd̂ áŝ á ĥýp̂ér̂ĺîńk̂, ćôńŝíd̂ér̂ ŕêḿôv́îńĝ t́âŕĝét̂=_b́l̂án̂ḱ." }, "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": { - "message": "Ûśêŕŝ ár̂é m̂íŝt́r̂úŝt́f̂úl̂ óf̂ ór̂ ćôńf̂úŝéd̂ b́ŷ śît́êś t̂h́ât́ r̂éq̂úêśt̂ t́ĥéîŕ l̂óĉát̂íôń ŵít̂h́ôút̂ ćôńt̂éx̂t́. Ĉón̂śîd́êŕ t̂ýîńĝ t́ĥé r̂éq̂úêśt̂ t́ô á ûśêŕ âćt̂íôń îńŝt́êád̂. [Ĺêár̂ń m̂ór̂é](https://developers.google.com/web/tools/lighthouse/audits/geolocation-on-load)." + "message": "Ûśêŕŝ ár̂é m̂íŝt́r̂úŝt́f̂úl̂ óf̂ ór̂ ćôńf̂úŝéd̂ b́ŷ śît́êś t̂h́ât́ r̂éq̂úêśt̂ t́ĥéîŕ l̂óĉát̂íôń ŵít̂h́ôút̂ ćôńt̂éx̂t́. Ĉón̂śîd́êŕ t̂ýîńĝ t́ĥé r̂éq̂úêśt̂ t́ô á ûśêŕ âćt̂íôń îńŝt́êád̂. [Ĺêár̂ń m̂ór̂é](https://web.dev/geolocation-on-start)." }, "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | failureTitle": { "message": "R̂éq̂úêśt̂ś t̂h́ê ǵêól̂óĉát̂íôń p̂ér̂ḿîśŝíôń ôń p̂áĝé l̂óâd́" @@ -561,13 +561,13 @@ "message": "V̂ér̂śîón̂" }, "lighthouse-core/audits/dobetterweb/js-libraries.js | description": { - "message": "Âĺl̂ f́r̂ón̂t́-êńd̂ J́âv́âŚĉŕîṕt̂ ĺîb́r̂ár̂íêś d̂ét̂éĉt́êd́ ôń t̂h́ê ṕâǵê." + "message": "Âĺl̂ f́r̂ón̂t́-êńd̂ J́âv́âŚĉŕîṕt̂ ĺîb́r̂ár̂íêś d̂ét̂éĉt́êd́ ôń t̂h́ê ṕâǵê. [Ĺêár̂ń m̂ór̂é](https://web.dev/js-libraries)." }, "lighthouse-core/audits/dobetterweb/js-libraries.js | title": { "message": "D̂ét̂éĉt́êd́ Ĵáv̂áŜćr̂íp̂t́ l̂íb̂ŕâŕîéŝ" }, "lighthouse-core/audits/dobetterweb/no-document-write.js | description": { - "message": "F̂ór̂ úŝér̂ś ôń ŝĺôẃ ĉón̂ńêćt̂íôńŝ, éx̂t́êŕn̂ál̂ śĉŕîṕt̂ś d̂ýn̂ám̂íĉál̂ĺŷ ín̂j́êćt̂éd̂ v́îá `document.write()` ĉán̂ d́êĺâý p̂áĝé l̂óâd́ b̂ý t̂én̂ś ôf́ ŝéĉón̂d́ŝ. [Ĺêár̂ń m̂ór̂é](https://developers.google.com/web/tools/lighthouse/audits/document-write)." + "message": "F̂ór̂ úŝér̂ś ôń ŝĺôẃ ĉón̂ńêćt̂íôńŝ, éx̂t́êŕn̂ál̂ śĉŕîṕt̂ś d̂ýn̂ám̂íĉál̂ĺŷ ín̂j́êćt̂éd̂ v́îá `document.write()` ĉán̂ d́êĺâý p̂áĝé l̂óâd́ b̂ý t̂én̂ś ôf́ ŝéĉón̂d́ŝ. [Ĺêár̂ń m̂ór̂é](https://web.dev/no-document-write)." }, "lighthouse-core/audits/dobetterweb/no-document-write.js | failureTitle": { "message": "Ûśêś `document.write()`" @@ -585,7 +585,7 @@ "message": "V̂úl̂ńêŕâb́îĺît́ŷ Ćôún̂t́" }, "lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | description": { - "message": "Ŝóm̂é t̂h́îŕd̂-ṕâŕt̂ý ŝćr̂íp̂t́ŝ ḿâý ĉón̂t́âín̂ ḱn̂óŵń ŝéĉúr̂ít̂ý v̂úl̂ńêŕâb́îĺît́îéŝ t́ĥát̂ ár̂é êáŝíl̂ý îd́êńt̂íf̂íêd́ âńd̂ éx̂ṕl̂óît́êd́ b̂ý ât́t̂áĉḱêŕŝ. [Ĺêár̂ń m̂ór̂é](https://developers.google.com/web/tools/lighthouse/audits/vulnerabilities)." + "message": "Ŝóm̂é t̂h́îŕd̂-ṕâŕt̂ý ŝćr̂íp̂t́ŝ ḿâý ĉón̂t́âín̂ ḱn̂óŵń ŝéĉúr̂ít̂ý v̂úl̂ńêŕâb́îĺît́îéŝ t́ĥát̂ ár̂é êáŝíl̂ý îd́êńt̂íf̂íêd́ âńd̂ éx̂ṕl̂óît́êd́ b̂ý ât́t̂áĉḱêŕŝ. [Ĺêár̂ń m̂ór̂é](https://web.dev/no-vulnerable-libraries)." }, "lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 v̂úl̂ńêŕâb́îĺît́ŷ d́êt́êćt̂éd̂}\n other {# v́ûĺn̂ér̂áb̂íl̂ít̂íêś d̂ét̂éĉt́êd́}\n }" @@ -606,7 +606,7 @@ "message": "Âv́ôíd̂ś f̂ŕôńt̂-én̂d́ Ĵáv̂áŜćr̂íp̂t́ l̂íb̂ŕâŕîéŝ ẃît́ĥ ḱn̂óŵń ŝéĉúr̂ít̂ý v̂úl̂ńêŕâb́îĺît́îéŝ" }, "lighthouse-core/audits/dobetterweb/notification-on-start.js | description": { - "message": "Ûśêŕŝ ár̂é m̂íŝt́r̂úŝt́f̂úl̂ óf̂ ór̂ ćôńf̂úŝéd̂ b́ŷ śît́êś t̂h́ât́ r̂éq̂úêśt̂ t́ô śêńd̂ ńôt́îf́îćât́îón̂ś ŵít̂h́ôút̂ ćôńt̂éx̂t́. Ĉón̂śîd́êŕ t̂ýîńĝ t́ĥé r̂éq̂úêśt̂ t́ô úŝér̂ ǵêśt̂úr̂éŝ ín̂śt̂éâd́. [L̂éâŕn̂ ḿôŕê](https://developers.google.com/web/tools/lighthouse/audits/notifications-on-load)." + "message": "Ûśêŕŝ ár̂é m̂íŝt́r̂úŝt́f̂úl̂ óf̂ ór̂ ćôńf̂úŝéd̂ b́ŷ śît́êś t̂h́ât́ r̂éq̂úêśt̂ t́ô śêńd̂ ńôt́îf́îćât́îón̂ś ŵít̂h́ôút̂ ćôńt̂éx̂t́. Ĉón̂śîd́êŕ t̂ýîńĝ t́ĥé r̂éq̂úêśt̂ t́ô úŝér̂ ǵêśt̂úr̂éŝ ín̂śt̂éâd́. [L̂éâŕn̂ ḿôŕê](https://web.dev/notification-on-start)." }, "lighthouse-core/audits/dobetterweb/notification-on-start.js | failureTitle": { "message": "R̂éq̂úêśt̂ś t̂h́ê ńôt́îf́îćât́îón̂ ṕêŕm̂íŝśîón̂ ón̂ ṕâǵê ĺôád̂" @@ -618,7 +618,7 @@ "message": "F̂áîĺîńĝ Él̂ém̂én̂t́ŝ" }, "lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | description": { - "message": "P̂ŕêv́êńt̂ín̂ǵ p̂áŝśŵór̂d́ p̂áŝt́îńĝ ún̂d́êŕm̂ín̂éŝ ǵôód̂ śêćûŕît́ŷ ṕôĺîćŷ. [Ĺêár̂ń m̂ór̂é](https://developers.google.com/web/tools/lighthouse/audits/password-pasting)." + "message": "P̂ŕêv́êńt̂ín̂ǵ p̂áŝśŵór̂d́ p̂áŝt́îńĝ ún̂d́êŕm̂ín̂éŝ ǵôód̂ śêćûŕît́ŷ ṕôĺîćŷ. [Ĺêár̂ń m̂ór̂é](https://web.dev/password-inputs-can-be-pasted-into)." }, "lighthouse-core/audits/dobetterweb/password-inputs-can-be-pasted-into.js | failureTitle": { "message": "P̂ŕêv́êńt̂ś ûśêŕŝ t́ô ṕâśt̂é îńt̂ó p̂áŝśŵór̂d́ f̂íêĺd̂ś" @@ -630,7 +630,7 @@ "message": "P̂ŕôt́ôćôĺ" }, "lighthouse-core/audits/dobetterweb/uses-http2.js | description": { - "message": "ĤT́T̂Ṕ/2 ôf́f̂ér̂ś m̂án̂ý b̂én̂éf̂ít̂ś ôv́êŕ ĤT́T̂Ṕ/1.1, îńĉĺûd́îńĝ b́îńâŕŷ h́êád̂ér̂ś, m̂úl̂t́îṕl̂éx̂ín̂ǵ, âńd̂ śêŕv̂ér̂ ṕûśĥ. [Ĺêár̂ń m̂ór̂é](https://developers.google.com/web/tools/lighthouse/audits/http2)." + "message": "ĤT́T̂Ṕ/2 ôf́f̂ér̂ś m̂án̂ý b̂én̂éf̂ít̂ś ôv́êŕ ĤT́T̂Ṕ/1.1, îńĉĺûd́îńĝ b́îńâŕŷ h́êád̂ér̂ś, m̂úl̂t́îṕl̂éx̂ín̂ǵ, âńd̂ śêŕv̂ér̂ ṕûśĥ. [Ĺêár̂ń m̂ór̂é](https://web.dev/uses-http2)." }, "lighthouse-core/audits/dobetterweb/uses-http2.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 r̂éq̂úêśt̂ ńôt́ ŝér̂v́êd́ v̂íâ H́T̂T́P̂/2}\n other {# ŕêq́ûéŝt́ŝ ńôt́ ŝér̂v́êd́ v̂íâ H́T̂T́P̂/2}\n }" @@ -642,7 +642,7 @@ "message": "Ûśêś ĤT́T̂Ṕ/2 f̂ór̂ ít̂ś ôẃn̂ ŕêśôúr̂ćêś" }, "lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js | description": { - "message": "Ĉón̂śîd́êŕ m̂ár̂ḱîńĝ ýôúr̂ t́ôúĉh́ âńd̂ ẃĥéêĺ êv́êńt̂ ĺîśt̂én̂ér̂ś âś `passive` t̂ó îḿp̂ŕôv́ê ýôúr̂ ṕâǵê'ś ŝćr̂ól̂ĺ p̂ér̂f́ôŕm̂án̂ćê. [Ĺêár̂ń m̂ór̂é](https://developers.google.com/web/tools/lighthouse/audits/passive-event-listeners)." + "message": "Ĉón̂śîd́êŕ m̂ár̂ḱîńĝ ýôúr̂ t́ôúĉh́ âńd̂ ẃĥéêĺ êv́êńt̂ ĺîśt̂én̂ér̂ś âś `passive` t̂ó îḿp̂ŕôv́ê ýôúr̂ ṕâǵê'ś ŝćr̂ól̂ĺ p̂ér̂f́ôŕm̂án̂ćê. [Ĺêár̂ń m̂ór̂é](https://web.dev/uses-passive-event-listeners)." }, "lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js | failureTitle": { "message": "D̂óêś n̂ót̂ úŝé p̂áŝśîv́ê ĺîśt̂én̂ér̂ś t̂ó îḿp̂ŕôv́ê śĉŕôĺl̂ín̂ǵ p̂ér̂f́ôŕm̂án̂ćê" @@ -654,7 +654,7 @@ "message": "D̂éŝćr̂íp̂t́îón̂" }, "lighthouse-core/audits/errors-in-console.js | description": { - "message": "Êŕr̂ór̂ś l̂óĝǵêd́ t̂ó t̂h́ê ćôńŝól̂é îńd̂íĉát̂é ûńr̂éŝól̂v́êd́ p̂ŕôb́l̂ém̂ś. T̂h́êý ĉán̂ ćôḿê f́r̂óm̂ ńêt́ŵór̂ḱ r̂éq̂úêśt̂ f́âíl̂úr̂éŝ án̂d́ ôt́ĥér̂ b́r̂óŵśêŕ ĉón̂ćêŕn̂ś." + "message": "Êŕr̂ór̂ś l̂óĝǵêd́ t̂ó t̂h́ê ćôńŝól̂é îńd̂íĉát̂é ûńr̂éŝól̂v́êd́ p̂ŕôb́l̂ém̂ś. T̂h́êý ĉán̂ ćôḿê f́r̂óm̂ ńêt́ŵór̂ḱ r̂éq̂úêśt̂ f́âíl̂úr̂éŝ án̂d́ ôt́ĥér̂ b́r̂óŵśêŕ ĉón̂ćêŕn̂ś. [L̂éâŕn̂ ḿôŕê](https://web.dev/errors-in-console)" }, "lighthouse-core/audits/errors-in-console.js | failureTitle": { "message": "B̂ŕôẃŝér̂ ér̂ŕôŕŝ ẃêŕê ĺôǵĝéd̂ t́ô t́ĥé ĉón̂śôĺê" @@ -681,7 +681,7 @@ "message": "Âśp̂éĉt́ R̂át̂íô (D́îśp̂ĺâýêd́)" }, "lighthouse-core/audits/image-aspect-ratio.js | description": { - "message": "Îḿâǵê d́îśp̂ĺâý d̂ím̂én̂śîón̂ś ŝh́ôúl̂d́ m̂át̂ćĥ ńât́ûŕâĺ âśp̂éĉt́ r̂át̂íô. [Ĺêár̂ń m̂ór̂é](https://developers.google.com/web/tools/lighthouse/audits/aspect-ratio)." + "message": "Îḿâǵê d́îśp̂ĺâý d̂ím̂én̂śîón̂ś ŝh́ôúl̂d́ m̂át̂ćĥ ńât́ûŕâĺ âśp̂éĉt́ r̂át̂íô. [Ĺêár̂ń m̂ór̂é](https://web.dev/image-aspect-ratio)." }, "lighthouse-core/audits/image-aspect-ratio.js | failureTitle": { "message": "D̂íŝṕl̂áŷś îḿâǵêś ŵít̂h́ îńĉór̂ŕêćt̂ áŝṕêćt̂ ŕât́îó" @@ -696,7 +696,7 @@ "message": "Îńŝéĉúr̂é ÛŔL̂" }, "lighthouse-core/audits/is-on-https.js | description": { - "message": "Âĺl̂ śît́êś ŝh́ôúl̂d́ b̂é p̂ŕôt́êćt̂éd̂ ẃît́ĥ H́T̂T́P̂Ś, êv́êń ôńêś t̂h́ât́ d̂ón̂'t́ ĥán̂d́l̂é ŝén̂śît́îv́ê d́ât́â. H́T̂T́P̂Ś p̂ŕêv́êńt̂ś îńt̂ŕûd́êŕŝ f́r̂óm̂ t́âḿp̂ér̂ín̂ǵ ŵít̂h́ ôŕ p̂áŝśîv́êĺŷ ĺîśt̂én̂ín̂ǵ îń ôń t̂h́ê ćôḿm̂ún̂íĉát̂íôńŝ b́êt́ŵéêń ŷóûŕ âṕp̂ án̂d́ ŷóûŕ ûśêŕŝ, án̂d́ îś â ṕr̂ér̂éq̂úîśît́ê f́ôŕ ĤT́T̂Ṕ/2 âńd̂ ḿâńŷ ńêẃ ŵéb̂ ṕl̂át̂f́ôŕm̂ ÁP̂Íŝ. [Ĺêár̂ń m̂ór̂é](https://developers.google.com/web/tools/lighthouse/audits/https)." + "message": "Âĺl̂ śît́êś ŝh́ôúl̂d́ b̂é p̂ŕôt́êćt̂éd̂ ẃît́ĥ H́T̂T́P̂Ś, êv́êń ôńêś t̂h́ât́ d̂ón̂'t́ ĥán̂d́l̂é ŝén̂śît́îv́ê d́ât́â. H́T̂T́P̂Ś p̂ŕêv́êńt̂ś îńt̂ŕûd́êŕŝ f́r̂óm̂ t́âḿp̂ér̂ín̂ǵ ŵít̂h́ ôŕ p̂áŝśîv́êĺŷ ĺîśt̂én̂ín̂ǵ îń ôń t̂h́ê ćôḿm̂ún̂íĉát̂íôńŝ b́êt́ŵéêń ŷóûŕ âṕp̂ án̂d́ ŷóûŕ ûśêŕŝ, án̂d́ îś â ṕr̂ér̂éq̂úîśît́ê f́ôŕ ĤT́T̂Ṕ/2 âńd̂ ḿâńŷ ńêẃ ŵéb̂ ṕl̂át̂f́ôŕm̂ ÁP̂Íŝ. [Ĺêár̂ń m̂ór̂é](https://web.dev/is-on-https)." }, "lighthouse-core/audits/is-on-https.js | displayValue": { "message": "{itemCount, plural,\n =1 {1 îńŝéĉúr̂é r̂éq̂úêśt̂ f́ôún̂d́}\n other {# îńŝéĉúr̂é r̂éq̂úêśt̂ś f̂óûńd̂}\n }" diff --git a/lighthouse-core/test/results/sample_v2.json b/lighthouse-core/test/results/sample_v2.json index 43998b04b85e..26d6f4d3f4e3 100644 --- a/lighthouse-core/test/results/sample_v2.json +++ b/lighthouse-core/test/results/sample_v2.json @@ -14,7 +14,7 @@ "is-on-https": { "id": "is-on-https", "title": "Does not use HTTPS", - "description": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/https).", + "description": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://web.dev/is-on-https).", "score": 0, "scoreDisplayMode": "binary", "displayValue": "1 insecure request found", @@ -212,7 +212,7 @@ "errors-in-console": { "id": "errors-in-console", "title": "Browser errors were logged to the console", - "description": "Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns.", + "description": "Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. [Learn more](https://web.dev/errors-in-console)", "score": 0, "scoreDisplayMode": "binary", "numericValue": 5, @@ -546,7 +546,7 @@ "image-aspect-ratio": { "id": "image-aspect-ratio", "title": "Displays images with incorrect aspect ratio", - "description": "Image display dimensions should match natural aspect ratio. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/aspect-ratio).", + "description": "Image display dimensions should match natural aspect ratio. [Learn more](https://web.dev/image-aspect-ratio).", "score": 0, "scoreDisplayMode": "binary", "warnings": [], @@ -587,7 +587,7 @@ "deprecations": { "id": "deprecations", "title": "Uses deprecated APIs", - "description": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://www.chromestatus.com/features#deprecated).", + "description": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://web.dev/deprecations).", "score": 0, "scoreDisplayMode": "binary", "displayValue": "3 warnings found", @@ -2629,7 +2629,7 @@ "appcache-manifest": { "id": "appcache-manifest", "title": "Uses Application Cache", - "description": "Application Cache is deprecated. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/appcache).", + "description": "Application Cache is deprecated. [Learn more](https://web.dev/appcache-manifest).", "score": 0, "scoreDisplayMode": "binary", "displayValue": "Found \"clock.appcache\"" @@ -2637,14 +2637,14 @@ "doctype": { "id": "doctype", "title": "Page has the HTML doctype", - "description": "Specifying a doctype prevents the browser from switching to quirks-mode. Read more on the [MDN Web Docs page](https://developer.mozilla.org/en-US/docs/Glossary/Doctype)", + "description": "Specifying a doctype prevents the browser from switching to quirks-mode. [Learn more](https://web.dev/doctype).", "score": 1, "scoreDisplayMode": "binary" }, "dom-size": { "id": "dom-size", "title": "Avoids an excessive DOM size", - "description": "Browser engineers recommend pages contain fewer than ~1,500 DOM elements. The sweet spot is a tree depth < 32 elements and fewer than 60 children/parent element. A large DOM can increase memory usage, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://developers.google.com/web/tools/lighthouse/audits/dom-size).", + "description": "Browser engineers recommend pages contain fewer than ~1,500 DOM elements. The sweet spot is a tree depth < 32 elements and fewer than 60 children/parent element. A large DOM can increase memory usage, cause longer [style calculations](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations), and produce costly [layout reflows](https://developers.google.com/speed/articles/reflow). [Learn more](https://web.dev/dom-size).", "score": 1, "scoreDisplayMode": "numeric", "numericValue": 31, @@ -2696,7 +2696,7 @@ "external-anchors-use-rel-noopener": { "id": "external-anchors-use-rel-noopener", "title": "Links to cross-origin destinations are unsafe", - "description": "Add `rel=\"noopener\"` or `rel=\"noreferrer\"` to any external links to improve performance and prevent security vulnerabilities. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/noopener).", + "description": "Add `rel=\"noopener\"` or `rel=\"noreferrer\"` to any external links to improve performance and prevent security vulnerabilities. [Learn more](https://web.dev/external-anchors-use-rel-noopener).", "score": 0, "scoreDisplayMode": "binary", "warnings": [ @@ -2746,7 +2746,7 @@ "geolocation-on-start": { "id": "geolocation-on-start", "title": "Requests the geolocation permission on page load", - "description": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/geolocation-on-load).", + "description": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. [Learn more](https://web.dev/geolocation-on-start).", "score": 0, "scoreDisplayMode": "binary", "details": { @@ -2778,7 +2778,7 @@ "no-document-write": { "id": "no-document-write", "title": "Uses `document.write()`", - "description": "For users on slow connections, external scripts dynamically injected via `document.write()` can delay page load by tens of seconds. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/document-write).", + "description": "For users on slow connections, external scripts dynamically injected via `document.write()` can delay page load by tens of seconds. [Learn more](https://web.dev/no-document-write).", "score": 0, "scoreDisplayMode": "binary", "details": { @@ -2814,7 +2814,7 @@ "no-vulnerable-libraries": { "id": "no-vulnerable-libraries", "title": "Includes front-end JavaScript libraries with known security vulnerabilities", - "description": "Some third-party scripts may contain known security vulnerabilities that are easily identified and exploited by attackers. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/vulnerabilities).", + "description": "Some third-party scripts may contain known security vulnerabilities that are easily identified and exploited by attackers. [Learn more](https://web.dev/no-vulnerable-libraries).", "score": 0, "scoreDisplayMode": "binary", "displayValue": "2 vulnerabilities detected", @@ -2854,7 +2854,7 @@ "js-libraries": { "id": "js-libraries", "title": "Detected JavaScript libraries", - "description": "All front-end JavaScript libraries detected on the page.", + "description": "All front-end JavaScript libraries detected on the page. [Learn more](https://web.dev/js-libraries).", "score": 1, "scoreDisplayMode": "binary", "details": { @@ -2887,7 +2887,7 @@ "notification-on-start": { "id": "notification-on-start", "title": "Requests the notification permission on page load", - "description": "Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/notifications-on-load).", + "description": "Users are mistrustful of or confused by sites that request to send notifications without context. Consider tying the request to user gestures instead. [Learn more](https://web.dev/notification-on-start).", "score": 0, "scoreDisplayMode": "binary", "details": { @@ -2915,7 +2915,7 @@ "password-inputs-can-be-pasted-into": { "id": "password-inputs-can-be-pasted-into", "title": "Prevents users to paste into password fields", - "description": "Preventing password pasting undermines good security policy. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/password-pasting).", + "description": "Preventing password pasting undermines good security policy. [Learn more](https://web.dev/password-inputs-can-be-pasted-into).", "score": 0, "scoreDisplayMode": "binary", "details": { @@ -2946,7 +2946,7 @@ "uses-http2": { "id": "uses-http2", "title": "Does not use HTTP/2 for all of its resources", - "description": "HTTP/2 offers many benefits over HTTP/1.1, including binary headers, multiplexing, and server push. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/http2).", + "description": "HTTP/2 offers many benefits over HTTP/1.1, including binary headers, multiplexing, and server push. [Learn more](https://web.dev/uses-http2).", "score": 0, "scoreDisplayMode": "binary", "displayValue": "15 requests not served via HTTP/2", @@ -3031,7 +3031,7 @@ "uses-passive-event-listeners": { "id": "uses-passive-event-listeners", "title": "Does not use passive listeners to improve scrolling performance", - "description": "Consider marking your touch and wheel event listeners as `passive` to improve your page's scroll performance. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/passive-event-listeners).", + "description": "Consider marking your touch and wheel event listeners as `passive` to improve your page's scroll performance. [Learn more](https://web.dev/uses-passive-event-listeners).", "score": 0, "scoreDisplayMode": "binary", "details": { diff --git a/proto/sample_v2_round_trip.json b/proto/sample_v2_round_trip.json index 56dc2663b7ae..3ba60c075aca 100644 --- a/proto/sample_v2_round_trip.json +++ b/proto/sample_v2_round_trip.json @@ -8,7 +8,7 @@ "title": "`[accesskey]` values are unique" }, "appcache-manifest": { - "description": "Application Cache is deprecated. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/appcache).", + "description": "Application Cache is deprecated. [Learn more](https://web.dev/appcache-manifest).", "displayValue": "Found \"clock.appcache\"", "id": "appcache-manifest", "score": 0.0, @@ -399,7 +399,7 @@ "title": "`
`'s contain only properly-ordered `
` and `
` groups, `