chrome-devtools-frontend 1.0.946920 → 1.0.948445

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 (201) hide show
  1. package/.eslintrc.js +1 -0
  2. package/config/gni/all_devtools_files.gni +1 -13
  3. package/config/gni/devtools_grd_files.gni +6 -9
  4. package/config/gni/devtools_image_files.gni +1 -0
  5. package/front_end/.eslintrc.js +6 -1
  6. package/front_end/Images/src/circled_backslash_icon.svg +3 -0
  7. package/front_end/core/host/InspectorFrontendHost.ts +0 -3
  8. package/front_end/core/host/UserMetrics.ts +1 -1
  9. package/front_end/core/i18n/locales/en-US.json +17 -14
  10. package/front_end/core/i18n/locales/en-XL.json +17 -14
  11. package/front_end/core/platform/platform.ts +0 -2
  12. package/front_end/core/platform/string-utilities.ts +14 -1
  13. package/front_end/core/platform/utilities.ts +0 -29
  14. package/front_end/core/root/Runtime.ts +4 -211
  15. package/front_end/core/sdk/AccessibilityModel.ts +0 -2
  16. package/front_end/core/sdk/CSSProperty.ts +0 -2
  17. package/front_end/core/sdk/CSSRule.ts +0 -2
  18. package/front_end/core/sdk/Cookie.ts +0 -25
  19. package/front_end/core/sdk/EmulationModel.ts +0 -2
  20. package/front_end/core/sdk/HeapProfilerModel.ts +0 -2
  21. package/front_end/core/sdk/NetworkManager.ts +0 -3
  22. package/front_end/core/sdk/Resource.ts +0 -3
  23. package/front_end/core/sdk/ResourceTreeModel.ts +0 -3
  24. package/front_end/core/sdk/ServiceWorkerManager.ts +0 -2
  25. package/front_end/core/sdk/sdk-legacy.ts +0 -3
  26. package/front_end/entrypoints/devtools_app/{devtools_app-meta-files.ts → devtools_app.ts} +9 -2
  27. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +2 -1
  28. package/front_end/entrypoints/inspector/{inspector.js → inspector.ts} +0 -3
  29. package/front_end/entrypoints/js_app/{JsMain.ts → js_app.ts} +5 -1
  30. package/front_end/entrypoints/main/MainImpl.ts +0 -1
  31. package/front_end/entrypoints/ndb_app/{ndb_app.js → ndb_app.ts} +0 -2
  32. package/front_end/entrypoints/node_app/node_app.ts +1 -3
  33. package/front_end/entrypoints/shell/{shell.js → shell.ts} +0 -2
  34. package/front_end/entrypoints/worker_app/{worker_app.js → worker_app.ts} +3 -2
  35. package/front_end/generated/InspectorBackendCommands.js +5 -1
  36. package/front_end/generated/protocol.d.ts +12 -0
  37. package/front_end/legacy/legacy-defs.d.ts +0 -4
  38. package/front_end/legacy_test_runner/test_runner/TestRunner.js +35 -59
  39. package/front_end/models/bindings/CompilerScriptMapping.ts +0 -1
  40. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +4 -11
  41. package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
  42. package/front_end/models/emulation/DeviceModeModel.ts +0 -2
  43. package/front_end/models/issues_manager/CorsIssue.ts +17 -9
  44. package/front_end/models/issues_manager/descriptions/{corsInsecurePrivateNetworkPreflight.md → corsPreflightAllowPrivateNetworkError.md} +1 -1
  45. package/front_end/panels/accessibility/AccessibilitySidebarView.ts +3 -1
  46. package/front_end/panels/animation/AnimationTimeline.ts +0 -2
  47. package/front_end/panels/animation/AnimationUI.ts +0 -2
  48. package/front_end/panels/application/BackForwardCacheStrings.ts +2 -5
  49. package/front_end/panels/application/BackForwardCacheView.ts +150 -58
  50. package/front_end/panels/application/ResourcesPanel.ts +0 -42
  51. package/front_end/panels/application/application-legacy.ts +0 -3
  52. package/front_end/panels/application/application-meta.ts +0 -13
  53. package/front_end/panels/application/backForwardCacheView.css +44 -6
  54. package/front_end/panels/application/components/FrameDetailsView.ts +3 -3
  55. package/front_end/panels/application/components/OriginTrialTreeView.ts +3 -3
  56. package/front_end/panels/application/components/StackTrace.ts +1 -1
  57. package/front_end/panels/coverage/CoverageView.ts +1 -1
  58. package/front_end/panels/css_overview/CSSOverviewModel.ts +0 -2
  59. package/front_end/panels/css_overview/CSSOverviewPanel.ts +0 -7
  60. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +0 -2
  61. package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -0
  62. package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
  63. package/front_end/panels/developer_resources/DeveloperResourcesView.ts +2 -1
  64. package/front_end/panels/elements/ElementsPanel.ts +9 -1
  65. package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
  66. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
  67. package/front_end/panels/issues/CorsIssueDetailsView.ts +18 -2
  68. package/front_end/panels/lighthouse/lighthouse-meta.ts +0 -3
  69. package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -0
  70. package/front_end/panels/profiler/CPUProfileFlameChart.ts +3 -1
  71. package/front_end/panels/profiler/ProfileDataGrid.ts +2 -1
  72. package/front_end/panels/search/SearchView.ts +24 -4
  73. package/front_end/panels/settings/components/SyncSection.ts +2 -2
  74. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +46 -46
  75. package/front_end/panels/sources/CSSPlugin.ts +3 -0
  76. package/front_end/panels/sources/CoveragePlugin.ts +2 -0
  77. package/front_end/panels/sources/DebuggerPlugin.ts +28 -4
  78. package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +3 -0
  79. package/front_end/panels/sources/ProfilePlugin.ts +3 -0
  80. package/front_end/panels/sources/UISourceCodeFrame.ts +11 -2
  81. package/front_end/panels/timeline/TimelineTreeView.ts +2 -1
  82. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  83. package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -2
  84. package/front_end/third_party/codemirror.next/chunk/java.js +1 -2
  85. package/front_end/third_party/codemirror.next/chunk/json.js +1 -2
  86. package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -2
  87. package/front_end/third_party/codemirror.next/chunk/php.js +1 -2
  88. package/front_end/third_party/codemirror.next/chunk/python.js +1 -2
  89. package/front_end/third_party/codemirror.next/chunk/wast.js +1 -2
  90. package/front_end/third_party/codemirror.next/chunk/xml.js +1 -2
  91. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -2
  92. package/front_end/third_party/codemirror.next/package.json +1 -0
  93. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +168 -164
  94. package/front_end/third_party/lighthouse/locales/ar-XB.json +0 -3
  95. package/front_end/third_party/lighthouse/locales/ar.json +0 -3
  96. package/front_end/third_party/lighthouse/locales/bg.json +17 -20
  97. package/front_end/third_party/lighthouse/locales/ca.json +0 -3
  98. package/front_end/third_party/lighthouse/locales/cs.json +0 -3
  99. package/front_end/third_party/lighthouse/locales/da.json +16 -19
  100. package/front_end/third_party/lighthouse/locales/de.json +0 -3
  101. package/front_end/third_party/lighthouse/locales/el.json +0 -3
  102. package/front_end/third_party/lighthouse/locales/en-GB.json +19 -22
  103. package/front_end/third_party/lighthouse/locales/en-US.json +33 -3
  104. package/front_end/third_party/lighthouse/locales/en-XA.json +0 -3
  105. package/front_end/third_party/lighthouse/locales/en-XL.json +33 -3
  106. package/front_end/third_party/lighthouse/locales/es-419.json +17 -20
  107. package/front_end/third_party/lighthouse/locales/es.json +0 -3
  108. package/front_end/third_party/lighthouse/locales/fi.json +16 -19
  109. package/front_end/third_party/lighthouse/locales/fil.json +33 -36
  110. package/front_end/third_party/lighthouse/locales/fr.json +16 -19
  111. package/front_end/third_party/lighthouse/locales/he.json +16 -19
  112. package/front_end/third_party/lighthouse/locales/hi.json +0 -3
  113. package/front_end/third_party/lighthouse/locales/hr.json +16 -19
  114. package/front_end/third_party/lighthouse/locales/hu.json +16 -19
  115. package/front_end/third_party/lighthouse/locales/id.json +16 -19
  116. package/front_end/third_party/lighthouse/locales/it.json +37 -40
  117. package/front_end/third_party/lighthouse/locales/ja.json +16 -19
  118. package/front_end/third_party/lighthouse/locales/ko.json +16 -19
  119. package/front_end/third_party/lighthouse/locales/lt.json +17 -20
  120. package/front_end/third_party/lighthouse/locales/lv.json +0 -3
  121. package/front_end/third_party/lighthouse/locales/nl.json +16 -19
  122. package/front_end/third_party/lighthouse/locales/no.json +17 -20
  123. package/front_end/third_party/lighthouse/locales/pl.json +16 -19
  124. package/front_end/third_party/lighthouse/locales/pt-PT.json +37 -40
  125. package/front_end/third_party/lighthouse/locales/pt.json +16 -19
  126. package/front_end/third_party/lighthouse/locales/ro.json +0 -3
  127. package/front_end/third_party/lighthouse/locales/ru.json +16 -19
  128. package/front_end/third_party/lighthouse/locales/sk.json +0 -3
  129. package/front_end/third_party/lighthouse/locales/sl.json +0 -3
  130. package/front_end/third_party/lighthouse/locales/sr-Latn.json +16 -19
  131. package/front_end/third_party/lighthouse/locales/sr.json +16 -19
  132. package/front_end/third_party/lighthouse/locales/sv.json +17 -20
  133. package/front_end/third_party/lighthouse/locales/ta.json +0 -3
  134. package/front_end/third_party/lighthouse/locales/te.json +0 -3
  135. package/front_end/third_party/lighthouse/locales/th.json +0 -3
  136. package/front_end/third_party/lighthouse/locales/tr.json +0 -3
  137. package/front_end/third_party/lighthouse/locales/uk.json +17 -20
  138. package/front_end/third_party/lighthouse/locales/vi.json +0 -3
  139. package/front_end/third_party/lighthouse/locales/zh-HK.json +0 -3
  140. package/front_end/third_party/lighthouse/locales/zh-TW.json +0 -3
  141. package/front_end/third_party/lighthouse/locales/zh.json +0 -3
  142. package/front_end/third_party/lighthouse/report/bundle.d.ts +63 -61
  143. package/front_end/third_party/lighthouse/report/bundle.js +36 -7
  144. package/front_end/third_party/lighthouse/report-assets/report-generator.js +205 -192
  145. package/front_end/ui/components/diff_view/DiffView.ts +4 -4
  146. package/front_end/ui/components/helpers/component-server-setup.ts +1 -12
  147. package/front_end/ui/components/helpers/helpers.ts +0 -2
  148. package/front_end/ui/components/icon_button/IconButton.ts +1 -1
  149. package/front_end/ui/components/issue_counter/IssueCounter.ts +2 -2
  150. package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +3 -3
  151. package/front_end/ui/components/markdown_view/MarkdownView.ts +4 -4
  152. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +98 -0
  153. package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -0
  154. package/front_end/ui/components/panel_feedback/previewToggle.css +24 -0
  155. package/front_end/ui/components/report_view/ReportView.ts +22 -0
  156. package/front_end/ui/components/report_view/reportSection.css +20 -0
  157. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
  158. package/front_end/ui/components/settings/SettingCheckbox.ts +2 -2
  159. package/front_end/ui/components/text_editor/config.ts +9 -7
  160. package/front_end/ui/components/text_editor/javascript.ts +8 -4
  161. package/front_end/ui/components/text_prompt/TextPrompt.ts +2 -2
  162. package/front_end/ui/legacy/GlassPane.ts +1 -1
  163. package/front_end/ui/legacy/SearchableView.ts +2 -1
  164. package/front_end/ui/legacy/Treeoutline.ts +1 -1
  165. package/front_end/ui/legacy/Widget.ts +1 -1
  166. package/front_end/ui/legacy/XWidget.ts +0 -5
  167. package/front_end/ui/legacy/components/inline_editor/CSSVarSwatch.ts +2 -2
  168. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
  169. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +40 -32
  170. package/front_end/ui/legacy/themeColors.css +1 -1
  171. package/front_end/ui/legacy/utils/append-style.ts +2 -13
  172. package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +7 -5
  173. package/package.json +2 -4
  174. package/scripts/build/build_inspector_overlay.py +15 -1
  175. package/scripts/build/rjsmin.py +84 -115
  176. package/scripts/eslint_rules/lib/l10n_filename_matches.js +4 -4
  177. package/scripts/eslint_rules/lib/lit_html_no_attribute_quotes.js +101 -0
  178. package/scripts/eslint_rules/lib/no_only_eslint_tests.js +53 -0
  179. package/scripts/eslint_rules/tests/.eslintrc.js +14 -0
  180. package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +4 -0
  181. package/scripts/eslint_rules/tests/lit_html_no_attribute_quotes_test.js +45 -0
  182. package/scripts/eslint_rules/tests/no_only_eslint_tests_test.js +94 -0
  183. package/front_end/entrypoints/devtools_app/devtools_app.js +0 -11
  184. package/front_end/entrypoints/devtools_app/devtools_app.json +0 -5
  185. package/front_end/entrypoints/inspector/inspector.json +0 -4
  186. package/front_end/entrypoints/js_app/js_app.js +0 -12
  187. package/front_end/entrypoints/js_app/js_app.json +0 -3
  188. package/front_end/entrypoints/ndb_app/ndb_app.json +0 -4
  189. package/front_end/entrypoints/startup/RuntimeInstantiator.ts +0 -95
  190. package/front_end/entrypoints/startup/startup.ts +0 -9
  191. package/front_end/entrypoints/worker_app/worker_app.json +0 -3
  192. package/front_end/panels/lighthouse/module.json +0 -6
  193. package/front_end/third_party/lighthouse/report-assets/report.d.ts +0 -1
  194. package/front_end/third_party/lighthouse/report-assets/report.js +0 -233
  195. package/front_end/third_party/lighthouse/report-assets/standalone-template.html +0 -38
  196. package/front_end/ui/components/helpers/get-stylesheet.ts +0 -45
  197. package/scripts/build/build_release_applications.py +0 -216
  198. package/scripts/build/modular_build.py +0 -184
  199. package/scripts/check_gn.js +0 -119
  200. package/scripts/json_validator/module.schema.json +0 -19
  201. package/scripts/json_validator/validate_module_json.js +0 -44
