lighthouse 8.5.1 → 8.6.0-dev.20211016

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (173) hide show
  1. package/changelog.md +5490 -0
  2. package/dist/report/flow.js +35 -12
  3. package/dist/report/standalone.js +20 -21
  4. package/flow-report/.eslintrc.cjs +49 -0
  5. package/flow-report/assets/styles.css +272 -9
  6. package/flow-report/jest.config.js +1 -1
  7. package/flow-report/package.json +4 -0
  8. package/flow-report/src/app.tsx +31 -9
  9. package/flow-report/src/common.tsx +86 -7
  10. package/flow-report/src/header.tsx +88 -0
  11. package/flow-report/src/help-dialog.tsx +120 -0
  12. package/flow-report/src/i18n/i18n.tsx +52 -0
  13. package/flow-report/src/i18n/localized-strings.js +11 -0
  14. package/flow-report/src/i18n/ui-strings.js +134 -0
  15. package/flow-report/src/icons.tsx +20 -3
  16. package/flow-report/src/sidebar/sidebar.tsx +11 -16
  17. package/flow-report/src/summary/category.tsx +39 -24
  18. package/flow-report/src/summary/summary.tsx +35 -32
  19. package/flow-report/src/topbar.tsx +54 -4
  20. package/flow-report/src/util.ts +26 -1
  21. package/flow-report/src/wrappers/report-renderer.tsx +1 -1
  22. package/flow-report/src/wrappers/report.tsx +6 -21
  23. package/flow-report/test/app-test.tsx +17 -13
  24. package/flow-report/test/common-test.tsx +89 -0
  25. package/flow-report/test/header-test.tsx +55 -0
  26. package/flow-report/test/sample-flow.ts +17 -0
  27. package/flow-report/test/setup/env-setup.ts +1 -0
  28. package/flow-report/test/sidebar/flow-test.tsx +6 -12
  29. package/flow-report/test/sidebar/sidebar-test.tsx +7 -13
  30. package/flow-report/test/summary/category-test.tsx +83 -34
  31. package/flow-report/test/summary/summary-test.tsx +12 -18
  32. package/flow-report/test/topbar-test.tsx +68 -0
  33. package/flow-report/test/util-test.tsx +1 -12
  34. package/flow-report/tsconfig.json +2 -0
  35. package/flow-report/types/flow-report.d.ts +2 -1
  36. package/jest.config.js +1 -15
  37. package/lighthouse-cli/bin.js +5 -0
  38. package/lighthouse-cli/cli-flags.js +10 -3
  39. package/lighthouse-cli/commands/commands.js +1 -0
  40. package/lighthouse-cli/commands/list-locales.js +16 -0
  41. package/lighthouse-cli/run.js +2 -2
  42. package/lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js +0 -0
  43. package/lighthouse-cli/test/smokehouse/report-assert.js +20 -4
  44. package/lighthouse-core/audits/byte-efficiency/byte-efficiency-audit.js +2 -1
  45. package/lighthouse-core/audits/byte-efficiency/unused-javascript.js +1 -1
  46. package/lighthouse-core/audits/seo/crawlable-anchors.js +10 -12
  47. package/lighthouse-core/computed/js-bundles.js +1 -2
  48. package/lighthouse-core/computed/unused-javascript-summary.js +3 -3
  49. package/lighthouse-core/config/config-helpers.js +1 -0
  50. package/lighthouse-core/config/config.js +2 -2
  51. package/lighthouse-core/config/default-config.js +5 -0
  52. package/lighthouse-core/fraggle-rock/api.js +10 -0
  53. package/lighthouse-core/fraggle-rock/config/filters.js +22 -3
  54. package/lighthouse-core/fraggle-rock/gather/driver.js +4 -0
  55. package/lighthouse-core/fraggle-rock/gather/navigation-runner.js +2 -2
  56. package/lighthouse-core/fraggle-rock/user-flow.js +35 -6
  57. package/lighthouse-core/gather/driver/navigation.js +5 -0
  58. package/lighthouse-core/gather/driver/prepare.js +14 -0
  59. package/lighthouse-core/gather/driver/storage.js +5 -0
  60. package/lighthouse-core/gather/gather-runner.js +2 -2
  61. package/lighthouse-core/gather/gatherers/dobetterweb/response-compression.js +5 -1
  62. package/lighthouse-core/gather/gatherers/full-page-screenshot.js +30 -24
  63. package/lighthouse-core/lib/cdt/Platform.js +55 -0
  64. package/lighthouse-core/lib/cdt/SDK.js +3 -123
  65. package/lighthouse-core/lib/cdt/generated/SourceMap.js +148 -312
  66. package/lighthouse-core/lib/csp-evaluator.js +2 -1
  67. package/lighthouse-core/lib/i18n/README.md +6 -6
  68. package/lighthouse-core/lib/i18n/i18n.js +26 -348
  69. package/lighthouse-core/lib/page-functions.js +4 -4
  70. package/lighthouse-core/lib/stack-packs.js +1 -13
  71. package/lighthouse-core/runner.js +6 -6
  72. package/lighthouse-core/scripts/manual-chrome-launcher.js +4 -1
  73. package/lighthouse-core/scripts/package.json +4 -0
  74. package/lighthouse-core/util-commonjs.js +20 -4
  75. package/package.json +19 -16
  76. package/readme.md +1 -1
  77. package/report/assets/standalone-template.html +0 -1
  78. package/report/assets/styles.css +16 -41
  79. package/report/assets/templates.html +42 -4
  80. package/report/clients/psi.js +1 -0
  81. package/report/clients/standalone.js +1 -2
  82. package/report/generator/file-namer.js +17 -8
  83. package/report/generator/report-generator.js +0 -1
  84. package/report/renderer/category-renderer.js +4 -16
  85. package/report/renderer/components.js +107 -71
  86. package/report/renderer/dom.js +19 -0
  87. package/report/renderer/logger.js +35 -2
  88. package/report/renderer/performance-category-renderer.js +23 -21
  89. package/report/renderer/pwa-category-renderer.js +1 -2
  90. package/report/renderer/report-renderer.js +21 -0
  91. package/report/renderer/report-ui-features.js +7 -19
  92. package/report/renderer/swap-locale-feature.js +82 -0
  93. package/report/renderer/util.js +20 -4
  94. package/report/test/clients/psi-test.js +0 -4
  95. package/report/test/generator/file-namer-test.js +2 -2
  96. package/report/test/renderer/category-renderer-test.js +1 -1
  97. package/report/test/renderer/performance-category-renderer-test.js +12 -0
  98. package/report/test/renderer/report-renderer-axe-test.js +86 -0
  99. package/report/test/renderer/report-renderer-test.js +0 -55
  100. package/report/test/renderer/util-test.js +68 -8
  101. package/report/test-assets/faux-psi-template.html +0 -1
  102. package/report/tsconfig.json +2 -1
  103. package/report/types/html-renderer.d.ts +2 -1
  104. package/root.js +18 -0
  105. package/shared/localization/format.js +455 -0
  106. package/{lighthouse-core/lib/cdt/Common.js → shared/localization/i18n-module.js} +3 -8
  107. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ar-XB.json +139 -4
  108. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ar.json +141 -6
  109. package/{lighthouse-core/lib/i18n → shared/localization}/locales/bg.json +139 -4
  110. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ca.json +140 -5
  111. package/{lighthouse-core/lib/i18n → shared/localization}/locales/cs.json +139 -4
  112. package/{lighthouse-core/lib/i18n → shared/localization}/locales/da.json +139 -4
  113. package/{lighthouse-core/lib/i18n → shared/localization}/locales/de.json +139 -4
  114. package/{lighthouse-core/lib/i18n → shared/localization}/locales/el.json +141 -6
  115. package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-GB.json +139 -4
  116. package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-US.json +129 -0
  117. package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-XA.json +139 -4
  118. package/{lighthouse-core/lib/i18n → shared/localization}/locales/en-XL.json +129 -0
  119. package/{lighthouse-core/lib/i18n → shared/localization}/locales/es-419.json +139 -4
  120. package/{lighthouse-core/lib/i18n → shared/localization}/locales/es.json +139 -4
  121. package/{lighthouse-core/lib/i18n → shared/localization}/locales/fi.json +139 -4
  122. package/{lighthouse-core/lib/i18n → shared/localization}/locales/fil.json +139 -4
  123. package/{lighthouse-core/lib/i18n → shared/localization}/locales/fr.json +139 -4
  124. package/{lighthouse-core/lib/i18n → shared/localization}/locales/he.json +139 -4
  125. package/{lighthouse-core/lib/i18n → shared/localization}/locales/hi.json +142 -7
  126. package/{lighthouse-core/lib/i18n → shared/localization}/locales/hr.json +139 -4
  127. package/{lighthouse-core/lib/i18n → shared/localization}/locales/hu.json +139 -4
  128. package/{lighthouse-core/lib/i18n → shared/localization}/locales/id.json +139 -4
  129. package/{lighthouse-core/lib/i18n → shared/localization}/locales/it.json +139 -4
  130. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ja.json +139 -4
  131. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ko.json +139 -4
  132. package/{lighthouse-core/lib/i18n → shared/localization}/locales/lt.json +139 -4
  133. package/{lighthouse-core/lib/i18n → shared/localization}/locales/lv.json +139 -4
  134. package/{lighthouse-core/lib/i18n → shared/localization}/locales/nl.json +139 -4
  135. package/{lighthouse-core/lib/i18n → shared/localization}/locales/no.json +139 -4
  136. package/{lighthouse-core/lib/i18n → shared/localization}/locales/pl.json +139 -4
  137. package/{lighthouse-core/lib/i18n → shared/localization}/locales/pt-PT.json +139 -4
  138. package/{lighthouse-core/lib/i18n → shared/localization}/locales/pt.json +139 -4
  139. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ro.json +139 -4
  140. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ru.json +139 -4
  141. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sk.json +139 -4
  142. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sl.json +139 -4
  143. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sr-Latn.json +139 -4
  144. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sr.json +139 -4
  145. package/{lighthouse-core/lib/i18n → shared/localization}/locales/sv.json +139 -4
  146. package/{lighthouse-core/lib/i18n → shared/localization}/locales/ta.json +146 -11
  147. package/{lighthouse-core/lib/i18n → shared/localization}/locales/te.json +179 -44
  148. package/{lighthouse-core/lib/i18n → shared/localization}/locales/th.json +139 -4
  149. package/{lighthouse-core/lib/i18n → shared/localization}/locales/tr.json +139 -4
  150. package/{lighthouse-core/lib/i18n → shared/localization}/locales/uk.json +139 -4
  151. package/{lighthouse-core/lib/i18n → shared/localization}/locales/vi.json +139 -4
  152. package/{lighthouse-core/lib/i18n → shared/localization}/locales/zh-HK.json +139 -4
  153. package/{lighthouse-core/lib/i18n → shared/localization}/locales/zh-TW.json +139 -4
  154. package/{lighthouse-core/lib/i18n → shared/localization}/locales/zh.json +139 -4
  155. package/{lighthouse-core/lib/i18n → shared/localization}/locales.js +8 -1
  156. package/shared/localization/swap-flow-locale.js +20 -0
  157. package/{lighthouse-core/lib/i18n → shared/localization}/swap-locale.js +9 -7
  158. package/shared/test/localization/format-test.js +421 -0
  159. package/shared/test/localization/locales-test.js +47 -0
  160. package/shared/test/localization/swap-locale-test.js +140 -0
  161. package/shared/tsconfig.json +22 -0
  162. package/{lighthouse-core/lib → shared}/type-verifiers.js +0 -0
  163. package/shared/types/shared.d.ts +24 -0
  164. package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +5 -3
  165. package/third-party/chromium-synchronization/installability-errors-test.js +2 -1
  166. package/tsconfig-all.json +1 -0
  167. package/tsconfig-base.json +1 -1
  168. package/tsconfig.json +2 -3
  169. package/types/config.d.ts +1 -0
  170. package/types/es-main.d.ts +18 -0
  171. package/types/externs.d.ts +2 -0
  172. package/types/lhr/flow.d.ts +7 -0
  173. package/types/lhr/i18n.d.ts +0 -3
