chrome-devtools-frontend 1.0.945677 → 1.0.947377

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 (191) hide show
  1. package/.eslintrc.js +1 -0
  2. package/config/gni/all_devtools_files.gni +0 -14
  3. package/config/gni/devtools_grd_files.gni +4 -42
  4. package/front_end/.eslintrc.js +5 -1
  5. package/front_end/core/host/InspectorFrontendHost.ts +0 -3
  6. package/front_end/core/host/InspectorFrontendHostAPI.ts +0 -1
  7. package/front_end/core/host/UserMetrics.ts +0 -22
  8. package/front_end/core/i18n/locales/en-US.json +33 -27
  9. package/front_end/core/i18n/locales/en-XL.json +33 -27
  10. package/front_end/core/root/Runtime.ts +0 -5
  11. package/front_end/core/sdk/AccessibilityModel.ts +0 -2
  12. package/front_end/core/sdk/CSSProperty.ts +16 -11
  13. package/front_end/core/sdk/CSSRule.ts +0 -2
  14. package/front_end/core/sdk/Cookie.ts +1 -5
  15. package/front_end/core/sdk/EmulationModel.ts +0 -2
  16. package/front_end/core/sdk/HeapProfilerModel.ts +0 -2
  17. package/front_end/core/sdk/NetworkManager.ts +0 -3
  18. package/front_end/core/sdk/Resource.ts +0 -3
  19. package/front_end/core/sdk/ResourceTreeModel.ts +0 -3
  20. package/front_end/core/sdk/ServiceWorkerManager.ts +0 -2
  21. package/front_end/core/sdk/sdk-meta.ts +20 -8
  22. package/front_end/devtools_compatibility.js +1 -8
  23. package/front_end/entrypoints/devtools_app/devtools_app.js +3 -0
  24. package/front_end/entrypoints/devtools_app/devtools_app.json +1 -3
  25. package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +1 -3
  26. package/front_end/entrypoints/formatter_worker/FormatterActions.ts +0 -2
  27. package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +0 -120
  28. package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +1 -11
  29. package/front_end/entrypoints/formatter_worker/formatter_worker.ts +5 -0
  30. package/front_end/entrypoints/inspector/{inspector.js → inspector.ts} +0 -3
  31. package/front_end/entrypoints/js_app/js_app.js +3 -0
  32. package/front_end/entrypoints/js_app/js_app.json +1 -2
  33. package/front_end/entrypoints/main/MainImpl.ts +0 -6
  34. package/front_end/entrypoints/ndb_app/ndb_app.js +3 -0
  35. package/front_end/entrypoints/ndb_app/ndb_app.json +1 -2
  36. package/front_end/entrypoints/{node_main → node_app}/NodeConnectionsPanel.ts +1 -1
  37. package/front_end/entrypoints/{node_main → node_app}/NodeMain.ts +2 -4
  38. package/front_end/entrypoints/{node_main → node_app}/nodeConnectionsPanel.css +0 -0
  39. package/front_end/entrypoints/node_app/node_app.ts +81 -0
  40. package/front_end/entrypoints/shell/shell.js +18 -1
  41. package/front_end/entrypoints/worker_app/{worker_app.js → worker_app.ts} +8 -2
  42. package/front_end/generated/InspectorBackendCommands.js +5 -1
  43. package/front_end/generated/protocol.d.ts +12 -0
  44. package/front_end/legacy_test_runner/sources_test_runner/sources_test_runner.js +0 -1
  45. package/front_end/models/bindings/CompilerScriptMapping.ts +0 -1
  46. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +4 -11
  47. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
  48. package/front_end/models/bindings/ResourceMapping.ts +1 -1
  49. package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
  50. package/front_end/models/emulation/DeviceModeModel.ts +0 -2
  51. package/front_end/models/formatter/FormatterWorkerPool.ts +0 -18
  52. package/front_end/models/issues_manager/CorsIssue.ts +8 -0
  53. package/front_end/models/text_utils/CodeMirrorUtils.ts +6 -51
  54. package/front_end/models/text_utils/TextUtils.ts +1 -2
  55. package/front_end/models/text_utils/text_utils-legacy.ts +0 -5
  56. package/front_end/panels/animation/AnimationTimeline.ts +0 -2
  57. package/front_end/panels/animation/AnimationUI.ts +0 -2
  58. package/front_end/panels/application/ApplicationPanelSidebar.ts +2 -4
  59. package/front_end/panels/application/BackForwardCacheStrings.ts +1 -0
  60. package/front_end/panels/css_overview/CSSOverviewModel.ts +0 -2
  61. package/front_end/panels/css_overview/CSSOverviewPanel.ts +0 -7
  62. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +0 -2
  63. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +0 -11
  64. package/front_end/panels/elements/StylesSidebarPane.ts +0 -1
  65. package/front_end/panels/elements/elementsTreeOutline.css +0 -13
  66. package/front_end/panels/emulation/DeviceModeToolbar.ts +0 -16
  67. package/front_end/panels/issues/CorsIssueDetailsView.ts +6 -2
  68. package/front_end/panels/lighthouse/lighthouse-meta.ts +0 -3
  69. package/front_end/panels/network/NetworkConfigView.ts +10 -0
  70. package/front_end/panels/network/NetworkItemView.ts +3 -0
  71. package/front_end/panels/network/networkConfigView.css +5 -0
  72. package/front_end/panels/profiler/profilesPanel.css +1 -1
  73. package/front_end/panels/search/SearchView.ts +24 -4
  74. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +6 -4
  75. package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +0 -12
  76. package/front_end/panels/sources/CSSPlugin.ts +3 -0
  77. package/front_end/panels/sources/CoveragePlugin.ts +2 -0
  78. package/front_end/panels/sources/DebuggerPlugin.ts +35 -7
  79. package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +3 -0
  80. package/front_end/panels/sources/ProfilePlugin.ts +3 -0
  81. package/front_end/panels/sources/UISourceCodeFrame.ts +11 -2
  82. package/front_end/panels/sources/sourcesView.css +0 -130
  83. package/front_end/panels/timeline/TimelineTreeView.ts +1 -0
  84. package/front_end/third_party/codemirror/codemirror-tsconfig.json +1 -25
  85. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  86. package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -2
  87. package/front_end/third_party/codemirror.next/chunk/java.js +1 -2
  88. package/front_end/third_party/codemirror.next/chunk/json.js +1 -2
  89. package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -2
  90. package/front_end/third_party/codemirror.next/chunk/php.js +1 -2
  91. package/front_end/third_party/codemirror.next/chunk/python.js +1 -2
  92. package/front_end/third_party/codemirror.next/chunk/wast.js +1 -2
  93. package/front_end/third_party/codemirror.next/chunk/xml.js +1 -2
  94. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +1486 -1423
  95. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -2
  96. package/front_end/third_party/codemirror.next/package.json +10 -9
  97. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +168 -164
  98. package/front_end/third_party/lighthouse/locales/ar-XB.json +0 -3
  99. package/front_end/third_party/lighthouse/locales/ar.json +0 -3
  100. package/front_end/third_party/lighthouse/locales/bg.json +17 -20
  101. package/front_end/third_party/lighthouse/locales/ca.json +0 -3
  102. package/front_end/third_party/lighthouse/locales/cs.json +0 -3
  103. package/front_end/third_party/lighthouse/locales/da.json +16 -19
  104. package/front_end/third_party/lighthouse/locales/de.json +0 -3
  105. package/front_end/third_party/lighthouse/locales/el.json +0 -3
  106. package/front_end/third_party/lighthouse/locales/en-GB.json +19 -22
  107. package/front_end/third_party/lighthouse/locales/en-US.json +33 -3
  108. package/front_end/third_party/lighthouse/locales/en-XA.json +0 -3
  109. package/front_end/third_party/lighthouse/locales/en-XL.json +33 -3
  110. package/front_end/third_party/lighthouse/locales/es-419.json +17 -20
  111. package/front_end/third_party/lighthouse/locales/es.json +0 -3
  112. package/front_end/third_party/lighthouse/locales/fi.json +16 -19
  113. package/front_end/third_party/lighthouse/locales/fil.json +33 -36
  114. package/front_end/third_party/lighthouse/locales/fr.json +16 -19
  115. package/front_end/third_party/lighthouse/locales/he.json +16 -19
  116. package/front_end/third_party/lighthouse/locales/hi.json +0 -3
  117. package/front_end/third_party/lighthouse/locales/hr.json +16 -19
  118. package/front_end/third_party/lighthouse/locales/hu.json +16 -19
  119. package/front_end/third_party/lighthouse/locales/id.json +16 -19
  120. package/front_end/third_party/lighthouse/locales/it.json +37 -40
  121. package/front_end/third_party/lighthouse/locales/ja.json +16 -19
  122. package/front_end/third_party/lighthouse/locales/ko.json +16 -19
  123. package/front_end/third_party/lighthouse/locales/lt.json +17 -20
  124. package/front_end/third_party/lighthouse/locales/lv.json +0 -3
  125. package/front_end/third_party/lighthouse/locales/nl.json +16 -19
  126. package/front_end/third_party/lighthouse/locales/no.json +17 -20
  127. package/front_end/third_party/lighthouse/locales/pl.json +16 -19
  128. package/front_end/third_party/lighthouse/locales/pt-PT.json +37 -40
  129. package/front_end/third_party/lighthouse/locales/pt.json +16 -19
  130. package/front_end/third_party/lighthouse/locales/ro.json +0 -3
  131. package/front_end/third_party/lighthouse/locales/ru.json +16 -19
  132. package/front_end/third_party/lighthouse/locales/sk.json +0 -3
  133. package/front_end/third_party/lighthouse/locales/sl.json +0 -3
  134. package/front_end/third_party/lighthouse/locales/sr-Latn.json +16 -19
  135. package/front_end/third_party/lighthouse/locales/sr.json +16 -19
  136. package/front_end/third_party/lighthouse/locales/sv.json +17 -20
  137. package/front_end/third_party/lighthouse/locales/ta.json +0 -3
  138. package/front_end/third_party/lighthouse/locales/te.json +0 -3
  139. package/front_end/third_party/lighthouse/locales/th.json +0 -3
  140. package/front_end/third_party/lighthouse/locales/tr.json +0 -3
  141. package/front_end/third_party/lighthouse/locales/uk.json +17 -20
  142. package/front_end/third_party/lighthouse/locales/vi.json +0 -3
  143. package/front_end/third_party/lighthouse/locales/zh-HK.json +0 -3
  144. package/front_end/third_party/lighthouse/locales/zh-TW.json +0 -3
  145. package/front_end/third_party/lighthouse/locales/zh.json +0 -3
  146. package/front_end/third_party/lighthouse/report/bundle.d.ts +63 -61
  147. package/front_end/third_party/lighthouse/report/bundle.js +36 -7
  148. package/front_end/third_party/lighthouse/report-assets/report-generator.js +205 -192
  149. package/front_end/ui/components/linear_memory_inspector/LinearMemoryValueInterpreter.ts +0 -8
  150. package/front_end/ui/components/text_editor/config.ts +8 -7
  151. package/front_end/ui/components/text_editor/javascript.ts +28 -10
  152. package/front_end/ui/components/text_editor/theme.ts +1 -0
  153. package/front_end/ui/legacy/InspectorView.ts +10 -0
  154. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +2 -3
  155. package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +0 -1
  156. package/front_end/ui/legacy/components/object_ui/object_ui-legacy.ts +0 -8
  157. package/front_end/ui/legacy/components/object_ui/object_ui.ts +0 -4
  158. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +40 -29
  159. package/front_end/ui/legacy/inspectorSyntaxHighlight.css +0 -211
  160. package/front_end/ui/legacy/legacy-legacy.ts +0 -6
  161. package/front_end/ui/legacy/legacy.ts +0 -2
  162. package/front_end/ui/legacy/tabbedPane.css +1 -1
  163. package/front_end/ui/legacy/themeColors.css +1 -1
  164. package/package.json +1 -1
  165. package/scripts/check_gn.js +1 -1
  166. package/scripts/eslint_rules/lib/l10n_filename_matches.js +4 -4
  167. package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +4 -0
  168. package/scripts/hosted_mode/server.js +17 -2
  169. package/front_end/entrypoints/inspector/inspector.json +0 -4
  170. package/front_end/entrypoints/node_app/node_app-meta.ts +0 -43
  171. package/front_end/entrypoints/node_app/node_app.js +0 -13
  172. package/front_end/entrypoints/node_app/node_app.json +0 -4
  173. package/front_end/entrypoints/node_main/node_main-meta.ts +0 -48
  174. package/front_end/entrypoints/node_main/node_main.ts +0 -11
  175. package/front_end/entrypoints/shell/shell-meta-files.ts +0 -22
  176. package/front_end/entrypoints/shell/shell.json +0 -5
  177. package/front_end/entrypoints/worker_app/worker_app.json +0 -4
  178. package/front_end/panels/lighthouse/module.json +0 -6
  179. package/front_end/third_party/lighthouse/report-assets/report.d.ts +0 -1
  180. package/front_end/third_party/lighthouse/report-assets/report.js +0 -233
  181. package/front_end/third_party/lighthouse/report-assets/standalone-template.html +0 -38
  182. package/front_end/ui/legacy/TextEditor.ts +0 -82
  183. package/front_end/ui/legacy/components/object_ui/JavaScriptAutocomplete.ts +0 -836
  184. package/front_end/ui/legacy/components/text_editor/CodeMirrorTextEditor.ts +0 -1676
  185. package/front_end/ui/legacy/components/text_editor/TextEditorAutocompleteController.ts +0 -586
  186. package/front_end/ui/legacy/components/text_editor/autocompleteTooltip.css +0 -20
  187. package/front_end/ui/legacy/components/text_editor/cm_modes.ts +0 -23
  188. package/front_end/ui/legacy/components/text_editor/cmdevtools.css +0 -995
  189. package/front_end/ui/legacy/components/text_editor/module.json +0 -7
  190. package/front_end/ui/legacy/components/text_editor/text_editor-legacy.ts +0 -33
  191. package/front_end/ui/legacy/components/text_editor/text_editor.ts +0 -13