@@ -60,10 +60,10 @@
60
60
  "message": "Scoprire opportunità legate alle prestazioni per migliorare l'esperienza relativa alle pagine di lunga durata e alle applicazioni a pagina singola."
61
61
  },
62
62
  "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
- "message": "Highest impact"
63
+ "message": "Massimo impatto"
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} controllo informativo}one{{numInformative} controllo informativo}other{{numInformative} controlli informativi}}"
67
67
  },
68
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
69
69
  "message": "Dispositivi mobili"
@@ -78,13 +78,13 @@
78
78
  "message": "Report relativo alla navigazione"
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} report relativo alla navigazione}one{{numNavigation} report relativo alla navigazione}other{{numNavigation} report relativi alla navigazione}}"
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} controllo superabile}one{{numPassableAudits} controllo superabile}other{{numPassableAudits} controlli superabili}}"
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} controllo superato}one{{numPassed} controllo superato}other{{numPassed} controlli superati}}"
88
88
  },
89
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
90
90
  "message": "Nella media"
@@ -111,7 +111,7 @@
111
111
  "message": "Report relativo a un momento specifico"
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} report relativo a un momento specifico}one{{numSnapshot} report relativo a un momento specifico}other{{numSnapshot} report relativi a un momento specifico}}"
115
115
  },
