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.
Files changed (172) hide show
  1. package/changelog.md +5490 -0
  2. package/flow-report/.eslintrc.cjs +49 -0
  3. package/flow-report/assets/styles.css +272 -9
  4. package/flow-report/jest.config.js +1 -1
  5. package/flow-report/package.json +4 -0
  6. package/flow-report/src/app.tsx +31 -9
  7. package/flow-report/src/common.tsx +86 -7
  8. package/flow-report/src/header.tsx +88 -0
  9. package/flow-report/src/help-dialog.tsx +120 -0
  10. package/flow-report/src/i18n/i18n.tsx +44 -0
  11. package/flow-report/src/i18n/localized-strings.js +11 -0
  12. package/flow-report/src/i18n/ui-strings.js +86 -0
  13. package/flow-report/src/icons.tsx +20 -3
  14. package/flow-report/src/sidebar/sidebar.tsx +11 -16
  15. package/flow-report/src/summary/category.tsx +42 -24
  16. package/flow-report/src/summary/summary.tsx +32 -29
  17. package/flow-report/src/topbar.tsx +54 -4
  18. package/flow-report/src/util.ts +26 -1
  19. package/flow-report/src/wrappers/report-renderer.tsx +1 -1
  20. package/flow-report/src/wrappers/report.tsx +6 -21
  21. package/flow-report/test/app-test.tsx +17 -13
  22. package/flow-report/test/common-test.tsx +89 -0
  23. package/flow-report/test/header-test.tsx +55 -0
  24. package/flow-report/test/sample-flow.ts +17 -0
  25. package/flow-report/test/setup/env-setup.ts +1 -0
  26. package/flow-report/test/sidebar/flow-test.tsx +6 -12
  27. package/flow-report/test/sidebar/sidebar-test.tsx +7 -13
  28. package/flow-report/test/summary/category-test.tsx +79 -34
  29. package/flow-report/test/summary/summary-test.tsx +11 -17
  30. package/flow-report/test/topbar-test.tsx +68 -0
  31. package/flow-report/test/util-test.tsx +1 -12
  32. package/flow-report/tsconfig.json +1 -0
  33. package/flow-report/types/flow-report.d.ts +2 -1
  34. package/jest.config.js +1 -15
  35. package/lighthouse-cli/bin.js +5 -0
  36. package/lighthouse-cli/cli-flags.js +10 -3
  37. package/lighthouse-cli/commands/commands.js +1 -0
  38. package/lighthouse-cli/commands/list-locales.js +16 -0
  39. package/lighthouse-cli/run.js +2 -2
  40. package/lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js +0 -0
  41. package/lighthouse-cli/test/smokehouse/report-assert.js +20 -4
  42. package/lighthouse-core/audits/byte-efficiency/byte-efficiency-audit.js +2 -1
  43. package/lighthouse-core/audits/byte-efficiency/unused-javascript.js +1 -1
  44. package/lighthouse-core/audits/seo/crawlable-anchors.js +10 -12
  45. package/lighthouse-core/computed/js-bundles.js +1 -2
  46. package/lighthouse-core/computed/unused-javascript-summary.js +3 -3
  47. package/lighthouse-core/config/config.js +2 -2
  48. package/lighthouse-core/config/default-config.js +5 -0
  49. package/lighthouse-core/fraggle-rock/api.js +10 -0
  50. package/lighthouse-core/fraggle-rock/config/filters.js +22 -3
  51. package/lighthouse-core/fraggle-rock/gather/driver.js +4 -0
  52. package/lighthouse-core/fraggle-rock/gather/navigation-runner.js +2 -2
  53. package/lighthouse-core/fraggle-rock/user-flow.js +35 -6
  54. package/lighthouse-core/gather/driver/navigation.js +5 -0
  55. package/lighthouse-core/gather/driver/prepare.js +14 -0
  56. package/lighthouse-core/gather/driver/storage.js +5 -0
  57. package/lighthouse-core/gather/gather-runner.js +2 -2
  58. package/lighthouse-core/gather/gatherers/dobetterweb/response-compression.js +5 -1
  59. package/lighthouse-core/gather/gatherers/full-page-screenshot.js +30 -24
  60. package/lighthouse-core/lib/cdt/Platform.js +55 -0
  61. package/lighthouse-core/lib/cdt/SDK.js +3 -123
  62. package/lighthouse-core/lib/cdt/generated/SourceMap.js +148 -312
  63. package/lighthouse-core/lib/csp-evaluator.js +2 -1
  64. package/lighthouse-core/lib/i18n/README.md +6 -6
  65. package/lighthouse-core/lib/i18n/i18n.js +9 -342
  66. package/lighthouse-core/lib/page-functions.js +4 -4
  67. package/lighthouse-core/lib/stack-packs.js +1 -13
  68. package/lighthouse-core/runner.js +6 -6
  69. package/lighthouse-core/scripts/manual-chrome-launcher.js +4 -1
  70. package/lighthouse-core/scripts/package.json +4 -0
  71. package/lighthouse-core/util-commonjs.js +20 -4
  72. package/package.json +19 -16
  73. package/readme.md +1 -1
  74. package/report/assets/standalone-template.html +0 -1
  75. package/report/assets/styles.css +16 -41
  76. package/report/assets/templates.html +42 -4
  77. package/report/clients/psi.js +1 -0
  78. package/report/clients/standalone.js +1 -2
  79. package/report/generator/file-namer.js +17 -8
  80. package/report/generator/report-generator.js +0 -1
  81. package/report/renderer/category-renderer.js +4 -16
  82. package/report/renderer/components.js +107 -71
  83. package/report/renderer/dom.js +19 -0
  84. package/report/renderer/logger.js +35 -2
  85. package/report/renderer/performance-category-renderer.js +23 -21
  86. package/report/renderer/pwa-category-renderer.js +1 -2
  87. package/report/renderer/report-renderer.js +21 -0
  88. package/report/renderer/report-ui-features.js +7 -19
  89. package/report/renderer/swap-locale-feature.js +82 -0
  90. package/report/renderer/util.js +20 -4
  91. package/report/test/clients/psi-test.js +0 -4
  92. package/report/test/generator/file-namer-test.js +2 -2
  93. package/report/test/renderer/category-renderer-test.js +1 -1
  94. package/report/test/renderer/performance-category-renderer-test.js +12 -0
  95. package/report/test/renderer/report-renderer-axe-test.js +86 -0
  96. package/report/test/renderer/report-renderer-test.js +0 -55
  97. package/report/test/renderer/util-test.js +68 -8
  98. package/report/test-assets/faux-psi-template.html +0 -1
  99. package/report/tsconfig.json +2 -1
  100. package/report/types/html-renderer.d.ts +2 -1
  101. package/root.js +18 -0
  102. package/shared/localization/format.js +422 -0
  103. package/{lighthouse-core/lib/cdt/Common.js → shared/localization/i18n-module.js} +3 -8
  104. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ar-XB.json +139 -4
  105. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ar.json +141 -6
  106. package/{lighthouse-core/lib/i18n → shared/localization}/locales/bg.json +139 -4
  107. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ca.json +140 -5
  108. package/{lighthouse-core/lib/i18n → shared/localization}/locales/cs.json +139 -4
  109. package/{lighthouse-core/lib/i18n → shared/localization}/locales/da.json +139 -4
  110. package/{lighthouse-core/lib/i18n → shared/localization}/locales/de.json +139 -4
  111. package/{lighthouse-core/lib/i18n → shared/localization}/locales/el.json +141 -6
  112. package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-GB.json +139 -4
  113. package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-US.json +111 -0
  114. package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-XA.json +139 -4
  115. package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-XL.json +111 -0
  116. package/{lighthouse-core/lib/i18n → shared/localization}/locales/es-419.json +139 -4
  117. package/{lighthouse-core/lib/i18n → shared/localization}/locales/es.json +139 -4
  118. package/{lighthouse-core/lib/i18n → shared/localization}/locales/fi.json +139 -4
  119. package/{lighthouse-core/lib/i18n → shared/localization}/locales/fil.json +139 -4
  120. package/{lighthouse-core/lib/i18n → shared/localization}/locales/fr.json +139 -4
  121. package/{lighthouse-core/lib/i18n → shared/localization}/locales/he.json +139 -4
  122. package/{lighthouse-core/lib/i18n → shared/localization}/locales/hi.json +142 -7
  123. package/{lighthouse-core/lib/i18n → shared/localization}/locales/hr.json +139 -4
  124. package/{lighthouse-core/lib/i18n → shared/localization}/locales/hu.json +139 -4
  125. package/{lighthouse-core/lib/i18n → shared/localization}/locales/id.json +139 -4
  126. package/{lighthouse-core/lib/i18n → shared/localization}/locales/it.json +139 -4
  127. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ja.json +139 -4
  128. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ko.json +139 -4
  129. package/{lighthouse-core/lib/i18n → shared/localization}/locales/lt.json +139 -4
  130. package/{lighthouse-core/lib/i18n → shared/localization}/locales/lv.json +139 -4
  131. package/{lighthouse-core/lib/i18n → shared/localization}/locales/nl.json +139 -4
  132. package/{lighthouse-core/lib/i18n → shared/localization}/locales/no.json +139 -4
  133. package/{lighthouse-core/lib/i18n → shared/localization}/locales/pl.json +139 -4
  134. package/{lighthouse-core/lib/i18n → shared/localization}/locales/pt-PT.json +139 -4
  135. package/{lighthouse-core/lib/i18n → shared/localization}/locales/pt.json +139 -4
  136. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ro.json +139 -4
  137. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ru.json +139 -4
  138. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sk.json +139 -4
  139. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sl.json +139 -4
  140. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sr-Latn.json +139 -4
  141. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sr.json +139 -4
  142. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sv.json +139 -4
  143. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ta.json +146 -11
  144. package/{lighthouse-core/lib/i18n → shared/localization}/locales/te.json +179 -44
  145. package/{lighthouse-core/lib/i18n → shared/localization}/locales/th.json +139 -4
  146. package/{lighthouse-core/lib/i18n → shared/localization}/locales/tr.json +139 -4
  147. package/{lighthouse-core/lib/i18n → shared/localization}/locales/uk.json +139 -4
  148. package/{lighthouse-core/lib/i18n → shared/localization}/locales/vi.json +139 -4
  149. package/{lighthouse-core/lib/i18n → shared/localization}/locales/zh-HK.json +139 -4
  150. package/{lighthouse-core/lib/i18n → shared/localization}/locales/zh-TW.json +139 -4
  151. package/{lighthouse-core/lib/i18n → shared/localization}/locales/zh.json +139 -4
  152. package/{lighthouse-core/lib/i18n → shared/localization}/locales.js +2 -1
  153. package/shared/localization/swap-flow-locale.js +20 -0
  154. package/{lighthouse-core/lib/i18n → shared/localization}/swap-locale.js +9 -7
  155. package/shared/test/localization/format-test.js +377 -0
  156. package/shared/test/localization/locales-test.js +47 -0
  157. package/shared/test/localization/swap-locale-test.js +140 -0
  158. package/shared/tsconfig.json +22 -0
  159. package/{lighthouse-core/lib → shared}/type-verifiers.js +0 -0
  160. package/shared/types/shared.d.ts +24 -0
  161. package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +5 -3
  162. package/third-party/chromium-synchronization/installability-errors-test.js +2 -1
  163. package/tsconfig-all.json +1 -0
  164. package/tsconfig-base.json +1 -1
  165. package/tsconfig.json +2 -3
  166. package/types/config.d.ts +1 -0
  167. package/types/es-main.d.ts +18 -0
  168. package/types/externs.d.ts +2 -0
  169. package/types/lhr/flow.d.ts +7 -0
  170. package/types/lhr/i18n.d.ts +0 -3
  171. package/dist/report/flow.js +0 -149
  172. package/dist/report/standalone.js +0 -228