@@ -60,10 +60,10 @@
60
60
  "message": "Otkrijte prilike za učinak da biste poboljšali doživljaj za dugoročne stranice i aplikacije sa jednom stranicom."
61
61
  },
62
62
  "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
- "message": "Highest impact"
63
+ "message": "Najveći uticaj"
64
64
  },
65
65
  "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
- "message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
66
+ "message": "{numInformative,plural, =1{{numInformative} informativna provera}one{{numInformative} informativna provera}few{{numInformative} informativne provere}other{{numInformative} informativnih provera}}"
67
67
  },
68
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
69
69
  "message": "Mobilni uređaj"
@@ -78,13 +78,13 @@
78
78
  "message": "Izveštaj o navigaciji"
79
79
  },
80
80
  "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
- "message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
81
+ "message": "{numNavigation,plural, =1{{numNavigation} izveštaj o navigaciji}one{{numNavigation} izveštaj o navigaciji}few{{numNavigation} izveštaja o navigaciji}other{{numNavigation} izveštaja o navigaciji}}"
82
82
  },
83
83
  "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
- "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
84
+ "message": "{numPassableAudits,plural, =1{{numPassableAudits} provera koja može da se prođe}one{{numPassableAudits} provera koja može da se prođe}few{{numPassableAudits} provere koje mogu da se prođu}other{{numPassableAudits} provera koje mogu da se prođu}}"
85
85
  },