116
116
  "flow-report/src/i18n/ui-strings.js | summary": {
117
117
  "message": "Riepilogo"
@@ -126,7 +126,7 @@
126
126
  "message": "Report relativo al periodo di tempo"
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} report relativo al periodo di tempo}one{{numTimespan} report relativo al periodo di tempo}other{{numTimespan} report relativi al periodo di tempo}}"
130
130
  },
131
131
  "flow-report/src/i18n/ui-strings.js | title": {
132
132
  "message": "Report Lighthouse sulla procedura"
@@ -666,7 +666,7 @@
666
666
  "message": "La memorizzazione nella cache per un lungo periodo di tempo può velocizzare le visite abituali alla tua pagina. [Ulteriori informazioni](https://web.dev/uses-long-cache-ttl/)."
667
667
  },
668
668
  "lighthouse-core/audits/byte-efficiency/uses-long-cache-ttl.js | displayValue": {
669
- "message": "{itemCount,plural, =1{1 risorsa trovata}other{# risorse trovate}}"
669
+ "message": "{itemCount,plural, =1{1 risorsa trovata}one{# resources found}other{# risorse trovate}}"
670
670
  },
671
671
  "lighthouse-core/audits/byte-efficiency/uses-long-cache-ttl.js | failureTitle": {
672
672
  "message": "Pubblica le risorse statiche con criteri della cache efficaci"
@@ -720,7 +720,7 @@
720
720
  "message": "Nella sezione Catene di richieste fondamentali indicata di seguito vengono mostrate le risorse caricate con priorità elevata. Potresti ridurre la lunghezza delle catene e le dimensioni del download delle risorse oppure rimandare il download delle risorse non necessarie per velocizzare il caricamento della pagina. [Ulteriori informazioni](https://web.dev/critical-request-chains/)."
721
721
  },
