chrome-devtools-frontend 1.0.950971 → 1.0.952403

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 (401) hide show
  1. package/config/gni/devtools_grd_files.gni +6 -3
  2. package/extension-api/ExtensionAPI.d.ts +1 -1
  3. package/front_end/.eslintrc.js +6 -0
  4. package/front_end/Tests.js +10 -0
  5. package/front_end/core/common/App.ts +0 -3
  6. package/front_end/core/common/AppProvider.ts +0 -3
  7. package/front_end/core/common/JavaScriptMetaData.ts +0 -3
  8. package/front_end/core/common/QueryParamHandler.ts +0 -3
  9. package/front_end/core/common/Runnable.ts +0 -3
  10. package/front_end/core/common/SimpleHistoryManager.ts +0 -3
  11. package/front_end/core/host/UserMetrics.ts +2 -1
  12. package/front_end/core/i18n/locales/en-US.json +186 -183
  13. package/front_end/core/i18n/locales/en-XL.json +186 -183
  14. package/front_end/core/root/Runtime.ts +4 -12
  15. package/front_end/core/sdk/CSSRule.ts +1 -1
  16. package/front_end/core/sdk/DOMModel.ts +12 -37
  17. package/front_end/core/sdk/OverlayModel.ts +18 -34
  18. package/front_end/core/sdk/OverlayPersistentHighlighter.ts +0 -12
  19. package/front_end/core/sdk/PageResourceLoader.ts +2 -1
  20. package/front_end/core/sdk/RuntimeModel.ts +0 -1
  21. package/front_end/core/sdk/SourceMap.ts +1 -1
  22. package/front_end/core/sdk/TracingManager.ts +0 -3
  23. package/front_end/entrypoints/formatter_worker/AcornTokenizer.ts +39 -39
  24. package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +54 -54
  25. package/front_end/entrypoints/formatter_worker/ESTreeWalker.ts +20 -20
  26. package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.ts +54 -54
  27. package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +145 -144
  28. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +40 -40
  29. package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +65 -70
  30. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +203 -204
  31. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +109 -108
  32. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.ts +18 -18
  33. package/front_end/entrypoints/inspector_main/InspectorMain.ts +30 -30
  34. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +25 -25
  35. package/front_end/entrypoints/main/ExecutionContextSelector.ts +52 -55
  36. package/front_end/entrypoints/main/MainImpl.ts +49 -49
  37. package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +43 -43
  38. package/front_end/entrypoints/node_app/NodeMain.ts +38 -38
  39. package/front_end/generated/InspectorBackendCommands.js +5 -1
  40. package/front_end/generated/protocol.d.ts +16 -0
  41. package/front_end/legacy/legacy-defs.d.ts +0 -21
  42. package/front_end/models/bindings/CSSWorkspaceBinding.ts +0 -3
  43. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +1 -2
  44. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -4
  45. package/front_end/models/bindings/FileUtils.ts +0 -4
  46. package/front_end/models/bindings/IgnoreListManager.ts +1 -2
  47. package/front_end/models/bindings/NetworkProject.ts +1 -2
  48. package/front_end/models/extensions/ExtensionAPI.ts +2 -2
  49. package/front_end/models/extensions/ExtensionTraceProvider.ts +0 -3
  50. package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +1 -1
  51. package/front_end/models/issues_manager/ClientHintIssue.ts +95 -0
  52. package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +6 -6
  53. package/front_end/models/issues_manager/ContrastCheckTrigger.ts +15 -15
  54. package/front_end/models/issues_manager/CorsIssue.ts +9 -9
  55. package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +5 -5
  56. package/front_end/models/issues_manager/DeprecationIssue.ts +7 -7
  57. package/front_end/models/issues_manager/GenericIssue.ts +5 -5
  58. package/front_end/models/issues_manager/HeavyAdIssue.ts +5 -5
  59. package/front_end/models/issues_manager/Issue.ts +10 -10
  60. package/front_end/models/issues_manager/IssueResolver.ts +11 -10
  61. package/front_end/models/issues_manager/IssuesManager.ts +61 -56
  62. package/front_end/models/issues_manager/LowTextContrastIssue.ts +4 -4
  63. package/front_end/models/issues_manager/MixedContentIssue.ts +7 -7
  64. package/front_end/models/issues_manager/NavigatorUserAgentIssue.ts +7 -7
  65. package/front_end/models/issues_manager/QuirksModeIssue.ts +4 -4
  66. package/front_end/models/issues_manager/SameSiteCookieIssue.ts +17 -18
  67. package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +5 -5
  68. package/front_end/models/issues_manager/SourceFrameIssuesManager.ts +32 -31
  69. package/front_end/models/issues_manager/TrustedWebActivityIssue.ts +5 -5
  70. package/front_end/models/issues_manager/WasmCrossOriginModuleSharingIssue.ts +5 -5
  71. package/front_end/models/issues_manager/descriptions/clientHintMetaTagAllowListInvalidOrigin.md +4 -0
  72. package/front_end/models/issues_manager/descriptions/clientHintMetaTagModifiedHTML.md +4 -0
  73. package/front_end/models/issues_manager/issues_manager.ts +2 -0
  74. package/front_end/models/timeline_model/TimelineModel.ts +1 -1
  75. package/front_end/models/timeline_model/TracingLayerTree.ts +0 -1
  76. package/front_end/panels/accessibility/ARIAMetadata.ts +0 -1
  77. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +2 -2
  78. package/front_end/panels/accessibility/AccessibilityNodeView.ts +1 -2
  79. package/front_end/panels/animation/AnimationTimeline.ts +0 -1
  80. package/front_end/panels/application/ApplicationPanelCacheSection.ts +3 -4
  81. package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +0 -2
  82. package/front_end/panels/application/StorageView.ts +2 -6
  83. package/front_end/panels/application/{BackForwardCacheStrings.ts → components/BackForwardCacheStrings.ts} +2 -2
  84. package/front_end/panels/application/{BackForwardCacheView.ts → components/BackForwardCacheView.ts} +96 -62
  85. package/front_end/panels/application/components/EndpointsGrid.ts +12 -12
  86. package/front_end/panels/application/components/FrameDetailsView.ts +108 -110
  87. package/front_end/panels/application/components/OriginTrialTreeView.ts +45 -45
  88. package/front_end/panels/application/components/PermissionsPolicySection.ts +19 -19
  89. package/front_end/panels/application/components/ReportsGrid.ts +30 -30
  90. package/front_end/panels/application/components/StackTrace.ts +48 -47
  91. package/front_end/panels/application/components/TrustTokensView.ts +31 -31
  92. package/front_end/panels/application/{backForwardCacheView.css → components/backForwardCacheView.css} +9 -0
  93. package/front_end/panels/application/components/components.ts +2 -0
  94. package/front_end/panels/console/ConsoleView.ts +1 -1
  95. package/front_end/panels/console/ConsoleViewMessage.ts +1 -25
  96. package/front_end/panels/console/consoleView.css +5 -0
  97. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +41 -52
  98. package/front_end/panels/css_overview/CSSOverviewController.ts +2 -2
  99. package/front_end/panels/css_overview/CSSOverviewPanel.ts +18 -27
  100. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +2 -2
  101. package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +6 -6
  102. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +4 -4
  103. package/front_end/panels/elements/ComputedStyleModel.ts +2 -2
  104. package/front_end/panels/elements/ElementsPanel.ts +1 -5
  105. package/front_end/panels/elements/ElementsTreeElement.ts +2 -6
  106. package/front_end/panels/elements/ElementsTreeOutline.ts +2 -2
  107. package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
  108. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +17 -17
  109. package/front_end/panels/elements/components/AdornerManager.ts +21 -21
  110. package/front_end/panels/elements/components/AdornerSettingsPane.ts +14 -14
  111. package/front_end/panels/elements/components/CSSQuery.ts +16 -16
  112. package/front_end/panels/elements/components/ComputedStyleProperty.ts +14 -14
  113. package/front_end/panels/elements/components/ComputedStyleTrace.ts +15 -15
  114. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +78 -78
  115. package/front_end/panels/elements/components/ElementsPanelLink.ts +16 -16
  116. package/front_end/panels/elements/components/LayoutPane.ts +47 -47
  117. package/front_end/panels/elements/components/NodeText.ts +18 -18
  118. package/front_end/panels/elements/components/QueryContainer.ts +40 -40
  119. package/front_end/panels/elements/components/StylePropertyEditor.ts +18 -18
  120. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +4 -4
  121. package/front_end/panels/event_listeners/EventListenersUtils.ts +2 -1
  122. package/front_end/panels/issues/AffectedBlockedByResponseView.ts +4 -4
  123. package/front_end/panels/issues/AffectedCookiesView.ts +4 -5
  124. package/front_end/panels/issues/AffectedDirectivesView.ts +19 -19
  125. package/front_end/panels/issues/AffectedDocumentsInQuirksModeView.ts +7 -8
  126. package/front_end/panels/issues/AffectedElementsView.ts +4 -4
  127. package/front_end/panels/issues/AffectedElementsWithLowContrastView.ts +7 -8
  128. package/front_end/panels/issues/AffectedHeavyAdView.ts +8 -8
  129. package/front_end/panels/issues/AffectedResourcesView.ts +25 -26
  130. package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +8 -8
  131. package/front_end/panels/issues/AffectedSourcesView.ts +4 -4
  132. package/front_end/panels/issues/AffectedTrustedWebActivityIssueDetailsView.ts +4 -4
  133. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +17 -17
  134. package/front_end/panels/issues/CSPViolationsListView.ts +22 -23
  135. package/front_end/panels/issues/CSPViolationsView.ts +17 -17
  136. package/front_end/panels/issues/ComboBoxOfCheckBoxes.ts +13 -13
  137. package/front_end/panels/issues/CorsIssueDetailsView.ts +23 -23
  138. package/front_end/panels/issues/GenericIssueDetailsView.ts +4 -4
  139. package/front_end/panels/issues/HiddenIssuesRow.ts +7 -7
  140. package/front_end/panels/issues/IssueAggregator.ts +95 -95
  141. package/front_end/panels/issues/IssueKindView.ts +14 -14
  142. package/front_end/panels/issues/IssueView.ts +98 -98
  143. package/front_end/panels/issues/IssuesPane.ts +102 -102
  144. package/front_end/panels/issues/WasmCrossOriginModuleSharingAffectedResourcesView.ts +5 -5
  145. package/front_end/panels/issues/components/HideIssuesMenu.ts +10 -10
  146. package/front_end/panels/layer_viewer/Layers3DView.ts +3 -9
  147. package/front_end/panels/lighthouse/LighthouseController.ts +4 -5
  148. package/front_end/panels/media/PlayerListView.ts +160 -97
  149. package/front_end/panels/media/PlayerMessagesView.ts +1 -0
  150. package/front_end/panels/media/TickingFlameChart.ts +1 -2
  151. package/front_end/panels/media/playerListView.css +58 -0
  152. package/front_end/panels/network/NetworkLogView.ts +2 -6
  153. package/front_end/panels/network/NetworkLogViewColumns.ts +1 -1
  154. package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -4
  155. package/front_end/panels/network/components/RequestTrustTokensView.ts +40 -40
  156. package/front_end/panels/network/components/WebBundleInfoView.ts +9 -9
  157. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +92 -37
  158. package/front_end/panels/performance_monitor/performanceMonitor.css +32 -0
  159. package/front_end/panels/profiler/HeapProfileView.ts +1 -1
  160. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +0 -1
  161. package/front_end/panels/profiler/HeapSnapshotView.ts +1 -2
  162. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +2 -2
  163. package/front_end/panels/search/SearchConfig.ts +0 -6
  164. package/front_end/panels/security/SecurityModel.ts +2 -4
  165. package/front_end/panels/security/SecurityPanel.ts +2 -2
  166. package/front_end/panels/settings/KeybindsSettingsTab.ts +4 -0
  167. package/front_end/panels/settings/components/SyncSection.ts +14 -14
  168. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +96 -96
  169. package/front_end/panels/sources/BreakpointEditDialog.ts +4 -3
  170. package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +2 -2
  171. package/front_end/panels/sources/NavigatorView.ts +4 -10
  172. package/front_end/panels/sources/ScopeChainSidebarPane.ts +2 -3
  173. package/front_end/panels/sources/SourceMapNamesResolver.ts +3 -3
  174. package/front_end/panels/sources/SourcesPanel.ts +1 -3
  175. package/front_end/panels/sources/SourcesView.ts +0 -3
  176. package/front_end/panels/sources/TabbedEditorContainer.ts +1 -4
  177. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +2 -5
  178. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +0 -1
  179. package/front_end/panels/timeline/TimelineFlameChartView.ts +1 -2
  180. package/front_end/panels/timeline/TimelineLoader.ts +0 -3
  181. package/front_end/panels/timeline/TimelinePanel.ts +2 -3
  182. package/front_end/panels/timeline/TimelineTreeView.ts +1 -1
  183. package/front_end/panels/timeline/TimelineUIUtils.ts +1 -1
  184. package/front_end/panels/timeline/components/WebVitalsLane.ts +77 -76
  185. package/front_end/panels/timeline/components/WebVitalsTimeline.ts +133 -133
  186. package/front_end/panels/timeline/components/WebVitalsTooltip.ts +9 -9
  187. package/front_end/panels/webauthn/WebauthnPane.ts +203 -205
  188. package/front_end/third_party/codemirror.next/bundle.ts +3 -3
  189. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  190. package/front_end/third_party/codemirror.next/chunk/markdown.js +2 -1
  191. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +10 -1
  192. package/front_end/third_party/codemirror.next/codemirror.next.js +2 -1
  193. package/front_end/third_party/codemirror.next/package.json +3 -3
  194. package/front_end/third_party/diff/DiffWrapper.ts +7 -0
  195. package/front_end/third_party/puppeteer/package/README.md +11 -11
  196. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api-docs-entry.d.ts +4 -5
  197. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js +2 -2
  198. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js.map +1 -1
  199. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.d.ts +4 -6
  200. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.d.ts +1 -2
  201. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Connection.d.ts +1 -4
  202. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Coverage.d.ts +1 -4
  203. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.d.ts +9 -7
  204. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.d.ts.map +1 -1
  205. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.js +21 -12
  206. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.js.map +1 -1
  207. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Dialog.d.ts +1 -3
  208. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EvalTypes.d.ts +1 -2
  209. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ExecutionContext.d.ts +3 -5
  210. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.d.ts +1 -3
  211. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.d.ts +8 -10
  212. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js +3 -3
  213. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js.map +1 -1
  214. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts +50 -11
  215. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts.map +1 -1
  216. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js +70 -33
  217. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js.map +1 -1
  218. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts +12 -5
  219. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts.map +1 -1
  220. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js +25 -5
  221. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js.map +1 -1
  222. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.d.ts +2 -4
  223. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.d.ts +39 -6
  224. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.d.ts.map +1 -1
  225. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.js +36 -0
  226. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.js.map +1 -1
  227. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.d.ts +3 -4
  228. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.d.ts.map +1 -1
  229. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.js +2 -1
  230. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.js.map +1 -1
  231. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.d.ts +46 -0
  232. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.d.ts.map +1 -0
  233. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.js +124 -0
  234. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.js.map +1 -0
  235. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.d.ts +27 -10
  236. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.d.ts.map +1 -1
  237. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.js +144 -74
  238. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.js.map +1 -1
  239. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Puppeteer.d.ts +5 -6
  240. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.d.ts +1 -2
  241. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.d.ts +4 -6
  242. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WebWorker.d.ts +3 -5
  243. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.d.ts +4 -5
  244. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.d.ts.map +1 -1
  245. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.js +43 -17
  246. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.js.map +1 -1
  247. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts +1 -1
  248. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.d.ts +1 -3
  249. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.d.ts.map +1 -1
  250. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js +101 -34
  251. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js.map +1 -1
  252. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.d.ts +1 -3
  253. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts +1 -2
  254. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Puppeteer.d.ts +5 -7
  255. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +1 -1
  256. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts +4 -5
  257. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js +2 -2
  258. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js.map +1 -1
  259. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts +4 -6
  260. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.js +2 -3
  261. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts +1 -2
  262. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js +3 -5
  263. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts +1 -4
  264. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts +1 -4
  265. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.js +1 -2
  266. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts +9 -7
  267. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts.map +1 -1
  268. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js +24 -17
  269. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js.map +1 -1
  270. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts +1 -3
  271. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts +1 -2
  272. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts +3 -5
  273. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts +1 -3
  274. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts +8 -10
  275. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js +7 -8
  276. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js.map +1 -1
  277. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts +50 -11
  278. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts.map +1 -1
  279. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js +70 -34
  280. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js.map +1 -1
  281. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts +12 -5
  282. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts.map +1 -1
  283. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js +26 -7
  284. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js.map +1 -1
  285. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts +2 -4
  286. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts +39 -6
  287. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts.map +1 -1
  288. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js +38 -4
  289. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js.map +1 -1
  290. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts +3 -4
  291. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts.map +1 -1
  292. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.js +4 -4
  293. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.js.map +1 -1
  294. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.d.ts +46 -0
  295. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.d.ts.map +1 -0
  296. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.js +120 -0
  297. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.js.map +1 -0
  298. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts +27 -10
  299. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts.map +1 -1
  300. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js +144 -75
  301. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js.map +1 -1
  302. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js +12 -14
  303. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts +5 -6
  304. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.js +3 -4
  305. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts +1 -2
  306. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts +4 -6
  307. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts +3 -5
  308. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.js +1 -2
  309. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js +3 -5
  310. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js +1 -3
  311. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js +10 -12
  312. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts +4 -5
  313. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts.map +1 -1
  314. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js +43 -20
  315. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js.map +1 -1
  316. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +1 -1
  317. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts +1 -3
  318. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts.map +1 -1
  319. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js +104 -40
  320. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js.map +1 -1
  321. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts +1 -3
  322. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +1 -2
  323. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js +1 -2
  324. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts +5 -7
  325. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.js +1 -3
  326. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js +3 -5
  327. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.js +1 -2
  328. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node.js +1 -2
  329. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +1 -1
  330. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/web.js +1 -2
  331. package/front_end/third_party/puppeteer/package/lib/types.d.ts +173 -36
  332. package/front_end/third_party/puppeteer/package/package.json +3 -3
  333. package/front_end/ui/components/adorners/Adorner.ts +2 -2
  334. package/front_end/ui/components/buttons/Button.ts +9 -9
  335. package/front_end/ui/components/data_grid/DataGrid.ts +64 -64
  336. package/front_end/ui/components/data_grid/DataGridController.ts +22 -22
  337. package/front_end/ui/components/data_grid/DataGridUtils.ts +3 -0
  338. package/front_end/ui/components/diff_view/DiffView.ts +6 -6
  339. package/front_end/ui/components/expandable_list/ExpandableList.ts +5 -5
  340. package/front_end/ui/components/icon_button/Icon.ts +4 -4
  341. package/front_end/ui/components/icon_button/IconButton.ts +4 -4
  342. package/front_end/ui/components/issue_counter/IssueCounter.ts +3 -3
  343. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +11 -11
  344. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspector.ts +50 -50
  345. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorController.ts +6 -6
  346. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorPane.ts +4 -4
  347. package/front_end/ui/components/linear_memory_inspector/LinearMemoryNavigator.ts +12 -12
  348. package/front_end/ui/components/linear_memory_inspector/LinearMemoryValueInterpreter.ts +11 -11
  349. package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +40 -39
  350. package/front_end/ui/components/linear_memory_inspector/ValueInterpreterDisplay.ts +18 -18
  351. package/front_end/ui/components/linear_memory_inspector/ValueInterpreterSettings.ts +6 -6
  352. package/front_end/ui/components/linkifier/LinkifierImpl.ts +4 -4
  353. package/front_end/ui/components/markdown_view/MarkdownImage.ts +5 -5
  354. package/front_end/ui/components/markdown_view/MarkdownLink.ts +2 -2
  355. package/front_end/ui/components/markdown_view/MarkdownView.ts +4 -5
  356. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +2 -2
  357. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +2 -2
  358. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +4 -4
  359. package/front_end/ui/components/render_coordinator/RenderCoordinator.ts +22 -22
  360. package/front_end/ui/components/report_view/ReportView.ts +16 -16
  361. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +14 -14
  362. package/front_end/ui/components/settings/SettingCheckbox.ts +5 -5
  363. package/front_end/ui/components/survey_link/SurveyLink.ts +8 -8
  364. package/front_end/ui/components/text_editor/TextEditor.ts +9 -9
  365. package/front_end/ui/components/text_editor/cursor_tooltip.ts +7 -1
  366. package/front_end/ui/components/text_prompt/TextPrompt.ts +18 -18
  367. package/front_end/ui/components/tree_outline/TreeOutline.ts +69 -70
  368. package/front_end/ui/legacy/ContextFlavorListener.ts +0 -4
  369. package/front_end/ui/legacy/ContextMenu.ts +2 -3
  370. package/front_end/ui/legacy/InspectorView.ts +1 -1
  371. package/front_end/ui/legacy/ReportView.ts +3 -4
  372. package/front_end/ui/legacy/SearchableView.ts +14 -6
  373. package/front_end/ui/legacy/SplitWidget.ts +2 -3
  374. package/front_end/ui/legacy/SuggestBox.ts +0 -3
  375. package/front_end/ui/legacy/TextPrompt.ts +1 -1
  376. package/front_end/ui/legacy/UIUtils.ts +1 -1
  377. package/front_end/ui/legacy/XLink.ts +1 -1
  378. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +2 -2
  379. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +9 -9
  380. package/front_end/ui/legacy/components/data_grid/dataGrid.css +7 -7
  381. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +1 -1
  382. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +1 -5
  383. package/front_end/ui/legacy/components/source_frame/JSONView.ts +1 -1
  384. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +13 -13
  385. package/front_end/ui/legacy/components/source_frame/XMLView.ts +2 -2
  386. package/front_end/ui/legacy/components/utils/Linkifier.ts +2 -2
  387. package/front_end/ui/legacy/themeColors.css +2 -0
  388. package/front_end/ui/legacy/theme_support/theme_support_impl.ts +42 -4
  389. package/package.json +1 -1
  390. package/scripts/eslint_rules/lib/use_private_class_members.js +41 -0
  391. package/scripts/eslint_rules/tests/use_private_class_members_test.js +62 -0
  392. package/scripts/migration/class-fields/migrate.js +2 -3
  393. package/scripts/migration/class-fields/migrate.sh +1 -3
  394. package/scripts/migration/class-fields/package.json +1 -1
  395. package/config/gni/all_devtools_files.gni +0 -255
  396. package/scripts/build/devtools_file_hashes.py +0 -82
  397. package/scripts/devtools_run/devtools_run_cli +0 -49
  398. package/scripts/devtools_run/package.json +0 -13
  399. package/scripts/unzip.py +0 -20
  400. package/scripts/visualize_deps/jquery_svg.html +0 -57
  401. package/scripts/visualize_deps/run_visualize.js +0 -119
