chrome-devtools-frontend 1.0.950850 → 1.0.952284

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