722
722
  "lighthouse-core/audits/critical-request-chains.js | displayValue": {
723
- "message": "{itemCount,plural, =1{1 catena trovata}other{# catene trovate}}"
723
+ "message": "{itemCount,plural, =1{1 catena trovata}one{# chains found}other{# catene trovate}}"
724
724
  },
725
725
  "lighthouse-core/audits/critical-request-chains.js | title": {
726
726
  "message": "Evita di concatenare le richieste fondamentali"
@@ -756,7 +756,7 @@
756
756
  "message": "Le API obsolete verranno rimosse dal browser prima o poi. [Ulteriori informazioni](https://web.dev/deprecations/)."
757
757
  },
758
758
  "lighthouse-core/audits/deprecations.js | displayValue": {
759
- "message": "{itemCount,plural, =1{1 avviso trovato}other{# avvisi trovati}}"
759
+ "message": "{itemCount,plural, =1{1 avviso trovato}one{# avvisi trovati}other{# avvisi trovati}}"
760
760
  },
761
761
  "lighthouse-core/audits/deprecations.js | failureTitle": {
762
762
  "message": "Usa API obsolete"
@@ -804,7 +804,7 @@
804
804
  "message": "Un DOM di grandi dimensioni aumenta l'utilizzo di memoria, causa [calcoli di stile](https://developers.google.com/web/fundamentals/performance/rendering/reduce-the-scope-and-complexity-of-style-calculations) più lunghi e genera costosi [adattamenti dinamici del layout](https://developers.google.com/speed/articles/reflow). [Ulteriori informazioni](https://web.dev/dom-size/)."
805
805
  },
806
806
  "lighthouse-core/audits/dobetterweb/dom-size.js | displayValue": {
807
- "message": "{itemCount,plural, =1{1 elemento}other{# elementi}}"
807
+ "message": "{itemCount,plural, =1{1 elemento}one{# elementi}other{# elementi}}"
808
808
  },
