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": "Visi pārskati"
|
|
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": "Pieejamība"
|
|
10
|
+
},
|
|
11
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
12
|
+
"message": "Paraugprakse"
|
|
13
|
+
},
|
|
14
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
15
|
+
"message": "Veiktspēja"
|
|
16
|
+
},
|
|
17
|
+
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
18
|
+
"message": "Progresīvā tīmekļa lietotne"
|
|
19
|
+
},
|
|
20
|
+
"flow-report/src/i18n/ui-strings.js | categorySeo": {
|
|
21
|
+
"message": "MPO"
|
|
22
|
+
},
|
|
23
|
+
"flow-report/src/i18n/ui-strings.js | desktop": {
|
|
24
|
+
"message": "Datoriem"
|
|
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": "Mobilajām ierīcēm"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
66
|
+
"message": "Lapas ielāde"
|
|
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ācijas pārskats"
|
|
73
|
+
},
|
|
74
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
|
+
"message": "Viduvējs līmenis"
|
|
76
|
+
},
|
|
77
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
78
|
+
"message": "Kļūda"
|
|
79
|
+
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
81
|
+
"message": "Vājš līmenis"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
84
|
+
"message": "Labs līmenis"
|
|
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": "Lapas tvertais statuss"
|
|
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": "Momentuzņēmuma pārskats"
|
|
97
|
+
},
|
|
98
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
|
+
"message": "Kopsavilkums"
|
|
100
|
+
},
|
|
101
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
102
|
+
"message": "Lietotāju mijiedarbība"
|
|
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": "Laika posma pārskats"
|
|
109
|
+
},
|
|
110
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
|
+
"message": "Lighthouse lietotāju plūsmas pārskats"
|
|
112
|
+
},
|
|
2
113
|
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
3
114
|
"message": "Piekļuves atslēgas ļauj lietotājiem ātri pievērsties lapas daļai. Lai navigācija būtu pareiza, katrai piekļuves atslēgai ir jābūt unikālai. [Uzziniet vairāk](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": "Parādītie izmēri"
|
|
556
667
|
},
|
|
668
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
|
|
669
|
+
"message": "Attēli bija lielāki par parādītajiem izmēriem"
|
|
670
|
+
},
|
|
671
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
|
|
672
|
+
"message": "Attēli bija atbilstoši parādītajiem izmēriem"
|
|
673
|
+
},
|
|
557
674
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
558
675
|
"message": "Rādiet atbilstoša izmēra attēlus, lai tiktu izmantots mazāks mobilo datu apjoms un tiktu uzlabots ielādes laiks. [Uzziniet vairāk](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": "Centieties novērst lielas izkārtojuma nobīdes"
|
|
1009
1126
|
},
|
|
1127
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1128
|
+
"message": "Attēli pirmajā ekrānā, kam tiek veikta atliktā ielāde, tiek atveidoti vēlāk lapas darbības ciklā. Tas var aizkavēt lielāko satura marķējumu. [Uzziniet vairāk](https://web.dev/lcp-lazy-loading/)."
|
|
1129
|
+
},
|
|
1130
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1131
|
+
"message": "Lielākā satura marķējuma attēlam tika veikta atliktā ielāde"
|
|
1132
|
+
},
|
|
1133
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1134
|
+
"message": "Lielākā satura marķējuma attēlam netika veikta atliktā ielāde"
|
|
1135
|
+
},
|
|
1010
1136
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1011
1137
|
"message": "Šeit ir norādīti galvenā pavediena uzdevumi ar visilgāko izpildes laiku, lai palīdzētu noteikt, kuri uzdevumi visvairāk palielina ievades aizkavi. [Uzzināt vairāk](https://web.dev/long-tasks-devtools/)"
|
|
1012
1138
|
},
|
|
@@ -1524,7 +1650,7 @@
|
|
|
1524
1650
|
"message": "Lapā ir derīgas avota kartes"
|
|
1525
1651
|
},
|
|
1526
1652
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1527
|
-
"message": "
|
|
1653
|
+
"message": "Parametrs `<meta name=\"viewport\">` ne tikai optimizē jūsu lietotni dažādiem mobilo ierīču ekrāna lielumiem, bet arī novērš [300 milisekunžu aizkavi lietotāja ievadei](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [Uzziniet vairāk](https://web.dev/viewport/)."
|
|
1528
1654
|
},
|
|
1529
1655
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1530
1656
|
"message": "Netika atrasts tags `<meta name=\"viewport\">`"
|
|
@@ -1659,7 +1785,7 @@
|
|
|
1659
1785
|
"message": "PTL optimizācija"
|
|
1660
1786
|
},
|
|
1661
1787
|
"lighthouse-core/config/default-config.js | seoCategoryDescription": {
|
|
1662
|
-
"message": "Šīs
|
|
1788
|
+
"message": "Šīs pārbaudes nodrošina, ka jūsu lapa atbilst meklētājprogrammu optimizācijas pamatnostādnēm. Ir daudz papildu faktoru, kurus Lighthouse neņem vērā, taču kuri var ietekmēt jūsu meklēšanas rezultātu ranžēšanu, tostarp [tīmekļa pamatrādītāju](https://web.dev/learn-web-vitals/) veiktspēju. [Uzziniet vairāk](https://support.google.com/webmasters/answer/35769)."
|
|
1663
1789
|
},
|
|
1664
1790
|
"lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
|
|
1665
1791
|
"message": "Palaidiet savā vietnē šos papildu apstiprināšanas rīkus, lai aplūkotu papildu MPO paraugpraksi."
|
|
@@ -1713,7 +1839,7 @@
|
|
|
1713
1839
|
"message": "Direktīvai “base-uri” nav iestatīta vērtība, tāpēc var iepludināt <base> tagus, lai visiem relatīvajiem vietrāžiem URL (piemēram, skriptiem) iestatītu pamata URL, kas atbilst uzbrucēju kontrolētam domēnam. Ieteicams direktīvai “base-uri” iestatīt vērtību “none” vai “self”."
|
|
1714
1840
|
},
|
|
1715
1841
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1716
|
-
"message": "
|
|
1842
|
+
"message": "Ja nav norādīta direktīvas “object-src” vērtība, var tikt iepludināti spraudņi, kas izpilda nedrošus skriptus. Ieteicams iestatīt direktīvai “object-src” vērtību “none”, ja varat."
|
|
1717
1843
|
},
|
|
1718
1844
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1719
1845
|
"message": "Trūkst direktīvas “script-src”. Tāpēc var būt iespējams izpildīt nedrošus skriptus."
|
|
@@ -1727,6 +1853,12 @@
|
|
|
1727
1853
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1728
1854
|
"message": "Vienreizējiem kodiem jābūt vismaz astoņas rakstzīmes gariem."
|
|
1729
1855
|
},
|
|
1856
|
+
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1857
|
+
"message": "Neizmantojiet neformatētas URL shēmas ({keyword}) šajā direktīvā. Izmantojot neformatētas URL shēmas, skripti var tikt iegūti no nedroša domēna."
|
|
1858
|
+
},
|
|
1859
|
+
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1860
|
+
"message": "Neizmantojiet neformatētas aizstājējzīmes ({keyword}) šajā direktīvā. Izmantojot neformatētas aizstājējzīmes, skripti var tikt iegūti no nedroša domēna."
|
|
1861
|
+
},
|
|
1730
1862
|
"lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
|
|
1731
1863
|
"message": "Ziņošanas galamērķa konfigurēšanai ir izmantota tikai direktīva “report-to”. Šo direktīvu atbalsta tikai uz Chromium pamata izstrādātas pārlūkprogrammas, tāpēc ieteicams izmantot arī direktīvu “report-uri”."
|
|
1732
1864
|
},
|
|
@@ -1734,7 +1866,7 @@
|
|
|
1734
1866
|
"message": "Nevienā SDP nav konfigurēts ziņošanas galamērķis. Tāpēc ir grūti ilgtermiņā uzturēt SDP un uzraudzīt, vai nerodas darbības traucējumi."
|
|
1735
1867
|
},
|
|
1736
1868
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1737
|
-
"message": "Saimniekdatoru atļaušanas sarakstus bieži var apiet.
|
|
1869
|
+
"message": "Saimniekdatoru atļaušanas sarakstus bieži var apiet. Ieteicams izmantot SDP (CSP) vienreizējos kodus (“nonces”) vai jaucējvērtības (“hashes”) kopā ar direktīvu “strict-dynamic”, ja nepieciešams."
|
|
1738
1870
|
},
|
|
1739
1871
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1740
1872
|
"message": "Nezināma SDP direktīva."
|
|
@@ -1742,6 +1874,9 @@
|
|
|
1742
1874
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1875
|
"message": "{keyword} ir nederīgs atslēgvārds."
|
|
1744
1876
|
},
|
|
1877
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1878
|
+
"message": "Atslēgvārds “unsafe-inline” ļauj izpildīt nedrošus lapā ievietotus skriptus un notikumu apdarinātājus. Apsveriet iespēju atļaut skriptus pa vienam, izmantojot SDP vienreizējos kodus vai jaucējvērtības."
|
|
1879
|
+
},
|
|
1745
1880
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1881
|
"message": "Lai nodrošinātu atpakaļsaderību ar vecākām pārlūkprogrammām, varat pievienot atslēgvārdu “unsafe-inline” (pārlūkprogrammās, kas atbalsta vienreizējos kodus vai jaucējvērtības, šis atslēgvārds tiks ignorēts)."
|
|
1747
1882
|
},
|
|
@@ -1,4 +1,115 @@
|
|
|
1
1
|
{
|
|
2
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
3
|
+
"message": "Alle rapporten"
|
|
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": "Toegankelijkheid"
|
|
10
|
+
},
|
|
11
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
12
|
+
"message": "Praktische tips"
|
|
13
|
+
},
|
|
14
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
15
|
+
"message": "Prestaties"
|
|
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": "Mobiel"
|
|
64
|
+
},
|
|
65
|
+
"flow-report/src/i18n/ui-strings.js | navigationDescription": {
|
|
66
|
+
"message": "Laden van 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": "Navigatierapport"
|
|
73
|
+
},
|
|
74
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
|
+
"message": "Gemiddeld"
|
|
76
|
+
},
|
|
77
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
78
|
+
"message": "Fout"
|
|
79
|
+
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
81
|
+
"message": "Slecht"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
84
|
+
"message": "Goed"
|
|
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": "Vastgelegde staat van 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": "Momentopnamerapport"
|
|
97
|
+
},
|
|
98
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
|
+
"message": "Overzicht"
|
|
100
|
+
},
|
|
101
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
102
|
+
"message": "Gebruikersinteracties"
|
|
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": "Perioderapport"
|
|
109
|
+
},
|
|
110
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
|
+
"message": "Lighthouse-rapport over gebruikersstroom"
|
|
112
|
+
},
|
|
2
113
|
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
3
114
|
"message": "Met toegangstoetsen kunnen gebruikers snel de focus op een gedeelte van de pagina plaatsen. Voor correcte navigatie moet elke toegangstoets uniek zijn. [Meer informatie](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": "Getoonde afmetingen"
|
|
556
667
|
},
|
|
668
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
|
|
669
|
+
"message": "De afbeeldingen waren groter dan het weergegeven formaat"
|
|
670
|
+
},
|
|
671
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
|
|
672
|
+
"message": "De afbeeldingen waren geschikt voor het weergegeven formaat"
|
|
673
|
+
},
|
|
557
674
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
558
675
|
"message": "Lever afbeeldingen met het juiste formaat om mobiele data te besparen en de laadtijd te verbeteren. [Meer informatie](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": "Grote indelingsverschuivingen vermijden"
|
|
1009
1126
|
},
|
|
1127
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1128
|
+
"message": "Afbeeldingen boven de vouw die worden geladen met lazy loading, worden later tijdens de levensduur van de pagina weergegeven. Hierdoor kan de Grootste weergave met content (LCP) worden vertraagd. [Meer informatie](https://web.dev/lcp-lazy-loading/)"
|
|
1129
|
+
},
|
|
1130
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1131
|
+
"message": "Afbeelding voor Grootste weergave met content (LCP) is geladen met lazy loading"
|
|
1132
|
+
},
|
|
1133
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1134
|
+
"message": "Afbeelding voor Grootste weergave met content (LCP) is niet geladen met lazy loading"
|
|
1135
|
+
},
|
|
1010
1136
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1011
1137
|
"message": "Vermeldt de langste taken in de primaire thread (dit is handig om de bijdragers te identificeren die zorgen voor de meeste invoervertraging). [Meer informatie](https://web.dev/long-tasks-devtools/)"
|
|
1012
1138
|
},
|
|
@@ -1524,7 +1650,7 @@
|
|
|
1524
1650
|
"message": "De pagina heeft geldige bronkaarten"
|
|
1525
1651
|
},
|
|
1526
1652
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1527
|
-
"message": "
|
|
1653
|
+
"message": "Met een `<meta name=\"viewport\">` wordt je app niet alleen geoptimaliseerd voor formaten van mobiele schermen, maar wordt ook [een vertraging van 300 milliseconden voor gebruikersinvoer](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away) voorkomen. [Meer informatie](https://web.dev/viewport/)"
|
|
1528
1654
|
},
|
|
1529
1655
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1530
1656
|
"message": "Geen `<meta name=\"viewport\">`-tag gevonden"
|
|
@@ -1659,7 +1785,7 @@
|
|
|
1659
1785
|
"message": "Geoptimaliseerd voor PWA"
|
|
1660
1786
|
},
|
|
1661
1787
|
"lighthouse-core/config/default-config.js | seoCategoryDescription": {
|
|
1662
|
-
"message": "Deze
|
|
1788
|
+
"message": "Deze checks zorgen ervoor dat je pagina het algemene advies voor zoekmachineoptimalisatie volgt. Er zijn veel aanvullende factoren waarvoor Lighthouse hier geen score geeft, maar die wel van invloed kunnen zijn op je zoekpositie, waaronder de prestaties voor [Site-vitaliteit](https://web.dev/learn-web-vitals/). [Meer informatie](https://support.google.com/webmasters/answer/35769)"
|
|
1663
1789
|
},
|
|
1664
1790
|
"lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
|
|
1665
1791
|
"message": "Voer deze extra validators op je site uit om aanvullende praktische tips voor SEO te controleren."
|
|
@@ -1713,7 +1839,7 @@
|
|
|
1713
1839
|
"message": "Zonder base-uri kunnen ingevoegde <base>-tags de basis-URL instellen voor alle relatieve URL's (bijv. scripts) naar een door de aanvaller beheerd domein. Overweeg base-uri in te stellen op 'none' of 'self'."
|
|
1714
1840
|
},
|
|
1715
1841
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1716
|
-
"message": "
|
|
1842
|
+
"message": "Als object-src ontbreekt, kunnen plug-ins worden geïnjecteerd die onveilige scripts uitvoeren. Overweeg object-src in te stellen op 'none' als dat kan."
|
|
1717
1843
|
},
|
|
1718
1844
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1719
1845
|
"message": "De instructie script-src ontbreekt. Dit kan tot gevolg hebben dat onveilige scripts kunnen worden uitgevoerd."
|
|
@@ -1727,6 +1853,12 @@
|
|
|
1727
1853
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1728
1854
|
"message": "Nonces moeten ten minste 8 tekens lang zijn."
|
|
1729
1855
|
},
|
|
1856
|
+
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1857
|
+
"message": "Vermijd het gebruik van plattetekst-URL-schema's ({keyword}) in deze instructie. Bij plattetekst-URL-schema's kunnen scripts afkomstig zijn van een onveilig domein."
|
|
1858
|
+
},
|
|
1859
|
+
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1860
|
+
"message": "Vermijd het gebruik van plattetekst-jokertekens ({keyword}) in deze instructie. Bij plattetekst-jokertekens kunnen scripts afkomstig zijn van een onveilig domein."
|
|
1861
|
+
},
|
|
1730
1862
|
"lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
|
|
1731
1863
|
"message": "De rapportagebestemming is alleen ingesteld via de instructie report-to. Deze instructie wordt alleen ondersteund in op Chromium gebaseerde browsers, dus het wordt aanbevolen ook een instructie report-uri te gebruiken."
|
|
1732
1864
|
},
|
|
@@ -1734,7 +1866,7 @@
|
|
|
1734
1866
|
"message": "Er is geen CSP waarmee een rapportagebestemming wordt ingesteld. Hierdoor is het moeilijk om het CSP na verloop van tijd te onderhouden en te monitoren op kwetsbaarheden."
|
|
1735
1867
|
},
|
|
1736
1868
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1737
|
-
"message": "Toelatingslijsten van hosts kunnen vaak worden omzeild. Overweeg
|
|
1869
|
+
"message": "Toelatingslijsten van hosts kunnen vaak worden omzeild. Overweeg CSP-nonces of -hashes te gebruiken, zo nodig samen met 'strict-dynamic'."
|
|
1738
1870
|
},
|
|
1739
1871
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1740
1872
|
"message": "Onbekende CSP-instructie."
|
|
@@ -1742,6 +1874,9 @@
|
|
|
1742
1874
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1875
|
"message": "Zo te zien is {keyword} een ongeldig zoekwoord."
|
|
1744
1876
|
},
|
|
1877
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1878
|
+
"message": "Met 'unsafe-inline' kunnen onveilige scripts en gebeurtenishandlers op de pagina worden uitgevoerd. Overweeg CSP-nonces of -hashes te gebruiken om scripts afzonderlijk toe te staan."
|
|
1879
|
+
},
|
|
1745
1880
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1881
|
"message": "Voor compatibiliteit met oudere browsers kun je overwegen 'unsafe-inline' toe te voegen (dit wordt genegeerd door browsers die nonces/hashes ondersteunen)."
|
|
1747
1882
|
},
|
|
@@ -1,4 +1,115 @@
|
|
|
1
1
|
{
|
|
2
|
+
"flow-report/src/i18n/ui-strings.js | allReports": {
|
|
3
|
+
"message": "Alle rapporter"
|
|
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": "Tilgjengelighet"
|
|
10
|
+
},
|
|
11
|
+
"flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
|
|
12
|
+
"message": "Gode fremgangsmåter"
|
|
13
|
+
},
|
|
14
|
+
"flow-report/src/i18n/ui-strings.js | categoryPerformance": {
|
|
15
|
+
"message": "Resultater"
|
|
16
|
+
},
|
|
17
|
+
"flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
|
|
18
|
+
"message": "Progressivt nettprogram"
|
|
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": "Datamaskin"
|
|
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": "Sideinnlasting"
|
|
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": "Navigasjonsrapport"
|
|
73
|
+
},
|
|
74
|
+
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
75
|
+
"message": "Gjennomsnitt"
|
|
76
|
+
},
|
|
77
|
+
"flow-report/src/i18n/ui-strings.js | ratingError": {
|
|
78
|
+
"message": "Feil"
|
|
79
|
+
},
|
|
80
|
+
"flow-report/src/i18n/ui-strings.js | ratingFail": {
|
|
81
|
+
"message": "Dårlig"
|
|
82
|
+
},
|
|
83
|
+
"flow-report/src/i18n/ui-strings.js | ratingPass": {
|
|
84
|
+
"message": "God"
|
|
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": "Registrert sidetilstand"
|
|
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": "Øyeblikksbilde-rapport"
|
|
97
|
+
},
|
|
98
|
+
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
99
|
+
"message": "Sammendrag"
|
|
100
|
+
},
|
|
101
|
+
"flow-report/src/i18n/ui-strings.js | timespanDescription": {
|
|
102
|
+
"message": "Brukerinteraksjoner"
|
|
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": "Tidsspennrapport"
|
|
109
|
+
},
|
|
110
|
+
"flow-report/src/i18n/ui-strings.js | title": {
|
|
111
|
+
"message": "Lighthouse-rapport over brukerflyt"
|
|
112
|
+
},
|
|
2
113
|
"lighthouse-core/audits/accessibility/accesskeys.js | description": {
|
|
3
114
|
"message": "Med tilgangsnøkler kan brukere raskt fokusere på deler av siden. Hver tilgangsnøkkel må være unik for at navigeringen skal fungere riktig. [Finn ut mer](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": "Viste dimensjoner"
|
|
556
667
|
},
|
|
668
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
|
|
669
|
+
"message": "Bildene var større enn visningsstørrelsen"
|
|
670
|
+
},
|
|
671
|
+
"lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
|
|
672
|
+
"message": "Bildene var passende for visningsstørrelsen"
|
|
673
|
+
},
|
|
557
674
|
"lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
|
|
558
675
|
"message": "Vis bilder som har passende størrelse, for å spare mobildata og redusere innlastingstiden. [Finn ut mer](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": "Unngå store utseendeforskyvninger"
|
|
1009
1126
|
},
|
|
1127
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | description": {
|
|
1128
|
+
"message": "Bilder på den synlige delen av nettsiden som lastes inn utsatt, gjengis senere i sidens livssyklus, noe som kan forsinke den største innholdsrike opptegningen (LCP). [Finn ut mer](https://web.dev/lcp-lazy-loading/)."
|
|
1129
|
+
},
|
|
1130
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
|
|
1131
|
+
"message": "Bildet med største innholdsrike opptegning (LCP) ble lastet inn utsatt"
|
|
1132
|
+
},
|
|
1133
|
+
"lighthouse-core/audits/lcp-lazy-loaded.js | title": {
|
|
1134
|
+
"message": "Bildet med største innholdsrike opptegning (LCP) ble ikke lastet inn utsatt"
|
|
1135
|
+
},
|
|
1010
1136
|
"lighthouse-core/audits/long-tasks.js | description": {
|
|
1011
1137
|
"message": "Viser de lengste oppgavene på hovedtråden. Dette er nyttig for å finne ut hvilke oppgaver som bidrar mest til inndataforsinkelser. [Finn ut mer](https://web.dev/long-tasks-devtools/)"
|
|
1012
1138
|
},
|
|
@@ -1524,7 +1650,7 @@
|
|
|
1524
1650
|
"message": "Siden har gyldige kildekart"
|
|
1525
1651
|
},
|
|
1526
1652
|
"lighthouse-core/audits/viewport.js | description": {
|
|
1527
|
-
"message": "
|
|
1653
|
+
"message": "`<meta name=\"viewport\">`-taggen optimaliserer ikke bare appen din for mobilskjermstørrelser, men forhindrer også [at inndata fra brukerne blir forsinket i 300 millisekunder](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [Finn ut mer](https://web.dev/viewport/)."
|
|
1528
1654
|
},
|
|
1529
1655
|
"lighthouse-core/audits/viewport.js | explanationNoTag": {
|
|
1530
1656
|
"message": "Fant ingen `<meta name=\"viewport\">`-tag"
|
|
@@ -1659,7 +1785,7 @@
|
|
|
1659
1785
|
"message": "PWA-optimalisert"
|
|
1660
1786
|
},
|
|
1661
1787
|
"lighthouse-core/config/default-config.js | seoCategoryDescription": {
|
|
1662
|
-
"message": "Disse kontrollene sørger for at siden din
|
|
1788
|
+
"message": "Disse kontrollene sørger for at siden din følger grunnleggende råd for søkemotoroptimalisering. Det finnes mange tilleggsfaktorer som Lighthouse ikke evaluerer her, men som kan påvirke søkerangeringen din, inkludert ytelse på [Kjernestatistikk for nett](https://web.dev/learn-web-vitals/). [Finn ut mer](https://support.google.com/webmasters/answer/35769)."
|
|
1663
1789
|
},
|
|
1664
1790
|
"lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
|
|
1665
1791
|
"message": "Kjør disse tilleggsvalideringene på nettstedet ditt for å sjekke flere anbefalte fremgangsmåter for SEO."
|
|
@@ -1713,7 +1839,7 @@
|
|
|
1713
1839
|
"message": "Når base-uri mangler, kan injiserte <base>-tagger sette grunn-nettadressen for alle relative nettadresser (f.eks. skript) til et domene som en angriper kontrollerer. Vurder å sette base-uri til «none» eller «self»."
|
|
1714
1840
|
},
|
|
1715
1841
|
"lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
|
|
1716
|
-
"message": "
|
|
1842
|
+
"message": "Manglende object-src muliggjør injisering av programtillegg som kjører utrygge skript. Vurder å sette object-src til «none» om du kan."
|
|
1717
1843
|
},
|
|
1718
1844
|
"lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
|
|
1719
1845
|
"message": "Direktivet script-src mangler. Dette kan gjøre det mulig å kjøre utrygge skript."
|
|
@@ -1727,6 +1853,12 @@
|
|
|
1727
1853
|
"lighthouse-core/lib/csp-evaluator.js | nonceLength": {
|
|
1728
1854
|
"message": "Engangsverdier må være på minst åtte tegn."
|
|
1729
1855
|
},
|
|
1856
|
+
"lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
|
|
1857
|
+
"message": "Unngå bruk av enkle nettadresseordninger ({keyword}) i dette direktivet. Med enkle nettadresseordninger kan skript ha utrygge domener som kilde."
|
|
1858
|
+
},
|
|
1859
|
+
"lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
|
|
1860
|
+
"message": "Unngå bruk av enkle jokertegn ({keyword}) i dette direktivet. Med enkle jokertegn kan skript ha utrygge domener som kilde."
|
|
1861
|
+
},
|
|
1730
1862
|
"lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
|
|
1731
1863
|
"message": "Rapporteringsdestinasjonen er bare konfigurert via direktivet report-to. Dette direktivet støttes kun i Chromium-baserte nettlesere, så det anbefales at du også bruker direktivet report-uri."
|
|
1732
1864
|
},
|
|
@@ -1734,7 +1866,7 @@
|
|
|
1734
1866
|
"message": "Det er ingen CSP som konfigurerer en rapporteringsdestinasjon. Dette gjør det vanskelig å vedlikeholde CSP-en over tid og følge med på om noe slutter å virke."
|
|
1735
1867
|
},
|
|
1736
1868
|
"lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
|
|
1737
|
-
"message": "Godkjenningslister for verter kan ofte forbigås. Vurder å bruke
|
|
1869
|
+
"message": "Godkjenningslister for verter kan ofte forbigås. Vurder å bruke CSP-engangsverdier eller -hasher i stedet, samt «strict-dynamic» om nødvendig."
|
|
1738
1870
|
},
|
|
1739
1871
|
"lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
|
|
1740
1872
|
"message": "Ukjent CSP-direktiv."
|
|
@@ -1742,6 +1874,9 @@
|
|
|
1742
1874
|
"lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
|
|
1743
1875
|
"message": "{keyword} ser ut til å være et ugyldig nøkkelord."
|
|
1744
1876
|
},
|
|
1877
|
+
"lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
|
|
1878
|
+
"message": "«unsafe-inline» muliggjør kjøring av utrygge skript og hendelsesbehandlere på siden. Vurder å bruke CSP-engangsverdier eller -hasher for å la skript kjøre individuelt."
|
|
1879
|
+
},
|
|
1745
1880
|
"lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
1746
1881
|
"message": "Vurder å legge til «unsafe-inline» (ignoreres av nettlesere som støtter engangsverdier eller hasher) for bakoverkompatibilitet med eldre nettlesere."
|
|
1747
1882
|
},
|