lighthouse 8.5.1 → 8.6.0-dev.20211013
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/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 +44 -0
- package/flow-report/src/i18n/localized-strings.js +11 -0
- package/flow-report/src/i18n/ui-strings.js +86 -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 +42 -24
- package/flow-report/src/summary/summary.tsx +32 -29
- 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 +79 -34
- package/flow-report/test/summary/summary-test.tsx +11 -17
- package/flow-report/test/topbar-test.tsx +68 -0
- package/flow-report/test/util-test.tsx +1 -12
- package/flow-report/tsconfig.json +1 -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.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 +9 -342
- 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 +422 -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 +111 -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 +111 -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 +2 -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 +377 -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
- package/dist/report/flow.js +0 -149
- package/dist/report/standalone.js +0 -228
|
@@ -1,4 +1,115 @@
|
|
|
1
1
|
{
|
|
2
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
3
|
+
"message": "Az összes jelentés"
|
|
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": "Kisegítő lehetőségek"
|
|
10
|
+
},
|
|
11
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
12
|
+
"message": "Bevált módszerek"
|
|
13
|
+
},
|
|
14
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
15
|
+
"message": "Teljesítmény"
|
|
16
|
+
},
|
|
17
|
+
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
18
|
+
"message": "Progresszív webes alkalmazás"
|
|
19
|
+
},
|
|
20
|
+
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
21
|
+
"message": "Keresőoptimalizálás"
|
|
22
|
+
},
|
|
23
|
+
"flow-report/src/i18n/ui-strings.js | desktop": {
|
|
24
|
+
"message": "Asztali"
|
|
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": "Mobil"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
66
|
+
"message": "Oldalbetöltés"
|
|
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": "Navigációs jelentés"
|
|
73
|
+
},
|
|
74
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
|
+
"message": "Átlagos"
|
|
76
|
+
},
|
|
77
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
78
|
+
"message": "Hiba"
|
|
79
|
+
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
81
|
+
"message": "Gyenge"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
84
|
+
"message": "Jó"
|
|
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": "Az oldal rögzített állapota"
|
|
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": "Pillanatkép-jelentés"
|
|
97
|
+
},
|
|
98
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
|
+
"message": "Összegzés"
|
|
100
|
+
},
|
|
101
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
102
|
+
"message": "Felhasználói interakciók"
|
|
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": "Időtartam-jelentés"
|
|
109
|
+
},
|
|
110
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
|
+
"message": "Lighthouse felhasználóimunkafolyamat-jelentés"
|
|
112
|
+
},
|
|
2
113
|
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
3
114
|
"message": "A hozzáférési kulcsok segítségével a felhasználók gyorsan fókuszálhatnak az oldal adott részére. A megfelelő navigáció érdekében az összes hozzáférési kulcsnak egyedinek kell lennie. [További információ](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": "Megjelenített méretek"
|
|
556
667
|
},
|
|
668
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
|
|
669
|
+
"message": "A képek nagyobbak voltak a megjelenített méretüknél"
|
|
670
|
+
},
|
|
671
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
|
|
672
|
+
"message": "A képek megfelelők voltak a megjelenített méretükhöz"
|
|
673
|
+
},
|
|
557
674
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
558
675
|
"message": "Használjon olyan képeket, amelyek megfelelő méretükkel elősegítik a mobiladat-forgalom csökkentését és a betöltési idő javulását. [További információ](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": "Az elrendezés nagy mértékű mozgásának elkerülése"
|
|
1009
1126
|
},
|
|
1127
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1128
|
+
"message": "A késleltetve betöltött hajtás feletti képek az oldal életciklusában később jelennek meg, ami késleltetheti a legnagyobb vizuális tartalomválaszt. [További információ](https://web.dev/lcp-lazy-loading/)."
|
|
1129
|
+
},
|
|
1130
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1131
|
+
"message": "A legnagyobb vizuális tartalomválasz késleltetve lett betöltve"
|
|
1132
|
+
},
|
|
1133
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1134
|
+
"message": "A legnagyobb vizuális tartalomválasz nem késleltetve lett betöltve"
|
|
1135
|
+
},
|
|
1010
1136
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1011
1137
|
"message": "A fő szál leghosszabb feladatait listázza. Hasznos az interakciótól számított késéshez legnagyobb mértékben hozzájáruló elemek azonosításához. [További információ](https://web.dev/long-tasks-devtools/)."
|
|
1012
1138
|
},
|
|
@@ -1524,7 +1650,7 @@
|
|
|
1524
1650
|
"message": "Az oldal érvényes forrás-hozzárendelésekkel rendelkezik"
|
|
1525
1651
|
},
|
|
1526
1652
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1527
|
-
"message": "
|
|
1653
|
+
"message": "A(z) `<meta name=\"viewport\">` nem csupán optimalizálja az alkalmazást a mobilképernyő-méretekre, hanem meg is akadályozza [a 300 ezredmásodperces késleltetést a felhasználói bevitelnél](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [További információ](https://web.dev/viewport/)."
|
|
1528
1654
|
},
|
|
1529
1655
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1530
1656
|
"message": "Nem található `<meta name=\"viewport\">` címke"
|
|
@@ -1659,7 +1785,7 @@
|
|
|
1659
1785
|
"message": "PWA-optimalizálás"
|
|
1660
1786
|
},
|
|
1661
1787
|
"lighthouse-core/config/default-config.js | seoCategoryDescription": {
|
|
1662
|
-
"message": "Ezekkel az ellenőrzésekkel győződhet meg arról, hogy oldala
|
|
1788
|
+
"message": "Ezekkel az ellenőrzésekkel győződhet meg arról, hogy oldala követi a keresőoptimalizálásra vonatkozó alapvető tanácsokat. Számos olyan, a Lighthouse által itt nem értékelt tényező van még, amely hatással lehet a keresésbeli rangsorolásra, beleértve az [Alapvető webes vitals-mutatók](https://web.dev/learn-web-vitals/) teljesítményét is. [További információ](https://support.google.com/webmasters/answer/35769)."
|
|
1663
1789
|
},
|
|
1664
1790
|
"lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
|
|
1665
1791
|
"message": "Ha ezeket a további érvényesítőket is futtatja webhelyén, egyéb bevált SEO-módszereket is ellenőrizhet."
|
|
@@ -1713,7 +1839,7 @@
|
|
|
1713
1839
|
"message": "A hiányzó base-uri lehetővé teszi az injektált <base> címkéknek alap-URL-ek beállítását minden relatív URL-nél (pl. szkripttel) a támadó által irányított domainre. Állítsa a base-uri direktívát „none” vagy „self” értékre."
|
|
1714
1840
|
},
|
|
1715
1841
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1716
|
-
"message": "Az object-src
|
|
1842
|
+
"message": "Az object-src hiánya olyan beépülő modulok beszúrását teszi lehetővé, amelyek nem biztonságos szkripteket futtatnak. Fontolja meg az object-ocr beállítását a „none” értékre, ha teheti."
|
|
1717
1843
|
},
|
|
1718
1844
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1719
1845
|
"message": "Hiányzik a script-src utasítás. Ez lehetővé teheti nem biztonságos szkriptek futtatását."
|
|
@@ -1727,6 +1853,12 @@
|
|
|
1727
1853
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1728
1854
|
"message": "A nonce-nak legalább nyolc karakterből kell állnia."
|
|
1729
1855
|
},
|
|
1856
|
+
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1857
|
+
"message": "Kerülje az egyszerű URL-sémák ({keyword}) használatát ebben az utasításban. Az egyszerű URL-sémák nem biztonságos domainről származó szkriptek megjelenését idézhetik elő."
|
|
1858
|
+
},
|
|
1859
|
+
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1860
|
+
"message": "Kerülje az egyszerű helyettesítő karakterek ({keyword}) használatát ebben az utasításban. Az egyszerű helyettesítő karakterek nem biztonságos domainről származó szkriptek megjelenését idézhetik elő."
|
|
1861
|
+
},
|
|
1730
1862
|
"lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
|
|
1731
1863
|
"message": "A jelentés célhelye csak a report-to utasítással van beállítva. Ezt az utasítást csak a Chromium-alapú böngészők támogatják, ezért ajánlott a report-uri utasítás használata is."
|
|
1732
1864
|
},
|
|
@@ -1734,7 +1866,7 @@
|
|
|
1734
1866
|
"message": "A jelentési célt nem állítja be CSP. Ez később megnehezíti a CSP karbantartását, illetve a sebezhetőségek figyelemmel kísérését."
|
|
1735
1867
|
},
|
|
1736
1868
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1737
|
-
"message": "A gazdagépek
|
|
1869
|
+
"message": "A gazdagépek engedélyezőlistái gyakran megkerülhetők. Fontolja meg CSP nonce-ok vagy hashek használatát, és a „strict-dynamic” kulcsszó beállítását, ha szükséges."
|
|
1738
1870
|
},
|
|
1739
1871
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1740
1872
|
"message": "Ismeretlen CSP-utasítás."
|
|
@@ -1742,6 +1874,9 @@
|
|
|
1742
1874
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1875
|
"message": "Úgy tűnik, hogy a(z) {keyword} érvénytelen kulcsszó."
|
|
1744
1876
|
},
|
|
1877
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1878
|
+
"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."
|
|
1879
|
+
},
|
|
1745
1880
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1881
|
"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
1882
|
},
|
|
@@ -1,4 +1,115 @@
|
|
|
1
1
|
{
|
|
2
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
3
|
+
"message": "Semua Laporan"
|
|
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": "Aksesibilitas"
|
|
10
|
+
},
|
|
11
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
12
|
+
"message": "Praktik Terbaik"
|
|
13
|
+
},
|
|
14
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
15
|
+
"message": "Performa"
|
|
16
|
+
},
|
|
17
|
+
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
18
|
+
"message": "Progressive Web App"
|
|
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": "Seluler"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
66
|
+
"message": "Pemuatan halaman"
|
|
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": "Laporan navigasi"
|
|
73
|
+
},
|
|
74
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
|
+
"message": "Biasa"
|
|
76
|
+
},
|
|
77
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
78
|
+
"message": "Error"
|
|
79
|
+
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
81
|
+
"message": "Buruk"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
84
|
+
"message": "Baik"
|
|
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": "Status halaman yang ditangkap"
|
|
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": "Laporan snapshot"
|
|
97
|
+
},
|
|
98
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
|
+
"message": "Ringkasan"
|
|
100
|
+
},
|
|
101
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
102
|
+
"message": "Interaksi pengguna"
|
|
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": "Laporan rentang waktu"
|
|
109
|
+
},
|
|
110
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
|
+
"message": "Laporan Alur Pengguna Lighthouse"
|
|
112
|
+
},
|
|
2
113
|
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
3
114
|
"message": "Kunci akses memungkinkan pengguna memfokuskan bagian halaman dengan cepat. Untuk navigasi yang tepat, setiap kunci akses harus unik. [Pelajari lebih lanjut](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": "Dimensi yang ditampilkan"
|
|
556
667
|
},
|
|
668
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
|
|
669
|
+
"message": "Gambar lebih besar dari ukuran yang ditampilkan"
|
|
670
|
+
},
|
|
671
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
|
|
672
|
+
"message": "Gambar sesuai dengan ukuran yang ditampilkan"
|
|
673
|
+
},
|
|
557
674
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
558
675
|
"message": "Menayangkan gambar yang berukuran sesuai untuk menghemat kuota dan meningkatkan waktu pemuatan. [Pelajari lebih lanjut](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": "Hindari peralihan tata letak berukuran besar"
|
|
1009
1126
|
},
|
|
1127
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1128
|
+
"message": "Gambar paruh atas yang dimuat dengan lambat akan dirender nanti di siklus proses halaman, yang dapat menunda Largest Contentful Paint. [Pelajari lebih lanjut](https://web.dev/lcp-lazy-loading/)."
|
|
1129
|
+
},
|
|
1130
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1131
|
+
"message": "Gambar Largest Contentful Paint dimuat dengan lambat"
|
|
1132
|
+
},
|
|
1133
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1134
|
+
"message": "Gambar Largest Contentful Paint tidak dimuat dengan lambat"
|
|
1135
|
+
},
|
|
1010
1136
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1011
1137
|
"message": "Mencantumkan tugas yang berjalan paling lama di thread utama, berguna untuk mengidentifikasi kontributor utama penundaan input. [Pelajari lebih lanjut](https://web.dev/long-tasks-devtools/)"
|
|
1012
1138
|
},
|
|
@@ -1524,7 +1650,7 @@
|
|
|
1524
1650
|
"message": "Halaman memiliki peta sumber yang valid"
|
|
1525
1651
|
},
|
|
1526
1652
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1527
|
-
"message": "
|
|
1653
|
+
"message": "`<meta name=\"viewport\">` tidak hanya mengoptimalkan aplikasi untuk ukuran layar perangkat seluler, tetapi juga mencegah [penundaan 300 milidetik pada input pengguna](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [Pelajari lebih lanjut](https://web.dev/viewport/)."
|
|
1528
1654
|
},
|
|
1529
1655
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1530
1656
|
"message": "Tag `<meta name=\"viewport\">` tidak ditemukan"
|
|
@@ -1659,7 +1785,7 @@
|
|
|
1659
1785
|
"message": "PWA yang Dioptimalkan"
|
|
1660
1786
|
},
|
|
1661
1787
|
"lighthouse-core/config/default-config.js | seoCategoryDescription": {
|
|
1662
|
-
"message": "Pemeriksaan ini memastikan bahwa halaman Anda
|
|
1788
|
+
"message": "Pemeriksaan ini memastikan bahwa halaman Anda mengikuti saran pengoptimalan mesin telusur dasar. Ada banyak faktor tambahan yang tidak diperhitungkan oleh Lighthouse di sini yang mungkin memengaruhi peringkat penelusuran Anda, termasuk performa di [Data Web Inti](https://web.dev/learn-web-vitals/). [Pelajari lebih lanjut](https://support.google.com/webmasters/answer/35769)."
|
|
1663
1789
|
},
|
|
1664
1790
|
"lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
|
|
1665
1791
|
"message": "Jalankan validator tambahan ini di situs Anda untuk memeriksa praktik terbaik SEO lainnya."
|
|
@@ -1713,7 +1839,7 @@
|
|
|
1713
1839
|
"message": "Base-uri yang tidak ada memungkinkan injeksi tag <base> untuk menyetel URL dasar bagi semua URL relatif (misalnya, skrip) ke domain yang dikontrol penyerang. Sebaiknya setel base-uri ke 'none' atau 'self'."
|
|
1714
1840
|
},
|
|
1715
1841
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1716
|
-
"message": "
|
|
1842
|
+
"message": "object-src yang hilang memungkinkan injeksi plugin yang menjalankan skrip tidak aman. Sebaiknya setel object-src ke 'none', jika memungkinkan."
|
|
1717
1843
|
},
|
|
1718
1844
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1719
1845
|
"message": "Perintah script-src tidak ada. Ini dapat mengizinkan eksekusi skrip yang tidak aman."
|
|
@@ -1727,6 +1853,12 @@
|
|
|
1727
1853
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1728
1854
|
"message": "Nonce harus terdiri dari minimal 8 karakter."
|
|
1729
1855
|
},
|
|
1856
|
+
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1857
|
+
"message": "Hindari penggunaan skema URL biasa ({keyword}) dalam perintah ini. Skema URL biasa memungkinkan skrip berasal dari domain yang tidak aman."
|
|
1858
|
+
},
|
|
1859
|
+
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1860
|
+
"message": "Hindari penggunaan karakter pengganti biasa ({keyword}) dalam perintah ini. Karakter pengganti biasa memungkinkan skrip berasal dari domain yang tidak aman."
|
|
1861
|
+
},
|
|
1730
1862
|
"lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
|
|
1731
1863
|
"message": "Tujuan pelaporan hanya dikonfigurasi melalui perintah report-to. Perintah ini hanya didukung di browser berbasis Chromium. Jadi, sebaiknya gunakan juga perintah report-uri."
|
|
1732
1864
|
},
|
|
@@ -1734,7 +1866,7 @@
|
|
|
1734
1866
|
"message": "Tidak ada CSP yang mengonfigurasi tujuan pelaporan. Mempertahankan CSP dari waktu ke waktu dan memantau setiap kerusakan menjadi sulit dilakukan."
|
|
1735
1867
|
},
|
|
1736
1868
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1737
|
-
"message": "Daftar host yang diizinkan sering kali dapat diabaikan. Sebaiknya gunakan 'strict-dynamic'
|
|
1869
|
+
"message": "Daftar host yang diizinkan sering kali dapat diabaikan. Sebaiknya gunakan nonce atau hash CSP, beserta 'strict-dynamic', jika perlu."
|
|
1738
1870
|
},
|
|
1739
1871
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1740
1872
|
"message": "Perintah CSP tidak dikenal."
|
|
@@ -1742,6 +1874,9 @@
|
|
|
1742
1874
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1875
|
"message": "Tampaknya {keyword} adalah kata kunci yang tidak valid."
|
|
1744
1876
|
},
|
|
1877
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1878
|
+
"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."
|
|
1879
|
+
},
|
|
1745
1880
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1881
|
"message": "Sebaiknya tambahkan 'unsafe-inline' (diabaikan oleh browser yang mendukung nonce/hash) agar kompatibel dengan browser versi lama."
|
|
1747
1882
|
},
|
|
@@ -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
|
},
|