809
809
  "lighthouse-core/audits/dobetterweb/dom-size.js | failureTitle": {
810
810
  "message": "Evita di usare un DOM di dimensioni eccessive"
@@ -879,7 +879,7 @@
879
879
  "message": "Alcuni script di terze parti potrebbero contenere vulnerabilità di sicurezza note facilmente identificate e sfruttate dai malintenzionati. [Ulteriori informazioni](https://web.dev/no-vulnerable-libraries/)."
880
880
  },
881
881
  "lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | displayValue": {
882
- "message": "{itemCount,plural, =1{1 vulnerabilità rilevata}other{# vulnerabilità rilevate}}"
882
+ "message": "{itemCount,plural, =1{1 vulnerabilità rilevata}one{# vulnerabilità rilevate}other{# vulnerabilità rilevate}}"
883
883
  },
884
884
  "lighthouse-core/audits/dobetterweb/no-vulnerable-libraries.js | failureTitle": {
885
885
  "message": "Include librerie JavaScript front-end con vulnerabilità di sicurezza note"
@@ -912,7 +912,7 @@
912
912
  "message": "HTTP/2 offre tanti vantaggi rispetto a HTTP/1.1, tra cui intestazioni binarie e multiplexing. [Scopri di più](https://web.dev/uses-http2/)"
913
913
  },
914
914
  "lighthouse-core/audits/dobetterweb/uses-http2.js | displayValue": {
915
- "message": "{itemCount,plural, =1{1 richiesta non pubblicata tramite HTTP/2}other{# richieste non pubblicate tramite HTTP/2}}"
915
+ "message": "{itemCount,plural, =1{1 richiesta non pubblicata tramite HTTP/2}one{# richieste non pubblicate tramite HTTP/2}other{# richieste non pubblicate tramite HTTP/2}}"
916
916
  },
917
917
  "lighthouse-core/audits/dobetterweb/uses-http2.js | title": {
918
918
  "message": "Usa HTTP/2"
@@ -945,7 +945,7 @@
945
945
  "message": "Tutto il testo rimane visibile durante il caricamento dei caratteri web"
946
946
  },
947
947
  "lighthouse-core/audits/font-display.js | undeclaredFontOriginWarning": {
948
- "message": "{fontCountForOrigin,plural, =1{Impossibile controllare automaticamente in Lighthouse il valore `font-display` per l'origine {fontOrigin}.}other{Impossibile controllare automaticamente in Lighthouse i valori `font-display` per l'origine {fontOrigin}.}}"
948
+ "message": "{fontCountForOrigin,plural, =1{Impossibile controllare automaticamente in Lighthouse il valore `font-display` per l'origine {fontOrigin}.}one{Impossibile controllare automaticamente in Lighthouse i valori `font-display` per l'origine {fontOrigin}.}other{Impossibile controllare automaticamente in Lighthouse i valori `font-display` per l'origine {fontOrigin}.}}"
949
949
  },
950
950
  "lighthouse-core/audits/image-aspect-ratio.js | columnActual": {
951
951
  "message": "Proporzioni (effettive)"
@@ -993,7 +993,7 @@
993
993
  "message": "Il service worker è la tecnologia che consente alla tua app di usare tante funzionalità delle app web progressive, ad esempio il funzionamento offline, l'aggiunta alla schermata Home e le notifiche push. Grazie a implementazioni adeguate del service worker e del file manifest, i browser possono chiedere proattivamente agli utenti di aggiungere la tua app alla schermata Home. Ciò potrebbe comportare un maggiore coinvolgimento. [Scopri di più](https://web.dev/installable-manifest/)"
994
994
  },
995
995
  "lighthouse-core/audits/installable-manifest.js | displayValue": {
996
- "message": "{itemCount,plural, =1{1 motivo}other{# motivi}}"
996
+ "message": "{itemCount,plural, =1{1 motivo}one{# motivi}other{# motivi}}"
997
997
  },
998
998
  "lighthouse-core/audits/installable-manifest.js | failureTitle": {
999
999
  "message": "Il file manifest o il service worker dell'app web non soddisfano i requisiti di installabilità"
@@ -1089,7 +1089,7 @@
1089
1089
  "message": "Tutti i siti dovrebbero essere protetti con HTTPS, anche quelli che non trattano dati sensibili. Si dovrebbero quindi evitare i [contenuti misti](https://developers.google.com/web/fundamentals/security/prevent-mixed-content/what-is-mixed-content) perché alcune risorse vengono caricate tramite HTTP nonostante la richiesta iniziale venga pubblicata tramite HTTPS. HTTPS impedisce agli intrusi di manomettere o ascoltare passivamente le comunicazioni tra la tua app e i tuoi utenti ed è un prerequisito per HTTP/2 e tante nuove API delle piattaforme web. [Ulteriori informazioni](https://web.dev/is-on-https/)"
1090
1090
  },
1091
1091
  "lighthouse-core/audits/is-on-https.js | displayValue": {
1092
- "message": "{itemCount,plural, =1{1 richiesta non sicura trovata}other{# richieste non sicure trovate}}"
1092
+ "message": "{itemCount,plural, =1{1 richiesta non sicura trovata}one{# richieste non sicure trovate}other{# richieste non sicure trovate}}"
1093
1093
  },
