Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/3bb2f0771896c709b25b23474d6a59b249d664bc0a819822cda3a8b5bff94842e958a9376866b014b2cf1e3a1d4a21f4fb9c44de777268feb920eb91819db5
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

3830 lines
413 KiB
Text
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"core/audits/accessibility/accesskeys.js | description": {
"message": "Access keys let users quickly focus a part of the page. For proper navigation, each access key must be unique. [Learn more about access keys](https://dequeuniversity.com/rules/axe/4.10/accesskeys)."
},
"core/audits/accessibility/accesskeys.js | failureTitle": {
"message": "`[accesskey]` values are not unique"
},
"core/audits/accessibility/accesskeys.js | title": {
"message": "`[accesskey]` values are unique"
},
"core/audits/accessibility/aria-allowed-attr.js | description": {
"message": "Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. [Learn how to match ARIA attributes to their roles](https://dequeuniversity.com/rules/axe/4.10/aria-allowed-attr)."
},
"core/audits/accessibility/aria-allowed-attr.js | failureTitle": {
"message": "`[aria-*]` attributes do not match their roles"
},
"core/audits/accessibility/aria-allowed-attr.js | title": {
"message": "`[aria-*]` attributes match their roles"
},
"core/audits/accessibility/aria-allowed-role.js | description": {
"message": "Many HTML elements can only be assigned certain ARIA roles. Using ARIA roles where they are not allowed can interfere with the accessibility of the web page. [Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.10/aria-allowed-role)."
},
"core/audits/accessibility/aria-allowed-role.js | failureTitle": {
"message": "Uses ARIA roles on incompatible elements"
},
"core/audits/accessibility/aria-allowed-role.js | title": {
"message": "Uses ARIA roles only on compatible elements"
},
"core/audits/accessibility/aria-command-name.js | description": {
"message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to make command elements more accessible](https://dequeuniversity.com/rules/axe/4.10/aria-command-name)."
},
"core/audits/accessibility/aria-command-name.js | failureTitle": {
"message": "`button`, `link`, and `menuitem` elements do not have accessible names."
},
"core/audits/accessibility/aria-command-name.js | title": {
"message": "`button`, `link`, and `menuitem` elements have accessible names"
},
"core/audits/accessibility/aria-conditional-attr.js | description": {
"message": "Some ARIA attributes are only allowed on an element under certain conditions. [Learn more about conditional ARIA attributes](https://dequeuniversity.com/rules/axe/4.10/aria-conditional-attr)."
},
"core/audits/accessibility/aria-conditional-attr.js | failureTitle": {
"message": "ARIA attributes are not used as specified for the element's role"
},
"core/audits/accessibility/aria-conditional-attr.js | title": {
"message": "ARIA attributes are used as specified for the element's role"
},
"core/audits/accessibility/aria-deprecated-role.js | description": {
"message": "Deprecated ARIA roles may not be processed correctly by assistive technology. [Learn more about deprecated ARIA roles](https://dequeuniversity.com/rules/axe/4.10/aria-deprecated-role)."
},
"core/audits/accessibility/aria-deprecated-role.js | failureTitle": {
"message": "Deprecated ARIA roles were used"
},
"core/audits/accessibility/aria-deprecated-role.js | title": {
"message": "Deprecated ARIA roles were not used"
},
"core/audits/accessibility/aria-dialog-name.js | description": {
"message": "ARIA dialog elements without accessible names may prevent screen readers users from discerning the purpose of these elements. [Learn how to make ARIA dialog elements more accessible](https://dequeuniversity.com/rules/axe/4.10/aria-dialog-name)."
},
"core/audits/accessibility/aria-dialog-name.js | failureTitle": {
"message": "Elements with `role=\"dialog\"` or `role=\"alertdialog\"` do not have accessible names."
},
"core/audits/accessibility/aria-dialog-name.js | title": {
"message": "Elements with `role=\"dialog\"` or `role=\"alertdialog\"` have accessible names."
},
"core/audits/accessibility/aria-hidden-body.js | description": {
"message": "Assistive technologies, like screen readers, work inconsistently when `aria-hidden=\"true\"` is set on the document `<body>`. [Learn how `aria-hidden` affects the document body](https://dequeuniversity.com/rules/axe/4.10/aria-hidden-body)."
},
"core/audits/accessibility/aria-hidden-body.js | failureTitle": {
"message": "`[aria-hidden=\"true\"]` is present on the document `<body>`"
},
"core/audits/accessibility/aria-hidden-body.js | title": {
"message": "`[aria-hidden=\"true\"]` is not present on the document `<body>`"
},
"core/audits/accessibility/aria-hidden-focus.js | description": {
"message": "Focusable descendents within an `[aria-hidden=\"true\"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. [Learn how `aria-hidden` affects focusable elements](https://dequeuniversity.com/rules/axe/4.10/aria-hidden-focus)."
},
"core/audits/accessibility/aria-hidden-focus.js | failureTitle": {
"message": "`[aria-hidden=\"true\"]` elements contain focusable descendents"
},
"core/audits/accessibility/aria-hidden-focus.js | title": {
"message": "`[aria-hidden=\"true\"]` elements do not contain focusable descendents"
},
"core/audits/accessibility/aria-input-field-name.js | description": {
"message": "When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more about input field labels](https://dequeuniversity.com/rules/axe/4.10/aria-input-field-name)."
},
"core/audits/accessibility/aria-input-field-name.js | failureTitle": {
"message": "ARIA input fields do not have accessible names"
},
"core/audits/accessibility/aria-input-field-name.js | title": {
"message": "ARIA input fields have accessible names"
},
"core/audits/accessibility/aria-meter-name.js | description": {
"message": "When a meter element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to name `meter` elements](https://dequeuniversity.com/rules/axe/4.10/aria-meter-name)."
},
"core/audits/accessibility/aria-meter-name.js | failureTitle": {
"message": "ARIA `meter` elements do not have accessible names."
},
"core/audits/accessibility/aria-meter-name.js | title": {
"message": "ARIA `meter` elements have accessible names"
},
"core/audits/accessibility/aria-progressbar-name.js | description": {
"message": "When a `progressbar` element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to label `progressbar` elements](https://dequeuniversity.com/rules/axe/4.10/aria-progressbar-name)."
},
"core/audits/accessibility/aria-progressbar-name.js | failureTitle": {
"message": "ARIA `progressbar` elements do not have accessible names."
},
"core/audits/accessibility/aria-progressbar-name.js | title": {
"message": "ARIA `progressbar` elements have accessible names"
},
"core/audits/accessibility/aria-prohibited-attr.js | description": {
"message": "Using ARIA attributes in roles where they are prohibited can mean that important information is not communicated to users of assistive technologies. [Learn more about prohibited ARIA roles](https://dequeuniversity.com/rules/axe/4.10/aria-prohibited-attr)."
},
"core/audits/accessibility/aria-prohibited-attr.js | failureTitle": {
"message": "Elements use prohibited ARIA attributes"
},
"core/audits/accessibility/aria-prohibited-attr.js | title": {
"message": "Elements use only permitted ARIA attributes"
},
"core/audits/accessibility/aria-required-attr.js | description": {
"message": "Some ARIA roles have required attributes that describe the state of the element to screen readers. [Learn more about roles and required attributes](https://dequeuniversity.com/rules/axe/4.10/aria-required-attr)."
},
"core/audits/accessibility/aria-required-attr.js | failureTitle": {
"message": "`[role]`s do not have all required `[aria-*]` attributes"
},
"core/audits/accessibility/aria-required-attr.js | title": {
"message": "`[role]`s have all required `[aria-*]` attributes"
},
"core/audits/accessibility/aria-required-children.js | description": {
"message": "Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. [Learn more about roles and required children elements](https://dequeuniversity.com/rules/axe/4.10/aria-required-children)."
},
"core/audits/accessibility/aria-required-children.js | failureTitle": {
"message": "Elements with an ARIA `[role]` that require children to contain a specific `[role]` are missing some or all of those required children."
},
"core/audits/accessibility/aria-required-children.js | title": {
"message": "Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children."
},
"core/audits/accessibility/aria-required-parent.js | description": {
"message": "Some ARIA child roles must be contained by specific parent roles to properly perform their intended accessibility functions. [Learn more about ARIA roles and required parent element](https://dequeuniversity.com/rules/axe/4.10/aria-required-parent)."
},
"core/audits/accessibility/aria-required-parent.js | failureTitle": {
"message": "`[role]`s are not contained by their required parent element"
},
"core/audits/accessibility/aria-required-parent.js | title": {
"message": "`[role]`s are contained by their required parent element"
},
"core/audits/accessibility/aria-roles.js | description": {
"message": "ARIA roles must have valid values in order to perform their intended accessibility functions. [Learn more about valid ARIA roles](https://dequeuniversity.com/rules/axe/4.10/aria-roles)."
},
"core/audits/accessibility/aria-roles.js | failureTitle": {
"message": "`[role]` values are not valid"
},
"core/audits/accessibility/aria-roles.js | title": {
"message": "`[role]` values are valid"
},
"core/audits/accessibility/aria-text.js | description": {
"message": "Adding `role=text` around a text node split by markup enables VoiceOver to treat it as one phrase, but the element's focusable descendents will not be announced. [Learn more about the `role=text` attribute](https://dequeuniversity.com/rules/axe/4.10/aria-text)."
},
"core/audits/accessibility/aria-text.js | failureTitle": {
"message": "Elements with the `role=text` attribute do have focusable descendents."
},
"core/audits/accessibility/aria-text.js | title": {
"message": "Elements with the `role=text` attribute do not have focusable descendents."
},
"core/audits/accessibility/aria-toggle-field-name.js | description": {
"message": "When a toggle field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more about toggle fields](https://dequeuniversity.com/rules/axe/4.10/aria-toggle-field-name)."
},
"core/audits/accessibility/aria-toggle-field-name.js | failureTitle": {
"message": "ARIA toggle fields do not have accessible names"
},
"core/audits/accessibility/aria-toggle-field-name.js | title": {
"message": "ARIA toggle fields have accessible names"
},
"core/audits/accessibility/aria-tooltip-name.js | description": {
"message": "When a tooltip element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn how to name `tooltip` elements](https://dequeuniversity.com/rules/axe/4.10/aria-tooltip-name)."
},
"core/audits/accessibility/aria-tooltip-name.js | failureTitle": {
"message": "ARIA `tooltip` elements do not have accessible names."
},
"core/audits/accessibility/aria-tooltip-name.js | title": {
"message": "ARIA `tooltip` elements have accessible names"
},
"core/audits/accessibility/aria-treeitem-name.js | description": {
"message": "When a `treeitem` element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more about labeling `treeitem` elements](https://dequeuniversity.com/rules/axe/4.10/aria-treeitem-name)."
},
"core/audits/accessibility/aria-treeitem-name.js | failureTitle": {
"message": "ARIA `treeitem` elements do not have accessible names."
},
"core/audits/accessibility/aria-treeitem-name.js | title": {
"message": "ARIA `treeitem` elements have accessible names"
},
"core/audits/accessibility/aria-valid-attr-value.js | description": {
"message": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. [Learn more about valid values for ARIA attributes](https://dequeuniversity.com/rules/axe/4.10/aria-valid-attr-value)."
},
"core/audits/accessibility/aria-valid-attr-value.js | failureTitle": {
"message": "`[aria-*]` attributes do not have valid values"
},
"core/audits/accessibility/aria-valid-attr-value.js | title": {
"message": "`[aria-*]` attributes have valid values"
},
"core/audits/accessibility/aria-valid-attr.js | description": {
"message": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid names. [Learn more about valid ARIA attributes](https://dequeuniversity.com/rules/axe/4.10/aria-valid-attr)."
},
"core/audits/accessibility/aria-valid-attr.js | failureTitle": {
"message": "`[aria-*]` attributes are not valid or misspelled"
},
"core/audits/accessibility/aria-valid-attr.js | title": {
"message": "`[aria-*]` attributes are valid and not misspelled"
},
"core/audits/accessibility/axe-audit.js | failingElementsHeader": {
"message": "Failing Elements"
},
"core/audits/accessibility/button-name.js | description": {
"message": "When a button doesn't have an accessible name, screen readers announce it as \"button\", making it unusable for users who rely on screen readers. [Learn how to make buttons more accessible](https://dequeuniversity.com/rules/axe/4.10/button-name)."
},
"core/audits/accessibility/button-name.js | failureTitle": {
"message": "Buttons do not have an accessible name"
},
"core/audits/accessibility/button-name.js | title": {
"message": "Buttons have an accessible name"
},
"core/audits/accessibility/bypass.js | description": {
"message": "Adding ways to bypass repetitive content lets keyboard users navigate the page more efficiently. [Learn more about bypass blocks](https://dequeuniversity.com/rules/axe/4.10/bypass)."
},
"core/audits/accessibility/bypass.js | failureTitle": {
"message": "The page does not contain a heading, skip link, or landmark region"
},
"core/audits/accessibility/bypass.js | title": {
"message": "The page contains a heading, skip link, or landmark region"
},
"core/audits/accessibility/color-contrast.js | description": {
"message": "Low-contrast text is difficult or impossible for many users to read. [Learn how to provide sufficient color contrast](https://dequeuniversity.com/rules/axe/4.10/color-contrast)."
},
"core/audits/accessibility/color-contrast.js | failureTitle": {
"message": "Background and foreground colors do not have a sufficient contrast ratio."
},
"core/audits/accessibility/color-contrast.js | title": {
"message": "Background and foreground colors have a sufficient contrast ratio"
},
"core/audits/accessibility/definition-list.js | description": {
"message": "When definition lists are not properly marked up, screen readers may produce confusing or inaccurate output. [Learn how to structure definition lists correctly](https://dequeuniversity.com/rules/axe/4.10/definition-list)."
},
"core/audits/accessibility/definition-list.js | failureTitle": {
"message": "`<dl>`'s do not contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements."
},
"core/audits/accessibility/definition-list.js | title": {
"message": "`<dl>`'s contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements."
},
"core/audits/accessibility/dlitem.js | description": {
"message": "Definition list items (`<dt>` and `<dd>`) must be wrapped in a parent `<dl>` element to ensure that screen readers can properly announce them. [Learn how to structure definition lists correctly](https://dequeuniversity.com/rules/axe/4.10/dlitem)."
},
"core/audits/accessibility/dlitem.js | failureTitle": {
"message": "Definition list items are not wrapped in `<dl>` elements"
},
"core/audits/accessibility/dlitem.js | title": {
"message": "Definition list items are wrapped in `<dl>` elements"
},
"core/audits/accessibility/document-title.js | description": {
"message": "The title gives screen reader users an overview of the page, and search engine users rely on it heavily to determine if a page is relevant to their search. [Learn more about document titles](https://dequeuniversity.com/rules/axe/4.10/document-title)."
},
"core/audits/accessibility/document-title.js | failureTitle": {
"message": "Document doesn't have a `<title>` element"
},
"core/audits/accessibility/document-title.js | title": {
"message": "Document has a `<title>` element"
},
"core/audits/accessibility/duplicate-id-aria.js | description": {
"message": "The value of an ARIA ID must be unique to prevent other instances from being overlooked by assistive technologies. [Learn how to fix duplicate ARIA IDs](https://dequeuniversity.com/rules/axe/4.10/duplicate-id-aria)."
},
"core/audits/accessibility/duplicate-id-aria.js | failureTitle": {
"message": "ARIA IDs are not unique"
},
"core/audits/accessibility/duplicate-id-aria.js | title": {
"message": "ARIA IDs are unique"
},
"core/audits/accessibility/empty-heading.js | description": {
"message": "A heading with no content or inaccessible text prevent screen reader users from accessing information on the page's structure. [Learn more about headings](https://dequeuniversity.com/rules/axe/4.10/empty-heading)."
},
"core/audits/accessibility/empty-heading.js | failureTitle": {
"message": "Heading elements do not contain content."
},
"core/audits/accessibility/empty-heading.js | title": {
"message": "All heading elements contain content."
},
"core/audits/accessibility/form-field-multiple-labels.js | description": {
"message": "Form fields with multiple labels can be confusingly announced by assistive technologies like screen readers which use either the first, the last, or all of the labels. [Learn how to use form labels](https://dequeuniversity.com/rules/axe/4.10/form-field-multiple-labels)."
},
"core/audits/accessibility/form-field-multiple-labels.js | failureTitle": {
"message": "Form fields have multiple labels"
},
"core/audits/accessibility/form-field-multiple-labels.js | title": {
"message": "No form fields have multiple labels"
},
"core/audits/accessibility/frame-title.js | description": {
"message": "Screen reader users rely on frame titles to describe the contents of frames. [Learn more about frame titles](https://dequeuniversity.com/rules/axe/4.10/frame-title)."
},
"core/audits/accessibility/frame-title.js | failureTitle": {
"message": "`<frame>` or `<iframe>` elements do not have a title"
},
"core/audits/accessibility/frame-title.js | title": {
"message": "`<frame>` or `<iframe>` elements have a title"
},
"core/audits/accessibility/heading-order.js | description": {
"message": "Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. [Learn more about heading order](https://dequeuniversity.com/rules/axe/4.10/heading-order)."
},
"core/audits/accessibility/heading-order.js | failureTitle": {
"message": "Heading elements are not in a sequentially-descending order"
},
"core/audits/accessibility/heading-order.js | title": {
"message": "Heading elements appear in a sequentially-descending order"
},
"core/audits/accessibility/html-has-lang.js | description": {
"message": "If a page doesn't specify a `lang` attribute, a screen reader assumes that the page is in the default language that the user chose when setting up the screen reader. If the page isn't actually in the default language, then the screen reader might not announce the page's text correctly. [Learn more about the `lang` attribute](https://dequeuniversity.com/rules/axe/4.10/html-has-lang)."
},
"core/audits/accessibility/html-has-lang.js | failureTitle": {
"message": "`<html>` element does not have a `[lang]` attribute"
},
"core/audits/accessibility/html-has-lang.js | title": {
"message": "`<html>` element has a `[lang]` attribute"
},
"core/audits/accessibility/html-lang-valid.js | description": {
"message": "Specifying a valid [BCP 47 language](https://www.w3.org/International/questions/qa-choosing-language-tags#question) helps screen readers announce text properly. [Learn how to use the `lang` attribute](https://dequeuniversity.com/rules/axe/4.10/html-lang-valid)."
},
"core/audits/accessibility/html-lang-valid.js | failureTitle": {
"message": "`<html>` element does not have a valid value for its `[lang]` attribute."
},
"core/audits/accessibility/html-lang-valid.js | title": {
"message": "`<html>` element has a valid value for its `[lang]` attribute"
},
"core/audits/accessibility/html-xml-lang-mismatch.js | description": {
"message": "If the webpage does not specify a consistent language, then the screen reader might not announce the page's text correctly. [Learn more about the `lang` attribute](https://dequeuniversity.com/rules/axe/4.10/html-xml-lang-mismatch)."
},
"core/audits/accessibility/html-xml-lang-mismatch.js | failureTitle": {
"message": "`<html>` element does not have an `[xml:lang]` attribute with the same base language as the `[lang]` attribute."
},
"core/audits/accessibility/html-xml-lang-mismatch.js | title": {
"message": "`<html>` element has an `[xml:lang]` attribute with the same base language as the `[lang]` attribute."
},
"core/audits/accessibility/identical-links-same-purpose.js | description": {
"message": "Links with the same destination should have the same description, to help users understand the link's purpose and decide whether to follow it. [Learn more about identical links](https://dequeuniversity.com/rules/axe/4.10/identical-links-same-purpose)."
},
"core/audits/accessibility/identical-links-same-purpose.js | failureTitle": {
"message": "Identical links do not have the same purpose."
},
"core/audits/accessibility/identical-links-same-purpose.js | title": {
"message": "Identical links have the same purpose."
},
"core/audits/accessibility/image-alt.js | description": {
"message": "Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. [Learn more about the `alt` attribute](https://dequeuniversity.com/rules/axe/4.10/image-alt)."
},
"core/audits/accessibility/image-alt.js | failureTitle": {
"message": "Image elements do not have `[alt]` attributes"
},
"core/audits/accessibility/image-alt.js | title": {
"message": "Image elements have `[alt]` attributes"
},
"core/audits/accessibility/image-redundant-alt.js | description": {
"message": "Informative elements should aim for short, descriptive alternative text. Alternative text that is exactly the same as the text adjacent to the link or image is potentially confusing for screen reader users, because the text will be read twice. [Learn more about the `alt` attribute](https://dequeuniversity.com/rules/axe/4.10/image-redundant-alt)."
},
"core/audits/accessibility/image-redundant-alt.js | failureTitle": {
"message": "Image elements have `[alt]` attributes that are redundant text."
},
"core/audits/accessibility/image-redundant-alt.js | title": {
"message": "Image elements do not have `[alt]` attributes that are redundant text."
},
"core/audits/accessibility/input-button-name.js | description": {
"message": "Adding discernable and accessible text to input buttons may help screen reader users understand the purpose of the input button. [Learn more about input buttons](https://dequeuniversity.com/rules/axe/4.10/input-button-name)."
},
"core/audits/accessibility/input-button-name.js | failureTitle": {
"message": "Input buttons do not have discernible text."
},
"core/audits/accessibility/input-button-name.js | title": {
"message": "Input buttons have discernible text."
},
"core/audits/accessibility/input-image-alt.js | description": {
"message": "When an image is being used as an `<input>` button, providing alternative text can help screen reader users understand the purpose of the button. [Learn about input image alt text](https://dequeuniversity.com/rules/axe/4.10/input-image-alt)."
},
"core/audits/accessibility/input-image-alt.js | failureTitle": {
"message": "`<input type=\"image\">` elements do not have `[alt]` text"
},
"core/audits/accessibility/input-image-alt.js | title": {
"message": "`<input type=\"image\">` elements have `[alt]` text"
},
"core/audits/accessibility/label-content-name-mismatch.js | description": {
"message": "Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. [Learn more about accessible names](https://dequeuniversity.com/rules/axe/4.10/label-content-name-mismatch)."
},
"core/audits/accessibility/label-content-name-mismatch.js | failureTitle": {
"message": "Elements with visible text labels do not have matching accessible names."
},
"core/audits/accessibility/label-content-name-mismatch.js | title": {
"message": "Elements with visible text labels have matching accessible names."
},
"core/audits/accessibility/label.js | description": {
"message": "Labels ensure that form controls are announced properly by assistive technologies, like screen readers. [Learn more about form element labels](https://dequeuniversity.com/rules/axe/4.10/label)."
},
"core/audits/accessibility/label.js | failureTitle": {
"message": "Form elements do not have associated labels"
},
"core/audits/accessibility/label.js | title": {
"message": "Form elements have associated labels"
},
"core/audits/accessibility/landmark-one-main.js | description": {
"message": "One main landmark helps screen reader users navigate a web page. [Learn more about landmarks](https://dequeuniversity.com/rules/axe/4.10/landmark-one-main)."
},
"core/audits/accessibility/landmark-one-main.js | failureTitle": {
"message": "Document does not have a main landmark."
},
"core/audits/accessibility/landmark-one-main.js | title": {
"message": "Document has a main landmark."
},
"core/audits/accessibility/link-in-text-block.js | description": {
"message": "Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. [Learn how to make links distinguishable](https://dequeuniversity.com/rules/axe/4.10/link-in-text-block)."
},
"core/audits/accessibility/link-in-text-block.js | failureTitle": {
"message": "Links rely on color to be distinguishable."
},
"core/audits/accessibility/link-in-text-block.js | title": {
"message": "Links are distinguishable without relying on color."
},
"core/audits/accessibility/link-name.js | description": {
"message": "Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. [Learn how to make links accessible](https://dequeuniversity.com/rules/axe/4.10/link-name)."
},
"core/audits/accessibility/link-name.js | failureTitle": {
"message": "Links do not have a discernible name"
},
"core/audits/accessibility/link-name.js | title": {
"message": "Links have a discernible name"
},
"core/audits/accessibility/list.js | description": {
"message": "Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. [Learn more about proper list structure](https://dequeuniversity.com/rules/axe/4.10/list)."
},
"core/audits/accessibility/list.js | failureTitle": {
"message": "Lists do not contain only `<li>` elements and script supporting elements (`<script>` and `<template>`)."
},
"core/audits/accessibility/list.js | title": {
"message": "Lists contain only `<li>` elements and script supporting elements (`<script>` and `<template>`)."
},
"core/audits/accessibility/listitem.js | description": {
"message": "Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. [Learn more about proper list structure](https://dequeuniversity.com/rules/axe/4.10/listitem)."
},
"core/audits/accessibility/listitem.js | failureTitle": {
"message": "List items (`<li>`) are not contained within `<ul>`, `<ol>` or `<menu>` parent elements."
},
"core/audits/accessibility/listitem.js | title": {
"message": "List items (`<li>`) are contained within `<ul>`, `<ol>` or `<menu>` parent elements"
},
"core/audits/accessibility/meta-refresh.js | description": {
"message": "Users do not expect a page to refresh automatically, and doing so will move focus back to the top of the page. This may create a frustrating or confusing experience. [Learn more about the refresh meta tag](https://dequeuniversity.com/rules/axe/4.10/meta-refresh)."
},
"core/audits/accessibility/meta-refresh.js | failureTitle": {
"message": "The document uses `<meta http-equiv=\"refresh\">`"
},
"core/audits/accessibility/meta-refresh.js | title": {
"message": "The document does not use `<meta http-equiv=\"refresh\">`"
},
"core/audits/accessibility/meta-viewport.js | description": {
"message": "Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. [Learn more about the viewport meta tag](https://dequeuniversity.com/rules/axe/4.10/meta-viewport)."
},
"core/audits/accessibility/meta-viewport.js | failureTitle": {
"message": "`[user-scalable=\"no\"]` is used in the `<meta name=\"viewport\">` element or the `[maximum-scale]` attribute is less than 5."
},
"core/audits/accessibility/meta-viewport.js | title": {
"message": "`[user-scalable=\"no\"]` is not used in the `<meta name=\"viewport\">` element and the `[maximum-scale]` attribute is not less than 5."
},
"core/audits/accessibility/object-alt.js | description": {
"message": "Screen readers cannot translate non-text content. Adding alternate text to `<object>` elements helps screen readers convey meaning to users. [Learn more about alt text for `object` elements](https://dequeuniversity.com/rules/axe/4.10/object-alt)."
},
"core/audits/accessibility/object-alt.js | failureTitle": {
"message": "`<object>` elements do not have alternate text"
},
"core/audits/accessibility/object-alt.js | title": {
"message": "`<object>` elements have alternate text"
},
"core/audits/accessibility/select-name.js | description": {
"message": "Form elements without effective labels can create frustrating experiences for screen reader users. [Learn more about the `select` element](https://dequeuniversity.com/rules/axe/4.10/select-name)."
},
"core/audits/accessibility/select-name.js | failureTitle": {
"message": "Select elements do not have associated label elements."
},
"core/audits/accessibility/select-name.js | title": {
"message": "Select elements have associated label elements."
},
"core/audits/accessibility/skip-link.js | description": {
"message": "Including a skip link can help users skip to the main content to save time. [Learn more about skip links](https://dequeuniversity.com/rules/axe/4.10/skip-link)."
},
"core/audits/accessibility/skip-link.js | failureTitle": {
"message": "Skip links are not focusable."
},
"core/audits/accessibility/skip-link.js | title": {
"message": "Skip links are focusable."
},
"core/audits/accessibility/tabindex.js | description": {
"message": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more about the `tabindex` attribute](https://dequeuniversity.com/rules/axe/4.10/tabindex)."
},
"core/audits/accessibility/tabindex.js | failureTitle": {
"message": "Some elements have a `[tabindex]` value greater than 0"
},
"core/audits/accessibility/tabindex.js | title": {
"message": "No element has a `[tabindex]` value greater than 0"
},
"core/audits/accessibility/table-duplicate-name.js | description": {
"message": "The summary attribute should describe the table structure, while `<caption>` should have the onscreen title. Accurate table mark-up helps users of screen readers. [Learn more about summary and caption](https://dequeuniversity.com/rules/axe/4.10/table-duplicate-name)."
},
"core/audits/accessibility/table-duplicate-name.js | failureTitle": {
"message": "Tables have the same content in the summary attribute and `<caption>.`"
},
"core/audits/accessibility/table-duplicate-name.js | title": {
"message": "Tables have different content in the summary attribute and `<caption>`."
},
"core/audits/accessibility/table-fake-caption.js | description": {
"message": "Screen readers have features to make navigating tables easier. Ensuring that tables use the actual caption element instead of cells with the `[colspan]` attribute may improve the experience for screen reader users. [Learn more about captions](https://dequeuniversity.com/rules/axe/4.10/table-fake-caption)."
},
"core/audits/accessibility/table-fake-caption.js | failureTitle": {
"message": "Tables do not use `<caption>` instead of cells with the `[colspan]` attribute to indicate a caption."
},
"core/audits/accessibility/table-fake-caption.js | title": {
"message": "Tables use `<caption>` instead of cells with the `[colspan]` attribute to indicate a caption."
},
"core/audits/accessibility/target-size.js | description": {
"message": "Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. [Learn more about touch targets](https://dequeuniversity.com/rules/axe/4.10/target-size)."
},
"core/audits/accessibility/target-size.js | failureTitle": {
"message": "Touch targets do not have sufficient size or spacing."
},
"core/audits/accessibility/target-size.js | title": {
"message": "Touch targets have sufficient size and spacing."
},
"core/audits/accessibility/td-has-header.js | description": {
"message": "Screen readers have features to make navigating tables easier. Ensuring that `<td>` elements in a large table (3 or more cells in width and height) have an associated table header may improve the experience for screen reader users. [Learn more about table headers](https://dequeuniversity.com/rules/axe/4.10/td-has-header)."
},
"core/audits/accessibility/td-has-header.js | failureTitle": {
"message": "`<td>` elements in a large `<table>` do not have table headers."
},
"core/audits/accessibility/td-has-header.js | title": {
"message": "`<td>` elements in a large `<table>` have one or more table headers."
},
"core/audits/accessibility/td-headers-attr.js | description": {
"message": "Screen readers have features to make navigating tables easier. Ensuring `<td>` cells using the `[headers]` attribute only refer to other cells in the same table may improve the experience for screen reader users. [Learn more about the `headers` attribute](https://dequeuniversity.com/rules/axe/4.10/td-headers-attr)."
},
"core/audits/accessibility/td-headers-attr.js | failureTitle": {
"message": "Cells in a `<table>` element that use the `[headers]` attribute refer to an element `id` not found within the same table."
},
"core/audits/accessibility/td-headers-attr.js | title": {
"message": "Cells in a `<table>` element that use the `[headers]` attribute refer to table cells within the same table."
},
"core/audits/accessibility/th-has-data-cells.js | description": {
"message": "Screen readers have features to make navigating tables easier. Ensuring table headers always refer to some set of cells may improve the experience for screen reader users. [Learn more about table headers](https://dequeuniversity.com/rules/axe/4.10/th-has-data-cells)."
},
"core/audits/accessibility/th-has-data-cells.js | failureTitle": {
"message": "`<th>` elements and elements with `[role=\"columnheader\"/\"rowheader\"]` do not have data cells they describe."
},
"core/audits/accessibility/th-has-data-cells.js | title": {
"message": "`<th>` elements and elements with `[role=\"columnheader\"/\"rowheader\"]` have data cells they describe."
},
"core/audits/accessibility/valid-lang.js | description": {
"message": "Specifying a valid [BCP 47 language](https://www.w3.org/International/questions/qa-choosing-language-tags#question) on elements helps ensure that text is pronounced correctly by a screen reader. [Learn how to use the `lang` attribute](https://dequeuniversity.com/rules/axe/4.10/valid-lang)."
},
"core/audits/accessibility/valid-lang.js | failureTitle": {
"message": "`[lang]` attributes do not have a valid value"
},
"core/audits/accessibility/valid-lang.js | title": {
"message": "`[lang]` attributes have a valid value"
},
"core/audits/accessibility/video-caption.js | description": {
"message": "When a video provides a caption it is easier for deaf and hearing impaired users to access its information. [Learn more about video captions](https://dequeuniversity.com/rules/axe/4.10/video-caption)."
},
"core/audits/accessibility/video-caption.js | failureTitle": {
"message": "`<video>` elements do not contain a `<track>` element with `[kind=\"captions\"]`."
},
"core/audits/accessibility/video-caption.js | title": {
"message": "`<video>` elements contain a `<track>` element with `[kind=\"captions\"]`"
},
"core/audits/autocomplete.js | columnCurrent": {
"message": "Current Value"
},
"core/audits/autocomplete.js | columnSuggestions": {
"message": "Suggested Token"
},
"core/audits/autocomplete.js | description": {
"message": "`autocomplete` helps users submit forms quicker. To reduce user effort, consider enabling by setting the `autocomplete` attribute to a valid value. [Learn more about `autocomplete` in forms](https://developers.google.com/web/fundamentals/design-and-ux/input/forms#use_metadata_to_enable_auto-complete)"
},
"core/audits/autocomplete.js | failureTitle": {
"message": "`<input>` elements do not have correct `autocomplete` attributes"
},
"core/audits/autocomplete.js | manualReview": {
"message": "Requires manual review"
},
"core/audits/autocomplete.js | reviewOrder": {
"message": "Review order of tokens"
},
"core/audits/autocomplete.js | title": {
"message": "`<input>` elements correctly use `autocomplete`"
},
"core/audits/autocomplete.js | warningInvalid": {
"message": "`autocomplete` token(s): \"{token}\" is invalid in {snippet}"
},
"core/audits/autocomplete.js | warningOrder": {
"message": "Review order of tokens: \"{tokens}\" in {snippet}"
},
"core/audits/bf-cache.js | actionableFailureType": {
"message": "Actionable"
},
"core/audits/bf-cache.js | description": {
"message": "Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. [Learn more about the bfcache](https://developer.chrome.com/docs/lighthouse/performance/bf-cache/)"
},
"core/audits/bf-cache.js | displayValue": {
"message": "{itemCount,plural, =1{1 failure reason}zero{# failure reasons}two{# failure reasons}few{# failure reasons}many{# failure reasons}other{# failure reasons}}"
},
"core/audits/bf-cache.js | failureReasonColumn": {
"message": "Failure reason"
},
"core/audits/bf-cache.js | failureTitle": {
"message": "Page prevented back/forward cache restoration"
},
"core/audits/bf-cache.js | failureTypeColumn": {
"message": "Failure type"
},
"core/audits/bf-cache.js | notActionableFailureType": {
"message": "Not actionable"
},
"core/audits/bf-cache.js | supportPendingFailureType": {
"message": "Pending browser support"
},
"core/audits/bf-cache.js | title": {
"message": "Page didn't prevent back/forward cache restoration"
},
"core/audits/bf-cache.js | warningHeadless": {
"message": "Back/forward cache cannot be tested in old Headless Chrome (`--chrome-flags=\"--headless=old\"`). To see audit results, use the new Headless Chrome (`--chrome-flags=\"--headless=new\"`) or standard Chrome."
},
"core/audits/bootup-time.js | chromeExtensionsWarning": {
"message": "Chrome extensions negatively affected this page's load performance. Try auditing the page in incognito mode or from a Chrome profile without extensions."
},
"core/audits/bootup-time.js | columnScriptEval": {
"message": "Script Evaluation"
},
"core/audits/bootup-time.js | columnScriptParse": {
"message": "Script Parse"
},
"core/audits/bootup-time.js | columnTotal": {
"message": "Total CPU Time"
},
"core/audits/bootup-time.js | description": {
"message": "Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. [Learn how to reduce Javascript execution time](https://developer.chrome.com/docs/lighthouse/performance/bootup-time/)."
},
"core/audits/bootup-time.js | failureTitle": {
"message": "Reduce JavaScript execution time"
},
"core/audits/bootup-time.js | title": {
"message": "JavaScript execution time"
},
"core/audits/byte-efficiency/duplicated-javascript.js | description": {
"message": "Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity. "
},
"core/audits/byte-efficiency/duplicated-javascript.js | title": {
"message": "Remove duplicate modules in JavaScript bundles"
},
"core/audits/byte-efficiency/efficient-animated-content.js | description": {
"message": "Large GIFs are inefficient for delivering animated content. Consider using MPEG4/WebM videos for animations and PNG/WebP for static images instead of GIF to save network bytes. [Learn more about efficient video formats](https://developer.chrome.com/docs/lighthouse/performance/efficient-animated-content/)"
},
"core/audits/byte-efficiency/efficient-animated-content.js | title": {
"message": "Use video formats for animated content"
},
"core/audits/byte-efficiency/legacy-javascript.js | description": {
"message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile [Baseline](https://web.dev/baseline) features, unless you know you must support legacy browsers. [Learn why most sites can deploy ES6+ code without transpiling](https://philipwalton.com/articles/the-state-of-es5-on-the-web/)"
},
"core/audits/byte-efficiency/legacy-javascript.js | detectedCoreJs2Warning": {
"message": "Version 2 of core-js was detected on the page. You should upgrade to version 3 for many performance improvements."
},
"core/audits/byte-efficiency/legacy-javascript.js | title": {
"message": "Avoid serving legacy JavaScript to modern browsers"
},
"core/audits/byte-efficiency/modern-image-formats.js | description": {
"message": "Image formats like WebP and AVIF often provide better compression than PNG or JPEG, which means faster downloads and less data consumption. [Learn more about modern image formats](https://developer.chrome.com/docs/lighthouse/performance/uses-webp-images/)."
},
"core/audits/byte-efficiency/modern-image-formats.js | title": {
"message": "Serve images in next-gen formats"
},
"core/audits/byte-efficiency/offscreen-images.js | description": {
"message": "Consider lazy-loading offscreen and hidden images after all critical resources have finished loading to lower time to interactive. [Learn how to defer offscreen images](https://developer.chrome.com/docs/lighthouse/performance/offscreen-images/)."
},
"core/audits/byte-efficiency/offscreen-images.js | title": {
"message": "Defer offscreen images"
},
"core/audits/byte-efficiency/render-blocking-resources.js | description": {
"message": "Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. [Learn how to eliminate render-blocking resources](https://developer.chrome.com/docs/lighthouse/performance/render-blocking-resources/)."
},
"core/audits/byte-efficiency/render-blocking-resources.js | title": {
"message": "Eliminate render-blocking resources"
},
"core/audits/byte-efficiency/total-byte-weight.js | description": {
"message": "Large network payloads cost users real money and are highly correlated with long load times. [Learn how to reduce payload sizes](https://developer.chrome.com/docs/lighthouse/performance/total-byte-weight/)."
},
"core/audits/byte-efficiency/total-byte-weight.js | displayValue": {
"message": "Total size was {totalBytes, number, bytes} KiB"
},
"core/audits/byte-efficiency/total-byte-weight.js | failureTitle": {
"message": "Avoid enormous network payloads"
},
"core/audits/byte-efficiency/total-byte-weight.js | title": {
"message": "Avoids enormous network payloads"
},
"core/audits/byte-efficiency/unminified-css.js | description": {
"message": "Minifying CSS files can reduce network payload sizes. [Learn how to minify CSS](https://developer.chrome.com/docs/lighthouse/performance/unminified-css/)."
},
"core/audits/byte-efficiency/unminified-css.js | title": {
"message": "Minify CSS"
},
"core/audits/byte-efficiency/unminified-javascript.js | description": {
"message": "Minifying JavaScript files can reduce payload sizes and script parse time. [Learn how to minify JavaScript](https://developer.chrome.com/docs/lighthouse/performance/unminified-javascript/)."
},
"core/audits/byte-efficiency/unminified-javascript.js | title": {
"message": "Minify JavaScript"
},
"core/audits/byte-efficiency/unused-css-rules.js | description": {
"message": "Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. [Learn how to reduce unused CSS](https://developer.chrome.com/docs/lighthouse/performance/unused-css-rules/)."
},
"core/audits/byte-efficiency/unused-css-rules.js | title": {
"message": "Reduce unused CSS"
},
"core/audits/byte-efficiency/unused-javascript.js | description": {
"message": "Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. [Learn how to reduce unused JavaScript](https://developer.chrome.com/docs/lighthouse/performance/unused-javascript/)."
},
"core/audits/byte-efficiency/unused-javascript.js | title": {
"message": "Reduce unused JavaScript"
},
"core/audits/byte-efficiency/uses-long-cache-ttl.js | description": {
"message": "A long cache lifetime can speed up repeat visits to your page. [Learn more about efficient cache policies](https://developer.chrome.com/docs/lighthouse/performance/uses-long-cache-ttl/)."
},
"core/audits/byte-efficiency/uses-long-cache-ttl.js | displayValue": {
"message": "{itemCount,plural, =1{1 resource found}zero{# resources found}two{# resources found}few{# resources found}many{# resources found}other{# resources found}}"
},
"core/audits/byte-efficiency/uses-long-cache-ttl.js | failureTitle": {
"message": "Serve static assets with an efficient cache policy"
},
"core/audits/byte-efficiency/uses-long-cache-ttl.js | title": {
"message": "Uses efficient cache policy on static assets"
},
"core/audits/byte-efficiency/uses-optimized-images.js | description": {
"message": "Optimized images load faster and consume less cellular data. [Learn how to efficiently encode images](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)."
},
"core/audits/byte-efficiency/uses-optimized-images.js | title": {
"message": "Efficiently encode images"
},
"core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnActualDimensions": {
"message": "Actual dimensions"
},
"core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnDisplayedDimensions": {
"message": "Displayed dimensions"
},
"core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
"message": "Images were larger than their displayed size"
},
"core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
"message": "Images were appropriate for their displayed size"
},
"core/audits/byte-efficiency/uses-responsive-images.js | description": {
"message": "Serve images that are appropriately-sized to save cellular data and improve load time. [Learn how to size images](https://developer.chrome.com/docs/lighthouse/performance/uses-responsive-images/)."
},
"core/audits/byte-efficiency/uses-responsive-images.js | title": {
"message": "Properly size images"
},
"core/audits/byte-efficiency/uses-text-compression.js | description": {
"message": "Text-based resources should be served with compression (gzip, deflate or brotli) to minimize total network bytes. [Learn more about text compression](https://developer.chrome.com/docs/lighthouse/performance/uses-text-compression/)."
},
"core/audits/byte-efficiency/uses-text-compression.js | title": {
"message": "Enable text compression"
},
"core/audits/clickjacking-mitigation.js | columnSeverity": {
"message": "Severity"
},
"core/audits/clickjacking-mitigation.js | description": {
"message": "The `X-Frame-Options` (XFO) header or the `frame-ancestors` directive in the `Content-Security-Policy` (CSP) header control where a page can be embedded. These can mitigate clickjacking attacks by blocking some or all sites from embedding the page. [Learn more about mitigating clickjacking](https://developer.chrome.com/docs/lighthouse/best-practices/clickjacking-mitigation)."
},
"core/audits/clickjacking-mitigation.js | noClickjackingMitigation": {
"message": "No frame control policy found"
},
"core/audits/clickjacking-mitigation.js | title": {
"message": "Mitigate clickjacking with XFO or CSP"
},
"core/audits/critical-request-chains.js | description": {
"message": "The Critical Request Chains below show you what resources are loaded with a high priority. Consider reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load. [Learn how to avoid chaining critical requests](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains/)."
},
"core/audits/critical-request-chains.js | displayValue": {
"message": "{itemCount,plural, =1{1 chain found}zero{# chains found}two{# chains found}few{# chains found}many{# chains found}other{# chains found}}"
},
"core/audits/critical-request-chains.js | title": {
"message": "Avoid chaining critical requests"
},
"core/audits/csp-xss.js | columnDirective": {
"message": "Directive"
},
"core/audits/csp-xss.js | columnSeverity": {
"message": "Severity"
},
"core/audits/csp-xss.js | description": {
"message": "A strong Content Security Policy (CSP) significantly reduces the risk of cross-site scripting (XSS) attacks. [Learn how to use a CSP to prevent XSS](https://developer.chrome.com/docs/lighthouse/best-practices/csp-xss/)"
},
"core/audits/csp-xss.js | itemSeveritySyntax": {
"message": "Syntax"
},
"core/audits/csp-xss.js | metaTagMessage": {
"message": "The page contains a CSP defined in a `<meta>` tag. Consider moving the CSP to an HTTP header or defining another strict CSP in an HTTP header."
},
"core/audits/csp-xss.js | noCsp": {
"message": "No CSP found in enforcement mode"
},
"core/audits/csp-xss.js | title": {
"message": "Ensure CSP is effective against XSS attacks"
},
"core/audits/deprecations.js | columnDeprecate": {
"message": "Deprecation / Warning"
},
"core/audits/deprecations.js | columnLine": {
"message": "Line"
},
"core/audits/deprecations.js | description": {
"message": "Deprecated APIs will eventually be removed from the browser. [Learn more about deprecated APIs](https://developer.chrome.com/docs/lighthouse/best-practices/deprecations/)."
},
"core/audits/deprecations.js | displayValue": {
"message": "{itemCount,plural, =1{1 warning found}zero{# warnings found}two{# warnings found}few{# warnings found}many{# warnings found}other{# warnings found}}"
},
"core/audits/deprecations.js | failureTitle": {
"message": "Uses deprecated APIs"
},
"core/audits/deprecations.js | title": {
"message": "Avoids deprecated APIs"
},
"core/audits/dobetterweb/charset.js | description": {
"message": "A character encoding declaration is required. It can be done with a `<meta>` tag in the first 1024 bytes of the HTML or in the Content-Type HTTP response header. [Learn more about declaring the character encoding](https://developer.chrome.com/docs/lighthouse/best-practices/charset/)."
},
"core/audits/dobetterweb/charset.js | failureTitle": {
"message": "Charset declaration is missing or occurs too late in the HTML"
},
"core/audits/dobetterweb/charset.js | title": {
"message": "Properly defines charset"
},
"core/audits/dobetterweb/doctype.js | description": {
"message": "Specifying a doctype prevents the browser from switching to quirks-mode. [Learn more about the doctype declaration](https://developer.chrome.com/docs/lighthouse/best-practices/doctype/)."
},
"core/audits/dobetterweb/doctype.js | explanationBadDoctype": {
"message": "Doctype name must be the string `html`"
},
"core/audits/dobetterweb/doctype.js | explanationLimitedQuirks": {
"message": "Document contains a `doctype` that triggers `limited-quirks-mode`"
},
"core/audits/dobetterweb/doctype.js | explanationNoDoctype": {
"message": "Document must contain a doctype"
},
"core/audits/dobetterweb/doctype.js | explanationPublicId": {
"message": "Expected publicId to be an empty string"
},
"core/audits/dobetterweb/doctype.js | explanationSystemId": {
"message": "Expected systemId to be an empty string"
},
"core/audits/dobetterweb/doctype.js | explanationWrongDoctype": {
"message": "Document contains a `doctype` that triggers `quirks-mode`"
},
"core/audits/dobetterweb/doctype.js | failureTitle": {
"message": "Page lacks the HTML doctype, thus triggering quirks-mode"
},
"core/audits/dobetterweb/doctype.js | title": {
"message": "Page has the HTML doctype"
},
"core/audits/dobetterweb/dom-size.js | columnStatistic": {
"message": "Statistic"
},
"core/audits/dobetterweb/dom-size.js | columnValue": {
"message": "Value"
},
"core/audits/dobetterweb/dom-size.js | description": {
"message": "A large DOM will 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 how to avoid an excessive DOM size](https://developer.chrome.com/docs/lighthouse/performance/dom-size/)."
},
"core/audits/dobetterweb/dom-size.js | displayValue": {
"message": "{itemCount,plural, =1{1 element}zero{# elements}two{# elements}few{# elements}many{# elements}other{# elements}}"
},
"core/audits/dobetterweb/dom-size.js | failureTitle": {
"message": "Avoid an excessive DOM size"
},
"core/audits/dobetterweb/dom-size.js | statisticDOMDepth": {
"message": "Maximum DOM Depth"
},
"core/audits/dobetterweb/dom-size.js | statisticDOMElements": {
"message": "Total DOM Elements"
},
"core/audits/dobetterweb/dom-size.js | statisticDOMWidth": {
"message": "Maximum Child Elements"
},
"core/audits/dobetterweb/dom-size.js | title": {
"message": "Avoids an excessive DOM size"
},
"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 about the geolocation permission](https://developer.chrome.com/docs/lighthouse/best-practices/geolocation-on-start/)."
},
"core/audits/dobetterweb/geolocation-on-start.js | failureTitle": {
"message": "Requests the geolocation permission on page load"
},
"core/audits/dobetterweb/geolocation-on-start.js | title": {
"message": "Avoids requesting the geolocation permission on page load"
},
"core/audits/dobetterweb/inspector-issues.js | columnIssueType": {
"message": "Issue type"
},
"core/audits/dobetterweb/inspector-issues.js | description": {
"message": "Issues logged to the `Issues` panel in Chrome Devtools indicate unresolved problems. They can come from network request failures, insufficient security controls, and other browser concerns. Open up the Issues panel in Chrome DevTools for more details on each issue."
},
"core/audits/dobetterweb/inspector-issues.js | failureTitle": {
"message": "Issues were logged in the `Issues` panel in Chrome Devtools"
},
"core/audits/dobetterweb/inspector-issues.js | issueTypeBlockedByResponse": {
"message": "Blocked by cross-origin policy"
},
"core/audits/dobetterweb/inspector-issues.js | issueTypeHeavyAds": {
"message": "Heavy resource usage by ads"
},
"core/audits/dobetterweb/inspector-issues.js | title": {
"message": "No issues in the `Issues` panel in Chrome Devtools"
},
"core/audits/dobetterweb/js-libraries.js | columnVersion": {
"message": "Version"
},
"core/audits/dobetterweb/js-libraries.js | description": {
"message": "All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/)."
},
"core/audits/dobetterweb/js-libraries.js | title": {
"message": "Detected JavaScript libraries"
},
"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 how to avoid document.write()](https://developer.chrome.com/docs/lighthouse/best-practices/no-document-write/)."
},
"core/audits/dobetterweb/no-document-write.js | failureTitle": {
"message": "Avoid `document.write()`"
},
"core/audits/dobetterweb/no-document-write.js | title": {
"message": "Avoids `document.write()`"
},
"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 about responsibly getting permission for notifications](https://developer.chrome.com/docs/lighthouse/best-practices/notification-on-start/)."
},
"core/audits/dobetterweb/notification-on-start.js | failureTitle": {
"message": "Requests the notification permission on page load"
},
"core/audits/dobetterweb/notification-on-start.js | title": {
"message": "Avoids requesting the notification permission on page load"
},
"core/audits/dobetterweb/paste-preventing-inputs.js | description": {
"message": "Preventing input pasting is a bad practice for the UX, and weakens security by blocking password managers.[Learn more about user-friendly input fields](https://developer.chrome.com/docs/lighthouse/best-practices/paste-preventing-inputs/)."
},
"core/audits/dobetterweb/paste-preventing-inputs.js | failureTitle": {
"message": "Prevents users from pasting into input fields"
},
"core/audits/dobetterweb/paste-preventing-inputs.js | title": {
"message": "Allows users to paste into input fields"
},
"core/audits/dobetterweb/uses-http2.js | columnProtocol": {
"message": "Protocol"
},
"core/audits/dobetterweb/uses-http2.js | description": {
"message": "HTTP/2 offers many benefits over HTTP/1.1, including binary headers and multiplexing. [Learn more about HTTP/2](https://developer.chrome.com/docs/lighthouse/best-practices/uses-http2/)."
},
"core/audits/dobetterweb/uses-http2.js | displayValue": {
"message": "{itemCount,plural, =1{1 request not served via HTTP/2}zero{# requests not served via HTTP/2}two{# requests not served via HTTP/2}few{# requests not served via HTTP/2}many{# requests not served via HTTP/2}other{# requests not served via HTTP/2}}"
},
"core/audits/dobetterweb/uses-http2.js | title": {
"message": "Use HTTP/2"
},
"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 about adopting passive event listeners](https://developer.chrome.com/docs/lighthouse/best-practices/uses-passive-event-listeners/)."
},
"core/audits/dobetterweb/uses-passive-event-listeners.js | failureTitle": {
"message": "Does not use passive listeners to improve scrolling performance"
},
"core/audits/dobetterweb/uses-passive-event-listeners.js | title": {
"message": "Uses passive listeners to improve scrolling performance"
},
"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. [Learn more about this errors in console diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/errors-in-console/)"
},
"core/audits/errors-in-console.js | failureTitle": {
"message": "Browser errors were logged to the console"
},
"core/audits/errors-in-console.js | title": {
"message": "No browser errors logged to the console"
},
"core/audits/font-display.js | description": {
"message": "Leverage the `font-display` CSS feature to ensure text is user-visible while webfonts are loading. [Learn more about `font-display`](https://developer.chrome.com/docs/lighthouse/performance/font-display/)."
},
"core/audits/font-display.js | failureTitle": {
"message": "Ensure text remains visible during webfont load"
},
"core/audits/font-display.js | title": {
"message": "All text remains visible during webfont loads"
},
"core/audits/font-display.js | undeclaredFontOriginWarning": {
"message": "{fontCountForOrigin,plural, =1{Lighthouse was unable to automatically check the `font-display` value for the origin {fontOrigin}.}zero{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}two{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}few{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}many{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}other{Lighthouse was unable to automatically check the `font-display` values for the origin {fontOrigin}.}}"
},
"core/audits/has-hsts.js | columnDirective": {
"message": "Directive"
},
"core/audits/has-hsts.js | columnSeverity": {
"message": "Severity"
},
"core/audits/has-hsts.js | description": {
"message": "Deployment of the HSTS header significantly reduces the risk of downgrading HTTP connections and eavesdropping attacks. A rollout in stages, starting with a low max-age is recommended. [Learn more about using a strong HSTS policy.](https://developer.chrome.com/docs/lighthouse/best-practices/has-hsts)"
},
"core/audits/has-hsts.js | invalidSyntax": {
"message": "Invalid syntax"
},
"core/audits/has-hsts.js | lowMaxAge": {
"message": "`max-age` is too low"
},
"core/audits/has-hsts.js | noHsts": {
"message": "No HSTS header found"
},
"core/audits/has-hsts.js | noMaxAge": {
"message": "No `max-age` directive"
},
"core/audits/has-hsts.js | noPreload": {
"message": "No `preload` directive found"
},
"core/audits/has-hsts.js | noSubdomain": {
"message": "No `includeSubDomains` directive found"
},
"core/audits/has-hsts.js | title": {
"message": "Use a strong HSTS policy"
},
"core/audits/image-aspect-ratio.js | columnActual": {
"message": "Aspect Ratio (Actual)"
},
"core/audits/image-aspect-ratio.js | columnDisplayed": {
"message": "Aspect Ratio (Displayed)"
},
"core/audits/image-aspect-ratio.js | description": {
"message": "Image display dimensions should match natural aspect ratio. [Learn more about image aspect ratio](https://developer.chrome.com/docs/lighthouse/best-practices/image-aspect-ratio/)."
},
"core/audits/image-aspect-ratio.js | failureTitle": {
"message": "Displays images with incorrect aspect ratio"
},
"core/audits/image-aspect-ratio.js | title": {
"message": "Displays images with correct aspect ratio"
},
"core/audits/image-size-responsive.js | columnActual": {
"message": "Actual size"
},
"core/audits/image-size-responsive.js | columnDisplayed": {
"message": "Displayed size"
},
"core/audits/image-size-responsive.js | columnExpected": {
"message": "Expected size"
},
"core/audits/image-size-responsive.js | description": {
"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)."
},
"core/audits/image-size-responsive.js | failureTitle": {
"message": "Serves images with low resolution"
},
"core/audits/image-size-responsive.js | title": {
"message": "Serves images with appropriate resolution"
},
"core/audits/insights/cls-culprits-insight.js | columnScore": {
"message": "Layout shift score"
},
"core/audits/is-on-https.js | allowed": {
"message": "Allowed"
},
"core/audits/is-on-https.js | blocked": {
"message": "Blocked"
},
"core/audits/is-on-https.js | columnInsecureURL": {
"message": "Insecure URL"
},
"core/audits/is-on-https.js | columnResolution": {
"message": "Request Resolution"
},
"core/audits/is-on-https.js | description": {
"message": "All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding [mixed content](https://developers.google.com/web/fundamentals/security/prevent-mixed-content/what-is-mixed-content), where some resources are loaded over HTTP despite the initial request being served over HTTPS. 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 about HTTPS](https://developer.chrome.com/docs/lighthouse/pwa/is-on-https/)."
},
"core/audits/is-on-https.js | displayValue": {
"message": "{itemCount,plural, =1{1 insecure request found}zero{# insecure requests found}two{# insecure requests found}few{# insecure requests found}many{# insecure requests found}other{# insecure requests found}}"
},
"core/audits/is-on-https.js | failureTitle": {
"message": "Does not use HTTPS"
},
"core/audits/is-on-https.js | title": {
"message": "Uses HTTPS"
},
"core/audits/is-on-https.js | upgraded": {
"message": "Automatically upgraded to HTTPS"
},
"core/audits/is-on-https.js | warning": {
"message": "Allowed with warning"
},
"core/audits/largest-contentful-paint-element.js | columnPercentOfLCP": {
"message": "% of LCP"
},
"core/audits/largest-contentful-paint-element.js | columnPhase": {
"message": "Phase"
},
"core/audits/largest-contentful-paint-element.js | columnTiming": {
"message": "Timing"
},
"core/audits/largest-contentful-paint-element.js | description": {
"message": "This is the largest contentful element painted within the viewport. [Learn more about the Largest Contentful Paint element](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)"
},
"core/audits/largest-contentful-paint-element.js | itemLoadDelay": {
"message": "Load Delay"
},
"core/audits/largest-contentful-paint-element.js | itemLoadTime": {
"message": "Load Time"
},
"core/audits/largest-contentful-paint-element.js | itemRenderDelay": {
"message": "Render Delay"
},
"core/audits/largest-contentful-paint-element.js | itemTTFB": {
"message": "TTFB"
},
"core/audits/largest-contentful-paint-element.js | title": {
"message": "Largest Contentful Paint element"
},
"core/audits/layout-shifts.js | columnScore": {
"message": "Layout shift score"
},
"core/audits/layout-shifts.js | description": {
"message": "These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to [windowing](https://web.dev/articles/cls#what_is_cls). [Learn how to improve CLS](https://web.dev/articles/optimize-cls)"
},
"core/audits/layout-shifts.js | displayValueShiftsFound": {
"message": "{shiftCount,plural, =1{1 layout shift found}zero{# layout shifts found}two{# layout shifts found}few{# layout shifts found}many{# layout shifts found}other{# layout shifts found}}"
},
"core/audits/layout-shifts.js | rootCauseFontChanges": {
"message": "Web font loaded"
},
"core/audits/layout-shifts.js | rootCauseInjectedIframe": {
"message": "Injected iframe"
},
"core/audits/layout-shifts.js | rootCauseUnsizedMedia": {
"message": "Media element lacking an explicit size"
},
"core/audits/layout-shifts.js | title": {
"message": "Avoid large layout shifts"
},
"core/audits/lcp-lazy-loaded.js | description": {
"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)."
},
"core/audits/lcp-lazy-loaded.js | failureTitle": {
"message": "Largest Contentful Paint image was lazily loaded"
},
"core/audits/lcp-lazy-loaded.js | title": {
"message": "Largest Contentful Paint image was not lazily loaded"
},
"core/audits/long-tasks.js | description": {
"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/optimize-long-tasks)"
},
"core/audits/long-tasks.js | displayValue": {
"message": "{itemCount,plural, =1{# long task found}zero{# long tasks found}two{# long tasks found}few{# long tasks found}many{# long tasks found}other{# long tasks found}}"
},
"core/audits/long-tasks.js | title": {
"message": "Avoid long main-thread tasks"
},
"core/audits/mainthread-work-breakdown.js | columnCategory": {
"message": "Category"
},
"core/audits/mainthread-work-breakdown.js | description": {
"message": "Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. [Learn how to minimize main-thread work](https://developer.chrome.com/docs/lighthouse/performance/mainthread-work-breakdown/)"
},
"core/audits/mainthread-work-breakdown.js | failureTitle": {
"message": "Minimize main-thread work"
},
"core/audits/mainthread-work-breakdown.js | title": {
"message": "Minimizes main-thread work"
},
"core/audits/metrics/cumulative-layout-shift.js | description": {
"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)."
},
"core/audits/metrics/first-contentful-paint.js | description": {
"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/)."
},
"core/audits/metrics/first-meaningful-paint.js | description": {
"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/)."
},
"core/audits/metrics/interaction-to-next-paint.js | description": {
"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)."
},
"core/audits/metrics/interactive.js | description": {
"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/)."
},
"core/audits/metrics/largest-contentful-paint.js | description": {
"message": "Largest Contentful Paint marks the time at which the largest text or image is painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)"
},
"core/audits/metrics/max-potential-fid.js | description": {
"message": "The maximum potential First Input Delay that your users could experience is the duration of the longest task. [Learn more about the Maximum Potential First Input Delay metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-max-potential-fid/)."
},
"core/audits/metrics/speed-index.js | description": {
"message": "Speed Index shows how quickly the contents of a page are visibly populated. [Learn more about the Speed Index metric](https://developer.chrome.com/docs/lighthouse/performance/speed-index/)."
},
"core/audits/metrics/total-blocking-time.js | description": {
"message": "Sum of all time periods between FCP and Time to Interactive, when task length exceeded 50ms, expressed in milliseconds. [Learn more about the Total Blocking Time metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-total-blocking-time/)."
},
"core/audits/network-rtt.js | description": {
"message": "Network round trip times (RTT) have a large impact on performance. If the RTT to an origin is high, it's an indication that servers closer to the user could improve performance. [Learn more about the Round Trip Time](https://hpbn.co/primer-on-latency-and-bandwidth/)."
},
"core/audits/network-rtt.js | title": {
"message": "Network Round Trip Times"
},
"core/audits/network-server-latency.js | description": {
"message": "Server latencies can impact web performance. If the server latency of an origin is high, it's an indication the server is overloaded or has poor backend performance. [Learn more about server response time](https://hpbn.co/primer-on-web-performance/#analyzing-the-resource-waterfall)."
},
"core/audits/network-server-latency.js | title": {
"message": "Server Backend Latencies"
},
"core/audits/non-composited-animations.js | description": {
"message": "Animations which are not composited can be janky and increase CLS. [Learn how to avoid non-composited animations](https://developer.chrome.com/docs/lighthouse/performance/non-composited-animations/)"
},
"core/audits/non-composited-animations.js | displayValue": {
"message": "{itemCount,plural, =1{# animated element found}zero{# animated elements found}two{# animated elements found}few{# animated elements found}many{# animated elements found}other{# animated elements found}}"
},
"core/audits/non-composited-animations.js | filterMayMovePixels": {
"message": "Filter-related property may move pixels"
},
"core/audits/non-composited-animations.js | incompatibleAnimations": {
"message": "Target has another animation which is incompatible"
},
"core/audits/non-composited-animations.js | nonReplaceCompositeMode": {
"message": "Effect has composite mode other than \"replace\""
},
"core/audits/non-composited-animations.js | title": {
"message": "Avoid non-composited animations"
},
"core/audits/non-composited-animations.js | transformDependsBoxSize": {
"message": "Transform-related property depends on box size"
},
"core/audits/non-composited-animations.js | unsupportedCSSProperty": {
"message": "{propertyCount,plural, =1{Unsupported CSS Property: {properties}}zero{Unsupported CSS Properties: {properties}}two{Unsupported CSS Properties: {properties}}few{Unsupported CSS Properties: {properties}}many{Unsupported CSS Properties: {properties}}other{Unsupported CSS Properties: {properties}}}"
},
"core/audits/non-composited-animations.js | unsupportedTimingParameters": {
"message": "Effect has unsupported timing parameters"
},
"core/audits/origin-isolation.js | columnDirective": {
"message": "Directive"
},
"core/audits/origin-isolation.js | columnSeverity": {
"message": "Severity"
},
"core/audits/origin-isolation.js | description": {
"message": "The Cross-Origin-Opener-Policy (COOP) can be used to isolate the top-level window from other documents such as pop-ups. [Learn more about deploying the COOP header.](https://web.dev/articles/why-coop-coep#coop)"
},
"core/audits/origin-isolation.js | invalidSyntax": {
"message": "Invalid syntax"
},
"core/audits/origin-isolation.js | noCoop": {
"message": "No COOP header found"
},
"core/audits/origin-isolation.js | title": {
"message": "Ensure proper origin isolation with COOP"
},
"core/audits/preload-fonts.js | description": {
"message": "Preload `optional` fonts so first-time visitors may use them. [Learn more about preloading fonts](https://web.dev/articles/preload-optional-fonts)"
},
"core/audits/preload-fonts.js | failureTitle": {
"message": "Fonts with `font-display: optional` are not preloaded"
},
"core/audits/preload-fonts.js | title": {
"message": "Fonts with `font-display: optional` are preloaded"
},
"core/audits/prioritize-lcp-image.js | description": {
"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)."
},
"core/audits/prioritize-lcp-image.js | title": {
"message": "Preload Largest Contentful Paint image"
},
"core/audits/redirects-http.js | description": {
"message": "Make sure that you redirect all HTTP traffic to HTTPS in order to enable secure web features for all your users. [Learn more](https://developer.chrome.com/docs/lighthouse/pwa/redirects-http/)."
},
"core/audits/redirects-http.js | failureTitle": {
"message": "Does not redirect HTTP traffic to HTTPS"
},
"core/audits/redirects-http.js | title": {
"message": "Redirects HTTP traffic to HTTPS"
},
"core/audits/redirects.js | description": {
"message": "Redirects introduce additional delays before the page can be loaded. [Learn how to avoid page redirects](https://developer.chrome.com/docs/lighthouse/performance/redirects/)."
},
"core/audits/redirects.js | title": {
"message": "Avoid multiple page redirects"
},
"core/audits/seo/canonical.js | description": {
"message": "Canonical links suggest which URL to show in search results. [Learn more about canonical links](https://developer.chrome.com/docs/lighthouse/seo/canonical/)."
},
"core/audits/seo/canonical.js | explanationConflict": {
"message": "Multiple conflicting URLs ({urlList})"
},
"core/audits/seo/canonical.js | explanationInvalid": {
"message": "Invalid URL ({url})"
},
"core/audits/seo/canonical.js | explanationPointsElsewhere": {
"message": "Points to another `hreflang` location ({url})"
},
"core/audits/seo/canonical.js | explanationRelative": {
"message": "Is not an absolute URL ({url})"
},
"core/audits/seo/canonical.js | explanationRoot": {
"message": "Points to the domain's root URL (the homepage), instead of an equivalent page of content"
},
"core/audits/seo/canonical.js | failureTitle": {
"message": "Document does not have a valid `rel=canonical`"
},
"core/audits/seo/canonical.js | title": {
"message": "Document has a valid `rel=canonical`"
},
"core/audits/seo/crawlable-anchors.js | columnFailingLink": {
"message": "Uncrawlable Link"
},
"core/audits/seo/crawlable-anchors.js | description": {
"message": "Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. [Learn how to make links crawlable](https://support.google.com/webmasters/answer/9112205)"
},
"core/audits/seo/crawlable-anchors.js | failureTitle": {
"message": "Links are not crawlable"
},
"core/audits/seo/crawlable-anchors.js | title": {
"message": "Links are crawlable"
},
"core/audits/seo/font-size.js | additionalIllegibleText": {
"message": "Add'l illegible text"
},
"core/audits/seo/font-size.js | columnFontSize": {
"message": "Font Size"
},
"core/audits/seo/font-size.js | columnPercentPageText": {
"message": "% of Page Text"
},
"core/audits/seo/font-size.js | columnSelector": {
"message": "Selector"
},
"core/audits/seo/font-size.js | description": {
"message": "Font sizes less than 12px are too small to be legible and require mobile visitors topinch to zoomin order to read. Strive to have >60% of page text ≥12px. [Learn more about legible font sizes](https://developer.chrome.com/docs/lighthouse/seo/font-size/)."
},
"core/audits/seo/font-size.js | displayValue": {
"message": "{decimalProportion, number, extendedPercent} legible text"
},
"core/audits/seo/font-size.js | explanationViewport": {
"message": "Text is illegible because there's no viewport meta tag optimized for mobile screens."
},
"core/audits/seo/font-size.js | failureTitle": {
"message": "Document doesn't use legible font sizes"
},
"core/audits/seo/font-size.js | legibleText": {
"message": "Legible text"
},
"core/audits/seo/font-size.js | title": {
"message": "Document uses legible font sizes"
},
"core/audits/seo/hreflang.js | description": {
"message": "hreflang links tell search engines what version of a page they should list in search results for a given language or region. [Learn more about `hreflang`](https://developer.chrome.com/docs/lighthouse/seo/hreflang/)."
},
"core/audits/seo/hreflang.js | failureTitle": {
"message": "Document doesn't have a valid `hreflang`"
},
"core/audits/seo/hreflang.js | notFullyQualified": {
"message": "Relative href value"
},
"core/audits/seo/hreflang.js | title": {
"message": "Document has a valid `hreflang`"
},
"core/audits/seo/hreflang.js | unexpectedLanguage": {
"message": "Unexpected language code"
},
"core/audits/seo/http-status-code.js | description": {
"message": "Pages with unsuccessful HTTP status codes may not be indexed properly. [Learn more about HTTP status codes](https://developer.chrome.com/docs/lighthouse/seo/http-status-code/)."
},
"core/audits/seo/http-status-code.js | failureTitle": {
"message": "Page has unsuccessful HTTP status code"
},
"core/audits/seo/http-status-code.js | title": {
"message": "Page has successful HTTP status code"
},
"core/audits/seo/is-crawlable.js | description": {
"message": "Search engines are unable to include your pages in search results if they don't have permission to crawl them. [Learn more about crawler directives](https://developer.chrome.com/docs/lighthouse/seo/is-crawlable/)."
},
"core/audits/seo/is-crawlable.js | failureTitle": {
"message": "Page is blocked from indexing"
},
"core/audits/seo/is-crawlable.js | title": {
"message": "Page isnt blocked from indexing"
},
"core/audits/seo/link-text.js | description": {
"message": "Descriptive link text helps search engines understand your content. [Learn how to make links more accessible](https://developer.chrome.com/docs/lighthouse/seo/link-text/)."
},
"core/audits/seo/link-text.js | displayValue": {
"message": "{itemCount,plural, =1{1 link found}zero{# links found}two{# links found}few{# links found}many{# links found}other{# links found}}"
},
"core/audits/seo/link-text.js | failureTitle": {
"message": "Links do not have descriptive text"
},
"core/audits/seo/link-text.js | title": {
"message": "Links have descriptive text"
},
"core/audits/seo/manual/structured-data.js | description": {
"message": "Run the [Structured Data Testing Tool](https://search.google.com/structured-data/testing-tool/) and the [Structured Data Linter](http://linter.structured-data.org/) to validate structured data. [Learn more about Structured Data](https://developer.chrome.com/docs/lighthouse/seo/structured-data/)."
},
"core/audits/seo/manual/structured-data.js | title": {
"message": "Structured data is valid"
},
"core/audits/seo/meta-description.js | description": {
"message": "Meta descriptions may be included in search results to concisely summarize page content. [Learn more about the meta description](https://developer.chrome.com/docs/lighthouse/seo/meta-description/)."
},
"core/audits/seo/meta-description.js | explanation": {
"message": "Description text is empty."
},
"core/audits/seo/meta-description.js | failureTitle": {
"message": "Document does not have a meta description"
},
"core/audits/seo/meta-description.js | title": {
"message": "Document has a meta description"
},
"core/audits/seo/robots-txt.js | description": {
"message": "If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. [Learn more about robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
},
"core/audits/seo/robots-txt.js | displayValueHttpBadCode": {
"message": "Request for robots.txt returned HTTP status: {statusCode}"
},
"core/audits/seo/robots-txt.js | displayValueValidationError": {
"message": "{itemCount,plural, =1{1 error found}zero{# errors found}two{# errors found}few{# errors found}many{# errors found}other{# errors found}}"
},
"core/audits/seo/robots-txt.js | explanation": {
"message": "Lighthouse was unable to download a robots.txt file"
},
"core/audits/seo/robots-txt.js | failureTitle": {
"message": "robots.txt is not valid"
},
"core/audits/seo/robots-txt.js | title": {
"message": "robots.txt is valid"
},
"core/audits/server-response-time.js | description": {
"message": "Keep the server response time for the main document short because all other requests depend on it. [Learn more about the Time to First Byte metric](https://developer.chrome.com/docs/lighthouse/performance/time-to-first-byte/)."
},
"core/audits/server-response-time.js | displayValue": {
"message": "Root document took {timeInMs, number, milliseconds} ms"
},
"core/audits/server-response-time.js | failureTitle": {
"message": "Reduce initial server response time"
},
"core/audits/server-response-time.js | title": {
"message": "Initial server response time was short"
},
"core/audits/third-party-cookies.js | description": {
"message": "Third-party cookies may be blocked in some contexts. [Learn more about preparing for third-party cookie restrictions](https://privacysandbox.google.com/cookies/prepare/overview)."
},
"core/audits/third-party-cookies.js | displayValue": {
"message": "{itemCount,plural, =1{1 cookie found}zero{# cookies found}two{# cookies found}few{# cookies found}many{# cookies found}other{# cookies found}}"
},
"core/audits/third-party-cookies.js | failureTitle": {
"message": "Uses third-party cookies"
},
"core/audits/third-party-cookies.js | title": {
"message": "Avoids third-party cookies"
},
"core/audits/third-party-facades.js | categoryCustomerSuccess": {
"message": "{productName} (Customer Success)"
},
"core/audits/third-party-facades.js | categoryMarketing": {
"message": "{productName} (Marketing)"
},
"core/audits/third-party-facades.js | categorySocial": {
"message": "{productName} (Social)"
},
"core/audits/third-party-facades.js | categoryVideo": {
"message": "{productName} (Video)"
},
"core/audits/third-party-facades.js | columnProduct": {
"message": "Product"
},
"core/audits/third-party-facades.js | description": {
"message": "Some third-party embeds can be lazy loaded. Consider replacing them with a facade until they are required. [Learn how to defer third-parties with a facade](https://developer.chrome.com/docs/lighthouse/performance/third-party-facades/)."
},
"core/audits/third-party-facades.js | displayValue": {
"message": "{itemCount,plural, =1{# facade alternative available}zero{# facade alternatives available}two{# facade alternatives available}few{# facade alternatives available}many{# facade alternatives available}other{# facade alternatives available}}"
},
"core/audits/third-party-facades.js | failureTitle": {
"message": "Some third-party resources can be lazy loaded with a facade"
},
"core/audits/third-party-facades.js | title": {
"message": "Lazy load third-party resources with facades"
},
"core/audits/third-party-summary.js | columnThirdParty": {
"message": "Third-Party"
},
"core/audits/third-party-summary.js | description": {
"message": "Third-party code can significantly impact load performance. Limit the number of redundant third-party providers and try to load third-party code after your page has primarily finished loading. [Learn how to minimize third-party impact](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/)."
},
"core/audits/third-party-summary.js | displayValue": {
"message": "Third-party code blocked the main thread for {timeInMs, number, milliseconds} ms"
},
"core/audits/third-party-summary.js | failureTitle": {
"message": "Reduce the impact of third-party code"
},
"core/audits/third-party-summary.js | title": {
"message": "Minimize third-party usage"
},
"core/audits/trusted-types-xss.js | columnSeverity": {
"message": "Severity"
},
"core/audits/trusted-types-xss.js | description": {
"message": "The `require-trusted-types-for` directive in the `Content-Security-Policy` (CSP) header instructs user agents to control the data passed to DOM XSS sink functions. [Learn more about mitigating DOM-based XSS with Trusted Types](https://developer.chrome.com/docs/lighthouse/best-practices/trusted-types-xss)."
},
"core/audits/trusted-types-xss.js | noTrustedTypesToMitigateXss": {
"message": "No `Content-Security-Policy` header with Trusted Types directive found"
},
"core/audits/trusted-types-xss.js | title": {
"message": "Mitigate DOM-based XSS with Trusted Types"
},
"core/audits/unsized-images.js | description": {
"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)"
},
"core/audits/unsized-images.js | failureTitle": {
"message": "Image elements do not have explicit `width` and `height`"
},
"core/audits/unsized-images.js | title": {
"message": "Image elements have explicit `width` and `height`"
},
"core/audits/user-timings.js | columnType": {
"message": "Type"
},
"core/audits/user-timings.js | description": {
"message": "Consider instrumenting your app with the User Timing API to measure your app's real-world performance during key user experiences. [Learn more about User Timing marks](https://developer.chrome.com/docs/lighthouse/performance/user-timings/)."
},
"core/audits/user-timings.js | displayValue": {
"message": "{itemCount,plural, =1{1 user timing}zero{# user timings}two{# user timings}few{# user timings}many{# user timings}other{# user timings}}"
},
"core/audits/user-timings.js | title": {
"message": "User Timing marks and measures"
},
"core/audits/uses-rel-preconnect.js | crossoriginWarning": {
"message": "A `<link rel=preconnect>` was found for \"{securityOrigin}\" but was not used by the browser. Check that you are using the `crossorigin` attribute properly."
},
"core/audits/uses-rel-preconnect.js | description": {
"message": "Consider adding `preconnect` or `dns-prefetch` resource hints to establish early connections to important third-party origins. [Learn how to preconnect to required origins](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preconnect/)."
},
"core/audits/uses-rel-preconnect.js | title": {
"message": "Preconnect to required origins"
},
"core/audits/uses-rel-preconnect.js | tooManyPreconnectLinksWarning": {
"message": "More than 2 `<link rel=preconnect>` connections were found. These should be used sparingly and only to the most important origins."
},
"core/audits/uses-rel-preconnect.js | unusedWarning": {
"message": "A `<link rel=preconnect>` was found for \"{securityOrigin}\" but was not used by the browser. Only use `preconnect` for important origins that the page will certainly request."
},
"core/audits/uses-rel-preload.js | crossoriginWarning": {
"message": "A preload `<link>` was found for \"{preloadURL}\" but was not used by the browser. Check that you are using the `crossorigin` attribute properly."
},
"core/audits/uses-rel-preload.js | description": {
"message": "Consider using `<link rel=preload>` to prioritize fetching resources that are currently requested later in page load. [Learn how to preload key requests](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preload/)."
},
"core/audits/uses-rel-preload.js | title": {
"message": "Preload key requests"
},
"core/audits/valid-source-maps.js | columnMapURL": {
"message": "Map URL"
},
"core/audits/valid-source-maps.js | description": {
"message": "Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. [Learn more about source maps](https://developer.chrome.com/docs/devtools/javascript/source-maps/)."
},
"core/audits/valid-source-maps.js | failureTitle": {
"message": "Missing source maps for large first-party JavaScript"
},
"core/audits/valid-source-maps.js | missingSourceMapErrorMessage": {
"message": "Large JavaScript file is missing a source map"
},
"core/audits/valid-source-maps.js | missingSourceMapItemsWarningMesssage": {
"message": "{missingItems,plural, =1{Warning: missing 1 item in `.sourcesContent`}zero{Warning: missing # items in `.sourcesContent`}two{Warning: missing # items in `.sourcesContent`}few{Warning: missing # items in `.sourcesContent`}many{Warning: missing # items in `.sourcesContent`}other{Warning: missing # items in `.sourcesContent`}}"
},
"core/audits/valid-source-maps.js | title": {
"message": "Page has valid source maps"
},
"core/audits/viewport.js | description": {
"message": "A `<meta name=\"viewport\">` not only optimizes your app for mobile screen sizes, but also prevents [a 300 millisecond delay to user input](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/). [Learn more about using the viewport meta tag](https://developer.chrome.com/docs/lighthouse/pwa/viewport/)."
},
"core/audits/viewport.js | explanationNoTag": {
"message": "No `<meta name=\"viewport\">` tag found"
},
"core/audits/viewport.js | failureTitle": {
"message": "Does not have a `<meta name=\"viewport\">` tag with `width` or `initial-scale`"
},
"core/audits/viewport.js | title": {
"message": "Has a `<meta name=\"viewport\">` tag with `width` or `initial-scale`"
},
"core/audits/work-during-interaction.js | description": {
"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)."
},
"core/audits/work-during-interaction.js | displayValue": {
"message": "{timeInMs, number, milliseconds} ms spent on event '{interactionType}'"
},
"core/audits/work-during-interaction.js | eventTarget": {
"message": "Event target"
},
"core/audits/work-during-interaction.js | failureTitle": {
"message": "Minimize work during key interaction"
},
"core/audits/work-during-interaction.js | inputDelay": {
"message": "Input delay"
},
"core/audits/work-during-interaction.js | presentationDelay": {
"message": "Presentation delay"
},
"core/audits/work-during-interaction.js | processingDuration": {
"message": "Processing duration"
},
"core/audits/work-during-interaction.js | title": {
"message": "Minimizes work during key interaction"
},
"core/config/default-config.js | a11yAriaGroupDescription": {
"message": "These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader."
},
"core/config/default-config.js | a11yAriaGroupTitle": {
"message": "ARIA"
},
"core/config/default-config.js | a11yAudioVideoGroupDescription": {
"message": "These are opportunities to provide alternative content for audio and video. This may improve the experience for users with hearing or vision impairments."
},
"core/config/default-config.js | a11yAudioVideoGroupTitle": {
"message": "Audio and video"
},
"core/config/default-config.js | a11yBestPracticesGroupDescription": {
"message": "These items highlight common accessibility best practices."
},
"core/config/default-config.js | a11yBestPracticesGroupTitle": {
"message": "Best practices"
},
"core/config/default-config.js | a11yCategoryDescription": {
"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."
},
"core/config/default-config.js | a11yCategoryManualDescription": {
"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)."
},
"core/config/default-config.js | a11yCategoryTitle": {
"message": "Accessibility"
},
"core/config/default-config.js | a11yColorContrastGroupDescription": {
"message": "These are opportunities to improve the legibility of your content."
},
"core/config/default-config.js | a11yColorContrastGroupTitle": {
"message": "Contrast"
},
"core/config/default-config.js | a11yLanguageGroupDescription": {
"message": "These are opportunities to improve the interpretation of your content by users in different locales."
},
"core/config/default-config.js | a11yLanguageGroupTitle": {
"message": "Internationalization and localization"
},
"core/config/default-config.js | a11yNamesLabelsGroupDescription": {
"message": "These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader."
},
"core/config/default-config.js | a11yNamesLabelsGroupTitle": {
"message": "Names and labels"
},
"core/config/default-config.js | a11yNavigationGroupDescription": {
"message": "These are opportunities to improve keyboard navigation in your application."
},
"core/config/default-config.js | a11yNavigationGroupTitle": {
"message": "Navigation"
},
"core/config/default-config.js | a11yTablesListsVideoGroupDescription": {
"message": "These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader."
},
"core/config/default-config.js | a11yTablesListsVideoGroupTitle": {
"message": "Tables and lists"
},
"core/config/default-config.js | bestPracticesBrowserCompatGroupTitle": {
"message": "Browser Compatibility"
},
"core/config/default-config.js | bestPracticesCategoryTitle": {
"message": "Best Practices"
},
"core/config/default-config.js | bestPracticesGeneralGroupTitle": {
"message": "General"
},
"core/config/default-config.js | bestPracticesTrustSafetyGroupTitle": {
"message": "Trust and Safety"
},
"core/config/default-config.js | bestPracticesUXGroupTitle": {
"message": "User Experience"
},
"core/config/default-config.js | diagnosticsGroupDescription": {
"message": "More information about the performance of your application. These numbers don't [directly affect](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) the Performance score."
},
"core/config/default-config.js | diagnosticsGroupTitle": {
"message": "Diagnostics"
},
"core/config/default-config.js | firstPaintImprovementsGroupDescription": {
"message": "The most critical aspect of performance is how quickly pixels are rendered onscreen. Key metrics: First Contentful Paint, First Meaningful Paint"
},
"core/config/default-config.js | firstPaintImprovementsGroupTitle": {
"message": "First Paint Improvements"
},
"core/config/default-config.js | insightsGroupDescription": {
"message": "These insights are also available in the Chrome DevTools Performance Panel - [record a trace](https://developer.chrome.com/docs/devtools/performance/reference) to view more detailed information."
},
"core/config/default-config.js | insightsGroupTitle": {
"message": "Insights"
},
"core/config/default-config.js | metricGroupTitle": {
"message": "Metrics"
},
"core/config/default-config.js | overallImprovementsGroupDescription": {
"message": "Enhance the overall loading experience, so the page is responsive and ready to use as soon as possible. Key metrics: Time to Interactive, Speed Index"
},
"core/config/default-config.js | overallImprovementsGroupTitle": {
"message": "Overall Improvements"
},
"core/config/default-config.js | performanceCategoryTitle": {
"message": "Performance"
},
"core/config/default-config.js | seoCategoryDescription": {
"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)."
},
"core/config/default-config.js | seoCategoryManualDescription": {
"message": "Run these additional validators on your site to check additional SEO best practices."
},
"core/config/default-config.js | seoCategoryTitle": {
"message": "SEO"
},
"core/config/default-config.js | seoContentGroupDescription": {
"message": "Format your HTML in a way that enables crawlers to better understand your apps content."
},
"core/config/default-config.js | seoContentGroupTitle": {
"message": "Content Best Practices"
},
"core/config/default-config.js | seoCrawlingGroupDescription": {
"message": "To appear in search results, crawlers need access to your app."
},
"core/config/default-config.js | seoCrawlingGroupTitle": {
"message": "Crawling and Indexing"
},
"core/config/default-config.js | seoMobileGroupDescription": {
"message": "Make sure your pages are mobile friendly so users dont have to pinch or zoom in order to read the content pages. [Learn how to make pages mobile-friendly](https://developers.google.com/search/mobile-sites/)."
},
"core/config/default-config.js | seoMobileGroupTitle": {
"message": "Mobile Friendly"
},
"core/gather/driver/environment.js | warningSlowHostCpu": {
"message": "The tested device appears to have a slower CPU than Lighthouse expects. This can negatively affect your performance score. Learn more about [calibrating an appropriate CPU slowdown multiplier](https://github.com/GoogleChrome/lighthouse/blob/main/docs/throttling.md#cpu-throttling)."
},
"core/gather/driver/navigation.js | warningRedirected": {
"message": "The page may not be loading as expected because your test URL ({requested}) was redirected to {final}. Try testing the second URL directly."
},
"core/gather/driver/navigation.js | warningTimeout": {
"message": "The page loaded too slowly to finish within the time limit. Results may be incomplete."
},
"core/gather/driver/storage.js | warningCacheTimeout": {
"message": "Clearing the browser cache timed out. Try auditing this page again and file a bug if the issue persists."
},
"core/gather/driver/storage.js | warningData": {
"message": "{locationCount,plural, =1{There may be stored data affecting loading performance in this location: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}zero{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}two{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}few{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}many{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}other{There may be stored data affecting loading performance in these locations: {locations}. Audit this page in an incognito window to prevent those resources from affecting your scores.}}"
},
"core/gather/driver/storage.js | warningOriginDataTimeout": {
"message": "Clearing the origin data timed out. Try auditing this page again and file a bug if the issue persists."
},
"core/gather/gatherers/link-elements.js | headerParseWarning": {
"message": "Error parsing `link` header ({error}): `{header}`"
},
"core/gather/timespan-runner.js | warningNavigationDetected": {
"message": "A page navigation was detected during the run. Using timespan mode to audit page navigations is not recommended. Use navigation mode to audit page navigations for better third-party attribution and main thread detection."
},
"core/lib/csp-evaluator.js | allowlistFallback": {
"message": "Consider adding https: and http: URL schemes (ignored by browsers supporting `'strict-dynamic'`) to be backward compatible with older browsers."
},
"core/lib/csp-evaluator.js | deprecatedDisownOpener": {
"message": "`disown-opener` is deprecated since CSP3. Please, use the Cross-Origin-Opener-Policy header instead."
},
"core/lib/csp-evaluator.js | deprecatedReferrer": {
"message": "`referrer` is deprecated since CSP2. Please, use the Referrer-Policy header instead."
},
"core/lib/csp-evaluator.js | deprecatedReflectedXSS": {
"message": "`reflected-xss` is deprecated since CSP2. Please, use the X-XSS-Protection header instead."
},
"core/lib/csp-evaluator.js | missingBaseUri": {
"message": "Missing `base-uri` allows injected `<base>` tags to set the base URL for all relative URLs (e.g. scripts) to an attacker controlled domain. Consider setting `base-uri` to `'none'` or `'self'`."
},
"core/lib/csp-evaluator.js | missingObjectSrc": {
"message": "Missing `object-src` allows the injection of plugins that execute unsafe scripts. Consider setting `object-src` to `'none'` if you can."
},
"core/lib/csp-evaluator.js | missingScriptSrc": {
"message": "`script-src` directive is missing. This can allow the execution of unsafe scripts."
},
"core/lib/csp-evaluator.js | missingSemicolon": {
"message": "Did you forget the semicolon? {keyword} seems to be a directive, not a keyword."
},
"core/lib/csp-evaluator.js | nonceCharset": {
"message": "Nonces should use the base64 charset."
},
"core/lib/csp-evaluator.js | nonceLength": {
"message": "Nonces should be at least 8 characters long."
},
"core/lib/csp-evaluator.js | plainUrlScheme": {
"message": "Avoid using plain URL schemes ({keyword}) in this directive. Plain URL schemes allow scripts to be sourced from an unsafe domain."
},
"core/lib/csp-evaluator.js | plainWildcards": {
"message": "Avoid using plain wildcards ({keyword}) in this directive. Plain wildcards allow scripts to be sourced from an unsafe domain."
},
"core/lib/csp-evaluator.js | reportToOnly": {
"message": "The reporting destination is only configured via the report-to directive. This directive is only supported in Chromium-based browsers so it is recommended to also use a `report-uri` directive."
},
"core/lib/csp-evaluator.js | reportingDestinationMissing": {
"message": "No CSP configures a reporting destination. This makes it difficult to maintain the CSP over time and monitor for any breakages."
},
"core/lib/csp-evaluator.js | strictDynamic": {
"message": "Host allowlists can frequently be bypassed. Consider using CSP nonces or hashes instead, along with `'strict-dynamic'` if necessary."
},
"core/lib/csp-evaluator.js | unknownDirective": {
"message": "Unknown CSP directive."
},
"core/lib/csp-evaluator.js | unknownKeyword": {
"message": "{keyword} seems to be an invalid keyword."
},
"core/lib/csp-evaluator.js | unsafeInline": {
"message": "`'unsafe-inline'` allows the execution of unsafe in-page scripts and event handlers. Consider using CSP nonces or hashes to allow scripts individually."
},
"core/lib/csp-evaluator.js | unsafeInlineFallback": {
"message": "Consider adding `'unsafe-inline'` (ignored by browsers supporting nonces/hashes) to be backward compatible with older browsers."
},
"core/lib/deprecation-description.js | feature": {
"message": "Check the feature status page for more details."
},
"core/lib/deprecation-description.js | milestone": {
"message": "This change will go into effect with milestone {milestone}."
},
"core/lib/deprecation-description.js | title": {
"message": "Deprecated Feature Used"
},
"core/lib/i18n/i18n.js | columnBlockingTime": {
"message": "Main-Thread Blocking Time"
},
"core/lib/i18n/i18n.js | columnCacheTTL": {
"message": "Cache TTL"
},
"core/lib/i18n/i18n.js | columnDescription": {
"message": "Description"
},
"core/lib/i18n/i18n.js | columnDuration": {
"message": "Duration"
},
"core/lib/i18n/i18n.js | columnElement": {
"message": "Element"
},
"core/lib/i18n/i18n.js | columnFailingElem": {
"message": "Failing Elements"
},
"core/lib/i18n/i18n.js | columnLocation": {
"message": "Location"
},
"core/lib/i18n/i18n.js | columnName": {
"message": "Name"
},
"core/lib/i18n/i18n.js | columnRequests": {
"message": "Requests"
},
"core/lib/i18n/i18n.js | columnResourceSize": {
"message": "Resource Size"
},
"core/lib/i18n/i18n.js | columnResourceType": {
"message": "Resource Type"
},
"core/lib/i18n/i18n.js | columnSize": {
"message": "Size"
},
"core/lib/i18n/i18n.js | columnSource": {
"message": "Source"
},
"core/lib/i18n/i18n.js | columnStartTime": {
"message": "Start Time"
},
"core/lib/i18n/i18n.js | columnTimeSpent": {
"message": "Time Spent"
},
"core/lib/i18n/i18n.js | columnTransferSize": {
"message": "Transfer Size"
},
"core/lib/i18n/i18n.js | columnURL": {
"message": "URL"
},
"core/lib/i18n/i18n.js | columnWastedBytes": {
"message": "Est Savings"
},
"core/lib/i18n/i18n.js | columnWastedMs": {
"message": "Est Savings"
},
"core/lib/i18n/i18n.js | cumulativeLayoutShiftMetric": {
"message": "Cumulative Layout Shift"
},
"core/lib/i18n/i18n.js | displayValueByteSavings": {
"message": "Est savings of {wastedBytes, number, bytes} KiB"
},
"core/lib/i18n/i18n.js | displayValueElementsFound": {
"message": "{nodeCount,plural, =1{1 element found}zero{# elements found}two{# elements found}few{# elements found}many{# elements found}other{# elements found}}"
},
"core/lib/i18n/i18n.js | displayValueMsSavings": {
"message": "Est savings of {wastedMs, number, milliseconds} ms"
},
"core/lib/i18n/i18n.js | documentResourceType": {
"message": "Document"
},
"core/lib/i18n/i18n.js | firstContentfulPaintMetric": {
"message": "First Contentful Paint"
},
"core/lib/i18n/i18n.js | firstMeaningfulPaintMetric": {
"message": "First Meaningful Paint"
},
"core/lib/i18n/i18n.js | fontResourceType": {
"message": "Font"
},
"core/lib/i18n/i18n.js | imageResourceType": {
"message": "Image"
},
"core/lib/i18n/i18n.js | interactionToNextPaint": {
"message": "Interaction to Next Paint"
},
"core/lib/i18n/i18n.js | interactiveMetric": {
"message": "Time to Interactive"
},
"core/lib/i18n/i18n.js | itemSeverityHigh": {
"message": "High"
},
"core/lib/i18n/i18n.js | itemSeverityLow": {
"message": "Low"
},
"core/lib/i18n/i18n.js | itemSeverityMedium": {
"message": "Medium"
},
"core/lib/i18n/i18n.js | largestContentfulPaintMetric": {
"message": "Largest Contentful Paint"
},
"core/lib/i18n/i18n.js | maxPotentialFIDMetric": {
"message": "Max Potential First Input Delay"
},
"core/lib/i18n/i18n.js | mediaResourceType": {
"message": "Media"
},
"core/lib/i18n/i18n.js | ms": {
"message": "{timeInMs, number, milliseconds} ms"
},
"core/lib/i18n/i18n.js | otherResourceType": {
"message": "Other"
},
"core/lib/i18n/i18n.js | otherResourcesLabel": {
"message": "Other resources"
},
"core/lib/i18n/i18n.js | scriptResourceType": {
"message": "Script"
},
"core/lib/i18n/i18n.js | seconds": {
"message": "{timeInMs, number, seconds} s"
},
"core/lib/i18n/i18n.js | speedIndexMetric": {
"message": "Speed Index"
},
"core/lib/i18n/i18n.js | stylesheetResourceType": {
"message": "Stylesheet"
},
"core/lib/i18n/i18n.js | thirdPartyResourceType": {
"message": "Third-party"
},
"core/lib/i18n/i18n.js | total": {
"message": "Total"
},
"core/lib/i18n/i18n.js | totalBlockingTimeMetric": {
"message": "Total Blocking Time"
},
"core/lib/i18n/i18n.js | totalResourceType": {
"message": "Total"
},
"core/lib/lh-error.js | badTraceRecording": {
"message": "Something went wrong with recording the trace over your page load. Please run Lighthouse again. ({errorCode})"
},
"core/lib/lh-error.js | criTimeout": {
"message": "Timeout waiting for initial Debugger Protocol connection."
},
"core/lib/lh-error.js | didntCollectScreenshots": {
"message": "Chrome didn't collect any screenshots during the page load. Please make sure there is content visible on the page, and then try re-running Lighthouse. ({errorCode})"
},
"core/lib/lh-error.js | dnsFailure": {
"message": "DNS servers could not resolve the provided domain."
},
"core/lib/lh-error.js | erroredRequiredArtifact": {
"message": "Required {artifactName} gatherer encountered an error: {errorMessage}"
},
"core/lib/lh-error.js | internalChromeError": {
"message": "An internal Chrome error occurred. Please restart Chrome and try re-running Lighthouse."
},
"core/lib/lh-error.js | missingRequiredArtifact": {
"message": "Required {artifactName} gatherer did not run."
},
"core/lib/lh-error.js | noFcp": {
"message": "The page did not paint any content. Please ensure you keep the browser window in the foreground during the load and try again. ({errorCode})"
},
"core/lib/lh-error.js | noLcp": {
"message": "The page did not display content that qualifies as a Largest Contentful Paint (LCP). Ensure the page has a valid LCP element and then try again. ({errorCode})"
},
"core/lib/lh-error.js | notHtml": {
"message": "The page provided is not HTML (served as MIME type {mimeType})."
},
"core/lib/lh-error.js | oldChromeDoesNotSupportFeature": {
"message": "This version of Chrome is too old to support '{featureName}'. Use a newer version to see full results."
},
"core/lib/lh-error.js | pageLoadFailed": {
"message": "Lighthouse was unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests."
},
"core/lib/lh-error.js | pageLoadFailedHung": {
"message": "Lighthouse was unable to reliably load the URL you requested because the page stopped responding."
},
"core/lib/lh-error.js | pageLoadFailedInsecure": {
"message": "The URL you have provided does not have a valid security certificate. {securityMessages}"
},
"core/lib/lh-error.js | pageLoadFailedInterstitial": {
"message": "Chrome prevented page load with an interstitial. Make sure you are testing the correct URL and that the server is properly responding to all requests."
},
"core/lib/lh-error.js | pageLoadFailedWithDetails": {
"message": "Lighthouse was unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests. (Details: {errorDetails})"
},
"core/lib/lh-error.js | pageLoadFailedWithStatusCode": {
"message": "Lighthouse was unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests. (Status code: {statusCode})"
},
"core/lib/lh-error.js | pageLoadTookTooLong": {
"message": "Your page took too long to load. Please follow the opportunities in the report to reduce your page load time, and then try re-running Lighthouse. ({errorCode})"
},
"core/lib/lh-error.js | protocolTimeout": {
"message": "Waiting for DevTools protocol response has exceeded the allotted time. (Method: {protocolMethod})"
},
"core/lib/lh-error.js | requestContentTimeout": {
"message": "Fetching resource content has exceeded the allotted time"
},
"core/lib/lh-error.js | targetCrashed": {
"message": "Browser tab has unexpectedly crashed."
},
"core/lib/lh-error.js | urlInvalid": {
"message": "The URL you have provided appears to be invalid."
},
"core/lib/navigation-error.js | warningStatusCode": {
"message": "Lighthouse was unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests. (Status code: {errorCode})"
},
"core/lib/navigation-error.js | warningXhtml": {
"message": "The page MIME type is XHTML: Lighthouse does not explicitly support this document type"
},
"core/user-flow.js | defaultFlowName": {
"message": "User flow ({url})"
},
"core/user-flow.js | defaultNavigationName": {
"message": "Navigation report ({url})"
},
"core/user-flow.js | defaultSnapshotName": {
"message": "Snapshot report ({url})"
},
"core/user-flow.js | defaultTimespanName": {
"message": "Timespan report ({url})"
},
"flow-report/src/i18n/ui-strings.js | allReports": {
"message": "All Reports"
},
"flow-report/src/i18n/ui-strings.js | categories": {
"message": "Categories"
},
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
"message": "Accessibility"
},
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
"message": "Best Practices"
},
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
"message": "Performance"
},
"flow-report/src/i18n/ui-strings.js | categorySeo": {
"message": "SEO"
},
"flow-report/src/i18n/ui-strings.js | desktop": {
"message": "Desktop"
},
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
"message": "Understanding the Lighthouse Flow Report"
},
"flow-report/src/i18n/ui-strings.js | helpLabel": {
"message": "Understanding Flows"
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
"message": "Use Navigation reports to..."
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
"message": "Use Snapshot reports to..."
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
"message": "Use Timespan reports to..."
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
"message": "Obtain a Lighthouse Performance score."
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
"message": "Measure page load Performance metrics such as Largest Contentful Paint and Speed Index."
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
"message": "Assess Progressive Web App capabilities."
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
"message": "Find accessibility issues in single page applications or complex forms."
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
"message": "Evaluate best practices of menus and UI elements hidden behind interaction."
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
"message": "Measure layout shifts and JavaScript execution time on a series of interactions."
},
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
"message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
},
"flow-report/src/i18n/ui-strings.js | highestImpact": {
"message": "Highest impact"
},
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
"message": "{numInformative,plural, =1{{numInformative} informative audit}zero{{numInformative} informative audits}two{{numInformative} informative audits}few{{numInformative} informative audits}many{{numInformative} informative audits}other{{numInformative} informative audits}}"
},
"flow-report/src/i18n/ui-strings.js | mobile": {
"message": "Mobile"
},
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
"message": "Page load"
},
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
"message": "Navigation reports analyze a single page load, exactly like the original Lighthouse reports."
},
"flow-report/src/i18n/ui-strings.js | navigationReport": {
"message": "Navigation report"
},
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
"message": "{numNavigation,plural, =1{{numNavigation} navigation report}zero{{numNavigation} navigation reports}two{{numNavigation} navigation reports}few{{numNavigation} navigation reports}many{{numNavigation} navigation reports}other{{numNavigation} navigation reports}}"
},
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
"message": "{numPassableAudits,plural, =1{{numPassableAudits} passable audit}zero{{numPassableAudits} passable audits}two{{numPassableAudits} passable audits}few{{numPassableAudits} passable audits}many{{numPassableAudits} passable audits}other{{numPassableAudits} passable audits}}"
},
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
"message": "{numPassed,plural, =1{{numPassed} audit passed}zero{{numPassed} audits passed}two{{numPassed} audits passed}few{{numPassed} audits passed}many{{numPassed} audits passed}other{{numPassed} audits passed}}"
},
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
"message": "Average"
},
"flow-report/src/i18n/ui-strings.js | ratingError": {
"message": "Error"
},
"flow-report/src/i18n/ui-strings.js | ratingFail": {
"message": "Poor"
},
"flow-report/src/i18n/ui-strings.js | ratingPass": {
"message": "Good"
},
"flow-report/src/i18n/ui-strings.js | save": {
"message": "Save"
},
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
"message": "Captured state of page"
},
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
"message": "Snapshot reports analyze the page in a particular state, typically after user interactions."
},
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
"message": "Snapshot report"
},
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
"message": "{numSnapshot,plural, =1{{numSnapshot} snapshot report}zero{{numSnapshot} snapshot reports}two{{numSnapshot} snapshot reports}few{{numSnapshot} snapshot reports}many{{numSnapshot} snapshot reports}other{{numSnapshot} snapshot reports}}"
},
"flow-report/src/i18n/ui-strings.js | summary": {
"message": "Summary"
},
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
"message": "User interactions"
},
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
"message": "Timespan reports analyze an arbitrary period of time, typically containing user interactions."
},
"flow-report/src/i18n/ui-strings.js | timespanReport": {
"message": "Timespan report"
},
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
"message": "{numTimespan,plural, =1{{numTimespan} timespan report}zero{{numTimespan} timespan reports}two{{numTimespan} timespan reports}few{{numTimespan} timespan reports}many{{numTimespan} timespan reports}other{{numTimespan} timespan reports}}"
},
"flow-report/src/i18n/ui-strings.js | title": {
"message": "Lighthouse User Flow Report"
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | AuthorizationCoveredByWildcard": {
"message": "لن يشمل رمز حرف البدل (*) الإذن في معالجة العنوان Access-Control-Allow-Headers في سياسة Cross-Origin Resource Sharing (CORS)."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSSelectorInternalMediaControlsOverlayCastButton": {
"message": "يجب استخدام السمة disableRemotePlayback لإيقاف الدمج التلقائي لتقنية Google Cast بدلاً من استخدام أداة الاختيار -internal-media-controls-overlay-cast-button."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSValueAppearanceSliderVertical": {
"message": "لم يتم توحيد قيمة ظهور خدمة مقارنة الأسعار slider-vertical وستتم إزالتها."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CanRequestURLHTTPContainingNewline": {
"message": "يتم حظر طلبات المصادر التي تتضمّن عناوين URL الخاصة بها كلاً من أحرف المسافة البيضاء \\(n|r|t) ورمز \"الأقل من\" (<). لتحميل هذه المصادر، يُرجى إزالة السطور الجديدة وترميز رمز \"الأقل من\" من خلال مواضع مثل قيم سمات العناصر."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesConnectionInfo": {
"message": "تم إيقاف واجهة برمجة التطبيقات chrome.loadTimes() نهائيًا ويمكنك بدلاً منها استخدام واجهة برمجة التطبيقات Navigation Timing 2 الموحَّدة."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesFirstPaintAfterLoadTime": {
"message": "تم إيقاف واجهة برمجة التطبيقات chrome.loadTimes() نهائيًا. وبدلاً منها، يمكنك استخدام واجهة برمجة التطبيقات الموحَّدة: Paint Timing."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
"message": "تم إيقاف chrome.loadTimes() نهائيًا. وبدلاً منها، يمكنك استخدام واجهة برمجة التطبيقات الموحَّدة Navigation Timing 2 التي تتضمّن السمة nextHopProtocol."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CookieWithTruncatingChar": {
"message": "سيتم رفض ملفات تعريف الارتباط التي تتضمّن الحرف \\(0|r|n) بدلاً من اقتطاعها."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginAccessBasedOnDocumentDomain": {
"message": "بالنسبة إلى ميزة تخفيف قيود السياسة المشتركة المصدر من خلال ضبط الميزة document.domain، تم إيقافها نهائيًا وستكون غير مفعَّلة تلقائيًا. إنّ تحذير الإيقاف النهائي هذا متعلِّق بإذن الوصول من مصادر متعددة والذي تم تفعيله من خلال ضبط الميزة document.domain."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowAlert": {
"message": "إنَّ ميزة تنفيذ الوظيفة window.alert المستنِدة إلى إطارات iframe من مصادر متعددة تم إيقافها نهائيًا وستتم إزالتها في المستقبل."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowConfirm": {
"message": "إنّ ميزة تنفيذ الوظيفة window.confirm المستنِدة إلى إطارات iframe من مصادر متعددة تم إيقافها نهائيًا وستتم إزالتها في المستقبل."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DataUrlInSvgUse": {
"message": "تم بشكل نهائي إيقاف استخدام عناوين URL التي تبدأ بمخطّط \"data:\" في واجهة SVGUseElement، وستتم إزالة هذه الميزة في المستقبل."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOrigin": {
"message": "لم يعد getCurrentPosition() وwatchPosition() متوافقين مع المصادر غير الآمنة. لاستخدام هذه الميزة، ننصحك بنقل تطبيقك إلى مصدر آمن مثل HTTPS. لمعرفة مزيد من التفاصيل، يُرجى الاطّلاع على https://goo.gle/chrome-insecure-origins."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOriginDeprecatedNotRemoved": {
"message": "تم إيقاف الإجراءين getCurrentPosition() وwatchPosition() نهائيًا على المصادر غير الآمنة. لاستخدام هذه الميزة، يجب مراعاة نقل تطبيقك إلى مصدر آمن مثل HTTPS. لمعرفة مزيد من التفاصيل، يُرجى الاطّلاع على https://goo.gle/chrome-insecure-origins."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GetUserMediaInsecureOrigin": {
"message": "لم يعد getUserMedia() متوافق مع المصادر غير الآمنة. لاستخدام هذه الميزة، ننصحك بنقل تطبيقك إلى مصدر آمن مثل HTTPS. لمعرفة مزيد من التفاصيل، يُرجى الاطّلاع على https://goo.gle/chrome-insecure-origins."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | HostCandidateAttributeGetter": {
"message": "تم إيقاف RTCPeerConnectionIceErrorEvent.hostCandidate نهائيًا. يُرجى استخدام RTCPeerConnectionIceErrorEvent.address أو RTCPeerConnectionIceErrorEvent.port بدلاً منها."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IdentityInCanMakePaymentEvent": {
"message": "إنّ أصل التاجر والبيانات العشوائية من حدث مشغّل الخدمات في canmakepayment تم إيقافهما نهائيًا وستتم إزالتهما: topOrigin وpaymentRequestOrigin وmethodData وmodifiers."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InsecurePrivateNetworkSubresourceRequest": {
"message": "طلب الموقع الإلكتروني مصدرًا فرعيًا من شبكة يمكن الوصول إليه من خلال الموقع الإلكتروني فقط بسبب موضع مستخدميه المميّز على الشبكة. تكشف هذه الطلبات الأجهزة والخوادم الخاصة على الإنترنت، ما يزيد من خطر تزوير الطلب من موقع إلكتروني مختلف (CSRF) و/أو تسرُّب المعلومات. وللحدِّ من هذه المخاطر، أوقف Chrome نهائيًا طلبات الوصول إلى مصادر فرعية خاصة، وذلك عند تقديمها من خلال سياقات غير آمنة، وسيبدأ في حظرها."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InterestGroupDailyUpdateUrl": {
"message": "تمت إعادة تسمية الحقل dailyUpdateUrl في InterestGroups الذي تم تمريره إلى joinAdInterestGroup() ليصبح updateUrl لكي يوضّح اسم الحقل سلوكه بدقة أكبر."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IntlV8BreakIterator": {
"message": "تم إيقاف Intl.v8BreakIterator نهائيًا. يُرجى استخدام Intl.Segmenter بدلاً منها."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LocalCSSFileExtensionRejected": {
"message": "لا يمكن تحميل صفحات الأنماط المتتالية (CSS) من عناوين URL للملفات file: ما لم تنتهِ الملفات بالامتداد .css."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceAbortRemove": {
"message": "تم بشكل نهائي إيقاف ميزة استخدام SourceBuffer.abort() لإلغاء إزالة النطاق غير المتزامن للإجراء remove() بسبب تغيُّر المواصفات. ستتم إزالة الميزة في المستقبل. وعليك معالجة الحدث updateend بدلاً من ذلك. يهدف الإجراء abort() فقط إلى إلغاء إمكانية إلحاق الوسائط غير المتزامنة أو إعادة ضبط حالة المحلِّل."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceDurationTruncatingBuffered": {
"message": "تم بشكل نهائي إيقاف إمكانية ضبط السمة MediaSource.duration على قيمة أقل من الحد الأقصى للطابع الزمني المخصَّص لعرض أي إطارات تم ترميزها وتخزينها مؤقتًا بسبب تغيُّر المواصفات. إنّ الإزالة الضمنية للوسائط المُقتطَعة التي تم تخزينها مؤقتًا لن تكون متاحة في المستقبل. وبدلاً من ذلك، يجب تطبيق الوظيفة remove(newDuration, oldDuration) بشكل واضح على جميع واجهات برمجة التطبيقات sourceBuffers التي تتوفّر بها newDuration < oldDuration."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NoSysexWebMIDIWithoutPermission": {
"message": "ستطلب واجهة برمجة التطبيقات Web MIDI إذنًا للاستخدام حتى في حال عدم تحديد رسائل النظام الحصرية (Sysex) في MIDIOptions."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationInsecureOrigin": {
"message": "قد يتوقف استخدام Notification API من مصادر غير آمنة. عليك نقل تطبيقك إلى مصدر آمن، مثل HTTPS. لمزيد من التفاصيل، يُرجى الاطّلاع على https://goo.gle/chrome-insecure-origins."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationPermissionRequestedIframe": {
"message": "قد تتوقّف إمكانية طلب إذن لواجهة برمجة التطبيقات Notification API من أحد إطارات iframe من مصادر متعددة. عليك طلب الإذن من إطارٍ عالٍ المستوى أو فتح نافذة جديدة بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteCreateImageBitmapImageOrientationNone": {
"message": "تم إيقاف الخيار \"imageOrientation: 'none'\" في createImageBitmap. يُرجى استخدام createImageBitmap مع الخيار \\\\{imageOrientation: 'from-image'\\\\} بدلاً منه."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteWebRtcCipherSuite": {
"message": "يتفاوض شريكك لاستخدام إصدار (D) القديم من بروتوكول أمان طبقة النقل (TLS). يُرجى التحقّق من الأمر مع شريكك لحلّ هذه المشكلة."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | OverflowVisibleOnReplacedElement": {
"message": "في حال تحديد القيمة \"overflow: visible\" ضمن علامات img وvideo وcanvas، قد يُعرَض محتوى مرئي خارج حدود العنصر. يُرجى الاطّلاع على https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | OverrideFlashEmbedwithHTML": {
"message": "تمت إعادة كتابة فيديو Flash القديم إلى العنصر HTML iframe. تم إيقاف Flash نهائيًا منذ فترة طويلة، كما تم نهائيًا إيقاف هذا الحل البديل لإعادة الكتابة وقد تتم إزالته في المستقبل."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentInstruments": {
"message": "تم إيقاف paymentManager.instruments نهائيًا. بدلاً من ذلك، يُرجى استخدام ميزة \"التثبيت في وقت التشغيل\" (JIT) مع تطبيقات معالجة الدفع."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentRequestCSPViolation": {
"message": "تجاوز طلب البيانات من واجهة برمجة التطبيقات PaymentRequest التوجيه connect-src في Content-Security-Policy (سياسة أمان المحتوى). تم إيقاف هذا التجاوز نهائيًا. يُرجى إضافة معرِّف طريقة الدفع من واجهة برمجة التطبيقات PaymentRequest (في حقل supportedMethods) إلى توجيه connect-src في سياسة أمان المحتوى (CSP)."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PersistentQuotaType": {
"message": "تم إيقاف StorageType.persistent نهائيًا. يُرجى استخدام navigator.storage الموحّدة بدلاً منها."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PictureSourceSrc": {
"message": "إنّ استخدام العنصر <source src> مع العنصر الرئيسي <picture> غير صالح، وبالتالي سيتم تجاهله. يُرجى استخدام السمة <source srcset> بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedCancelAnimationFrame": {
"message": "إنّ طريقة webkitCancelAnimationFrame مخصّصة للمورّدين. يُرجى استخدام طريقة cancelAnimationFrame العادية بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedRequestAnimationFrame": {
"message": "إنّ طريقة webkitRequestAnimationFrame مخصّصة للمورّدين. يُرجى استخدام طريقة requestAnimationFrame العادية بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoDisplayingFullscreen": {
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitDisplayingFullscreen نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Document.fullscreenElement بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullScreen": {
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitEnterFullscreen() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Element.requestFullscreen() بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullscreen": {
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitEnterFullscreen() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Element.requestFullscreen() بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullScreen": {
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitExitFullscreen() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Document.exitFullscreen() بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullscreen": {
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitExitFullscreen() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Document.exitFullscreen() بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoSupportsFullscreen": {
"message": "تم إيقاف واجهة برمجة التطبيقات HTMLVideoElement.webkitSupportsFullscreen نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Document.fullscreenEnabled بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrivacySandboxExtensionsAPI": {
"message": "سيتم إيقاف واجهة برمجة التطبيقات chrome.privacy.websites.privacySandboxEnabled نهائيًا، علمًا بأنّها ستظل نشطة للتوافق مع الأنظمة القديمة إلى أن يتم طرح الإصدار الرئيسي M113. بدلاً من هذه الواجهة، يُرجى استخدام واجهات برمجة التطبيقات chrome.privacy.websites.topicsEnabled وchrome.privacy.websites.fledgeEnabled وchrome.privacy.websites.adMeasurementEnabled. لمعرفة مزيد من المعلومات، يمكنك الانتقال إلى https://developer.chrome.com/docs/extensions/reference/privacy/#property-websites-privacySandboxEnabled."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpFalse": {
"message": "تمت إزالة القيد DtlsSrtpKeyAgreement. لقد حدَّدت القيمة false لهذا القيد، ويشير ذلك إلى محاولة لاستخدام الميزة SDES key negotiation التي تمت إزالتها. لقد تمت إزالة هذه الميزة. وبدلاً منها، يمكنك استخدام إحدى الخدمات التي تتوفّر فيها الميزة DTLS key negotiation."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpTrue": {
"message": "تمت إزالة القيد DtlsSrtpKeyAgreement. لقد حدَّدت القيمة true لهذا القيد، وهو أمر ليس له أي تأثير. وفي جميع الأحوال، يمكنك إزالة هذا القيد بغرض التنظيم."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCPeerConnectionGetStatsLegacyNonCompliant": {
"message": "تم إيقاف الطريقة getStats() المستنِدة إلى معاودة الاتصال نهائيًا وستتم إزالتها. يُرجى استخدام الطريقة getStats() المتوافقة مع المواصفات بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RangeExpand": {
"message": "تم إيقاف واجهة برمجة التطبيقات Range.expand() نهائيًا. يُرجى استخدام واجهة برمجة التطبيقات Select.modify() بدلاً من ذلك."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RequestedSubresourceWithEmbeddedCredentials": {
"message": "يتم حظر طلبات المصادر الفرعية التي تتضمّن عناوين URL الخاصة بها بيانات اعتماد مُضمَّنة (مثل https://user:pass@host/)."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RtcpMuxPolicyNegotiate": {
"message": "تم إيقاف الخيار rtcpMuxPolicy نهائيًا وستتم إزالته."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | SharedArrayBufferConstructedWithoutIsolation": {
"message": "سيطلب الكائن SharedArrayBuffer حظر الوصول من نطاقات أخرى. لمعرفة مزيد من التفاصيل، يُرجى الاطّلاع على https://developer.chrome.com/blog/enabling-shared-array-buffer/."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | TextToSpeech_DisallowedByAutoplay": {
"message": "إنّ ميزة تنفيذ الإجراء speechSynthesis.speak() بدون تفعيل المستخدِم متوقفة نهائيًا وستتم إزالتها."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | UnloadHandler": {
"message": "تم نهائيًا إيقاف أدوات معالجة الأحداث التي تم إلغاء تحميلها، وستتم إزالتها."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
"message": "يجب أن تستخدم الإضافات ميزة حظر الوصول من نطاقات أخرى لمواصلة استخدام الكائن SharedArrayBuffer. يُرجى الاطّلاع على https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XHRJSONEncodingDetection": {
"message": "لا يتوفّر الترميز UTF-16 من خلال استجابة json في واجهة برمجة التطبيقات XMLHttpRequest."
},
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
"message": "واجهة XMLHttpRequest المتزامنة في سلسلة التعليمات الرئيسية متوقفة نهائيًا بسبب تأثيراتها الضارة في تجربة المستخدِم النهائي. للحصول على مزيد من المساعدة، يُرجى الاطّلاع على https://xhr.spec.whatwg.org/."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | animation": {
"message": "صورة متحركة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | description": {
"message": "تحدث تغييرات التصميم عندما تتحرك العناصر بدون أي تدخُّل من المستخدم. [يجب التحقق من أسباب تغييرات التصميم](https://web.dev/articles/optimize-cls)، مثل إضافة عناصر أو إزالتها أو تغيير خطوطها أثناء تحميل الصفحة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | injectedIframe": {
"message": "إطار iframe الذي تم إدخاله"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | layoutShiftCluster": {
"message": "وقت بدء مجموعة متغيّرات التصميم: {PH1}"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | noCulprits": {
"message": "تعذَّر رصد أي أسباب لتغييرات التصميم"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | noLayoutShifts": {
"message": "ما مِن تغييرات في التصميم"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | title": {
"message": "أسباب تغييرات التصميم"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | topCulprits": {
"message": "أهم أسباب تغييرات التصميم"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | unsizedImage": {
"message": "عنصر صورة بلا حجم محدَّد"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | webFont": {
"message": "الخط المستخدم على موقع ويب"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | worstCluster": {
"message": "أسوأ مجموعة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | worstLayoutShiftCluster": {
"message": "أسوأ مجموعة لمتغيّرات التصميم"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/Cache.js | cacheTTL": {
"message": "مدة البقاء (TTL) في ذاكرة التخزين المؤقت"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/Cache.js | description": {
"message": "يمكن لفترة التخزين المؤقت الطويلة زيادة سرعة الزيارات المتكررة إلى صفحتك. [مزيد من المعلومات](https://web.dev/uses-long-cache-ttl/)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/Cache.js | noRequestsToCache": {
"message": "ما مِن طلبات تتضمّن سياسات ذاكرة تخزين مؤقت غير فعّالة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/Cache.js | others": {
"message": "عدد العناصر المتبقية: {PH1}"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/Cache.js | requestColumn": {
"message": "طلب"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/Cache.js | title": {
"message": "استخدام فترات التخزين المؤقت الفعّالة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | description": {
"message": "إنّ الحجم الكبير لنموذج العناصر في المستند (DOM) يمكن أن يؤدي إلى زيادة مدة عمليات احتساب الأنماط وإعادة تدفق التنسيقات، ما يؤثر في سرعة استجابة الصفحة. وسيزيد هذا الحجم الكبير أيضًا من استخدام الذاكرة. [التعرّف على كيفية تجنُّب زيادة حجم DOM](https://developer.chrome.com/docs/lighthouse/performance/dom-size/)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | duration": {
"message": "المدة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | element": {
"message": "العنصر"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | largeLayout": {
"message": "التصميم (عدد العناصر :{PH1})"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | largeStyleRecalc": {
"message": "إعادة حساب الأنماط (عدد العناصر: {PH1})"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | maxChildren": {
"message": "الحد الأقصى للعناصر الفرعية"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | maxDOMDepth": {
"message": "الحد الأقصى للعناصر المضمّنة في DOM"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | statistic": {
"message": "الإحصاءات"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | title": {
"message": "تحسين حجم عناصر DOM"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | topUpdatesDescription": {
"message": "هذه هي أكبر عمليات إعادة التصميم وإعادة حساب الأنماط. ويمكن تقليل تأثيرها في الأداء من خلال تبسيط نموذج DOM."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | totalElements": {
"message": "إجمالي العناصر"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DOMSize.js | value": {
"message": "القيمة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | description": {
"message": "طلب الشبكة الأول هو الأهم. يمكنك تقليل وقت الاستجابة للطلب عن طريق تجنُّب عمليات إعادة التوجيه وضمان استجابة الخادم بسرعة وتفعيل ميزة ضغط النص."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedRedirects": {
"message": "تضمَّن الطلب عمليات إعادة توجيه (عدد عمليات إعادة التوجيه: {PH1}، ومدتها {PH2}+)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedServerResponseTime": {
"message": "استجابة الخادم كانت بطيئة (المدة المرصودة: {PH1})"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | failedTextCompression": {
"message": "لم يتمّ تطبيق أي ضغط"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingRedirects": {
"message": "يتجنّب هذا الطلب عمليات إعادة التوجيه"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingServerResponseTime": {
"message": "يستجيب الخادم بسرعة (المدة المرصودة: {PH1})"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | passingTextCompression": {
"message": "تمّ تطبيق ضغط النص"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | redirectsLabel": {
"message": "عمليات إعادة التوجيه"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | serverResponseTimeLabel": {
"message": "مدة استجابة الخادم"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | title": {
"message": "وقت الاستجابة لطلب المستند"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | uncompressedDownload": {
"message": "عملية تنزيل غير مضغوطة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DuplicatedJavaScript.js | columnDuplicatedBytes": {
"message": "وحدات البايت المكرّرة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DuplicatedJavaScript.js | columnSource": {
"message": "المصدر"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DuplicatedJavaScript.js | description": {
"message": "يمكنك إزالة وحدات JavaScript الكبيرة المكرّرة من الحِزم لتقليل وحدات البايت غير الضرورية التي يستهلكها نشاط الشبكة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/DuplicatedJavaScript.js | title": {
"message": "مصادر JavaScript المكرّرة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | description": {
"message": "يمكنك ضبط [font-display](https://developer.chrome.com/blog/font-display) على swap أو optional لضمان ظهور النص بشكل ثابت. ويمكن تحسين swap بشكل أكبر للتخفيف من تغييرات التصميم باستخدام [إجراءات تجاوز مقاييس الخطوط](https://developer.chrome.com/blog/font-fallbacks)."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | fontColumn": {
"message": "الخط"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | title": {
"message": "عرض الخط"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | wastedTimeColumn": {
"message": "الوقت الضائع"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | anonymous": {
"message": "(مجهولة)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | description": {
"message": "تتم إعادة ترتيب المحتوى عندما تطلب JavaScript سمات هندسية (مثل offsetWidth) بعد أن يتم تغيير الأنماط بسبب تعديل في حالة DOM. وقد يؤدي ذلك إلى ضعف الأداء. يمكنك التعرّف على مزيد من المعلومات حول [إعادة ترتيب المحتوى](https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing#avoid-forced-synchronous-layouts) والحلول المتاحة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | relatedStackTrace": {
"message": "تتبُّع تسلسل استدعاء الدوال البرمجية"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | title": {
"message": "إعادة التدفق الإلزامية"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | topTimeConsumingFunctionCall": {
"message": "استدعاء الدالة الأكثر شيوعًا"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | totalReflowTime": {
"message": "إجمالي مدة إعادة التدفق"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | unattributed": {
"message": "[نص غير منسوب لأي جهة]"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/INPBreakdown.js | description": {
"message": "ابدأ بالتحقيق في المهام الفرعية الأطول. [يمكن تقليل التأخيرات](https://web.dev/articles/optimize-inp#optimize_interactions). ولخفض مدة المعالجة، [يجب تحسين تكاليف سلسلة التعليمات الرئيسية](https://web.dev/articles/optimize-long-tasks)، والتي تكون في الغالب بيانات JavaScript."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/INPBreakdown.js | duration": {
"message": "المدة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/INPBreakdown.js | inputDelay": {
"message": "تأخير عملية الإدخال"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/INPBreakdown.js | noInteractions": {
"message": "لم يتم رصد أي تفاعلات"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/INPBreakdown.js | presentationDelay": {
"message": "تأخير العرض"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/INPBreakdown.js | processingDuration": {
"message": "مدة المعالجة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/INPBreakdown.js | subpart": {
"message": "جزء فرعي"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/INPBreakdown.js | title": {
"message": "تفاصيل مدى استجابة الصفحة لتفاعلات المستخدم (INP)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | description": {
"message": "يمكن أن يؤدي تقليل وقت تنزيل الصور إلى تحسين مدّة التحميل المتوقعة للصفحة، بالإضافة إلى تحسين سرعة عرض أكبر محتوى مرئي. [مزيد من المعلومات حول تحسين حجم الصورة](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | estimatedSavings": {
"message": "{PH1} (الحجم المقدَّر: {PH2})"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | noOptimizableImages": {
"message": "ما مِن صور يمكن تحسينها"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | optimizeFile": {
"message": "تحسين حجم الملف"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | others": {
"message": "عدد العناصر المتبقية: {PH1}"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | title": {
"message": "تحسين عرض الصور"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useCompression": {
"message": "يمكن أن يؤدي زيادة عامل ضغط الصورة إلى تحسين حجم تنزيلها."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useModernFormat": {
"message": "يمكن تحسين حجم تنزيل هذه الصورة باستخدام تنسيق صور حديث (مثل WebP أو AVIF) أو زيادة ضغط الصورة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useResponsiveSize": {
"message": "حجم ملف الصورة هذا أكبر من الحجم المطلوب ({PH1}) لأبعادها المعروضة ({PH2}). يُرجى استخدام الصور المتجاوبة مع مختلف الأجهزة لتقليل حجم تنزيل الصورة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useVideoFormat": {
"message": "إنّ استخدام تنسيقات الفيديو بدلاً من ملفات GIF يمكن أن يؤدي إلى تحسين حجم تنزيل المحتوى المتحرك."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | description": {
"message": "لكل [جزء فرعي استراتيجيات تحسين محدَّدة](https://web.dev/articles/optimize-lcp#lcp-breakdown). ومن الأفضل أن يتم قضاء معظم زمن عرض أكبر محتوى مرئي (LCP) في تحميل الموارد، وليس في التأخير."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | duration": {
"message": "المدة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | elementRenderDelay": {
"message": "مهلة عرض العناصر"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | fieldDuration": {
"message": "الشريحة المئوية الـ 75 من بيانات تجارب المستخدمِين الحقيقيين"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | noLcp": {
"message": "لم يتم رصد أي مقياس لسرعة عرض أكبر محتوى مرئي (LCP)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | resourceLoadDelay": {
"message": "مهلة تحميل الموارد"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | resourceLoadDuration": {
"message": "مدة تحميل المصدر"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | subpart": {
"message": "جزء فرعي"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | timeToFirstByte": {
"message": "مدة تحميل أول بايت"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPBreakdown.js | title": {
"message": "تفاصيل سرعة عرض أكبر محتوى مرئي (LCP)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | description": {
"message": "يمكنك تحسين مقياس سرعة عرض أكبر محتوى مرئي (LCP) من خلال جعل صورة مقياس LCP [قابلة للاكتشاف](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) من HTML على الفور، و[تجنُّب التحميل الكسول](https://web.dev/articles/lcp-lazy-loading)."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityApplied": {
"message": "تم تطبيق السمة fetchpriority=high"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | fetchPriorityShouldBeApplied": {
"message": "يجب تطبيق القيمة fetchpriority=high"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lazyLoadNotApplied": {
"message": "لم يتم تطبيق طريقة \"التحميل الكسول\""
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | lcpLoadDelay": {
"message": "تم تحميل الصورة الخاصة بمقياس \"سرعة عرض أكبر محتوى مرئي\" (LCP) بعد {PH1} من نقطة البداية الأقدم."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | noLcp": {
"message": "لم يتم رصد أي مقياس لسرعة عرض أكبر محتوى مرئي (LCP)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | noLcpResource": {
"message": "لم يتم العثور على أي مصدر لسرعة عرض أكبر محتوى مرئي على الصفحة لأنّه ليس صورة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | requestDiscoverable": {
"message": "الطلب قابل للاكتشاف في المستند الأوّلي"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPDiscovery.js | title": {
"message": "الاطّلاع على طلبات LCP"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LegacyJavaScript.js | columnScript": {
"message": "النص البرمجي"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LegacyJavaScript.js | columnWastedBytes": {
"message": "وحدات البايت المُهدرة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LegacyJavaScript.js | description": {
"message": "تساعد الرموز البرمجية polyfill وtransform المتصفّحات القديمة في استخدام ميزات JavaScript الجديدة. ومع ذلك، يكون العديد منها غير ضروري للمتصفّحات الحديثة. من الأفضل تعديل عملية تصميم رموز JavaScript لتجنُّب تحويل رموز ميزات [Baseline](https://web.dev/articles/baseline-and-polyfills)، إلّا إذا كان من الضروري التوافق مع المتصفِّحات القديمة. [التعرُّف على سبب إمكانية نشر معظم المواقع الإلكترونية لرمز ES6+ بدون تحويله](https://philipwalton.com/articles/the-state-of-es5-on-the-web/)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/LegacyJavaScript.js | title": {
"message": "ميزات JavaScript القديمة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ModernHTTP.js | description": {
"message": "يوفِّر البروتوكولان HTTP/2 وHTTP/3 العديد من المزايا أكثر من بروتوكول HTTP/1.1، مثل الإرسال المتعدّد. [مزيد من المعلومات حول استخدام HTTP الحديث](https://developer.chrome.com/docs/lighthouse/best-practices/uses-http2/)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ModernHTTP.js | noOldProtocolRequests": {
"message": "لم يتم استخدام HTTP/1.1 في أي طلب، أو أنّ استخدامه الحالي لا يمثل فرصة كبيرة للتحسين. يتم وضع علامة على طلبات HTTP/1.1 فقط إذا كانت ستة أو أكثر من مواد العرض الثابتة تأتي من المصدر نفسه، ولم يتم عرضها من بيئة تطوير محلية أو مصدر تابع لجهة خارجية."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ModernHTTP.js | protocol": {
"message": "البروتوكول"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ModernHTTP.js | request": {
"message": "طلب"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ModernHTTP.js | title": {
"message": "بروتوكول HTTP الحديث"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | columnOrigin": {
"message": "المصدر"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | columnRequest": {
"message": "طلب"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | columnSource": {
"message": "المصدر"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | columnTime": {
"message": "الوقت"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | columnWastedMs": {
"message": "التوفير المقدَّر في سرعة عرض أكبر محتوى مرئي (LCP)"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | crossoriginWarning": {
"message": "تمت إضافة اتصال مُسبَق لمصادر غير مستخدَمة. يُرجى التحقّق من استخدام السمة crossorigin بشكل صحيح."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | description": {
"message": "يُمكن [تجنُّب تقييد الطلبات المهمة](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains) عن طريق تقليل طول السلاسل أو تقليل حجم تنزيل الموارد أو تأجيل تنزيل الموارد غير الضرورية لتحسين تحميل الصفحة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | estSavingTableDescription": {
"message": "يمكنك إضافة إشارات [preconnect](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preconnect/) إلى أهم مصادرك، ولكن يُرجى محاولة استخدام 4 إشارات كحدّ أقصى."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | estSavingTableTitle": {
"message": "المصادر المُرشَّحة للاتصال المُسبَق"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | maxCriticalPathLatency": {
"message": "الحد الأقصى لوقت استجابة سلسلة الطلبات المُهمّة:"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | noNetworkDependencyTree": {
"message": "ما مِن مهام عرض متأثرة بطلبات اعتمادية الشبكة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | noPreconnectCandidates": {
"message": "ما مِن مصادر إضافية مناسبة للاتصال المُسبَق"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | noPreconnectOrigins": {
"message": "لم يتم إنشاء اتصال مُسبَق لأي مصادر"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | preconnectOriginsTableDescription": {
"message": "تساعد إشارات [preconnect](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preconnect/) المتصفّح على إنشاء اتصال قبل تحميل الصفحة، ما يوفِّر الوقت عند إرسال أول طلب إلى مصدر المحتوى هذا. في ما يلي المصادر التي تم إنشاء اتصال مُسبَق بها على الصفحة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | preconnectOriginsTableTitle": {
"message": "المصادر المتصلة مُسبَقًا"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | title": {
"message": "شجرة اعتمادية الشبكة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | tooManyPreconnectLinksWarning": {
"message": "تم العثور على أكثر من 4 روابط preconnect. يُنصح بعدم استخدام هذه الروابط بشكل كبير واقتصارها على المصادر الأكثر أهمية فقط."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | unusedWarning": {
"message": "تمت إضافة اتصال مُسبَق لمصادر غير مستخدَمة. يجب استخدام preconnect فقط للمصادر التي من المرجح أن تطلبها الصفحة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | warningDescription": {
"message": "يُمكن تجنُّب تقييد الطلبات المهمة عن طريق تقليل طول السلاسل أو تقليل حجم تنزيل الموارد أو تأجيل تنزيل الموارد غير الضرورية لتحسين تحميل الصفحة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | description": {
"message": "تؤدي الطلبات إلى حظر العرض الأوّلي للصفحة، ما قد يُبطئ سرعة عرض أكبر محتوى مرئي (LCP). ويمكن [تأجيل هذه الطلبات](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources) أو تضمينها لإخراجها من المسار الحرج."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | duration": {
"message": "المدة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | noRenderBlocking": {
"message": "لم يتم حظر أي طلبات لعرض إطار التنقّل هذا"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | renderBlockingRequest": {
"message": "طلب الشبكة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | title": {
"message": "طلبات حظر العرض"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | description": {
"message": "إذا ظلت تكاليف ميزة \"إعادة احتساب النمط\" مرتفعة، يمكن أن يؤدي تحسين أداة الاختيار إلى خفضها. يمكنك [تحسين أدوات الاختيار](https://developer.chrome.com/docs/devtools/performance/selector-stats) من خلال زيادة الوقت المنقضي وزيادة النسبة المئوية للمسار البطيء. وسيؤدي استخدام أدوات الاختيار الأبسط وعدد أدوات الاختيار الأقل ونموذج DOM الأصغر ونموذج DOM الأقل تعقيدًا إلى تقليل تكاليف المطابقة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | elapsed": {
"message": "الوقت المنقضي"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | enableSelectorData": {
"message": "لم يتم العثور على أي بيانات لأدوات اختيار لغة CSS. يجب تفعيل إحصاءات أداة اختيار لغة CSS في إعدادات لوحة الأداء."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | matchAttempts": {
"message": "عدد محاولات المطابقة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | matchCount": {
"message": "عدد العناصر المطابِقة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | title": {
"message": "تكاليف أداة اختيار لغة CSS"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | topSelectorElapsedTime": {
"message": "أكثر أداة اختيار استغرقت وقتًا في المطابقة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | topSelectorMatchAttempt": {
"message": "أبرز محاولة لمطابقة أداة الاختيار"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | topSelectors": {
"message": "أدوات الاختيار الأعلى استهلاكًا للوقت والجهد"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/SlowCSSSelector.js | total": {
"message": "الإجمالي"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnMainThreadTime": {
"message": "وقت سلسلة المحادثات الأساسية"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnThirdParty": {
"message": "الجهة الخارجية"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnTransferSize": {
"message": "حجم عملية النقل"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | description": {
"message": "يمكن أن يؤثر الرمز البرمجي الخارجي بشكل كبير في أداء التحميل. [يمكنك تقليل وتأجيل تحميل الرموز البرمجية الخارجية](https://web.dev/articles/optimizing-content-efficiency-loading-third-party-javascript/)، ومنح الأولوية لمحتوى صفحتك."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | noThirdParties": {
"message": "لم يتم العثور على أي محتوى خارجي"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | title": {
"message": "الجهات الخارجية"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | description": {
"message": "قد يتم [تأخير الاستجابة لتفاعلات النقر بمقدار 300 ملي ثانية كحد أقصى](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/) إذا لم يتم تحسين إطار العرض للأجهزة الجوّالة."
},
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | mobileTapDelayLabel": {
"message": "مدة تأخير الاستجابة للنقر على الأجهزة الجوّالة"
},
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | title": {
"message": "تحسين إطار العرض للأجهزة الجوّالة"
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPMethodNotGET": {
"message": "الصفحات فقط التي تم تحميلها من خلال طلب استرداد بيانات باستخدام GET يمكن حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPStatusNotOK": {
"message": "لا يمكن إجراء تخزين مؤقت إلا للصفحات التي تتضمّن رمز الحالة 2XX."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | JavaScriptExecution": {
"message": "اكتشف Chrome محاولة لتنفيذ JavaScript أثناء التخزين المؤقت."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | appBanner": {
"message": "الصفحات التي طلبت AppBanner يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabled": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" في chrome://flags. ويمكنك الانتقال إلى الرابط chrome://flags/#back-forward-cache لتفعيلها على هذا الجهاز."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByCommandLine": {
"message": "أوقفَ سطر الأوامر ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByLowMemory": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب عدم توفّر مساحة كافية في الذاكرة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForDelegate": {
"message": "لا تتوفّر ميزة \"التخزين المؤقت للصفحات\" من خلال التفويض."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForPrerender": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" في العارض المسبق."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | broadcastChannel": {
"message": "لا يمكن تخزين الصفحة مؤقتًا لأنها تحتوي على مثال BroadcastChannel يتضمّن أدوات مسجَّلة لمعالجة الحدث."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheControlNoStore": {
"message": "الصفحات التي تحتوي على عنوان cache-control:no-store يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheFlushed": {
"message": "سيتم محو ذاكرة التخزين المؤقت عن قصد."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheLimit": {
"message": "تم إخراج الصفحة من ذاكرة التخزين المؤقت للسماح بالتخزين المؤقت لصفحة أخرى."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | containsPlugins": {
"message": "الصفحات التي تحتوي على مكوّنات إضافية يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentDiscarded": {
"message": "غير محدّد"
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileChooser": {
"message": "الصفحات التي تستخدِم FileChooser API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileSystemAccess": {
"message": "الصفحات التي تستخدِم File System Access API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaDevicesDispatcherHost": {
"message": "الصفحات التي تستخدِم أداة Media Device Dispatcher يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaPlay": {
"message": "كان مشغّل الوسائط قيد التشغيل عند مغادرته."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSession": {
"message": "الصفحات التي تستخدِم MediaSession API وتضبط حالة للتشغيل يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSessionService": {
"message": "الصفحات التي تستخدِم MediaSession API وتضبط معالِجات الإجراءات يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentScreenReader": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب استخدام قارئ الشاشة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSecurityHandler": {
"message": "الصفحات التي تستخدِم SecurityHandler يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSerial": {
"message": "الصفحات التي تستخدِم Serial API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebAuthenticationAPI": {
"message": "الصفحات التي تستخدِم WebAuthentication API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebBluetooth": {
"message": "الصفحات التي تستخدِم WebBluetooth API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebUSB": {
"message": "الصفحات التي تستخدِم WebUSB API يتعذّر حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cookieDisabled": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب إيقاف ملفات تعريف الارتباط على صفحة تستخدم السمة Cache-Control: no-store."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | dedicatedWorkerOrWorklet": {
"message": "الصفحات التي تستخدِم مشغّل خدمات مخصَّصًا أو وظيفة صغيرة يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | documentLoaded": {
"message": "تمت مغادرة المستند قبل أن ينتهي من التحميل."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderAppBannerManager": {
"message": "كان بانر التطبيق قيد الاستخدام أثناء مغادرة الصفحة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderChromePasswordManagerClientBindCredentialManager": {
"message": "كان مدير كلمات المرور في Chrome قيد الاستخدام أثناء مغادرة الصفحة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerSelfDeletingRequestDelegate": {
"message": "كانت عملية تصفية \"نموذج العناصر في المستند\" قيد التقدُّم أثناء مغادرة الصفحة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerViewerSource": {
"message": "كان عارض DOM Distiller Viewer قيد الاستخدام أثناء مغادرة الصفحة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessaging": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" لأنّ الإضافات تستخدم واجهة برمجة تطبيقات خدمة المراسلة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessagingForOpenPort": {
"message": "الإضافات ذات الاتصال الطويل الأمد يجب أن تُغلِق الاتصال قبل تخزينها مؤقتًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionSentMessageToCachedFrame": {
"message": "حاولت الإضافات ذات الاتصال الطويل الأمد إرسال رسائل إلى الإطارات المدرَجة في ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensions": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب استخدام الإضافات."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderModalDialog": {
"message": "تم عرض مربع حوار نمطي، مثل مربع حوار إعادة إرسال النموذج أو مربع حوار مصادقة HTTP باستخدام كلمة مرور، في الصفحة أثناء مغادرتها."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOfflinePage": {
"message": "تم عرض الصفحة المتوفّرة بلا اتصال بالإنترنت أثناء المغادرة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOomInterventionTabHelper": {
"message": "كان شريط Out-Of-Memory Intervention قيد الاستخدام أثناء مغادرة الصفحة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPermissionRequestManager": {
"message": "كانت طلبات الأذونات قيد التقدُّم أثناء مغادرة الصفحة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPopupBlockerTabHelper": {
"message": "كان حاجب النوافذ المنبثقة قيد الاستخدام أثناء مغادرة الصفحة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingThreatDetails": {
"message": "تم عرض تفاصيل \"التصفُّح الآمن\" أثناء مغادرة الصفحة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingTriggeredPopupBlocker": {
"message": "رصدت ميزة \"التصفُّح الآمن\" أنّ هذه الصفحة تتضمن محتوى مسيئًا وحظرت نافذة منبثقة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
"message": "تم تفعيل مشغّل خدمات أثناء إدراج الصفحة في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | errorDocument": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب خطأ في المستند."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | fencedFramesEmbedder": {
"message": "لا يمكن تخزين الصفحات التي تستخدم الإطار FencedFrames من خلال ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | foregroundCacheLimit": {
"message": "تم إخراج الصفحة من ذاكرة التخزين المؤقت للسماح بالتخزين المؤقت لصفحة أخرى."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | grantedMediaStreamAccess": {
"message": "الصفحات التي سمحت بالوصول إلى محتوى بث الوسائط يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | haveInnerContents": {
"message": "الصفحات التي تحتوي على أنواع معيّنة من المحتوى المضمّن (مثل ملفات PDF) غير مؤهَّلة حاليًا لاستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | idleManager": {
"message": "الصفحات التي تستخدِم IdleManager يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBConnection": {
"message": "الصفحات التي تحتوي على اتصال مفتوح لقاعدة بيانات مفهرسة يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBEvent": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب حدث في IndexedDB."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | ineligibleAPI": {
"message": "تم استخدام واجهات غير مؤهَّلة لبرمجة التطبيقات."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedJavascript": {
"message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" حاليًا لتخزين الصفحات التي تم إدخال JavaScript فيها من خلال الإضافات."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedStyleSheet": {
"message": "لا يمكن استخدام ميزة \"التخزين المؤقت للصفحات\" حاليًا لتخزين الصفحات التي تم إدخال StyleSheet فيها من خلال الإضافات."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | internalError": {
"message": "حدث خطأ داخلي."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | jsNetworkRequestReceivedCacheControlNoStoreResource": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" لأنّ بعض طلبات شبكة JavaScript تلقّت موردًا يحمل العنوان Cache-Control: no-store."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keepaliveRequest": {
"message": "تم إيقاف ميزة \"التخزين المؤقت للصفحات\" بسبب طلب رسالة التحقّق من الاتصال."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keyboardLock": {
"message": "الصفحات التي تستخدِم قفل لوحة المفاتيح يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | loading": {
"message": "تمت مغادرة الصفحة قبل أن تنتهي من التحميل."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoCache": {
"message": "الصفحات التي يحتوي موردها الرئيسي على cache-control:no-cache يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoStore": {
"message": "الصفحات التي يحتوي موردها الرئيسي على cache-control:no-store يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | navigationCancelledWhileRestoring": {
"message": "تم إلغاء التنقّل قبل أن تتم استعادة الصفحة من خلال ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkExceedsBufferLimit": {
"message": "تم إخراج الصفحة من ذاكرة التخزين المؤقت لأنّ الاتصال النشط بالشبكة تلقّى الكثير من البيانات، علمًا بأنّ Chrome يقيّد مقدار البيانات التي قد تتلقّاها الصفحة أثناء تخزينها مؤقتًا."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
"message": "الصفحات التي تستخدِم XHR أو fetch() قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestRedirected": {
"message": "تم إخراج الصفحة من ذاكرة \"التخزين المؤقت للصفحات\" لأنّ أحد طلبات الشبكة النشطة تضمَّن إعادة توجيه."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestTimeout": {
"message": "تم إخراج الصفحة من ذاكرة التخزين المؤقت لأنّ الاتصال بالشبكة كان مفتوحًا لفترة طويلة جدًا، علمًا بأنّ Chrome يقيّد مقدار الوقت الذي قد تتلقّى خلاله الصفحة البيانات أثناء تخزينها مؤقتًا."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | noResponseHead": {
"message": "الصفحات التي لا تحتوي على عنوان استجابة صالح يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | notMainFrame": {
"message": "حدث التنقُّل في إطار غير الإطار الرئيسي."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingIndexedDBTransaction": {
"message": "الصفحات التي تتضمّن عمليات جارية لقاعدة البيانات المُفهرَسة يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestDirectSocket": {
"message": "الصفحات التي تستخدِم طلب شبكة قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestFetch": {
"message": "الصفحات التي تستخدِم طلب شبكة fetch قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestOthers": {
"message": "الصفحات التي تستخدِم طلب شبكة قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestXHR": {
"message": "الصفحات التي تستخدِم طلب شبكة XHR قيد التقدّم يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | paymentManager": {
"message": "الصفحات التي تستخدِم PaymentManager يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | pictureInPicture": {
"message": "الصفحات التي تستخدِم ميزة \"نافذة ضمن النافذة\" يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | printing": {
"message": "الصفحات التي تعرض \"واجهة مستخدم الطباعة\" يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | relatedActiveContentsExist": {
"message": "تم فتح الصفحة باستخدام \"window.open()\" وعلامة تبويب أخرى بها مرجع إليها، أو أنّ الصفحة فتحت نافذة."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessCrashed": {
"message": "تعطّلت عملية العرض للصفحة خلال \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessKilled": {
"message": "تم إنهاء عملية العرض للصفحة خلال \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedAudioCapturePermission": {
"message": "الصفحات التي طلبت أذونات تسجيل الصوت يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackForwardCacheBlockedSensors": {
"message": "الصفحات التي طلبت أذونات جهاز الاستشعار يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackgroundWorkPermission": {
"message": "الصفحات التي طلبت أذونات الاسترجاع أو المزامنة في الخلفية يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedMIDIPermission": {
"message": "الصفحات التي طلبت أذونات الوصول إلى أجهزة MIDI يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedNotificationsPermission": {
"message": "الصفحات التي طلبت أذونات الإشعارات يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedStorageAccessGrant": {
"message": "الصفحات التي طلبت الوصول إلى مساحة التخزين يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedVideoCapturePermission": {
"message": "الصفحات التي طلبت أذونات تسجيل الفيديو يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | schemeNotHTTPOrHTTPS": {
"message": "لا يمكن إجراء تخزين مؤقت إلا للصفحات التي يكون مخطَّط URL فيها هو HTTP/HTTPS."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerClaim": {
"message": "استدعى مشغّل الخدمات الصفحة أثناء محاولة حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerPostMessage": {
"message": "حاول مشغّل خدمات إرسال MessageEvent إلى الصفحة في ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerUnregistration": {
"message": "تم إلغاء تسجيل ServiceWorkers أثناء إدراج الصفحة في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerVersionActivation": {
"message": "تم إخراج الصفحة من \"التخزين المؤقت للصفحات\" بسبب تنشيط مشغّل الخدمات."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sessionRestored": {
"message": "تمت إعادة تشغيل Chrome الذي محا إدخالات ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sharedWorker": {
"message": "الصفحات التي تستخدِم SharedWorker يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sharedWorkerMessage": {
"message": "تم حذف الصفحة من ذاكرة التخزين المؤقت لأنّها تلقّت رسالة من SharedWorker"
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechRecognizer": {
"message": "الصفحات التي تستخدِم SpeechRecognizer يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechSynthesis": {
"message": "الصفحات التي تستخدِم SpeechSynthesis يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subframeIsNavigating": {
"message": "بدأ إطار iframe على الصفحة عملية تنقُّل لم تكتمل."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoCache": {
"message": "الصفحات التي يحتوي موردها الفرعي على cache-control:no-cache يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoStore": {
"message": "الصفحات التي يحتوي موردها الفرعي على cache-control:no-store يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeout": {
"message": "تجاوزت الصفحة الحدّ الأقصى للوقت أثناء حفظها باستخدام ميزة \"التخزين المؤقت للصفحات\" وانتهت صلاحيتها."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeoutPuttingInCache": {
"message": "انتهت مهلة إدراج الصفحة في \"التخزين المؤقت للصفحات\" (قد يرجع ذلك إلى معالِجات إخفاء الصفحات التي تستغرق مدة زمنية طويلة)."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInMainFrame": {
"message": "تحتوي الصفحة على معالج لإلغاء التحميل في الإطار الرئيسي."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInSubFrame": {
"message": "تحتوي الصفحة على معالِج لإلغاء التحميل في إطار فرعي."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | userAgentOverrideDiffers": {
"message": "غيَّر المتصفّح عنوان تجاوز وكيل المستخدم."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | wasGrantedMediaAccess": {
"message": "الصفحات التي سمحت بتسجيل فيديو أو صوت يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webDatabase": {
"message": "الصفحات التي تستخدِم WebDatabase يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webHID": {
"message": "الصفحات التي تستخدِم WebHID يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webLocks": {
"message": "الصفحات التي تستخدِم WebLocks يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webNfc": {
"message": "الصفحات التي تستخدِم WebNfc يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webOTPService": {
"message": "الصفحات التي تستخدِم خدمة WebOTPService يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
"message": "الصفحات التي تحتوي على WebRTC يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
"message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعَّلة بسبب استخدام WebRTC."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
"message": "الصفحات التي تستخدِم WebShare يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
"message": "الصفحات التي تحتوي على WebSocket يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
"message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعّلة بسبب استخدام WebSocket."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
"message": "الصفحات التي تحتوي على WebTransport يتعذّر إدراجها في \"التخزين المؤقت للصفحات\"."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
"message": "ميزة \"التخزين المؤقت للصفحات\" غير مفعَّلة بسبب استخدام WebTransport."
},
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
"message": "الصفحات التي تستخدِم WebXR يتعذّر حفظها حاليًا باستخدام ميزة \"التخزين المؤقت للصفحات\"."
},
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
"message": "For animated content, use [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) to minimize CPU usage when the content is offscreen."
},
"node_modules/lighthouse-stack-packs/packs/amp.js | modern-image-formats": {
"message": "Consider displaying all [`amp-img`](https://amp.dev/documentation/components/amp-img/?format=websites) components in WebP formats while specifying an appropriate fallback for other browsers. [Learn more](https://amp.dev/documentation/components/amp-img/#example:-specifying-a-fallback-image)."
},
"node_modules/lighthouse-stack-packs/packs/amp.js | offscreen-images": {
"message": "Ensure that you are using [`amp-img`](https://amp.dev/documentation/components/amp-img/?format=websites) for images to automatically lazy-load. [Learn more](https://amp.dev/documentation/guides-and-tutorials/develop/media_iframes_3p/?format=websites#images)."
},
"node_modules/lighthouse-stack-packs/packs/amp.js | render-blocking-resources": {
"message": "Use tools such as [AMP Optimizer](https://github.com/ampproject/amp-toolbox/tree/master/packages/optimizer) to [server-side render AMP layouts](https://amp.dev/documentation/guides-and-tutorials/optimize-and-measure/server-side-rendering/)."
},
"node_modules/lighthouse-stack-packs/packs/amp.js | unminified-css": {
"message": "Refer to the [AMP documentation](https://amp.dev/documentation/guides-and-tutorials/develop/style_and_layout/style_pages/) to ensure all styles are supported."
},
"node_modules/lighthouse-stack-packs/packs/amp.js | uses-responsive-images": {
"message": "The [`amp-img`](https://amp.dev/documentation/components/amp-img/?format=websites) component supports the [`srcset`](https://web.dev/use-srcset-to-automatically-choose-the-right-image/) attribute to specify which image assets to use based on the screen size. [Learn more](https://amp.dev/documentation/guides-and-tutorials/develop/style_and_layout/art_direction/)."
},
"node_modules/lighthouse-stack-packs/packs/angular.js | dom-size": {
"message": "Consider virtual scrolling with the Component Dev Kit (CDK) if very large lists are being rendered. [Learn more](https://web.dev/virtualize-lists-with-angular-cdk/)."
},
"node_modules/lighthouse-stack-packs/packs/angular.js | total-byte-weight": {
"message": "Apply [route-level code splitting](https://web.dev/route-level-code-splitting-in-angular/) to minimize the size of your JavaScript bundles. Also, consider precaching assets with the [Angular service worker](https://web.dev/precaching-with-the-angular-service-worker/)."
},
"node_modules/lighthouse-stack-packs/packs/angular.js | unminified-warning": {
"message": "If you are using Angular CLI, ensure that builds are generated in production mode. [Learn more](https://angular.io/guide/deployment#enable-runtime-production-mode)."
},
"node_modules/lighthouse-stack-packs/packs/angular.js | unused-javascript": {
"message": "If you are using Angular CLI, include source maps in your production build to inspect your bundles. [Learn more](https://angular.io/guide/deployment#inspect-the-bundles)."
},
"node_modules/lighthouse-stack-packs/packs/angular.js | uses-rel-preload": {
"message": "Preload routes ahead of time to speed up navigation. [Learn more](https://web.dev/route-preloading-in-angular/)."
},
"node_modules/lighthouse-stack-packs/packs/angular.js | uses-responsive-images": {
"message": "Consider using the `BreakpointObserver` utility in the Component Dev Kit (CDK) to manage image breakpoints. [Learn more](https://material.angular.io/cdk/layout/overview)."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | efficient-animated-content": {
"message": "Consider uploading your `GIF` to a service which will make it available to embed as an HTML5 video."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | modern-image-formats": {
"message": "Consider configuring [WebP image formats with a Convert image style](https://www.drupal.org/docs/core-modules-and-themes/core-modules/image-module/working-with-images#styles) on your site."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | offscreen-images": {
"message": "Consider configuring lazy load images in `Drupal`. The field formatters for images support `lazy` or `eager`."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | prioritize-lcp-image": {
"message": "If the LCP element is dynamically added to the page, you should optimize the image in order to improve LCP. [Learn more](https://www.smashingmagazine.com/2023/08/methods-improving-drupal-largest-contentful-paint-core-web-vital/)."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | redirects": {
"message": "Redirects introduce additional delays before the page can be loaded. If the [Redirect](https://www.drupal.org/project/redirect) module is installed, review if unnecessary redirects can be removed. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/redirects)."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | render-blocking-resources": {
"message": "Consider using [a module](https://www.drupal.org/project/critical_css) to inline critical CSS and JavaScript, and use the defer attribute for non-critical CSS or JavaScript."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | server-response-time": {
"message": "Offload traffic with one or more `Drupal` caching modules such as `Internal Page Cache`, `Internal Dynamic Page Cache`, and `BigPipe`. Couple these with a CDN to further improve response time. Your hosting servers should make use of PHP OPcache. Consider using memory-caching such as Redis or Memcached to reduce database query times. Lastly use performant themes, modules, and faster servers to lower server response time."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | total-byte-weight": {
"message": "Consider using [Responsive Image Styles](https://www.drupal.org/documentation/modules/responsive_image) to reduce the size of images loaded on your page. If you are using `Views` to show multiple content items on a page, consider implementing pagination to limit the number of content items shown on a given page."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-css": {
"message": "Ensure you have enabled \"Aggregate CSS files\" in the \"Administration » Configuration » Development\" page."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-javascript": {
"message": "Ensure you have enabled \"Aggregate JavaScript files\" in the \"Administration » Configuration » Development\" page."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | unused-css-rules": {
"message": "Consider removing unused CSS rules and only attach the needed `Drupal` libraries to the relevant page or component in a page. See the [`Drupal` documentation](https://www.drupal.org/docs/develop/theming-drupal/adding-assets-css-js-to-a-drupal-theme-via-librariesyml#define) for details. To identify attached libraries that are adding extraneous CSS, try running [code coverage](https://developer.chrome.com/docs/devtools/coverage) in Chrome DevTools. You can identify the theme/module responsible from the URL of the stylesheet when CSS aggregation is disabled in your `Drupal` site. Look out for themes/modules that have many stylesheets in the list which have a lot of red in code coverage. A theme/module should only attach a stylesheet library if it is actually used on the page."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | unused-javascript": {
"message": "Consider removing unused JavaScript assets and only attach the needed `Drupal` libraries to the relevant page or component in a page. See the [Drupal documentation](https://www.drupal.org/docs/develop/theming-drupal/adding-assets-css-js-to-a-drupal-theme-via-librariesyml#define) for details. To identify attached libraries that are adding extraneous JavaScript, try running [code coverage](https://developer.chrome.com/docs/devtools/coverage) in Chrome DevTools. You can identify the theme/module responsible from the URL of the script when JavaScript aggregation is disabled in your `Drupal` site. Look out for themes/modules that have many scripts in the list which have a lot of red in code coverage. A theme/module should only attach a script library if it is actually used on the page."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-long-cache-ttl": {
"message": "Set the \"Browser and proxy cache maximum age\" in the \"Administration » Configuration » Development\" page. Read about [`Drupal` cache and optimizing for performance](https://www.drupal.org/docs/8/api/cache-api/cache-api)."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-optimized-images": {
"message": "Consider using [a module](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A123&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=image&solrsort=iss_project_release_usage+desc&op=Search) that automatically optimizes and reduces the size of images uploaded through the site while retaining quality. Also, ensure you are using the native [Responsive Image Styles](https://www.drupal.org/documentation/modules/responsive_image) provided from `Drupal` for all images rendered on the site."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-rel-preconnect": {
"message": "`Preconnect` or `dns-prefetch` resource hints can be added by installing and configuring [a module](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=Preconnect&solrsort=score+desc&op=Search) that provides facilities for user agent resource hints."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-responsive-images": {
"message": "Ensure that you are using the native [Responsive Image Styles](https://www.drupal.org/documentation/modules/responsive_image) provided from `Drupal`. Use the Responsive Image Styles when rendering image fields through view modes, views, or images uploaded through the WYSIWYG editor."
},
"node_modules/lighthouse-stack-packs/packs/drupal.js | uses-text-compression": {
"message": "Text-based resources should be served with compression (gzip, deflate or brotli) to minimize total network bytes. Consider using a CDN that natively supports this, or configure the web server to perform this operation. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/text-compression)."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | font-display": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Optimize Fonts` to automatically leverage the `font-display` CSS feature to ensure text is user-visible while webfonts are loading."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | modern-image-formats": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Next-Gen Formats` to convert images to WebP."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | offscreen-images": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Lazy Load Images` to defer loading off-screen images until they are needed."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | render-blocking-resources": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Critical CSS` and `Script Delay` to defer non-critical JS/CSS."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | server-response-time": {
"message": "Use [Ezoic Cloud Caching](https://pubdash.ezoic.com/speed/caching) to cache your content across our world wide network, improving time to first byte."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | unminified-css": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Minify CSS` to automatically minify your CSS to reduce network payload sizes."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | unminified-javascript": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Minify Javascript` to automatically minify your JS to reduce network payload sizes."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | unused-css-rules": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Remove Unused CSS` to help with this issue. It will identify the CSS classes that are actually used on each page of your site, and remove any others to keep the file size small."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-long-cache-ttl": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Efficient Static Cache Policy` to set recommended values in the caching header for static assests."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-optimized-images": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Next-Gen Formats` to convert images to WebP."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-rel-preconnect": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Pre-Connect Origins` to automatically add `preconnect` resource hints to establish early connections to important third-party origins."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-rel-preload": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Preload Fonts` and `Preload Background Images` to add `preload` links to prioritize fetching resources that are currently requested later in page load."
},
"node_modules/lighthouse-stack-packs/packs/ezoic.js | uses-responsive-images": {
"message": "Use [Ezoic Leap](https://pubdash.ezoic.com/speed) and enable `Resize Images` to resize images to a device appropriate size, reducing network payload sizes."
},
"node_modules/lighthouse-stack-packs/packs/gatsby.js | modern-image-formats": {
"message": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically optimize image format. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
},
"node_modules/lighthouse-stack-packs/packs/gatsby.js | offscreen-images": {
"message": "Use the `gatsby-plugin-image` component instead of `<img>` to automatically lazy-load images. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
},
"node_modules/lighthouse-stack-packs/packs/gatsby.js | prioritize-lcp-image": {
"message": "Use the `gatsby-plugin-image` component and set the `loading` prop to `eager`. [Learn more](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-plugin-image#shared-props)."
},
"node_modules/lighthouse-stack-packs/packs/gatsby.js | render-blocking-resources": {
"message": "Use the `Gatsby Script API` to defer loading of non-critical third-party scripts. [Learn more](https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-script/)."
},
"node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-css-rules": {
"message": "Use the `PurgeCSS` `Gatsby` plugin to remove unused rules from stylesheets. [Learn more](https://purgecss.com/plugins/gatsby.html)."
},
"node_modules/lighthouse-stack-packs/packs/gatsby.js | unused-javascript": {
"message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn more](https://www.gatsbyjs.com/plugins/gatsby-plugin-webpack-bundle-analyser-v2/)"
},
"node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-long-cache-ttl": {
"message": "Configure caching for immutable assets. [Learn more](https://www.gatsbyjs.com/docs/how-to/previews-deploys-hosting/caching/)."
},
"node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-optimized-images": {
"message": "Use the `gatsby-plugin-image` component instead of `<img>` to adjust image quality. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
},
"node_modules/lighthouse-stack-packs/packs/gatsby.js | uses-responsive-images": {
"message": "Use the `gatsby-plugin-image` component to set appropriate `sizes`. [Learn more](https://www.gatsbyjs.com/docs/how-to/images-and-media/using-gatsby-plugin-image)."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | efficient-animated-content": {
"message": "Consider uploading your GIF to a service which will make it available to embed as an HTML5 video."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | modern-image-formats": {
"message": "Consider using a [plugin](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=webp) or service that will automatically convert your uploaded images to the optimal formats."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | offscreen-images": {
"message": "Install a [lazy-load Joomla plugin](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=lazy%20loading) that provides the ability to defer any offscreen images, or switch to a template that provides that functionality. Starting with Joomla 4.0, all new images will [automatically](https://github.com/joomla/joomla-cms/pull/30748) get the `loading` attribute from the core."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | render-blocking-resources": {
"message": "There are a number of Joomla plugins that can help you [inline critical assets](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance) or [defer less important resources](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance). Beware that optimizations provided by these plugins may break features of your templates or plugins, so you will need to test these thoroughly."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | server-response-time": {
"message": "Templates, extensions, and server specifications all contribute to server response time. Consider finding a more optimized template, carefully selecting an optimization extension, and/or upgrading your server."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | total-byte-weight": {
"message": "Consider showing excerpts in your article categories (e.g. via the read more link), reducing the number of articles shown on a given page, breaking your long posts into multiple pages, or using a plugin to lazy-load comments."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | unminified-css": {
"message": "A number of [Joomla extensions](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance) can speed up your site by concatenating, minifying, and compressing your css styles. There are also templates that provide this functionality."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | unminified-javascript": {
"message": "A number of [Joomla extensions](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance) can speed up your site by concatenating, minifying, and compressing your scripts. There are also templates that provide this functionality."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | unused-css-rules": {
"message": "Consider reducing, or switching, the number of [Joomla extensions](https://extensions.joomla.org/) loading unused CSS in your page. To identify extensions that are adding extraneous CSS, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the theme/plugin responsible from the URL of the stylesheet. Look out for plugins that have many stylesheets in the list which have a lot of red in code coverage. A plugin should only enqueue a stylesheet if it is actually used on the page."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | unused-javascript": {
"message": "Consider reducing, or switching, the number of [Joomla extensions](https://extensions.joomla.org/) loading unused JavaScript in your page. To identify plugins that are adding extraneous JS, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the extension responsible from the URL of the script. Look out for extensions that have many scripts in the list which have a lot of red in code coverage. An extension should only enqueue a script if it is actually used on the page."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | uses-long-cache-ttl": {
"message": "Read about [Browser Caching in Joomla](https://docs.joomla.org/Cache)."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | uses-optimized-images": {
"message": "Consider using an [image optimization plugin](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=performance) that compresses your images while retaining quality."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | uses-responsive-images": {
"message": "Consider using a [responsive images plugin](https://extensions.joomla.org/instant-search/?jed_live%5Bquery%5D=responsive%20images) to use responsive images in your content."
},
"node_modules/lighthouse-stack-packs/packs/joomla.js | uses-text-compression": {
"message": "You can enable text compression by enabling Gzip Page Compression in Joomla (System > Global configuration > Server)."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | critical-request-chains": {
"message": "If you are not bundling your JavaScript assets, consider using [baler](https://github.com/magento/baler)."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | disable-bundling": {
"message": "Disable Magento's built-in [JavaScript bundling and minification](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/themes/js-bundling.html), and consider using [baler](https://github.com/magento/baler/) instead."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | font-display": {
"message": "Specify `@font-display` when [defining custom fonts](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/css-topics/using-fonts.html)."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | modern-image-formats": {
"message": "Consider searching the [Magento Marketplace](https://marketplace.magento.com/catalogsearch/result/?q=webp) for a variety of third-party extensions to leverage newer image formats."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | offscreen-images": {
"message": "Consider modifying your product and catalog templates to make use of the web platform's [lazy loading](https://web.dev/native-lazy-loading) feature."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | server-response-time": {
"message": "Use Magento's [Varnish integration](https://devdocs.magento.com/guides/v2.3/config-guide/varnish/config-varnish.html)."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | unminified-css": {
"message": "Enable the \"Minify CSS Files\" option in your store's Developer settings. [Learn more](https://devdocs.magento.com/guides/v2.3/performance-best-practices/configuration.html?itm_source=devdocs&itm_medium=search_page&itm_campaign=federated_search&itm_term=minify%20css%20files)."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | unminified-javascript": {
"message": "Use [Terser](https://www.npmjs.com/package/terser) to minify all JavaScript assets from static content deployment, and disable the built-in minification feature."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | unused-javascript": {
"message": "Disable Magento's built-in [JavaScript bundling](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/themes/js-bundling.html)."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-optimized-images": {
"message": "Consider searching the [Magento Marketplace](https://marketplace.magento.com/catalogsearch/result/?q=optimize%20image) for a variety of third party extensions to optimize images."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-rel-preconnect": {
"message": "Preconnect or dns-prefetch resource hints can be added by [modifying a themes's layout](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
},
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-rel-preload": {
"message": "`<link rel=preload>` tags can be added by [modifying a themes's layout](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
"message": "Use the `next/image` component instead of `<img>` to automatically optimize image format. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
"message": "Use the `next/image` component instead of `<img>` to automatically lazy-load images. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | prioritize-lcp-image": {
"message": "Use the `next/image` component and set \"priority\" to true to preload LCP image. [Learn more](https://nextjs.org/docs/api-reference/next/image#priority)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | render-blocking-resources": {
"message": "Use the `next/script` component to defer loading of non-critical third-party scripts. [Learn more](https://nextjs.org/docs/basic-features/script)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | unsized-images": {
"message": "Use the `next/image` component to make sure images are always sized appropriately. [Learn more](https://nextjs.org/docs/api-reference/next/image#width)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | unused-css-rules": {
"message": "Consider setting up `PurgeCSS` in `Next.js` configuration to remove unused rules from stylesheets. [Learn more](https://purgecss.com/guides/next.html)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
"message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn more](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
},
"node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
"message": "Consider using `Next.js Analytics` to measure your app's real-world performance. [Learn more](https://nextjs.org/docs/advanced-features/measuring-performance)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | uses-long-cache-ttl": {
"message": "Configure caching for immutable assets and `Server-side Rendered` (SSR) pages. [Learn more](https://nextjs.org/docs/going-to-production#caching)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
"message": "Use the `next/image` component instead of `<img>` to adjust image quality. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
"message": "Use the `next/image` component to set the appropriate `sizes`. [Learn more](https://nextjs.org/docs/api-reference/next/image#sizes)."
},
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
"message": "Enable compression on your Next.js server. [Learn more](https://nextjs.org/docs/api-reference/next.config.js/compression)."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | dom-size": {
"message": "Contact your account manager to enable [`HTML Lazy Load`](https://support.nitropack.io/hc/en-us/articles/17144942904337). Configuring it will prioritize and optimize your page rendering performance."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | font-display": {
"message": "Use the [`Override Font Rendering Behavior`](https://support.nitropack.io/hc/en-us/articles/16547358865041) option in NitroPack to set a desired value for the CSS font-display rule."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | modern-image-formats": {
"message": "Use [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/16547237162513) to automatically convert your images to WebP."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | offscreen-images": {
"message": "Defer offscreen images by enabling [`Automatic Image Lazy Loading`](https://support.nitropack.io/hc/en-us/articles/12457493524369-NitroPack-Lazy-Loading-Feature-for-Images)."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | render-blocking-resources": {
"message": "Enable [`Remove render-blocking resources`](https://support.nitropack.io/hc/en-us/articles/13820893500049-How-to-Deal-with-Render-Blocking-Resources-in-NitroPack) in NitroPack for faster initial load times."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-css": {
"message": "Enable [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) in your Caching settings to reduce the size of your CSS, HTML, and JavaScript files for faster load times."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-javascript": {
"message": "Enable [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) in your Caching settings to reduce the size of your JS, HTML, and CSS files for faster load times."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-css-rules": {
"message": "Enable [`Reduce Unused CSS`](https://support.nitropack.io/hc/en-us/articles/360020418457-Reduce-Unused-CSS) to remove CSS rules that are not applicable to this page."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-javascript": {
"message": "Configure [`Delayed Scripts`](https://support.nitropack.io/hc/en-us/articles/1500002600942-Delayed-Scripts) in NitroPack to delay loading of scripts until they are needed."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-long-cache-ttl": {
"message": "Go to the [`Improve Server Response Time`](https://support.nitropack.io/hc/en-us/articles/1500002321821-Improve-Server-Response-Time) feature in the `Caching` menu and adjust your page cache expiration time to improve loading times and user experience."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-optimized-images": {
"message": "Automatically compress, optimize, and convert your images into WebP by enabling the [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/14177271695121-How-to-serve-images-in-next-gen-formats-using-NitroPack) setting."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-responsive-images": {
"message": "Enable [`Adaptive Image Sizing`](https://support.nitropack.io/hc/en-us/articles/10123833029905-How-to-Enable-Adaptive-Image-Sizing-For-Your-Site) to preemptively optimize your images and make them match the dimensions of the containers theyre displayed in across all devices."
},
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-text-compression": {
"message": "Use [`Gzip compression`](https://support.nitropack.io/hc/en-us/articles/13229297479313-Enabling-GZIP-compression) in NitroPack to reduce the size of the files that are sent to the browser."
},
"node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
"message": "Use the `nuxt/image` component and set `format=\"webp\"`. [Learn more](https://image.nuxt.com/usage/nuxt-img#format)."
},
"node_modules/lighthouse-stack-packs/packs/nuxt.js | offscreen-images": {
"message": "Use the `nuxt/image` component and set `loading=\"lazy\"` for offscreen images. [Learn more](https://image.nuxt.com/usage/nuxt-img#loading)."
},
"node_modules/lighthouse-stack-packs/packs/nuxt.js | prioritize-lcp-image": {
"message": "Use the `nuxt/image` component and specify `preload` for LCP image. [Learn more](https://image.nuxt.com/usage/nuxt-img#preload)."
},
"node_modules/lighthouse-stack-packs/packs/nuxt.js | unsized-images": {
"message": "Use the `nuxt/image` component and specify explicit `width` and `height`. [Learn more](https://image.nuxt.com/usage/nuxt-img#width-height)."
},
"node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-optimized-images": {
"message": "Use the `nuxt/image` component and set the appropriate `quality`. [Learn more](https://image.nuxt.com/usage/nuxt-img#quality)."
},
"node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-responsive-images": {
"message": "Use the `nuxt/image` component and set the appropriate `sizes`. [Learn more](https://image.nuxt.com/usage/nuxt-img#sizes)."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
"message": "[Replace animated GIFs with video](https://web.dev/replace-gifs-with-videos/) for faster web page loads and consider using modern file formats such as [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) or [AV1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder) to improve compression efficiency by greater than 30% over the current state-of-the-art video codec, VP9."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | modern-image-formats": {
"message": "Consider using a [plugin](https://octobercms.com/plugins?search=image) or service that will automatically convert the uploaded images to the optimal formats. [WebP lossless images](https://developers.google.com/speed/webp) are 26% smaller in size compared to PNGs and 25-34% smaller than comparable JPEG images at the equivalent SSIM quality index. Another next-gen image format to consider is [AVIF](https://jakearchibald.com/2020/avif-has-landed/)."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | offscreen-images": {
"message": "Consider installing an [image lazy loading plugin](https://octobercms.com/plugins?search=lazy) that provides the ability to defer any offscreen images, or switch to a theme that provides that functionality. Also consider using [the AMP plugin](https://octobercms.com/plugins?search=Accelerated+Mobile+Pages)."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | render-blocking-resources": {
"message": "There are many plugins that help [inline critical assets](https://octobercms.com/plugins?search=css). These plugins may break other plugins, so you should test thoroughly."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | server-response-time": {
"message": "Themes, plugins and server specifications all contribute to the server response time. Consider finding a more optimized theme, carefully selecting an optimization plugin and/or upgrade the server. October CMS also allows developers to use [`Queues`](https://octobercms.com/docs/services/queues) to defer the processing of a time consuming task, such as sending an e-mail. This drastically speeds up web requests."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | total-byte-weight": {
"message": "Consider showing excerpts in the post lists (e.g. using a `show more` button), reducing the number of posts shown on a given web page, breaking long posts into multiple web pages, or using a plugin to lazy-load comments."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | unminified-css": {
"message": "There are many [plugins](https://octobercms.com/plugins?search=css) that can speed up a website by concatenating, minifying and compressing the styles. Using a build process to do this minification up-front can speed up development."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | unminified-javascript": {
"message": "There are many [plugins](https://octobercms.com/plugins?search=javascript) that can speed up a website by concatenating, minifying and compressing the scripts. Using a build process to do this minification up-front can speed up development."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | unused-css-rules": {
"message": "Consider reviewing the [plugins](https://octobercms.com/plugins) loading unused CSS on the website. To identify plugins that add unnecessary CSS, run [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. Identify the theme/plugin responsible from the stylesheet URL. Look for plugins with many stylesheets with lots of red in code coverage. A plugin should only add a stylesheet if it is actually used on the web page."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | unused-javascript": {
"message": "Consider reviewing the [plugins](https://octobercms.com/plugins?search=javascript) that load unused JavaScript in the web page. To identify plugins that add unnecessary JavaScript, run [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. Identify the theme/plugin responsible from the URL of the script. Look for plugins with many scripts with lots of red in code coverage. A plugin should only add a script if it is actually used on the web page."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | uses-long-cache-ttl": {
"message": "Read about [preventing unnecessary network requests with the HTTP Cache](https://web.dev/http-cache/#caching-checklist). There are many [plugins](https://octobercms.com/plugins?search=Caching) that can be used to speed up caching."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | uses-optimized-images": {
"message": "Consider using an [image optimization plugin](https://octobercms.com/plugins?search=image) to compresses images while retaining the quality."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | uses-responsive-images": {
"message": "Upload images directly in the media manager to ensure the required image sizes are available. Consider using the [resize filter](https://octobercms.com/docs/markup/filter-resize) or an [image resizing plugin](https://octobercms.com/plugins?search=image) to ensure the optimal image sizes are used."
},
"node_modules/lighthouse-stack-packs/packs/octobercms.js | uses-text-compression": {
"message": "Enable text compression in the web server configuration."
},
"node_modules/lighthouse-stack-packs/packs/react.js | dom-size": {
"message": "Consider using a \"windowing\" library like `react-window` to minimize the number of DOM nodes created if you are rendering many repeated elements on the page. [Learn more](https://web.dev/virtualize-long-lists-react-window/). Also, minimize unnecessary re-renders using [`shouldComponentUpdate`](https://reactjs.org/docs/optimizing-performance.html#shouldcomponentupdate-in-action), [`PureComponent`](https://reactjs.org/docs/react-api.html#reactpurecomponent), or [`React.memo`](https://reactjs.org/docs/react-api.html#reactmemo) and [skip effects](https://reactjs.org/docs/hooks-effect.html#tip-optimizing-performance-by-skipping-effects) only until certain dependencies have changed if you are using the `Effect` hook to improve runtime performance."
},
"node_modules/lighthouse-stack-packs/packs/react.js | redirects": {
"message": "If you are using React Router, minimize usage of the `<Redirect>` component for [route navigations](https://reacttraining.com/react-router/web/api/Redirect)."
},
"node_modules/lighthouse-stack-packs/packs/react.js | server-response-time": {
"message": "If you are server-side rendering any React components, consider using `renderToPipeableStream()` or `renderToStaticNodeStream()` to allow the client to receive and hydrate different parts of the markup instead of all at once. [Learn more](https://reactjs.org/docs/react-dom-server.html#renderToPipeableStream)."
},
"node_modules/lighthouse-stack-packs/packs/react.js | unminified-css": {
"message": "If your build system minifies CSS files automatically, ensure that you are deploying the production build of your application. You can check this with the React Developer Tools extension. [Learn more](https://reactjs.org/docs/optimizing-performance.html#use-the-production-build)."
},
"node_modules/lighthouse-stack-packs/packs/react.js | unminified-javascript": {
"message": "If your build system minifies JS files automatically, ensure that you are deploying the production build of your application. You can check this with the React Developer Tools extension. [Learn more](https://reactjs.org/docs/optimizing-performance.html#use-the-production-build)."
},
"node_modules/lighthouse-stack-packs/packs/react.js | unused-javascript": {
"message": "If you are not server-side rendering, [split your JavaScript bundles](https://web.dev/code-splitting-suspense/) with `React.lazy()`. Otherwise, code-split using a third-party library such as [loadable-components](https://www.smooth-code.com/open-source/loadable-components/docs/getting-started/)."
},
"node_modules/lighthouse-stack-packs/packs/react.js | user-timings": {
"message": "Use the React DevTools Profiler, which makes use of the Profiler API, to measure the rendering performance of your components. [Learn more.](https://reactjs.org/blog/2018/09/10/introducing-the-react-profiler.html)"
},
"node_modules/lighthouse-stack-packs/packs/wix.js | efficient-animated-content": {
"message": "Place videos inside `VideoBoxes`, customize them using `Video Masks` or add `Transparent Videos`. [Learn more](https://support.wix.com/en/article/wix-video-about-wix-video)."
},
"node_modules/lighthouse-stack-packs/packs/wix.js | modern-image-formats": {
"message": "Upload images using `Wix Media Manager` to ensure they are automatically served as WebP. Find [more ways to optimize](https://support.wix.com/en/article/site-performance-optimizing-your-media) your site's media."
},
"node_modules/lighthouse-stack-packs/packs/wix.js | render-blocking-resources": {
"message": "When [adding third-party code](https://support.wix.com/en/article/site-performance-using-third-party-code-on-your-site) in the `Custom Code` tab of your site's dashboard, make sure it's deferred or loaded at the end of the code body. Where possible, use Wixs [integrations](https://support.wix.com/en/article/about-marketing-integrations) to embed marketing tools on your site. "
},
"node_modules/lighthouse-stack-packs/packs/wix.js | server-response-time": {
"message": "Wix utilizes CDNs and caching to serve responses as fast as possible for most visitors. Consider [manually enabling caching](https://support.wix.com/en/article/site-performance-caching-pages-to-optimize-loading-speed) for your site, especially if using `Velo`."
},
"node_modules/lighthouse-stack-packs/packs/wix.js | unused-javascript": {
"message": "Review any third-party code you've added to your site in the `Custom Code` tab of your site's dashboard and only keep the services that are necessary to your site. [Find out more](https://support.wix.com/en/article/site-performance-removing-unused-javascript)."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | efficient-animated-content": {
"message": "Consider uploading your GIF to a service which will make it available to embed as an HTML5 video."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | modern-image-formats": {
"message": "Consider using the [Performance Lab](https://wordpress.org/plugins/performance-lab/) plugin to automatically convert your uploaded JPEG images into WebP, wherever supported."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | offscreen-images": {
"message": "Install a [lazy-load WordPress plugin](https://wordpress.org/plugins/search/lazy+load/) that provides the ability to defer any offscreen images, or switch to a theme that provides that functionality. Also consider using [the AMP plugin](https://wordpress.org/plugins/amp/)."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | render-blocking-resources": {
"message": "There are a number of WordPress plugins that can help you [inline critical assets](https://wordpress.org/plugins/search/critical+css/) or [defer less important resources](https://wordpress.org/plugins/search/defer+css+javascript/). Beware that optimizations provided by these plugins may break features of your theme or plugins, so you will likely need to make code changes."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | server-response-time": {
"message": "Choose a lightweight theme (ideally a block theme) and implement full-page caching or a static site solution. Disable unnecessary plugins to minimize server overhead. Consider upgrading your hosting to managed or dedicated service."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | total-byte-weight": {
"message": "Consider showing excerpts in your post lists (e.g. via the more tag), reducing the number of posts shown on a given page, breaking your long posts into multiple pages, or using a plugin to lazy-load comments."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unminified-css": {
"message": "A number of [WordPress plugins](https://wordpress.org/plugins/search/minify+css/) can speed up your site by concatenating, minifying, and compressing your styles. You may also want to use a build process to do this minification up-front if possible."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unminified-javascript": {
"message": "A number of [WordPress plugins](https://wordpress.org/plugins/search/minify+javascript/) can speed up your site by concatenating, minifying, and compressing your scripts. You may also want to use a build process to do this minification up front if possible."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unused-css-rules": {
"message": "Consider reducing, or switching, the number of [WordPress plugins](https://wordpress.org/plugins/) loading unused CSS in your page. To identify plugins that are adding extraneous CSS, try running [code coverage](https://developer.chrome.com/docs/devtools/coverage/) in Chrome DevTools. You can identify the theme/plugin responsible from the URL of the stylesheet. Look out for plugins that have many stylesheets in the list which have a lot of red in code coverage. A plugin should only enqueue a stylesheet if it is actually used on the page."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | unused-javascript": {
"message": "Consider reducing, or switching, the number of [WordPress plugins](https://wordpress.org/plugins/) loading unused JavaScript in your page. To identify plugins that are adding extraneous JS, try running [code coverage](https://developer.chrome.com/docs/devtools/coverage/) in Chrome DevTools. You can identify the theme/plugin responsible from the URL of the script. Look out for plugins that have many scripts in the list which have a lot of red in code coverage. A plugin should only enqueue a script if it is actually used on the page."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-long-cache-ttl": {
"message": "Read about [Browser Caching in WordPress](https://wordpress.org/support/article/optimization/#browser-caching)."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-optimized-images": {
"message": "Consider using an [image optimization WordPress plugin](https://wordpress.org/plugins/search/optimize+images/) that compresses your images while retaining quality."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-responsive-images": {
"message": "Upload images directly through the [media library](https://wordpress.org/support/article/media-library-screen/) to ensure that the required image sizes are available, and then insert them from the media library or use the image widget to ensure the optimal image sizes are used (including those for the responsive breakpoints). Avoid using `Full Size` images unless the dimensions are adequate for their usage. [Learn More](https://wordpress.org/support/article/inserting-images-into-posts-and-pages/)."
},
"node_modules/lighthouse-stack-packs/packs/wordpress.js | uses-text-compression": {
"message": "You can enable text compression in your web server configuration."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | modern-image-formats": {
"message": "Enable 'Imagify' from the Image Optimization tab in 'WP Rocket' to convert your images to WebP."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | offscreen-images": {
"message": "Enable [LazyLoad](https://docs.wp-rocket.me/article/1141-lazyload-for-images) in WP Rocket to fix this recommendation. This feature delays the loading of the images until the visitor scrolls down the page and actually needs to see them."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | render-blocking-resources": {
"message": "Enable [Remove Unused CSS](https://docs.wp-rocket.me/article/1529-remove-unused-css) and [Load JavaScript deferred](https://docs.wp-rocket.me/article/1265-load-javascript-deferred) in 'WP Rocket' to address this recommendation. These features will respectively optimize the CSS and JavaScript files so that they don't block the rendering of your page."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | unminified-css": {
"message": "Enable [Minify CSS files](https://docs.wp-rocket.me/article/1350-css-minify-combine) in 'WP Rocket' to fix this issue. Any spaces and comments in your site's CSS files will be removed to make the file size smaller and faster to download."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | unminified-javascript": {
"message": "Enable [Minify JavaScript files](https://docs.wp-rocket.me/article/1351-javascript-minify-combine) in 'WP Rocket' to fix this issue. Empty spaces and comments will be removed from JavaScript files to make their size smaller and faster to download."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | unused-css-rules": {
"message": "Enable [Remove Unused CSS](https://docs.wp-rocket.me/article/1529-remove-unused-css) in 'WP Rocket' to fix this issue. It reduces page size by removing all CSS and stylesheets that are not used while keeping only the used CSS for each page."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | unused-javascript": {
"message": "Enable [Delay JavaScript execution](https://docs.wp-rocket.me/article/1349-delay-javascript-execution) in 'WP Rocket' to fix this problem. It will improve the loading of your page by delaying the execution of scripts until user interaction. If your site has iframes, you can use WP Rocket's [LazyLoad for iframes and videos](https://docs.wp-rocket.me/article/1674-lazyload-for-iframes-and-videos) and [Replace YouTube iframe with preview image](https://docs.wp-rocket.me/article/1488-replace-youtube-iframe-with-preview-image) as well."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | uses-optimized-images": {
"message": "Enable 'Imagify' from the Image Optimization tab in 'WP Rocket' and run Bulk Optimization to compress your images."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | uses-rel-preconnect": {
"message": "Use [Prefetch DNS Requests](https://docs.wp-rocket.me/article/1302-prefetch-dns-requests) in 'WP Rocket' to add \"dns-prefetch\" and speed up the connection with external domains. Also, 'WP Rocket' automatically adds \"preconnect\" to [Google Fonts domain](https://docs.wp-rocket.me/article/1312-optimize-google-fonts) and any CNAME(S) added via the [Enable CDN](https://docs.wp-rocket.me/article/42-using-wp-rocket-with-a-cdn) feature."
},
"node_modules/lighthouse-stack-packs/packs/wp-rocket.js | uses-rel-preload": {
"message": "To fix this issue for fonts, enable [Remove Unused CSS](https://docs.wp-rocket.me/article/1529-remove-unused-css) in 'WP Rocket'. Your site's critical fonts will be preloaded with priority."
},
"report/renderer/report-utils.js | calculatorLink": {
"message": "See calculator."
},
"report/renderer/report-utils.js | collapseView": {
"message": "Collapse view"
},
"report/renderer/report-utils.js | crcInitialNavigation": {
"message": "Initial Navigation"
},
"report/renderer/report-utils.js | crcLongestDurationLabel": {
"message": "Maximum critical path latency:"
},
"report/renderer/report-utils.js | dropdownCopyJSON": {
"message": "Copy JSON"
},
"report/renderer/report-utils.js | dropdownDarkTheme": {
"message": "Toggle Dark Theme"
},
"report/renderer/report-utils.js | dropdownPrintExpanded": {
"message": "Print Expanded"
},
"report/renderer/report-utils.js | dropdownPrintSummary": {
"message": "Print Summary"
},
"report/renderer/report-utils.js | dropdownSaveGist": {
"message": "Save as Gist"
},
"report/renderer/report-utils.js | dropdownSaveHTML": {
"message": "Save as HTML"
},
"report/renderer/report-utils.js | dropdownSaveJSON": {
"message": "Save as JSON"
},
"report/renderer/report-utils.js | dropdownViewUnthrottledTrace": {
"message": "View Unthrottled Trace"
},
"report/renderer/report-utils.js | dropdownViewer": {
"message": "Open in Viewer"
},
"report/renderer/report-utils.js | errorLabel": {
"message": "Error!"
},
"report/renderer/report-utils.js | errorMissingAuditInfo": {
"message": "Report error: no audit information"
},
"report/renderer/report-utils.js | expandView": {
"message": "Expand view"
},
"report/renderer/report-utils.js | firstPartyChipLabel": {
"message": "1st party"
},
"report/renderer/report-utils.js | footerIssue": {
"message": "File an issue"
},
"report/renderer/report-utils.js | goBackToAudits": {
"message": "Go back to audits"
},
"report/renderer/report-utils.js | hide": {
"message": "Hide"
},
"report/renderer/report-utils.js | insightsNotice": {
"message": "Later this year, insights will replace performance audits. [Learn more and provide feedback here](https://github.com/GoogleChrome/lighthouse/discussions/16462)."
},
"report/renderer/report-utils.js | labDataTitle": {
"message": "Lab Data"
},
"report/renderer/report-utils.js | lsPerformanceCategoryDescription": {
"message": "[Lighthouse](https://developers.google.com/web/tools/lighthouse/) analysis of the current page on an emulated mobile network. Values are estimated and may vary."
},
"report/renderer/report-utils.js | manualAuditsGroupTitle": {
"message": "Additional items to manually check"
},
"report/renderer/report-utils.js | notApplicableAuditsGroupTitle": {
"message": "Not applicable"
},
"report/renderer/report-utils.js | openInANewTabTooltip": {
"message": "Open in a new tab"
},
"report/renderer/report-utils.js | opportunityResourceColumnLabel": {
"message": "Opportunity"
},
"report/renderer/report-utils.js | opportunitySavingsColumnLabel": {
"message": "Estimated Savings"
},
"report/renderer/report-utils.js | passedAuditsGroupTitle": {
"message": "Passed audits"
},
"report/renderer/report-utils.js | runtimeAnalysisWindow": {
"message": "Initial page load"
},
"report/renderer/report-utils.js | runtimeAnalysisWindowSnapshot": {
"message": "Point-in-time snapshot"
},
"report/renderer/report-utils.js | runtimeAnalysisWindowTimespan": {
"message": "User interactions timespan"
},
"report/renderer/report-utils.js | runtimeCustom": {
"message": "Custom throttling"
},
"report/renderer/report-utils.js | runtimeDesktopEmulation": {
"message": "Emulated Desktop"
},
"report/renderer/report-utils.js | runtimeMobileEmulation": {
"message": "Emulated Moto G Power"
},
"report/renderer/report-utils.js | runtimeNoEmulation": {
"message": "No emulation"
},
"report/renderer/report-utils.js | runtimeSettingsAxeVersion": {
"message": "Axe version"
},
"report/renderer/report-utils.js | runtimeSettingsBenchmark": {
"message": "Unthrottled CPU/Memory Power"
},
"report/renderer/report-utils.js | runtimeSettingsCPUThrottling": {
"message": "CPU throttling"
},
"report/renderer/report-utils.js | runtimeSettingsDevice": {
"message": "Device"
},
"report/renderer/report-utils.js | runtimeSettingsNetworkThrottling": {
"message": "Network throttling"
},
"report/renderer/report-utils.js | runtimeSettingsScreenEmulation": {
"message": "Screen emulation"
},
"report/renderer/report-utils.js | runtimeSettingsUANetwork": {
"message": "User agent (network)"
},
"report/renderer/report-utils.js | runtimeSingleLoad": {
"message": "Single page session"
},
"report/renderer/report-utils.js | runtimeSingleLoadTooltip": {
"message": "This data is taken from a single page session, as opposed to field data summarizing many sessions."
},
"report/renderer/report-utils.js | runtimeSlow4g": {
"message": "Slow 4G throttling"
},
"report/renderer/report-utils.js | runtimeUnknown": {
"message": "Unknown"
},
"report/renderer/report-utils.js | show": {
"message": "Show"
},
"report/renderer/report-utils.js | showRelevantAudits": {
"message": "Show audits relevant to:"
},
"report/renderer/report-utils.js | snippetCollapseButtonLabel": {
"message": "Collapse snippet"
},
"report/renderer/report-utils.js | snippetExpandButtonLabel": {
"message": "Expand snippet"
},
"report/renderer/report-utils.js | thirdPartyResourcesLabel": {
"message": "Show 3rd-party resources"
},
"report/renderer/report-utils.js | throttlingProvided": {
"message": "Provided by environment"
},
"report/renderer/report-utils.js | toplevelWarningsMessage": {
"message": "There were issues affecting this run of Lighthouse:"
},
"report/renderer/report-utils.js | tryInsights": {
"message": "Try insights"
},
"report/renderer/report-utils.js | unattributable": {
"message": "Unattributable"
},
"report/renderer/report-utils.js | varianceDisclaimer": {
"message": "Values are estimated and may vary. The [performance score is calculated](https://developer.chrome.com/docs/lighthouse/performance/performance-scoring/) directly from these metrics."
},
"report/renderer/report-utils.js | viewTraceLabel": {
"message": "View Trace"
},
"report/renderer/report-utils.js | viewTreemapLabel": {
"message": "View Treemap"
},
"report/renderer/report-utils.js | warningAuditsGroupTitle": {
"message": "Passed audits but with warnings"
},
"report/renderer/report-utils.js | warningHeader": {
"message": "Warnings: "
},
"treemap/app/src/util.js | allLabel": {
"message": "All"
},
"treemap/app/src/util.js | allScriptsDropdownLabel": {
"message": "All scripts"
},
"treemap/app/src/util.js | coverageColumnName": {
"message": "Coverage"
},
"treemap/app/src/util.js | duplicateModulesLabel": {
"message": "Duplicate modules"
},
"treemap/app/src/util.js | duplicatedBytesLabel": {
"message": "Duplicated bytes"
},
"treemap/app/src/util.js | resourceBytesLabel": {
"message": "Resource bytes"
},
"treemap/app/src/util.js | tableColumnName": {
"message": "Name"
},
"treemap/app/src/util.js | toggleTableButtonLabel": {
"message": "Toggle table"
},
"treemap/app/src/util.js | transferBytesLabel": {
"message": "Transfer bytes"
},
"treemap/app/src/util.js | unusedBytesLabel": {
"message": "Unused bytes"
}
}