@@ -1,4 +1,115 @@
1
1
  {
2
+ "flow-report/src/i18n/ui-strings.js | allReports": {
3
+ "message": "Tots els informes"
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": "Accessibilitat"
10
+ },
11
+ "flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
12
+ "message": "Pràctiques recomanades"
13
+ },
14
+ "flow-report/src/i18n/ui-strings.js | categoryPerformance": {
15
+ "message": "Rendiment"
16
+ },
17
+ "flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
18
+ "message": "Aplicació 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": "Escriptori"
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": "Mòbil"
64
+ },
65
+ "flow-report/src/i18n/ui-strings.js | navigationDescription": {
66
+ "message": "Càrrega de la pàgina"
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": "Informe de navegació"
73
+ },
74
+ "flow-report/src/i18n/ui-strings.js | ratingAverage": {
75
+ "message": "Normal"
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": "Deficient"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | ratingPass": {
84
+ "message": "Bo"
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": "Estat capturat de la pàgina"
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": "Informe d'una instantània"
97
+ },
98
+ "flow-report/src/i18n/ui-strings.js | summary": {
99
+ "message": "Resum"
100
+ },
101
+ "flow-report/src/i18n/ui-strings.js | timespanDescription": {
102
+ "message": "Interaccions dels usuaris"
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": "Informe d'un període de temps"
109
+ },
110
+ "flow-report/src/i18n/ui-strings.js | title": {
111
+ "message": "Informe del flux d'usuaris de Lighthouse"
112
+ },
2
113
  "lighthouse-core/audits/accessibility/accesskeys.js | description": {
3
114
  "message": "Les tecles d'accés permeten als usuaris posar el focus ràpidament en una part de la pàgina. Perquè es puguin desplaçar correctament, cada tecla d'accés ha de ser única. [Obtén més informació](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": "Dimensions mostrades"
556
667
  },
668
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
669
+ "message": "Les imatges eren més grans que la mida mostrada"
670
+ },
671
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
672
+ "message": "Les imatges eren adequades per a la mida mostrada"
673
+ },
557
674
  "lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
