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
|
@@ -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 de gran tamaño pueden reducir el rendimiento. Elige bibliotecas más pequeñas y funcionalmente equivalentes para reducir el tamaño del paquete. [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{1 biblioteca de tamaño grande encontrada}other{# bibliotecas de tamaño grande encontradas}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Sustituye las bibliotecas de JavaScript innecesariamente grandes"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Evita las bibliotecas de JavaScript de gran tamaño con alternativas más pequeñas"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Este es el mayor elemento con contenido renderizado en el 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": "Parece que {keyword} no es una palabra clave válida."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "La directiva unsafe-inline permite que se ejecuten secuencias de comandos in-page y gestores de eventos que no son seguros. Puedes usar nonces o hashes de CSP para permitir secuencias de comandos individualmente."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Puedes añadir la directiva unsafe-inline (los navegadores que admiten nonces o hashes la ignoran) para que sea retrocompatible con navegadores anteriores."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Sallittu varoituksen kanssa"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Kirjasto"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Suuret JavaScript-kirjastot voivat heikentää suorituskykyä. Pienennä paketin kokoa valitsemalla pienempiä, toiminnoiltaan vastaavia kirjastoja. [Lue lisää](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 suuri kirjasto löydetty}other{# suurta kirjastoa löydetty}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Korvaa tarpeettoman suuret JavaScript-kirjastot"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Välttää suuria JavaScript-kirjastoja, jos pienempi vaihtoehto on saatavilla"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Tämä on näkymän suurin renderöity sisältö. [Lue lisää](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": "Näyttää siltä, että {keyword} on virheellinen avainsana."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "\"unsafe-inlinen\" avulla voidaan suorittaa vaarallisia sivun sisäisiä skriptejä ja tapahtumien käsittelijöitä. Harkitse skriptien salliminen yksitellen käyttämällä CSP-nonceja tai ‑hasheja."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Harkitse \"unsafe-inlinen\" (jonka nonceja/hasheja tukevat selaimet ohittavat) lisäämistä, niin voit saavuttaa taaksepäinyhteensopivuuden vanhempien selainten kanssa."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Pinapayagan nang may babala"
|
|
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": "Kapag malalaki ang JavaScript library, posibleng maging hindi maganda ang performance. Gumamit ng mas maliliit na library na ganoon din ang function para mabawasan ang laki ng iyong bundle. [Matuto pa](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 malaking library ang nakita}one{# malaking library ang nakita}other{# na malaking library ang nakita}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Palitan ang mga napakalaking JavaScript library"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Umiiwas sa malalaking JavaScript library gamit ang mas maliliit na alternatibo"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Ito ang pinakamalaking contentful element na na-paint sa viewport. [Matuto Pa](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": "Mukhang invalid na keyword ang {keyword}."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "Nagbibigay-daan ang 'unsafe-inline' sa pagpapatupad ng mga hindi ligtas na in-page na script at tagapangasiwa ng event. Pag-isipang gumamit ng mga CSP nonce o hash para indibidwal na payagan ang mga script."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Pag-isipang magdagdag ng 'unsafe-inline' (binabalewala ng mga browser na sumusuporta sa mga nonce/hash) para maging backward compatible sa mga lumang browser."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Autorisée avec un avertissement"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Bibliothèque"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Les bibliothèques JavaScript volumineuses peuvent être à l'origine de performances médiocres. Optez pour des bibliothèques plus petites aux fonctions équivalentes afin de réduire la taille du lot. [En savoir plus](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 bibliothèque volumineuse trouvée}one{# bibliothèque volumineuse trouvée}other{# bibliothèques volumineuses trouvées}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Remplacer les bibliothèques JavaScript inutilement volumineuses"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Évite les bibliothèques JavaScript volumineuses à l'aide d'alternatives plus petites"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Il s'agit de l'élément identifié comme \"Largest Contentful Paint\" dans la fenêtre d'affichage. [En savoir plus](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} semble être un mot clé non valide."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "'unsafe-inline' permet d'exécuter des gestionnaires d'événements et des scripts non sécurisés sur la page. Pensez à utiliser des nonces ou des hachages CSP pour autoriser les scripts un à un."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Pensez à ajouter la commande 'unsafe-inline' (ignorée par les navigateurs prenant en charge les nonces/hachages) pour assurer la rétrocompatibilité avec les anciens navigateurs."
|
|
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{נמצאה ספרייה גדולה אחת}two{נמצאו # ספריות גדולות}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' (דפדפנים שתומכים בגיבובים/צפנים חד-פעמיים יתעלמו ממנו) לצורך תאימות לאחור עם דפדפנים ישנים."
|
|
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 बड़ी लाइब्रेरी मिली}one{# बड़ी लाइब्रेरी मिली}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 nonces या hashes इस्तेमाल करें."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "'unsafe-inline' जोड़ें, ताकि CSP पुराने ब्राउज़र के साथ काम कर सके. nonces/hashes के साथ काम करने वाले ब्राउज़र पर 'unsafe-inline' को अनदेखा किया जा सकता है."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Dopušteno uz upozorenje"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Biblioteka"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Veće biblioteke JavaScripta mogu uzrokovati lošu izvedbu. Dajte prednost manjim bibliotekama s ekvivalentnim funkcijama kako biste smanjili veličinu paketa. [Saznajte više](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{Pronađena je jedna velika biblioteka}one{Pronađena je # velika biblioteka}few{Pronađene su # velike biblioteke}other{Pronađeno je # velikih biblioteka}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Zamijenite nepotrebno velike biblioteke JavaScripta"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Izbjegavajte velike biblioteke JavaScripta ako postoje manje alternative"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Ovo je element s najvećim renderiranjem sadržaja unutar vidljivog dijela. [Saznajte više](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": "Čini se da {keyword} nije važeća ključna riječ."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "Direktiva unsafe-inline omogućuje izvršavanje nesigurnih skripti i rukovatelja događajima unutar stranice. Savjetujemo vam da koristite CSP nonceove ili hasheve kako biste omogućavali skripte pojedinačno."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Savjetujemo vam da koristite unsafe-inline (koji ignoriraju preglednici koji podržavaju nonceove/hasheve) radi kompatibilnosti s prijašnjim verzijama preglednika."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Figyelmeztetéssel engedélyezve"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Függvénytár"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "A nagy JavaScript-függvénytárak gyenge teljesítményhez vezethetnek. Használjon inkább kisebb, funkcionálisan egyenértékű függvénytárakat a csomag méretének csökkentése érdekében. [További információ](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 nagy függvénytár található}other{# nagy függvénytár található}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Cserélje le a szükségtelenül nagy JavaScript-függvénytárakat"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Kerülje a kisebb alternatívákkal rendelkező nagy JavaScript-függvénytárakat"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Ez a legnagyobb tartalommal rendelkező elem a megjelenítési területen. [További információ](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": "Úgy tűnik, hogy a(z) {keyword} érvénytelen kulcsszó."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "Az „unsafe-inline” lehetővé teszi nem biztonságos oldalon belüli szkriptek és eseménykezelők végrehajtását. A szkriptek egyenként történő engedélyezése érdekében fontolja meg CSP nonce-ok vagy hashek használatát."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "A régebbi böngészőkkel való kompatibilitás érdekében használhatja az „unsafe-inline” kulcsszót (a nonce-t/hasht támogató böngészők figyelmen kívül hagyják)."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Diizinkan dengan peringatan"
|
|
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": "Library JavaScript berukuran besar dapat menyebabkan performa yang buruk. Gunakan library lebih kecil dengan fungsi yang sama untuk mengurangi ukuran paket. [Pelajari lebih lanjut](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 library berukuran besar ditemukan}other{# library berukuran besar ditemukan}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Ganti library JavaScript berukuran besar yang tidak diperlukan"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Menghindari library JavaScript berukuran besar dengan alternatif yang lebih kecil"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Ini adalah elemen contentful terbesar yang di-paint dalam area pandang. [Pelajari Lebih Lanjut](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": "Tampaknya {keyword} adalah kata kunci yang tidak valid."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "'unsafe-inline' mengizinkan eksekusi skrip dalam halaman dan pengendali peristiwa yang tidak aman. Sebaiknya gunakan nonce atau hash CSP untuk mengizinkan skrip satu per satu."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Sebaiknya tambahkan 'unsafe-inline' (diabaikan oleh browser yang mendukung nonce/hash) agar kompatibel dengan browser versi lama."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Consentito con avviso"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Libreria"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Le librerie JavaScript di grandi dimensioni possono causare scarse prestazioni. Usa preferibilmente librerie di dimensioni ridotte con funzionalità equivalenti per ridurre le dimensioni dei bundle. [Ulteriori informazioni](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 libreria di grandi dimensioni trovata}other{# librerie di grandi dimensioni trovate}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Sostituisci le librerie JavaScript di dimensioni inutilmente grandi"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Evita librerie JavaScript di grandi dimensioni per cui esistono alternative di dimensioni inferiori"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Si tratta dell'elemento identificato come Largest Contentful Paint all'interno dell'area visibile. [Ulteriori informazioni](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} sembra essere una parola chiave non valida."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "L'istruzione \"unsafe-inline\" consente l'esecuzione di gestori di eventi e script in-page non sicuri. Potresti usare hash o nonce CSP per consentire singoli script."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Potresti aggiungere l'istruzione \"unsafe-inline\" (ignorata dai browser che supportano nonce/hash) per la compatibilità con le versioni precedenti dei browser."
|
|
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' が指定されているため、安全でないページ内スクリプトやイベント ハンドラを実行できる状態になっています。CSP nonce または hash を使用して、スクリプトを個別に許可することを検討してください。"
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "古いブラウザとの下位互換性を保つため、'unsafe-inline' を追加することを検討してください(nonce / hash をサポートしているブラウザでは無視されます)。"
|
|
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": "큰 자바스크립트 라이브러리는 성능을 저하시킬 수 있습니다. 기능은 동일하되 크기가 작은 라이브러리를 사용하여 번들 크기를 줄이세요. [자세히 알아보기](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": "불필요하게 큰 자바스크립트 라이브러리 대체"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "큰 자바스크립트 라이브러리를 작은 라이브러리로 대체"
|
|
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 nonce 또는 hash를 사용해 스크립트를 개별적으로 허용하는 것이 좋습니다."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "기존 브라우저와의 하위 호환성을 위하여 'unsafe-inline(nonce/hash를 지원하는 브라우저에서 무시됨)'을 추가하는 것이 좋습니다."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Leidžiama su įspėjimu"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Biblioteka"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Dėl didelių „JavaScript“ bibliotekų našumas gali būti prastas. Pirmenybę teikite mažesnėms atitinkamoms bibliotekoms, kad sumažintumėte rinkinio dydį. [Sužinokite daugiau](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{Rasta 1 didelė biblioteka}one{Rasta # didelė biblioteka}few{Rastos # didelės bibliotekos}many{Rasta # didelės bibliotekos}other{Rasta # didelių bibliotekų}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Pakeiskite nepagrįstai dideles „JavaScript“ bibliotekas"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Vengiama didelių „JavaScript“ bibliotekų – naudojamos mažesnės alternatyvos"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Tai didžiausias turiningas elementas, pažymėtas peržiūros srityje. [Sužinokite daugiau](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": "Panašu, kad „{keyword}“ yra netinkamas raktinis žodis."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "Raktinis žodis „unsafe-inline“ leidžia vykdyti nesaugius puslapio scenarijus ir įvykių dorokles. Apsvarstykite galimybę naudoti CSP vertes „nonce“ arba „hash“, kad scenarijų vykdymas būtų leidžiamas atskirai."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Apsvarstykite galimybę pridėti raktinį žodį „unsafe-inline“ (nepaisoma naršyklėse, palaikančiose vertes „nonce“ / „hash“), kad būtų užtikrintas atgalinis suderinamumas su senesnėmis naršyklėmis."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Atļauts ar brīdinājumu"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Bibliotēka"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Lielu JavaScript bibliotēku izmantošana var sekmēt sliktu veiktspēju. Lai samazinātu komplekta lielumu, ieteicams izmantot mazākas, funkcionāli līdzvērtīgas bibliotēkas. [Uzziniet vairāk](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{Tika atrasta viena liela bibliotēka}zero{Tika atrastas # lielas bibliotēkas}one{Tika atrasta # liela bibliotēka}other{Tika atrastas # lielas bibliotēkas}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Aizvietojiet pārmērīgi lielas JavaScript bibliotēkas"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Ja ir pieejamas mazākas bibliotēkas, lielas JavaScript bibliotēkas netiek izmantotas"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Tas ir lielākais skatvietā atveidotais satura elements. [Uzzināt vairāk](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} ir nederīgs atslēgvārds."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "Atslēgvārds “unsafe-inline” ļauj izpildīt nedrošus lapā ievietotus skriptus un notikumu apdarinātājus. Apsveriet iespēju atļaut skriptus pa vienam, izmantojot SDP vienreizējos kodus vai jaucējvērtības."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Lai nodrošinātu atpakaļsaderību ar vecākām pārlūkprogrammām, varat pievienot atslēgvārdu “unsafe-inline” (pārlūkprogrammās, kas atbalsta vienreizējos kodus vai jaucējvērtības, šis atslēgvārds tiks ignorēts)."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Toegestaan met waarschuwing"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Bibliotheek"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Grote JavaScript-bibliotheken kunnen slechte prestaties tot gevolg hebben. Geef de voorkeur aan kleinere, functioneel gelijke bibliotheken om de bundelgrootte te beperken. [Meer informatie](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 grote bibliotheek gevonden}other{# grote bibliotheken gevonden}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Onnodig grote JavaScript-bibliotheken vervangen"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Vermijdt grote JavaScript-bibliotheken door kleinere alternatieven te gebruiken"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Dit is het grootste element met content dat is weergegeven in het kijkvenster. [Meer informatie](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": "Zo te zien is {keyword} een ongeldig zoekwoord."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "Met 'unsafe-inline' kunnen onveilige scripts en gebeurtenishandlers op de pagina worden uitgevoerd. Overweeg CSP-nonces of -hashes te gebruiken om scripts afzonderlijk toe te staan."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Voor compatibiliteit met oudere browsers kun je overwegen 'unsafe-inline' toe te voegen (dit wordt genegeerd door browsers die nonces/hashes ondersteunen)."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Tillatt 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-bibliotek kan føre til lav ytelse. Du bør bruke mindre bibliotek med tilsvarende funksjonalitet for å redusere pakkestørrelsen. [Finn ut mer](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 funnet}other{# store bibliotek funnet}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Bytt ut unødvendig store JavaScript-bibliotek"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Unngår store JavaScript-bibliotek der det finnes mindre alternativer"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Dette er det største innholdsrike elementet som ble tegnet innenfor det synlige området. [Finn ut mer](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} ser ut til å være et ugyldig nøkkelord."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "«unsafe-inline» muliggjør kjøring av utrygge skript og hendelsesbehandlere på siden. Vurder å bruke CSP-engangsverdier eller -hasher for å la skript kjøre individuelt."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Vurder å legge til «unsafe-inline» (ignoreres av nettlesere som støtter engangsverdier eller hasher) for bakoverkompatibilitet med eldre nettlesere."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Dozwolony z ostrzeżeniem"
|
|
994
994
|
},
|
|
995
|
+
"lighthouse-core/audits/large-javascript-libraries.js | columnLibraryName": {
|
|
996
|
+
"message": "Biblioteka"
|
|
997
|
+
},
|
|
998
|
+
"lighthouse-core/audits/large-javascript-libraries.js | description": {
|
|
999
|
+
"message": "Duże biblioteki JavaScript mogą obniżać wydajność. Aby zmniejszyć rozmiar pakietu, korzystaj z mniejszych bibliotek z takimi samymi funkcjami. [Więcej informacji](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{Znaleziono 1 dużą bibliotekę}few{Znaleziono # duże biblioteki}many{Znaleziono # dużych bibliotek}other{Znaleziono # dużej biblioteki}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Zastąp biblioteki JavaScript, które są niepotrzebnie duże"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Używa mniejszych odpowiedników zamiast dużych bibliotek JavaScript"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "To największy wyrenderowany element treści w widocznym obszarze. [Więcej informacji](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} jest prawdopodobnie nieprawidłowym słowem kluczowym."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "Dyrektywa „unsafe-inline” zezwala na wykonywanie niebezpiecznych skryptów na stronie i uruchamianie modułów obsługi zdarzeń. Zastanów się, czy nie użyć liczb jednorazowych lub haszy CSP, aby zezwolić osobno na poszczególne skrypty."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Zastanów się, czy nie dodać dyrektywy „unsafe-inline” (ignorowanej przez przeglądarki obsługujące liczby jednorazowe i hasze), aby uzyskać zgodność wsteczną ze starszymi przeglądarkami."
|
|
1747
1765
|
},
|
|
@@ -992,6 +992,21 @@
|
|
|
992
992
|
"lighthouse-core/audits/is-on-https.js | warning": {
|
|
993
993
|
"message": "Permitido com aviso"
|
|
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": "As bibliotecas JavaScript grandes podem resultar num desempenho fraco. Prefira bibliotecas mais pequenas e funcionalmente equivalentes para reduzir o tamanho do pacote. [Saiba mais](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 grande encontrada}other{# bibliotecas grandes encontradas}}"
|
|
1003
|
+
},
|
|
1004
|
+
"lighthouse-core/audits/large-javascript-libraries.js | failureTitle": {
|
|
1005
|
+
"message": "Substitua bibliotecas JavaScript desnecessariamente grandes"
|
|
1006
|
+
},
|
|
1007
|
+
"lighthouse-core/audits/large-javascript-libraries.js | title": {
|
|
1008
|
+
"message": "Evita bibliotecas JavaScript grandes com alternativas mais pequenas"
|
|
1009
|
+
},
|
|
995
1010
|
"lighthouse-core/audits/largest-contentful-paint-element.js | description": {
|
|
996
1011
|
"message": "Este é o elemento de maior preenchimento com conteúdo na área visível. [Saiba mais](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} parece ser uma palavra-chave inválida."
|
|
1744
1759
|
},
|
|
1760
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1761
|
+
"message": "A diretiva \"unsafe-inline\" permite a execução de scripts inseguros na página e de controladores de eventos. Considere utilizar nonces ou hashes CSP para permitir scripts individualmente."
|
|
1762
|
+
},
|
|
1745
1763
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1764
|
"message": "Considere adicionar \"unsafe-inline\" (ignorado por navegadores que suportam nonces/hashes) para ser retrocompatível com navegadores mais antigos."
|
|
1747
1765
|
},
|