@@ -1,4 +1,115 @@
1
1
  {
2
+ "flow-report/src/i18n/ui-strings.js | allReports": {
3
+ "message": "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
  },
@@ -1,4 +1,115 @@
1
1
  {
2
+ "flow-report/src/i18n/ui-strings.js | allReports": {
3
+ "message": "Alle Berichte"
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": "Barrierefreiheit"
10
+ },
11
+ "flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
12
+ "message": "Best Practices"
13
+ },
14
+ "flow-report/src/i18n/ui-strings.js | categoryPerformance": {
15
+ "message": "Leistung"
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": "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": "Seitenaufbau"
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": "Navigationsbericht"
73
+ },
74
+ "flow-report/src/i18n/ui-strings.js | ratingAverage": {
75
+ "message": "Durchschnittlich"
76
+ },
77
+ "flow-report/src/i18n/ui-strings.js | ratingError": {
78
+ "message": "Fehler"
79
+ },
80
+ "flow-report/src/i18n/ui-strings.js | ratingFail": {
81
+ "message": "Schlecht"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | ratingPass": {
84
+ "message": "Gut"
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": "Erfasster Seitenstatus"
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": "Snapshot-Bericht"
97
+ },
98
+ "flow-report/src/i18n/ui-strings.js | summary": {
99
+ "message": "Zusammenfassung"
100
+ },
101
+ "flow-report/src/i18n/ui-strings.js | timespanDescription": {
102
+ "message": "Nutzerinteraktionen"
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": "Zeitspannenbericht"
109
+ },
110
+ "flow-report/src/i18n/ui-strings.js | title": {
111
+ "message": "Lighthouse-Bericht zur Aufrufabfolge"
112
+ },
2
113
  "lighthouse-core/audits/accessibility/accesskeys.js | description": {
3
114
  "message": "Anhand von Tastenkombinationen können Nutzer schnell einen Bereich der Seite in den Fokus rücken. Damit die Navigation wie vorgesehen funktioniert, muss jede Tastenkombination eindeutig sein. [Weitere Informationen.](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": "Angezeigte Abmessungen"
556
667
  },
668
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
669
+ "message": "Bilder waren größer als die angezeigte Größe"
670
+ },
671
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
672
+ "message": "Bilder entsprachen der angezeigten Größe"
673
+ },
557
674
  "lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
