chrome-devtools-frontend 1.0.946351 → 1.0.948359
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +1 -0
- package/config/gni/all_devtools_files.gni +1 -15
- package/config/gni/devtools_grd_files.gni +9 -15
- package/config/gni/devtools_image_files.gni +1 -0
- package/front_end/.eslintrc.js +6 -1
- package/front_end/Images/src/circled_backslash_icon.svg +3 -0
- package/front_end/core/host/InspectorFrontendHost.ts +0 -3
- package/front_end/core/host/InspectorFrontendHostAPI.ts +0 -1
- package/front_end/core/host/UserMetrics.ts +1 -22
- package/front_end/core/i18n/locales/en-US.json +38 -29
- package/front_end/core/i18n/locales/en-XL.json +38 -29
- package/front_end/core/platform/platform.ts +0 -2
- package/front_end/core/platform/string-utilities.ts +14 -1
- package/front_end/core/platform/utilities.ts +0 -29
- package/front_end/core/root/Runtime.ts +4 -211
- package/front_end/core/sdk/AccessibilityModel.ts +0 -2
- package/front_end/core/sdk/CSSProperty.ts +0 -2
- package/front_end/core/sdk/CSSRule.ts +0 -2
- package/front_end/core/sdk/Cookie.ts +0 -25
- package/front_end/core/sdk/EmulationModel.ts +0 -2
- package/front_end/core/sdk/HeapProfilerModel.ts +0 -2
- package/front_end/core/sdk/NetworkManager.ts +0 -3
- package/front_end/core/sdk/Resource.ts +0 -3
- package/front_end/core/sdk/ResourceTreeModel.ts +0 -3
- package/front_end/core/sdk/ServiceWorkerManager.ts +0 -2
- package/front_end/core/sdk/sdk-legacy.ts +0 -3
- package/front_end/devtools_compatibility.js +1 -1
- package/front_end/entrypoints/devtools_app/{devtools_app-meta-files.ts → devtools_app.ts} +9 -2
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +2 -1
- package/front_end/entrypoints/inspector/{inspector.js → inspector.ts} +0 -3
- package/front_end/entrypoints/js_app/{JsMain.ts → js_app.ts} +5 -1
- package/front_end/entrypoints/main/MainImpl.ts +0 -1
- package/front_end/entrypoints/ndb_app/{ndb_app.js → ndb_app.ts} +0 -2
- package/front_end/entrypoints/{node_main → node_app}/NodeConnectionsPanel.ts +1 -1
- package/front_end/entrypoints/{node_main → node_app}/NodeMain.ts +2 -4
- package/front_end/entrypoints/{node_main → node_app}/nodeConnectionsPanel.css +0 -0
- package/front_end/entrypoints/node_app/node_app.ts +79 -0
- package/front_end/entrypoints/shell/{shell.js → shell.ts} +0 -2
- package/front_end/entrypoints/worker_app/{worker_app.js → worker_app.ts} +3 -2
- package/front_end/generated/InspectorBackendCommands.js +5 -1
- package/front_end/generated/protocol.d.ts +12 -0
- package/front_end/legacy/legacy-defs.d.ts +0 -4
- package/front_end/legacy_test_runner/test_runner/TestRunner.js +35 -59
- package/front_end/models/bindings/CompilerScriptMapping.ts +0 -1
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +4 -11
- package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
- package/front_end/models/emulation/DeviceModeModel.ts +0 -2
- package/front_end/models/issues_manager/CorsIssue.ts +17 -9
- package/front_end/models/issues_manager/descriptions/{corsInsecurePrivateNetworkPreflight.md → corsPreflightAllowPrivateNetworkError.md} +1 -1
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +3 -1
- package/front_end/panels/animation/AnimationTimeline.ts +0 -2
- package/front_end/panels/animation/AnimationUI.ts +0 -2
- package/front_end/panels/application/BackForwardCacheStrings.ts +2 -5
- package/front_end/panels/application/BackForwardCacheView.ts +150 -58
- package/front_end/panels/application/ResourcesPanel.ts +0 -42
- package/front_end/panels/application/application-legacy.ts +0 -3
- package/front_end/panels/application/application-meta.ts +0 -13
- package/front_end/panels/application/backForwardCacheView.css +44 -6
- package/front_end/panels/application/components/FrameDetailsView.ts +3 -3
- package/front_end/panels/application/components/OriginTrialTreeView.ts +3 -3
- package/front_end/panels/application/components/StackTrace.ts +1 -1
- package/front_end/panels/coverage/CoverageView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewModel.ts +0 -2
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +0 -7
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +0 -2
- package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -0
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
- package/front_end/panels/developer_resources/DeveloperResourcesView.ts +2 -1
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +0 -11
- package/front_end/panels/elements/ElementsPanel.ts +9 -1
- package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
- package/front_end/panels/elements/StylesSidebarPane.ts +0 -1
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
- package/front_end/panels/emulation/DeviceModeToolbar.ts +0 -16
- package/front_end/panels/issues/CorsIssueDetailsView.ts +18 -2
- package/front_end/panels/lighthouse/lighthouse-meta.ts +0 -3
- package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -0
- package/front_end/panels/profiler/CPUProfileFlameChart.ts +3 -1
- package/front_end/panels/profiler/ProfileDataGrid.ts +2 -1
- package/front_end/panels/search/SearchView.ts +24 -4
- package/front_end/panels/settings/components/SyncSection.ts +2 -2
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +46 -46
- package/front_end/panels/sources/CSSPlugin.ts +3 -0
- package/front_end/panels/sources/CoveragePlugin.ts +2 -0
- package/front_end/panels/sources/DebuggerPlugin.ts +29 -5
- package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +3 -0
- package/front_end/panels/sources/ProfilePlugin.ts +3 -0
- package/front_end/panels/sources/UISourceCodeFrame.ts +11 -2
- package/front_end/panels/timeline/TimelineTreeView.ts +3 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/java.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/json.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/php.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/python.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/wast.js +1 -2
- package/front_end/third_party/codemirror.next/chunk/xml.js +1 -2
- package/front_end/third_party/codemirror.next/codemirror.next.d.ts +1486 -1423
- package/front_end/third_party/codemirror.next/codemirror.next.js +1 -2
- package/front_end/third_party/codemirror.next/package.json +10 -9
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +168 -164
- package/front_end/third_party/lighthouse/locales/ar-XB.json +0 -3
- package/front_end/third_party/lighthouse/locales/ar.json +0 -3
- package/front_end/third_party/lighthouse/locales/bg.json +17 -20
- package/front_end/third_party/lighthouse/locales/ca.json +0 -3
- package/front_end/third_party/lighthouse/locales/cs.json +0 -3
- package/front_end/third_party/lighthouse/locales/da.json +16 -19
- package/front_end/third_party/lighthouse/locales/de.json +0 -3
- package/front_end/third_party/lighthouse/locales/el.json +0 -3
- package/front_end/third_party/lighthouse/locales/en-GB.json +19 -22
- package/front_end/third_party/lighthouse/locales/en-US.json +33 -3
- package/front_end/third_party/lighthouse/locales/en-XA.json +0 -3
- package/front_end/third_party/lighthouse/locales/en-XL.json +33 -3
- package/front_end/third_party/lighthouse/locales/es-419.json +17 -20
- package/front_end/third_party/lighthouse/locales/es.json +0 -3
- package/front_end/third_party/lighthouse/locales/fi.json +16 -19
- package/front_end/third_party/lighthouse/locales/fil.json +33 -36
- package/front_end/third_party/lighthouse/locales/fr.json +16 -19
- package/front_end/third_party/lighthouse/locales/he.json +16 -19
- package/front_end/third_party/lighthouse/locales/hi.json +0 -3
- package/front_end/third_party/lighthouse/locales/hr.json +16 -19
- package/front_end/third_party/lighthouse/locales/hu.json +16 -19
- package/front_end/third_party/lighthouse/locales/id.json +16 -19
- package/front_end/third_party/lighthouse/locales/it.json +37 -40
- package/front_end/third_party/lighthouse/locales/ja.json +16 -19
- package/front_end/third_party/lighthouse/locales/ko.json +16 -19
- package/front_end/third_party/lighthouse/locales/lt.json +17 -20
- package/front_end/third_party/lighthouse/locales/lv.json +0 -3
- package/front_end/third_party/lighthouse/locales/nl.json +16 -19
- package/front_end/third_party/lighthouse/locales/no.json +17 -20
- package/front_end/third_party/lighthouse/locales/pl.json +16 -19
- package/front_end/third_party/lighthouse/locales/pt-PT.json +37 -40
- package/front_end/third_party/lighthouse/locales/pt.json +16 -19
- package/front_end/third_party/lighthouse/locales/ro.json +0 -3
- package/front_end/third_party/lighthouse/locales/ru.json +16 -19
- package/front_end/third_party/lighthouse/locales/sk.json +0 -3
- package/front_end/third_party/lighthouse/locales/sl.json +0 -3
- package/front_end/third_party/lighthouse/locales/sr-Latn.json +16 -19
- package/front_end/third_party/lighthouse/locales/sr.json +16 -19
- package/front_end/third_party/lighthouse/locales/sv.json +17 -20
- package/front_end/third_party/lighthouse/locales/ta.json +0 -3
- package/front_end/third_party/lighthouse/locales/te.json +0 -3
- package/front_end/third_party/lighthouse/locales/th.json +0 -3
- package/front_end/third_party/lighthouse/locales/tr.json +0 -3
- package/front_end/third_party/lighthouse/locales/uk.json +17 -20
- package/front_end/third_party/lighthouse/locales/vi.json +0 -3
- package/front_end/third_party/lighthouse/locales/zh-HK.json +0 -3
- package/front_end/third_party/lighthouse/locales/zh-TW.json +0 -3
- package/front_end/third_party/lighthouse/locales/zh.json +0 -3
- package/front_end/third_party/lighthouse/report/bundle.d.ts +63 -61
- package/front_end/third_party/lighthouse/report/bundle.js +36 -7
- package/front_end/third_party/lighthouse/report-assets/report-generator.js +205 -192
- package/front_end/ui/components/diff_view/DiffView.ts +4 -4
- package/front_end/ui/components/helpers/component-server-setup.ts +1 -12
- package/front_end/ui/components/helpers/helpers.ts +0 -2
- package/front_end/ui/components/icon_button/IconButton.ts +1 -1
- package/front_end/ui/components/issue_counter/IssueCounter.ts +2 -2
- package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +3 -3
- package/front_end/ui/components/markdown_view/MarkdownView.ts +4 -4
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +98 -0
- package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -0
- package/front_end/ui/components/panel_feedback/previewToggle.css +24 -0
- package/front_end/ui/components/report_view/ReportView.ts +22 -0
- package/front_end/ui/components/report_view/reportSection.css +20 -0
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
- package/front_end/ui/components/settings/SettingCheckbox.ts +2 -2
- package/front_end/ui/components/text_editor/config.ts +9 -7
- package/front_end/ui/components/text_editor/javascript.ts +15 -11
- package/front_end/ui/components/text_prompt/TextPrompt.ts +2 -2
- package/front_end/ui/legacy/GlassPane.ts +1 -1
- package/front_end/ui/legacy/InspectorView.ts +10 -0
- package/front_end/ui/legacy/SearchableView.ts +2 -1
- package/front_end/ui/legacy/Treeoutline.ts +1 -1
- package/front_end/ui/legacy/Widget.ts +1 -1
- package/front_end/ui/legacy/XWidget.ts +0 -5
- package/front_end/ui/legacy/components/inline_editor/CSSVarSwatch.ts +2 -2
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +40 -32
- package/front_end/ui/legacy/themeColors.css +1 -1
- package/front_end/ui/legacy/utils/append-style.ts +2 -13
- package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +7 -5
- package/inspector_overlay/main.ts +2 -12
- package/package.json +2 -4
- package/scripts/build/build_inspector_overlay.py +15 -1
- package/scripts/build/rjsmin.py +84 -115
- package/scripts/eslint_rules/lib/l10n_filename_matches.js +4 -4
- package/scripts/eslint_rules/lib/lit_html_no_attribute_quotes.js +101 -0
- package/scripts/eslint_rules/lib/no_only_eslint_tests.js +53 -0
- package/scripts/eslint_rules/tests/.eslintrc.js +14 -0
- package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +4 -0
- package/scripts/eslint_rules/tests/lit_html_no_attribute_quotes_test.js +45 -0
- package/scripts/eslint_rules/tests/no_only_eslint_tests_test.js +94 -0
- package/front_end/entrypoints/devtools_app/devtools_app.js +0 -11
- package/front_end/entrypoints/devtools_app/devtools_app.json +0 -5
- package/front_end/entrypoints/inspector/inspector.json +0 -4
- package/front_end/entrypoints/js_app/js_app.js +0 -12
- package/front_end/entrypoints/js_app/js_app.json +0 -3
- package/front_end/entrypoints/ndb_app/ndb_app.json +0 -4
- package/front_end/entrypoints/node_app/node_app-meta.ts +0 -43
- package/front_end/entrypoints/node_app/node_app.js +0 -16
- package/front_end/entrypoints/node_app/node_app.json +0 -3
- package/front_end/entrypoints/node_main/node_main-meta.ts +0 -48
- package/front_end/entrypoints/node_main/node_main.ts +0 -11
- package/front_end/entrypoints/startup/RuntimeInstantiator.ts +0 -95
- package/front_end/entrypoints/startup/startup.ts +0 -9
- package/front_end/entrypoints/worker_app/worker_app.json +0 -3
- package/front_end/panels/lighthouse/module.json +0 -6
- package/front_end/third_party/lighthouse/report-assets/report.d.ts +0 -1
- package/front_end/third_party/lighthouse/report-assets/report.js +0 -233
- package/front_end/third_party/lighthouse/report-assets/standalone-template.html +0 -38
- package/front_end/ui/components/helpers/get-stylesheet.ts +0 -45
- package/scripts/build/build_release_applications.py +0 -216
- package/scripts/build/modular_build.py +0 -184
- package/scripts/check_gn.js +0 -119
- package/scripts/json_validator/module.schema.json +0 -19
- package/scripts/json_validator/validate_module_json.js +0 -44
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Multiple conflicting URLs ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Points to a different domain ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "Invalid URL ({url})"
|
|
1300
1297
|
},
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "تتعدّد عناوين URL المتضاربة ({urlList})."
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "يشير عنوان URL إلى نطاق مختلف ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "عنوان URL غير صالح ({url})"
|
|
1300
1297
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"message": "Всички отчети"
|
|
4
4
|
},
|
|
5
5
|
"flow-report/src/i18n/ui-strings.js | categories": {
|
|
6
|
-
"message": "
|
|
6
|
+
"message": "Категории"
|
|
7
7
|
},
|
|
8
8
|
"flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
|
|
9
9
|
"message": "Достъпност"
|
|
@@ -24,40 +24,40 @@
|
|
|
24
24
|
"message": "Настолни компютри"
|
|
25
25
|
},
|
|
26
26
|
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
27
|
-
"message": "
|
|
27
|
+
"message": "Тълкуване на отчета на Lighthouse за навигацията"
|
|
28
28
|
},
|
|
29
29
|
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
30
|
-
"message": "
|
|
30
|
+
"message": "Информация за навигацията"
|
|
31
31
|
},
|
|
32
32
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
33
|
-
"message": "
|
|
33
|
+
"message": "Използване на отчетите за навигирането за..."
|
|
34
34
|
},
|
|
35
35
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
36
|
-
"message": "
|
|
36
|
+
"message": "Използвайте отчетите за моментната снимка за..."
|
|
37
37
|
},
|
|
38
38
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
39
|
-
"message": "
|
|
39
|
+
"message": "Използване на отчетите за периода от време за..."
|
|
40
40
|
},
|
|
41
41
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
42
|
-
"message": "
|
|
42
|
+
"message": "Получаване на резултат за ефективността от Lighthouse."
|
|
43
43
|
},
|
|
44
44
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
45
|
-
"message": "
|
|
45
|
+
"message": "Измерване на показатели за ефективността при зареждане на страниците, като например изобразяване на най-голямото съдържание (LCP) и индекс на скоростта."
|
|
46
46
|
},
|
|
47
47
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
48
|
-
"message": "
|
|
48
|
+
"message": "Тестване на възможностите на прогресивни уеб приложения."
|
|
49
49
|
},
|
|
50
50
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
51
|
-
"message": "
|
|
51
|
+
"message": "Намиране на проблеми с достъпността в приложения от една страница и сложни формуляри."
|
|
52
52
|
},
|
|
53
53
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
54
|
-
"message": "
|
|
54
|
+
"message": "Анализ на най-добрите практики, свързани с взаимодействията с менюта и елементи на ПИ."
|
|
55
55
|
},
|
|
56
56
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
|
|
57
|
-
"message": "
|
|
57
|
+
"message": "Измерване на структурните промени и времето за изпълнение на JavaScript за поредица от взаимодействия."
|
|
58
58
|
},
|
|
59
59
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
|
|
60
|
-
"message": "
|
|
60
|
+
"message": "Откриване на възможности за подобряване на ефективността на продължително отворените страници и приложенията от една страница."
|
|
61
61
|
},
|
|
62
62
|
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
63
|
"message": "С най-голямо въздействие"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"message": "Зареждане на страницата"
|
|
73
73
|
},
|
|
74
74
|
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
75
|
-
"message": "
|
|
75
|
+
"message": "Отчетите за навигацията анализират зареждането на отделни страници, точно както първоначалните отчети на Lighthouse."
|
|
76
76
|
},
|
|
77
77
|
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
78
78
|
"message": "Отчет за навигирането"
|
|
@@ -99,13 +99,13 @@
|
|
|
99
99
|
"message": "Добра"
|
|
100
100
|
},
|
|
101
101
|
"flow-report/src/i18n/ui-strings.js | save": {
|
|
102
|
-
"message": "
|
|
102
|
+
"message": "Запазване"
|
|
103
103
|
},
|
|
104
104
|
"flow-report/src/i18n/ui-strings.js | snapshotDescription": {
|
|
105
105
|
"message": "Моментно състояние на страницата"
|
|
106
106
|
},
|
|
107
107
|
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
108
|
-
"message": "
|
|
108
|
+
"message": "Отчетите за моментната снимка анализират страницата в определено състояние, обикновено след потребителски взаимодействия."
|
|
109
109
|
},
|
|
110
110
|
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
111
111
|
"message": "Отчет за моментното състояние"
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"message": "Потребителски взаимодействия"
|
|
121
121
|
},
|
|
122
122
|
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
123
|
-
"message": "
|
|
123
|
+
"message": "Отчетите за периода от време анализират произволен времеви интервал, който обикновено съдържа потребителски взаимодействия."
|
|
124
124
|
},
|
|
125
125
|
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
126
126
|
"message": "Отчет за периода от време"
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Множество несъвместими URL адреси ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Сочи към друг домейн ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "Невалиден URL адрес ({url})"
|
|
1300
1297
|
},
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Hi ha diversos URL en conflicte ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Dirigeix a un altre domini ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "URL no vàlid ({url})"
|
|
1300
1297
|
},
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Několik konfliktních adres URL ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Odkazuje na jinou doménu ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "Neplatná adresa URL ({url})"
|
|
1300
1297
|
},
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
|
|
61
61
|
},
|
|
62
62
|
"flow-report/src/i18n/ui-strings.js | highestImpact": {
|
|
63
|
-
"message": "
|
|
63
|
+
"message": "Størst indflydelse"
|
|
64
64
|
},
|
|
65
65
|
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
-
"message": "{numInformative,
|
|
66
|
+
"message": "{numInformative,plural, =1{{numInformative} informativ gennemgang}one{{numInformative} informativ gennemgang}other{{numInformative} informative gennemgange}}"
|
|
67
67
|
},
|
|
68
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
69
69
|
"message": "Mobil"
|
|
@@ -78,13 +78,13 @@
|
|
|
78
78
|
"message": "Rapport over navigation"
|
|
79
79
|
},
|
|
80
80
|
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
-
"message": "{numNavigation,
|
|
81
|
+
"message": "{numNavigation,plural, =1{{numNavigation} navigationsrapportering}one{{numNavigation} navigationsrapportering}other{{numNavigation} navigationsrapporteringer}}"
|
|
82
82
|
},
|
|
83
83
|
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
-
"message": "{numPassableAudits,
|
|
84
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} gennemgang, der kan godkendes}one{{numPassableAudits} gennemgang, der kan godkendes}other{{numPassableAudits} gennemgange, der kan godkendes}}"
|
|
85
85
|
},
|
|
86
86
|
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
-
"message": "{numPassed,
|
|
87
|
+
"message": "{numPassed,plural, =1{{numPassed} gennemgang blev godkendt}one{{numPassed} gennemgang blev godkendt}other{{numPassed} gennemgange blev godkendt}}"
|
|
88
88
|
},
|
|
89
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
90
90
|
"message": "Gennemsnit"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"message": "Rapport med øjebliksbillede"
|
|
112
112
|
},
|
|
113
113
|
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
-
"message": "{numSnapshot,
|
|
114
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} rapportering af øjebliksbillede}one{{numSnapshot} rapportering af øjebliksbillede}other{{numSnapshot} rapporteringer af øjebliksbillede}}"
|
|
115
115
|
},
|
|
116
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
117
117
|
"message": "Oversigt"
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"message": "Rapport over tidsperiode"
|
|
127
127
|
},
|
|
128
128
|
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
-
"message": "{numTimespan,
|
|
129
|
+
"message": "{numTimespan,plural, =1{{numTimespan} perioderapportering}one{{numTimespan} perioderapportering}other{{numTimespan} perioderapporteringer}}"
|
|
130
130
|
},
|
|
131
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
132
132
|
"message": "Rapport over brugerflow i Lighthouse"
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Flere webadresser ({urlList}) er modstridende"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Peger på et andet domæne ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "Ugyldig webadresse ({url})"
|
|
1300
1297
|
},
|
|
@@ -2331,7 +2328,7 @@
|
|
|
2331
2328
|
"message": "Se beregner."
|
|
2332
2329
|
},
|
|
2333
2330
|
"report/renderer/util.js | collapseView": {
|
|
2334
|
-
"message": "
|
|
2331
|
+
"message": "Skjul visning"
|
|
2335
2332
|
},
|
|
2336
2333
|
"report/renderer/util.js | crcInitialNavigation": {
|
|
2337
2334
|
"message": "Indledende navigation"
|
|
@@ -2370,13 +2367,13 @@
|
|
|
2370
2367
|
"message": "Rapportfejl: Der er ingen revisionsoplysninger"
|
|
2371
2368
|
},
|
|
2372
2369
|
"report/renderer/util.js | expandView": {
|
|
2373
|
-
"message": "
|
|
2370
|
+
"message": "Udvid visning"
|
|
2374
2371
|
},
|
|
2375
2372
|
"report/renderer/util.js | footerIssue": {
|
|
2376
2373
|
"message": "Indsend et problem"
|
|
2377
2374
|
},
|
|
2378
2375
|
"report/renderer/util.js | hide": {
|
|
2379
|
-
"message": "
|
|
2376
|
+
"message": "Skjul"
|
|
2380
2377
|
},
|
|
2381
2378
|
"report/renderer/util.js | labDataTitle": {
|
|
2382
2379
|
"message": "Laboratoriedata"
|
|
@@ -2400,10 +2397,10 @@
|
|
|
2400
2397
|
"message": "Beståede revisioner"
|
|
2401
2398
|
},
|
|
2402
2399
|
"report/renderer/util.js | runtimeAnalysisWindow": {
|
|
2403
|
-
"message": "
|
|
2400
|
+
"message": "Oprindelig sideindlæsning"
|
|
2404
2401
|
},
|
|
2405
2402
|
"report/renderer/util.js | runtimeCustom": {
|
|
2406
|
-
"message": "
|
|
2403
|
+
"message": "Tilpasset begrænsning"
|
|
2407
2404
|
},
|
|
2408
2405
|
"report/renderer/util.js | runtimeDesktopEmulation": {
|
|
2409
2406
|
"message": "Emuleret computer"
|
|
@@ -2433,19 +2430,19 @@
|
|
|
2433
2430
|
"message": "Brugeragent (netværk)"
|
|
2434
2431
|
},
|
|
2435
2432
|
"report/renderer/util.js | runtimeSingleLoad": {
|
|
2436
|
-
"message": "
|
|
2433
|
+
"message": "Enkeltstående sideindlæsning"
|
|
2437
2434
|
},
|
|
2438
2435
|
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2439
|
-
"message": "
|
|
2436
|
+
"message": "Disse data stammer fra en enkelt sideindlæsning i modsætning til feltdata, der omfatter flere sessioner."
|
|
2440
2437
|
},
|
|
2441
2438
|
"report/renderer/util.js | runtimeSlow4g": {
|
|
2442
|
-
"message": "
|
|
2439
|
+
"message": "Begrænsning til langsom 4G-forbindelse"
|
|
2443
2440
|
},
|
|
2444
2441
|
"report/renderer/util.js | runtimeUnknown": {
|
|
2445
2442
|
"message": "Ukendt"
|
|
2446
2443
|
},
|
|
2447
2444
|
"report/renderer/util.js | show": {
|
|
2448
|
-
"message": "
|
|
2445
|
+
"message": "Vis"
|
|
2449
2446
|
},
|
|
2450
2447
|
"report/renderer/util.js | showRelevantAudits": {
|
|
2451
2448
|
"message": "Vis gennemgange, som er relevante for:"
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Mehrere in Konflikt stehende URLs ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Verweist auf eine andere Domain ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "Ungültige URL ({url})"
|
|
1300
1297
|
},
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Πολλά URL σε διένεξη ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Παραπέμπει σε διαφορετικό τομέα ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "Μη έγκυρο URL ({url})"
|
|
1300
1297
|
},
|
|
@@ -24,31 +24,31 @@
|
|
|
24
24
|
"message": "Desktop"
|
|
25
25
|
},
|
|
26
26
|
"flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
|
|
27
|
-
"message": "Understanding the Lighthouse
|
|
27
|
+
"message": "Understanding the Lighthouse flow report"
|
|
28
28
|
},
|
|
29
29
|
"flow-report/src/i18n/ui-strings.js | helpLabel": {
|
|
30
|
-
"message": "Understanding
|
|
30
|
+
"message": "Understanding flows"
|
|
31
31
|
},
|
|
32
32
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
|
|
33
|
-
"message": "Use Navigation reports to
|
|
33
|
+
"message": "Use Navigation reports to…"
|
|
34
34
|
},
|
|
35
35
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
|
|
36
|
-
"message": "Use Snapshot reports to
|
|
36
|
+
"message": "Use Snapshot reports to…"
|
|
37
37
|
},
|
|
38
38
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
|
|
39
|
-
"message": "Use Timespan reports to
|
|
39
|
+
"message": "Use Timespan reports to…"
|
|
40
40
|
},
|
|
41
41
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
|
|
42
|
-
"message": "Obtain a Lighthouse
|
|
42
|
+
"message": "Obtain a Lighthouse performance score."
|
|
43
43
|
},
|
|
44
44
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
|
|
45
|
-
"message": "Measure page load
|
|
45
|
+
"message": "Measure page load performance metrics, such as largest contentful paint and speed index."
|
|
46
46
|
},
|
|
47
47
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
|
|
48
|
-
"message": "Assess
|
|
48
|
+
"message": "Assess progressive web app capabilities."
|
|
49
49
|
},
|
|
50
50
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
|
|
51
|
-
"message": "Find accessibility issues in single
|
|
51
|
+
"message": "Find accessibility issues in single-page applications or complex forms."
|
|
52
52
|
},
|
|
53
53
|
"flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
|
|
54
54
|
"message": "Evaluate best practices of menus and UI elements hidden behind interaction."
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"message": "Highest impact"
|
|
64
64
|
},
|
|
65
65
|
"flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
|
|
66
|
-
"message": "{numInformative,
|
|
66
|
+
"message": "{numInformative,plural, =1{{numInformative} informative audit}other{{numInformative} informative audits}}"
|
|
67
67
|
},
|
|
68
68
|
"flow-report/src/i18n/ui-strings.js | mobile": {
|
|
69
69
|
"message": "Mobile"
|
|
@@ -72,19 +72,19 @@
|
|
|
72
72
|
"message": "Page load"
|
|
73
73
|
},
|
|
74
74
|
"flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
|
|
75
|
-
"message": "Navigation reports
|
|
75
|
+
"message": "Navigation reports analyse a single page load, exactly like the original Lighthouse reports."
|
|
76
76
|
},
|
|
77
77
|
"flow-report/src/i18n/ui-strings.js | navigationReport": {
|
|
78
78
|
"message": "Navigation report"
|
|
79
79
|
},
|
|
80
80
|
"flow-report/src/i18n/ui-strings.js | navigationReportCount": {
|
|
81
|
-
"message": "{numNavigation,
|
|
81
|
+
"message": "{numNavigation,plural, =1{{numNavigation} navigation report}other{{numNavigation} navigation reports}}"
|
|
82
82
|
},
|
|
83
83
|
"flow-report/src/i18n/ui-strings.js | passableAuditCount": {
|
|
84
|
-
"message": "{numPassableAudits,
|
|
84
|
+
"message": "{numPassableAudits,plural, =1{{numPassableAudits} passable audit}other{{numPassableAudits} passable audits}}"
|
|
85
85
|
},
|
|
86
86
|
"flow-report/src/i18n/ui-strings.js | passedAuditCount": {
|
|
87
|
-
"message": "{numPassed,
|
|
87
|
+
"message": "{numPassed,plural, =1{{numPassed} audit passed}other{{numPassed} audits passed}}"
|
|
88
88
|
},
|
|
89
89
|
"flow-report/src/i18n/ui-strings.js | ratingAverage": {
|
|
90
90
|
"message": "Average"
|
|
@@ -105,13 +105,13 @@
|
|
|
105
105
|
"message": "Captured state of page"
|
|
106
106
|
},
|
|
107
107
|
"flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
|
|
108
|
-
"message": "Snapshot reports
|
|
108
|
+
"message": "Snapshot reports analyse the page in a particular state, typically after user interactions."
|
|
109
109
|
},
|
|
110
110
|
"flow-report/src/i18n/ui-strings.js | snapshotReport": {
|
|
111
111
|
"message": "Snapshot report"
|
|
112
112
|
},
|
|
113
113
|
"flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
|
|
114
|
-
"message": "{numSnapshot,
|
|
114
|
+
"message": "{numSnapshot,plural, =1{{numSnapshot} snapshot report}other{{numSnapshot} snapshot reports}}"
|
|
115
115
|
},
|
|
116
116
|
"flow-report/src/i18n/ui-strings.js | summary": {
|
|
117
117
|
"message": "Summary"
|
|
@@ -120,13 +120,13 @@
|
|
|
120
120
|
"message": "User interactions"
|
|
121
121
|
},
|
|
122
122
|
"flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
|
|
123
|
-
"message": "Timespan reports
|
|
123
|
+
"message": "Timespan reports analyse an arbitrary period of time, typically containing user interactions."
|
|
124
124
|
},
|
|
125
125
|
"flow-report/src/i18n/ui-strings.js | timespanReport": {
|
|
126
126
|
"message": "Timespan report"
|
|
127
127
|
},
|
|
128
128
|
"flow-report/src/i18n/ui-strings.js | timespanReportCount": {
|
|
129
|
-
"message": "{numTimespan,
|
|
129
|
+
"message": "{numTimespan,plural, =1{{numTimespan} timespan report}other{{numTimespan} timespan reports}}"
|
|
130
130
|
},
|
|
131
131
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
132
132
|
"message": "Lighthouse user flow report"
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "Multiple conflicting URLs ({urlList})"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "Points to a different domain ({url})"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "Invalid URL ({url})"
|
|
1300
1297
|
},
|
|
@@ -2436,7 +2433,7 @@
|
|
|
2436
2433
|
"message": "Single page load"
|
|
2437
2434
|
},
|
|
2438
2435
|
"report/renderer/util.js | runtimeSingleLoadTooltip": {
|
|
2439
|
-
"message": "This data is taken from a single page load, as opposed to field data
|
|
2436
|
+
"message": "This data is taken from a single page load, as opposed to field data summarising many sessions."
|
|
2440
2437
|
},
|
|
2441
2438
|
"report/renderer/util.js | runtimeSlow4g": {
|
|
2442
2439
|
"message": "Slow 4G throttling"
|
|
@@ -1052,6 +1052,9 @@
|
|
|
1052
1052
|
"lighthouse-core/audits/installable-manifest.js | not-offline-capable": {
|
|
1053
1053
|
"message": "Page does not work offline"
|
|
1054
1054
|
},
|
|
1055
|
+
"lighthouse-core/audits/installable-manifest.js | pipeline-restarted": {
|
|
1056
|
+
"message": "PWA has been uninstalled and installability checks resetting."
|
|
1057
|
+
},
|
|
1055
1058
|
"lighthouse-core/audits/installable-manifest.js | platform-not-supported-on-android": {
|
|
1056
1059
|
"message": "The specified application platform is not supported on Android"
|
|
1057
1060
|
},
|
|
@@ -1295,9 +1298,6 @@
|
|
|
1295
1298
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1296
1299
|
"message": "Multiple conflicting URLs ({urlList})"
|
|
1297
1300
|
},
|
|
1298
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1299
|
-
"message": "Points to a different domain ({url})"
|
|
1300
|
-
},
|
|
1301
1301
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1302
1302
|
"message": "Invalid URL ({url})"
|
|
1303
1303
|
},
|
|
@@ -2225,6 +2225,36 @@
|
|
|
2225
2225
|
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-rel-preload": {
|
|
2226
2226
|
"message": "`<link rel=preload>` tags can be added by [modifying a themes's layout](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
|
|
2227
2227
|
},
|
|
2228
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
|
|
2229
|
+
"message": "Use the `Next.js` Image Optimization API to serve modern formats like `WebP` and `AVIF`. [Learn more](https://nextjs.org/docs/api-reference/next/image#acceptable-formats)."
|
|
2230
|
+
},
|
|
2231
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
|
2232
|
+
"message": "Use the `next/image` component, which defaults to `loading=\"lazy\"`. [Learn more](https://nextjs.org/docs/api-reference/next/image#loading)."
|
|
2233
|
+
},
|
|
2234
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | render-blocking-resources": {
|
|
2235
|
+
"message": "Use the `next/script` component to defer loading of non-critical third-party scripts. [Learn more](https://nextjs.org/docs/basic-features/script)."
|
|
2236
|
+
},
|
|
2237
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-css-rules": {
|
|
2238
|
+
"message": "Consider setting up `PurgeCSS` in `Next.js` configuration to remove unused rules from stylesheets. [Learn more](https://purgecss.com/guides/next.html)."
|
|
2239
|
+
},
|
|
2240
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
|
|
2241
|
+
"message": "Use `Webpack Bundle Analyzer` to detect unused JavaScript code. [Learn mode](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
|
|
2242
|
+
},
|
|
2243
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
|
|
2244
|
+
"message": "Consider using `Next.js Analytics` to measure your app's real-world performance. [Learn more](https://nextjs.org/docs/advanced-features/measuring-performance)."
|
|
2245
|
+
},
|
|
2246
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-long-cache-ttl": {
|
|
2247
|
+
"message": "Configure caching for immutable assets and `Server-side Rendered` (SSR) pages. [Learn more](https://nextjs.org/docs/going-to-production#caching)."
|
|
2248
|
+
},
|
|
2249
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
|
|
2250
|
+
"message": "Use the `next/image` component instead of `<img>` to optimize images. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
|
|
2251
|
+
},
|
|
2252
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
|
|
2253
|
+
"message": "Use the `next/image` component to set the appropriate `sizes`. [Learn more](https://nextjs.org/docs/api-reference/next/image#sizes)."
|
|
2254
|
+
},
|
|
2255
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
2256
|
+
"message": "Enable compression on your Next.js server. [Learn more](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
|
2257
|
+
},
|
|
2228
2258
|
"node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
|
|
2229
2259
|
"message": "[Replace animated GIFs with video](https://web.dev/replace-gifs-with-videos/) for faster web page loads and consider using modern file formats such as [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) or [AV1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder) to improve compression efficiency by greater than 30% over the current state-of-the-art video codec, VP9."
|
|
2230
2260
|
},
|
|
@@ -1292,9 +1292,6 @@
|
|
|
1292
1292
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1293
1293
|
"message": "[Mûļţîþļé çöñƒļîçţîñĝ ÛŔĻš (ᐅ{urlList}ᐊ) one two three four five six seven]"
|
|
1294
1294
|
},
|
|
1295
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1296
|
-
"message": "[Þöîñţš ţö å ðéŕéñţ ðömåîñ (ᐅ{url}ᐊ) one two three four five six seven]"
|
|
1297
|
-
},
|
|
1298
1295
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1299
1296
|
"message": "[Îñvåļîð ÛŔĻ (ᐅ{url}ᐊ) one two three four]"
|
|
1300
1297
|
},
|
|
@@ -1052,6 +1052,9 @@
|
|
|
1052
1052
|
"lighthouse-core/audits/installable-manifest.js | not-offline-capable": {
|
|
1053
1053
|
"message": "P̂áĝé d̂óêś n̂ót̂ ẃôŕk̂ óf̂f́l̂ín̂é"
|
|
1054
1054
|
},
|
|
1055
|
+
"lighthouse-core/audits/installable-manifest.js | pipeline-restarted": {
|
|
1056
|
+
"message": "P̂ẂÂ h́âś b̂éêń ûńîńŝt́âĺl̂éd̂ án̂d́ îńŝt́âĺl̂áb̂íl̂ít̂ý ĉh́êćk̂ś r̂éŝét̂t́îńĝ."
|
|
1057
|
+
},
|
|
1055
1058
|
"lighthouse-core/audits/installable-manifest.js | platform-not-supported-on-android": {
|
|
1056
1059
|
"message": "T̂h́ê śp̂éĉíf̂íêd́ âṕp̂ĺîćât́îón̂ ṕl̂át̂f́ôŕm̂ íŝ ńôt́ ŝúp̂ṕôŕt̂éd̂ ón̂ Án̂d́r̂óîd́"
|
|
1057
1060
|
},
|
|
@@ -1295,9 +1298,6 @@
|
|
|
1295
1298
|
"lighthouse-core/audits/seo/canonical.js | explanationConflict": {
|
|
1296
1299
|
"message": "M̂úl̂t́îṕl̂é ĉón̂f́l̂íĉt́îńĝ ÚR̂Ĺŝ ({urlList})"
|
|
1297
1300
|
},
|
|
1298
|
-
"lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
|
|
1299
|
-
"message": "P̂óîńt̂ś t̂ó â d́îf́f̂ér̂én̂t́ d̂óm̂áîń ({url})"
|
|
1300
|
-
},
|
|
1301
1301
|
"lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
|
|
1302
1302
|
"message": "Îńv̂ál̂íd̂ ÚR̂Ĺ ({url})"
|
|
1303
1303
|
},
|
|
@@ -2225,6 +2225,36 @@
|
|
|
2225
2225
|
"node_modules/lighthouse-stack-packs/packs/magento.js | uses-rel-preload": {
|
|
2226
2226
|
"message": "`<link rel=preload>` t̂áĝś ĉán̂ b́ê ád̂d́êd́ b̂ý [m̂ód̂íf̂ýîńĝ á t̂h́êḿêś'ŝ ĺâýôút̂](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
|
|
2227
2227
|
},
|
|
2228
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
|
|
2229
|
+
"message": "Ûśê t́ĥé `Next.js` Îḿâǵê Óp̂t́îḿîźât́îón̂ ÁP̂Í t̂ó ŝér̂v́ê ḿôd́êŕn̂ f́ôŕm̂át̂ś l̂ík̂é `WebP` âńd̂ `AVIF`. [Ĺêár̂ń m̂ór̂é](https://nextjs.org/docs/api-reference/next/image#acceptable-formats)."
|
|
2230
|
+
},
|
|
2231
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
|
2232
|
+
"message": "Ûśê t́ĥé `next/image` ĉóm̂ṕôńêńt̂, ẃĥíĉh́ d̂éf̂áûĺt̂ś t̂ó `loading=\"lazy\"`. [L̂éâŕn̂ ḿôŕê](https://nextjs.org/docs/api-reference/next/image#loading)."
|
|
2233
|
+
},
|
|
2234
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | render-blocking-resources": {
|
|
2235
|
+
"message": "Ûśê t́ĥé `next/script` ĉóm̂ṕôńêńt̂ t́ô d́êf́êŕ l̂óâd́îńĝ óf̂ ńôń-ĉŕît́îćâĺ t̂h́îŕd̂-ṕâŕt̂ý ŝćr̂íp̂t́ŝ. [Ĺêár̂ń m̂ór̂é](https://nextjs.org/docs/basic-features/script)."
|
|
2236
|
+
},
|
|
2237
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-css-rules": {
|
|
2238
|
+
"message": "Ĉón̂śîd́êŕ ŝét̂t́îńĝ úp̂ `PurgeCSS` ín̂ `Next.js` ćôńf̂íĝúr̂át̂íôń t̂ó r̂ém̂óv̂é ûńûśêd́ r̂úl̂éŝ f́r̂óm̂ śt̂ýl̂éŝh́êét̂ś. [L̂éâŕn̂ ḿôŕê](https://purgecss.com/guides/next.html)."
|
|
2239
|
+
},
|
|
2240
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unused-javascript": {
|
|
2241
|
+
"message": "Ûśê `Webpack Bundle Analyzer` t́ô d́êt́êćt̂ ún̂úŝéd̂ J́âv́âŚĉŕîṕt̂ ćôd́ê. [Ĺêár̂ń m̂ód̂é](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)"
|
|
2242
|
+
},
|
|
2243
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | user-timings": {
|
|
2244
|
+
"message": "Ĉón̂śîd́êŕ ûśîńĝ `Next.js Analytics` t́ô ḿêáŝúr̂é ŷóûŕ âṕp̂'ś r̂éâĺ-ŵór̂ĺd̂ ṕêŕf̂ór̂ḿâńĉé. [L̂éâŕn̂ ḿôŕê](https://nextjs.org/docs/advanced-features/measuring-performance)."
|
|
2245
|
+
},
|
|
2246
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-long-cache-ttl": {
|
|
2247
|
+
"message": "Ĉón̂f́îǵûŕê ćâćĥín̂ǵ f̂ór̂ ím̂ḿût́âb́l̂é âśŝét̂ś âńd̂ `Server-side Rendered` (ŚŜŔ) p̂áĝéŝ. [Ĺêár̂ń m̂ór̂é](https://nextjs.org/docs/going-to-production#caching)."
|
|
2248
|
+
},
|
|
2249
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
|
|
2250
|
+
"message": "Ûśê t́ĥé `next/image` ĉóm̂ṕôńêńt̂ ín̂śt̂éâd́ ôf́ `<img>` t̂ó ôṕt̂ím̂íẑé îḿâǵêś. [L̂éâŕn̂ ḿôŕê](https://nextjs.org/docs/basic-features/image-optimization)."
|
|
2251
|
+
},
|
|
2252
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
|
|
2253
|
+
"message": "Ûśê t́ĥé `next/image` ĉóm̂ṕôńêńt̂ t́ô śêt́ t̂h́ê áp̂ṕr̂óp̂ŕîát̂é `sizes`. [L̂éâŕn̂ ḿôŕê](https://nextjs.org/docs/api-reference/next/image#sizes)."
|
|
2254
|
+
},
|
|
2255
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
|
2256
|
+
"message": "Êńâb́l̂é ĉóm̂ṕr̂éŝśîón̂ ón̂ ýôúr̂ Ńêx́t̂.j́ŝ śêŕv̂ér̂. [Ĺêár̂ń m̂ór̂é](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
|
2257
|
+
},
|
|
2228
2258
|
"node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
|
|
2229
2259
|
"message": "[R̂ép̂ĺâćê án̂ím̂át̂éd̂ ǴÎF́ŝ ẃît́ĥ v́îd́êó](https://web.dev/replace-gifs-with-videos/) f̂ór̂ f́âśt̂ér̂ ẃêb́ p̂áĝé l̂óâd́ŝ án̂d́ ĉón̂śîd́êŕ ûśîńĝ ḿôd́êŕn̂ f́îĺê f́ôŕm̂át̂ś ŝúĉh́ âś [Ŵéb̂Ḿ](https://web.dev/replace-gifs-with-videos/#create-webm-videos) ôŕ [ÂV́1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder) t̂ó îḿp̂ŕôv́ê ćôḿp̂ŕêśŝíôń êf́f̂íĉíêńĉý b̂ý ĝŕêát̂ér̂ t́ĥán̂ 30% óv̂ér̂ t́ĥé ĉúr̂ŕêńt̂ śt̂át̂é-ôf́-t̂h́ê-ár̂t́ v̂íd̂éô ćôd́êć, V̂Ṕ9."
|
|
2230
2260
|
},
|