558
675
  "message": "Publica imatges amb la mida correcta per estalviar dades mòbils i millorar el temps de càrrega. [Obtén més informació](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 els canvis de disseny importants"
1009
1126
  },
1127
+ "lighthouse-core/audits/lcp-lazy-loaded.js | description": {
1128
+ "message": "Les imatges de la meitat superior de la pàgina que es carreguen lentament es renderitzen més tard al cicle de vida de la pàgina, cosa que pot retardar la renderització de l'element més gran amb contingut. [Obtén més informació](https://web.dev/lcp-lazy-loading/)."
1129
+ },
1130
+ "lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
1131
+ "message": "La imatge de renderització de l'element més gran amb contingut s'ha carregat lentament"
1132
+ },
1133
+ "lighthouse-core/audits/lcp-lazy-loaded.js | title": {
1134
+ "message": "La imatge de renderització de l'element més gran amb contingut no s'ha carregat lentament"
1135
+ },
1010
1136
  "lighthouse-core/audits/long-tasks.js | description": {
1011
1137
  "message": "Enumera les tasques més llargues del fil principal, cosa que resulta útil per identificar què contribueix més al retard de les interaccions. [Més informació](https://web.dev/long-tasks-devtools/)"
1012
1138
  },
@@ -1407,7 +1533,7 @@
1407
1533
  "message": "Estableix un color temàtic per a la barra d'adreces."