86
86
  "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
- "message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
87
+ "message": "{numPassed,plural, =1{Prošli ste {numPassed} proveru}one{Prošli ste{numPassed} proveru}few{Prošli ste{numPassed} provere}other{Prošli ste{numPassed} provera}}"
88
88
  },
89
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
90
  "message": "Prosek"
@@ -111,7 +111,7 @@
111
111
  "message": "Izveštaj sa pregledom"
112
112
  },
113
113
  "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
- "message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
114
+ "message": "{numSnapshot,plural, =1{{numSnapshot} izveštaj sa pregledom}one{{numSnapshot} izveštaj sa pregledom}few{{numSnapshot} izveštaja sa pregledom}other{{numSnapshot} izveštaja sa pregledom}}"
115
115
  },
116
116
  "flow-report/src/i18n/ui-strings.js | summary": {
117
117
  "message": "Rezime"
@@ -126,7 +126,7 @@
126
126
  "message": "Izveštaj za period"
127
127
  },
128
128
  "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
- "message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
129
+ "message": "{numTimespan,plural, =1{{numTimespan} izveštaj za period}one{{numTimespan} izveštaj za period}few{{numTimespan} izveštaja za period}other{{numTimespan} izveštaja za period}}"
130
130
  },
131
131
  "flow-report/src/i18n/ui-strings.js | title": {
132
132
  "message": "Izveštaj o korisničkom toku za Lighthouse"
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "Više neusaglašenih URL-ova ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "Usmerava ka drugom domenu ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "Nevažeći URL ({url})"
1300
1297
  },