1094
1094
  "lighthouse-core/audits/is-on-https.js | failureTitle": {
1095
1095
  "message": "Non usa HTTPS"
@@ -1131,7 +1131,7 @@
1131
1131
  "message": "Vengono elencate le attività più lunghe nel thread principale; è utile per identificare gli elementi che contribuiscono maggiormente al ritardo dell'interazione. [Ulteriori informazioni](https://web.dev/long-tasks-devtools/)"
1132
1132
  },
1133
1133
  "lighthouse-core/audits/long-tasks.js | displayValue": {
1134
- "message": "{itemCount,plural, =1{# attività lunga trovata}other{# attività lunghe trovate}}"
1134
+ "message": "{itemCount,plural, =1{# attività lunga trovata}one{# attività lunghe trovate}other{# attività lunghe trovate}}"
1135
1135
  },
1136
1136
  "lighthouse-core/audits/long-tasks.js | title": {
1137
1137
  "message": "Evita attività lunghe nel thread principale"
@@ -1224,7 +1224,7 @@
1224
1224
  "message": "Le animazioni non composite possono essere scadenti e aumentare il valore CLS. [Ulteriori informazioni](https://web.dev/non-composited-animations)"
1225
1225
  },
1226
1226
  "lighthouse-core/audits/non-composited-animations.js | displayValue": {
1227
- "message": "{itemCount,plural, =1{# elemento animato trovato}other{# elementi animati trovati}}"
1227
+ "message": "{itemCount,plural, =1{# elemento animato trovato}one{# elementi animati trovati}other{# elementi animati trovati}}"
1228
1228
  },
1229
1229
  "lighthouse-core/audits/non-composited-animations.js | filterMayMovePixels": {
1230
1230
  "message": "La proprietà relativa al filtro potrebbe spostare i pixel"
@@ -1242,7 +1242,7 @@
1242
1242
  "message": "La proprietà relativa alla trasformazione dipende dalle dimensioni della casella"
1243
1243
  },
1244
1244
  "lighthouse-core/audits/non-composited-animations.js | unsupportedCSSProperty": {
1245
- "message": "{propertyCount,plural, =1{Proprietà CSS non supportata: {properties}}other{Proprietà CSS non supportate: {properties}}}"
1245
+ "message": "{propertyCount,plural, =1{Proprietà CSS non supportata: {properties}}one{Proprietà CSS non supportate: {properties}}other{Proprietà CSS non supportate: {properties}}}"
1246
1246
  },
1247
1247
  "lighthouse-core/audits/non-composited-animations.js | unsupportedTimingParameters": {
1248
1248
  "message": "L'effetto ha parametri di timing non supportati"
@@ -1251,7 +1251,7 @@
1251
1251
  "message": "Mantieni la quantità e le dimensioni delle richieste di rete al di sotto dei target impostati tramite il budget per le prestazioni fornito. [Ulteriori informazioni](https://developers.google.com/web/tools/lighthouse/audits/budgets)."
1252
1252
  },
1253
1253
  "lighthouse-core/audits/performance-budget.js | requestCountOverBudget": {
1254
- "message": "{count,plural, =1{1 richiesta}other{# richieste}}"
1254
+ "message": "{count,plural, =1{1 richiesta}one{# richieste}other{# richieste}}"
1255
1255
  },
1256
1256
  "lighthouse-core/audits/performance-budget.js | title": {
1257
1257
  "message": "Budget per le prestazioni"
@@ -1281,7 +1281,7 @@
1281
1281
  "message": "Per impostare budget relativi alla quantità e alle dimensioni delle risorse della pagina, aggiungi un file budget.json. [Ulteriori informazioni](https://web.dev/use-lighthouse-for-performance-budgets/)."
1282
1282
  },
1283
1283
  "lighthouse-core/audits/resource-summary.js | displayValue": {
1284
- "message": "{requestCount,plural, =1{1 richiesta • {byteCount, number, bytes} KiB}other{# richieste • {byteCount, number, bytes} KiB}}"
1284
+ "message": "{requestCount,plural, =1{1 richiesta • {byteCount, number, bytes} KiB}one{# richieste • {byteCount, number, bytes} KiB}other{# richieste • {byteCount, number, bytes} KiB}}"
1285
1285
  },
1286
1286
  "lighthouse-core/audits/resource-summary.js | title": {
1287
1287
  "message": "Mantieni un numero ridotto di richieste e dimensioni di trasferimento limitate"
@@ -1292,9 +1292,6 @@
1292
1292
  "lighthouse-core/audits/seo/canonical.js | explanationConflict": {
1293
1293
  "message": "Diversi URL in conflitto ({urlList})"
1294
1294
  },
1295
- "lighthouse-core/audits/seo/canonical.js | explanationDifferentDomain": {
1296
- "message": "Rimanda a un altro dominio ({url})"
1297
- },
1298
1295
  "lighthouse-core/audits/seo/canonical.js | explanationInvalid": {
1299
1296
  "message": "URL non valido ({url})"
1300
1297
  },
@@ -1392,7 +1389,7 @@
1392
1389
  "message": "Il testo descrittivo dei link aiuta i motori di ricerca a comprendere i tuoi contenuti. [Ulteriori informazioni](https://web.dev/link-text/)."
1393
1390
  },