1408
1534
  },
1409
1535
  "lighthouse-core/audits/third-party-facades.js | categoryCustomerSuccess": {
1410
- "message": "{productName} (històries d'èxit)"
1536
+ "message": "{productName} (èxit del client)"
1411
1537
  },
1412
1538
  "lighthouse-core/audits/third-party-facades.js | categoryMarketing": {
1413
1539
  "message": "{productName} (màrqueting)"
@@ -1524,7 +1650,7 @@
1524
1650
  "message": "La pàgina té mapes d'origen vàlids"
1525
1651
  },
1526
1652
  "lighthouse-core/audits/viewport.js | description": {
1527
- "message": "Afegeix una etiqueta `<meta name=\"viewport\">` a fi d'optimitzar l'aplicació per a pantalles de dispositius mòbils. [Obtén més informació](https://web.dev/viewport/)."
1653
+ "message": "Una `<meta name=\"viewport\">` no només optimitza la teva aplicació per a mides de pantalla de mòbil, sinó que també evita [que l'entrada d'usuari es retardi 300 mil·lisegons](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [Obtén més informació](https://web.dev/viewport/)."
1528
1654
  },
1529
1655
  "lighthouse-core/audits/viewport.js | explanationNoTag": {
1530
1656
  "message": "No s'ha trobat cap etiqueta `<meta name=\"viewport\">`"
@@ -1659,7 +1785,7 @@
1659
1785
  "message": "Optimitzat per a PWA"
1660
1786
  },
1661
1787
  "lighthouse-core/config/default-config.js | seoCategoryDescription": {
1662
- "message": "Aquestes comprovacions garanteixen que la pàgina estigui optimitzada per classificar els resultats del motor de cerca. Hi ha factors addicionals que Lighthouse no comprova i que és possible que afectin la teva classificació a les cerques. [Obtén més informació](https://support.google.com/webmasters/answer/35769)."
1788
+ "message": "Aquestes comprovacions garanteixen que la pàgina segueixi les recomanacions d'optimització bàsica en cercadors. Hi ha molts factors addicionals que Lighthouse no puntua aquí i que poden afectar la classificació a les cerques, inclòs el rendiment a [Dades vitals web principals](https://web.dev/learn-web-vitals/). [Obtén més informació](https://support.google.com/webmasters/answer/35769)."
1663
1789
  },
1664
1790
  "lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
1665
1791
  "message": "Executa aquestes validacions addicionals al lloc web per comprovar les pràctiques addicionals recomanades per a SEO."
@@ -1713,7 +1839,7 @@
1713
1839
  "message": "Si no hi ha una directiva \"base-uri\", es poden injectar etiquetes <base> per establir l'URL de base de tots els URL relatius (per exemple, scripts) en un domini controlat per un atacant. Pots optar per establir \"base-uri\" en \"none\" o \"self\"."
1714
1840
  },
1715
1841
  "lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
1716
- "message": "Els elements controlats per \"object-src\" es consideren funcions heretades. Pots optar per establir \"object-src\" en \"none\" per prevenir la injecció de connectors que executin scripts no segurs."
1842
+ "message": "Si falta \"object-src\", es podran injectar connectors que executin scripts no segurs. Mira si pots establir \"object-src\" en \"none\"."
1717
1843
  },
1718
1844
  "lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
1719
1845
  "message": "Falta la directiva \"script-src\". Això pot permetre l'execució de scripts no segurs."
@@ -1727,6 +1853,12 @@
1727
1853
  "lighthouse-core/lib/csp-evaluator.js | nonceLength": {
1728
1854
  "message": "Els nonces han de tenir 8 caràcters com a mínim."
1729
1855
  },