@@ -2331,7 +2328,7 @@
2331
2328
  "message": "Pogledajte kalkulator."
2332
2329
  },
2333
2330
  "report/renderer/util.js | collapseView": {
2334
- "message": "Collapse view"
2331
+ "message": "Skupi prikaz"
2335
2332
  },
2336
2333
  "report/renderer/util.js | crcInitialNavigation": {
2337
2334
  "message": "Početna navigacija"
@@ -2370,13 +2367,13 @@
2370
2367
  "message": "Prijavljivanje greške: nema informacija o proveri"
2371
2368
  },
2372
2369
  "report/renderer/util.js | expandView": {
2373
- "message": "Expand view"
2370
+ "message": "Proširi prikaz"
2374
2371
  },
2375
2372
  "report/renderer/util.js | footerIssue": {
2376
2373
  "message": "Prijavite problem"
2377
2374
  },
2378
2375
  "report/renderer/util.js | hide": {
2379
- "message": "Hide"
2376
+ "message": "Sakrij"
2380
2377
  },
2381
2378
  "report/renderer/util.js | labDataTitle": {
2382
2379
  "message": "Podaci o eksperimentalnim funkcijama"
@@ -2400,10 +2397,10 @@
2400
2397
  "message": "Provere sa zadovoljavajućom ocenom"
2401
2398
  },
2402
2399
  "report/renderer/util.js | runtimeAnalysisWindow": {
2403
- "message": "Initial page load"
2400
+ "message": "Početno učitavanje stranice"
2404
2401
  },
2405
2402
  "report/renderer/util.js | runtimeCustom": {
2406
- "message": "Custom throttling"
2403
+ "message": "Prilagođeno ograničavanje"
2407
2404
  },
2408
2405
  "report/renderer/util.js | runtimeDesktopEmulation": {
2409
2406
  "message": "Emulirani računar"
@@ -2433,19 +2430,19 @@
2433
2430
  "message": "Korisnički agent (mreža)"
2434
2431
  },
