lighthouse 10.4.0-dev.20230726 → 10.4.0-dev.20230727
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/test/smokehouse/lighthouse-runners/bundle.js +1 -1
- package/core/audits/metrics/{experimental-interaction-to-next-paint.d.ts → interaction-to-next-paint.d.ts} +3 -3
- package/core/audits/metrics/{experimental-interaction-to-next-paint.js → interaction-to-next-paint.js} +3 -3
- package/core/audits/work-during-interaction.js +2 -2
- package/core/config/default-config.js +2 -2
- package/core/lib/stack-packs.js +4 -0
- package/package.json +5 -5
- package/readme.md +1 -1
- package/shared/localization/locales/ar-XB.json +0 -3
- package/shared/localization/locales/ar.json +0 -3
- package/shared/localization/locales/bg.json +0 -3
- package/shared/localization/locales/ca.json +0 -3
- package/shared/localization/locales/cs.json +0 -3
- package/shared/localization/locales/da.json +0 -3
- package/shared/localization/locales/de.json +0 -3
- package/shared/localization/locales/el.json +0 -3
- package/shared/localization/locales/en-GB.json +0 -3
- package/shared/localization/locales/en-US.json +48 -6
- package/shared/localization/locales/en-XA.json +0 -3
- package/shared/localization/locales/en-XL.json +48 -6
- package/shared/localization/locales/es-419.json +0 -3
- package/shared/localization/locales/es.json +0 -3
- package/shared/localization/locales/fi.json +0 -3
- package/shared/localization/locales/fil.json +0 -3
- package/shared/localization/locales/fr.json +0 -3
- package/shared/localization/locales/he.json +0 -3
- package/shared/localization/locales/hi.json +0 -3
- package/shared/localization/locales/hr.json +0 -3
- package/shared/localization/locales/hu.json +0 -3
- package/shared/localization/locales/id.json +0 -3
- package/shared/localization/locales/it.json +0 -3
- package/shared/localization/locales/ja.json +0 -3
- package/shared/localization/locales/ko.json +0 -3
- package/shared/localization/locales/lt.json +0 -3
- package/shared/localization/locales/lv.json +0 -3
- package/shared/localization/locales/nl.json +0 -3
- package/shared/localization/locales/no.json +0 -3
- package/shared/localization/locales/pl.json +0 -3
- package/shared/localization/locales/pt-PT.json +0 -3
- package/shared/localization/locales/pt.json +0 -3
- package/shared/localization/locales/ro.json +0 -3
- package/shared/localization/locales/ru.json +0 -3
- package/shared/localization/locales/sk.json +0 -3
- package/shared/localization/locales/sl.json +0 -3
- package/shared/localization/locales/sr-Latn.json +0 -3
- package/shared/localization/locales/sr.json +0 -3
- package/shared/localization/locales/sv.json +0 -3
- package/shared/localization/locales/ta.json +0 -3
- package/shared/localization/locales/te.json +0 -3
- package/shared/localization/locales/th.json +0 -3
- package/shared/localization/locales/tr.json +0 -3
- package/shared/localization/locales/uk.json +0 -3
- package/shared/localization/locales/vi.json +0 -3
- package/shared/localization/locales/zh-HK.json +0 -3
- package/shared/localization/locales/zh-TW.json +0 -3
- package/shared/localization/locales/zh.json +0 -3
|
@@ -82,7 +82,7 @@ async function runBundledLighthouse(url, config, testRunnerOptions) {
|
|
|
82
82
|
const logLevel = testRunnerOptions.isDebug ? 'verbose' : 'info';
|
|
83
83
|
|
|
84
84
|
// Puppeteer is not included in the bundle, we must create the page here.
|
|
85
|
-
const browser = await puppeteer.connect({browserURL: `http://
|
|
85
|
+
const browser = await puppeteer.connect({browserURL: `http://127.0.0.1:${port}`});
|
|
86
86
|
const page = await browser.newPage();
|
|
87
87
|
const runnerResult = await lighthouse(url, {port, logLevel}, config, page);
|
|
88
88
|
if (!runnerResult) throw new Error('No runnerResult');
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export default
|
|
1
|
+
export default InteractionToNextPaint;
|
|
2
2
|
/**
|
|
3
3
|
* @fileoverview This metric gives a high-percentile measure of responsiveness to input.
|
|
4
4
|
*/
|
|
5
|
-
declare class
|
|
5
|
+
declare class InteractionToNextPaint extends Audit {
|
|
6
6
|
/**
|
|
7
7
|
* @return {LH.Audit.ScoreOptions}
|
|
8
8
|
*/
|
|
@@ -18,4 +18,4 @@ export namespace UIStrings {
|
|
|
18
18
|
const description: string;
|
|
19
19
|
}
|
|
20
20
|
import { Audit } from '../audit.js';
|
|
21
|
-
//# sourceMappingURL=
|
|
21
|
+
//# sourceMappingURL=interaction-to-next-paint.d.ts.map
|
|
@@ -20,13 +20,13 @@ const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
|
|
|
20
20
|
/**
|
|
21
21
|
* @fileoverview This metric gives a high-percentile measure of responsiveness to input.
|
|
22
22
|
*/
|
|
23
|
-
class
|
|
23
|
+
class InteractionToNextPaint extends Audit {
|
|
24
24
|
/**
|
|
25
25
|
* @return {LH.Audit.Meta}
|
|
26
26
|
*/
|
|
27
27
|
static get meta() {
|
|
28
28
|
return {
|
|
29
|
-
id: '
|
|
29
|
+
id: 'interaction-to-next-paint',
|
|
30
30
|
title: str_(i18n.UIStrings.interactionToNextPaint),
|
|
31
31
|
description: str_(UIStrings.description),
|
|
32
32
|
scoreDisplayMode: Audit.SCORING_MODES.NUMERIC,
|
|
@@ -84,5 +84,5 @@ class ExperimentalInteractionToNextPaint extends Audit {
|
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
export default
|
|
87
|
+
export default InteractionToNextPaint;
|
|
88
88
|
export {UIStrings};
|
|
@@ -13,7 +13,7 @@ import {MainThreadTasks} from '../lib/tracehouse/main-thread-tasks.js';
|
|
|
13
13
|
import {taskGroups} from '../lib/tracehouse/task-groups.js';
|
|
14
14
|
import {TraceProcessor} from '../lib/tracehouse/trace-processor.js';
|
|
15
15
|
import {getExecutionTimingsByURL} from '../lib/tracehouse/task-summary.js';
|
|
16
|
-
import
|
|
16
|
+
import InteractionToNextPaint from './metrics/interaction-to-next-paint.js';
|
|
17
17
|
import {LighthouseError} from '../lib/lh-error.js';
|
|
18
18
|
|
|
19
19
|
/** @typedef {import('../computed/metrics/responsiveness.js').EventTimingEvent} EventTimingEvent */
|
|
@@ -273,7 +273,7 @@ class WorkDuringInteraction extends Audit {
|
|
|
273
273
|
const duration = interactionEvent.args.data.duration;
|
|
274
274
|
const displayValue = str_(UIStrings.displayValue, {timeInMs: duration, interactionType});
|
|
275
275
|
return {
|
|
276
|
-
score: duration <
|
|
276
|
+
score: duration < InteractionToNextPaint.defaultOptions.p10 ? 1 : 0,
|
|
277
277
|
displayValue,
|
|
278
278
|
details: {
|
|
279
279
|
type: 'list',
|
|
@@ -186,7 +186,7 @@ const defaultConfig = {
|
|
|
186
186
|
'metrics/total-blocking-time',
|
|
187
187
|
'metrics/max-potential-fid',
|
|
188
188
|
'metrics/cumulative-layout-shift',
|
|
189
|
-
'metrics/
|
|
189
|
+
'metrics/interaction-to-next-paint',
|
|
190
190
|
'errors-in-console',
|
|
191
191
|
'server-response-time',
|
|
192
192
|
'metrics/interactive',
|
|
@@ -436,7 +436,7 @@ const defaultConfig = {
|
|
|
436
436
|
{id: 'total-blocking-time', weight: 30, group: 'metrics', acronym: 'TBT', relevantAudits: metricsToAudits.tbtRelevantAudits},
|
|
437
437
|
{id: 'cumulative-layout-shift', weight: 25, group: 'metrics', acronym: 'CLS', relevantAudits: metricsToAudits.clsRelevantAudits},
|
|
438
438
|
{id: 'speed-index', weight: 10, group: 'metrics', acronym: 'SI'},
|
|
439
|
-
{id: '
|
|
439
|
+
{id: 'interaction-to-next-paint', weight: 0, group: 'metrics', acronym: 'INP', relevantAudits: metricsToAudits.inpRelevantAudits},
|
|
440
440
|
|
|
441
441
|
// These are our "invisible" metrics. Not displayed, but still in the LHR.
|
|
442
442
|
{id: 'interactive', weight: 0, group: 'hidden', acronym: 'TTI'},
|
package/core/lib/stack-packs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "10.4.0-dev.
|
|
4
|
+
"version": "10.4.0-dev.20230727",
|
|
5
5
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
6
6
|
"main": "./core/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"smokehouse": "./cli/test/smokehouse/frontends/smokehouse-bin.js"
|
|
11
11
|
},
|
|
12
12
|
"engines": {
|
|
13
|
-
"node": ">=
|
|
13
|
+
"node": ">=18.16"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"prepack": "yarn build-report --standalone --flow --esm && yarn build-types",
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
173
173
|
"tabulator-tables": "^4.9.3",
|
|
174
174
|
"terser": "^5.18.2",
|
|
175
|
-
"testdouble": "^3.
|
|
175
|
+
"testdouble": "^3.18.0",
|
|
176
176
|
"typed-query-selector": "^2.6.1",
|
|
177
177
|
"typescript": "^5.0.4",
|
|
178
178
|
"wait-for-expect": "^3.0.2",
|
|
@@ -189,9 +189,9 @@
|
|
|
189
189
|
"http-link-header": "^1.1.1",
|
|
190
190
|
"intl-messageformat": "^4.4.0",
|
|
191
191
|
"jpeg-js": "^0.4.4",
|
|
192
|
-
"js-library-detector": "^6.
|
|
192
|
+
"js-library-detector": "^6.7.0",
|
|
193
193
|
"lighthouse-logger": "^2.0.1",
|
|
194
|
-
"lighthouse-stack-packs": "1.
|
|
194
|
+
"lighthouse-stack-packs": "1.12.0",
|
|
195
195
|
"lodash": "^4.17.21",
|
|
196
196
|
"lookup-closest-locale": "6.2.0",
|
|
197
197
|
"metaviewport-parser": "0.3.0",
|
package/readme.md
CHANGED
|
@@ -52,7 +52,7 @@ The Chrome extension was available prior to Lighthouse being available in Chrome
|
|
|
52
52
|
|
|
53
53
|
The Node CLI provides the most flexibility in how Lighthouse runs can be configured and reported. Users who want more advanced usage, or want to run Lighthouse in an automated fashion should use the Node CLI.
|
|
54
54
|
|
|
55
|
-
_Lighthouse requires Node
|
|
55
|
+
_Lighthouse requires Node 18 LTS (18.x) or later._
|
|
56
56
|
|
|
57
57
|
**Installation**:
|
|
58
58
|
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more about the Cumulative Layout Shift metric](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint marks the time at which the first text or image is painted. [Learn more about the First Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "يحدِّد مقياس \"متغيّرات التصميم التراكمية\" مقدار حركة العناصر المرئية في إطار العرض. [مزيد من المعلومات حول مقياس \"متغيّرات التصميم التراكمية\"](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "يحدِّد مقياس \"مدة عرض الاستجابة لتفاعل المستخدم\" سرعة استجابة الصفحة والمدّة التي تستغرِقها الصفحة للاستجابة بشكل واضح للبيانات التي أدخلها المستخدم. [مزيد من المعلومات حول مقياس \"مدة عرض الاستجابة لتفاعل المستخدم\"](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "يحدِّد مقياس \"سرعة عرض المحتوى على الصفحة\" الوقت الذي يُعرَض فيه أول نص أو صورة من محتوى الصفحة. [مزيد من المعلومات حول مقياس \"سرعة عرض المحتوى على الصفحة\"](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Показателят „Кумулативни структурни промени (CLS)“ измерва движението на видимите елементи в прозоречния изглед. [Научете повече за този показател](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Показателят „Изобразяване след взаимодействие“ измерва колко време е необходимо на страницата, за да реагира визуално след входящи данни от действие на потребител. [Научете повече за този показател](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Показателят „Първо изобразяване на съдържание (FCP)“ указва след колко време се изобразява първият текстов или графичен елемент. [Научете повече за този показател](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "El canvi de disseny acumulatiu mesura el moviment d'elements visibles a la finestra gràfica. [Obtén més informació sobre la mètrica Canvi de disseny acumulatiu](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "La mètrica Interacció amb la renderització següent mesura la capacitat de resposta de la pàgina; és a dir, el temps que tarda la pàgina a respondre visiblement a l'entrada de l'usuari. [Obtén més informació sobre la mètrica Interacció amb la renderització següent](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "La mètrica Primera renderització de contingut marca el moment en què es renderitza el primer text o la primera imatge. [Obtén més informació sobre la mètrica Primera renderització de contingut](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Kumulativní změna rozvržení měří přesuny viditelných prvků v zobrazované oblasti. [Další informace o metrice Kumulativní změna rozvržení](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Doba od interakce k dalšímu vykreslení měří rychlost odezvy stránky, tj. za jak dlouho stránka viditelně zareaguje na uživatelský vstup. [Další informace o metrice Doba od interakce k dalšímu vykreslení](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "První vykreslení obsahu je okamžik vykreslení prvního textu nebo obrázku. [Další informace o metrice První vykreslení obsahu (FCP)](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Akkumuleret layoutskift måler synlige elementers bevægelse i det synlige område. [Få flere oplysninger om metric'en Akkumuleret layoutskift](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaktion indtil næste visning måler sidens svartid, dvs. hvor lang tid det tager, før siden reagerer på brugerinput på en synlig måde. [Få flere oplysninger om metric'en for interaktion indtil næste visning](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Første visning af indhold markerer tidspunktet, hvor den første tekst eller det første billede vises. [Få flere oplysninger om metric'en Første visning af indhold](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "„Cumulative Layout Shift“ misst die Bewegung sichtbarer Elemente innerhalb des Darstellungsbereichs. [Weitere Informationen zum Messwert „Cumulative Layout Shift“.](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "„Interaction to Next Paint“ misst die Reaktionsfähigkeit der Seite, d. h. wie lange die Seite braucht, um sichtbar auf Nutzereingaben zu reagieren. [Weitere Informationen zum Messwert „Interaction to Next Paint“.](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "„First Contentful Paint“ gibt an, wann der erste Text oder das erste Bild gerendert wird. [Weitere Informationen zum Messwert „First Contentful Paint“.](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Οι Συνολικές αλλαγές διάταξης μετρούν την κίνηση των ορατών στοιχείων εντός της θύρας προβολής. [Μάθετε περισσότερα σχετικά με τη μέτρηση Συνολικές αλλαγές διάταξης](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Το Interaction to Next Paint μετρά την ανταπόκριση της σελίδας και τον χρόνο που χρειάζεται η σελίδα για να ανταποκριθεί εμφανώς στην εισαγωγή στοιχείων από τους χρήστες. [Μάθετε περισσότερα σχετικά με τη μέτρηση Interaction to Next Paint](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Η Πρώτη σχεδίαση περιεχομένου (FCP) επισημαίνει πότε σχεδιάζεται το πρώτο κείμενο ή η πρώτη εικόνα. [Μάθετε περισσότερα σχετικά με τη μέτρηση Πρώτη σχεδίαση περιεχομένου (FCP)](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative layout shift measures the movement of visible elements within the viewport. [Learn more about the cumulative layout shift metric](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint marks the time at which the first text or image is painted. [Learn more about the First Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1226,15 +1226,15 @@
|
|
|
1226
1226
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1227
1227
|
"message": "Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more about the Cumulative Layout Shift metric](https://web.dev/cls/)."
|
|
1228
1228
|
},
|
|
1229
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1230
|
-
"message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
|
|
1231
|
-
},
|
|
1232
1229
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1233
1230
|
"message": "First Contentful Paint marks the time at which the first text or image is painted. [Learn more about the First Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1234
1231
|
},
|
|
1235
1232
|
"core/audits/metrics/first-meaningful-paint.js | description": {
|
|
1236
1233
|
"message": "First Meaningful Paint measures when the primary content of a page is visible. [Learn more about the First Meaningful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/)."
|
|
1237
1234
|
},
|
|
1235
|
+
"core/audits/metrics/interaction-to-next-paint.js | description": {
|
|
1236
|
+
"message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more about the Interaction to Next Paint metric](https://web.dev/inp/)."
|
|
1237
|
+
},
|
|
1238
1238
|
"core/audits/metrics/interactive.js | description": {
|
|
1239
1239
|
"message": "Time to Interactive is the amount of time it takes for the page to become fully interactive. [Learn more about the Time to Interactive metric](https://developer.chrome.com/docs/lighthouse/performance/interactive/)."
|
|
1240
1240
|
},
|
|
@@ -2862,7 +2862,7 @@
|
|
|
2862
2862
|
"message": "Install [a Drupal module](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A67&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=%22lazy+load%22&solrsort=iss_project_release_usage+desc&op=Search) that can lazy load images. Such modules provide the ability to defer any offscreen images to improve performance."
|
|
2863
2863
|
},
|
|
2864
2864
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | render-blocking-resources": {
|
|
2865
|
-
"message": "Consider using a module to inline critical CSS and JavaScript,
|
|
2865
|
+
"message": "Consider using a module to inline critical CSS and JavaScript, and use the defer attribute for non-critical CSS or JavaScript."
|
|
2866
2866
|
},
|
|
2867
2867
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | server-response-time": {
|
|
2868
2868
|
"message": "Themes, modules, and server specifications all contribute to server response time. Consider finding a more optimized theme, carefully selecting an optimization module, and/or upgrading your server. Your hosting servers should make use of PHP opcode caching, memory-caching to reduce database query times such as Redis or Memcached, as well as optimized application logic to prepare pages faster."
|
|
@@ -2871,10 +2871,10 @@
|
|
|
2871
2871
|
"message": "Consider using [Responsive Image Styles](https://www.drupal.org/docs/8/mobile-guide/responsive-images-in-drupal-8) to reduce the size of images loaded on your page. If you are using Views to show multiple content items on a page, consider implementing pagination to limit the number of content items shown on a given page."
|
|
2872
2872
|
},
|
|
2873
2873
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-css": {
|
|
2874
|
-
"message": "Ensure you have enabled \"Aggregate CSS files\" in the \"Administration » Configuration » Development\" page.
|
|
2874
|
+
"message": "Ensure you have enabled \"Aggregate CSS files\" in the \"Administration » Configuration » Development\" page. Ensure your Drupal site is running at least Drupal 10.1 for improved asset aggregation support."
|
|
2875
2875
|
},
|
|
2876
2876
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-javascript": {
|
|
2877
|
-
"message": "Ensure you have enabled \"Aggregate JavaScript files\" in the \"Administration » Configuration » Development\" page.
|
|
2877
|
+
"message": "Ensure you have enabled \"Aggregate JavaScript files\" in the \"Administration » Configuration » Development\" page. Ensure your Drupal site is running at least Drupal 10.1 for improved asset aggregation support."
|
|
2878
2878
|
},
|
|
2879
2879
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unused-css-rules": {
|
|
2880
2880
|
"message": "Consider removing unused CSS rules and only attach the needed Drupal libraries to the relevant page or component in a page. See the [Drupal documentation link](https://www.drupal.org/docs/8/creating-custom-modules/adding-stylesheets-css-and-javascript-js-to-a-drupal-8-module#library) for details. To identify attached libraries that are adding extraneous CSS, try running [code coverage](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) in Chrome DevTools. You can identify the theme/module responsible from the URL of the stylesheet when CSS aggregation is disabled in your Drupal site. Look out for themes/modules that have many stylesheets in the list which have a lot of red in code coverage. A theme/module should only enqueue a stylesheet if it is actually used on the page."
|
|
@@ -3074,6 +3074,48 @@
|
|
|
3074
3074
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
3075
3075
|
"message": "Enable compression on your Next.js server. [Learn more](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
|
3076
3076
|
},
|
|
3077
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | dom-size": {
|
|
3078
|
+
"message": "Contact your account manager to enable [`HTML Lazy Load`](https://support.nitropack.io/hc/en-us/articles/17144942904337). Configuring it will prioritize and optimize your page rendering performance."
|
|
3079
|
+
},
|
|
3080
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | font-display": {
|
|
3081
|
+
"message": "Use the [`Override Font Rendering Behavior`](https://support.nitropack.io/hc/en-us/articles/16547358865041) option in NitroPack to set a desired value for the CSS font-display rule."
|
|
3082
|
+
},
|
|
3083
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | modern-image-formats": {
|
|
3084
|
+
"message": "Use [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/16547237162513) to automatically convert your images to WebP."
|
|
3085
|
+
},
|
|
3086
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | offscreen-images": {
|
|
3087
|
+
"message": "Defer offscreen images by enabling [`Automatic Image Lazy Loading`](https://support.nitropack.io/hc/en-us/articles/12457493524369-NitroPack-Lazy-Loading-Feature-for-Images)."
|
|
3088
|
+
},
|
|
3089
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | render-blocking-resources": {
|
|
3090
|
+
"message": "Enable [`Remove render-blocking resources`](https://support.nitropack.io/hc/en-us/articles/13820893500049-How-to-Deal-with-Render-Blocking-Resources-in-NitroPack) in NitroPack for faster initial load times."
|
|
3091
|
+
},
|
|
3092
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | server-response-time": {
|
|
3093
|
+
"message": "Improve server response time and optimize perceived performance by activating [`Instant Load`](https://support.nitropack.io/hc/en-us/articles/16547340617361)."
|
|
3094
|
+
},
|
|
3095
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-css": {
|
|
3096
|
+
"message": "Enable [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) in your Caching settings to reduce the size of your CSS, HTML, and JavaScript files for faster load times."
|
|
3097
|
+
},
|
|
3098
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-javascript": {
|
|
3099
|
+
"message": "Enable [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) in your Caching settings to reduce the size of your JS, HTML, and CSS files for faster load times."
|
|
3100
|
+
},
|
|
3101
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-css-rules": {
|
|
3102
|
+
"message": "Enable [`Reduce Unused CSS`](https://support.nitropack.io/hc/en-us/articles/360020418457-Reduce-Unused-CSS) to remove CSS rules that are not applicable to this page."
|
|
3103
|
+
},
|
|
3104
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-javascript": {
|
|
3105
|
+
"message": "Configure [`Delayed Scripts`](https://support.nitropack.io/hc/en-us/articles/1500002600942-Delayed-Scripts) in NitroPack to delay loading of scripts until they are needed."
|
|
3106
|
+
},
|
|
3107
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-long-cache-ttl": {
|
|
3108
|
+
"message": "Go to the [`Improve Server Response Time`](https://support.nitropack.io/hc/en-us/articles/1500002321821-Improve-Server-Response-Time) feature in the `Caching` menu and adjust your page cache expiration time to improve loading times and user experience."
|
|
3109
|
+
},
|
|
3110
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-optimized-images": {
|
|
3111
|
+
"message": "Automatically compress, optimize, and convert your images into WebP by enabling the [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/14177271695121-How-to-serve-images-in-next-gen-formats-using-NitroPack) setting."
|
|
3112
|
+
},
|
|
3113
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-responsive-images": {
|
|
3114
|
+
"message": "Enable [`Adaptive Image Sizing`](https://support.nitropack.io/hc/en-us/articles/10123833029905-How-to-Enable-Adaptive-Image-Sizing-For-Your-Site) to preemptively optimize your images and make them match the dimensions of the containers they’re displayed in across all devices."
|
|
3115
|
+
},
|
|
3116
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-text-compression": {
|
|
3117
|
+
"message": "Use [`Gzip compression`](https://support.nitropack.io/hc/en-us/articles/13229297479313-Enabling-GZIP-compression) in NitroPack to reduce the size of the files that are sent to the browser."
|
|
3118
|
+
},
|
|
3077
3119
|
"node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
|
|
3078
3120
|
"message": "Use the `nuxt/image` component and set `format=\"webp\"`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#format)."
|
|
3079
3121
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "[Çûmûļåţîvé Ļåýöûţ Šĥîƒţ méåšûŕéš ţĥé mövéméñţ öƒ vîšîбļé éļéméñţš ŵîţĥîñ ţĥé vîéŵþöŕţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Çûmûļåţîvé Ļåýöûţ Šĥîƒţ méţŕîçᐅ](https://web.dev/cls/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "[Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méåšûŕéš þåĝé ŕéšþöñšîvéñéšš, ĥöŵ ļöñĝ îţ ţåķéš ţĥé þåĝé ţö vîšîбļý ŕéšþöñð ţö ûšéŕ îñþûţ. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Îñţéŕåçţîöñ ţö Ñéxţ Þåîñţ méţŕîçᐅ](https://web.dev/inp/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour twentyfive]"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "[Fîŕšţ Çöñţéñţƒûļ Þåîñţ måŕķš ţĥé ţîmé åţ ŵĥîçĥ ţĥé ƒîŕšţ ţéxţ öŕ îmåĝé îš þåîñţéð. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ţĥé Fîŕšţ Çöñţéñţƒûļ Þåîñţ méţŕîçᐅ](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone]"
|
|
1117
1114
|
},
|
|
@@ -1226,15 +1226,15 @@
|
|
|
1226
1226
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1227
1227
|
"message": "Ĉúm̂úl̂át̂ív̂é L̂áŷóût́ Ŝh́îf́t̂ ḿêáŝúr̂éŝ t́ĥé m̂óv̂ém̂én̂t́ ôf́ v̂íŝíb̂ĺê él̂ém̂én̂t́ŝ ẃît́ĥín̂ t́ĥé v̂íêẃp̂ór̂t́. [L̂éâŕn̂ ḿôŕê áb̂óût́ t̂h́ê Ćûḿûĺât́îv́ê Ĺâýôút̂ Śĥíf̂t́ m̂ét̂ŕîć](https://web.dev/cls/)."
|
|
1228
1228
|
},
|
|
1229
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1230
|
-
"message": "Îńt̂ér̂áĉt́îón̂ t́ô Ńêx́t̂ Ṕâín̂t́ m̂éâśûŕêś p̂áĝé r̂éŝṕôńŝív̂én̂éŝś, ĥóŵ ĺôńĝ ít̂ t́âḱêś t̂h́ê ṕâǵê t́ô v́îśîb́l̂ý r̂éŝṕôńd̂ t́ô úŝér̂ ín̂ṕût́. [L̂éâŕn̂ ḿôŕê áb̂óût́ t̂h́ê Ín̂t́êŕâćt̂íôń t̂ó N̂éx̂t́ P̂áîńt̂ ḿêt́r̂íĉ](https://web.dev/inp/)."
|
|
1231
|
-
},
|
|
1232
1229
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1233
1230
|
"message": "F̂ír̂śt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ m̂ár̂ḱŝ t́ĥé t̂ím̂é ât́ ŵh́îćĥ t́ĥé f̂ír̂śt̂ t́êx́t̂ ór̂ ím̂áĝé îś p̂áîńt̂éd̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ĥé F̂ír̂śt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ m̂ét̂ŕîć](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1234
1231
|
},
|
|
1235
1232
|
"core/audits/metrics/first-meaningful-paint.js | description": {
|
|
1236
1233
|
"message": "F̂ír̂śt̂ Ḿêán̂ín̂ǵf̂úl̂ Ṕâín̂t́ m̂éâśûŕêś ŵh́êń t̂h́ê ṕr̂ím̂ár̂ý ĉón̂t́êńt̂ óf̂ á p̂áĝé îś v̂íŝíb̂ĺê. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ĥé F̂ír̂śt̂ Ḿêán̂ín̂ǵf̂úl̂ Ṕâín̂t́ m̂ét̂ŕîć](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/)."
|
|
1237
1234
|
},
|
|
1235
|
+
"core/audits/metrics/interaction-to-next-paint.js | description": {
|
|
1236
|
+
"message": "Îńt̂ér̂áĉt́îón̂ t́ô Ńêx́t̂ Ṕâín̂t́ m̂éâśûŕêś p̂áĝé r̂éŝṕôńŝív̂én̂éŝś, ĥóŵ ĺôńĝ ít̂ t́âḱêś t̂h́ê ṕâǵê t́ô v́îśîb́l̂ý r̂éŝṕôńd̂ t́ô úŝér̂ ín̂ṕût́. [L̂éâŕn̂ ḿôŕê áb̂óût́ t̂h́ê Ín̂t́êŕâćt̂íôń t̂ó N̂éx̂t́ P̂áîńt̂ ḿêt́r̂íĉ](https://web.dev/inp/)."
|
|
1237
|
+
},
|
|
1238
1238
|
"core/audits/metrics/interactive.js | description": {
|
|
1239
1239
|
"message": "T̂ím̂é t̂ó Îńt̂ér̂áĉt́îv́ê íŝ t́ĥé âḿôún̂t́ ôf́ t̂ím̂é ît́ t̂ák̂éŝ f́ôŕ t̂h́ê ṕâǵê t́ô b́êćôḿê f́ûĺl̂ý îńt̂ér̂áĉt́îv́ê. [Ĺêár̂ń m̂ór̂é âb́ôút̂ t́ĥé T̂ím̂é t̂ó Îńt̂ér̂áĉt́îv́ê ḿêt́r̂íĉ](https://developer.chrome.com/docs/lighthouse/performance/interactive/)."
|
|
1240
1240
|
},
|
|
@@ -2862,7 +2862,7 @@
|
|
|
2862
2862
|
"message": "Îńŝt́âĺl̂ [á D̂ŕûṕâĺ m̂ód̂úl̂é](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A67&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=%22lazy+load%22&solrsort=iss_project_release_usage+desc&op=Search) t̂h́ât́ ĉán̂ ĺâźŷ ĺôád̂ ím̂áĝéŝ. Śûćĥ ḿôd́ûĺêś p̂ŕôv́îd́ê t́ĥé âb́îĺît́ŷ t́ô d́êf́êŕ âńŷ óf̂f́ŝćr̂éêń îḿâǵêś t̂ó îḿp̂ŕôv́ê ṕêŕf̂ór̂ḿâńĉé."
|
|
2863
2863
|
},
|
|
2864
2864
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | render-blocking-resources": {
|
|
2865
|
-
"message": "Ĉón̂śîd́êŕ ûśîńĝ á m̂ód̂úl̂é t̂ó îńl̂ín̂é ĉŕît́îćâĺ ĈŚŜ án̂d́ Ĵáv̂áŜćr̂íp̂t́,
|
|
2865
|
+
"message": "Ĉón̂śîd́êŕ ûśîńĝ á m̂ód̂úl̂é t̂ó îńl̂ín̂é ĉŕît́îćâĺ ĈŚŜ án̂d́ Ĵáv̂áŜćr̂íp̂t́, âńd̂ úŝé t̂h́ê d́êf́êŕ ât́t̂ŕîb́ût́ê f́ôŕ n̂ón̂-ćr̂ít̂íĉál̂ ĆŜŚ ôŕ Ĵáv̂áŜćr̂íp̂t́."
|
|
2866
2866
|
},
|
|
2867
2867
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | server-response-time": {
|
|
2868
2868
|
"message": "T̂h́êḿêś, m̂ód̂úl̂éŝ, án̂d́ ŝér̂v́êŕ ŝṕêćîf́îćât́îón̂ś âĺl̂ ćôńt̂ŕîb́ût́ê t́ô śêŕv̂ér̂ ŕêśp̂ón̂śê t́îḿê. Ćôńŝíd̂ér̂ f́îńd̂ín̂ǵ â ḿôŕê óp̂t́îḿîźêd́ t̂h́êḿê, ćâŕêf́ûĺl̂ý ŝél̂éĉt́îńĝ án̂ óp̂t́îḿîźât́îón̂ ḿôd́ûĺê, án̂d́/ôŕ ûṕĝŕâd́îńĝ ýôúr̂ śêŕv̂ér̂. Ýôúr̂ h́ôśt̂ín̂ǵ ŝér̂v́êŕŝ śĥóûĺd̂ ḿâḱê úŝé ôf́ P̂H́P̂ óp̂ćôd́ê ćâćĥín̂ǵ, m̂ém̂ór̂ý-ĉáĉh́îńĝ t́ô ŕêd́ûćê d́ât́âb́âśê q́ûér̂ý t̂ím̂éŝ śûćĥ áŝ Ŕêd́îś ôŕ M̂ém̂ćâćĥéd̂, áŝ ẃêĺl̂ áŝ óp̂t́îḿîźêd́ âṕp̂ĺîćât́îón̂ ĺôǵîć t̂ó p̂ŕêṕâŕê ṕâǵêś f̂áŝt́êŕ."
|
|
@@ -2871,10 +2871,10 @@
|
|
|
2871
2871
|
"message": "Ĉón̂śîd́êŕ ûśîńĝ [Ŕêśp̂ón̂śîv́ê Ím̂áĝé Ŝt́ŷĺêś](https://www.drupal.org/docs/8/mobile-guide/responsive-images-in-drupal-8) t̂ó r̂éd̂úĉé t̂h́ê śîźê óf̂ ím̂áĝéŝ ĺôád̂éd̂ ón̂ ýôúr̂ ṕâǵê. Íf̂ ýôú âŕê úŝín̂ǵ V̂íêẃŝ t́ô śĥóŵ ḿûĺt̂íp̂ĺê ćôńt̂én̂t́ ît́êḿŝ ón̂ á p̂áĝé, ĉón̂śîd́êŕ îḿp̂ĺêḿêńt̂ín̂ǵ p̂áĝín̂át̂íôń t̂ó l̂ím̂ít̂ t́ĥé n̂úm̂b́êŕ ôf́ ĉón̂t́êńt̂ ít̂ém̂ś ŝh́ôẃn̂ ón̂ á ĝív̂én̂ ṕâǵê."
|
|
2872
2872
|
},
|
|
2873
2873
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-css": {
|
|
2874
|
-
"message": "Êńŝúr̂é ŷóû h́âv́ê én̂áb̂ĺêd́ \"Âǵĝŕêǵât́ê ĆŜŚ f̂íl̂éŝ\" ín̂ t́ĥé \"Âd́m̂ín̂íŝt́r̂át̂íôń » Ĉón̂f́îǵûŕât́îón̂ » D́êv́êĺôṕm̂én̂t́\" p̂áĝé.
|
|
2874
|
+
"message": "Êńŝúr̂é ŷóû h́âv́ê én̂áb̂ĺêd́ \"Âǵĝŕêǵât́ê ĆŜŚ f̂íl̂éŝ\" ín̂ t́ĥé \"Âd́m̂ín̂íŝt́r̂át̂íôń » Ĉón̂f́îǵûŕât́îón̂ » D́êv́êĺôṕm̂én̂t́\" p̂áĝé. Êńŝúr̂é ŷóûŕ D̂ŕûṕâĺ ŝít̂é îś r̂ún̂ńîńĝ át̂ ĺêáŝt́ D̂ŕûṕâĺ 10.1 f̂ór̂ ím̂ṕr̂óv̂éd̂ áŝśêt́ âǵĝŕêǵât́îón̂ śûṕp̂ór̂t́."
|
|
2875
2875
|
},
|
|
2876
2876
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unminified-javascript": {
|
|
2877
|
-
"message": "Êńŝúr̂é ŷóû h́âv́ê én̂áb̂ĺêd́ \"Âǵĝŕêǵât́ê J́âv́âŚĉŕîṕt̂ f́îĺêś\" îń t̂h́ê \"Ád̂ḿîńîśt̂ŕât́îón̂ » Ćôńf̂íĝúr̂át̂íôń » D̂év̂él̂óp̂ḿêńt̂\" ṕâǵê.
|
|
2877
|
+
"message": "Êńŝúr̂é ŷóû h́âv́ê én̂áb̂ĺêd́ \"Âǵĝŕêǵât́ê J́âv́âŚĉŕîṕt̂ f́îĺêś\" îń t̂h́ê \"Ád̂ḿîńîśt̂ŕât́îón̂ » Ćôńf̂íĝúr̂át̂íôń » D̂év̂él̂óp̂ḿêńt̂\" ṕâǵê. Én̂śûŕê ýôúr̂ D́r̂úp̂ál̂ śît́ê íŝ ŕûńn̂ín̂ǵ ât́ l̂éâśt̂ D́r̂úp̂ál̂ 10.1 f́ôŕ îḿp̂ŕôv́êd́ âśŝét̂ áĝǵr̂éĝát̂íôń ŝúp̂ṕôŕt̂."
|
|
2878
2878
|
},
|
|
2879
2879
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | unused-css-rules": {
|
|
2880
2880
|
"message": "Ĉón̂śîd́êŕ r̂ém̂óv̂ín̂ǵ ûńûśêd́ ĈŚŜ ŕûĺêś âńd̂ ón̂ĺŷ át̂t́âćĥ t́ĥé n̂éêd́êd́ D̂ŕûṕâĺ l̂íb̂ŕâŕîéŝ t́ô t́ĥé r̂él̂év̂án̂t́ p̂áĝé ôŕ ĉóm̂ṕôńêńt̂ ín̂ á p̂áĝé. Ŝéê t́ĥé [D̂ŕûṕâĺ d̂óĉúm̂én̂t́ât́îón̂ ĺîńk̂](https://www.drupal.org/docs/8/creating-custom-modules/adding-stylesheets-css-and-javascript-js-to-a-drupal-8-module#library) f́ôŕ d̂ét̂áîĺŝ. T́ô íd̂én̂t́îf́ŷ át̂t́âćĥéd̂ ĺîb́r̂ár̂íêś t̂h́ât́ âŕê ád̂d́îńĝ éx̂t́r̂án̂éôúŝ ĆŜŚ, t̂ŕŷ ŕûńn̂ín̂ǵ [ĉód̂é ĉóv̂ér̂áĝé](https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage) îń Ĉh́r̂óm̂é D̂év̂T́ôól̂ś. Ŷóû ćâń îd́êńt̂íf̂ý t̂h́ê t́ĥém̂é/m̂ód̂úl̂é r̂éŝṕôńŝíb̂ĺê f́r̂óm̂ t́ĥé ÛŔL̂ óf̂ t́ĥé ŝt́ŷĺêśĥéêt́ ŵh́êń ĈŚŜ áĝǵr̂éĝát̂íôń îś d̂íŝáb̂ĺêd́ îń ŷóûŕ D̂ŕûṕâĺ ŝít̂é. L̂óôḱ ôút̂ f́ôŕ t̂h́êḿêś/m̂ód̂úl̂éŝ t́ĥát̂ h́âv́ê ḿâńŷ śt̂ýl̂éŝh́êét̂ś îń t̂h́ê ĺîśt̂ ẃĥíĉh́ ĥáv̂é â ĺôt́ ôf́ r̂éd̂ ín̂ ćôd́ê ćôv́êŕâǵê. Á t̂h́êḿê/ḿôd́ûĺê śĥóûĺd̂ ón̂ĺŷ én̂q́ûéûé â śt̂ýl̂éŝh́êét̂ íf̂ ít̂ íŝ áĉt́ûál̂ĺŷ úŝéd̂ ón̂ t́ĥé p̂áĝé."
|
|
@@ -3074,6 +3074,48 @@
|
|
|
3074
3074
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
3075
3075
|
"message": "Êńâb́l̂é ĉóm̂ṕr̂éŝśîón̂ ón̂ ýôúr̂ Ńêx́t̂.j́ŝ śêŕv̂ér̂. [Ĺêár̂ń m̂ór̂é](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
|
3076
3076
|
},
|
|
3077
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | dom-size": {
|
|
3078
|
+
"message": "Ĉón̂t́âćt̂ ýôúr̂ áĉćôún̂t́ m̂án̂áĝér̂ t́ô én̂áb̂ĺê [`HTML Lazy Load`](https://support.nitropack.io/hc/en-us/articles/17144942904337). Ćôńf̂íĝúr̂ín̂ǵ ît́ ŵíl̂ĺ p̂ŕîór̂ít̂íẑé âńd̂ óp̂t́îḿîźê ýôúr̂ ṕâǵê ŕêńd̂ér̂ín̂ǵ p̂ér̂f́ôŕm̂án̂ćê."
|
|
3079
|
+
},
|
|
3080
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | font-display": {
|
|
3081
|
+
"message": "Ûśê t́ĥé [`Override Font Rendering Behavior`](https://support.nitropack.io/hc/en-us/articles/16547358865041) ôṕt̂íôń îń N̂ít̂ŕôṔâćk̂ t́ô śêt́ â d́êśîŕêd́ v̂ál̂úê f́ôŕ t̂h́ê ĆŜŚ f̂ón̂t́-d̂íŝṕl̂áŷ ŕûĺê."
|
|
3082
|
+
},
|
|
3083
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | modern-image-formats": {
|
|
3084
|
+
"message": "Ûśê [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/16547237162513) t́ô áût́ôḿât́îćâĺl̂ý ĉón̂v́êŕt̂ ýôúr̂ ím̂áĝéŝ t́ô Ẃêb́P̂."
|
|
3085
|
+
},
|
|
3086
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | offscreen-images": {
|
|
3087
|
+
"message": "D̂éf̂ér̂ óf̂f́ŝćr̂éêń îḿâǵêś b̂ý êńâb́l̂ín̂ǵ [`Automatic Image Lazy Loading`](https://support.nitropack.io/hc/en-us/articles/12457493524369-NitroPack-Lazy-Loading-Feature-for-Images)."
|
|
3088
|
+
},
|
|
3089
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | render-blocking-resources": {
|
|
3090
|
+
"message": "Êńâb́l̂é [`Remove render-blocking resources`](https://support.nitropack.io/hc/en-us/articles/13820893500049-How-to-Deal-with-Render-Blocking-Resources-in-NitroPack) îń N̂ít̂ŕôṔâćk̂ f́ôŕ f̂áŝt́êŕ îńît́îál̂ ĺôád̂ t́îḿêś."
|
|
3091
|
+
},
|
|
3092
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | server-response-time": {
|
|
3093
|
+
"message": "Îḿp̂ŕôv́ê śêŕv̂ér̂ ŕêśp̂ón̂śê t́îḿê án̂d́ ôṕt̂ím̂íẑé p̂ér̂ćêív̂éd̂ ṕêŕf̂ór̂ḿâńĉé b̂ý âćt̂ív̂át̂ín̂ǵ [`Instant Load`](https://support.nitropack.io/hc/en-us/articles/16547340617361)."
|
|
3094
|
+
},
|
|
3095
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-css": {
|
|
3096
|
+
"message": "Êńâb́l̂é [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) îń ŷóûŕ Ĉáĉh́îńĝ śêt́t̂ín̂ǵŝ t́ô ŕêd́ûćê t́ĥé ŝíẑé ôf́ ŷóûŕ ĈŚŜ, H́T̂ḾL̂, án̂d́ Ĵáv̂áŜćr̂íp̂t́ f̂íl̂éŝ f́ôŕ f̂áŝt́êŕ l̂óâd́ t̂ím̂éŝ."
|
|
3097
|
+
},
|
|
3098
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unminified-javascript": {
|
|
3099
|
+
"message": "Êńâb́l̂é [`Minify resources`](https://support.nitropack.io/hc/en-us/articles/360061059394-Minify-Resources) îń ŷóûŕ Ĉáĉh́îńĝ śêt́t̂ín̂ǵŝ t́ô ŕêd́ûćê t́ĥé ŝíẑé ôf́ ŷóûŕ ĴŚ, ĤT́M̂Ĺ, âńd̂ ĆŜŚ f̂íl̂éŝ f́ôŕ f̂áŝt́êŕ l̂óâd́ t̂ím̂éŝ."
|
|
3100
|
+
},
|
|
3101
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-css-rules": {
|
|
3102
|
+
"message": "Êńâb́l̂é [`Reduce Unused CSS`](https://support.nitropack.io/hc/en-us/articles/360020418457-Reduce-Unused-CSS) t̂ó r̂ém̂óv̂é ĈŚŜ ŕûĺêś t̂h́ât́ âŕê ńôt́ âṕp̂ĺîćâb́l̂é t̂ó t̂h́îś p̂áĝé."
|
|
3103
|
+
},
|
|
3104
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | unused-javascript": {
|
|
3105
|
+
"message": "Ĉón̂f́îǵûŕê [`Delayed Scripts`](https://support.nitropack.io/hc/en-us/articles/1500002600942-Delayed-Scripts) ín̂ Ńît́r̂óP̂áĉḱ t̂ó d̂él̂áŷ ĺôád̂ín̂ǵ ôf́ ŝćr̂íp̂t́ŝ ún̂t́îĺ t̂h́êý âŕê ńêéd̂éd̂."
|
|
3106
|
+
},
|
|
3107
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-long-cache-ttl": {
|
|
3108
|
+
"message": "Ĝó t̂ó t̂h́ê [`Improve Server Response Time`](https://support.nitropack.io/hc/en-us/articles/1500002321821-Improve-Server-Response-Time) f́êát̂úr̂é îń t̂h́ê `Caching` ḿêńû án̂d́ âd́ĵúŝt́ ŷóûŕ p̂áĝé ĉáĉh́ê éx̂ṕîŕât́îón̂ t́îḿê t́ô ím̂ṕr̂óv̂é l̂óâd́îńĝ t́îḿêś âńd̂ úŝér̂ éx̂ṕêŕîén̂ćê."
|
|
3109
|
+
},
|
|
3110
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-optimized-images": {
|
|
3111
|
+
"message": "Âút̂óm̂át̂íĉál̂ĺŷ ćôḿp̂ŕêśŝ, óp̂t́îḿîźê, án̂d́ ĉón̂v́êŕt̂ ýôúr̂ ím̂áĝéŝ ín̂t́ô Ẃêb́P̂ b́ŷ én̂áb̂ĺîńĝ t́ĥé [`Image Optimization`](https://support.nitropack.io/hc/en-us/articles/14177271695121-How-to-serve-images-in-next-gen-formats-using-NitroPack) ŝét̂t́îńĝ."
|
|
3112
|
+
},
|
|
3113
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-responsive-images": {
|
|
3114
|
+
"message": "Êńâb́l̂é [`Adaptive Image Sizing`](https://support.nitropack.io/hc/en-us/articles/10123833029905-How-to-Enable-Adaptive-Image-Sizing-For-Your-Site) t̂ó p̂ŕêém̂ṕt̂ív̂él̂ý ôṕt̂ím̂íẑé ŷóûŕ îḿâǵêś âńd̂ ḿâḱê t́ĥém̂ ḿât́ĉh́ t̂h́ê d́îḿêńŝíôńŝ óf̂ t́ĥé ĉón̂t́âín̂ér̂ś t̂h́êý’r̂é d̂íŝṕl̂áŷéd̂ ín̂ áĉŕôśŝ ál̂ĺ d̂év̂íĉéŝ."
|
|
3115
|
+
},
|
|
3116
|
+
"node_modules/lighthouse-stack-packs/packs/nitropack.js | uses-text-compression": {
|
|
3117
|
+
"message": "Ûśê [`Gzip compression`](https://support.nitropack.io/hc/en-us/articles/13229297479313-Enabling-GZIP-compression) ín̂ Ńît́r̂óP̂áĉḱ t̂ó r̂éd̂úĉé t̂h́ê śîźê óf̂ t́ĥé f̂íl̂éŝ t́ĥát̂ ár̂é ŝén̂t́ t̂ó t̂h́ê b́r̂óŵśêŕ."
|
|
3118
|
+
},
|
|
3077
3119
|
"node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
|
|
3078
3120
|
"message": "Ûśê t́ĥé `nuxt/image` ĉóm̂ṕôńêńt̂ án̂d́ ŝét̂ `format=\"webp\"`. [Ĺêár̂ń m̂ór̂é](https://image.nuxtjs.org/components/nuxt-img#format)."
|
|
3079
3121
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "El Cambio de diseño acumulado mide el movimiento de los elementos visibles dentro del viewport. [Obtén más información sobre la métrica de Cambio de diseño acumulado](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "La Interacción a la siguiente pintura mide la capacidad de respuesta de la página, es decir, cuánto tarda en responder de manera visible a las entradas del usuario. [Obtén más información sobre la métrica de Interacción a la siguiente pintura](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "El primer procesamiento de imagen con contenido indica el momento en el que se visualiza en la pantalla el primer texto o imagen. [Obtén más información sobre la métrica de Primer procesamiento de imagen con contenido](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Los cambios de diseño acumulados miden el movimiento de los elementos visibles dentro del viewport. [Más información sobre la métrica Cambios de diseño acumulados](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interacción con el siguiente renderizado mide la capacidad de respuesta de la página, es decir, el tiempo que tarda la página en responder de forma visible a la entrada del usuario. [Más información sobre la métrica Interacción con el siguiente renderizado](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "El primer renderizado con contenido indica el momento en el que se renderiza el primer texto o la primera imagen. [Más información sobre la métrica Primer renderizado con contenido](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Kumulatiivinen asettelumuutos mittaa näkymässä olevien elementtien liikettä. [Lue lisää Kumulatiivinen asettelumuutos ‐mittarista](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaktiosta seuraavaan renderöintiin ‐mittari mittaa sivun responsiivisuutta eli sitä, kuinka pian sivu vastaa näkyvästi käyttäjän palautteeseen. [Lue lisää Interaktiosta seuraavaan renderöintiin ‐mittarista](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Ensimmäinen sisällön renderöinti kertoo, milloin ensimmäinen tekstikohde tai kuva renderöidään. [Lue lisää Ensimmäinen sisällön renderöinti ‐mittarista](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Sinusukat ng Cumulative Layout Shift ang paggalaw ng mga nakikitang element sa loob ng viewport. [Matuto pa tungkol sa sukatang Cumulative Layout Shift](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Sinusukat ng Interaction to Next Paint ang pagiging responsive ng page, kung gaano katagal bago makitang tumutugon ang page sa input ng user. [Matuto pa tungkol sa sukatang Interaction to Next Paint](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Minamarkahan ng First Contentful Paint ang tagal bago ma-paint ang unang text o larawan. [Matuto pa tungkol sa sukatang First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative Layout Shift mesure le mouvement des éléments visibles dans la fenêtre d'affichage. [En savoir plus sur cette métrique](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "La métrique \"Interaction to Next Paint\" mesure la réactivité de la page, c'est-à-dire le temps que celle-ci met à répondre de manière visible à l'entrée utilisateur. [En savoir plus sur cette métrique](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "La métrique \"First Contentful Paint\" indique le moment où le premier texte ou la première image sont affichés. [En savoir plus sur cette métrique](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "המדד Cumulative Layout Shift (CLS) מודד את התנועה של הרכיבים הגלויים בתוך אזור התצוגה. [מידע נוסף על המדד Cumulative Layout Shift (CLS)](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "המדד 'מאינטראקציה ועד הצגת התגובה' מודד את רמת הרספונסיביות של הדף – כמה זמן נדרש עד להצגת תגובה בדף לקלט של משתמש. [מידע נוסף על המדד 'מאינטראקציה ועד הצגת התגובה'](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "המדד 'הצגת תוכן ראשוני (FCP)' מציין את הזמן שבו הטקסט או התמונה הראשונים מוצגים. [מידע נוסף על המדד 'הצגת תוכן ראשוני (FCP)'](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "कुल लेआउट शिफ़्ट, व्यूपोर्ट में दिखने वाले एलिमेंट की हलचल बताता है. [कुल लेआउट शिफ़्ट से जुड़ी मेट्रिक के बारे में ज़्यादा जानें](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "इंटरैक्शन टू नेक्स्ट पेंट मेट्रिक, पेज पर रिस्पॉन्स मिलने में लगने वाले समय को मापती है. इससे पता चलता है कि उपयोगकर्ता के इनपुट का जवाब देने में पेज को कितना समय लगता है. [इंटरैक्शन टू नेक्स्ट पेंट मेट्रिक के बारे में ज़्यादा जानें](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "फ़र्स्ट कॉन्टेंटफ़ुल पेंट से, यह पता चलता है कि आपकी वेबसाइट का जो टेक्स्ट या इमेज किसी उपयोगकर्ता को सबसे पहले दिखा उसे दिखने में कितना समय लगा. [फ़र्स्ट कॉन्टेंटफ़ुल पेंट से जुड़ी मेट्रिक के बारे में ज़्यादा जानें](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Kumulativni pomak izgleda mjeri kretanje vidljivih elemenata u vidljivom dijelu. [Saznajte više o mjernom podatku Kumulativni pomak izgleda](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interakcija do sljedećeg renderiranja mjeri responzivnost stranice, koliko je vremena potrebno da stranica vidljivo reagira na korisnički unos. [Saznajte više o mjernom podatku Interakcija do sljedećeg renderiranja](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Prvo renderiranje sadržaja označava vrijeme renderiranja prvog teksta ili slike. [Saznajte više o mjernom podatku Prvo renderiranje sadržaja](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Az Elrendezés összmozgása mutató az oldal megjelenítési területén látható elemek mozgását méri. [További információ az Elrendezés összmozgása mutatóról](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Az interakciótól a következő vizuális válaszig eltelt idő az oldal válaszadási hajlandóságát méri, vagyis azt, hogy az oldal mennyi idő alatt reagál láthatóan a felhasználói bevitelre. [További információ Az interakciótól a következő vizuális válaszig eltelt idő mutatóról](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Az első vizuális tartalomválasz azt az időpontot jelöli, amikor a rendszer megkezdi az első szöveg vagy kép megjelenítését. [További információ az Első vizuális tartalomválasz mutatóról](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Pergeseran Tata Letak Kumulatif (CLS) mengukur perpindahan elemen yang terlihat dalam area pandang. [Pelajari lebih lanjut metrik Pergeseran Tata Letak Kumulatif](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint mengukur responsivitas halaman, yaitu waktu yang diperlukan halaman untuk merespons input pengguna secara jelas. [Pelajari lebih lanjut metrik Interaction to Next Paint](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint menandai waktu saat teks atau gambar pertama di-paint. [Pelajari lebih lanjut metrik First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "La metrica Cumulative Layout Shift misura lo spostamento degli elementi visibili all'interno dell'area visibile. [Scopri di più sulla metrica Cumulative Layout Shift](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "L'interazione con Next Paint misura l'adattabilità della pagina, il tempo necessario alla pagina per rispondere in modo visibile all'input utente. [Scopri di più sulla metrica Interaction to Next Paint](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint indica il momento in cui vengono visualizzati il primo testo o la prima immagine. [Scopri di più sulla metrica First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative Layout Shift はビューポート内の視覚要素がどのくらい移動しているかを測定する指標です。[Cumulative Layout Shift 指標の詳細](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint は、ページの応答性、ユーザーの入力に対してページが視覚的に応答するまでの時間を測定します。[Interaction to Next Paint 指標の詳細](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint は、テキストまたは画像が初めてペイントされるまでにかかった時間です。[First Contentful Paint の指標の詳細](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "레이아웃 변경 횟수는 표시 영역 안에 보이는 요소의 이동을 측정합니다. [레이아웃 변경 횟수 측정항목에 관해 자세히 알아보기](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint(다음 페인트와의 상호작용)은 페이지 응답성, 즉 페이지가 사용자 입력에 시각적으로 반응하는 데 걸리는 시간을 측정합니다. [Interaction to Next Paint(다음 페인트와의 상호작용) 측정항목에 관해 자세히 알아보기](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "콘텐츠가 포함된 첫 페인트는 첫 번째 텍스트 또는 이미지가 표시되는 시간을 나타냅니다. [콘텐츠가 포함된 첫 페인트 측정항목에 관해 자세히 알아보기](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Nustatant kaupiamąjį išdėstymo poslinkį įvertinamas peržiūros srityje matomų elementų judėjimas. [Sužinokite daugiau apie kaupiamojo išdėstymo poslinkio metriką](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Laikas nuo sąveikos iki kito žymėjimo įvertina puslapio atsako laiką: kiek laiko praeina, kol matomas puslapio atsakas į naudotojo įvestį. [Sužinokite daugiau apie laiką nuo sąveikos iki kito žymėjimo](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Pirmas turiningas žymėjimas nurodo laiką, kada pažymimas pirmasis tekstas ar vaizdas. [Sužinokite daugiau apie pirmo turiningo žymėjimo metriką](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative Layout Shift norāda redzamo elementu kustību skatvietā. [Uzziniet vairāk par rādītāju “Cumulative Layout Shift”](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint nosaka lapas atbildi — laiku, kas lapai nepieciešams, lai redzami reaģētu uz lietotāja ievadi. [Uzziniet vairāk par rādītāju “Interaction to Next Paint”](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Rādītājs “First Contentful Paint” ataino laiku, kad tiek atveidots pirmais teksts vai attēls. [Uzziniet vairāk par rādītāju “First Contentful Paint”](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulatieve indelingsverschuiving (CLS) meet de beweging van zichtbare elementen binnen de viewport. [Meer informatie over de statistiek Cumulatieve indelingsverschuiving (CLS)](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interactie tot Volgende weergave meet de responsiviteit van de pagina, dat wil zeggen hoelang het duurt voordat de pagina zichtbaar reageert op gebruikersinvoer. [Meer informatie over de statistiek Interactie tot Volgende weergave](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Eerste weergave met content (FCP) geeft de tijd aan waarbinnen de eerste tekst of afbeelding wordt weergegeven. [Meer informatie over de statistiek Eerste weergave met content (LCP)](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Akkumulert utseendeforskyvning (CLS) måler bevegelsene til synlige elementer i det synlige området. [Finn ut mer om beregningen Akkumulert utseendeforskyvning (CLS)](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Tid fra interaksjon til neste opptegning måler hvor responsiv siden er, altså hvor lang tid siden bruker på å gi en synlig respons på inndata fra brukerne. [Finn ut mer om beregningen Tid fra interaksjon til neste opptegning](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Den første innholdsrike opptegningen (FCP) markerer den første gangen tekst eller bilder tegnes opp. [Finn ut mer om beregningen Første innholdsrike opptegning (FCP)](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Zbiorcze przesunięcie układu to miara ruchu elementów w widocznym obszarze. [Więcej informacji o danych dotyczących zbiorczego przesunięcia układu](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Czas od interakcji do kolejnego wyrenderowania określa responsywność strony, czyli czas potrzebny do widocznej reakcji na dane wprowadzone przez użytkownika. [Więcej informacji o czasie od interakcji do kolejnego wyrenderowania](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Pierwsze wyrenderowanie treści oznacza czas wyrenderowania pierwszego tekstu lub obrazu. [Więcej informacji o danych pierwszego wyrenderowania treści](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "A Mudança de esquema cumulativo mede o movimento dos elementos visíveis na área visível. [Saiba mais acerca da métrica Mudança de esquema cumulativo](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "A interação até ao preenchimento seguinte mede a capacidade de resposta da página, bem como o tempo que esta demora a responder visivelmente à introdução do utilizador. [Saiba mais acerca da métrica Interação até ao preenchimento seguinte](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "O Primeiro preenchimento com conteúdo assinala o momento de preenchimento com o primeiro texto ou imagem. [Saiba mais acerca da métrica Primeiro preenchimento com conteúdo](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "\"Mudança de layout cumulativa\" mede o movimento de elementos visíveis na janela de visualização. [Saiba mais sobre a métrica \"Mudança de layout cumulativa\"](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "A métrica \"Interação com a próxima exibição\" mede a capacidade de resposta da página, ou seja, quanto tempo a página leva para responder de maneira visível à entrada do usuário. [Saiba mais sobre a métrica \"Interação com a próxima exibição\"](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "\"Primeira exibição de conteúdo\" marca o momento em que o primeiro texto ou imagem é disponibilizado. [Saiba mais sobre a métrica \"Primeira exibição de conteúdo\"](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative Layout Shift măsoară deplasarea elementelor vizibile în aria vizibilă. [Află mai multe despre valoarea Cumulative Layout Shift](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interacțiunea cu următoarea reprezentare măsoară receptivitatea paginii, adică timpul necesar pentru ca pagina să răspundă în mod vizibil la comanda utilizatorului. [Află mai multe despre valoarea Interacțiunea cu următoarea reprezentare](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint arată momentul când se redă primul text sau prima imagine. [Află mai multe despre valoarea First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Совокупное смещение макета – это величина, на которую смещаются видимые элементы области просмотра при загрузке. Подробнее о [совокупном смещении макета](https://web.dev/cls/)…"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Взаимодействие до следующей отрисовки – показатель скорости отклика страницы. Он отражает, через какое время становится виден ответ страницы на ввод данных пользователем. Подробнее [о взаимодействии до следующей отрисовки](https://web.dev/inp/)…"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Первая отрисовка контента – показатель, который отражает время между началом загрузки страницы и появлением первого изображения или блока текста. Подробнее [о первой отрисовке контента](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)…"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Kumulatívna zmena rozloženia meria pohyb viditeľných prvkov v rámci oblasti zobrazenia. [Ďalšie informácie o metrike Kumulatívna zmena rozloženia](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Čas od interakcie do ďalšieho vykreslenia meria responzívnosť stránky, teda ako dlho jej trvá viditeľne odpovedať na vstup používateľa. [Ďalšie informácie o metrike Čas od interakcie do ďalšieho vykreslenia](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Prvé vykreslenie obsahu označuje čas, za ktorý je vykreslený prvý text alebo obrázok. [Ďalšie informácie o metrike Prvé vykreslenie obsahu](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Kumulativna sprememba postavitve meri premikanje vidnih elementov znotraj vidnega območja. [Preberite več o meritvi »Kumulativna sprememba postavitve«](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interakcija do naslednjega izrisa meri odzivnost strani, kako dolgo traja, da se stran vidno odzove na vnos uporabnika. [Preberite več o meritvi interakcije do naslednjega izrisa](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Prvi vsebinski izris označuje čas, ko je izrisano prvo besedilo oziroma je izrisana prva slika. [Preberite več o meritvi prvega vsebinskega izrisa](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Kumulativni pomak sadržaja stranice meri kretanje vidljivih elemenata unutar oblasti prikaza. [Saznajte više o pokazatelju Kumulativni pomak sadržaja stranice](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interakcija do sledećeg prikazivanja meri brzinu odgovora stranice, koliko dugo stranici treba da vidljivo odgovori na unos korisnika. [Saznajte više o pokazatelju Interakcija do sledećeg prikazivanja](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Prvo prikazivanje sadržaja označava vreme kada se prikazuju prvi tekst ili slika. [Saznajte više o pokazatelju Prvo prikazivanje sadržaja](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Кумулативни помак садржаја странице мери кретање видљивих елемената унутар области приказа. [Сазнајте више о показатељу Кумулативни помак садржаја странице](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Интеракција до следећег приказивања мери брзину одговора странице, колико дуго страници треба да видљиво одговори на унос корисника. [Сазнајте више о показатељу Интеракција до следећег приказивања](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Прво приказивање садржаја означава време када се приказују први текст или слика. [Сазнајте више о показатељу Прво приказивање садржаја](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Kumulativ layoutförskjutning mäter rörelsen hos synliga element inom visningsområdet. [Läs mer om mätvärdet Kumulativ layoutförskjutning](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaktion till nästa uppritning mäter sidans responsivitet, hur lång tid det tar innan det syns att en sida svarar på indata från användare. [Läs mer om mätvärdet Interakation till nästa uppritning](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Första innehållsrenderingen anger när den första texten eller bilden ritades upp. [Läs mer om mätvärdet Första innehållsrenderingen](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "காட்சிப் பகுதிக்குள் தெரியக்கூடிய கூறுகளின் நகர்வை கியூமுலேட்டிவ் லேஅவுட் ஷிஃப்ட் அளவிடுகிறது. [கியூமுலேட்டிவ் லேஅவுட் ஷிஃப்ட் அளவீடு குறித்து மேலும் அறிக](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "செயல்-காட்சி நேரம் என்பது பக்கத்தின் பதிலளிக்கும் தன்மையை அளவிடுகிறது, அதாவது பயனர் உள்ளீட்டிற்குப் பக்கத்தின் தெரிவுநிலை எந்த அளவிற்கு உள்ளது என்பதை அளவிடுவது. [செயல்-காட்சி நேர அளவீடு குறித்து மேலும் அறிக](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "'உள்ளடக்கத்துடன் முதல் தோற்றம்' என்பது வார்த்தைகளோ படமோ முதலில் தோன்றும் நேரத்தைக் குறிக்கிறது. ['உள்ளடக்கத்துடன் முதல் தோற்றம்' அளவீடு குறித்து மேலும் அறிக](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "వీక్షణ పోర్ట్లో కనిపించే ఎలిమెంట్ల కదలికను క్యుములేటివ్ లేఅవుట్ షిఫ్ట్ కొలుస్తుంది. [క్యుములేటివ్ లేఅవుట్ షిఫ్ట్ కొలమానం గురించి మరింత తెలుసుకోండి](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint పేజీ ప్రతిస్పందనా తీరును కొలుస్తుంది, అంటే యూజర్ ఇన్పుట్కు ప్రత్యక్షంగా ప్రతిస్పందించడానికి పేజీకి ఎంత సమయం పడుతుందో కొలుస్తుంది. [Interaction to Next Paint కొలమానం గురించి మరింత తెలుసుకోండి](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "ఫస్ట్ కంటెంట్ఫుల్ పెయింట్ అనేది, మొదటి టెక్స్ట్ లేదా ఇమేజ్ పెయింట్ చేయబడిన సమయాన్ని గుర్తిస్తుంది. [ఫస్ట్ కంటెంట్ఫుల్ పెయింట్ కొలమానం గురించి మరింత తెలుసుకోండి](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "การเปลี่ยนเลย์เอาต์สะสมจะวัดการเคลื่อนไหวขององค์ประกอบที่มองเห็นได้ภายในวิวพอร์ต [ดูข้อมูลเพิ่มเติมเกี่ยวกับเมตริก Cumulative Layout Shift](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "การโต้ตอบกับ Next Paint จะวัดการตอบสนองของหน้าเว็บ ซึ่งเป็นระยะเวลาที่หน้าเว็บใช้ในการตอบสนองต่ออินพุตของผู้ใช้ [ดูข้อมูลเพิ่มเติมเกี่ยวกับเมตริก การโต้ตอบกับ Next Paint](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint ระบุเวลาที่มีการแสดงผลข้อความหรือรูปภาพครั้งแรก [ดูข้อมูลเพิ่มเติมเกี่ยวกับเมตริก First Contentful Paint](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative Layout Shift, görüntü alanı içindeki görünür öğelerin hareketini ölçer. [Cumulative Layout Shift metriği hakkında daha fazla bilgi edinin](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Sonraki Boyamayla Etkileşim, sayfanın tepkisini ve kullanıcı girişine görünür şekilde yanıt vermesinin ne kadar sürdüğünü ölçer. [Sonraki Boyamayla Etkileşim metriği hakkında daha fazla bilgi edinin](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "İlk Zengin İçerikli Boyama, ilk metnin veya resmin boyandığı zamanı işaret eder. [İlk zengin içerikli boyama metriği hakkında daha fazla bilgi edinin](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Сукупне зміщення макета вимірює рух видимих елементів у межах області перегляду. [Докладніше про показник \"Сукупне зміщення макета\".](https://web.dev/cls/)"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Показник Interaction to Next Paint вимірює, наскільки швидко сторінка може відповідати на ввід користувача. [Докладніше про показник Interaction to Next Paint.](https://web.dev/inp/)"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Перша візуалізація контенту показує, коли з’являється текст чи зображення. [Докладніше про показник \"Перша візуалізація контенту\".](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Điểm số tổng hợp về mức thay đổi bố cục đo lường mức độ dịch chuyển của các phần tử hiển thị trong khung nhìn. [Tìm hiểu thêm về chỉ số Điểm số tổng hợp về mức thay đổi bố cục](https://web.dev/cls/)."
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Hoạt động tương tác với thời gian hiển thị tiếp theo đo lường khả năng phản hồi của trang, thời gian trang cần để phản hồi hoạt động đầu vào của người dùng một cách rõ ràng. [Tìm hiểu thêm về chỉ số Hoạt động tương tác với thời gian hiển thị tiếp theo](https://web.dev/inp/)."
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "Chỉ số Hiển thị nội dung đầu tiên đánh dấu thời điểm hiển thị văn bản hoặc hình ảnh đầu tiên. [Tìm hiểu thêm về chỉ số Hiển thị nội dung đầu tiên](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)."
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "「累計版面配置轉移」會測量檢視區內可見元素的移動。[進一步瞭解「累計版面配置轉移」數據](https://web.dev/cls/)。"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "「互動至下一個繪製」會測量網頁回應速度,亦即網頁明顯回應使用者輸入內容所需的時間。[進一步瞭解「互動至下一個繪製」數據](https://web.dev/inp/)。"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "「首次內容繪製時間」標示繪製首個文字/首張圖片的時間。[進一步瞭解「首次內容繪製時間」數據](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)。"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "「累計版面配置轉移」指標是用於測量可見元素在可視區域內的移動情形。[進一步瞭解「累計版面配置位移」指標](https://web.dev/cls/)。"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "「與下一個顯示的內容互動」指標的用途是測量網頁回應,也就是網頁明顯回應使用者輸入內容所需的時間。[進一步瞭解「與下一個顯示的內容互動」指標](https://web.dev/inp/)。"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "首次顯示內容所需時間是指瀏覽器首次顯示文字或圖片的時間。[進一步瞭解「首次顯示內容所需時間」指標](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)。"
|
|
1117
1114
|
},
|
|
@@ -1109,9 +1109,6 @@
|
|
|
1109
1109
|
"core/audits/metrics/cumulative-layout-shift.js | description": {
|
|
1110
1110
|
"message": "Cumulative Layout Shift 旨在衡量可见元素在视口内的移动情况。[详细了解 Cumulative Layout Shift 指标](https://web.dev/cls/)。"
|
|
1111
1111
|
},
|
|
1112
|
-
"core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
|
1113
|
-
"message": "Interaction to Next Paint 用于衡量网页响应速度,即网页需要多久才会明显响应用户输入。[详细了解 Interaction to Next Paint 指标](https://web.dev/inp/)。"
|
|
1114
|
-
},
|
|
1115
1112
|
"core/audits/metrics/first-contentful-paint.js | description": {
|
|
1116
1113
|
"message": "First Contentful Paint 标记了绘制出首个文本或首张图片的时间。[详细了解 First Contentful Paint 指标](https://developer.chrome.com/docs/lighthouse/performance/first-contentful-paint/)。"
|
|
1117
1114
|
},
|