@@ -1322,6 +1322,9 @@
1322
1322
  "models/har/Writer.ts | writingFile": {
1323
1323
  "message": "Ŵŕît́îńĝ f́îĺê…"
1324
1324
  },
1325
+ "models/issues_manager/ClientHintIssue.ts | clientHintsInfrastructure": {
1326
+ "message": "Ĉĺîén̂t́ Ĥín̂t́ŝ Ín̂f́r̂áŝt́r̂úĉt́ûŕê"
1327
+ },
1325
1328
  "models/issues_manager/ContentSecurityPolicyIssue.ts | contentSecurityPolicyEval": {
1326
1329
  "message": "Ĉón̂t́êńt̂ Śêćûŕît́ŷ Ṕôĺîćŷ - Év̂ál̂"
1327
1330
  },
@@ -2363,411 +2366,411 @@
2363
2366
  "panels/application/AppManifestView.ts | theSpecifiedApplicationPlatform": {
2364
2367
  "message": "T̂h́ê śp̂éĉíf̂íêd́ âṕp̂ĺîćât́îón̂ ṕl̂át̂f́ôŕm̂ íŝ ńôt́ ŝúp̂ṕôŕt̂éd̂ ón̂ Android"
2365
2368
  },
2366
- "panels/application/BackForwardCacheStrings.ts | appBanner": {
2369
+ "panels/application/BackgroundServiceView.ts | backgroundFetch": {
2370
+ "message": "B̂áĉḱĝŕôún̂d́ F̂ét̂ćĥ"
2371
+ },
2372
+ "panels/application/BackgroundServiceView.ts | backgroundServices": {
2373
+ "message": "B̂áĉḱĝŕôún̂d́ Ŝér̂v́îćêś"
2374
+ },
2375
+ "panels/application/BackgroundServiceView.ts | backgroundSync": {
2376
+ "message": "B̂áĉḱĝŕôún̂d́ Ŝýn̂ć"
2377
+ },
2378
+ "panels/application/BackgroundServiceView.ts | clear": {
2379
+ "message": "Ĉĺêár̂"
2380
+ },
2381
+ "panels/application/BackgroundServiceView.ts | clickTheRecordButtonSOrHitSTo": {
2382
+ "message": "Ĉĺîćk̂ t́ĥé r̂éĉór̂d́ b̂út̂t́ôń {PH1} ôŕ ĥít̂ {PH2} t́ô śt̂ár̂t́ r̂éĉór̂d́îńĝ."
2383
+ },
2384
+ "panels/application/BackgroundServiceView.ts | devtoolsWillRecordAllSActivity": {
2385
+ "message": "D̂év̂T́ôól̂ś ŵíl̂ĺ r̂éĉór̂d́ âĺl̂ {PH1} áĉt́îv́ît́ŷ f́ôŕ ûṕ t̂ó 3 d̂áŷś, êv́êń ŵh́êń ĉĺôśêd́."
2386
+ },
2387
+ "panels/application/BackgroundServiceView.ts | empty": {
2388
+ "message": "êḿp̂t́ŷ"
2389
+ },
2390
+ "panels/application/BackgroundServiceView.ts | event": {
2391
+ "message": "Êv́êńt̂"
2392
+ },
2393
+ "panels/application/BackgroundServiceView.ts | instanceId": {
2394
+ "message": "Îńŝt́âńĉé ÎD́"
2395
+ },
2396
+ "panels/application/BackgroundServiceView.ts | learnMore": {
2397
+ "message": "L̂éâŕn̂ ḿôŕê"
2398
+ },
2399
+ "panels/application/BackgroundServiceView.ts | noMetadataForThisEvent": {
2400
+ "message": "N̂ó m̂ét̂ád̂át̂á f̂ór̂ t́ĥíŝ év̂én̂t́"
2401
+ },
2402
+ "panels/application/BackgroundServiceView.ts | notifications": {
2403
+ "message": "N̂ót̂íf̂íĉát̂íôńŝ"
2404
+ },
2405
+ "panels/application/BackgroundServiceView.ts | origin": {
2406
+ "message": "Ôŕîǵîń"
2407
+ },
2408
+ "panels/application/BackgroundServiceView.ts | paymentHandler": {
2409
+ "message": "P̂áŷḿêńt̂ H́âńd̂ĺêŕ"
2410
+ },
2411
+ "panels/application/BackgroundServiceView.ts | periodicBackgroundSync": {
2412
+ "message": "P̂ér̂íôd́îć B̂áĉḱĝŕôún̂d́ Ŝýn̂ć"
2413
+ },
2414
+ "panels/application/BackgroundServiceView.ts | pushMessaging": {
2415
+ "message": "P̂úŝh́ M̂éŝśâǵîńĝ"
2416
+ },
2417
+ "panels/application/BackgroundServiceView.ts | recordingSActivity": {
2418
+ "message": "R̂éĉór̂d́îńĝ {PH1} áĉt́îv́ît́ŷ..."
2419
+ },
2420
+ "panels/application/BackgroundServiceView.ts | saveEvents": {
2421
+ "message": "Ŝáv̂é êv́êńt̂ś"
2422
+ },
2423
+ "panels/application/BackgroundServiceView.ts | selectAnEntryToViewMetadata": {
2424
+ "message": "Ŝél̂éĉt́ âń êńt̂ŕŷ t́ô v́îéŵ ḿêt́âd́ât́â"
2425
+ },
2426
+ "panels/application/BackgroundServiceView.ts | showEventsFromOtherDomains": {
2427
+ "message": "Ŝh́ôẃ êv́êńt̂ś f̂ŕôḿ ôt́ĥér̂ d́ôḿâín̂ś"
2428
+ },
2429
+ "panels/application/BackgroundServiceView.ts | startRecordingEvents": {
2430
+ "message": "Ŝt́âŕt̂ ŕêćôŕd̂ín̂ǵ êv́êńt̂ś"
2431
+ },
2432
+ "panels/application/BackgroundServiceView.ts | stopRecordingEvents": {
2433
+ "message": "Ŝt́ôṕ r̂éĉór̂d́îńĝ év̂én̂t́ŝ"
2434
+ },
2435
+ "panels/application/BackgroundServiceView.ts | swScope": {
2436
+ "message": "Ŝér̂v́îćê Ẃôŕk̂ér̂ Śĉóp̂é"
2437
+ },
2438
+ "panels/application/BackgroundServiceView.ts | timestamp": {
2439
+ "message": "T̂ím̂éŝt́âḿp̂"
2440
+ },
2441
+ "panels/application/components/BackForwardCacheStrings.ts | appBanner": {
2367
2442
  "message": "P̂áĝéŝ t́ĥát̂ ŕêq́ûéŝt́êd́ âń Âṕp̂B́âńn̂ér̂ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2368
2443
  },
2369
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabled": {
2444
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabled": {
2370
2445
  "message": "B̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé îś d̂íŝáb̂ĺêd́ b̂ý f̂ĺâǵŝ. V́îśît́ ĉh́r̂óm̂é://f̂ĺâǵŝ/#b́âćk̂-f́ôŕŵár̂d́-ĉáĉh́ê t́ô én̂áb̂ĺê ít̂ ĺôćâĺl̂ý ôń t̂h́îś d̂év̂íĉé."
2371
2446
  },