1394
1391
  "lighthouse-core/audits/seo/link-text.js | displayValue": {
1395
- "message": "{itemCount,plural, =1{1 link trovato}other{# link trovati}}"
1392
+ "message": "{itemCount,plural, =1{1 link trovato}one{# link trovati}other{# link trovati}}"
1396
1393
  },
1397
1394
  "lighthouse-core/audits/seo/link-text.js | failureTitle": {
1398
1395
  "message": "I link non contengono testo descrittivo"
@@ -1434,7 +1431,7 @@
1434
1431
  "message": "La richiesta per robots.txt ha restituito uno stato HTTP: {statusCode}"
1435
1432
  },
1436
1433
  "lighthouse-core/audits/seo/robots-txt.js | displayValueValidationError": {
1437
- "message": "{itemCount,plural, =1{1 errore trovato}other{# errori trovati}}"
1434
+ "message": "{itemCount,plural, =1{1 errore trovato}one{# errori trovati}other{# errori trovati}}"
1438
1435
  },
1439
1436
  "lighthouse-core/audits/seo/robots-txt.js | explanation": {
1440
1437
  "message": "Lighthouse non può completare il download del file robots.txt"
@@ -1536,7 +1533,7 @@
1536
1533
  "message": "Alcuni incorporamenti di terze parti possono essere caricati tramite caricamento lento. Puoi sostituirli con un facade finché non sono richiesti. [Scopri di più](https://web.dev/third-party-facades/)"
1537
1534
  },
1538
1535
  "lighthouse-core/audits/third-party-facades.js | displayValue": {
1539
- "message": "{itemCount,plural, =1{# alternativa facade disponibile}other{# alternative facade disponibili}}"
1536
+ "message": "{itemCount,plural, =1{# alternativa facade disponibile}one{# alternative facade disponibili}other{# alternative facade disponibili}}"
1540
1537
  },
1541
1538
  "lighthouse-core/audits/third-party-facades.js | failureTitle": {
1542
1539
  "message": "Alcune risorse di terze parti possono essere caricate tramite caricamento lento con un facade"
@@ -1587,7 +1584,7 @@
1587
1584
  "message": "Potresti dotare la tua app dell'API User Timing per misurare le prestazioni reali dell'app durante le esperienze utente chiave. [Ulteriori informazioni](https://web.dev/user-timings/)."
1588
1585
  },
1589
1586
  "lighthouse-core/audits/user-timings.js | displayValue": {
1590
- "message": "{itemCount,plural, =1{1 tempo utente}other{# tempi utente}}"
1587
+ "message": "{itemCount,plural, =1{1 tempo utente}one{# user timings}other{# tempi utente}}"
1591
1588
  },
1592
1589
  "lighthouse-core/audits/user-timings.js | title": {
1593
1590
  "message": "Indicatori e misure User Timing"
@@ -1629,7 +1626,7 @@
1629
1626
  "message": "Nel file JavaScript di grandi dimensioni manca una mappa di origine"
1630
1627
  },
1631
1628
  "lighthouse-core/audits/valid-source-maps.js | missingSourceMapItemsWarningMesssage": {
1632
- "message": "{missingItems,plural, =1{Avviso: manca 1 elemento in `.sourcesContent`}other{Avviso: mancano # elementi in `.sourcesContent`}}"
1629
+ "message": "{missingItems,plural, =1{Avviso: manca 1 elemento in `.sourcesContent`}one{Avviso: mancano # elementi in `.sourcesContent`}other{Avviso: mancano # elementi in `.sourcesContent`}}"
1633
1630
  },
1634
1631
  "lighthouse-core/audits/valid-source-maps.js | title": {
1635
1632
  "message": "La pagina ha mappe di origine valide"
@@ -1806,7 +1803,7 @@
1806
1803
  "message": "Il caricamento della pagina è stato troppo lento e non è stato completato entro il limite di tempo. I risultati potrebbero essere incompleti."
1807
1804
  },
1808
1805
  "lighthouse-core/gather/driver/storage.js | warningData": {
1809
- "message": "{locationCount,plural, =1{Potrebbero esserci dei dati memorizzati che incidono sulle prestazioni di caricamento in questa posizione: {locations}. Controlla questa pagina in una finestra di navigazione in incognito per evitare che queste risorse incidano sui tuoi punteggi.}other{Potrebbero esserci dei dati memorizzati che incidono sulle prestazioni di caricamento in queste posizioni: {locations}. Controlla questa pagina in una finestra di navigazione in incognito per evitare che queste risorse incidano sui tuoi punteggi.}}"
1806
+ "message": "{locationCount,plural, =1{Potrebbero esserci dei dati memorizzati che incidono sulle prestazioni di caricamento in questa posizione: {locations}. Controlla questa pagina in una finestra di navigazione in incognito per evitare che queste risorse incidano sui tuoi punteggi.}one{Potrebbero esserci dei dati memorizzati che incidono sulle prestazioni di caricamento in queste posizioni: {locations}. Controlla questa pagina in una finestra di navigazione in incognito per evitare che queste risorse incidano sui tuoi punteggi.}other{Potrebbero esserci dei dati memorizzati che incidono sulle prestazioni di caricamento in queste posizioni: {locations}. Controlla questa pagina in una finestra di navigazione in incognito per evitare che queste risorse incidano sui tuoi punteggi.}}"
1810
1807
  },