2435
2432
  "report/renderer/util.js | runtimeSingleLoad": {
2436
- "message": "Single page load"
2433
+ "message": "Jedno učitavanje stranice"
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 summarizing many sessions."
2436
+ "message": "Ovi podaci su dobijeni na osnovu jednog učitavanja stranice, nasuprot podacima iz polja koji rezimiraju mnoge sesije."
2440
2437
  },
2441
2438
  "report/renderer/util.js | runtimeSlow4g": {
2442
- "message": "Slow 4G throttling"
2439
+ "message": "Ograničavanje poput spore 4G veze"
2443
2440
  },
2444
2441
  "report/renderer/util.js | runtimeUnknown": {
2445
2442
  "message": "Nepoznato"
2446
2443
  },
2447
2444
  "report/renderer/util.js | show": {
2448
- "message": "Show"
2445
+ "message": "Prikaži"
2449
2446
  },
2450
2447
  "report/renderer/util.js | showRelevantAudits": {
2451
2448
  "message": "Prikaži revizije relevantne za:"
@@ -60,10 +60,10 @@
60
60
  "message": "Откријте прилике за учинак да бисте побољшали доживљај за дугорочне странице и апликације са једном страницом."
61
61
  },
62
62
  "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
- "message": "Highest impact"
63
+ "message": "Највећи утицај"
64
64
  },
65
65
  "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
- "message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
66
+ "message": "{numInformative,plural, =1{{numInformative} информативна провера}one{{numInformative} информативна провера}few{{numInformative} информативне провере}other{{numInformative} информативних провера}}"
67
67
  },
68
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
69
69
  "message": "Мобилни уређај"
@@ -78,13 +78,13 @@
78
78
  "message": "Извештај о навигацији"
79
79
  },
80
80
  "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
- "message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
81
+ "message": "{numNavigation,plural, =1{{numNavigation} извештај о навигацији}one{{numNavigation} извештај о навигацији}few{{numNavigation} извештаја о навигацији}other{{numNavigation} извештаја о навигацији}}"
82
82
  },
83
83
  "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
- "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
84
+ "message": "{numPassableAudits,plural, =1{{numPassableAudits} провера која може да се прође}one{{numPassableAudits} провера која може да се прође}few{{numPassableAudits} провере које могу да се прођу}other{{numPassableAudits} провера које могу да се прођу}}"
85
85
  },
86
86
  "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
- "message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
87
+ "message": "{numPassed,plural, =1{Прошли сте {numPassed} проверу}one{Прошли сте{numPassed} проверу}few{Прошли сте{numPassed} провере}other{Прошли сте{numPassed} провера}}"
88
88
  },
89
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
90
  "message": "Просек"
@@ -111,7 +111,7 @@
111
111
  "message": "Извештај са прегледом"
112
112
  },
113
113
  "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
- "message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
114
+ "message": "{numSnapshot,plural, =1{{numSnapshot} извештај са прегледом}one{{numSnapshot} извештај са прегледом}few{{numSnapshot} извештаја са прегледом}other{{numSnapshot} извештаја са прегледом}}"
115
115
  },
116
116
  "flow-report/src/i18n/ui-strings.js | summary": {
117
117
  "message": "Резиме"
@@ -126,7 +126,7 @@
126
126
  "message": "Извештај за период"
127
127
  },
128
128
  "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
- "message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
129
+ "message": "{numTimespan,plural, =1{{numTimespan} извештај за период}one{{numTimespan} извештај за период}few{{numTimespan} извештаја за период}other{{numTimespan} извештаја за период}}"
130
130
  },
131
131
  "flow-report/src/i18n/ui-strings.js | title": {
132
132
  "message": "Извештај о корисничком току за Lighthouse"
@@ -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
  },
@@ -2331,7 +2328,7 @@
2331
2328
  "message": "Погледајте калкулатор."
2332
2329
  },
2333
2330
  "report/renderer/util.js | collapseView": {
2334
- "message": "Collapse view"
2331
+ "message": "Скупи приказ"
2335
2332
  },
2336
2333
  "report/renderer/util.js | crcInitialNavigation": {
2337
2334
  "message": "Почетна навигација"
@@ -2370,13 +2367,13 @@
2370
2367
  "message": "Пријављивање грешке: нема информација о провери"
2371
2368
  },
2372
2369
  "report/renderer/util.js | expandView": {
2373
- "message": "Expand view"
2370
+ "message": "Прошири приказ"
2374
2371
  },
2375
2372
  "report/renderer/util.js | footerIssue": {
2376
2373
  "message": "Пријавите проблем"
2377
2374
  },
2378
2375
  "report/renderer/util.js | hide": {
2379
- "message": "Hide"
2376
+ "message": "Сакриј"
2380
2377
  },