558
675
  "message": "Stellen Sie Bilder bereit, die eine angemessene Größe haben, um mobile Daten zu sparen und die Ladezeit zu verbessern. [Weitere Informationen.](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": "Umfangreiche Layoutverschiebungen vermeiden"
1009
1126
  },
1127
+ "lighthouse-core/audits/lcp-lazy-loaded.js | description": {
1128
+ "message": "„Above the fold“-Bilder, die mit Lazy Loading geladen werden, werden später im Lebenszyklus der Seite gerendert. Dies kann zu Verzögerungen beim Largest Contentful Paint führen. [Weitere Informationen](https://web.dev/lcp-lazy-loading/)"
1129
+ },
1130
+ "lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
1131
+ "message": "Largest Contentful Paint-Bild wurde mit Lazy Loading geladen"
1132
+ },
1133
+ "lighthouse-core/audits/lcp-lazy-loaded.js | title": {
1134
+ "message": "Largest Contentful Paint-Bild wurde nicht mit Lazy Loading geladen"
1135
+ },
1010
1136
  "lighthouse-core/audits/long-tasks.js | description": {
1011
1137
  "message": "Listet die längsten Aufgaben im Hauptthread auf, was nützlich ist, um die Hauptursachen für Eingabeverzögerungen zu identifizieren. [Weitere Informationen](https://web.dev/long-tasks-devtools/)"
1012
1138
  },
