lighthouse 8.5.1 → 8.6.0-dev.20211016
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 +5490 -0
- package/dist/report/flow.js +35 -12
- package/dist/report/standalone.js +20 -21
- package/flow-report/.eslintrc.cjs +49 -0
- package/flow-report/assets/styles.css +272 -9
- package/flow-report/jest.config.js +1 -1
- package/flow-report/package.json +4 -0
- package/flow-report/src/app.tsx +31 -9
- package/flow-report/src/common.tsx +86 -7
- package/flow-report/src/header.tsx +88 -0
- package/flow-report/src/help-dialog.tsx +120 -0
- package/flow-report/src/i18n/i18n.tsx +52 -0
- package/flow-report/src/i18n/localized-strings.js +11 -0
- package/flow-report/src/i18n/ui-strings.js +134 -0
- package/flow-report/src/icons.tsx +20 -3
- package/flow-report/src/sidebar/sidebar.tsx +11 -16
- package/flow-report/src/summary/category.tsx +39 -24
- package/flow-report/src/summary/summary.tsx +35 -32
- package/flow-report/src/topbar.tsx +54 -4
- package/flow-report/src/util.ts +26 -1
- package/flow-report/src/wrappers/report-renderer.tsx +1 -1
- package/flow-report/src/wrappers/report.tsx +6 -21
- package/flow-report/test/app-test.tsx +17 -13
- package/flow-report/test/common-test.tsx +89 -0
- package/flow-report/test/header-test.tsx +55 -0
- package/flow-report/test/sample-flow.ts +17 -0
- package/flow-report/test/setup/env-setup.ts +1 -0
- package/flow-report/test/sidebar/flow-test.tsx +6 -12
- package/flow-report/test/sidebar/sidebar-test.tsx +7 -13
- package/flow-report/test/summary/category-test.tsx +83 -34
- package/flow-report/test/summary/summary-test.tsx +12 -18
- package/flow-report/test/topbar-test.tsx +68 -0
- package/flow-report/test/util-test.tsx +1 -12
- package/flow-report/tsconfig.json +2 -0
- package/flow-report/types/flow-report.d.ts +2 -1
- package/jest.config.js +1 -15
- package/lighthouse-cli/bin.js +5 -0
- package/lighthouse-cli/cli-flags.js +10 -3
- package/lighthouse-cli/commands/commands.js +1 -0
- package/lighthouse-cli/commands/list-locales.js +16 -0
- package/lighthouse-cli/run.js +2 -2
- package/lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js +0 -0
- package/lighthouse-cli/test/smokehouse/report-assert.js +20 -4
- package/lighthouse-core/audits/byte-efficiency/byte-efficiency-audit.js +2 -1
- package/lighthouse-core/audits/byte-efficiency/unused-javascript.js +1 -1
- package/lighthouse-core/audits/seo/crawlable-anchors.js +10 -12
- package/lighthouse-core/computed/js-bundles.js +1 -2
- package/lighthouse-core/computed/unused-javascript-summary.js +3 -3
- package/lighthouse-core/config/config-helpers.js +1 -0
- package/lighthouse-core/config/config.js +2 -2
- package/lighthouse-core/config/default-config.js +5 -0
- package/lighthouse-core/fraggle-rock/api.js +10 -0
- package/lighthouse-core/fraggle-rock/config/filters.js +22 -3
- package/lighthouse-core/fraggle-rock/gather/driver.js +4 -0
- package/lighthouse-core/fraggle-rock/gather/navigation-runner.js +2 -2
- package/lighthouse-core/fraggle-rock/user-flow.js +35 -6
- package/lighthouse-core/gather/driver/navigation.js +5 -0
- package/lighthouse-core/gather/driver/prepare.js +14 -0
- package/lighthouse-core/gather/driver/storage.js +5 -0
- package/lighthouse-core/gather/gather-runner.js +2 -2
- package/lighthouse-core/gather/gatherers/dobetterweb/response-compression.js +5 -1
- package/lighthouse-core/gather/gatherers/full-page-screenshot.js +30 -24
- package/lighthouse-core/lib/cdt/Platform.js +55 -0
- package/lighthouse-core/lib/cdt/SDK.js +3 -123
- package/lighthouse-core/lib/cdt/generated/SourceMap.js +148 -312
- package/lighthouse-core/lib/csp-evaluator.js +2 -1
- package/lighthouse-core/lib/i18n/README.md +6 -6
- package/lighthouse-core/lib/i18n/i18n.js +26 -348
- package/lighthouse-core/lib/page-functions.js +4 -4
- package/lighthouse-core/lib/stack-packs.js +1 -13
- package/lighthouse-core/runner.js +6 -6
- package/lighthouse-core/scripts/manual-chrome-launcher.js +4 -1
- package/lighthouse-core/scripts/package.json +4 -0
- package/lighthouse-core/util-commonjs.js +20 -4
- package/package.json +19 -16
- package/readme.md +1 -1
- package/report/assets/standalone-template.html +0 -1
- package/report/assets/styles.css +16 -41
- package/report/assets/templates.html +42 -4
- package/report/clients/psi.js +1 -0
- package/report/clients/standalone.js +1 -2
- package/report/generator/file-namer.js +17 -8
- package/report/generator/report-generator.js +0 -1
- package/report/renderer/category-renderer.js +4 -16
- package/report/renderer/components.js +107 -71
- package/report/renderer/dom.js +19 -0
- package/report/renderer/logger.js +35 -2
- package/report/renderer/performance-category-renderer.js +23 -21
- package/report/renderer/pwa-category-renderer.js +1 -2
- package/report/renderer/report-renderer.js +21 -0
- package/report/renderer/report-ui-features.js +7 -19
- package/report/renderer/swap-locale-feature.js +82 -0
- package/report/renderer/util.js +20 -4
- package/report/test/clients/psi-test.js +0 -4
- package/report/test/generator/file-namer-test.js +2 -2
- package/report/test/renderer/category-renderer-test.js +1 -1
- package/report/test/renderer/performance-category-renderer-test.js +12 -0
- package/report/test/renderer/report-renderer-axe-test.js +86 -0
- package/report/test/renderer/report-renderer-test.js +0 -55
- package/report/test/renderer/util-test.js +68 -8
- package/report/test-assets/faux-psi-template.html +0 -1
- package/report/tsconfig.json +2 -1
- package/report/types/html-renderer.d.ts +2 -1
- package/root.js +18 -0
- package/shared/localization/format.js +455 -0
- package/{lighthouse-core/lib/cdt/Common.js → shared/localization/i18n-module.js} +3 -8
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/ar-XB.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/ar.json +141 -6
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/bg.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/ca.json +140 -5
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/cs.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/da.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/de.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/el.json +141 -6
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-GB.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-US.json +129 -0
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-XA.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-XL.json +129 -0
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/es-419.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/es.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/fi.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/fil.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/fr.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/he.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/hi.json +142 -7
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/hr.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/hu.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/id.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/it.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/ja.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/ko.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/lt.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/lv.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/nl.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/no.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/pl.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/pt-PT.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/pt.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/ro.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/ru.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/sk.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/sl.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/sr-Latn.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/sr.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/sv.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/ta.json +146 -11
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/te.json +179 -44
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/th.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/tr.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/uk.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/vi.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/zh-HK.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/zh-TW.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales/zh.json +139 -4
- package/{lighthouse-core/lib/i18n → shared/localization}/locales.js +8 -1
- package/shared/localization/swap-flow-locale.js +20 -0
- package/{lighthouse-core/lib/i18n → shared/localization}/swap-locale.js +9 -7
- package/shared/test/localization/format-test.js +421 -0
- package/shared/test/localization/locales-test.js +47 -0
- package/shared/test/localization/swap-locale-test.js +140 -0
- package/shared/tsconfig.json +22 -0
- package/{lighthouse-core/lib → shared}/type-verifiers.js +0 -0
- package/shared/types/shared.d.ts +24 -0
- package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +5 -3
- package/third-party/chromium-synchronization/installability-errors-test.js +2 -1
- package/tsconfig-all.json +1 -0
- package/tsconfig-base.json +1 -1
- package/tsconfig.json +2 -3
- package/types/config.d.ts +1 -0
- package/types/es-main.d.ts +18 -0
- package/types/externs.d.ts +2 -0
- package/types/lhr/flow.d.ts +7 -0
- package/types/lhr/i18n.d.ts +0 -3
|
@@ -1,4 +1,115 @@
|
|
|
1
1
|
{
|
|
2
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
3
|
+
"message": "Tutti i report"
|
|
4
|
+
},
|
|
5
|
+
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
6
|
+
"message": "Categories"
|
|
7
|
+
},
|
|
8
|
+
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
9
|
+
"message": "Accessibilità"
|
|
10
|
+
},
|
|
11
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
12
|
+
"message": "Best practice"
|
|
13
|
+
},
|
|
14
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
15
|
+
"message": "Prestazioni"
|
|
16
|
+
},
|
|
17
|
+
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
18
|
+
"message": "App web progressiva"
|
|
19
|
+
},
|
|
20
|
+
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
21
|
+
"message": "SEO"
|
|
22
|
+
},
|
|
23
|
+
"flow-report/src/i18n/ui-strings.js | desktop": {
|
|
24
|
+
"message": "Desktop"
|
|
25
|
+
},
|
|
26
|
+
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
27
|
+
"message": "Understanding the Lighthouse Flow Report"
|
|
28
|
+
},
|
|
29
|
+
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
30
|
+
"message": "Understanding Flows"
|
|
31
|
+
},
|
|
32
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
33
|
+
"message": "Use Navigation reports to..."
|
|
34
|
+
},
|
|
35
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
36
|
+
"message": "Use Snapshot reports to..."
|
|
37
|
+
},
|
|
38
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
39
|
+
"message": "Use Timespan reports to..."
|
|
40
|
+
},
|
|
41
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
42
|
+
"message": "Obtain a Lighthouse Performance score."
|
|
43
|
+
},
|
|
44
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
45
|
+
"message": "Measure page load Performance metrics such as Largest Contentful Paint and Speed Index."
|
|
46
|
+
},
|
|
47
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
48
|
+
"message": "Assess Progressive Web App capabilities."
|
|
49
|
+
},
|
|
50
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
51
|
+
"message": "Find accessibility issues in single page applications or complex forms."
|
|
52
|
+
},
|
|
53
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
54
|
+
"message": "Evaluate best practices of menus and UI elements hidden behind interaction."
|
|
55
|
+
},
|
|
56
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
57
|
+
"message": "Measure layout shifts and JavaScript execution time on a series of interactions."
|
|
58
|
+
},
|
|
59
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
|
+
"message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
|
|
61
|
+
},
|
|
62
|
+
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
63
|
+
"message": "Dispositivi mobili"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
66
|
+
"message": "Caricamento della pagina"
|
|
67
|
+
},
|
|
68
|
+
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
69
|
+
"message": "Navigation reports analyze a single page load, exactly like the original Lighthouse reports."
|
|
70
|
+
},
|
|
71
|
+
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
72
|
+
"message": "Report relativo alla navigazione"
|
|
73
|
+
},
|
|
74
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
|
+
"message": "Nella media"
|
|
76
|
+
},
|
|
77
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
78
|
+
"message": "Errore"
|
|
79
|
+
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
81
|
+
"message": "Scadente"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
84
|
+
"message": "Buona"
|
|
85
|
+
},
|
|
86
|
+
"flow-report/src/i18n/ui-strings.js | save": {
|
|
87
|
+
"message": "Save"
|
|
88
|
+
},
|
|
89
|
+
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
90
|
+
"message": "Stato acquisito della pagina"
|
|
91
|
+
},
|
|
92
|
+
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
93
|
+
"message": "Snapshot reports analyze the page in a particular state, typically after user interactions."
|
|
94
|
+
},
|
|
95
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
96
|
+
"message": "Report relativo a un momento specifico"
|
|
97
|
+
},
|
|
98
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
|
+
"message": "Riepilogo"
|
|
100
|
+
},
|
|
101
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
102
|
+
"message": "Interazioni dell'utente"
|
|
103
|
+
},
|
|
104
|
+
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
105
|
+
"message": "Timespan reports analyze an arbitrary period of time, typically containing user interactions."
|
|
106
|
+
},
|
|
107
|
+
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
108
|
+
"message": "Report relativo al periodo di tempo"
|
|
109
|
+
},
|
|
110
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
|
+
"message": "Report Lighthouse sulla procedura"
|
|
112
|
+
},
|
|
2
113
|
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
3
114
|
"message": "Le chiavi di accesso consentono agli utenti di impostare rapidamente lo stato attivo su una parte della pagina. Per assicurare una navigazione corretta, ogni chiave di accesso deve essere univoca. [Ulteriori informazioni](https://web.dev/accesskeys/)."
|
|
4
115
|
},
|
|
@@ -554,6 +665,12 @@
|
|
|
554
665
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnDisplayedDimensions": {
|
|
555
666
|
"message": "Dimensioni visualizzate"
|
|
556
667
|
},
|
|
668
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
|
|
669
|
+
"message": "Le immagini erano più grandi rispetto alle dimensioni visualizzate"
|
|
670
|
+
},
|
|
671
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
|
|
672
|
+
"message": "Le immagini erano appropriate per le dimensioni visualizzate"
|
|
673
|
+
},
|
|
557
674
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
558
675
|
"message": "Pubblica immagini di dimensioni adeguate per consumare meno traffico della rete dati e ridurre i tempi di caricamento. [Ulteriori informazioni](https://web.dev/uses-responsive-images/)."
|
|
559
676
|
},
|
|
@@ -1007,6 +1124,15 @@
|
|
|
1007
1124
|
"lighthouse-core/audits/layout-shift-elements.js | title": {
|
|
1008
1125
|
"message": "Evita significative variazioni di layout"
|
|
1009
1126
|
},
|
|
1127
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1128
|
+
"message": "Le immagini above the fold che vengono caricate tramite caricamento lento vengono visualizzate più tardi nel ciclo di vita della pagina e questo può ritardare la visualizzazione dell'elemento più grande. [Scopri di più](https://web.dev/lcp-lazy-loading/)."
|
|
1129
|
+
},
|
|
1130
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1131
|
+
"message": "L'immagine Largest Contentful Paint è stata caricata tramite caricamento lento"
|
|
1132
|
+
},
|
|
1133
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1134
|
+
"message": "L'immagine Largest Contentful Paint non è stata caricata tramite caricamento lento"
|
|
1135
|
+
},
|
|
1010
1136
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1011
1137
|
"message": "Vengono elencate le attività più lunghe nel thread principale; è utile per identificare gli elementi che contribuiscono maggiormente al ritardo dell'interazione. [Ulteriori informazioni](https://web.dev/long-tasks-devtools/)"
|
|
1012
1138
|
},
|
|
@@ -1524,7 +1650,7 @@
|
|
|
1524
1650
|
"message": "La pagina ha mappe di origine valide"
|
|
1525
1651
|
},
|
|
1526
1652
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1527
|
-
"message": "
|
|
1653
|
+
"message": "Un tag `<meta name=\"viewport\">` non soltanto ottimizza la tua app per gli schermi di dispositivi mobili di varie dimensioni, ma evita anche [un ritardo di 300 millisecondi per l'input utente](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [Scopri di più](https://web.dev/viewport/)."
|
|
1528
1654
|
},
|
|
1529
1655
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1530
1656
|
"message": "Nessun tag `<meta name=\"viewport\">` trovato"
|
|
@@ -1659,7 +1785,7 @@
|
|
|
1659
1785
|
"message": "Ottimizzato per PWA"
|
|
1660
1786
|
},
|
|
1661
1787
|
"lighthouse-core/config/default-config.js | seoCategoryDescription": {
|
|
1662
|
-
"message": "Questi controlli assicurano che la pagina
|
|
1788
|
+
"message": "Questi controlli assicurano che la pagina stia applicando il seguente consiglio relativo all'ottimizzazione per i motori di ricerca di base. Esistono molti altri fattori che Lighthouse non tratta qui che potrebbero influire sul tuo ranking di ricerca, incluse le prestazioni su [Segnali web essenziali](https://web.dev/learn-web-vitals/). [Scopri di più](https://support.google.com/webmasters/answer/35769)"
|
|
1663
1789
|
},
|
|
1664
1790
|
"lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
|
|
1665
1791
|
"message": "Esegui questi altri strumenti di convalida sul tuo sito per controllare ulteriori best practice per SEO."
|
|
@@ -1713,7 +1839,7 @@
|
|
|
1713
1839
|
"message": "A causa della mancanza di un'istruzione base-uri, i tag <base> inseriti possono impostare l'URL di base di tutti gli URL relativi (ad esempio gli script) per un dominio controllato da un utente malintenzionato. Potresti impostare base-uri su \"none\" o \"self\"."
|
|
1714
1840
|
},
|
|
1715
1841
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1716
|
-
"message": "
|
|
1842
|
+
"message": "L'assenza di un'istruzione object-src consente l'inserimento di plug-in che eseguono script non sicuri. Se puoi, imposta object-src su \"none\"."
|
|
1717
1843
|
},
|
|
1718
1844
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1719
1845
|
"message": "Manca l'istruzione script-src. Potrebbe essere consentita l'esecuzione di script non sicuri."
|
|
@@ -1727,6 +1853,12 @@
|
|
|
1727
1853
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1728
1854
|
"message": "I valori nonce devono essere di almeno 8 caratteri."
|
|
1729
1855
|
},
|
|
1856
|
+
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1857
|
+
"message": "Evita di usare schemi URL standard ({keyword}) in questa istruzione. Questi schemi consentono di recuperare script da un dominio non sicuro."
|
|
1858
|
+
},
|
|
1859
|
+
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1860
|
+
"message": "Evita di usare caratteri jolly standard ({keyword}) in questa istruzione. Questi caratteri consentono di recuperare script da un dominio non sicuro."
|
|
1861
|
+
},
|
|
1730
1862
|
"lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
|
|
1731
1863
|
"message": "La destinazione di reporting è configurata soltanto tramite l'istruzione report-to. Questa istruzione è supportata soltanto nei browser basati su Chromium, pertanto è consigliato usare anche un'istruzione report-uri."
|
|
1732
1864
|
},
|
|
@@ -1734,7 +1866,7 @@
|
|
|
1734
1866
|
"message": "Nessun criterio CSP configura una destinazione di reporting. In questo modo è difficile mantenere il criterio CSP nel tempo e monitorare eventuali interruzioni."
|
|
1735
1867
|
},
|
|
1736
1868
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1737
|
-
"message": "Spesso le liste consentite di host possono essere aggirate. Potresti usare \"strict-dynamic\"
|
|
1869
|
+
"message": "Spesso le liste consentite di host possono essere aggirate. Potresti usare hash o nonce CSP, insieme a \"strict-dynamic\" se necessario."
|
|
1738
1870
|
},
|
|
1739
1871
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1740
1872
|
"message": "Istruzione CSP sconosciuta."
|
|
@@ -1742,6 +1874,9 @@
|
|
|
1742
1874
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1875
|
"message": "{keyword} sembra essere una parola chiave non valida."
|
|
1744
1876
|
},
|
|
1877
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1878
|
+
"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."
|
|
1879
|
+
},
|
|
1745
1880
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1881
|
"message": "Potresti aggiungere l'istruzione \"unsafe-inline\" (ignorata dai browser che supportano nonce/hash) per la compatibilità con le versioni precedenti dei browser."
|
|
1747
1882
|
},
|
|
@@ -1,4 +1,115 @@
|
|
|
1
1
|
{
|
|
2
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
3
|
+
"message": "すべてのレポート"
|
|
4
|
+
},
|
|
5
|
+
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
6
|
+
"message": "Categories"
|
|
7
|
+
},
|
|
8
|
+
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
9
|
+
"message": "ユーザー補助"
|
|
10
|
+
},
|
|
11
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
12
|
+
"message": "おすすめの方法"
|
|
13
|
+
},
|
|
14
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
15
|
+
"message": "パフォーマンス"
|
|
16
|
+
},
|
|
17
|
+
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
18
|
+
"message": "プログレッシブ ウェブアプリ"
|
|
19
|
+
},
|
|
20
|
+
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
21
|
+
"message": "SEO"
|
|
22
|
+
},
|
|
23
|
+
"flow-report/src/i18n/ui-strings.js | desktop": {
|
|
24
|
+
"message": "パソコン"
|
|
25
|
+
},
|
|
26
|
+
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
27
|
+
"message": "Understanding the Lighthouse Flow Report"
|
|
28
|
+
},
|
|
29
|
+
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
30
|
+
"message": "Understanding Flows"
|
|
31
|
+
},
|
|
32
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
33
|
+
"message": "Use Navigation reports to..."
|
|
34
|
+
},
|
|
35
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
36
|
+
"message": "Use Snapshot reports to..."
|
|
37
|
+
},
|
|
38
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
39
|
+
"message": "Use Timespan reports to..."
|
|
40
|
+
},
|
|
41
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
42
|
+
"message": "Obtain a Lighthouse Performance score."
|
|
43
|
+
},
|
|
44
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
45
|
+
"message": "Measure page load Performance metrics such as Largest Contentful Paint and Speed Index."
|
|
46
|
+
},
|
|
47
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
48
|
+
"message": "Assess Progressive Web App capabilities."
|
|
49
|
+
},
|
|
50
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
51
|
+
"message": "Find accessibility issues in single page applications or complex forms."
|
|
52
|
+
},
|
|
53
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
54
|
+
"message": "Evaluate best practices of menus and UI elements hidden behind interaction."
|
|
55
|
+
},
|
|
56
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
57
|
+
"message": "Measure layout shifts and JavaScript execution time on a series of interactions."
|
|
58
|
+
},
|
|
59
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
|
+
"message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
|
|
61
|
+
},
|
|
62
|
+
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
63
|
+
"message": "モバイル"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
66
|
+
"message": "ページの読み込み"
|
|
67
|
+
},
|
|
68
|
+
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
69
|
+
"message": "Navigation reports analyze a single page load, exactly like the original Lighthouse reports."
|
|
70
|
+
},
|
|
71
|
+
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
72
|
+
"message": "ナビゲーション レポート"
|
|
73
|
+
},
|
|
74
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
|
+
"message": "普通"
|
|
76
|
+
},
|
|
77
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
78
|
+
"message": "エラー"
|
|
79
|
+
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
81
|
+
"message": "低"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
84
|
+
"message": "高"
|
|
85
|
+
},
|
|
86
|
+
"flow-report/src/i18n/ui-strings.js | save": {
|
|
87
|
+
"message": "Save"
|
|
88
|
+
},
|
|
89
|
+
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
90
|
+
"message": "取得したページの状態"
|
|
91
|
+
},
|
|
92
|
+
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
93
|
+
"message": "Snapshot reports analyze the page in a particular state, typically after user interactions."
|
|
94
|
+
},
|
|
95
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
96
|
+
"message": "スナップショット レポート"
|
|
97
|
+
},
|
|
98
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
|
+
"message": "概要"
|
|
100
|
+
},
|
|
101
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
102
|
+
"message": "ユーザー操作"
|
|
103
|
+
},
|
|
104
|
+
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
105
|
+
"message": "Timespan reports analyze an arbitrary period of time, typically containing user interactions."
|
|
106
|
+
},
|
|
107
|
+
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
108
|
+
"message": "期間レポート"
|
|
109
|
+
},
|
|
110
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
|
+
"message": "Lighthouse ユーザーフロー レポート"
|
|
112
|
+
},
|
|
2
113
|
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
3
114
|
"message": "アクセスキーは、ユーザーがページの特定の部分にすばやくフォーカスを移動するときに使います。正しく操作できるよう、各アクセスキーは一意にする必要があります。[詳細](https://web.dev/accesskeys/)"
|
|
4
115
|
},
|
|
@@ -554,6 +665,12 @@
|
|
|
554
665
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnDisplayedDimensions": {
|
|
555
666
|
"message": "表示サイズ"
|
|
556
667
|
},
|
|
668
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
|
|
669
|
+
"message": "画像は表示サイズより大きいサイズとなっています"
|
|
670
|
+
},
|
|
671
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
|
|
672
|
+
"message": "画像は表示サイズに合ったサイズとなっています"
|
|
673
|
+
},
|
|
557
674
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
558
675
|
"message": "適切なサイズの画像を配信して、モバイルデータ量を節約し読み込み時間を短縮してください。[詳細](https://web.dev/uses-responsive-images/)"
|
|
559
676
|
},
|
|
@@ -1007,6 +1124,15 @@
|
|
|
1007
1124
|
"lighthouse-core/audits/layout-shift-elements.js | title": {
|
|
1008
1125
|
"message": "レイアウトが大きく変わらないようにする"
|
|
1009
1126
|
},
|
|
1127
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1128
|
+
"message": "スクロールせずに見える範囲にある画像が遅延読み込みによってページのライフサイクルの後半にレンダリングされると、Largest Contentful Paint の遅延につながります。[詳細](https://web.dev/lcp-lazy-loading/)"
|
|
1129
|
+
},
|
|
1130
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1131
|
+
"message": "Largest Contentful Paint の画像が遅延読み込みされています"
|
|
1132
|
+
},
|
|
1133
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1134
|
+
"message": "Largest Contentful Paint の画像は遅延読み込みされていません"
|
|
1135
|
+
},
|
|
1010
1136
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1011
1137
|
"message": "メインスレッドで長時間実行されているタスクを表示します。入力の遅延に最も影響しているタスクを特定する際に役立ちます。[詳細](https://web.dev/long-tasks-devtools/)"
|
|
1012
1138
|
},
|
|
@@ -1524,7 +1650,7 @@
|
|
|
1524
1650
|
"message": "ページで有効なソースマップが使用されています"
|
|
1525
1651
|
},
|
|
1526
1652
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1527
|
-
"message": "
|
|
1653
|
+
"message": "`<meta name=\"viewport\">` を使用すると、モバイル画面サイズ向けにアプリを最適化できるほか、[ユーザー入力の遅延を 300 ミリ秒](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away)短縮できます。[詳細](https://web.dev/viewport/)"
|
|
1528
1654
|
},
|
|
1529
1655
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1530
1656
|
"message": "`<meta name=\"viewport\">` タグが見つかりません"
|
|
@@ -1659,7 +1785,7 @@
|
|
|
1659
1785
|
"message": "PWA の最適化"
|
|
1660
1786
|
},
|
|
1661
1787
|
"lighthouse-core/config/default-config.js | seoCategoryDescription": {
|
|
1662
|
-
"message": "
|
|
1788
|
+
"message": "これらのチェックを行うことで、ページが検索エンジン最適化の基本的な推奨事項に沿っていることを確認できます。検索ランキングに影響する可能性のある要素には、Lighthouse で考慮されている要素以外に、[ウェブに関する主な指標](https://web.dev/learn-web-vitals/)のスコアなどもあります。[詳細](https://support.google.com/webmasters/answer/35769)"
|
|
1663
1789
|
},
|
|
1664
1790
|
"lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
|
|
1665
1791
|
"message": "サイトでこれらの他の検証ツールを実行し、SEO のその他のおすすめの方法をご確認ください。"
|
|
@@ -1713,7 +1839,7 @@
|
|
|
1713
1839
|
"message": "base-uri を指定しないと、挿入された <base> タグによって、すべての相対 URL(スクリプトなど)のベース URL が攻撃者の管理ドメインに設定される可能性があります。base-uri を 'none' か 'self' に設定することをご検討ください。"
|
|
1714
1840
|
},
|
|
1715
1841
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1716
|
-
"message": "object-src
|
|
1842
|
+
"message": "object-src が設定されていない場合、安全でないスクリプトを実行するプラグインが挿入される恐れがあります。可能な場合は、object-src を 'none' に設定することを検討してください。"
|
|
1717
1843
|
},
|
|
1718
1844
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1719
1845
|
"message": "script-src ディレクティブが指定されていません。このため、安全でないスクリプトを実行できる状態になっています。"
|
|
@@ -1727,6 +1853,12 @@
|
|
|
1727
1853
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1728
1854
|
"message": "nonce は 8 文字以上である必要があります。"
|
|
1729
1855
|
},
|
|
1856
|
+
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1857
|
+
"message": "このディレクティブでは、プレーンな URL スキーム({keyword})を使用しないでください。プレーンな URL スキームを使用すると、安全でないドメインからスクリプトが挿入される恐れがあります。"
|
|
1858
|
+
},
|
|
1859
|
+
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1860
|
+
"message": "このディレクティブでは、プレーンなワイルドカード({keyword})を使用しないでください。プレーンなワイルドカードを使用すると、安全でないドメインからスクリプトが挿入される恐れがあります。"
|
|
1861
|
+
},
|
|
1730
1862
|
"lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
|
|
1731
1863
|
"message": "報告先が report-to ディレクティブ経由でのみ設定されています。このディレクティブは、Chromium ベースのブラウザでしかサポートされていないため、report-uri ディレクティブも使用することをおすすめします。"
|
|
1732
1864
|
},
|
|
@@ -1734,7 +1866,7 @@
|
|
|
1734
1866
|
"message": "CSP で報告先が設定されていません。CSP の動作状況や問題が発生した場合の確認が難しくなります。"
|
|
1735
1867
|
},
|
|
1736
1868
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1737
|
-
"message": "
|
|
1869
|
+
"message": "ホストの許可リストが頻繁に回避されています。必要な場合は、代わりに CSP nonce または hash と 'strict-dynamic' を使用することを検討してください。"
|
|
1738
1870
|
},
|
|
1739
1871
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1740
1872
|
"message": "不明な CSP ディレクティブです。"
|
|
@@ -1742,6 +1874,9 @@
|
|
|
1742
1874
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1875
|
"message": "{keyword} は無効なキーワードのようです。"
|
|
1744
1876
|
},
|
|
1877
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1878
|
+
"message": "'unsafe-inline' が指定されているため、安全でないページ内スクリプトやイベント ハンドラを実行できる状態になっています。CSP nonce または hash を使用して、スクリプトを個別に許可することを検討してください。"
|
|
1879
|
+
},
|
|
1745
1880
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1881
|
"message": "古いブラウザとの下位互換性を保つため、'unsafe-inline' を追加することを検討してください(nonce / hash をサポートしているブラウザでは無視されます)。"
|
|
1747
1882
|
},
|
|
@@ -1,4 +1,115 @@
|
|
|
1
1
|
{
|
|
2
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
3
|
+
"message": "모든 보고서"
|
|
4
|
+
},
|
|
5
|
+
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
6
|
+
"message": "Categories"
|
|
7
|
+
},
|
|
8
|
+
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
9
|
+
"message": "접근성"
|
|
10
|
+
},
|
|
11
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
12
|
+
"message": "권장사항"
|
|
13
|
+
},
|
|
14
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
15
|
+
"message": "성능"
|
|
16
|
+
},
|
|
17
|
+
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
18
|
+
"message": "프로그레시브 웹 앱"
|
|
19
|
+
},
|
|
20
|
+
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
21
|
+
"message": "검색엔진 최적화"
|
|
22
|
+
},
|
|
23
|
+
"flow-report/src/i18n/ui-strings.js | desktop": {
|
|
24
|
+
"message": "데스크톱"
|
|
25
|
+
},
|
|
26
|
+
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
27
|
+
"message": "Understanding the Lighthouse Flow Report"
|
|
28
|
+
},
|
|
29
|
+
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
30
|
+
"message": "Understanding Flows"
|
|
31
|
+
},
|
|
32
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
33
|
+
"message": "Use Navigation reports to..."
|
|
34
|
+
},
|
|
35
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
36
|
+
"message": "Use Snapshot reports to..."
|
|
37
|
+
},
|
|
38
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
39
|
+
"message": "Use Timespan reports to..."
|
|
40
|
+
},
|
|
41
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
42
|
+
"message": "Obtain a Lighthouse Performance score."
|
|
43
|
+
},
|
|
44
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
45
|
+
"message": "Measure page load Performance metrics such as Largest Contentful Paint and Speed Index."
|
|
46
|
+
},
|
|
47
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
48
|
+
"message": "Assess Progressive Web App capabilities."
|
|
49
|
+
},
|
|
50
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
51
|
+
"message": "Find accessibility issues in single page applications or complex forms."
|
|
52
|
+
},
|
|
53
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
54
|
+
"message": "Evaluate best practices of menus and UI elements hidden behind interaction."
|
|
55
|
+
},
|
|
56
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
57
|
+
"message": "Measure layout shifts and JavaScript execution time on a series of interactions."
|
|
58
|
+
},
|
|
59
|
+
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
|
+
"message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
|
|
61
|
+
},
|
|
62
|
+
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
63
|
+
"message": "모바일"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
66
|
+
"message": "페이지 로드"
|
|
67
|
+
},
|
|
68
|
+
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
69
|
+
"message": "Navigation reports analyze a single page load, exactly like the original Lighthouse reports."
|
|
70
|
+
},
|
|
71
|
+
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
72
|
+
"message": "탐색 보고서"
|
|
73
|
+
},
|
|
74
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
|
+
"message": "평균"
|
|
76
|
+
},
|
|
77
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
78
|
+
"message": "오류"
|
|
79
|
+
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
81
|
+
"message": "나쁨"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
84
|
+
"message": "좋음"
|
|
85
|
+
},
|
|
86
|
+
"flow-report/src/i18n/ui-strings.js | save": {
|
|
87
|
+
"message": "Save"
|
|
88
|
+
},
|
|
89
|
+
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
90
|
+
"message": "캡처된 페이지 상태"
|
|
91
|
+
},
|
|
92
|
+
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
93
|
+
"message": "Snapshot reports analyze the page in a particular state, typically after user interactions."
|
|
94
|
+
},
|
|
95
|
+
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
96
|
+
"message": "스냅샷 보고서"
|
|
97
|
+
},
|
|
98
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
|
+
"message": "요약"
|
|
100
|
+
},
|
|
101
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
102
|
+
"message": "사용자 상호작용"
|
|
103
|
+
},
|
|
104
|
+
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
105
|
+
"message": "Timespan reports analyze an arbitrary period of time, typically containing user interactions."
|
|
106
|
+
},
|
|
107
|
+
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
108
|
+
"message": "기간 보고서"
|
|
109
|
+
},
|
|
110
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
|
+
"message": "Lighthouse 사용자 플로우 보고서"
|
|
112
|
+
},
|
|
2
113
|
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
3
114
|
"message": "액세스 키를 사용하면 사용자가 페이지의 특정 부분에 신속하게 포커스를 맞출 수 있습니다. 정상적으로 탐색하려면 모든 액세스 키가 고유해야 합니다. [자세히 알아보기](https://web.dev/accesskeys/)"
|
|
4
115
|
},
|
|
@@ -554,6 +665,12 @@
|
|
|
554
665
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnDisplayedDimensions": {
|
|
555
666
|
"message": "표시된 크기"
|
|
556
667
|
},
|
|
668
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
|
|
669
|
+
"message": "이미지가 표시된 크기보다 큽니다"
|
|
670
|
+
},
|
|
671
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
|
|
672
|
+
"message": "이미지가 표시된 크기에 적합합니다"
|
|
673
|
+
},
|
|
557
674
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
558
675
|
"message": "적절한 크기의 이미지를 게재하여 모바일 데이터를 절약하고 로드 시간을 단축하세요. [자세히 알아보기](https://web.dev/uses-responsive-images/)"
|
|
559
676
|
},
|
|
@@ -1007,6 +1124,15 @@
|
|
|
1007
1124
|
"lighthouse-core/audits/layout-shift-elements.js | title": {
|
|
1008
1125
|
"message": "대규모 레이아웃 변경 피하기"
|
|
1009
1126
|
},
|
|
1127
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1128
|
+
"message": "스크롤 없이 볼 수 있는 이미지가 지연 로드되면 페이지 수명 주기 후반에 렌더링되므로 최대 콘텐츠 렌더링 시간이 늘어날 수 있습니다. [자세히 알아보기](https://web.dev/lcp-lazy-loading/)"
|
|
1129
|
+
},
|
|
1130
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1131
|
+
"message": "최대 콘텐츠 렌더링 시간 이미지가 지연 로드되었습니다"
|
|
1132
|
+
},
|
|
1133
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1134
|
+
"message": "최대 콘텐츠 렌더링 시간 이미지가 지연 로드되지 않았습니다"
|
|
1135
|
+
},
|
|
1010
1136
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1011
1137
|
"message": "기본 스레드의 가장 긴 작업을 열거합니다. 입력 지연을 가장 많이 유발하는 작업을 찾을 때 용이합니다. [자세히 알아보기](https://web.dev/long-tasks-devtools/)"
|
|
1012
1138
|
},
|
|
@@ -1524,7 +1650,7 @@
|
|
|
1524
1650
|
"message": "페이지에 유효한 소스 맵이 있음"
|
|
1525
1651
|
},
|
|
1526
1652
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1527
|
-
"message": "
|
|
1653
|
+
"message": "`<meta name=\"viewport\">`는 앱을 모바일 화면 크기에 최적화할 뿐만 아니라 [사용자 입력 300밀리초 지연](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away)도 방지합니다. [자세히 알아보기](https://web.dev/viewport/)"
|
|
1528
1654
|
},
|
|
1529
1655
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1530
1656
|
"message": "`<meta name=\"viewport\">` 태그 없음"
|
|
@@ -1659,7 +1785,7 @@
|
|
|
1659
1785
|
"message": "PWA 최적화됨"
|
|
1660
1786
|
},
|
|
1661
1787
|
"lighthouse-core/config/default-config.js | seoCategoryDescription": {
|
|
1662
|
-
"message": "
|
|
1788
|
+
"message": "페이지가 기본 검색엔진 최적화 권고를 따르는지 확인하는 검사입니다. 이 외에도 여기에서 Lighthouse가 고려하지는 않지만 검색 순위에 영향을 줄 수 있는 요소(예: [코어 웹 바이탈](https://web.dev/learn-web-vitals/) 실적)도 많이 있습니다. [자세히 알아보기](https://support.google.com/webmasters/answer/35769)"
|
|
1663
1789
|
},
|
|
1664
1790
|
"lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
|
|
1665
1791
|
"message": "사이트에서 이러한 추가 검증 도구를 실행하여 추가적인 검색엔진 최적화 권장사항을 확인합니다."
|
|
@@ -1713,7 +1839,7 @@
|
|
|
1713
1839
|
"message": "base-uri가 없으면 삽입된 <base> 태그로 인해 모든 상대 URL(예: 스크립트)에 대한 기본 URL이 공격자가 관리하는 도메인으로 설정될 수 있습니다. base-uri를 'none' 또는 'self'로 설정하는 것을 고려하세요."
|
|
1714
1840
|
},
|
|
1715
1841
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1716
|
-
"message": "object-src
|
|
1842
|
+
"message": "object-src가 누락되면 안전하지 않은 스크립트를 실행하는 플러그인이 삽입될 수 있습니다. 가능하면 object-src를 'none'으로 설정해 보세요."
|
|
1717
1843
|
},
|
|
1718
1844
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1719
1845
|
"message": "script-src 명령어가 누락되었습니다. 이렇게 되면 안전하지 않은 스크립트의 실행이 허용됩니다."
|
|
@@ -1727,6 +1853,12 @@
|
|
|
1727
1853
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1728
1854
|
"message": "nonce는 8자 이상이어야 합니다."
|
|
1729
1855
|
},
|
|
1856
|
+
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1857
|
+
"message": "이 지시어에서는 플레인 URL 스킴({keyword})을 사용하지 않는 것이 좋습니다. 플레인 URL 스킴을 사용하면 안전하지 않은 도메인에서 스크립트를 가져올 수 있습니다."
|
|
1858
|
+
},
|
|
1859
|
+
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1860
|
+
"message": "이 지시어에서는 플레인 와일드 카드({keyword})를 사용하지 않는 것이 좋습니다. 플레인 와일드카드를 사용하면 안전하지 않은 도메인에서 스크립트를 가져올 수 있습니다."
|
|
1861
|
+
},
|
|
1730
1862
|
"lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
|
|
1731
1863
|
"message": "보고 도착지는 report-to 명령어로만 구성할 수 있습니다. 이 명령어는 Chromium 기반 브라우저에서만 지원되므로 report-uri 명령어도 사용하는 것이 좋습니다."
|
|
1732
1864
|
},
|
|
@@ -1734,7 +1866,7 @@
|
|
|
1734
1866
|
"message": "보고 도착지를 구성하는 CSP가 없습니다. 이렇게 되면 시간이 지날수록 CSP를 유지 관리하고 손상 여부를 모니터링하기가 어려워집니다."
|
|
1735
1867
|
},
|
|
1736
1868
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1737
|
-
"message": "호스트 허용
|
|
1869
|
+
"message": "호스트 허용 목록을 우회하는 경우가 많아질 수 있습니다. 필요하면 'strict-dynamic'과 함께 CSP nonce 또는 hash를 대신 사용하는 것이 좋습니다."
|
|
1738
1870
|
},
|
|
1739
1871
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1740
1872
|
"message": "알 수 없는 CSP 명령어입니다."
|
|
@@ -1742,6 +1874,9 @@
|
|
|
1742
1874
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1875
|
"message": "{keyword}은(는) 잘못된 키워드인 것 같습니다."
|
|
1744
1876
|
},
|
|
1877
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1878
|
+
"message": "'unsafe-inline'은 안전하지 않은 인페이지 스크립트 및 이벤트 핸들러의 실행을 허용합니다. CSP nonce 또는 hash를 사용해 스크립트를 개별적으로 허용하는 것이 좋습니다."
|
|
1879
|
+
},
|
|
1745
1880
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1881
|
"message": "기존 브라우저와의 하위 호환성을 위하여 'unsafe-inline(nonce/hash를 지원하는 브라우저에서 무시됨)'을 추가하는 것이 좋습니다."
|
|
1747
1882
|
},
|