lighthouse 11.7.0-dev.20240406 → 11.7.0-dev.20240408
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/core/computed/metrics/cumulative-layout-shift.js +2 -2
- package/core/computed/trace-engine-result.js +1 -1
- package/core/config/default-config.js +0 -5
- package/core/gather/gatherers/trace-elements.d.ts +0 -10
- package/core/gather/gatherers/trace-elements.js +0 -19
- package/package.json +2 -2
- package/shared/localization/locales/ar-XB.json +0 -18
- package/shared/localization/locales/ar.json +0 -18
- package/shared/localization/locales/bg.json +0 -18
- package/shared/localization/locales/ca.json +0 -18
- package/shared/localization/locales/cs.json +0 -18
- package/shared/localization/locales/da.json +0 -18
- package/shared/localization/locales/de.json +0 -18
- package/shared/localization/locales/el.json +0 -18
- package/shared/localization/locales/en-GB.json +0 -18
- package/shared/localization/locales/en-US.json +0 -18
- package/shared/localization/locales/en-XA.json +0 -18
- package/shared/localization/locales/en-XL.json +0 -18
- package/shared/localization/locales/es-419.json +0 -18
- package/shared/localization/locales/es.json +0 -18
- package/shared/localization/locales/fi.json +0 -18
- package/shared/localization/locales/fil.json +0 -18
- package/shared/localization/locales/fr.json +0 -18
- package/shared/localization/locales/he.json +0 -18
- package/shared/localization/locales/hi.json +0 -18
- package/shared/localization/locales/hr.json +0 -18
- package/shared/localization/locales/hu.json +0 -18
- package/shared/localization/locales/id.json +0 -18
- package/shared/localization/locales/it.json +0 -18
- package/shared/localization/locales/ja.json +0 -18
- package/shared/localization/locales/ko.json +0 -18
- package/shared/localization/locales/lt.json +0 -18
- package/shared/localization/locales/lv.json +0 -18
- package/shared/localization/locales/nl.json +0 -18
- package/shared/localization/locales/no.json +0 -18
- package/shared/localization/locales/pl.json +0 -18
- package/shared/localization/locales/pt-PT.json +0 -18
- package/shared/localization/locales/pt.json +0 -18
- package/shared/localization/locales/ro.json +0 -18
- package/shared/localization/locales/ru.json +0 -18
- package/shared/localization/locales/sk.json +0 -18
- package/shared/localization/locales/sl.json +0 -18
- package/shared/localization/locales/sr-Latn.json +0 -18
- package/shared/localization/locales/sr.json +0 -18
- package/shared/localization/locales/sv.json +0 -18
- package/shared/localization/locales/ta.json +0 -18
- package/shared/localization/locales/te.json +0 -18
- package/shared/localization/locales/th.json +0 -18
- package/shared/localization/locales/tr.json +0 -18
- package/shared/localization/locales/uk.json +0 -18
- package/shared/localization/locales/vi.json +0 -18
- package/shared/localization/locales/zh-HK.json +0 -18
- package/shared/localization/locales/zh-TW.json +0 -18
- package/shared/localization/locales/zh.json +0 -18
- package/types/artifacts.d.ts +1 -13
- package/core/audits/layout-shift-elements.d.ts +0 -16
- package/core/audits/layout-shift-elements.js +0 -101
- package/core/audits/seo/plugins.d.ts +0 -15
- package/core/audits/seo/plugins.js +0 -150
- package/core/gather/gatherers/seo/embedded-content.d.ts +0 -10
- package/core/gather/gatherers/seo/embedded-content.js +0 -63
|
@@ -163,10 +163,10 @@ class CumulativeLayoutShift {
|
|
|
163
163
|
await processor.parse(/** @type {import('@paulirish/trace_engine').Types.TraceEvents.TraceEventData[]} */ (
|
|
164
164
|
events
|
|
165
165
|
));
|
|
166
|
-
if (!processor.
|
|
166
|
+
if (!processor.traceParsedData) {
|
|
167
167
|
throw new Error('null trace engine result');
|
|
168
168
|
}
|
|
169
|
-
return processor.
|
|
169
|
+
return processor.traceParsedData.LayoutShifts.sessionMaxScore;
|
|
170
170
|
};
|
|
171
171
|
const cumulativeLayoutShift = await run(allFrameShiftEvents.map(e => e.event));
|
|
172
172
|
const cumulativeLayoutShiftMainFrame = await run(mainFrameShiftEvents.map(e => e.event));
|
|
@@ -133,7 +133,6 @@ const defaultConfig = {
|
|
|
133
133
|
{id: 'CSSUsage', gatherer: 'css-usage'},
|
|
134
134
|
{id: 'Doctype', gatherer: 'dobetterweb/doctype'},
|
|
135
135
|
{id: 'DOMStats', gatherer: 'dobetterweb/domstats'},
|
|
136
|
-
{id: 'EmbeddedContent', gatherer: 'seo/embedded-content'},
|
|
137
136
|
{id: 'FontSize', gatherer: 'seo/font-size'},
|
|
138
137
|
{id: 'Inputs', gatherer: 'inputs'},
|
|
139
138
|
{id: 'IFrameElements', gatherer: 'iframe-elements'},
|
|
@@ -212,7 +211,6 @@ const defaultConfig = {
|
|
|
212
211
|
'third-party-facades',
|
|
213
212
|
'largest-contentful-paint-element',
|
|
214
213
|
'lcp-lazy-loaded',
|
|
215
|
-
'layout-shift-elements',
|
|
216
214
|
'layout-shifts',
|
|
217
215
|
'long-tasks',
|
|
218
216
|
'non-composited-animations',
|
|
@@ -329,7 +327,6 @@ const defaultConfig = {
|
|
|
329
327
|
'seo/is-crawlable',
|
|
330
328
|
'seo/robots-txt',
|
|
331
329
|
'seo/hreflang',
|
|
332
|
-
'seo/plugins',
|
|
333
330
|
'seo/canonical',
|
|
334
331
|
'seo/manual/structured-data',
|
|
335
332
|
'work-during-interaction',
|
|
@@ -485,7 +482,6 @@ const defaultConfig = {
|
|
|
485
482
|
{id: 'final-screenshot', weight: 0, group: 'hidden'},
|
|
486
483
|
{id: 'script-treemap-data', weight: 0, group: 'hidden'},
|
|
487
484
|
{id: 'resource-summary', weight: 0, group: 'hidden'},
|
|
488
|
-
{id: 'layout-shift-elements', weight: 0, group: 'hidden'},
|
|
489
485
|
],
|
|
490
486
|
},
|
|
491
487
|
'accessibility': {
|
|
@@ -615,7 +611,6 @@ const defaultConfig = {
|
|
|
615
611
|
{id: 'hreflang', weight: 1, group: 'seo-content'},
|
|
616
612
|
{id: 'canonical', weight: 1, group: 'seo-content'},
|
|
617
613
|
{id: 'font-size', weight: 1, group: 'seo-mobile'},
|
|
618
|
-
{id: 'plugins', weight: 1, group: 'seo-content'},
|
|
619
614
|
// Manual audits
|
|
620
615
|
{id: 'structured-data', weight: 0},
|
|
621
616
|
],
|
|
@@ -9,16 +9,6 @@ export type TraceElementData = {
|
|
|
9
9
|
type?: string;
|
|
10
10
|
};
|
|
11
11
|
declare class TraceElements extends BaseGatherer {
|
|
12
|
-
/**
|
|
13
|
-
* This function finds the top (up to 15) elements that shift on the page.
|
|
14
|
-
*
|
|
15
|
-
* @param {LH.Trace} trace
|
|
16
|
-
* @param {LH.Gatherer.Context} context
|
|
17
|
-
* @return {Promise<Array<{nodeId: number}>>}
|
|
18
|
-
*/
|
|
19
|
-
static getTopLayoutShiftElements(trace: LH.Trace, context: LH.Gatherer.Context): Promise<Array<{
|
|
20
|
-
nodeId: number;
|
|
21
|
-
}>>;
|
|
22
12
|
/**
|
|
23
13
|
* We want to a single representative node to represent the shift, so let's pick
|
|
24
14
|
* the one with the largest impact (size x distance moved).
|
|
@@ -28,7 +28,6 @@ import {TraceEngineResult} from '../../computed/trace-engine-result.js';
|
|
|
28
28
|
|
|
29
29
|
/** @typedef {{nodeId: number, animations?: {name?: string, failureReasonsMask?: number, unsupportedProperties?: string[]}[], type?: string}} TraceElementData */
|
|
30
30
|
|
|
31
|
-
const MAX_LAYOUT_SHIFT_ELEMENTS = 15;
|
|
32
31
|
const MAX_LAYOUT_SHIFTS = 15;
|
|
33
32
|
|
|
34
33
|
/**
|
|
@@ -66,22 +65,6 @@ class TraceElements extends BaseGatherer {
|
|
|
66
65
|
if (name) this.animationIdToName.set(id, name);
|
|
67
66
|
}
|
|
68
67
|
|
|
69
|
-
/**
|
|
70
|
-
* This function finds the top (up to 15) elements that shift on the page.
|
|
71
|
-
*
|
|
72
|
-
* @param {LH.Trace} trace
|
|
73
|
-
* @param {LH.Gatherer.Context} context
|
|
74
|
-
* @return {Promise<Array<{nodeId: number}>>}
|
|
75
|
-
*/
|
|
76
|
-
static async getTopLayoutShiftElements(trace, context) {
|
|
77
|
-
const {impactByNodeId} = await CumulativeLayoutShift.request(trace, context);
|
|
78
|
-
|
|
79
|
-
return [...impactByNodeId.entries()]
|
|
80
|
-
.sort((a, b) => b[1] - a[1])
|
|
81
|
-
.slice(0, MAX_LAYOUT_SHIFT_ELEMENTS)
|
|
82
|
-
.map(([nodeId]) => ({nodeId}));
|
|
83
|
-
}
|
|
84
|
-
|
|
85
68
|
/**
|
|
86
69
|
* We want to a single representative node to represent the shift, so let's pick
|
|
87
70
|
* the one with the largest impact (size x distance moved).
|
|
@@ -338,7 +321,6 @@ class TraceElements extends BaseGatherer {
|
|
|
338
321
|
const {mainThreadEvents} = processedTrace;
|
|
339
322
|
|
|
340
323
|
const lcpNodeData = await TraceElements.getLcpElement(trace, context);
|
|
341
|
-
const shiftElementsNodeData = await TraceElements.getTopLayoutShiftElements(trace, context);
|
|
342
324
|
const shiftsData = await TraceElements.getTopLayoutShifts(
|
|
343
325
|
trace, traceEngineResult, rootCauses, context);
|
|
344
326
|
const animatedElementData = await this.getAnimatedElements(mainThreadEvents);
|
|
@@ -347,7 +329,6 @@ class TraceElements extends BaseGatherer {
|
|
|
347
329
|
/** @type {Map<string, TraceElementData[]>} */
|
|
348
330
|
const backendNodeDataMap = new Map([
|
|
349
331
|
['largest-contentful-paint', lcpNodeData ? [lcpNodeData] : []],
|
|
350
|
-
['layout-shift-element', shiftElementsNodeData],
|
|
351
332
|
['layout-shift', shiftsData],
|
|
352
333
|
['animation', animatedElementData],
|
|
353
334
|
['responsiveness', responsivenessElementData ? [responsivenessElementData] : []],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "11.7.0-dev.
|
|
4
|
+
"version": "11.7.0-dev.20240408",
|
|
5
5
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
6
6
|
"main": "./core/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
"webtreemap-cdt": "^3.2.1"
|
|
180
180
|
},
|
|
181
181
|
"dependencies": {
|
|
182
|
-
"@paulirish/trace_engine": "^0.0.
|
|
182
|
+
"@paulirish/trace_engine": "^0.0.19",
|
|
183
183
|
"@sentry/node": "^6.17.4",
|
|
184
184
|
"axe-core": "^4.9.0",
|
|
185
185
|
"chrome-launcher": "^1.1.1",
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Largest Contentful Paint element"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Layout shift impact"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "These DOM elements were most affected by layout shifts. Some 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)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "Avoid large layout shifts"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Layout shift score"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "Document has a meta description"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Search engines can't index plugin content, and many devices restrict plugins or don't support them. [Learn more about avoiding plugins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "Document uses plugins"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "Document avoids plugins"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"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/)."
|
|
1477
1459
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "عنصر \"سرعة عرض أكبر جزء من المحتوى على الصفحة\""
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "تأثير متغيّرات التصميم"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "عناصر DOM هذه كانت الأكثر تأثّرًا بمتغيّرات التصميم. قد لا يتم تضمين بعض متغيّرات التصميم في قيمة مقياس متغيّرات التصميم التراكمية (CLS) بسبب [عملية الاستقطاع](https://web.dev/articles/cls#what_is_cls). [التعرُّف على كيفية تحسين متغيّرات التصميم التراكمية](https://web.dev/articles/optimize-cls)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "تجنُّب متغيّرات التصميم الكبيرة"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "نتيجة متغيّرات التصميم"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "يحتوي المستند على وصف تعريفي"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "لا يمكن لمحركات البحث فهرسة محتوى مكوِّن إضافي، وتحظر العديد من الأجهزة استخدام المكوِّنات الإضافية أو لا تتوافق معها. [مزيد من المعلومات حول تجنُّب استخدام المكوِّنات الإضافية](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "يستخدم المستند مكونات إضافية"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "يتجنّب المستند المكونات الإضافية"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "في حال كان ملف robots.txt مكتوبًا بصيغة غير صحيحة، يمكن أن يتعذّر على برامج الزحف فهم الطريقة المطلوبة للزحف إلى موقعك الإلكتروني أو فهرسته. [مزيد من المعلومات حول ملف robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
|
|
1477
1459
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Елемент, рендериран при изобразяване на най-голямото съдържание (LCP)"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Въздействие на структурните промени"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "Тези елементи на DOM са засегнати най-много от структурните промени. Някои структурни промени може да не са включени в стойността на показателя за CLS поради [рендериране на текущия прозорец](https://web.dev/articles/cls#what_is_cls). [Научете как да подобрите CLS](https://web.dev/articles/optimize-cls)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "Избягвайте големи промени в оформлението"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Резултат за структурната промяна"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "Документът има мета описание"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Търсещите машини не могат да индексират съдържание с приставки. Много устройства ограничават приставките или не ги поддържат. [Научете повече за избягването на приставки](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "В документа се използват приставки"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "Използването на приставки се избягва в документа"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "Ако файлът ви robots.txt не е форматиран правилно, роботите може да не могат да разберат как искате да бъде обходен или индексиран уебсайтът ви. [Научете повече за robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
|
|
1477
1459
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Element de renderització de l'element més gran amb contingut"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Impacte del canvi de disseny"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "Aquests són els elements de DOM que més s'han vist afectats pels canvis de disseny. És possible que alguns d'aquests canvis no s'incloguin al valor de la mètrica CLS a causa de la [normalització](https://web.dev/articles/cls#what_is_cls). [Informació sobre com pots millorar el CLS](https://web.dev/articles/optimize-cls)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "Evita els canvis de disseny importants"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Puntuació del canvi de disseny"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "El document té una metadescripció"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Els motors de cerca no poden indexar el contingut dels connectors. A més, molts dispositius restringeixen o no admeten connectors. [Obtén més informació sobre com pots evitar els connectors](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "El document utilitza connectors"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "El document evita els connectors"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "Si el format del fitxer robots.txt no és correcte, és possible que els rastrejadors no puguin entendre com vols que rastregin o indexin el lloc web. [Obtén més informació sobre robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
|
|
1477
1459
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Prvek Largest Contentful Paint"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Dopad změny rozvržení"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "Tyto prvky DOM byly změnami rozvržení ovlivněny nejvíce. Některé změny rozvržení do hodnoty metriky CLS vzhledem k [normalizaci ](https://web.dev/articles/cls#what_is_cls) nemusí zahrnuty. [Jak zlepšit CLS](https://web.dev/articles/optimize-cls)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "Zajistěte, aby nedocházelo k velkým změnám rozvržení"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Skóre změny rozvržení"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "Dokument má metaznačku „description“"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Vyhledávače obsah pluginů nedokážou indexovat a na mnoha zařízeních jsou pluginy zakázány nebo nejsou podporovány. [Jak se vyhnout použití pluginů](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "Dokument používá pluginy"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "V dokumentu nejsou použity pluginy"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "Pokud soubor robots.txt nemá správný formát, prohledávače nemusejí být schopné zjistit, jak váš web mají procházet nebo indexovat. [Další informace o souboru robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
|
|
1477
1459
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Element med Largest Contentful Paint"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Effekt af layoutskift"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "Disse DOM-elementer blev mest påvirket af layoutskift. Nogle layoutskift medtages muligvis ikke i CLS-metricværdien som følge af [windowing](https://web.dev/articles/cls#what_is_cls). [Se, hvordan du forbedrer CLS](https://web.dev/articles/optimize-cls)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "Undgå store layoutskift"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Resultat for layoutskift"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "Dokumentet har en metabeskrivelse"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Søgemaskiner kan ikke indeksere indhold i plugins, og mange enheder begrænser plugins eller understøtter dem ikke. [Få flere oplysninger om, hvordan du undgår plugins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "Dokumentet bruger plugins"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "Dokumentet undgår plugins"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "Hvis din robots.txt-fil indeholder fejl, kan crawlere muligvis ikke forstå, hvordan du vil have dit website crawlet eller indekseret. [Få flere oplysninger om robots.txt.](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
|
|
1477
1459
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Largest Contentful Paint-Element"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Auswirkung von Layout Shifts"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "Diese DOM-Elemente wurden am stärksten von Layout Shifts beeinflusst. Einige Layout Shifts sind aufgrund von [Windowing](https://web.dev/articles/cls#what_is_cls) möglicherweise nicht im CLS-Messwert enthalten. [Informationen zur Verbesserung der CLS](https://web.dev/articles/optimize-cls)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "Umfangreiche Layoutverschiebungen vermeiden"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Layout-Shift-Ergebnis"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "Dokument enthält eine Meta-Beschreibung"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Suchmaschinen können keine Plug-in-Inhalte indexieren. Außerdem werden Plug-ins auf vielen Geräten eingeschränkt oder nicht unterstützt. [Weitere Informationen zum Vermeiden von Plug-ins.](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "Dokument verwendet Plug-ins"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "Dokument verwendet keine Plug-ins"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "Wenn deine robots.txt-Datei fehlerhaft ist, können Crawler möglicherweise nicht nachvollziehen, wie deine Website gecrawlt oder indexiert werden soll. [Weitere Informationen zu robots.txt.](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
|
|
1477
1459
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Στοιχείο Μεγαλύτερης σχεδίασης με περιεχόμενο"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Αντίκτυπος αλλαγής διάταξης"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "Αυτά τα στοιχεία DOM επηρεάστηκαν περισσότερο από τις αλλαγές διάταξης. Ορισμένες αλλαγές στη διάταξη ενδέχεται να μην περιλαμβάνονται στην τιμή της μέτρησης CLS λόγω της [προσαρμογής σε παράθυρο](https://web.dev/articles/cls#what_is_cls). [Μάθετε πώς μπορείτε να βελτιώσετε το CLS](https://web.dev/articles/optimize-cls)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "Αποφύγετε τις μεγάλες μετατοπίσεις διάταξης"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Βαθμολογία αλλαγής διάταξης"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "Το έγγραφο έχει περιγραφή μεταδεδομένων"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Οι μηχανές αναζήτησης δεν μπορούν να καταλογοποιήσουν το περιεχόμενο των προσθηκών, ενώ πολλές συσκευές περιορίζουν ή δεν υποστηρίζουν τις προσθήκες. [Μάθετε περισσότερα σχετικά με την αποφυγή προσθηκών](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "Το έγγραφο χρησιμοποιεί προσθήκες"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "Το έγγραφο αποφεύγει τις προσθήκες"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "Εάν το αρχείο σας robots.txt έχει εσφαλμένη μορφή, οι ανιχνευτές ενδεχομένως να μην μπορούν να κατανοήσουν με ποιον τρόπο θέλετε να γίνεται η ανίχνευση ή η καταλογοποίηση του ιστοτόπου σας. [Μάθετε περισσότερα σχετικά με το robots.txt.](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
|
|
1477
1459
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Largest contentful paint element"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Layout shift impact"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "These DOM elements were most affected by layout shifts. Some 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)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "Avoid large layout shifts"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Layout shift score"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "Document has a meta description"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Search engines can't index plug-in content and many devices restrict plug-ins or don't support them. [Learn more about avoiding plugins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "Document uses plugins"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "Document avoids plugins"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"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/)."
|
|
1477
1459
|
},
|
|
@@ -1151,15 +1151,6 @@
|
|
|
1151
1151
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1152
1152
|
"message": "Largest Contentful Paint element"
|
|
1153
1153
|
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1155
|
-
"message": "Layout shift impact"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1158
|
-
"message": "These DOM elements were most affected by layout shifts. Some 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)"
|
|
1159
|
-
},
|
|
1160
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1161
|
-
"message": "Avoid large layout shifts"
|
|
1162
|
-
},
|
|
1163
1154
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1164
1155
|
"message": "Layout shift score"
|
|
1165
1156
|
},
|
|
@@ -1466,15 +1457,6 @@
|
|
|
1466
1457
|
"core/audits/seo/meta-description.js | title": {
|
|
1467
1458
|
"message": "Document has a meta description"
|
|
1468
1459
|
},
|
|
1469
|
-
"core/audits/seo/plugins.js | description": {
|
|
1470
|
-
"message": "Search engines can't index plugin content, and many devices restrict plugins or don't support them. [Learn more about avoiding plugins](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1473
|
-
"message": "Document uses plugins"
|
|
1474
|
-
},
|
|
1475
|
-
"core/audits/seo/plugins.js | title": {
|
|
1476
|
-
"message": "Document avoids plugins"
|
|
1477
|
-
},
|
|
1478
1460
|
"core/audits/seo/robots-txt.js | description": {
|
|
1479
1461
|
"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/)."
|
|
1480
1462
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "[Ļåŕĝéšţ Çöñţéñţƒûļ Þåîñţ éļéméñţ one two three four five six seven]"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "[Ļåýöûţ šĥîƒţ îmþåçţ one two three]"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "[Ţĥéšé ÐÖM éļéméñţš ŵéŕé möšţ 僃éçţéð бý ļåýöûţ šĥîƒţš. Šömé ļåýöûţ šĥîƒţš måý ñöţ бé îñçļûðéð îñ ţĥé ÇĻŠ méţŕîç våļûé ðûé ţö ᐅ[ᐊŵîñðöŵîñĝᐅ](https://web.dev/articles/cls#what_is_cls)ᐊ. ᐅ[ᐊĻéåŕñ ĥöŵ ţö îmþŕövé ÇĻŠᐅ](https://web.dev/articles/optimize-cls)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree twentyfour]"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "[Åvöîð ļåŕĝé ļåýöûţ šĥîƒţš one two three four five six]"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "[Ļåýöûţ šĥîƒţ šçöŕé one two three]"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "[Ðöçûméñţ ĥåš å méţå ðéšçŕîþţîöñ one two three four five six seven]"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "[Šéåŕçĥ éñĝîñéš çåñ'ţ îñðéx þļûĝîñ çöñţéñţ, åñð måñý ðévîçéš ŕéšţŕîçţ þļûĝîñš öŕ ðöñ'ţ šûþþöŕţ ţĥém. ᐅ[ᐊĻéåŕñ möŕé åбöûţ åvöîðîñĝ þļûĝîñšᐅ](https://developer.chrome.com/docs/lighthouse/seo/plugins/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone]"
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "[Ðöçûméñţ ûšéš þļûĝîñš one two three]"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "[Ðöçûméñţ åvöîðš þļûĝîñš one two three]"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "[΃ ýöûŕ ŕöбöţš.ţxţ ƒîļé îš måļƒöŕméð, çŕåŵļéŕš måý ñöţ бé åбļé ţö ûñðéŕšţåñð ĥöŵ ýöû ŵåñţ ýöûŕ ŵéбšîţé ţö бé çŕåŵļéð öŕ îñðéxéð. ᐅ[ᐊĻéåŕñ möŕé åбöûţ ŕöбöţš.ţxţᐅ](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo twentythree]"
|
|
1477
1459
|
},
|
|
@@ -1151,15 +1151,6 @@
|
|
|
1151
1151
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1152
1152
|
"message": "L̂ár̂ǵêśt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ êĺêḿêńt̂"
|
|
1153
1153
|
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1155
|
-
"message": "L̂áŷóût́ ŝh́îf́t̂ ím̂ṕâćt̂"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1158
|
-
"message": "T̂h́êśê D́ÔḾ êĺêḿêńt̂ś ŵér̂é m̂óŝt́ âf́f̂éĉt́êd́ b̂ý l̂áŷóût́ ŝh́îf́t̂ś. Ŝóm̂é l̂áŷóût́ ŝh́îf́t̂ś m̂áŷ ńôt́ b̂é îńĉĺûd́êd́ îń t̂h́ê ĆL̂Ś m̂ét̂ŕîć v̂ál̂úê d́ûé t̂ó [ŵín̂d́ôẃîńĝ](https://web.dev/articles/cls#what_is_cls). [Ĺêár̂ń ĥóŵ t́ô ím̂ṕr̂óv̂é ĈĹŜ](https://web.dev/articles/optimize-cls)"
|
|
1159
|
-
},
|
|
1160
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1161
|
-
"message": "Âv́ôíd̂ ĺâŕĝé l̂áŷóût́ ŝh́îf́t̂ś"
|
|
1162
|
-
},
|
|
1163
1154
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1164
1155
|
"message": "L̂áŷóût́ ŝh́îf́t̂ śĉór̂é"
|
|
1165
1156
|
},
|
|
@@ -1466,15 +1457,6 @@
|
|
|
1466
1457
|
"core/audits/seo/meta-description.js | title": {
|
|
1467
1458
|
"message": "D̂óĉúm̂én̂t́ ĥáŝ á m̂ét̂á d̂éŝćr̂íp̂t́îón̂"
|
|
1468
1459
|
},
|
|
1469
|
-
"core/audits/seo/plugins.js | description": {
|
|
1470
|
-
"message": "Ŝéâŕĉh́ êńĝín̂éŝ ćâń't̂ ín̂d́êx́ p̂ĺûǵîń ĉón̂t́êńt̂, án̂d́ m̂án̂ý d̂év̂íĉéŝ ŕêśt̂ŕîćt̂ ṕl̂úĝín̂ś ôŕ d̂ón̂'t́ ŝúp̂ṕôŕt̂ t́ĥém̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ áv̂óîd́îńĝ ṕl̂úĝín̂ś](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1473
|
-
"message": "D̂óĉúm̂én̂t́ ûśêś p̂ĺûǵîńŝ"
|
|
1474
|
-
},
|
|
1475
|
-
"core/audits/seo/plugins.js | title": {
|
|
1476
|
-
"message": "D̂óĉúm̂én̂t́ âv́ôíd̂ś p̂ĺûǵîńŝ"
|
|
1477
|
-
},
|
|
1478
1460
|
"core/audits/seo/robots-txt.js | description": {
|
|
1479
1461
|
"message": "Îf́ ŷóûŕ r̂ób̂ót̂ś.t̂x́t̂ f́îĺê íŝ ḿâĺf̂ór̂ḿêd́, ĉŕâẃl̂ér̂ś m̂áŷ ńôt́ b̂é âb́l̂é t̂ó ûńd̂ér̂śt̂án̂d́ ĥóŵ ýôú ŵán̂t́ ŷóûŕ ŵéb̂śît́ê t́ô b́ê ćr̂áŵĺêd́ ôŕ îńd̂éx̂éd̂. [Ĺêár̂ń m̂ór̂é âb́ôút̂ ŕôb́ôt́ŝ.t́x̂t́](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
|
|
1480
1462
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Elemento del Procesamiento de imagen con contenido más grande"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Impacto del cambio de diseño"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "Estos elementos del DOM se vieron más afectados por los cambios de diseño. Es posible que algunos cambios de diseño no se incluyan en el valor de la métrica CLS debido a la [renderización de ventanas](https://web.dev/articles/cls#what_is_cls). [Más información para mejorar CLS](https://web.dev/articles/optimize-cls)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "No realices cambios grandes en el diseño"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Puntuación de cambio de diseño"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "El documento tiene una metadescripción"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Los motores de búsqueda no pueden indexar el contenido de los complementos y muchos dispositivos limitan el uso de complementos o no los admiten. [Obtén más información para evitar los complementos](https://developer.chrome.com/docs/lighthouse/seo/plugins/)."
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "El documento usa complementos"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "Los documentos evitan el uso de complementos"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "Si el formato del archivo robots.txt no es correcto, es posible que los rastreadores no puedan interpretar cómo quieres que se rastree o indexe tu sitio web. [Obtén más información acerca de los archivos robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)."
|
|
1477
1459
|
},
|
|
@@ -1148,15 +1148,6 @@
|
|
|
1148
1148
|
"core/audits/largest-contentful-paint-element.js | title": {
|
|
1149
1149
|
"message": "Renderizado del mayor elemento con contenido"
|
|
1150
1150
|
},
|
|
1151
|
-
"core/audits/layout-shift-elements.js | columnContribution": {
|
|
1152
|
-
"message": "Impacto de los cambios de diseño"
|
|
1153
|
-
},
|
|
1154
|
-
"core/audits/layout-shift-elements.js | description": {
|
|
1155
|
-
"message": "Estos elementos DOM son los que se han visto más afectados por los cambios de diseño. Es posible que algunos cambios de diseño no se incluyan en el valor de la métrica CLS debido a la [normalización](https://web.dev/articles/cls#what_is_cls). [Descubre cómo mejorar el CLS](https://web.dev/articles/optimize-cls)"
|
|
1156
|
-
},
|
|
1157
|
-
"core/audits/layout-shift-elements.js | title": {
|
|
1158
|
-
"message": "Evitar cambios de diseño importantes"
|
|
1159
|
-
},
|
|
1160
1151
|
"core/audits/layout-shifts.js | columnScore": {
|
|
1161
1152
|
"message": "Puntuación del cambio de diseño"
|
|
1162
1153
|
},
|
|
@@ -1463,15 +1454,6 @@
|
|
|
1463
1454
|
"core/audits/seo/meta-description.js | title": {
|
|
1464
1455
|
"message": "El documento tiene una metadescripción"
|
|
1465
1456
|
},
|
|
1466
|
-
"core/audits/seo/plugins.js | description": {
|
|
1467
|
-
"message": "Los buscadores no pueden indexar el contenido de los complementos, y muchos dispositivos limitan el uso de complementos o no los admiten. [Más información sobre cómo evitar complementos](https://developer.chrome.com/docs/lighthouse/seo/plugins/)"
|
|
1468
|
-
},
|
|
1469
|
-
"core/audits/seo/plugins.js | failureTitle": {
|
|
1470
|
-
"message": "El documento usa complementos"
|
|
1471
|
-
},
|
|
1472
|
-
"core/audits/seo/plugins.js | title": {
|
|
1473
|
-
"message": "El documento no usa complementos"
|
|
1474
|
-
},
|
|
1475
1457
|
"core/audits/seo/robots-txt.js | description": {
|
|
1476
1458
|
"message": "Si el formato del archivo robots.txt no es correcto, es posible que los rastreadores no puedan interpretar cómo quieres que se rastree o indexe tu sitio web. [Más información sobre robots.txt](https://developer.chrome.com/docs/lighthouse/seo/invalid-robots-txt/)"
|
|
1477
1459
|
},
|