1856
+ "lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
1857
+ "message": "Evita utilitzar esquemes d'URL senzills ({keyword}) en aquesta directiva. Els esquemes d'URL senzills permeten obtenir scripts d'un domini no segur."
1858
+ },
1859
+ "lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
1860
+ "message": "Evita utilitzar comodins senzills ({keyword}) en aquesta directiva. Els comodins senzills permeten obtenir scripts d'un domini no seguir."
1861
+ },
1730
1862
  "lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
1731
1863
  "message": "La destinació d'informes només es pot configurar mitjançant la directiva \"report-to\". Aquesta directiva només s'admet en navegadors basats en Chromium i, per tant, també es recomana utilitzar una directiva \"report-uri\"."
1732
1864
  },
@@ -1734,7 +1866,7 @@
1734
1866
  "message": "No hi ha cap CSP que ofereixi una destinació d'informes. Això fa que sigui més difícil mantenir la CSP al llarg del temps i monitorar les vulnerabilitats."
1735
1867
  },
1736
1868
  "lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
1737
- "message": "Les llistes d'amfitrions permesos sovint es poden ometre. Pots optar per utilitzar \"strict-dynamic\" juntament amb nonces o valors resum de la CSP."
1869
+ "message": "Les llistes d'amfitrions permesos sovint es poden ometre. Pots utilitzar nonces o valors resum de la CSP en el seu lloc, a més de \"strict-dynamic\", si cal."
1738
1870
  },
1739
1871
  "lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
1740
1872
  "message": "Directiva CSP desconeguda."
@@ -1742,6 +1874,9 @@
1742
1874
  "lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
1743
1875
  "message": "\"{keyword}\" sembla una paraula clau no vàlida."
1744
1876
  },
1877
+ "lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
1878
+ "message": "La directiva \"unsafe-inline\" permet l'execució de scripts in-page i gestors d'esdeveniments no segurs. Pots utilitzar nonces o valors resum de la CSP per permetre els scripts individualment."
1879
+ },
1745
1880
  "lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
1746
1881
  "message": "Pots optar per afegir \"unsafe-inline\" (els navegadors que admeten nonces o valors resum l'ignoren) perquè sigui retrocompatible amb navegadors més antics."
1747
1882
  },
@@ -1,4 +1,115 @@
1
1
  {
2
+ "flow-report/src/i18n/ui-strings.js | allReports": {
3
+ "message": "Všechny přehledy"
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": "Přístupnost"
10
+ },
11
+ "flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
12
+ "message": "Doporučené postupy"
13
+ },
14
+ "flow-report/src/i18n/ui-strings.js | categoryPerformance": {
15
+ "message": "Výkon"
16
+ },
17
+ "flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
18
+ "message": "Progresivní webová aplikace"
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": "Počítač"
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": "Načtení stránky"
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": "Přehled navigace"
73
+ },
74
+ "flow-report/src/i18n/ui-strings.js | ratingAverage": {
75
+ "message": "Průměr"
76
+ },
77
+ "flow-report/src/i18n/ui-strings.js | ratingError": {
78
+ "message": "Chyba"
79
+ },
80
+ "flow-report/src/i18n/ui-strings.js | ratingFail": {
81
+ "message": "Slabé"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | ratingPass": {
84
+ "message": "Dobré"
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": "Zachycený stav stránky"
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": "Přehled v konkrétním okamžiku"
97
+ },
98
+ "flow-report/src/i18n/ui-strings.js | summary": {
99
+ "message": "Souhrn"
100
+ },
101
+ "flow-report/src/i18n/ui-strings.js | timespanDescription": {
102
+ "message": "Interakce uživatelů"
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": "Přehled časového rozpětí"
109
+ },
110
+ "flow-report/src/i18n/ui-strings.js | title": {
111
+ "message": "Přehled toku uživatelů služby Lighthouse"
112
+ },
2
113
  "lighthouse-core/audits/accessibility/accesskeys.js | description": {
3
114
  "message": "Přístupové klávesy uživatelům umožňují rychleji vybrat část stránky. Aby navigace fungovala správně, musí být každá přístupová klávesa jedinečná. [Další informace](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": "Zobrazené rozměry"
556
667
  },
668
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
669
+ "message": "Obrázky byly větší než zobrazovaná velikost"
670
+ },
671
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
672
+ "message": "Obrázky byly vhodné pro zobrazovanou velikost"
673
+ },
557
674
  "lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
558
675
  "message": "Zobrazujte obrázky s vhodnou velikostí, abyste ušetřili mobilní data a zrychlili načítání. [Další informace](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": "Zajistěte, aby nedocházelo k velkým změnám rozvržení"
1009
1126
  },