@@ -1524,7 +1650,7 @@
1524
1650
  "message": "Seite hat gültige Quellzuordnungen"
1525
1651
  },
1526
1652
  "lighthouse-core/audits/viewport.js | description": {
1527
- "message": "Fügen Sie ein `<meta name=\"viewport\">`-Tag hinzu, um Ihre App für Bildschirme von Mobilgeräten zu optimieren. [Weitere Informationen.](https://web.dev/viewport/)"
1653
+ "message": "Ein `<meta name=\"viewport\">` optimiert Ihre App für Bildschirmgrößen von Mobilgeräten und verhindert darüber hinaus [eine Verzögerung von Nutzereingaben um 300 Millisekunden](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [Weitere Informationen](https://web.dev/viewport/)"
1528
1654
  },
1529
1655
  "lighthouse-core/audits/viewport.js | explanationNoTag": {
1530
1656
  "message": "Kein `<meta name=\"viewport\">`-Tag gefunden"
@@ -1659,7 +1785,7 @@
1659
1785
  "message": "PWA-optimiert"
1660
1786
  },
1661
1787
  "lighthouse-core/config/default-config.js | seoCategoryDescription": {
1662
- "message": "Mit diesen Prüfungen ist gewährleistet, dass Ihre Seite für das Ergebnis-Ranking von Suchmaschinen optimiert ist. Darüber hinaus gibt es aber auch noch andere Faktoren, die sich auf das Such-Ranking Ihrer Seite auswirken können und die Lighthouse nicht berücksichtigt. [Weitere Informationen.](https://support.google.com/webmasters/answer/35769)"
1788
+ "message": "Mit diesen Prüfungen ist gewährleistet, dass bei Ihrer Seite grundlegende Tipps für die Suchmaschinenoptimierung berücksichtigt werden. Es gibt viele verschiedene Faktoren, die Lighthouse hier nicht bewertet und die sich auf das Such-Ranking Ihrer Seite auswirken können, einschließlich der [Core Web Vitals](https://web.dev/learn-web-vitals/)-Performance. [Weitere Informationen](https://support.google.com/webmasters/answer/35769)."
1663
1789
  },
1664
1790
  "lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
1665
1791
  "message": "Sie können diese zusätzlichen Validierungen für Ihre Website ausführen, um weitere Best Practices für die SEO zu prüfen."
@@ -1713,7 +1839,7 @@
1713
1839
  "message": "Durch eingeschleuste <base>-Tags kann „base-uri“ für alle relativen URLs (beispielsweise für Skripts) auf eine von Angreifern kontrollierte Domain festgelegt werden. Sie können „base-uri“ auf „none“ oder „self“ setzen."
1714
1840
  },
1715
1841
  "lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
1716
- "message": "Durch „object-src“ kontrollierte Elemente werden als alte Funktionen angesehen. Sie können „object-src“ auf „none“ setzen, um das Einschleusen von Plug-ins zu verhindern, die unsichere Skripts ausführen."
1842
+ "message": "Wenn „object-src“ fehlt, können Plug-ins eingeschleust werden, die unsichere Skripts ausführen. Sie sollten daher „object-src“ auf „none“ setzen."
1717
1843
  },
1718
1844
  "lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
1719
1845
  "message": "Die Direktive „script-src“ fehlt. Dies kann die Ausführung unsicherer Skripts ermöglichen."
@@ -1727,6 +1853,12 @@
1727
1853
  "lighthouse-core/lib/csp-evaluator.js | nonceLength": {
1728
1854
  "message": "Nonces sollten aus mindestens 8 Zeichen bestehen."
1729
1855
  },
