lighthouse 8.6.0-dev.20211024 → 8.6.0-dev.20211028
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/dist/report/flow.js +11 -11
- package/dist/report/standalone.js +2 -2
- package/flow-report/assets/styles.css +57 -1
- package/flow-report/src/common.tsx +8 -8
- package/flow-report/src/header.tsx +7 -8
- package/flow-report/src/i18n/ui-strings.js +2 -0
- package/flow-report/src/summary/category.tsx +73 -4
- package/flow-report/src/summary/summary.tsx +2 -1
- package/flow-report/src/util.ts +4 -4
- package/flow-report/src/wrappers/markdown.tsx +27 -0
- package/flow-report/src/wrappers/report.tsx +12 -0
- package/flow-report/test/common-test.tsx +6 -6
- package/flow-report/test/summary/category-test.tsx +111 -19
- package/flow-report/test/wrappers/markdown-test.tsx +29 -0
- package/jest.config.js +2 -2
- package/lighthouse-core/audits/byte-efficiency/modern-image-formats.js +4 -2
- package/lighthouse-core/audits/byte-efficiency/offscreen-images.js +11 -10
- package/lighthouse-core/audits/byte-efficiency/uses-optimized-images.js +5 -3
- package/lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js +2 -1
- package/lighthouse-core/audits/byte-efficiency/uses-responsive-images.js +2 -1
- package/lighthouse-core/audits/image-aspect-ratio.js +4 -3
- package/lighthouse-core/audits/image-size-responsive.js +3 -2
- package/lighthouse-core/audits/preload-lcp-image.js +7 -5
- package/lighthouse-core/audits/script-treemap-data.js +1 -1
- package/lighthouse-core/audits/unsized-images.js +1 -2
- package/package.json +7 -7
- package/report/README.md +1 -1
- package/report/generator/README.md +1 -1
- package/report/renderer/category-renderer.js +7 -0
- package/report/renderer/pwa-category-renderer.js +0 -10
- package/report/renderer/report-renderer.js +1 -1
- package/report/test/renderer/category-renderer-test.js +41 -0
- package/report/test/renderer/pwa-category-renderer-test.js +4 -4
- package/report/test/renderer/text-encoding-test.js +1 -1
- package/shared/localization/format.js +5 -9
- package/shared/localization/locales/ar-XB.json +8 -8
- package/shared/localization/locales/ar.json +8 -8
- package/shared/localization/locales/bg.json +8 -8
- package/shared/localization/locales/ca.json +8 -8
- package/shared/localization/locales/cs.json +8 -8
- package/shared/localization/locales/da.json +8 -8
- package/shared/localization/locales/de.json +8 -8
- package/shared/localization/locales/el.json +8 -8
- package/shared/localization/locales/en-GB.json +8 -8
- package/shared/localization/locales/en-US.json +27 -24
- package/shared/localization/locales/en-XA.json +8 -8
- package/shared/localization/locales/en-XL.json +27 -24
- package/shared/localization/locales/es-419.json +8 -8
- package/shared/localization/locales/es.json +8 -8
- package/shared/localization/locales/fi.json +8 -8
- package/shared/localization/locales/fil.json +8 -8
- package/shared/localization/locales/fr.json +8 -8
- package/shared/localization/locales/he.json +8 -8
- package/shared/localization/locales/hi.json +8 -8
- package/shared/localization/locales/hr.json +8 -8
- package/shared/localization/locales/hu.json +8 -8
- package/shared/localization/locales/id.json +8 -8
- package/shared/localization/locales/it.json +8 -8
- package/shared/localization/locales/ja.json +8 -8
- package/shared/localization/locales/ko.json +8 -8
- package/shared/localization/locales/lt.json +8 -8
- package/shared/localization/locales/lv.json +8 -8
- package/shared/localization/locales/nl.json +8 -8
- package/shared/localization/locales/no.json +8 -8
- package/shared/localization/locales/pl.json +8 -8
- package/shared/localization/locales/pt-PT.json +8 -8
- package/shared/localization/locales/pt.json +8 -8
- package/shared/localization/locales/ro.json +8 -8
- package/shared/localization/locales/ru.json +8 -8
- package/shared/localization/locales/sk.json +8 -8
- package/shared/localization/locales/sl.json +8 -8
- package/shared/localization/locales/sr-Latn.json +8 -8
- package/shared/localization/locales/sr.json +8 -8
- package/shared/localization/locales/sv.json +8 -8
- package/shared/localization/locales/ta.json +8 -8
- package/shared/localization/locales/te.json +8 -8
- package/shared/localization/locales/th.json +8 -8
- package/shared/localization/locales/tr.json +8 -8
- package/shared/localization/locales/uk.json +8 -8
- package/shared/localization/locales/vi.json +8 -8
- package/shared/localization/locales/zh-HK.json +8 -8
- package/shared/localization/locales/zh-TW.json +8 -8
- package/shared/localization/locales/zh.json +8 -8
- package/tsconfig-all.json +2 -2
- package/types/lhr/audit-details.d.ts +5 -5
|
@@ -47,16 +47,6 @@ export class PwaCategoryRenderer extends CategoryRenderer {
|
|
|
47
47
|
return categoryElem;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
/**
|
|
51
|
-
* Alias for backcompat.
|
|
52
|
-
* @param {LH.ReportResult.Category} category
|
|
53
|
-
* @param {Record<string, LH.Result.ReportGroup>} groupDefinitions
|
|
54
|
-
* @return {DocumentFragment}
|
|
55
|
-
*/
|
|
56
|
-
renderScoreGauge(category, groupDefinitions) {
|
|
57
|
-
return this.renderCategoryScore(category, groupDefinitions);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
50
|
/**
|
|
61
51
|
* @param {LH.ReportResult.Category} category
|
|
62
52
|
* @param {Record<string, LH.Result.ReportGroup>} groupDefinitions
|
|
@@ -212,7 +212,7 @@ export class ReportRenderer {
|
|
|
212
212
|
// The renderer for default categories is just the default CategoryRenderer.
|
|
213
213
|
// If the functions are equal, then renderer is an instance of CategoryRenderer.
|
|
214
214
|
// For example, the PWA category uses PwaCategoryRenderer, which overrides
|
|
215
|
-
// CategoryRenderer.
|
|
215
|
+
// CategoryRenderer.renderCategoryScore, so it would fail this check and be placed
|
|
216
216
|
// in the customGauges bucket.
|
|
217
217
|
defaultGauges.push(categoryGauge);
|
|
218
218
|
} else {
|
|
@@ -499,4 +499,45 @@ describe('CategoryRenderer', () => {
|
|
|
499
499
|
assert.ok(shouldBeWarning[0].textContent.includes(passingWarning));
|
|
500
500
|
});
|
|
501
501
|
});
|
|
502
|
+
|
|
503
|
+
it('renders audits by weight', () => {
|
|
504
|
+
const defaultAuditRef = {
|
|
505
|
+
title: '',
|
|
506
|
+
description: '',
|
|
507
|
+
scoreDisplayMode: 'numeric',
|
|
508
|
+
score: 0,
|
|
509
|
+
warnings: [],
|
|
510
|
+
};
|
|
511
|
+
const category = {
|
|
512
|
+
id: 'test',
|
|
513
|
+
title: 'Test',
|
|
514
|
+
score: 0,
|
|
515
|
+
auditRefs: [{
|
|
516
|
+
id: 'audit-1',
|
|
517
|
+
weight: 0,
|
|
518
|
+
result: {
|
|
519
|
+
id: 'audit-1',
|
|
520
|
+
...defaultAuditRef,
|
|
521
|
+
},
|
|
522
|
+
}, {
|
|
523
|
+
id: 'audit-2',
|
|
524
|
+
weight: 1,
|
|
525
|
+
result: {
|
|
526
|
+
id: 'audit-2',
|
|
527
|
+
...defaultAuditRef,
|
|
528
|
+
},
|
|
529
|
+
}, {
|
|
530
|
+
id: 'audit-3',
|
|
531
|
+
weight: 0.5,
|
|
532
|
+
result: {
|
|
533
|
+
id: 'audit-3',
|
|
534
|
+
...defaultAuditRef,
|
|
535
|
+
},
|
|
536
|
+
}],
|
|
537
|
+
};
|
|
538
|
+
const categoryDOM = renderer.render(category);
|
|
539
|
+
|
|
540
|
+
const auditEls = [...categoryDOM.querySelectorAll('.lh-audit')];
|
|
541
|
+
expect(auditEls.map(el => el.id)).toEqual(['audit-2', 'audit-3', 'audit-1']);
|
|
542
|
+
});
|
|
502
543
|
});
|
|
@@ -249,10 +249,10 @@ describe('PwaCategoryRenderer', () => {
|
|
|
249
249
|
});
|
|
250
250
|
});
|
|
251
251
|
|
|
252
|
-
describe('#
|
|
252
|
+
describe('#renderCategoryScore', () => {
|
|
253
253
|
it('renders an error score gauge in case of category error', () => {
|
|
254
254
|
category.score = null;
|
|
255
|
-
const badgeGauge = pwaRenderer.
|
|
255
|
+
const badgeGauge = pwaRenderer.renderCategoryScore(category, sampleResults.categoryGroups);
|
|
256
256
|
|
|
257
257
|
// Not a PWA gauge.
|
|
258
258
|
assert.strictEqual(badgeGauge.querySelector('.lh-gauge--pwa__wrapper'), null);
|
|
@@ -263,11 +263,11 @@ describe('PwaCategoryRenderer', () => {
|
|
|
263
263
|
});
|
|
264
264
|
|
|
265
265
|
it('renders score gauges with unique ids for items in <defs>', () => {
|
|
266
|
-
const gauge1 = pwaRenderer.
|
|
266
|
+
const gauge1 = pwaRenderer.renderCategoryScore(category, sampleResults.categoryGroups);
|
|
267
267
|
const gauge1Ids = [...gauge1.querySelectorAll('defs [id]')].map(el => el.id);
|
|
268
268
|
assert.ok(gauge1Ids.length > 2);
|
|
269
269
|
|
|
270
|
-
const gauge2 = pwaRenderer.
|
|
270
|
+
const gauge2 = pwaRenderer.renderCategoryScore(category, sampleResults.categoryGroups);
|
|
271
271
|
const gauge2Ids = [...gauge2.querySelectorAll('defs [id]')].map(el => el.id);
|
|
272
272
|
assert.ok(gauge2Ids.length === gauge1Ids.length);
|
|
273
273
|
|
|
@@ -41,6 +41,6 @@ describe('TextEncoding', () => {
|
|
|
41
41
|
await test('Some examples of emoji are 😃, 🧘🏻♂️, 🌍, 🍞, 🚗, 📞, 🎉, ♥️, 🍆, and 🏁.');
|
|
42
42
|
await test('.'.repeat(125183));
|
|
43
43
|
await test('😃'.repeat(125183));
|
|
44
|
-
await test(fs.readFileSync(LH_ROOT + '/
|
|
44
|
+
await test(fs.readFileSync(LH_ROOT + '/treemap/app/debug.json', 'utf-8'));
|
|
45
45
|
});
|
|
46
46
|
});
|
|
@@ -17,18 +17,14 @@ const DEFAULT_LOCALE = 'en-US';
|
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* The locale tags for the localized messages available to Lighthouse on disk.
|
|
20
|
-
* When bundled, these will be inlined by
|
|
20
|
+
* When bundled, these will be inlined by `inline-fs`.
|
|
21
21
|
* These locales are considered the "canonical" locales. We support other locales which
|
|
22
22
|
* are simply aliases to one of these. ex: es-AR (alias) -> es-419 (canonical)
|
|
23
23
|
*/
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
.filter(basename => basename.endsWith('.json') && !basename.endsWith('.ctc.json'))
|
|
29
|
-
.map(locale => locale.replace('.json', ''))
|
|
30
|
-
.sort();
|
|
31
|
-
}
|
|
24
|
+
const CANONICAL_LOCALES = fs.readdirSync(__dirname + '/locales/')
|
|
25
|
+
.filter(basename => basename.endsWith('.json') && !basename.endsWith('.ctc.json'))
|
|
26
|
+
.map(locale => locale.replace('.json', ''))
|
|
27
|
+
.sort();
|
|
32
28
|
|
|
33
29
|
/** @typedef {import('intl-messageformat-parser').Element} MessageElement */
|
|
34
30
|
/** @typedef {import('intl-messageformat-parser').ArgumentElement} ArgumentElement */
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "The URL you have provided appears to be invalid."
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "All"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "All Scripts"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "Coverage"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "Duplicate Modules"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "Resource Bytes"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "Name"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "Toggle Table"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "Unused Bytes"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "يبدو أن عنوان URL الذي قدمته غير صحيح."
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "الكل"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "جميع النصوص البرمجية"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "التغطية"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "الوحدات المكرَّرة"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "حجم الموارد بوحدة البايت"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "الاسم"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "تبديل الجدول"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "وحدات بايت غير المستخدمة"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "Предоставеният от вас URL адрес изглежда невалиден."
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "Всички"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "Всички скриптове"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "Обхват"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "Дублиращи се модули"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "Байтове на ресурсите"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "Име"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "Превключване на таблицата"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "Неизползвани байтове"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "Sembla que l'URL que has proporcionat no és vàlid."
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "Tot"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "Tots els scripts"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "Cobertura"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "Mòduls duplicats"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "Bytes del recurs"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "Nom"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "Commuta la taula"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "Bytes no utilitzats"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "Adresa URL, kterou jste poskytli, se zdá být neplatná."
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "Vše"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "Všechna písma"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "Pokrytí"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "Duplicitní moduly"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "Počet bajtů zdroje"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "Název"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "Zobrazit nebo skrýt tabulku"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "Nevyužité bajty"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "Den angivne webadresse lader til at være ugyldig."
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "Alle"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "Alle scripts"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "Dækning"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "Identiske moduler"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "Bytes i ressourcefil"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "Navn"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "Vis/skjul tabel"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "Ubrugte bytes"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "Die von Ihnen angegebene URL scheint ungültig zu sein."
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "Alles"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "Alle Skripts"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "Abdeckung"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "Doppelte Module"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "Ressourcengröße in Byte"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "Name"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "Tabelle ein- oder ausblenden"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "Nicht verwendete Byte"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "Το URL που παρείχατε φαίνεται ότι δεν είναι έγκυρο."
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "Όλα"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "Όλες οι γραφές"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "Κάλυψη"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "Διπλότυπες λειτουργικές μονάδες"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "Byte πόρου"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "Όνομα"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "Εναλλαγή πίνακα"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "Byte που δεν χρησιμοποιούνται"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "The URL that you have provided appears to be invalid."
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "All"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "All scripts"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "Coverage"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "Duplicate modules"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "Resource bytes"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "Name"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "Toggle table"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "Unused bytes"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
@@ -59,6 +59,9 @@
|
|
|
59
59
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
60
|
"message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
|
|
61
61
|
},
|
|
62
|
+
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
+
"message": "Highest impact"
|
|
64
|
+
},
|
|
62
65
|
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
63
66
|
"message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
|
|
64
67
|
},
|
|
@@ -2087,30 +2090,6 @@
|
|
|
2087
2090
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2088
2091
|
"message": "The URL you have provided appears to be invalid."
|
|
2089
2092
|
},
|
|
2090
|
-
"lighthouse-treemap/app/src/util.js | allLabel": {
|
|
2091
|
-
"message": "All"
|
|
2092
|
-
},
|
|
2093
|
-
"lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2094
|
-
"message": "All Scripts"
|
|
2095
|
-
},
|
|
2096
|
-
"lighthouse-treemap/app/src/util.js | coverageColumnName": {
|
|
2097
|
-
"message": "Coverage"
|
|
2098
|
-
},
|
|
2099
|
-
"lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2100
|
-
"message": "Duplicate Modules"
|
|
2101
|
-
},
|
|
2102
|
-
"lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
|
|
2103
|
-
"message": "Resource Bytes"
|
|
2104
|
-
},
|
|
2105
|
-
"lighthouse-treemap/app/src/util.js | tableColumnName": {
|
|
2106
|
-
"message": "Name"
|
|
2107
|
-
},
|
|
2108
|
-
"lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2109
|
-
"message": "Toggle Table"
|
|
2110
|
-
},
|
|
2111
|
-
"lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
|
|
2112
|
-
"message": "Unused Bytes"
|
|
2113
|
-
},
|
|
2114
2093
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2115
2094
|
"message": "For animated content, use [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) to minimize CPU usage when the content is offscreen."
|
|
2116
2095
|
},
|
|
@@ -2506,5 +2485,29 @@
|
|
|
2506
2485
|
},
|
|
2507
2486
|
"report/renderer/util.js | warningHeader": {
|
|
2508
2487
|
"message": "Warnings: "
|
|
2488
|
+
},
|
|
2489
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2490
|
+
"message": "All"
|
|
2491
|
+
},
|
|
2492
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2493
|
+
"message": "All Scripts"
|
|
2494
|
+
},
|
|
2495
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2496
|
+
"message": "Coverage"
|
|
2497
|
+
},
|
|
2498
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2499
|
+
"message": "Duplicate Modules"
|
|
2500
|
+
},
|
|
2501
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2502
|
+
"message": "Resource Bytes"
|
|
2503
|
+
},
|
|
2504
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2505
|
+
"message": "Name"
|
|
2506
|
+
},
|
|
2507
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2508
|
+
"message": "Toggle Table"
|
|
2509
|
+
},
|
|
2510
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2511
|
+
"message": "Unused Bytes"
|
|
2509
2512
|
}
|
|
2510
2513
|
}
|
|
@@ -2069,28 +2069,28 @@
|
|
|
2069
2069
|
"lighthouse-core/lib/lh-error.js | urlInvalid": {
|
|
2070
2070
|
"message": "[Ţĥé ÛŔĻ ýöû ĥåvé þŕövîðéð åþþéåŕš ţö бé îñvåļîð. one two three four five six seven eight nine ten]"
|
|
2071
2071
|
},
|
|
2072
|
-
"
|
|
2072
|
+
"treemap/app/src/util.js | allLabel": {
|
|
2073
2073
|
"message": "[Åļļ one]"
|
|
2074
2074
|
},
|
|
2075
|
-
"
|
|
2075
|
+
"treemap/app/src/util.js | allScriptsDropdownLabel": {
|
|
2076
2076
|
"message": "[Åļļ Šçŕîþţš one two]"
|
|
2077
2077
|
},
|
|
2078
|
-
"
|
|
2078
|
+
"treemap/app/src/util.js | coverageColumnName": {
|
|
2079
2079
|
"message": "[Çövéŕåĝé one]"
|
|
2080
2080
|
},
|
|
2081
|
-
"
|
|
2081
|
+
"treemap/app/src/util.js | duplicateModulesLabel": {
|
|
2082
2082
|
"message": "[Ðûþļîçåţé Möðûļéš one two three]"
|
|
2083
2083
|
},
|
|
2084
|
-
"
|
|
2084
|
+
"treemap/app/src/util.js | resourceBytesLabel": {
|
|
2085
2085
|
"message": "[Ŕéšöûŕçé Бýţéš one two]"
|
|
2086
2086
|
},
|
|
2087
|
-
"
|
|
2087
|
+
"treemap/app/src/util.js | tableColumnName": {
|
|
2088
2088
|
"message": "[Ñåmé one]"
|
|
2089
2089
|
},
|
|
2090
|
-
"
|
|
2090
|
+
"treemap/app/src/util.js | toggleTableButtonLabel": {
|
|
2091
2091
|
"message": "[Ţöĝĝļé Ţåбļé one two]"
|
|
2092
2092
|
},
|
|
2093
|
-
"
|
|
2093
|
+
"treemap/app/src/util.js | unusedBytesLabel": {
|
|
2094
2094
|
"message": "[Ûñûšéð Бýţéš one two]"
|
|
2095
2095
|
},
|
|
2096
2096
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|