2381
2378
  "report/renderer/util.js | labDataTitle": {
2382
2379
  "message": "Подаци о експерименталним функцијама"
@@ -2400,10 +2397,10 @@
2400
2397
  "message": "Провере са задовољавајућом оценом"
2401
2398
  },
2402
2399
  "report/renderer/util.js | runtimeAnalysisWindow": {
2403
- "message": "Initial page load"
2400
+ "message": "Почетно учитавање странице"
2404
2401
  },
2405
2402
  "report/renderer/util.js | runtimeCustom": {
2406
- "message": "Custom throttling"
2403
+ "message": "Прилагођено ограничавање"
2407
2404
  },
2408
2405
  "report/renderer/util.js | runtimeDesktopEmulation": {
2409
2406
  "message": "Емулирани рачунар"
@@ -2433,19 +2430,19 @@
2433
2430
  "message": "Кориснички агент (мрежа)"
2434
2431
  },
2435
2432
  "report/renderer/util.js | runtimeSingleLoad": {
2436
- "message": "Single page load"
2433
+ "message": "Једно учитавање странице"
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 summarizing many sessions."
2436
+ "message": "Ови подаци су добијени на основу једног учитавања странице, насупрот подацима из поља који резимирају многе сесије."
2440
2437
  },
2441
2438
  "report/renderer/util.js | runtimeSlow4g": {
2442
- "message": "Slow 4G throttling"
2439
+ "message": "Ограничавање попут споре 4G везе"
2443
2440
  },
2444
2441
  "report/renderer/util.js | runtimeUnknown": {
2445
2442
  "message": "Непознато"
2446
2443
  },
2447
2444
  "report/renderer/util.js | show": {
2448
- "message": "Show"
2445
+ "message": "Прикажи"
2449
2446
  },
2450
2447
  "report/renderer/util.js | showRelevantAudits": {
2451
2448
  "message": "Прикажи ревизије релевантне за:"
@@ -3,7 +3,7 @@
3
3
  "message": "Alla rapporter"
4
4
  },
5
5
  "flow-report/src/i18n/ui-strings.js | categories": {
6
- "message": "Categories"
6
+ "message": "Kategorier"
7
7
  },
8
8
  "flow-report/src/i18n/ui-strings.js | categoryAccessibility": {
9
9
  "message": "Tillgänglighet"
@@ -24,40 +24,40 @@
24
24
  "message": "Dator"
25
25
  },
26
26
  "flow-report/src/i18n/ui-strings.js | helpDialogTitle": {
27
- "message": "Understanding the Lighthouse Flow Report"
27
+ "message": "Information om rapporten över flöde i Lighthouse"
28
28
  },
29
29
  "flow-report/src/i18n/ui-strings.js | helpLabel": {
30
- "message": "Understanding Flows"
30
+ "message": "Information om flöden"
31
31
  },
32
32
  "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionNavigation": {
33
- "message": "Use Navigation reports to..."
33
+ "message": "Du kan använda rapporter över navigering till följande:"
34
34
  },
35
35
  "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionSnapshot": {
36
- "message": "Use Snapshot reports to..."
36
+ "message": "Du kan använda rapporter med ögonblicksbilder till följande:"
37
37
  },
38
38
  "flow-report/src/i18n/ui-strings.js | helpUseCaseInstructionTimespan": {
39
- "message": "Use Timespan reports to..."
39
+ "message": "Du kan använda rapporter över tidsperiod till följande:"
40
40
  },
41
41
  "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation1": {
42
- "message": "Obtain a Lighthouse Performance score."
42
+ "message": "Hämta ett prestandavärde för Lighthouse."
43
43
  },
44
44
  "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation2": {
45
- "message": "Measure page load Performance metrics such as Largest Contentful Paint and Speed Index."
45
+ "message": "Mät resultatmätvärden för sidhämtningar, t.ex. Största uppritningen av innehåll och hastighetsindex."
46
46
  },
47
47
  "flow-report/src/i18n/ui-strings.js | helpUseCaseNavigation3": {
48
- "message": "Assess Progressive Web App capabilities."
48
+ "message": "Testa funktioner för progressiva webbappar."
49
49
  },
50
50
  "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot1": {
51
- "message": "Find accessibility issues in single page applications or complex forms."
51
+ "message": "Hitta tillgänglighetsproblem i appar för en sida eller komplexa formulär."
52
52
  },
53
53
  "flow-report/src/i18n/ui-strings.js | helpUseCaseSnapshot2": {
54
- "message": "Evaluate best practices of menus and UI elements hidden behind interaction."
54
+ "message": "Utvärdera rekommenderade metoder för menyer och UI-element som döljs bakom interaktioner."
55
55
  },
56
56
  "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan1": {
57
- "message": "Measure layout shifts and JavaScript execution time on a series of interactions."
57
+ "message": "Mäta layoutförskjutningar och körningstider för JavaScript i en serie interaktioner."
58
58
  },