1856
+ "lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
1857
+ "message": "Vermeiden Sie die Verwendung von einfachen URL-Schemas ({keyword}) in dieser Richtlinie. Durch einfache URL-Schemas können Skripts aus einer unsicheren Domain abgerufen werden."
1858
+ },
1859
+ "lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
1860
+ "message": "Vermeiden Sie die Verwendung von einfachen Platzhaltern ({keyword}) in dieser Richtlinie. Durch einfache Platzhalter können Skripts aus einer unsicheren Domain abgerufen werden."
1861
+ },
1730
1862
  "lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
1731
1863
  "message": "Das Ziel für die Berichterstellung wird nur über die Direktive „report-to“ konfiguriert. Diese Direktive unterstützen nur Chromium-basierte Browser. Deshalb empfehlen wir, auch eine „report-uri“-Direktive zu verwenden."
1732
1864
  },
@@ -1734,7 +1866,7 @@
1734
1866
  "message": "Keine CSP konfiguriert ein Ziel für die Berichterstellung. Dadurch ist es schwierig, die CSP langfristig zu verwalten und Schwachstellen im Blick zu behalten."
1735
1867
  },
1736
1868
  "lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
1737
- "message": "Host-Zulassungslisten können häufig umgangen werden. Sie können „strict-dynamic“ in Kombination mit CSP-Nonces oder -Hashes verwenden."
1869
+ "message": "Host-Zulassungslisten können häufig umgangen werden. Falls notwendig, können Sie CSP-Nonces oder -Hashes mit „strict-dynamic“ verwenden."
1738
1870
  },
1739
1871
  "lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
1740
1872
  "message": "Unbekannte CSP-Direktive."
@@ -1742,6 +1874,9 @@
1742
1874
  "lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
1743
1875
  "message": "„{keyword}“ ist ein ungültiges Keyword."
1744
1876
  },
1877
+ "lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
1878
+ "message": "„unsafe-inline“ lässt die Ausführung unsicherer In-Page-Skripts und Event-Handler zu. Sie können CSP-Nonces oder -Hashes verwenden, um Skripts einzeln zuzulassen."
1879
+ },
1745
1880
  "lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
1746
1881
  "message": "Sie können „unsafe-inline“ hinzufügen (wird von Browsern ignoriert, die Nonces/Hashes unterstützen), um mit älteren Browsern kompatibel zu sein."
1747
1882
  },
@@ -1,4 +1,115 @@
1
1
  {
2
+ "flow-report/src/i18n/ui-strings.js | allReports": {
3
+ "message": "Όλες οι αναφορές"
4
+ },
5
+ "flow-report/src/i18n/ui-strings.js | categories": {
6
+ "message": "Categories"
7
+ },
8
+ "flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
9
+ "message": "Προσβασιμότητα"
10
+ },
11
+ "flow-report/src/i18n/ui-strings.js | categoryBestPractices": {
12
+ "message": "Βέλτιστες πρακτικές"
13
+ },
14
+ "flow-report/src/i18n/ui-strings.js | categoryPerformance": {
15
+ "message": "Απόδοση"
16
+ },
17
+ "flow-report/src/i18n/ui-strings.js | categoryProgressiveWebApp": {
18
+ "message": "Προηγμένη εφαρμογή ιστού"
19
+ },
20
+ "flow-report/src/i18n/ui-strings.js | categorySeo": {
21
+ "message": "SEO"
22
+ },
23
+ "flow-report/src/i18n/ui-strings.js | desktop": {
24
+ "message": "Υπολογιστής"
25
+ },
26
+ "flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
27
+ "message": "Understanding the Lighthouse Flow Report"
28
+ },
29
+ "flow-report/src/i18n/ui-strings.js | helpLabel": {
30
+ "message": "Understanding Flows"
31
+ },
32
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
33
+ "message": "Use Navigation reports to..."
34
+ },
35
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
36
+ "message": "Use Snapshot reports to..."
37
+ },
38
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
39
+ "message": "Use Timespan reports to..."
40
+ },
41
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
42
+ "message": "Obtain a Lighthouse Performance score."
43
+ },
44
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
45
+ "message": "Measure page load Performance metrics such as Largest Contentful Paint and Speed Index."
46
+ },
47
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
48
+ "message": "Assess Progressive Web App capabilities."
49
+ },
50
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
51
+ "message": "Find accessibility issues in single page applications or complex forms."
52
+ },
53
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
54
+ "message": "Evaluate best practices of menus and UI elements hidden behind interaction."
55
+ },
56
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
57
+ "message": "Measure layout shifts and JavaScript execution time on a series of interactions."
58
+ },
59
+ "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
60
+ "message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
61
+ },
62
+ "flow-report/src/i18n/ui-strings.js | mobile": {
63
+ "message": "Κινητό"
64
+ },
65
+ "flow-report/src/i18n/ui-strings.js | navigationDescription": {
66
+ "message": "Φόρτωση σελίδας"
67
+ },
68
+ "flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
69
+ "message": "Navigation reports analyze a single page load, exactly like the original Lighthouse reports."
70
+ },
71
+ "flow-report/src/i18n/ui-strings.js | navigationReport": {
72
+ "message": "Αναφορά πλοήγησης"
73
+ },
74
+ "flow-report/src/i18n/ui-strings.js | ratingAverage": {
75
+ "message": "Μέτρια"
76
+ },
77
+ "flow-report/src/i18n/ui-strings.js | ratingError": {
78
+ "message": "Σφάλμα"
79
+ },
80
+ "flow-report/src/i18n/ui-strings.js | ratingFail": {
81
+ "message": "Χαμηλή"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | ratingPass": {
84
+ "message": "Καλή"
85
+ },
86
+ "flow-report/src/i18n/ui-strings.js | save": {
87
+ "message": "Save"
88
+ },
89
+ "flow-report/src/i18n/ui-strings.js | snapshotDescription": {
90
+ "message": "Καταγεγραμμένη κατάσταση σελίδας"
91
+ },
92
+ "flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
93
+ "message": "Snapshot reports analyze the page in a particular state, typically after user interactions."
94
+ },
95
+ "flow-report/src/i18n/ui-strings.js | snapshotReport": {
96
+ "message": "Αναφορά σύνοψης"
97
+ },
98
+ "flow-report/src/i18n/ui-strings.js | summary": {
99
+ "message": "Σύνοψη"
100
+ },
101
+ "flow-report/src/i18n/ui-strings.js | timespanDescription": {
102
+ "message": "Αλληλεπιδράσεις χρήστη"
103
+ },
104
+ "flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
105
+ "message": "Timespan reports analyze an arbitrary period of time, typically containing user interactions."
106
+ },
107
+ "flow-report/src/i18n/ui-strings.js | timespanReport": {
108
+ "message": "Αναφορά χρονικού διαστήματος"
109
+ },
110
+ "flow-report/src/i18n/ui-strings.js | title": {
111
+ "message": "Αναφορά ροής χρήστη Lighthouse"
112
+ },
2
113
  "lighthouse-core/audits/accessibility/accesskeys.js | description": {
3
114
  "message": "Τα πλήκτρα πρόσβασης επιτρέπουν στους χρήστες να εστιάσουν γρήγορα σε ένα τμήμα της σελίδας. Για σωστή πλοήγηση, κάθε πλήκτρο πρόσβασης πρέπει να είναι μοναδικό. [Μάθετε περισσότερα](https://web.dev/accesskeys/)."
4
115
  },