1811
1808
  "lighthouse-core/lib/csp-evaluator.js | allowlistFallback": {
1812
1809
  "message": "Potresti aggiungere schemi URL https: e http: (ignorati dai browser che supportano \"strict-dynamic\") per la compatibilità con le versioni precedenti dei browser."
@@ -1932,7 +1929,7 @@
1932
1929
  "message": "Potenziali riduzioni di {wastedBytes, number, bytes} KiB"
1933
1930
  },
1934
1931
  "lighthouse-core/lib/i18n/i18n.js | displayValueElementsFound": {
1935
- "message": "{nodeCount,plural, =1{1 elemento trovato}other{# elementi trovati}}"
1932
+ "message": "{nodeCount,plural, =1{1 elemento trovato}one{# elementi trovati}other{# elementi trovati}}"
1936
1933
  },
1937
1934
  "lighthouse-core/lib/i18n/i18n.js | displayValueMsSavings": {
1938
1935
  "message": "Potenziali riduzioni di {wastedMs, number, milliseconds} ms"
@@ -2331,7 +2328,7 @@
2331
2328
  "message": "Vai al calcolatore."
2332
2329
  },
2333
2330
  "report/renderer/util.js | collapseView": {
2334
- "message": "Collapse view"
2331
+ "message": "Comprimi visualizzazione"
2335
2332
  },
2336
2333
  "report/renderer/util.js | crcInitialNavigation": {
2337
2334
  "message": "Navigazione iniziale"
@@ -2370,13 +2367,13 @@
2370
2367
  "message": "Errore segnalato: nessuna informazione sul controllo"
2371
2368
  },
2372
2369
  "report/renderer/util.js | expandView": {
2373
- "message": "Expand view"
2370
+ "message": "Espandi visualizzazione"
2374
2371
  },
2375
2372
  "report/renderer/util.js | footerIssue": {
2376
2373
  "message": "Segnala un problema"
2377
2374
  },
2378
2375
  "report/renderer/util.js | hide": {
2379
- "message": "Hide"
2376
+ "message": "Nascondi"
2380
2377
  },
2381
2378
  "report/renderer/util.js | labDataTitle": {
2382
2379
  "message": "Dati di prova controllati"
@@ -2400,10 +2397,10 @@
2400
2397
  "message": "Controlli superati"
2401
2398
  },
2402
2399
  "report/renderer/util.js | runtimeAnalysisWindow": {
2403
- "message": "Initial page load"
2400
+ "message": "Caricamento pagina iniziale"
2404
2401
  },
2405
2402
  "report/renderer/util.js | runtimeCustom": {
2406
- "message": "Custom throttling"
2403
+ "message": "Limitazione personalizzata"
2407
2404
  },
2408
2405
  "report/renderer/util.js | runtimeDesktopEmulation": {
2409
2406
  "message": "Desktop emulato"
@@ -2433,19 +2430,19 @@
2433
2430
  "message": "User-agent (rete)"
2434
2431
  },
2435
2432
  "report/renderer/util.js | runtimeSingleLoad": {
2436
- "message": "Single page load"
2433
+ "message": "Caricamento singola pagina"
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": "Questi dati riguardano il caricamento di una singola pagina, al contrario dei dati del campo che riepilogano tante sessioni."
2440
2437
  },
2441
2438
  "report/renderer/util.js | runtimeSlow4g": {
2442
- "message": "Slow 4G throttling"
2439
+ "message": "Limitazione a 4G lenta"
2443
2440
  },
2444
2441
  "report/renderer/util.js | runtimeUnknown": {
2445
2442
  "message": "Valore sconosciuto"
2446
2443
  },
2447
2444
  "report/renderer/util.js | show": {
2448
- "message": "Show"
2445
+ "message": "Mostra"
2449
2446
  },
2450
2447
  "report/renderer/util.js | showRelevantAudits": {
2451
2448
  "message": "Mostra controlli relativi a:"
@@ -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} 件の監査で情報が提供されました}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} 件のナビゲーション レポート}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} 件の監査にパスする可能性があります}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} 件の監査をパスしました}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} 件のスナップショット レポート}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} 件の期間レポート}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": "1 回のページ読み込み"
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": "このデータは 1 回のページ読み込みで取得されたもので、フィールド データは多数のセッションを要約したものです。"
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": "次に関連する監査を表示:"
@@ -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}}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}}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}}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}}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}}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}}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": "다음과 관련된 감사 표시:"