1127
+ "lighthouse-core/audits/lcp-lazy-loaded.js | description": {
1128
+ "message": "Líně načtené obrázky nad okrajem se vykreslí později v životním cyklu stránky, což může zpozdit vykreslení největšího obsahu. [Další informace](https://web.dev/lcp-lazy-loading/)"
1129
+ },
1130
+ "lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
1131
+ "message": "Obrázek vykreslení největšího obsahu byl líně načten"
1132
+ },
1133
+ "lighthouse-core/audits/lcp-lazy-loaded.js | title": {
1134
+ "message": "Obrázek vykreslení největšího obsahu nebyl líně načten"
1135
+ },
1010
1136
  "lighthouse-core/audits/long-tasks.js | description": {
1011
1137
  "message": "Vypíše nejdelší úlohy v hlavním podprocesu, což umožňuje zjistit, co nejvíce přispívá k prodlevě vstupu. [Další informace](https://web.dev/long-tasks-devtools/)"
1012
1138
  },
@@ -1524,7 +1650,7 @@
1524
1650
  "message": "Stránka má platné soubory sourcemap"
1525
1651
  },
1526
1652
  "lighthouse-core/audits/viewport.js | description": {
1527
- "message": "Chcete-li aplikaci optimalizovat pro obrazovky mobilních zařízení, přidejte značku `<meta name=\"viewport\">`. [Další informace](https://web.dev/viewport/)"
1653
+ "message": "`<meta name=\"viewport\">` optimalizuje aplikaci pro velikosti obrazovek mobilů a brání [300milisekundové prodlevě uživatelského vstupu](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [Další informace](https://web.dev/viewport/)"
1528
1654
  },
1529
1655
  "lighthouse-core/audits/viewport.js | explanationNoTag": {
1530
1656
  "message": "Nebyla nalezena značka `<meta name=\"viewport\">`"
@@ -1659,7 +1785,7 @@
1659
1785
  "message": "Optimalizováno pro PWA"
1660
1786
  },
1661
1787
  "lighthouse-core/config/default-config.js | seoCategoryDescription": {
1662
- "message": "Tyto kontroly zajišťují, aby vaše stránka byla optimalizovaná pro hodnocení výsledků ve vyhledávačích. Na hodnocení ve vyhledávání mohou mít vliv i další faktory, které nástroj Lighthouse nekontroluje. [Další informace](https://support.google.com/webmasters/answer/35769)"
1788
+ "message": "Tyto kontroly zajišťují, aby vaše stránka dodržovala základní radu ohledně optimalizace pro vyhledávače. Mnoho dalších faktorů, které ovlivňují umístění ve výsledcích vyhledávání, Lighthouse nehodnotí, např. výkon metrik [Core Web Vitals](https://web.dev/learn-web-vitals/). [Další informace](https://support.google.com/webmasters/answer/35769)"
1663
1789
  },
1664
1790
  "lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
1665
1791
  "message": "Chcete-li zkontrolovat dodržování dalších doporučených postupů pro SEO, spusťte pro svůj web tyto další validátory."
@@ -1713,7 +1839,7 @@
1713
1839
  "message": "Chybějící base-uri umožňuje vložení značek <base> za účelem nastavení základní adresy URL pro všechny relativní adresy URL (např. skripty) na doménu kontrolovanou útočníkem. Nastavte base-uri na hodnotu „none“ nebo „self“."
1714
1840
  },
1715
1841
  "lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
1716
- "message": "Prvky řízené pomocí object-src se považují za starší funkce. Zvažte, zda nenastavit object-src na „none“, abyste předešli vložení pluginů spouštějících skripty, které nejsou bezpečné."
1842
+ "message": "Chybějící object-src umožňuje vložení pluginů spouštějících skripty, které nejsou bezpečné. Zvažte, zda nenastavit object-src na „none“."
1717
1843
  },
1718
1844
  "lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
1719
1845
  "message": "Chybí direktiva script-src. To může umožnit spouštění skriptů, které nejsou bezpečné."
@@ -1727,6 +1853,12 @@
1727
1853
  "lighthouse-core/lib/csp-evaluator.js | nonceLength": {
1728
1854
  "message": "Hodnoty nonce by měly mít délku alespoň 8 znaků."
1729
1855
  },
1856
+ "lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
1857
+ "message": "V této direktivě nepoužívejte prostá schémata adresy URL ({keyword}). Prostá schémata adresy URL povolují skripty pocházející z nebezpečných domén."
1858
+ },
1859
+ "lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
1860
+ "message": "V této direktivě nepoužívejte prosté zástupné znaky ({keyword}). Prosté zástupné znaky povolují skripty pocházející z nebezpečných domén."
1861
+ },
1730
1862
  "lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
1731
1863
  "message": "Cíl pro přehledy je nakonfigurován jenom pomocí direktivy report-to. Tato direktiva je podporovaná pouze v prohlížečích založených na projektu Chromium, proto doporučujeme použít direktivu report-uri."
1732
1864
  },
@@ -1734,7 +1866,7 @@
1734
1866
  "message": "Žádné zásady CSP neurčují cíl pro přehledy. To znesnadňuje dlouhodobou údržbu zásad CSP a monitorování případných prolomení."