@@ -554,6 +665,12 @@
554
665
  "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | columnDisplayedDimensions": {
555
666
  "message": "Διαστάσεις προβολής"
556
667
  },
668
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | failureTitle": {
669
+ "message": "Οι εικόνες ήταν μεγαλύτερες από το εμφανιζόμενο μέγεθός τους"
670
+ },
671
+ "lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js | title": {
672
+ "message": "Οι εικόνες ήταν κατάλληλες για το εμφανιζόμενο μέγεθός τους"
673
+ },
557
674
  "lighthouse-core/audits/byte-efficiency/uses-responsive-images.js | description": {
558
675
  "message": "Συνιστάται η προβολή εικόνων κατάλληλου μεγέθους για την εξοικονόμηση δεδομένων κινητής τηλεφωνίας και τη βελτίωση του χρόνου φόρτωσης. [Μάθετε περισσότερα](https://web.dev/uses-responsive-images/)."
559
676
  },
@@ -1007,6 +1124,15 @@
1007
1124
  "lighthouse-core/audits/layout-shift-elements.js | title": {
1008
1125
  "message": "Αποφύγετε τις μεγάλες μετατοπίσεις διάταξης"
1009
1126
  },
1127
+ "lighthouse-core/audits/lcp-lazy-loaded.js | description": {
1128
+ "message": "Οι εικόνες στο επάνω μέρος που φορτώνονται αργά αποδίδονται αργότερα στον κύκλο ζωής της σελίδας, κάτι που μπορεί να καθυστερήσει τη μεγαλύτερη σχεδίαση με περιεχόμενο. [Μάθετε περισσότερα](https://web.dev/lcp-lazy-loading/)."
1129
+ },
1130
+ "lighthouse-core/audits/lcp-lazy-loaded.js | failureTitle": {
1131
+ "message": "Η εικόνα μεγαλύτερης σχεδίασης με περιεχόμενο φορτώθηκε αργά"
1132
+ },
1133
+ "lighthouse-core/audits/lcp-lazy-loaded.js | title": {
1134
+ "message": "Η εικόνα μεγαλύτερης σχεδίασης με περιεχόμενο δεν φορτώθηκε αργά"
1135
+ },
1010
1136
  "lighthouse-core/audits/long-tasks.js | description": {
1011
1137
  "message": "Παραθέτει τις μεγαλύτερες εργασίες στο κύριο νήμα, κάτι που είναι χρήσιμο για τον εντοπισμό των συνεισφερόντων που συμβάλλουν περισσότερο στην καθυστέρηση εισόδου. [Μάθετε περισσότερα](https://web.dev/long-tasks-devtools/)"
1012
1138
  },