59
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."
60
+ "message": "Upptäck prestandamöjligheter och förbättra upplevelsen långlivade sidor och appar för en sida."
61
61
  },
62
62
  "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
63
  "message": "Störst effekt"
@@ -72,7 +72,7 @@
72
72
  "message": "Sidhämtning"
73
73
  },
74
74
  "flow-report/src/i18n/ui-strings.js | navigationLongDescription": {
75
- "message": "Navigation reports analyze a single page load, exactly like the original Lighthouse reports."
75
+ "message": "Med rapporter över navigering kan du analysera en enskild sidhämtning, precis som med de ursprungliga Lighthouse-rapporterna."
76
76
  },
77
77
  "flow-report/src/i18n/ui-strings.js | navigationReport": {
78
78
  "message": "Rapport över navigering"
@@ -99,13 +99,13 @@
99
99
  "message": "Bra"
100
100
  },
101
101
  "flow-report/src/i18n/ui-strings.js | save": {
102
- "message": "Save"
102
+ "message": "Spara"
103
103
  },
104
104
  "flow-report/src/i18n/ui-strings.js | snapshotDescription": {
105
105
  "message": "Sidans status vid en viss tidpunkt"
106
106
  },
107
107
  "flow-report/src/i18n/ui-strings.js | snapshotLongDescription": {
108
- "message": "Snapshot reports analyze the page in a particular state, typically after user interactions."
108
+ "message": "Med rapporter med ögonblicksbilder går det att analysera en sida i ett visst läge, vanligtvis efter interaktioner från användare."
109
109
  },
110
110
  "flow-report/src/i18n/ui-strings.js | snapshotReport": {
111
111
  "message": "Rapport med ögonblicksbild"
@@ -120,7 +120,7 @@
120
120
  "message": "Användarinteraktioner"
121
121
  },
122
122
  "flow-report/src/i18n/ui-strings.js | timespanLongDescription": {
123
- "message": "Timespan reports analyze an arbitrary period of time, typically containing user interactions."
123
+ "message": "Med rapporter över tidsintervall kan du analysera en slumpmässig tidsperiod som oftast innehåller användarinteraktioner."
124
124
  },
125
125
  "flow-report/src/i18n/ui-strings.js | timespanReport": {
126
126
  "message": "Rapport över tidsperiod"
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "Flera webbadresser som står i konflikt ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "Pekar på en annan domän ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "Ogiltig webbadress ({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
  },
@@ -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": "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": "Birden fazla çakışan URL ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "Farklı bir alan adına yönlendiriyor ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "Geçersiz URL ({url})"
1300
1297
  },
@@ -60,10 +60,10 @@
60
60
  "message": "Знаходити можливості покращити ефективність постійних сторінок і односторінкових додатків."
61
61
  },
62
62
  "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
- "message": "Highest impact"
63
+ "message": "Найвагоміші"
64
64
  },
65
65
  "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
- "message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
66
+ "message": "{numInformative,plural, =1{{numInformative} інформативна перевірка}one{{numInformative} інформативна перевірка}few{{numInformative} інформативні перевірки}many{{numInformative} інформативних перевірок}other{{numInformative} інформативної перевірки}}"
67
67
  },
68
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
69
69
  "message": "Мобільна версія"
@@ -78,13 +78,13 @@
78
78
  "message": "Звіт про навігацію"
79
79
  },
80
80
  "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
- "message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
81
+ "message": "{numNavigation,plural, =1{{numNavigation} звіт про навігацію}one{{numNavigation} звіт про навігацію}few{{numNavigation} звіти про навігацію}many{{numNavigation} звітів про навігацію}other{{numNavigation} звіту про навігацію}}"
82
82
  },
83
83
  "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
- "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
84
+ "message": "{numPassableAudits,plural, =1{Можна здійснити {numPassableAudits} перевірку}one{Можна здійснити {numPassableAudits} перевірку}few{Можна здійснити {numPassableAudits} перевірки}many{Можна здійснити {numPassableAudits} перевірок}other{Можна здійснити {numPassableAudits} перевірки}}"
85
85
  },
86
86
  "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
- "message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
87
+ "message": "{numPassed,plural, =1{{numPassed} перевірку пройдено}one{{numPassed} перевірку пройдено}few{{numPassed} перевірки пройдено}many{{numPassed} перевірок пройдено}other{{numPassed} перевірки пройдено}}"
88
88
  },
89
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
90
  "message": "Посередньо"
@@ -111,7 +111,7 @@
111
111
  "message": "Звіт про стан на певний момент часу"
112
112
  },
113
113
  "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
- "message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
114
+ "message": "{numSnapshot,plural, =1{{numSnapshot} звіт про стан на певний момент часу}one{{numSnapshot} звіт про стан на певний момент часу}few{{numSnapshot} звіти про стан на певний момент часу}many{{numSnapshot} звітів про стан на певний момент часу}other{{numSnapshot} звіту про стан на певний момент часу}}"
115
115
  },