1735
1867
  },
1736
1868
  "lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
1737
- "message": "Seznam povolených položek na hostiteli může být často obcházen. Zvažte, zda nepoužít strict-dynamic v kombinaci s hodnotami nonce nebo hash CSP."
1869
+ "message": "Seznam povolených položek na hostiteli může být často obcházen. Zvažte, zda nepoužít hodnoty nonce nebo hash CSP společně s parametrem strict-dynamic, pokud je potřeba."
1738
1870
  },
1739
1871
  "lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
1740
1872
  "message": "Neznámá direktiva CSP."
@@ -1742,6 +1874,9 @@
1742
1874
  "lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
1743
1875
  "message": "{keyword} je zřejmě neplatné klíčové slovo."
1744
1876
  },
1877
+ "lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
1878
+ "message": "unsafe-inline umožňuje spouštění skriptů na stránce a obslužných rutin událostí, které nejsou bezpečné. Zvažte, zda nepoužít hodnoty nonce nebo hash CSP, abyste skripty povolovali individuálně."
1879
+ },
1745
1880
  "lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
1746
1881
  "message": "Zvažte, zda nepřidat unsafe-inline (ignorováno prohlížeči, které podporují hodnoty nonce/hash) z důvodu zpětné kompatibility se staršími prohlížeči."
1747
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": "Hjælpefunktioner"
10
+ },
11
+ "flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
12
+ "message": "Optimale løsninger"
13
+ },
14
+ "flow-report/src/i18n/ui-strings.js | categoryPerformance": {
15
+ "message": "Effektivitet"
16
+ },
17
+ "flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
18
+ "message": "Progressiv webapp"
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": "Computer"
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": "Sideindlæsning"
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": "Rapport over navigation"
73
+ },
74
+ "flow-report/src/i18n/ui-strings.js | ratingAverage": {
75
+ "message": "Gennemsnit"
76
+ },
77
+ "flow-report/src/i18n/ui-strings.js | ratingError": {
78
+ "message": "Fejl"
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": "En sides tilstand på et specifikt tidspunkt"
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": "Rapport med øjebliksbillede"
97
+ },
98
+ "flow-report/src/i18n/ui-strings.js | summary": {
99
+ "message": "Oversigt"
100
+ },
101
+ "flow-report/src/i18n/ui-strings.js | timespanDescription": {
102
+ "message": "Brugerinteraktioner"
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": "Rapport over tidsperiode"
109
+ },
110
+ "flow-report/src/i18n/ui-strings.js | title": {
111
+ "message": "Rapport over brugerflow i Lighthouse"
112
+ },
2
113
  "lighthouse-core/audits/accessibility/accesskeys.js | description": {
3
114
  "message": "Med adgangsnøgler kan brugerne hurtigt fokusere på dele af siden. Hver nøgle skal være unik for at navigere korrekt. [Få flere oplysninger](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 mål"
556
667
  },
668
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
669
+ "message": "Billederne var større end deres viste størrelse"
670
+ },
671
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
672
+ "message": "Billederne passede til deres viste størrelse"
673
+ },
557
674
  "lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
558
675
  "message": "Vis billeder i korrekte størrelser for at spare mobildata og forbedre indlæsningstiden. [Få flere oplysninger](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": "Undgå store layoutskift"
1009
1126
  },
1127
+ "lighthouse-core/audits/lcp-lazy-loaded.js | description": {
1128
+ "message": "Billeder over skillelinjen, der anvender lazy loading, gengives senere på siden, hvilket kan forsinke den største udfyldning af indhold. [Få flere oplysninger](https://web.dev/lcp-lazy-loading/)."
1129
+ },
1130
+ "lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
1131
+ "message": "Den største udfyldning af billedindhold blev indlæst med lazy loading"
1132
+ },
1133
+ "lighthouse-core/audits/lcp-lazy-loaded.js | title": {
1134
+ "message": "Den største udfyldning af billedindhold blev ikke indlæst med lazy loading"
1135
+ },
1010
1136
  "lighthouse-core/audits/long-tasks.js | description": {
1011
1137
  "message": "Angiver lange opgaver i hovedtråden, hvilket er nyttigt til at identificere de bidragydere, der forårsager mest forsinkelse. [Få flere oplysninger](https://web.dev/long-tasks-devtools/)"
1012
1138
  },
@@ -1524,7 +1650,7 @@
1524
1650
  "message": "Siden har gyldige kildekort"
1525
1651
  },
1526
1652
  "lighthouse-core/audits/viewport.js | description": {
1527
- "message": "Tilføj et `<meta name=\"viewport\">`-tag for at optimere din app til mobilskærme. [Få flere oplysninger](https://web.dev/viewport/)."
1653
+ "message": "En `<meta name=\"viewport\">` optimerer ikke blot din app til mobilskærme, men den forhindrer også [en forsinkelse af brugerinput på 300 millisekunder](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [Få flere oplysninger](https://web.dev/viewport/)."
1528
1654
  },