@@ -1272,10 +1398,10 @@
1272
1398
  "message": "Οι μηχανές αναζήτησης δεν μπορούν να συμπεριλάβουν τις σελίδες σας στα αποτελέσματα αναζήτησης, εάν δεν έχουν άδεια για την εκτέλεση ανίχνευσης σε αυτές. [Μάθετε περισσότερα](https://web.dev/is-crawable/)."
1273
1399
  },
1274
1400
  "lighthouse-core/audits/seo/is-crawlable.js | failureTitle": {
1275
- "message": "Η σελίδα αποκλείεται από την ευρετηρίαση"
1401
+ "message": "Η σελίδα αποκλείεται από την δημιουργία καταλόγου"
1276
1402
  },
1277
1403
  "lighthouse-core/audits/seo/is-crawlable.js | title": {
1278
- "message": "Η σελίδα δεν αποκλείεται από την ευρετηρίαση"
1404
+ "message": "Η σελίδα δεν αποκλείεται από την δημιουργία καταλόγου"
1279
1405
  },
1280
1406
  "lighthouse-core/audits/seo/link-text.js | description": {
1281
1407
  "message": "Το περιγραφικό κείμενο συνδέσμων βοηθά τις μηχανές αναζήτησης να κατανοήσουν το περιεχόμενό σας. [Μάθετε περισσότερα](https://web.dev/link-text/)."
@@ -1524,7 +1650,7 @@
1524
1650
  "message": "Η σελίδα έχει έγκυρες αντιστοιχίσεις πηγής"
1525
1651
  },
1526
1652
  "lighthouse-core/audits/viewport.js | description": {
1527
- "message": "Προσθέστε μια ετικέτα `<meta name=\"viewport\">` για να βελτιστοποιήσετε την εφαρμογή σας για οθόνες κινητών συσκευών. [Μάθετε περισσότερα](https://web.dev/viewport/)."
1653
+ "message": "Μια μεταετικέτα `<meta name=\"viewport\">` δεν βελτιστοποιεί απλώς την εφαρμογή σας για μεγέθη οθόνης κινητών, αλλά αποτρέπει και [μια καθυστέρηση 300 χιλιοστών του δευτερολέπτου στην εισαγωγή στοιχείων από τους χρήστες](https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away). [Μάθετε περισσότερα](https://web.dev/viewport/)."
1528
1654
  },
1529
1655
  "lighthouse-core/audits/viewport.js | explanationNoTag": {
1530
1656
  "message": "Δεν βρέθηκε ετικέτα `<meta name=\"viewport\">`"
@@ -1659,7 +1785,7 @@
1659
1785
  "message": "Με βελτιστοποίηση PWA"
1660
1786
  },
1661
1787
  "lighthouse-core/config/default-config.js | seoCategoryDescription": {
1662
- "message": "Αυτοί οι έλεγχοι διασφαλίζουν ότι η σελίδα σας είναι βελτιστοποιημένη για κατάταξη στα αποτελέσματα μηχανών αναζήτησης. Υπάρχουν επιπλέον παράγοντες που δεν ελέγχονται από το Lighthouse και μπορεί να επηρεάσουν την κατάταξη της σελίδας σας στην αναζήτηση. [Μάθετε περισσότερα](https://support.google.com/webmasters/answer/35769)."
1788
+ "message": "Αυτοί οι έλεγχοι διασφαλίζουν ότι η σελίδα σας ακολουθεί τις βασικές συμβουλές βελτιστοποίησης μηχανών αναζήτησης. Υπάρχουν πολλοί επιπλέον παράγοντες τους οποίους το Lighthouse δεν βαθμολογεί εδώ και οι οποίοι ενδέχεται να επηρεάζουν την κατάταξη στην αναζήτηση, συμπεριλαμβανομένης της απόδοσης στο [Core Web Vitals](https://web.dev/learn-web-vitals/). [Μάθετε περισσότερα](https://support.google.com/webmasters/answer/35769)."
1663
1789
  },
1664
1790
  "lighthouse-core/config/default-config.js | seoCategoryManualDescription": {
1665
1791
  "message": "Εκτελέστε αυτά τα πρόσθετα εργαλεία επικύρωσης, για να ελέγξετε περισσότερες βέλτιστες πρακτικές SEO."
@@ -1713,7 +1839,7 @@
1713
1839
  "message": "Το base-uri που λείπει επιτρέπει στις ενσωματωμένες ετικέτες <base> να ορίζουν το βασικό URL για όλα τα σχετικά URL (π.χ. σενάρια) σε έναν τομέα που ελέγχεται από έναν υπεύθυνο επίθεσης. Εξετάστε το ενδεχόμενο ρύθμισης του base-uri στις επιλογές \"none\" ή \"self\"."
1714
1840
  },