116
116
  "flow-report/src/i18n/ui-strings.js | summary": {
117
117
  "message": "Підсумок"
@@ -126,7 +126,7 @@
126
126
  "message": "Звіт про період часу"
127
127
  },
128
128
  "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
- "message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
129
+ "message": "{numTimespan,plural, =1{{numTimespan} звіт про період часу}one{{numTimespan} звіт про період часу}few{{numTimespan} звіти про період часу}many{{numTimespan} звітів про період часу}other{{numTimespan} звіту про період часу}}"
130
130
  },
131
131
  "flow-report/src/i18n/ui-strings.js | title": {
132
132
  "message": "Звіт про послідовність переходів у Lighthouse"
@@ -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
  },
@@ -1761,7 +1758,7 @@
1761
1758
  "message": "Ці категорії обов'язкові відповідно до основного [контрольного списку для прогресивних веб-додатків](https://developers.google.com/web/progressive-web-apps/checklist), але Lighthouse не перевіряє їх автоматично. Вони не впливають на ваш показник, проте їх потрібно підтвердити вручну."
1762
1759
  },
1763
1760
  "lighthouse-core/config/default-config.js | pwaCategoryTitle": {
1764
- "message": "PWA"
1761
+ "message": "Прогресивний веб-додаток"
1765
1762
  },
1766
1763
  "lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
1767
1764
  "message": "Можна встановити"
@@ -2331,7 +2328,7 @@
2331
2328
  "message": "Показати калькулятор."
2332
2329
  },
2333
2330
  "report/renderer/util.js | collapseView": {
2334
- "message": "Collapse view"
2331
+ "message": "Згорнути"
2335
2332
  },
2336
2333
  "report/renderer/util.js | crcInitialNavigation": {
2337
2334
  "message": "Початкова навігація"
@@ -2370,13 +2367,13 @@
2370
2367
  "message": "Повідомлення про помилку: немає інформації про перевірку"
2371
2368
  },
2372
2369
  "report/renderer/util.js | expandView": {
2373
- "message": "Expand view"
2370
+ "message": "Розгорнути"
2374
2371
  },
2375
2372
  "report/renderer/util.js | footerIssue": {
2376
2373
  "message": "Повідомити про проблему"
2377
2374
  },
2378
2375
  "report/renderer/util.js | hide": {
2379
- "message": "Hide"
2376
+ "message": "Сховати"
2380
2377
  },
2381
2378
  "report/renderer/util.js | labDataTitle": {
2382
2379
  "message": "Дані тестів"
@@ -2400,10 +2397,10 @@
2400
2397
  "message": "Виконані перевірки"
2401
2398
  },
2402
2399
  "report/renderer/util.js | runtimeAnalysisWindow": {
2403
- "message": "Initial page load"
2400
+ "message": "Перше завантаження сторінки"
2404
2401
  },
2405
2402
  "report/renderer/util.js | runtimeCustom": {
2406
- "message": "Custom throttling"
2403
+ "message": "Спеціальне обмеження пропускної спроможності"
2407
2404
  },
2408
2405
  "report/renderer/util.js | runtimeDesktopEmulation": {
2409
2406
  "message": "Емульований комп'ютер"
@@ -2433,19 +2430,19 @@
2433
2430
  "message": "Агент користувача (мережа)"
2434
2431
  },
2435
2432
  "report/renderer/util.js | runtimeSingleLoad": {
2436
- "message": "Single page load"
2433
+ "message": "Одне завантаження сторінки"
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 summarizing many sessions."
2436
+ "message": "Було взято дані одного завантаження сторінки, а не дані поля, що охоплюють кілька сеансів."
2440
2437
  },
2441
2438
  "report/renderer/util.js | runtimeSlow4g": {
2442
- "message": "Slow 4G throttling"
2439
+ "message": "Обмеження пропускної спроможності для мережі 4G з низькою швидкістю"
2443
2440
  },
2444
2441
  "report/renderer/util.js | runtimeUnknown": {
2445
2442
  "message": "Невідомо"
2446
2443
  },
2447
2444
  "report/renderer/util.js | show": {
2448
- "message": "Show"
2445
+ "message": "Показати"
2449
2446
  },
2450
2447
  "report/renderer/util.js | showRelevantAudits": {
2451
2448
  "message": "Показано аудити, релевантні для:"
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "Nhiều URL xung đột ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "Trỏ đến một miền khác ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "URL không hợp lệ ({url})."
1300
1297
  },
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "多個互相衝突的網址 ({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})"
1300
1297
  },
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "多個衝突的網址 ({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})"
1300
1297
  },
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "存在多个相互冲突的网址({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})"
1300
1297
  },