1529
1655
  "lighthouse-core/audits/viewport.js | explanationNoTag": {
1530
1656
  "message": "Der blev ikke fundet noget `<meta name=\"viewport\">`-tag"
@@ -1659,7 +1785,7 @@
1659
1785
  "message": "PWA-optimeret"
1660
1786
  },
1661
1787
  "lighthouse-core/config/default-config.js | seoCategoryDescription": {
1662
- "message": "Disse kontroller sikrer, at din side er optimeret i forhold til rangering i søgemaskineresultater. Der findes andre faktorer, som Lighthouse ikke tjekker, og som kan påvirke din rangering i søgninger. [Få flere oplysninger](https://support.google.com/webmasters/answer/35769)."
1788
+ "message": "Disse kontroller sikrer, at din side følger de grundlæggende råd til søgemaskineoptimering. Der er mange yderligere faktorer, som Lighthouse ikke medregner her, der kan påvirke din søgerangering, bl.a. din ydeevne i [Core Web Vitals](https://web.dev/learn-web-vitals/). [Få flere oplysninger](https://support.google.com/webmasters/answer/35769)."
1663
1789
  },
1664
1790
  "lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
1665
1791
  "message": "Kør disse yderligere valideringer på dit website for at tjekke andre optimale SEO-løsninger."
@@ -1713,7 +1839,7 @@
1713
1839
  "message": "En manglende basis-uri tillader indsatte <base>-tags at angive basewebadressen for alle relative webadresser (f.eks. scripts) for et domæne, der styres af en hacker. Du bør overveje at angive basis-uri'en som \"none\" eller \"self\"."
1714
1840
  },
1715
1841
  "lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
1716
- "message": "Elementer, der styres af \"object-src\" anses som forældede funktioner. Overvej at angive \"object-src\" som \"none\" for at forhindre indsættelse af plugins, der kører usikre scripts."
1842
+ "message": "Hvis \"object-src\" mangler, kan der indsættes plugins, som udfører usikre scripts. Du bør overveje at indstille \"object-src\" til \"ingen\"."
1717
1843
  },
1718
1844
  "lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
1719
1845
  "message": "\"script-src\"-direktivet mangler. Dette kan muliggøre kørsel af usikre scripts."
@@ -1727,6 +1853,12 @@
1727
1853
  "lighthouse-core/lib/csp-evaluator.js | nonceLength": {
1728
1854
  "message": "Nonces skal bestå af mindst otte tegn."
1729
1855
  },
1856
+ "lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
1857
+ "message": "Undgå brug af almindelige webadresseskemaer ({keyword}) i dette direktiv. Ved brug af almindelige webadresseskemaer kan der hentes scripts fra et usikkert domæne."
1858
+ },
1859
+ "lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
1860
+ "message": "Undgå at bruge almindelige jokertegn ({keyword}) i dette direktiv. Ved brug af almindelige jokertegn kan der hentes scripts fra et usikkert domæne."
1861
+ },
1730
1862
  "lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
1731
1863
  "message": "Rapporteringsdestinationen konfigureres kun via direktivet \"report-to\". Dette direktiv understøttes kun i Chromium-baserede browsere. Derfor anbefaler vi, at du også bruger et \"report-uri\"-direktiv."
1732
1864
  },
@@ -1734,7 +1866,7 @@
1734
1866
  "message": "Ingen CSP har konfigureret en rapporteringsdestination. Dette gør det svært at vedligeholde CSP'en på længere sigt og holde øje med sårbarheder."
1735
1867
  },
1736
1868
  "lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
1737
- "message": "Hosttillaldelseslister kan ofte omgås. Overvej at bruge \"strict-dynamic\" sammen med CSP-nonces og -hashes."
1869
+ "message": "Hosttillaldelseslister kan ofte omgås. Du bør i stedet overveje at bruge CSP-nonces eller -hashes sammen med \"strict-dynamic\", hvis det er nødvendigt."
1738
1870
  },
1739
1871
  "lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
1740
1872
  "message": "Ukendt CSP-direktiv."
@@ -1742,6 +1874,9 @@
1742
1874
  "lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
1743
1875
  "message": "{keyword} lader til at være et ugyldigt søgeord."
1744
1876
  },
1877
+ "lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
1878
+ "message": "\"unsafe-inline\" tillader, at der kan køres \"unsafe in-page\"-scripts og hændelseshandlers. Overvej at bruge CSP-nonces eller -hashes til at tillade scripts på individuel basis."
1879
+ },
1745
1880
  "lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
1746
1881
  "message": "Overvej at tilføje \"unsafe-inline\" (ignoreres af browsere, der understøtter nonces/hashes) for at gøre CSP'en bagudkompatibel med ældre browsere."
1747
1882
  },