2372
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledByCommandLine": {
2447
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabledByCommandLine": {
2373
2448
  "message": "B̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé îś d̂íŝáb̂ĺêd́ b̂ý t̂h́ê ćôḿm̂án̂d́ l̂ín̂é."
2374
2449
  },
2375
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledByLowMemory": {
2450
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabledByLowMemory": {
2376
2451
  "message": "B̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé îś d̂íŝáb̂ĺêd́ d̂úê t́ô ín̂śûf́f̂íĉíêńt̂ ḿêḿôŕŷ."
2377
2452
  },
2378
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledForDelegate": {
2453
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabledForDelegate": {
2379
2454
  "message": "B̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé îś n̂ót̂ śûṕp̂ór̂t́êd́ b̂ý d̂él̂éĝát̂é."
2380
2455
  },
2381
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledForPrerender": {
2456
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabledForPrerender": {
2382
2457
  "message": "B̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé îś d̂íŝáb̂ĺêd́ f̂ór̂ ṕr̂ér̂én̂d́êŕêŕ."
2383
2458
  },
2384
- "panels/application/BackForwardCacheStrings.ts | broadcastChannel": {
2459
+ "panels/application/components/BackForwardCacheStrings.ts | broadcastChannel": {
2385
2460
  "message": "T̂h́ê ṕâǵê ćâńn̂ót̂ b́ê ćâćĥéd̂ b́êćâúŝé ît́ ĥáŝ á B̂ŕôád̂ćâśt̂Ćĥán̂ńêĺ îńŝt́âńĉé ŵít̂h́ r̂éĝíŝt́êŕêd́ l̂íŝt́êńêŕŝ."
2386
2461
  },
2387
- "panels/application/BackForwardCacheStrings.ts | cacheControlNoStore": {
2462
+ "panels/application/components/BackForwardCacheStrings.ts | cacheControlNoStore": {
2388
2463
  "message": "P̂áĝéŝ ẃît́ĥ ćâćĥé-ĉón̂t́r̂ól̂:ńô-śt̂ór̂é ĥéâd́êŕ ĉán̂ńôt́ êńt̂ér̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2389
2464
  },
2390
- "panels/application/BackForwardCacheStrings.ts | cacheFlushed": {
2465
+ "panels/application/components/BackForwardCacheStrings.ts | cacheFlushed": {
2391
2466
  "message": "T̂h́ê ćâćĥé ŵáŝ ín̂t́êńt̂íôńâĺl̂ý ĉĺêár̂éd̂."
2392
2467
  },
2393
- "panels/application/BackForwardCacheStrings.ts | cacheLimit": {
2468
+ "panels/application/components/BackForwardCacheStrings.ts | cacheLimit": {
2394
2469
  "message": "T̂h́ê ṕâǵê ẃâś êv́îćt̂éd̂ f́r̂óm̂ t́ĥé ĉáĉh́ê t́ô ál̂ĺôẃ âńôt́ĥér̂ ṕâǵê t́ô b́ê ćâćĥéd̂."
2395
2470
  },
2396
- "panels/application/BackForwardCacheStrings.ts | containsPlugins": {
2471
+ "panels/application/components/BackForwardCacheStrings.ts | containsPlugins": {
2397
2472
  "message": "P̂áĝéŝ ćôńt̂áîńîńĝ ṕl̂úĝín̂ś âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2398
2473
  },
2399
- "panels/application/BackForwardCacheStrings.ts | contentFileChooser": {
2474
+ "panels/application/components/BackForwardCacheStrings.ts | contentFileChooser": {
2400
2475
  "message": "P̂áĝéŝ t́ĥát̂ úŝé F̂íl̂éĈh́ôóŝér̂ ÁP̂Í âŕê ńôt́ êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2401
2476
  },
2402
- "panels/application/BackForwardCacheStrings.ts | contentFileSystemAccess": {
2477
+ "panels/application/components/BackForwardCacheStrings.ts | contentFileSystemAccess": {
2403
2478
  "message": "P̂áĝéŝ t́ĥát̂ úŝé F̂íl̂é Ŝýŝt́êḿ Âćĉéŝś ÂṔÎ ár̂é n̂ót̂ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2404
2479
  },
2405
- "panels/application/BackForwardCacheStrings.ts | contentMediaDevicesDispatcherHost": {
2480
+ "panels/application/components/BackForwardCacheStrings.ts | contentMediaDevicesDispatcherHost": {
2406
2481
  "message": "P̂áĝéŝ t́ĥát̂ úŝé M̂éd̂íâ D́êv́îćê D́îśp̂át̂ćĥér̂ ár̂é n̂ót̂ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2407
2482
  },
2408
- "panels/application/BackForwardCacheStrings.ts | contentMediaPlay": {
2483
+ "panels/application/components/BackForwardCacheStrings.ts | contentMediaPlay": {
2409
2484
  "message": "Â ḿêd́îá p̂ĺâýêŕ ŵáŝ ṕl̂áŷín̂ǵ ûṕôń n̂áv̂íĝát̂ín̂ǵ âẃâý."
2410
2485
  },
2411
- "panels/application/BackForwardCacheStrings.ts | contentMediaSession": {
2486
+ "panels/application/components/BackForwardCacheStrings.ts | contentMediaSession": {
2412
2487
  "message": "P̂áĝéŝ t́ĥát̂ úŝé M̂éd̂íâŚêśŝíôń ÂṔÎ án̂d́ ŝét̂ á p̂ĺâýb̂áĉḱ ŝt́ât́ê ár̂é n̂ót̂ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2413
2488
  },
2414
- "panels/application/BackForwardCacheStrings.ts | contentMediaSessionService": {
2489
+ "panels/application/components/BackForwardCacheStrings.ts | contentMediaSessionService": {
2415
2490
  "message": "P̂áĝéŝ t́ĥát̂ úŝé M̂éd̂íâŚêśŝíôń ÂṔÎ án̂d́ ŝét̂ áĉt́îón̂ h́âńd̂ĺêŕŝ ár̂é n̂ót̂ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2416
2491
  },
2417
- "panels/application/BackForwardCacheStrings.ts | contentSecurityHandler": {
2492
+ "panels/application/components/BackForwardCacheStrings.ts | contentSecurityHandler": {
2418
2493
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŝéĉúr̂ít̂ýĤán̂d́l̂ér̂ ár̂é n̂ót̂ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2419
2494
  },
2420
- "panels/application/BackForwardCacheStrings.ts | contentSerial": {
2495
+ "panels/application/components/BackForwardCacheStrings.ts | contentSerial": {
2421
2496
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŝér̂íâĺ ÂṔÎ ár̂é n̂ót̂ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2422
2497
  },
2423
- "panels/application/BackForwardCacheStrings.ts | contentWebAuthenticationAPI": {
2498
+ "panels/application/components/BackForwardCacheStrings.ts | contentWebAuthenticationAPI": {
2424
2499
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂Áût́ĥét̂íĉát̂íôń ÂṔÎ ár̂é n̂ót̂ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2425
2500
  },
2426
- "panels/application/BackForwardCacheStrings.ts | contentWebBluetooth": {
2501
+ "panels/application/components/BackForwardCacheStrings.ts | contentWebBluetooth": {
2427
2502
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂B́l̂úêt́ôót̂h́ ÂṔÎ ár̂é n̂ót̂ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2428
2503
  },
2429
- "panels/application/BackForwardCacheStrings.ts | contentWebUSB": {
2504
+ "panels/application/components/BackForwardCacheStrings.ts | contentWebUSB": {
2430
2505
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂ÚŜB́ ÂṔÎ ár̂é n̂ót̂ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2431
2506
  },
2432
- "panels/application/BackForwardCacheStrings.ts | dedicatedWorkerOrWorklet": {
2507
+ "panels/application/components/BackForwardCacheStrings.ts | dedicatedWorkerOrWorklet": {
2433
2508
  "message": "P̂áĝéŝ t́ĥát̂ úŝé â d́êd́îćât́êd́ ŵór̂ḱêŕ ôŕ ŵór̂ḱl̂ét̂ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2434
2509
  },
2435
- "panels/application/BackForwardCacheStrings.ts | documentLoaded": {
2510
+ "panels/application/components/BackForwardCacheStrings.ts | documentLoaded": {
2436
2511
  "message": "T̂h́ê d́ôćûḿêńt̂ d́îd́ n̂ót̂ f́îńîśĥ ĺôád̂ín̂ǵ b̂éf̂ór̂é n̂áv̂íĝát̂ín̂ǵ âẃâý."
2437
2512
  },
2438
- "panels/application/BackForwardCacheStrings.ts | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
2513
+ "panels/application/components/BackForwardCacheStrings.ts | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
2439
2514
  "message": "Â śêŕv̂íĉé ŵór̂ḱêŕ ŵáŝ áĉt́îv́ât́êd́ ŵh́îĺê t́ĥé p̂áĝé ŵáŝ ín̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2440
2515
  },
2441
- "panels/application/BackForwardCacheStrings.ts | foregroundCacheLimit": {
2516
+ "panels/application/components/BackForwardCacheStrings.ts | foregroundCacheLimit": {
2442
2517
  "message": "T̂h́ê ṕâǵê ẃâś êv́îćt̂éd̂ f́r̂óm̂ t́ĥé ĉáĉh́ê t́ô ál̂ĺôẃ âńôt́ĥér̂ ṕâǵê t́ô b́ê ćâćĥéd̂."
2443
2518
  },
2444
- "panels/application/BackForwardCacheStrings.ts | grantedMediaStreamAccess": {
2519
+ "panels/application/components/BackForwardCacheStrings.ts | grantedMediaStreamAccess": {
2445
2520
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ǵr̂án̂t́êd́ m̂éd̂íâ śt̂ŕêám̂ áĉćêśŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2446
2521
  },
2447
- "panels/application/BackForwardCacheStrings.ts | haveInnerContents": {
2522
+ "panels/application/components/BackForwardCacheStrings.ts | haveInnerContents": {
2448
2523
  "message": "P̂áĝéŝ t́ĥát̂ úŝé p̂ór̂t́âĺŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2449
2524
  },
2450
- "panels/application/BackForwardCacheStrings.ts | HTTPMethodNotGET": {
2525
+ "panels/application/components/BackForwardCacheStrings.ts | HTTPMethodNotGET": {
2451
2526
  "message": "Ôńl̂ý p̂áĝéŝ ĺôád̂éd̂ v́îá â ǴÊT́ r̂éq̂úêśt̂ ár̂é êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2452
2527
  },
2453
- "panels/application/BackForwardCacheStrings.ts | HTTPStatusNotOK": {
2528
+ "panels/application/components/BackForwardCacheStrings.ts | HTTPStatusNotOK": {
2454
2529
  "message": "Ôńl̂ý p̂áĝéŝ ẃît́ĥ á ŝt́ât́ûś ĉód̂é ôf́ 2X̂X́ ĉán̂ b́ê ćâćĥéd̂."
2455
2530
  },
2456
- "panels/application/BackForwardCacheStrings.ts | idleManager": {
2531
+ "panels/application/components/BackForwardCacheStrings.ts | idleManager": {
2457
2532
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Îd́l̂éM̂án̂áĝér̂ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2458
2533
  },
2459
- "panels/application/BackForwardCacheStrings.ts | indexedDBConnection": {
2534
+ "panels/application/components/BackForwardCacheStrings.ts | indexedDBConnection": {
2460
2535
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê án̂ óp̂én̂ Ín̂d́êx́êd́D̂B́ ĉón̂ńêćt̂íôń âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2461
2536
  },
2462
- "panels/application/BackForwardCacheStrings.ts | ineligibleAPI": {
2537
+ "panels/application/components/BackForwardCacheStrings.ts | ineligibleAPI": {
2463
2538
  "message": "Îńêĺîǵîb́l̂é ÂṔÎś ŵér̂é ûśêd́."
2464
2539
  },
2465
- "panels/application/BackForwardCacheStrings.ts | injectedJavascript": {
2540
+ "panels/application/components/BackForwardCacheStrings.ts | injectedJavascript": {
2466
2541
  "message": "ÎṔâǵêś t̂h́ât́ Ĵáv̂áŜćr̂íp̂t́ îś îńĵéĉt́êd́ îńt̂ó b̂ý êx́t̂én̂śîón̂ś âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2467
2542
  },
2468
- "panels/application/BackForwardCacheStrings.ts | injectedStyleSheet": {
2543
+ "panels/application/components/BackForwardCacheStrings.ts | injectedStyleSheet": {
2469
2544
  "message": "P̂áĝéŝ t́ĥát̂ Śt̂ýl̂éŜh́êét̂ íŝ ín̂j́êćt̂éd̂ ín̂t́ô b́ŷ éx̂t́êńŝíôńŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2470
2545
  },
2471
- "panels/application/BackForwardCacheStrings.ts | internalError": {
2546
+ "panels/application/components/BackForwardCacheStrings.ts | internalError": {
2472
2547
  "message": "Îńt̂ér̂ńâĺ êŕr̂ór̂."
2473
2548
  },
2474
- "panels/application/BackForwardCacheStrings.ts | JavaScriptExecution": {
2549
+ "panels/application/components/BackForwardCacheStrings.ts | JavaScriptExecution": {
2475
2550
  "message": "Ĉh́r̂óm̂é d̂ét̂éĉt́êd́ âń ât́t̂ém̂ṕt̂ t́ô éx̂éĉút̂é Ĵáv̂áŜćr̂íp̂t́ ŵh́îĺê ín̂ t́ĥé ĉáĉh́ê."
2476
2551
  },
2477
- "panels/application/BackForwardCacheStrings.ts | keyboardLock": {
2552
+ "panels/application/components/BackForwardCacheStrings.ts | keyboardLock": {
2478
2553
  "message": "P̂áĝéŝ t́ĥát̂ úŝé K̂éŷb́ôár̂d́ l̂óĉḱ âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2479
2554
  },
2480
- "panels/application/BackForwardCacheStrings.ts | loading": {
2555
+ "panels/application/components/BackForwardCacheStrings.ts | loading": {
2481
2556
  "message": "T̂h́ê ṕâǵê d́îd́ n̂ót̂ f́îńîśĥ ĺôád̂ín̂ǵ b̂éf̂ór̂é n̂áv̂íĝát̂ín̂ǵ âẃâý."
2482
2557
  },
2483
- "panels/application/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoCache": {
2558
+ "panels/application/components/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoCache": {
2484
2559
  "message": "P̂áĝéŝ ẃĥóŝé m̂áîń r̂éŝóûŕĉé ĥáŝ ćâćĥé-ĉón̂t́r̂ól̂:ńô-ćâćĥé ĉán̂ńôt́ êńt̂ér̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2485
2560
  },
2486
- "panels/application/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoStore": {
2561
+ "panels/application/components/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoStore": {
2487
2562
  "message": "P̂áĝéŝ ẃĥóŝé m̂áîń r̂éŝóûŕĉé ĥáŝ ćâćĥé-ĉón̂t́r̂ól̂:ńô-śt̂ór̂é ĉán̂ńôt́ êńt̂ér̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2488
2563
  },
2489
- "panels/application/BackForwardCacheStrings.ts | navigationCancelledWhileRestoring": {
2564
+ "panels/application/components/BackForwardCacheStrings.ts | navigationCancelledWhileRestoring": {
2490
2565
  "message": "N̂áv̂íĝát̂íôń ŵáŝ ćâńĉél̂ĺêd́ b̂éf̂ór̂é t̂h́ê ṕâǵê ćôúl̂d́ b̂é r̂éŝt́ôŕêd́ f̂ŕôḿ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2491
2566
  },
2492
- "panels/application/BackForwardCacheStrings.ts | networkExceedsBufferLimit": {
2567
+ "panels/application/components/BackForwardCacheStrings.ts | networkExceedsBufferLimit": {
2493
2568
  "message": "T̂h́ê ṕâǵê ẃâś êv́îćt̂éd̂ f́r̂óm̂ t́ĥé ĉáĉh́ê b́êćâúŝé âń âćt̂ív̂é n̂ét̂ẃôŕk̂ ćôńn̂éĉt́îón̂ ŕêćêív̂éd̂ t́ôó m̂úĉh́ d̂át̂á. Ĉh́r̂óm̂é l̂ím̂ít̂ś t̂h́ê ám̂óûńt̂ óf̂ d́ât́â t́ĥát̂ á p̂áĝé m̂áŷ ŕêćêív̂é ŵh́îĺê ćâćĥéd̂."
2494
2569
  },
2495
- "panels/application/BackForwardCacheStrings.ts | networkRequestDatapipeDrainedAsBytesConsumer": {
2570
+ "panels/application/components/BackForwardCacheStrings.ts | networkRequestDatapipeDrainedAsBytesConsumer": {
2496
2571
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ín̂f́l̂íĝh́t̂ f́êt́ĉh́() ôŕ X̂H́R̂ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2497
2572
  },
2498
- "panels/application/BackForwardCacheStrings.ts | networkRequestRedirected": {
2573
+ "panels/application/components/BackForwardCacheStrings.ts | networkRequestRedirected": {
2499
2574
  "message": "T̂h́ê ṕâǵê ẃâś êv́îćt̂éd̂ f́r̂óm̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê b́êćâúŝé âń âćt̂ív̂é n̂ét̂ẃôŕk̂ ŕêq́ûéŝt́ îńv̂ól̂v́êd́ â ŕêd́îŕêćt̂."
2500
2575
  },
2501
- "panels/application/BackForwardCacheStrings.ts | networkRequestTimeout": {
2576
+ "panels/application/components/BackForwardCacheStrings.ts | networkRequestTimeout": {
2502
2577
  "message": "T̂h́ê ṕâǵê ẃâś êv́îćt̂éd̂ f́r̂óm̂ t́ĥé ĉáĉh́ê b́êćâúŝé â ńêt́ŵór̂ḱ ĉón̂ńêćt̂íôń ŵáŝ óp̂én̂ t́ôó l̂ón̂ǵ. Ĉh́r̂óm̂é l̂ím̂ít̂ś t̂h́ê ám̂óûńt̂ óf̂ t́îḿê t́ĥát̂ á p̂áĝé m̂áŷ ŕêćêív̂é d̂át̂á ŵh́îĺê ćâćĥéd̂."
2503
2578
  },
2504
- "panels/application/BackForwardCacheStrings.ts | noResponseHead": {
2579
+ "panels/application/components/BackForwardCacheStrings.ts | noResponseHead": {
2505
2580
  "message": "P̂áĝéŝ t́ĥát̂ d́ô ńôt́ ĥáv̂é â v́âĺîd́ r̂éŝṕôńŝé ĥéâd́ ĉán̂ńôt́ êńt̂ér̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2506
2581
  },
2507
- "panels/application/BackForwardCacheStrings.ts | notMainFrame": {
2582
+ "panels/application/components/BackForwardCacheStrings.ts | notMainFrame": {
2508
2583
  "message": "N̂áv̂íĝát̂íôń ĥáp̂ṕêńêd́ îń â f́r̂ám̂é ôt́ĥér̂ t́ĥán̂ t́ĥé m̂áîń f̂ŕâḿê."
2509
2584
  },
2510
- "panels/application/BackForwardCacheStrings.ts | outstandingIndexedDBTransaction": {
2585
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingIndexedDBTransaction": {
2511
2586
  "message": "P̂áĝé ŵít̂h́ ôńĝóîńĝ ín̂d́êx́êd́ D̂B́ t̂ŕâńŝáĉt́îón̂ś âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2512
2587
  },
2513
- "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestDirectSocket": {
2588
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingNetworkRequestDirectSocket": {
2514
2589
  "message": "P̂áĝéŝ ẃît́ĥ án̂ ín̂-f́l̂íĝh́t̂ ńêt́ŵór̂ḱ r̂éq̂úêśt̂ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2515
2590
  },
2516
- "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestFetch": {
2591
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingNetworkRequestFetch": {
2517
2592
  "message": "P̂áĝéŝ ẃît́ĥ án̂ ín̂-f́l̂íĝh́t̂ f́êt́ĉh́ n̂ét̂ẃôŕk̂ ŕêq́ûéŝt́ âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2518
2593
  },
2519
- "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestOthers": {
2594
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingNetworkRequestOthers": {
2520
2595
  "message": "P̂áĝéŝ ẃît́ĥ án̂ ín̂-f́l̂íĝh́t̂ ńêt́ŵór̂ḱ r̂éq̂úêśt̂ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2521
2596
  },
2522
- "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestXHR": {
2597
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingNetworkRequestXHR": {
2523
2598
  "message": "P̂áĝéŝ ẃît́ĥ án̂ ín̂-f́l̂íĝh́t̂ X́ĤŔ n̂ét̂ẃôŕk̂ ŕêq́ûéŝt́ âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2524
2599
  },
2525
- "panels/application/BackForwardCacheStrings.ts | paymentManager": {
2600
+ "panels/application/components/BackForwardCacheStrings.ts | paymentManager": {
2526
2601
  "message": "P̂áĝéŝ t́ĥát̂ úŝé P̂áŷḿêńt̂Ḿâńâǵêŕ âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2527
2602
  },
2528
- "panels/application/BackForwardCacheStrings.ts | pictureInPicture": {
2603
+ "panels/application/components/BackForwardCacheStrings.ts | pictureInPicture": {
2529
2604
  "message": "P̂áĝéŝ t́ĥát̂ úŝé P̂íĉt́ûŕê-ín̂-Ṕîćt̂úr̂é âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2530
2605
  },
2531
- "panels/application/BackForwardCacheStrings.ts | portal": {
2606
+ "panels/application/components/BackForwardCacheStrings.ts | portal": {
2532
2607
  "message": "P̂áĝéŝ t́ĥát̂ úŝé p̂ór̂t́âĺŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2533
2608
  },
2534
- "panels/application/BackForwardCacheStrings.ts | printing": {
2609
+ "panels/application/components/BackForwardCacheStrings.ts | printing": {
2535
2610
  "message": "P̂áĝéŝ t́ĥát̂ śĥóŵ Ṕr̂ín̂t́îńĝ ÚÎ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2536
2611
  },
2537
- "panels/application/BackForwardCacheStrings.ts | relatedActiveContentsExist": {
2612
+ "panels/application/components/BackForwardCacheStrings.ts | relatedActiveContentsExist": {
2538
2613
  "message": "T̂h́ê ṕâǵê ẃâś ôṕêńêd́ ûśîńĝ 'window.open()' án̂d́ âńôt́ĥér̂ t́âb́ ĥáŝ á r̂éf̂ér̂én̂ćê t́ô ít̂, ór̂ t́ĥé p̂áĝé ôṕêńêd́ â ẃîńd̂óŵ."
2539
2614
  },
2540
- "panels/application/BackForwardCacheStrings.ts | rendererProcessCrashed": {
2615
+ "panels/application/components/BackForwardCacheStrings.ts | rendererProcessCrashed": {
2541
2616
  "message": "T̂h́ê ŕêńd̂ér̂ér̂ ṕr̂óĉéŝś f̂ór̂ t́ĥé p̂áĝé îń b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé ĉŕâśĥéd̂."
2542
2617
  },
2543
- "panels/application/BackForwardCacheStrings.ts | rendererProcessKilled": {
2618
+ "panels/application/components/BackForwardCacheStrings.ts | rendererProcessKilled": {
2544
2619
  "message": "T̂h́ê ŕêńd̂ér̂ér̂ ṕr̂óĉéŝś f̂ór̂ t́ĥé p̂áĝé îń b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé ŵáŝ ḱîĺl̂éd̂."
2545
2620
  },
2546
- "panels/application/BackForwardCacheStrings.ts | requestedAudioCapturePermission": {
2621
+ "panels/application/components/BackForwardCacheStrings.ts | requestedAudioCapturePermission": {
2547
2622
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ŕêq́ûéŝt́êd́ âúd̂íô ćâṕt̂úr̂é p̂ér̂ḿîśŝíôńŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2548
2623
  },
2549
- "panels/application/BackForwardCacheStrings.ts | requestedBackForwardCacheBlockedSensors": {
2624
+ "panels/application/components/BackForwardCacheStrings.ts | requestedBackForwardCacheBlockedSensors": {
2550
2625
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ŕêq́ûéŝt́êd́ ŝén̂śôŕ p̂ér̂ḿîśŝíôńŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2551
2626
  },
2552
- "panels/application/BackForwardCacheStrings.ts | requestedBackgroundWorkPermission": {
2627
+ "panels/application/components/BackForwardCacheStrings.ts | requestedBackgroundWorkPermission": {
2553
2628
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ŕêq́ûéŝt́êd́ b̂áĉḱĝŕôún̂d́ ŝýn̂ć ôŕ f̂ét̂ćĥ ṕêŕm̂íŝśîón̂ś âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2554
2629
  },
2555
- "panels/application/BackForwardCacheStrings.ts | requestedMIDIPermission": {
2630
+ "panels/application/components/BackForwardCacheStrings.ts | requestedMIDIPermission": {
2556
2631
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ŕêq́ûéŝt́êd́ M̂ÍD̂Í p̂ér̂ḿîśŝíôńŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2557
2632
  },
2558
- "panels/application/BackForwardCacheStrings.ts | requestedNotificationsPermission": {
2633
+ "panels/application/components/BackForwardCacheStrings.ts | requestedNotificationsPermission": {
2559
2634
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ŕêq́ûéŝt́êd́ n̂ót̂íf̂íĉát̂íôńŝ ṕêŕm̂íŝśîón̂ś âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2560
2635
  },
2561
- "panels/application/BackForwardCacheStrings.ts | requestedStorageAccessGrant": {
2636
+ "panels/application/components/BackForwardCacheStrings.ts | requestedStorageAccessGrant": {
2562
2637
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ŕêq́ûéŝt́êd́ ŝt́ôŕâǵê áĉćêśŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2563
2638
  },
2564
- "panels/application/BackForwardCacheStrings.ts | requestedVideoCapturePermission": {
2639
+ "panels/application/components/BackForwardCacheStrings.ts | requestedVideoCapturePermission": {
2565
2640
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ŕêq́ûéŝt́êd́ v̂íd̂éô ćâṕt̂úr̂é p̂ér̂ḿîśŝíôńŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2566
2641
  },
2567
- "panels/application/BackForwardCacheStrings.ts | schemeNotHTTPOrHTTPS": {
2642
+ "panels/application/components/BackForwardCacheStrings.ts | schemeNotHTTPOrHTTPS": {
2568
2643
  "message": "Ôńl̂ý p̂áĝéŝ ẃĥóŝé ÛŔL̂ śĉh́êḿê íŝ H́T̂T́P̂ / H́T̂T́P̂Ś ĉán̂ b́ê ćâćĥéd̂."
2569
2644
  },
2570
- "panels/application/BackForwardCacheStrings.ts | serviceWorkerClaim": {
2645
+ "panels/application/components/BackForwardCacheStrings.ts | serviceWorkerClaim": {
2571
2646
  "message": "T̂h́ê ṕâǵê ẃâś ĉĺâím̂éd̂ b́ŷ á ŝér̂v́îćê ẃôŕk̂ér̂ ẃĥíl̂é ît́ îś îń b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2572
2647
  },
2573
- "panels/application/BackForwardCacheStrings.ts | serviceWorkerPostMessage": {
2648
+ "panels/application/components/BackForwardCacheStrings.ts | serviceWorkerPostMessage": {
2574
2649
  "message": "Â śêŕv̂íĉé ŵór̂ḱêŕ ât́t̂ém̂ṕt̂éd̂ t́ô śêńd̂ t́ĥé p̂áĝé îń b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé â MessageEvent."
2575
2650
  },
2576
- "panels/application/BackForwardCacheStrings.ts | serviceWorkerUnregistration": {
2651
+ "panels/application/components/BackForwardCacheStrings.ts | serviceWorkerUnregistration": {
2577
2652
  "message": "Ŝér̂v́îćêẂôŕk̂ér̂ ẃâś ûńr̂éĝíŝt́êŕêd́ ŵh́îĺê á p̂áĝé ŵáŝ ín̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2578
2653
  },
2579
- "panels/application/BackForwardCacheStrings.ts | serviceWorkerVersionActivation": {
2654
+ "panels/application/components/BackForwardCacheStrings.ts | serviceWorkerVersionActivation": {
2580
2655
  "message": "T̂h́ê ṕâǵê ẃâś êv́îćt̂éd̂ f́r̂óm̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê d́ûé t̂ó â śêŕv̂íĉé ŵór̂ḱêŕ âćt̂ív̂át̂íôń."
2581
2656
  },
2582
- "panels/application/BackForwardCacheStrings.ts | sessionRestored": {
2657
+ "panels/application/components/BackForwardCacheStrings.ts | sessionRestored": {
2583
2658
  "message": "Ĉh́r̂óm̂é r̂éŝt́âŕt̂éd̂ án̂d́ ĉĺêár̂éd̂ t́ĥé b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé êńt̂ŕîéŝ."
2584
2659
  },
2585
- "panels/application/BackForwardCacheStrings.ts | sharedWorker": {
2660
+ "panels/application/components/BackForwardCacheStrings.ts | sharedWorker": {
2586
2661
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŝh́âŕêd́Ŵór̂ḱêŕ âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2587
2662
  },
2588
- "panels/application/BackForwardCacheStrings.ts | speechRecognizer": {
2663
+ "panels/application/components/BackForwardCacheStrings.ts | speechRecognizer": {
2589
2664
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŝṕêéĉh́R̂éĉóĝńîźêŕ âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2590
2665
  },
2591
- "panels/application/BackForwardCacheStrings.ts | speechSynthesis": {
2666
+ "panels/application/components/BackForwardCacheStrings.ts | speechSynthesis": {
2592
2667
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŝṕêéĉh́Ŝýn̂t́ĥéŝíŝ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2593
2668
  },
2594
- "panels/application/BackForwardCacheStrings.ts | subframeIsNavigating": {
2669
+ "panels/application/components/BackForwardCacheStrings.ts | subframeIsNavigating": {
2595
2670
  "message": "Âń îf́r̂ám̂é ôń t̂h́ê ṕâǵê śt̂ár̂t́êd́ â ńâv́îǵât́îón̂ t́ĥát̂ d́îd́ n̂ót̂ ćôḿp̂ĺêt́ê."
2596
2671
  },
2597
- "panels/application/BackForwardCacheStrings.ts | subresourceHasCacheControlNoCache": {
2672
+ "panels/application/components/BackForwardCacheStrings.ts | subresourceHasCacheControlNoCache": {
2598
2673
  "message": "P̂áĝéŝ ẃĥóŝé ŝúb̂ŕêśôúr̂ćê h́âś ĉáĉh́ê-ćôńt̂ŕôĺ:n̂ó-ĉáĉh́ê ćâńn̂ót̂ én̂t́êŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2599
2674
  },
2600
- "panels/application/BackForwardCacheStrings.ts | subresourceHasCacheControlNoStore": {
2675
+ "panels/application/components/BackForwardCacheStrings.ts | subresourceHasCacheControlNoStore": {
2601
2676
  "message": "P̂áĝéŝ ẃĥóŝé ŝúb̂ŕêśôúr̂ćê h́âś ĉáĉh́ê-ćôńt̂ŕôĺ:n̂ó-ŝt́ôŕê ćâńn̂ót̂ én̂t́êŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2602
2677
  },
2603
- "panels/application/BackForwardCacheStrings.ts | timeout": {
2678
+ "panels/application/components/BackForwardCacheStrings.ts | timeout": {
2604
2679
  "message": "T̂h́ê ṕâǵê éx̂ćêéd̂éd̂ t́ĥé m̂áx̂ím̂úm̂ t́îḿê ín̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê án̂d́ ŵáŝ éx̂ṕîŕêd́."
2605
2680
  },
2606
- "panels/application/BackForwardCacheStrings.ts | timeoutPuttingInCache": {
2681
+ "panels/application/components/BackForwardCacheStrings.ts | timeoutPuttingInCache": {
2607
2682
  "message": "T̂h́ê ṕâǵê t́îḿêd́ ôút̂ én̂t́êŕîńĝ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê (ĺîḱêĺŷ d́ûé t̂ó l̂ón̂ǵ-r̂ún̂ńîńĝ ṕâǵêh́îd́ê h́âńd̂ĺêŕŝ)."
2608
2683
  },
2609
- "panels/application/BackForwardCacheStrings.ts | unloadHandlerExistsInMainFrame": {
2684
+ "panels/application/components/BackForwardCacheStrings.ts | unloadHandlerExistsInMainFrame": {
2610
2685
  "message": "T̂h́ê ṕâǵê h́âś âń ûńl̂óâd́ ĥán̂d́l̂ér̂ ín̂ t́ĥé m̂áîń f̂ŕâḿê."
2611
2686
  },
2612
- "panels/application/BackForwardCacheStrings.ts | unloadHandlerExistsInSubFrame": {
2687
+ "panels/application/components/BackForwardCacheStrings.ts | unloadHandlerExistsInSubFrame": {
2613
2688
  "message": "T̂h́ê ṕâǵê h́âś âń ûńl̂óâd́ ĥán̂d́l̂ér̂ ín̂ á ŝúb̂ f́r̂ám̂é."
2614
2689
  },
2615
- "panels/application/BackForwardCacheStrings.ts | userAgentOverrideDiffers": {
2690
+ "panels/application/components/BackForwardCacheStrings.ts | userAgentOverrideDiffers": {
2616
2691
  "message": "B̂ŕôẃŝér̂ h́âś ĉh́âńĝéd̂ t́ĥé ûśêŕ âǵêńt̂ óv̂ér̂ŕîd́ê h́êád̂ér̂."
2617
2692
  },
2618
- "panels/application/BackForwardCacheStrings.ts | wasGrantedMediaAccess": {
2693
+ "panels/application/components/BackForwardCacheStrings.ts | wasGrantedMediaAccess": {
2619
2694
  "message": "P̂áĝéŝ t́ĥát̂ h́âv́ê ǵr̂án̂t́êd́ âćĉéŝś t̂ó r̂éĉór̂d́ v̂íd̂éô ór̂ áûd́îó âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2620
2695
  },
2621
- "panels/application/BackForwardCacheStrings.ts | webDatabase": {
2696
+ "panels/application/components/BackForwardCacheStrings.ts | webDatabase": {
2622
2697
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂D́ât́âb́âśê ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2623
2698
  },
2624
- "panels/application/BackForwardCacheStrings.ts | webHID": {
2699
+ "panels/application/components/BackForwardCacheStrings.ts | webHID": {
2625
2700
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂H́ÎD́ âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2626
2701
  },
2627
- "panels/application/BackForwardCacheStrings.ts | webLocks": {
2702
+ "panels/application/components/BackForwardCacheStrings.ts | webLocks": {
2628
2703
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂Ĺôćk̂ś âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2629
2704
  },
2630
- "panels/application/BackForwardCacheStrings.ts | webNfc": {
2705
+ "panels/application/components/BackForwardCacheStrings.ts | webNfc": {
2631
2706
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂Ńf̂ć âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâd́ ĉáĉh́ê."
2632
2707
  },
2633
- "panels/application/BackForwardCacheStrings.ts | webOTPService": {
2708
+ "panels/application/components/BackForwardCacheStrings.ts | webOTPService": {
2634
2709
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂ÓT̂ṔŜér̂v́îćê ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́f̂ćâćĥé."
2635
2710
  },
2636
- "panels/application/BackForwardCacheStrings.ts | webRTC": {
2711
+ "panels/application/components/BackForwardCacheStrings.ts | webRTC": {
2637
2712
  "message": "P̂áĝéŝ ẃît́ĥ Ẃêb́R̂T́Ĉ ćâńn̂ót̂ én̂t́êŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2638
2713
  },
2639
- "panels/application/BackForwardCacheStrings.ts | webShare": {
2714
+ "panels/application/components/BackForwardCacheStrings.ts | webShare": {
2640
2715
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂Śĥár̂é âŕê ńôt́ ĉúr̂ŕêńt̂ĺŷ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâd́ ĉáĉh́ê."
2641
2716
  },
2642
- "panels/application/BackForwardCacheStrings.ts | webSocket": {
2717
+ "panels/application/components/BackForwardCacheStrings.ts | webSocket": {
2643
2718
  "message": "P̂áĝéŝ ẃît́ĥ Ẃêb́Ŝóĉḱêt́ ĉán̂ńôt́ êńt̂ér̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2644
2719
  },
2645
- "panels/application/BackForwardCacheStrings.ts | webTransport": {
2720
+ "panels/application/components/BackForwardCacheStrings.ts | webTransport": {
2646
2721
  "message": "P̂áĝéŝ ẃît́ĥ Ẃêb́T̂ŕâńŝṕôŕt̂ ćâńn̂ót̂ én̂t́êŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2647
2722
  },
2648
- "panels/application/BackForwardCacheStrings.ts | webXR": {
2723
+ "panels/application/components/BackForwardCacheStrings.ts | webXR": {
2649
2724
  "message": "P̂áĝéŝ t́ĥát̂ úŝé Ŵéb̂X́R̂ ár̂é n̂ót̂ ćûŕr̂én̂t́l̂ý êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2650
2725
  },
2651
- "panels/application/BackForwardCacheView.ts | backForwardCacheTitle": {
2726
+ "panels/application/components/BackForwardCacheView.ts | backForwardCacheTitle": {
2652
2727
  "message": "B̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé"
2653
2728
  },
2654
- "panels/application/BackForwardCacheView.ts | circumstantial": {
2729
+ "panels/application/components/BackForwardCacheView.ts | circumstantial": {
2655
2730
  "message": "N̂ót̂ Áĉt́îón̂áb̂ĺê"
2656
2731
  },
2657
- "panels/application/BackForwardCacheView.ts | circumstantialExplanation": {
2732
+ "panels/application/components/BackForwardCacheView.ts | circumstantialExplanation": {
2658
2733
  "message": "T̂h́êśê ŕêáŝón̂ś âŕê ńôt́ âćt̂íôńâb́l̂é î.é. ĉáĉh́îńĝ ẃâś p̂ŕêv́êńt̂éd̂ b́ŷ śôḿêt́ĥín̂ǵ ôút̂śîd́ê óf̂ t́ĥé d̂ír̂éĉt́ ĉón̂t́r̂ól̂ óf̂ t́ĥé p̂áĝé."
2659
2734
  },
2660
- "panels/application/BackForwardCacheView.ts | learnMore": {
2735
+ "panels/application/components/BackForwardCacheView.ts | learnMore": {
2661
2736
  "message": "L̂éâŕn̂ ḿôŕê: b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê él̂íĝíb̂íl̂ít̂ý"
2662
2737
  },
2663
- "panels/application/BackForwardCacheView.ts | mainFrame": {
2738
+ "panels/application/components/BackForwardCacheView.ts | mainFrame": {
2664
2739
  "message": "M̂áîń F̂ŕâḿê"
2665
2740
  },
2666
- "panels/application/BackForwardCacheView.ts | normalNavigation": {
2741
+ "panels/application/components/BackForwardCacheView.ts | normalNavigation": {
2667
2742
  "message": "N̂ót̂ śêŕv̂éd̂ f́r̂óm̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê: t́ô t́r̂íĝǵêŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé, ûśê Ćĥŕôḿê'ś b̂áĉḱ/f̂ór̂ẃâŕd̂ b́ût́t̂ón̂ś, ôŕ ûśê t́ĥé t̂éŝt́ b̂út̂t́ôń b̂él̂óŵ t́ô áût́ôḿât́îćâĺl̂ý n̂áv̂íĝát̂é âẃâý âńd̂ b́âćk̂."
2668
2743
  },
2669
- "panels/application/BackForwardCacheView.ts | pageSupportNeeded": {
2744
+ "panels/application/components/BackForwardCacheView.ts | pageSupportNeeded": {
2670
2745
  "message": "Âćt̂íôńâb́l̂é"
2671
2746
  },
2672
- "panels/application/BackForwardCacheView.ts | pageSupportNeededExplanation": {
2747
+ "panels/application/components/BackForwardCacheView.ts | pageSupportNeededExplanation": {
2673
2748
  "message": "T̂h́êśê ŕêáŝón̂ś âŕê áĉt́îón̂áb̂ĺê í.ê. t́ĥéŷ ćâń b̂é ĉĺêán̂éd̂ úp̂ t́ô ḿâḱê t́ĥé p̂áĝé êĺîǵîb́l̂é f̂ór̂ b́âćk̂/f́ôŕŵár̂d́ ĉáĉh́ê."
2674
2749
  },
2675
- "panels/application/BackForwardCacheView.ts | restoredFromBFCache": {
2750
+ "panels/application/components/BackForwardCacheView.ts | restoredFromBFCache": {
2676
2751
  "message": "Ŝúĉćêśŝf́ûĺl̂ý ŝér̂v́êd́ f̂ŕôḿ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé."
2677
2752
  },
2678
- "panels/application/BackForwardCacheView.ts | runningTest": {
2753
+ "panels/application/components/BackForwardCacheView.ts | runningTest": {
2679
2754
  "message": "R̂ún̂ńîńĝ t́êśt̂"
2680
2755
  },
2681
- "panels/application/BackForwardCacheView.ts | runTest": {
2756
+ "panels/application/components/BackForwardCacheView.ts | runTest": {
2682
2757
  "message": "T̂éŝt́ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé"
2683
2758
  },
2684
- "panels/application/BackForwardCacheView.ts | supportPending": {
2759
+ "panels/application/components/BackForwardCacheView.ts | supportPending": {
2685
2760
  "message": "P̂én̂d́îńĝ Śûṕp̂ór̂t́"
2686
2761
  },
2687
- "panels/application/BackForwardCacheView.ts | supportPendingExplanation": {
2762
+ "panels/application/components/BackForwardCacheView.ts | supportPendingExplanation": {
2688
2763
  "message": "Ĉh́r̂óm̂é ŝúp̂ṕôŕt̂ f́ôŕ t̂h́êśê ŕêáŝón̂ś îś p̂én̂d́îńĝ í.ê. t́ĥéŷ ẃîĺl̂ ńôt́ p̂ŕêv́êńt̂ t́ĥé p̂áĝé f̂ŕôḿ b̂éîńĝ él̂íĝíb̂ĺê f́ôŕ b̂áĉḱ/f̂ór̂ẃâŕd̂ ćâćĥé îń â f́ût́ûŕê v́êŕŝíôń ôf́ Ĉh́r̂óm̂é."
2689
2764
  },
2690
- "panels/application/BackForwardCacheView.ts | unavailable": {
2765
+ "panels/application/components/BackForwardCacheView.ts | unavailable": {
2691
2766
  "message": "ûńâv́âíl̂áb̂ĺê"
2692
2767
  },
2693
- "panels/application/BackForwardCacheView.ts | unknown": {
2768
+ "panels/application/components/BackForwardCacheView.ts | unknown": {
2694
2769
  "message": "Ûńk̂ńôẃn̂ Śt̂át̂úŝ"
2695
2770
  },
2696
- "panels/application/BackForwardCacheView.ts | url": {
2771
+ "panels/application/components/BackForwardCacheView.ts | url": {
2697
2772
  "message": "ÛŔL̂:"
2698
2773
  },
2699
- "panels/application/BackgroundServiceView.ts | backgroundFetch": {
2700
- "message": "B̂áĉḱĝŕôún̂d́ F̂ét̂ćĥ"
2701
- },
2702
- "panels/application/BackgroundServiceView.ts | backgroundServices": {
2703
- "message": "B̂áĉḱĝŕôún̂d́ Ŝér̂v́îćêś"
2704
- },
2705
- "panels/application/BackgroundServiceView.ts | backgroundSync": {
2706
- "message": "B̂áĉḱĝŕôún̂d́ Ŝýn̂ć"
2707
- },
2708
- "panels/application/BackgroundServiceView.ts | clear": {
2709
- "message": "Ĉĺêár̂"
2710
- },
2711
- "panels/application/BackgroundServiceView.ts | clickTheRecordButtonSOrHitSTo": {
2712
- "message": "Ĉĺîćk̂ t́ĥé r̂éĉór̂d́ b̂út̂t́ôń {PH1} ôŕ ĥít̂ {PH2} t́ô śt̂ár̂t́ r̂éĉór̂d́îńĝ."
2713
- },
2714
- "panels/application/BackgroundServiceView.ts | devtoolsWillRecordAllSActivity": {
2715
- "message": "D̂év̂T́ôól̂ś ŵíl̂ĺ r̂éĉór̂d́ âĺl̂ {PH1} áĉt́îv́ît́ŷ f́ôŕ ûṕ t̂ó 3 d̂áŷś, êv́êń ŵh́êń ĉĺôśêd́."
2716
- },
2717
- "panels/application/BackgroundServiceView.ts | empty": {
2718
- "message": "êḿp̂t́ŷ"
2719
- },
2720
- "panels/application/BackgroundServiceView.ts | event": {
2721
- "message": "Êv́êńt̂"
2722
- },
2723
- "panels/application/BackgroundServiceView.ts | instanceId": {
2724
- "message": "Îńŝt́âńĉé ÎD́"
2725
- },
2726
- "panels/application/BackgroundServiceView.ts | learnMore": {
2727
- "message": "L̂éâŕn̂ ḿôŕê"
2728
- },
2729
- "panels/application/BackgroundServiceView.ts | noMetadataForThisEvent": {
2730
- "message": "N̂ó m̂ét̂ád̂át̂á f̂ór̂ t́ĥíŝ év̂én̂t́"
2731
- },
2732
- "panels/application/BackgroundServiceView.ts | notifications": {
2733
- "message": "N̂ót̂íf̂íĉát̂íôńŝ"
2734
- },
2735
- "panels/application/BackgroundServiceView.ts | origin": {
2736
- "message": "Ôŕîǵîń"
2737
- },
2738
- "panels/application/BackgroundServiceView.ts | paymentHandler": {
2739
- "message": "P̂áŷḿêńt̂ H́âńd̂ĺêŕ"
2740
- },
2741
- "panels/application/BackgroundServiceView.ts | periodicBackgroundSync": {
2742
- "message": "P̂ér̂íôd́îć B̂áĉḱĝŕôún̂d́ Ŝýn̂ć"
2743
- },
2744
- "panels/application/BackgroundServiceView.ts | pushMessaging": {
2745
- "message": "P̂úŝh́ M̂éŝśâǵîńĝ"
2746
- },
2747
- "panels/application/BackgroundServiceView.ts | recordingSActivity": {
2748
- "message": "R̂éĉór̂d́îńĝ {PH1} áĉt́îv́ît́ŷ..."
2749
- },
2750
- "panels/application/BackgroundServiceView.ts | saveEvents": {
2751
- "message": "Ŝáv̂é êv́êńt̂ś"
2752
- },
2753
- "panels/application/BackgroundServiceView.ts | selectAnEntryToViewMetadata": {
2754
- "message": "Ŝél̂éĉt́ âń êńt̂ŕŷ t́ô v́îéŵ ḿêt́âd́ât́â"
2755
- },
2756
- "panels/application/BackgroundServiceView.ts | showEventsFromOtherDomains": {
2757
- "message": "Ŝh́ôẃ êv́êńt̂ś f̂ŕôḿ ôt́ĥér̂ d́ôḿâín̂ś"
2758
- },
2759
- "panels/application/BackgroundServiceView.ts | startRecordingEvents": {
2760
- "message": "Ŝt́âŕt̂ ŕêćôŕd̂ín̂ǵ êv́êńt̂ś"
2761
- },
2762
- "panels/application/BackgroundServiceView.ts | stopRecordingEvents": {
2763
- "message": "Ŝt́ôṕ r̂éĉór̂d́îńĝ év̂én̂t́ŝ"
2764
- },
2765
- "panels/application/BackgroundServiceView.ts | swScope": {
2766
- "message": "Ŝér̂v́îćê Ẃôŕk̂ér̂ Śĉóp̂é"
2767
- },
2768
- "panels/application/BackgroundServiceView.ts | timestamp": {
2769
- "message": "T̂ím̂éŝt́âḿp̂"
2770
- },
2771
2774
  "panels/application/components/EndpointsGrid.ts | noEndpointsToDisplay": {
2772
2775
  "message": "N̂ó êńd̂ṕôín̂t́ŝ t́ô d́îśp̂ĺâý"
2773
2776
  },