1715
1841
  "lighthouse-core/lib/csp-evaluator.js | missingObjectSrc": {
1716
- "message": "Τα στοιχεία που ελέγχονται από το object-src θεωρούνται λειτουργίες παλαιού τύπου. Εξετάστε το ενδεχόμενο ρύθμισης του object-src σε none για να αποτρέψετε την εισαγωγή προσθηκών που εκτελούν μη ασφαλή σενάρια."
1842
+ "message": "Η απουσία object-src επιτρέπει την εισαγωγή προσθηκών που εκτελούν μη ασφαλή σενάρια. Εξετάστε το ενδεχόμενο να ορίσετε το object-src σε none, εφόσον μπορείτε."
1717
1843
  },
1718
1844
  "lighthouse-core/lib/csp-evaluator.js | missingScriptSrc": {
1719
1845
  "message": "Λείπει η οδηγία script-src. Αυτό μπορεί να επιτρέψει την εκτέλεση μη ασφαλών σεναρίων."
@@ -1727,6 +1853,12 @@
1727
1853
  "lighthouse-core/lib/csp-evaluator.js | nonceLength": {
1728
1854
  "message": "Οι αριθμοί nonce πρέπει να αποτελούνται από τουλάχιστον 8 χαρακτήρες."
1729
1855
  },
1856
+ "lighthouse-core/lib/csp-evaluator.js | plainUrlScheme": {
1857
+ "message": "Αποφύγετε τη χρήση απλών σχημάτων URL ({keyword}) σε αυτήν την οδηγία. Τα απλά σχήματα URL επιτρέπουν την άντληση σεναρίων από μη ασφαλή τομέα."
1858
+ },
1859
+ "lighthouse-core/lib/csp-evaluator.js | plainWildcards": {
1860
+ "message": "Αποφύγετε τη χρήση απλών χαρακτήρων μπαλαντέρ ({keyword}) σε αυτήν την οδηγία. Οι απλοί χαρακτήρες μπαλαντέρ επιτρέπουν την άντληση σεναρίων από μη ασφαλή τομέα."
1861
+ },
1730
1862
  "lighthouse-core/lib/csp-evaluator.js | reportToOnly": {
1731
1863
  "message": "Ο προορισμός αναφοράς διαμορφώνεται μόνο μέσω της οδηγίας report-to. Αυτή η οδηγία υποστηρίζεται μόνο σε προγράμματα περιήγησης που βασίζονται στο Chromium, συνεπώς, συνιστάται επίσης η χρήση μιας οδηγίας report-uri."
1732
1864
  },
@@ -1734,7 +1866,7 @@
1734
1866
  "message": "Δεν υπάρχει CSP που διαμορφώνει προορισμό αναφοράς. Αυτό δυσχεραίνει τη διατήρηση του CSP για μεγάλα διαστήματα και την παρακολούθηση για τυχόν προβλήματα."
1735
1867
  },
1736
1868
  "lighthouse-core/lib/csp-evaluator.js | strictDynamic": {
1737
- "message": "Οι λίστες επιτρεπόμενων κεντρικού υπολογιστή μπορούν συχνά να παρακαμφθούν. Εξετάστε το ενδεχόμενο χρήσης του strict-dynamic σε συνδυασμό με αριθμούς nonce ή κατακερματισμούς CSP."
1869
+ "message": "Οι λίστες επιτρεπομένων κεντρικού υπολογιστή μπορούν συχνά να παρακαμφθούν. Εξετάστε το ενδεχόμενο να χρησιμοποιήσετε κατακερματισμούς ή αριθμούς nonce CSP στη θέση τους, μαζί με το strict-dynamic, εφόσον χρειάζεται."
1738
1870
  },
1739
1871
  "lighthouse-core/lib/csp-evaluator.js | unknownDirective": {
1740
1872
  "message": "Άγνωστη οδηγία CSP."
@@ -1742,6 +1874,9 @@
1742
1874
  "lighthouse-core/lib/csp-evaluator.js | unknownKeyword": {
1743
1875
  "message": "Το {keyword} φαίνεται ότι είναι μη έγκυρη λέξη-κλειδί."
1744
1876
  },
1877
+ "lighthouse-core/lib/csp-evaluator.js | unsafeInline": {
1878
+ "message": "Το unsafe-inline επιτρέπει την εκτέλεση μη ασφαλών σεναρίων στη σελίδα και δεικτών χειρισμού συμβάντων. Εξετάστε το ενδεχόμενο χρήσης αριθμών nonce ή κατακερματισμών CSP για να επιτρέπεται μεμονωμένα σενάρια."
1879
+ },
1745
1880
  "lighthouse-core/lib/csp-evaluator.js | unsafeInlineFallback": {
1746
1881
  "message": "Εξετάστε το ενδεχόμενο να προσθέσετε το unsafe-inline (παραβλέπεται από προγράμματα περιήγησης που υποστηρίζουν αριθμούς nonce/κατακερματισμούς) για συμβατότητα με παλαιότερα προγράμματα περιήγησης."
1747
1882
  },