lighthouse 8.3.0-dev.20210907 → 8.3.0
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/changelog.md +1 -1
- package/dist/report/standalone.js +196 -0
- package/jest.config.js +0 -4
- package/lighthouse-cli/cli-flags.js +6 -14
- package/lighthouse-cli/run.js +1 -1
- package/lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js +3 -9
- package/lighthouse-cli/test/smokehouse/report-assert.js +16 -36
- package/lighthouse-core/audits/large-javascript-libraries.js +166 -0
- package/lighthouse-core/audits/seo/http-status-code.js +6 -2
- package/lighthouse-core/audits/viewport.js +1 -2
- package/lighthouse-core/config/config-helpers.js +75 -9
- package/lighthouse-core/config/config.js +50 -6
- package/lighthouse-core/config/constants.js +0 -1
- package/lighthouse-core/config/default-config.js +0 -3
- package/lighthouse-core/config/experimental-config.js +8 -0
- package/lighthouse-core/config/metrics-to-audits.js +0 -1
- package/lighthouse-core/fraggle-rock/config/config.js +4 -3
- package/lighthouse-core/fraggle-rock/config/default-config.js +1 -3
- package/lighthouse-core/fraggle-rock/config/validation.js +0 -201
- package/lighthouse-core/fraggle-rock/gather/base-artifacts.js +0 -4
- package/lighthouse-core/fraggle-rock/gather/navigation-runner.js +8 -16
- package/lighthouse-core/fraggle-rock/gather/runner-helpers.js +0 -4
- package/lighthouse-core/fraggle-rock/gather/session.js +5 -30
- package/lighthouse-core/gather/driver/navigation.js +6 -7
- package/lighthouse-core/gather/driver/wait-for-condition.js +0 -27
- package/lighthouse-core/gather/fetcher.js +7 -17
- package/lighthouse-core/gather/gather-runner.js +0 -1
- package/lighthouse-core/gather/gatherers/seo/robots-txt.js +6 -2
- package/lighthouse-core/gather/gatherers/seo/tap-targets.js +2 -2
- package/lighthouse-core/gather/gatherers/stacks.js +1 -1
- package/lighthouse-core/lib/asset-saver.js +2 -2
- package/lighthouse-core/lib/cdt/SDK.js +0 -1
- package/lighthouse-core/lib/csp-evaluator.js +4 -17
- package/{report/generator → lighthouse-core/lib}/file-namer.js +0 -0
- package/lighthouse-core/lib/i18n/README.md +1 -1
- package/lighthouse-core/lib/i18n/i18n.js +7 -7
- package/lighthouse-core/lib/i18n/locales/ar-XB.json +18 -0
- package/lighthouse-core/lib/i18n/locales/ar.json +18 -0
- package/lighthouse-core/lib/i18n/locales/bg.json +18 -0
- package/lighthouse-core/lib/i18n/locales/ca.json +18 -0
- package/lighthouse-core/lib/i18n/locales/cs.json +18 -0
- package/lighthouse-core/lib/i18n/locales/da.json +18 -0
- package/lighthouse-core/lib/i18n/locales/de.json +18 -0
- package/lighthouse-core/lib/i18n/locales/el.json +18 -0
- package/lighthouse-core/lib/i18n/locales/en-GB.json +18 -0
- package/lighthouse-core/lib/i18n/locales/en-US.json +18 -18
- package/lighthouse-core/lib/i18n/locales/en-XA.json +18 -0
- package/lighthouse-core/lib/i18n/locales/en-XL.json +18 -18
- package/lighthouse-core/lib/i18n/locales/es-419.json +18 -0
- package/lighthouse-core/lib/i18n/locales/es.json +18 -0
- package/lighthouse-core/lib/i18n/locales/fi.json +18 -0
- package/lighthouse-core/lib/i18n/locales/fil.json +18 -0
- package/lighthouse-core/lib/i18n/locales/fr.json +18 -0
- package/lighthouse-core/lib/i18n/locales/he.json +18 -0
- package/lighthouse-core/lib/i18n/locales/hi.json +18 -0
- package/lighthouse-core/lib/i18n/locales/hr.json +18 -0
- package/lighthouse-core/lib/i18n/locales/hu.json +18 -0
- package/lighthouse-core/lib/i18n/locales/id.json +18 -0
- package/lighthouse-core/lib/i18n/locales/it.json +18 -0
- package/lighthouse-core/lib/i18n/locales/ja.json +18 -0
- package/lighthouse-core/lib/i18n/locales/ko.json +18 -0
- package/lighthouse-core/lib/i18n/locales/lt.json +18 -0
- package/lighthouse-core/lib/i18n/locales/lv.json +18 -0
- package/lighthouse-core/lib/i18n/locales/nl.json +18 -0
- package/lighthouse-core/lib/i18n/locales/no.json +18 -0
- package/lighthouse-core/lib/i18n/locales/pl.json +18 -0
- package/lighthouse-core/lib/i18n/locales/pt-PT.json +18 -0
- package/lighthouse-core/lib/i18n/locales/pt.json +18 -0
- package/lighthouse-core/lib/i18n/locales/ro.json +18 -0
- package/lighthouse-core/lib/i18n/locales/ru.json +18 -0
- package/lighthouse-core/lib/i18n/locales/sk.json +18 -0
- package/lighthouse-core/lib/i18n/locales/sl.json +18 -0
- package/lighthouse-core/lib/i18n/locales/sr-Latn.json +18 -0
- package/lighthouse-core/lib/i18n/locales/sr.json +18 -0
- package/lighthouse-core/lib/i18n/locales/sv.json +18 -0
- package/lighthouse-core/lib/i18n/locales/ta.json +18 -0
- package/lighthouse-core/lib/i18n/locales/te.json +18 -0
- package/lighthouse-core/lib/i18n/locales/th.json +18 -0
- package/lighthouse-core/lib/i18n/locales/tr.json +18 -0
- package/lighthouse-core/lib/i18n/locales/uk.json +18 -0
- package/lighthouse-core/lib/i18n/locales/vi.json +18 -0
- package/lighthouse-core/lib/i18n/locales/zh-HK.json +18 -0
- package/lighthouse-core/lib/i18n/locales/zh-TW.json +18 -0
- package/lighthouse-core/lib/i18n/locales/zh.json +18 -0
- package/lighthouse-core/lib/large-javascript-libraries/bundlephobia-database.json +62 -0
- package/lighthouse-core/lib/large-javascript-libraries/library-suggestions.js +20 -0
- package/lighthouse-core/lib/network-request.js +1 -3
- package/lighthouse-core/lib/traces/pwmetrics-events.js +2 -2
- package/lighthouse-core/lib/url-shim.js +1 -7
- package/lighthouse-core/runner.js +1 -4
- package/lighthouse-core/util-commonjs.js +2 -2
- package/now.json +1 -1
- package/package.json +13 -20
- package/report/README.md +2 -2
- package/report/assets/standalone-template.html +1 -0
- package/report/assets/styles.css +27 -23
- package/report/assets/templates.html +40 -37
- package/report/clients/bundle.js +0 -1
- package/report/{package.json → clients/package.json} +0 -0
- package/report/clients/psi.js +3 -13
- package/report/clients/standalone.js +1 -1
- package/report/{types/buffer.d.ts → clients/treemap.js} +13 -11
- package/report/renderer/category-renderer.js +2 -2
- package/report/renderer/components.js +48 -46
- package/report/renderer/crc-details-renderer.js +16 -16
- package/report/renderer/details-renderer.js +1 -1
- package/report/renderer/dom.js +0 -17
- package/report/renderer/element-screenshot-renderer.js +9 -9
- package/{flow-report/test/setup/global-setup.ts → report/renderer/file-namer.js} +2 -5
- package/report/renderer/logger.js +4 -4
- package/report/renderer/package.json +4 -0
- package/report/renderer/report-renderer.js +11 -4
- package/report/renderer/report-ui-features.js +656 -43
- package/report/renderer/text-encoding.js +1 -1
- package/report/renderer/util.js +2 -2
- package/report/{generator/report-assets.js → report-assets.js} +3 -9
- package/report/{generator/report-generator.js → report-generator.js} +9 -37
- package/report/test/clients/package.json +4 -0
- package/report/test/clients/psi-test.js +1 -3
- package/report/test/renderer/category-renderer-test.js +3 -8
- package/report/test/renderer/components-test.js +0 -35
- package/report/test/renderer/crc-details-renderer-test.js +4 -5
- package/report/test/renderer/details-renderer-test.js +1 -3
- package/report/test/renderer/dom-test.js +6 -8
- package/report/test/renderer/i18n-test.js +0 -1
- package/report/test/renderer/package.json +4 -0
- package/report/test/renderer/performance-category-renderer-test.js +27 -30
- package/report/test/renderer/pwa-category-renderer-test.js +1 -2
- package/report/test/renderer/report-renderer-test.js +0 -1
- package/report/test/renderer/report-ui-features-test.js +28 -20
- package/report/test/renderer/snippet-renderer-test.js +0 -1
- package/report/test/renderer/text-encoding-test.js +0 -2
- package/report/test/renderer/util-test.js +0 -1
- package/report/test/{generator/report-generator-test.js → report-generator-test.js} +7 -9
- package/third-party/chromium-synchronization/installability-errors-test.js +27 -28
- package/third-party/snyk/snapshot.json +0 -2
- package/tsconfig.json +5 -24
- package/types/artifacts.d.ts +18 -5
- package/types/{lhr/audit-details.d.ts → audit-details.d.ts} +3 -18
- package/types/audit.d.ts +58 -7
- package/types/{lhr/budget.d.ts → budget.d.ts} +0 -0
- package/types/bundle-phobia-cli/index.d.ts +40 -0
- package/types/config.d.ts +8 -3
- package/types/externs.d.ts +119 -5
- package/types/gatherer.d.ts +2 -3
- package/types/global-lh.d.ts +14 -16
- package/{report/types/report-result.d.ts → types/html-renderer.d.ts} +17 -8
- package/types/{lhr/i18n.d.ts → i18n.d.ts} +25 -2
- package/types/{lhr/lhr.d.ts → lhr.d.ts} +9 -41
- package/types/smokehouse.d.ts +3 -3
- package/types/{lhr/treemap.d.ts → treemap.d.ts} +3 -3
- package/flow-report/assets/standalone-flow-template.html +0 -38
- package/flow-report/assets/styles.css +0 -310
- package/flow-report/jest.config.js +0 -24
- package/flow-report/src/app.tsx +0 -40
- package/flow-report/src/common.tsx +0 -72
- package/flow-report/src/icons.tsx +0 -96
- package/flow-report/src/sidebar/flow.tsx +0 -72
- package/flow-report/src/sidebar/sidebar.tsx +0 -89
- package/flow-report/src/summary/summary.tsx +0 -178
- package/flow-report/src/util.ts +0 -160
- package/flow-report/src/wrappers/gauge.tsx +0 -40
- package/flow-report/src/wrappers/report-renderer.tsx +0 -46
- package/flow-report/src/wrappers/report.tsx +0 -71
- package/flow-report/standalone-flow.tsx +0 -23
- package/flow-report/test/app-test.tsx +0 -48
- package/flow-report/test/common-test.tsx +0 -131
- package/flow-report/test/setup/env-setup.ts +0 -25
- package/flow-report/test/sidebar/flow-test.tsx +0 -71
- package/flow-report/test/sidebar/sidebar-test.tsx +0 -53
- package/flow-report/test/summary/summary-test.tsx +0 -132
- package/flow-report/test/util-test.tsx +0 -109
- package/flow-report/tsconfig.json +0 -39
- package/flow-report/types/flow-report.d.ts +0 -27
- package/lighthouse-core/audits/lcp-lazy-loaded.js +0 -83
- package/report/.eslintrc.cjs +0 -33
- package/report/generator/README.md +0 -9
- package/report/generator/flow-report-assets.js +0 -20
- package/report/generator/package.json +0 -4
- package/report/generator/tsconfig.json +0 -28
- package/report/renderer/drop-down-menu.js +0 -215
- package/report/renderer/features-util.js +0 -26
- package/report/renderer/open-tab.js +0 -137
- package/report/renderer/topbar-features.js +0 -309
- package/report/test/generator/file-namer-test.js +0 -28
- package/report/test/generator/package.json +0 -4
- package/report/test-assets/faux-psi-template.html +0 -126
- package/report/test-assets/faux-psi.js +0 -92
- package/report/tsconfig.json +0 -39
- package/report/types/augment-dom.d.ts +0 -24
- package/report/types/html-renderer.d.ts +0 -28
- package/types/lhr/audit-result.d.ts +0 -59
- package/types/lhr/flow.d.ts +0 -16
- package/types/lhr/settings.d.ts +0 -105
- package/types/lhr/tsconfig.json +0 -24
- package/types/query-selector.d.ts +0 -36
|
@@ -39,7 +39,7 @@ To a typical developer, the pipeline looks like this:
|
|
|
39
39
|
$ yarn i18n:collect-strings
|
|
40
40
|
|
|
41
41
|
# Test to see that the new translations are valid and apply to all strings
|
|
42
|
-
$
|
|
42
|
+
$ node lighthouse-core/scripts/build-report-for-autodeployment.js && open dist/xl-accented/index.html
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
Note: Why do `en-US` and `en-XL` get baked early? We write all our strings in `en-US` by default, so they do not need to be translated, so it can be immediately baked without going to the translators. Similarly, `en-XL` is a debugging language, it is an automated version of `en-US` that simply adds markers to `en` strings in order to make it obvious that something has or hasn't been translated. So neither of these files need to go to translators to be used, and both can be used at develop-time to help developer i18n workflow.
|
|
@@ -340,19 +340,19 @@ function _formatPathAsString(pathInLHR) {
|
|
|
340
340
|
|
|
341
341
|
/**
|
|
342
342
|
* @param {LH.Locale} locale
|
|
343
|
-
* @return {
|
|
343
|
+
* @return {LH.I18NRendererStrings}
|
|
344
344
|
*/
|
|
345
345
|
function getRendererFormattedStrings(locale) {
|
|
346
346
|
const localeMessages = LOCALES[locale];
|
|
347
347
|
if (!localeMessages) throw new Error(`Unsupported locale '${locale}'`);
|
|
348
348
|
|
|
349
349
|
const icuMessageIds = Object.keys(localeMessages).filter(f => f.startsWith('report/'));
|
|
350
|
-
/** @type {
|
|
351
|
-
const strings = {};
|
|
350
|
+
const strings = /** @type {LH.I18NRendererStrings} */ ({});
|
|
352
351
|
for (const icuMessageId of icuMessageIds) {
|
|
353
|
-
const [filename,
|
|
352
|
+
const [filename, varName] = icuMessageId.split(' | ');
|
|
354
353
|
if (!filename.endsWith('util.js')) throw new Error(`Unexpected message: ${icuMessageId}`);
|
|
355
354
|
|
|
355
|
+
const key = /** @type {keyof LH.I18NRendererStrings} */ (varName);
|
|
356
356
|
strings[key] = localeMessages[icuMessageId].message;
|
|
357
357
|
}
|
|
358
358
|
|
|
@@ -463,12 +463,12 @@ function getFormatted(icuMessageOrRawString, locale) {
|
|
|
463
463
|
* that location.
|
|
464
464
|
* @param {unknown} inputObject
|
|
465
465
|
* @param {LH.Locale} locale
|
|
466
|
-
* @return {LH.
|
|
466
|
+
* @return {LH.IcuMessagePaths}
|
|
467
467
|
*/
|
|
468
468
|
function replaceIcuMessages(inputObject, locale) {
|
|
469
469
|
/**
|
|
470
470
|
* @param {unknown} subObject
|
|
471
|
-
* @param {LH.
|
|
471
|
+
* @param {LH.IcuMessagePaths} icuMessagePaths
|
|
472
472
|
* @param {string[]} pathInLHR
|
|
473
473
|
*/
|
|
474
474
|
function replaceInObject(subObject, icuMessagePaths, pathInLHR = []) {
|
|
@@ -498,7 +498,7 @@ function replaceIcuMessages(inputObject, locale) {
|
|
|
498
498
|
}
|
|
499
499
|
}
|
|
500
500
|
|
|
501
|
-
/** @type {LH.
|
|
501
|
+
/** @type {LH.IcuMessagePaths} */
|
|
502
502
|
const icuMessagePaths = {};
|
|
503
503
|
replaceInObject(inputObject, icuMessagePaths);
|
|
504
504
|
return icuMessagePaths;
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Allowed with warning"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Library"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Large JavaScript libraries can lead to poor performance. Prefer smaller, functionally equivalent libraries to reduce your bundle size. [Learn more](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{1 large library found}zero{# large libraries found}two{# large libraries found}few{# large libraries found}many{# large libraries found}other{# large libraries found}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Replace unnecessarily large JavaScript libraries"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Avoids large JavaScript libraries with smaller alternatives"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "This is the largest contentful element painted within the viewport. [Learn More](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "{keyword} seems to be an invalid keyword."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "'unsafe-inline' allows the execution of unsafe in-page scripts and event handlers. Consider using CSP nonces or hashes to allow scripts individually."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Consider adding 'unsafe-inline' (ignored by browsers supporting nonces/hashes) to be backward compatible with older browsers."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "مسموح به مع التحذير"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "مكتبة"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "يمكن أن تؤدّي مكتبات JavaScript الكبيرة إلى ضعف في الأداء. من الأفضل أن تكون المكتبات صغيرة ومتكافئة وظيفيًا لتقليص حجم الحِزمة. [مزيد من المعلومات](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)"
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{تم العثور على مكتبة كبيرة واحدة}zero{تم العثور على # مكتبة كبيرة}two{تم العثور على مكتبتَين كبيرتَين}few{تم العثور على # مكتبات كبيرة}many{تم العثور على # مكتبة كبيرة}other{تم العثور على # مكتبة كبيرة}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "تبديل مكتبات JavaScript الكبيرة التي لا تهمّك"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "يتم تجنُّب مكتبات JavaScript الكبيرة باستخدام مكتبات صغيرة"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "هذا هو الجزء من المحتوى الذي تم عرضه بأكبر سرعة على الصفحة ضمن إطار العرض. [مزيد من المعلومات](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "الكلمة الرئيسية {keyword} غير صالحة."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "يسمح 'unsafe-inline' بتنفيذ نصوص برمجية ومعالجات أحداث غير آمنة في الصفحة. ننصحك باستخدام أرقام CSP الخاصة أو أجزائها للسماح بالنصوص البرمجية كل على حدة."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "ننصحك بإضافة الأمر التوجيهي 'unsafe-inline' (الذي تتجاهله المتصفِّحات المتوافقة مع nonces/hashes) لجعل CSP متوافقة مع أنظمة المتصفِّحات القديمة."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Разрешено с предупреждение"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Библиотека"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Големите библиотеки на JavaScript могат да доведат до слаба ефективност. Приоритизирайте по-малки и еквивалентно функционални библиотеки, за да намалите размера на пакета си. [Научете повече](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{Бе открита 1 библиотека с голям размер}other{Бяха открити # библиотеки с голям размер}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Замяна на неоправдано големите библиотеки на JavaScript"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Избягва големи библиотеки на JavaScript чрез по-малки алтернативи"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Този елемент е най-голямото съдържание, изобразено в прозоречния изглед. [Научете повече](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "Изглежда, че {keyword} е невалидна ключова дума."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "unsafe-inline позволява изпълнението на опасни скриптове в страницата и манипулатори на събитието. Обмислете дали да не използвате nonce или хешове в CSP, за да разрешавате скриптове поотделно."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Обмислете дали да не добавите unsafe-inline (пренебрегва се от браузъри, които поддържат nonce и хешове), за да се обезпечи обратна съвместимост с по-стари браузъри."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Permès amb un advertiment"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Biblioteca"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Les biblioteques grans de JavaScript poden comportar un rendiment baix. Per reduir la mida del paquet, dona preferència a les biblioteques més petites que tinguin funcions equivalents. [Obtén més informació](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{1 biblioteca gran trobada}other{# biblioteques grans trobades}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Substitueix les biblioteques innecessàriament grans de JavaScript"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Evita les biblioteques grans de JavaScript amb alternatives més petites"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Aquest és l'element més gran amb contingut que hi ha a la finestra gràfica. [Més informació](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "\"{keyword}\" sembla una paraula clau no vàlida."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "La directiva \"unsafe-inline\" permet l'execució de scripts in-page i gestors d'esdeveniments no segurs. Pots utilitzar nonces o valors resum de la CSP per permetre els scripts individualment."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Pots optar per afegir \"unsafe-inline\" (els navegadors que admeten nonces o valors resum l'ignoren) perquè sigui retrocompatible amb navegadors més antics."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Povoleno s upozorněním"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Knihovna"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Velké javascriptové knihovny mohou snižovat rychlost. Abyste dosáhli menších balíčků, používejte raději menší funkčně rovnocenné knihovny. [Další informace](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)"
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{Byla nalezena 1 velká knihovna}few{Byly nalezeny # velké knihovny}many{Bylo nalezeno # velké knihovny}other{Bylo nalezeno # velkých knihoven}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Zbytečně velké javascriptové knihovny nahraďte jinými alternativami"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Místo velkých javascriptových knihoven jsou použity menší alternativy"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Toto je největší obsahový prvek vykreslený v zobrazované oblasti. [Další informace](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "{keyword} je zřejmě neplatné klíčové slovo."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "unsafe-inline umožňuje spouštění skriptů na stránce a obslužných rutin událostí, které nejsou bezpečné. Zvažte, zda nepoužít hodnoty nonce nebo hash CSP, abyste skripty povolovali individuálně."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Zvažte, zda nepřidat unsafe-inline (ignorováno prohlížeči, které podporují hodnoty nonce/hash) z důvodu zpětné kompatibility se staršími prohlížeči."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Tilladt med advarsel"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Bibliotek"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Store JavaScript-biblioteker kan kompromittere ydeevnen. Brug i stedet mindre og funktionelt tilsvarende biblioteker for at reducere størrelsen på dine pakker. [Få flere oplysninger](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{1 stort bibliotek blev fundet}one{# stort bibliotek blev fundet}other{# store biblioteker blev fundet}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Udskift unødvendigt store JavaScript-biblioteker"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Undgår store JavaScript-biblioteker ved hjælp af mindre alternativer"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Dette element har den største udfyldning af indhold i det synlige område. [Få flere oplysninger](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "{keyword} lader til at være et ugyldigt søgeord."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "\"unsafe-inline\" tillader, at der kan køres \"unsafe in-page\"-scripts og hændelseshandlers. Overvej at bruge CSP-nonces eller -hashes til at tillade scripts på individuel basis."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Overvej at tilføje \"unsafe-inline\" (ignoreres af browsere, der understøtter nonces/hashes) for at gøre CSP'en bagudkompatibel med ældre browsere."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Zugelassen mit Warnung"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Bibliothek"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Große JavaScript-Bibliotheken können die Ursache für schlechte Leistung sein. Verwenden Sie kleinere, funktionell gleichwertige Bibliotheken, um die Bundle-Größe zu verringern. [Weitere Informationen.](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)"
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{1 große Bibliothek gefunden}other{# große Bibliotheken gefunden}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Unnötig große JavaScript-Bibliotheken ersetzen"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Verhindert große JavaScript-Bibliotheken durch kleinere Alternativen"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Dies ist das größte Inhaltselement, das im Darstellungsbereich angezeigt wird. [Weitere Informationen](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "„{keyword}“ ist ein ungültiges Keyword."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "„unsafe-inline“ lässt die Ausführung unsicherer In-Page-Skripts und Event-Handler zu. Sie können CSP-Nonces oder -Hashes verwenden, um Skripts einzeln zuzulassen."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Sie können „unsafe-inline“ hinzufügen (wird von Browsern ignoriert, die Nonces/Hashes unterstützen), um mit älteren Browsern kompatibel zu sein."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Επιτρέπεται με προειδοποίηση"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Βιβλιοθήκη"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Οι μεγάλες βιβλιοθήκες JavaScript ενδέχεται να οδηγήσουν σε κακή απόδοση. Προτιμήστε μικρότερες βιβλιοθήκες με αντίστοιχη λειτουργικότητα για να μειώσετε το μέγεθος πακέτου. [Μάθετε περισσότερα](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{Βρέθηκε μία μεγάλη βιβλιοθήκη}other{Βρέθηκαν # μεγάλες βιβλιοθήκες}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Αντικατάσταση των βιβλιοθηκών JavaScript που είναι αδικαιολόγητα μεγάλες"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Αποφεύγει τις μεγάλες βιβλιοθήκες JavaScript με μικρότερες εναλλακτικές"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Αυτό είναι το μεγαλύτερο χρωματισμένο στοιχείο με περιεχόμενο στη θύρα προβολής. [Μάθετε περισσότερα](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "Το {keyword} φαίνεται ότι είναι μη έγκυρη λέξη-κλειδί."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "Το unsafe-inline επιτρέπει την εκτέλεση μη ασφαλών σεναρίων στη σελίδα και δεικτών χειρισμού συμβάντων. Εξετάστε το ενδεχόμενο χρήσης αριθμών nonce ή κατακερματισμών CSP για να επιτρέπεται μεμονωμένα σενάρια."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Εξετάστε το ενδεχόμενο να προσθέσετε το unsafe-inline (παραβλέπεται από προγράμματα περιήγησης που υποστηρίζουν αριθμούς nonce/κατακερματισμούς) για συμβατότητα με παλαιότερα προγράμματα περιήγησης."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Allowed with warning"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Library"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Large JavaScript libraries can lead to poor performance. Prefer smaller, functionally equivalent libraries to reduce your bundle size. [Learn more](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{1 large library found}other{# large libraries found}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Replace unnecessarily large JavaScript libraries"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Avoids large JavaScript libraries with smaller alternatives"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "This is the largest contentful element painted within the viewport. [Learn more](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "{keyword} seems to be an invalid keyword."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "'unsafe-inline' allows the execution of unsafe in-page scripts and event handlers. Consider using CSP nonces or hashes to allow scripts individually."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Consider adding 'unsafe-inline' (ignored by browsers supporting nonces/hashes) to be backward compatible with older browsers."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Allowed with warning"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Library"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Large JavaScript libraries can lead to poor performance. Prefer smaller, functionally equivalent libraries to reduce your bundle size. [Learn more](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount, plural,\n =1 {1 large library found}\n other {# large libraries found}\n }"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Replace unnecessarily large JavaScript libraries"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Avoids large JavaScript libraries with smaller alternatives"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "This is the largest contentful element painted within the viewport. [Learn More](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1007,15 +1022,6 @@
|
|
|
1007
1022
|
"lighthouse-core/audits/layout-shift-elements.js | title": {
|
|
1008
1023
|
"message": "Avoid large layout shifts"
|
|
1009
1024
|
},
|
|
1010
|
-
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1011
|
-
"message": "Above-the-fold images that are lazily loaded render later in the page lifecycle, which can delay the largest contentful paint. [Learn more](https://web.dev/lcp-lazy-loading/)."
|
|
1012
|
-
},
|
|
1013
|
-
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1014
|
-
"message": "Largest Contentful Paint image was lazily loaded"
|
|
1015
|
-
},
|
|
1016
|
-
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1017
|
-
"message": "Largest Contentful Paint image was not lazily loaded"
|
|
1018
|
-
},
|
|
1019
1025
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1020
1026
|
"message": "Lists the longest tasks on the main thread, useful for identifying worst contributors to input delay. [Learn more](https://web.dev/long-tasks-devtools/)"
|
|
1021
1027
|
},
|
|
@@ -1533,7 +1539,7 @@
|
|
|
1533
1539
|
"message": "Page has valid source maps"
|
|
1534
1540
|
},
|
|
1535
1541
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1536
|
-
"message": "
|
|
1542
|
+
"message": "Add a `<meta name=\"viewport\">` tag to optimize your app for mobile screens. [Learn more](https://web.dev/viewport/)."
|
|
1537
1543
|
},
|
|
1538
1544
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1539
1545
|
"message": "No `<meta name=\"viewport\">` tag found"
|
|
@@ -1722,7 +1728,7 @@
|
|
|
1722
1728
|
"message": "Missing base-uri allows injected <base> tags to set the base URL for all relative URLs (e.g. scripts) to an attacker controlled domain. Consider setting base-uri to 'none' or 'self'."
|
|
1723
1729
|
},
|
|
1724
1730
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1725
|
-
"message": "
|
|
1731
|
+
"message": "Elements controlled by object-src are considered legacy features. Consider setting object-src to 'none' to prevent the injection of plugins that execute unsafe scripts."
|
|
1726
1732
|
},
|
|
1727
1733
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1728
1734
|
"message": "script-src directive is missing. This can allow the execution of unsafe scripts."
|
|
@@ -1736,12 +1742,6 @@
|
|
|
1736
1742
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1737
1743
|
"message": "Nonces should be at least 8 characters long."
|
|
1738
1744
|
},
|
|
1739
|
-
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1740
|
-
"message": "Avoid using plain URL schemes ({keyword}) in this directive. Plain URL schemes allow scripts to be sourced from an unsafe domain."
|
|
1741
|
-
},
|
|
1742
|
-
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1743
|
-
"message": "Avoid using plain wildcards ({keyword}) in this directive. Plain wildcards allow scripts to be sourced from an unsafe domain."
|
|
1744
|
-
},
|
|
1745
1745
|
"lighthouse-core/lib/csp-evaluator.js | reportingDestinationMissing": {
|
|
1746
1746
|
"message": "No CSP configures a reporting destination. This makes it difficult to maintain the CSP over time and monitor for any breakages."
|
|
1747
1747
|
},
|
|
@@ -1749,7 +1749,7 @@
|
|
|
1749
1749
|
"message": "The reporting destination is only configured via the report-to directive. This directive is only supported in Chromium-based browsers so it is recommended to also use a report-uri directive."
|
|
1750
1750
|
},
|
|
1751
1751
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1752
|
-
"message": "Host allowlists can frequently be bypassed. Consider using CSP nonces or hashes
|
|
1752
|
+
"message": "Host allowlists can frequently be bypassed. Consider using 'strict-dynamic' in combination with CSP nonces or hashes."
|
|
1753
1753
|
},
|
|
1754
1754
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1755
1755
|
"message": "Unknown CSP directive."
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "[Åļļöŵéð ŵîţĥ ŵåŕñîñĝ one two three]"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "[Ļîбŕåŕý one]"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "[Ļåŕĝé ĴåvåŠçŕîþţ ļîбŕåŕîéš çåñ ļéåð ţö þööŕ þéŕƒöŕmåñçé. Þŕéƒéŕ šmåļļéŕ, ƒûñçţîöñåļļý éqûîvåļéñţ ļîбŕåŕîéš ţö ŕéðûçé ýöûŕ бûñðļé šîžé. ᐅ[ᐊĻéåŕñ möŕéᐅ](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)ᐊ. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{[1 ļåŕĝé ļîбŕåŕý ƒöûñð one two three four five]}other{[# ļåŕĝé ļîбŕåŕîéš ƒöûñð one two three four five]}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "[Ŕéþļåçé ûññéçéššåŕîļý ļåŕĝé ĴåvåŠçŕîþţ ļîбŕåŕîéš one two three four five six seven eight nine ten]"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "[Åvöîðš ļåŕĝé ĴåvåŠçŕîþţ ļîбŕåŕîéš ŵîţĥ šmåļļéŕ åļţéŕñåţîvéš one two three four five six seven eight nine ten eleven twelve]"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "[Ţĥîš îš ţĥé ļåŕĝéšţ çöñţéñţƒûļ éļéméñţ þåîñţéð ŵîţĥîñ ţĥé vîéŵþöŕţ. ᐅ[ᐊĻéåŕñ Möŕéᐅ](https://web.dev/lighthouse-largest-contentful-paint/)ᐊ one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen]"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "[ᐅ{keyword}ᐊ šéémš ţö бé åñ îñvåļîð ķéýŵöŕð. one two three four five six seven eight]"
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "['ûñšåƒé-îñļîñé' åļļöŵš ţĥé éxéçûţîöñ öƒ ûñšåƒé îñ-þåĝé šçŕîþţš åñð évéñţ ĥåñðļéŕš. Çöñšîðéŕ ûšîñĝ ÇŠÞ ñöñçéš öŕ ĥåšĥéš ţö åļļöŵ šçŕîþţš îñðîvîðûåļļý. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twentyone twentytwo]"
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "[Çöñšîðéŕ åððîñĝ 'ûñšåƒé-îñļîñé' (îĝñöŕéð бý бŕöŵšéŕš šûþþöŕţîñĝ ñöñçéš/ĥåšĥéš) ţö бé бåçķŵåŕð çömþåţîбļé ŵîţĥ öļðéŕ бŕöŵšéŕš. one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen]"
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Âĺl̂óŵéd̂ ẃît́ĥ ẃâŕn̂ín̂ǵ"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "L̂íb̂ŕâŕŷ"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "L̂ár̂ǵê J́âv́âŚĉŕîṕt̂ ĺîb́r̂ár̂íêś ĉán̂ ĺêád̂ t́ô ṕôór̂ ṕêŕf̂ór̂ḿâńĉé. P̂ŕêf́êŕ ŝḿâĺl̂ér̂, f́ûńĉt́îón̂ál̂ĺŷ éq̂úîv́âĺêńt̂ ĺîb́r̂ár̂íêś t̂ó r̂éd̂úĉé ŷóûŕ b̂ún̂d́l̂é ŝíẑé. [L̂éâŕn̂ ḿôŕê](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount, plural,\n =1 {1 l̂ár̂ǵê ĺîb́r̂ár̂ý f̂óûńd̂}\n other {# ĺâŕĝé l̂íb̂ŕâŕîéŝ f́ôún̂d́}\n }"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "R̂ép̂ĺâćê ún̂ńêćêśŝár̂íl̂ý l̂ár̂ǵê J́âv́âŚĉŕîṕt̂ ĺîb́r̂ár̂íêś"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Âv́ôíd̂ś l̂ár̂ǵê J́âv́âŚĉŕîṕt̂ ĺîb́r̂ár̂íêś ŵít̂h́ ŝḿâĺl̂ér̂ ál̂t́êŕn̂át̂ív̂éŝ"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "T̂h́îś îś t̂h́ê ĺâŕĝéŝt́ ĉón̂t́êńt̂f́ûĺ êĺêḿêńt̂ ṕâín̂t́êd́ ŵít̂h́îń t̂h́ê v́îéŵṕôŕt̂. [Ĺêár̂ń M̂ór̂é](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1007,15 +1022,6 @@
|
|
|
1007
1022
|
"lighthouse-core/audits/layout-shift-elements.js | title": {
|
|
1008
1023
|
"message": "Âv́ôíd̂ ĺâŕĝé l̂áŷóût́ ŝh́îf́t̂ś"
|
|
1009
1024
|
},
|
|
1010
|
-
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1011
|
-
"message": "Âb́ôv́ê-t́ĥé-f̂ól̂d́ îḿâǵêś t̂h́ât́ âŕê ĺâźîĺŷ ĺôád̂éd̂ ŕêńd̂ér̂ ĺât́êŕ îń t̂h́ê ṕâǵê ĺîf́êćŷćl̂é, ŵh́îćĥ ćâń d̂él̂áŷ t́ĥé l̂ár̂ǵêśt̂ ćôńt̂én̂t́f̂úl̂ ṕâín̂t́. [L̂éâŕn̂ ḿôŕê](https://web.dev/lcp-lazy-loading/)."
|
|
1012
|
-
},
|
|
1013
|
-
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1014
|
-
"message": "L̂ár̂ǵêśt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ îḿâǵê ẃâś l̂áẑíl̂ý l̂óâd́êd́"
|
|
1015
|
-
},
|
|
1016
|
-
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1017
|
-
"message": "L̂ár̂ǵêśt̂ Ćôńt̂én̂t́f̂úl̂ Ṕâín̂t́ îḿâǵê ẃâś n̂ót̂ ĺâźîĺŷ ĺôád̂éd̂"
|
|
1018
|
-
},
|
|
1019
1025
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1020
1026
|
"message": "L̂íŝt́ŝ t́ĥé l̂ón̂ǵêśt̂ t́âśk̂ś ôń t̂h́ê ḿâín̂ t́ĥŕêád̂, úŝéf̂úl̂ f́ôŕ îd́êńt̂íf̂ýîńĝ ẃôŕŝt́ ĉón̂t́r̂íb̂út̂ór̂ś t̂ó îńp̂út̂ d́êĺâý. [L̂éâŕn̂ ḿôŕê](https://web.dev/long-tasks-devtools/)"
|
|
1021
1027
|
},
|
|
@@ -1533,7 +1539,7 @@
|
|
|
1533
1539
|
"message": "P̂áĝé ĥáŝ v́âĺîd́ ŝóûŕĉé m̂áp̂ś"
|
|
1534
1540
|
},
|
|
1535
1541
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1536
|
-
"message": "Â `<meta name=\"viewport\">`
|
|
1542
|
+
"message": "Âd́d̂ á `<meta name=\"viewport\">` t̂áĝ t́ô óp̂t́îḿîźê ýôúr̂ áp̂ṕ f̂ór̂ ḿôb́îĺê śĉŕêén̂ś. [L̂éâŕn̂ ḿôŕê](https://web.dev/viewport/)."
|
|
1537
1543
|
},
|
|
1538
1544
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1539
1545
|
"message": "N̂ó `<meta name=\"viewport\">` t̂áĝ f́ôún̂d́"
|
|
@@ -1722,7 +1728,7 @@
|
|
|
1722
1728
|
"message": "M̂íŝśîńĝ b́âśê-úr̂í âĺl̂óŵś îńĵéĉt́êd́ <b̂áŝé> t̂áĝś t̂ó ŝét̂ t́ĥé b̂áŝé ÛŔL̂ f́ôŕ âĺl̂ ŕêĺât́îv́ê ÚR̂Ĺŝ (é.ĝ. śĉŕîṕt̂ś) t̂ó âń ât́t̂áĉḱêŕ ĉón̂t́r̂ól̂ĺêd́ d̂óm̂áîń. Ĉón̂śîd́êŕ ŝét̂t́îńĝ b́âśê-úr̂í t̂ó 'n̂ón̂é' ôŕ 'ŝél̂f́'."
|
|
1723
1729
|
},
|
|
1724
1730
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1725
|
-
"message": "
|
|
1731
|
+
"message": "Êĺêḿêńt̂ś ĉón̂t́r̂ól̂ĺêd́ b̂ý ôb́ĵéĉt́-ŝŕĉ ár̂é ĉón̂śîd́êŕêd́ l̂éĝáĉý f̂éât́ûŕêś. Ĉón̂śîd́êŕ ŝét̂t́îńĝ ób̂j́êćt̂-śr̂ć t̂ó 'n̂ón̂é' t̂ó p̂ŕêv́êńt̂ t́ĥé îńĵéĉt́îón̂ óf̂ ṕl̂úĝín̂ś t̂h́ât́ êx́êćût́ê ún̂śâf́ê śĉŕîṕt̂ś."
|
|
1726
1732
|
},
|
|
1727
1733
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1728
1734
|
"message": "ŝćr̂íp̂t́-ŝŕĉ d́îŕêćt̂ív̂é îś m̂íŝśîńĝ. T́ĥíŝ ćâń âĺl̂óŵ t́ĥé êx́êćût́îón̂ óf̂ ún̂śâf́ê śĉŕîṕt̂ś."
|
|
@@ -1736,12 +1742,6 @@
|
|
|
1736
1742
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1737
1743
|
"message": "N̂ón̂ćêś ŝh́ôúl̂d́ b̂é ât́ l̂éâśt̂ 8 ćĥár̂áĉt́êŕŝ ĺôńĝ."
|
|
1738
1744
|
},
|
|
1739
|
-
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1740
|
-
"message": "Âv́ôíd̂ úŝín̂ǵ p̂ĺâín̂ ÚR̂Ĺ ŝćĥém̂éŝ ({keyword}) ín̂ t́ĥíŝ d́îŕêćt̂ív̂é. P̂ĺâín̂ ÚR̂Ĺ ŝćĥém̂éŝ ál̂ĺôẃ ŝćr̂íp̂t́ŝ t́ô b́ê śôúr̂ćêd́ f̂ŕôḿ âń ûńŝáf̂é d̂óm̂áîń."
|
|
1741
|
-
},
|
|
1742
|
-
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1743
|
-
"message": "Âv́ôíd̂ úŝín̂ǵ p̂ĺâín̂ ẃîĺd̂ćâŕd̂ś ({keyword}) îń t̂h́îś d̂ír̂éĉt́îv́ê. Ṕl̂áîń ŵíl̂d́ĉár̂d́ŝ ál̂ĺôẃ ŝćr̂íp̂t́ŝ t́ô b́ê śôúr̂ćêd́ f̂ŕôḿ âń ûńŝáf̂é d̂óm̂áîń."
|
|
1744
|
-
},
|
|
1745
1745
|
"lighthouse-core/lib/csp-evaluator.js | reportingDestinationMissing": {
|
|
1746
1746
|
"message": "N̂ó ĈŚP̂ ćôńf̂íĝúr̂éŝ á r̂ép̂ór̂t́îńĝ d́êśt̂ín̂át̂íôń. T̂h́îś m̂ák̂éŝ ít̂ d́îf́f̂íĉúl̂t́ t̂ó m̂áîńt̂áîń t̂h́ê ĆŜṔ ôv́êŕ t̂ím̂é âńd̂ ḿôńît́ôŕ f̂ór̂ án̂ý b̂ŕêák̂áĝéŝ."
|
|
1747
1747
|
},
|
|
@@ -1749,7 +1749,7 @@
|
|
|
1749
1749
|
"message": "T̂h́ê ŕêṕôŕt̂ín̂ǵ d̂éŝt́îńât́îón̂ íŝ ón̂ĺŷ ćôńf̂íĝúr̂éd̂ v́îá t̂h́ê ŕêṕôŕt̂-t́ô d́îŕêćt̂ív̂é. T̂h́îś d̂ír̂éĉt́îv́ê íŝ ón̂ĺŷ śûṕp̂ór̂t́êd́ îń Ĉh́r̂óm̂íûḿ-b̂áŝéd̂ b́r̂óŵśêŕŝ śô ít̂ íŝ ŕêćôḿm̂én̂d́êd́ t̂ó âĺŝó ûśê á r̂ép̂ór̂t́-ûŕî d́îŕêćt̂ív̂é."
|
|
1750
1750
|
},
|
|
1751
1751
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1752
|
-
"message": "Ĥóŝt́ âĺl̂óŵĺîśt̂ś ĉán̂ f́r̂éq̂úêńt̂ĺŷ b́ê b́ŷṕâśŝéd̂. Ćôńŝíd̂ér̂ úŝín̂ǵ
|
|
1752
|
+
"message": "Ĥóŝt́ âĺl̂óŵĺîśt̂ś ĉán̂ f́r̂éq̂úêńt̂ĺŷ b́ê b́ŷṕâśŝéd̂. Ćôńŝíd̂ér̂ úŝín̂ǵ 'ŝt́r̂íĉt́-d̂ýn̂ám̂íĉ' ín̂ ćôḿb̂ín̂át̂íôń ŵít̂h́ ĈŚP̂ ńôńĉéŝ ór̂ h́âśĥéŝ."
|
|
1753
1753
|
},
|
|
1754
1754
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1755
1755
|
"message": "Ûńk̂ńôẃn̂ ĆŜṔ d̂ír̂éĉt́îv́ê."
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Permitida con advertencia"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Biblioteca"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Las bibliotecas de JavaScript grandes pueden reducir el rendimiento. Es mejor usar bibliotecas más pequeñas y con el mismo funcionamiento para reducir el tamaño del paquete. [Obtén más información](https://developers.google.com/web/fundamentals/performance/webpack/decrease-frontend-size#optimize_dependencies)."
|
|
1000
|
+
},
|
|
1001
|
+
"lighthouse-core/audits/large-javascript-libraries.js | displayValue": {
|
|
1002
|
+
"message": "{libraryCount,plural, =1{Se encontró 1 biblioteca grande}other{Se encontraron # bibliotecas grandes}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Reemplaza las bibliotecas de JavaScript innecesariamente largas"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Evita las bibliotecas de JavaScript grandes con alternativas más pequeñas"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Este es el elemento más grande con contenido para el procesamiento de imagen en viewport. [Más información](https://web.dev/lighthouse-largest-contentful-paint/)"
|
|
997
1012
|
},
|
|
@@ -1742,6 +1757,9 @@
|
|
|
1742
1757
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1758
|
"message": "Al parecer, {keyword} es una palabra clave no válida."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "\"unsafe-inline\" permite la ejecución de controladores de eventos y secuencias de comando no seguras de la página. Considera usar nonces o hashes de la CSP para permitir secuencias de comandos por separado."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Considera agregar la palabra clave \"unsafe-inline\" (ignorada por los navegadores que admiten nonces y hashes) para que la política sea retrocompatible con los navegadores anteriores."
|
|
1747
1765
|
},
|