chrome-devtools-frontend 1.0.1402249 → 1.0.1418433
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.git-blame-ignore-revs +6 -1
- package/.vscode/devtools-workspace-launch.json +13 -31
- package/.vscode/devtools-workspace-settings.json +2 -4
- package/.vscode/devtools-workspace-tasks.json +5 -4
- package/AUTHORS +1 -0
- package/config/gni/devtools_grd_files.gni +97 -84
- package/config/gni/devtools_image_files.gni +14 -0
- package/config/owner/INFRA_OWNERS +1 -0
- package/config/typescript/tsconfig.eslint.json +2 -1
- package/docs/README.md +4 -0
- package/docs/cookbook/localization.md +1 -1
- package/docs/get_the_code.md +0 -17
- package/docs/playbook.md +176 -0
- package/docs/styleguide/ux/README.md +1 -0
- package/docs/styleguide/ux/components.md +54 -2
- package/docs/styleguide/ux/images/combo-box-variations.png +0 -0
- package/docs/styleguide/ux/patterns.md +87 -0
- package/docs/styleguide/ux/styles.md +19 -8
- package/eslint.config.mjs +93 -72
- package/extension-api/ExtensionAPI.d.ts +22 -0
- package/extensions/cxx_debugging/e2e/TestDriver.ts +1 -3
- package/extensions/cxx_debugging/e2e/cxx-debugging-extension-helpers.ts +1 -0
- package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +0 -1
- package/extensions/cxx_debugging/src/CreditsItem.ts +5 -6
- package/extensions/cxx_debugging/src/CustomFormatters.ts +4 -4
- package/extensions/cxx_debugging/src/DWARFSymbols.ts +10 -10
- package/extensions/cxx_debugging/src/DevToolsPluginHost.ts +6 -6
- package/extensions/cxx_debugging/src/DevToolsPluginWorker.ts +3 -6
- package/extensions/cxx_debugging/src/DevToolsPluginWorkerMain.ts +1 -0
- package/extensions/cxx_debugging/src/ExtensionOptions.ts +6 -10
- package/extensions/cxx_debugging/src/Formatters.ts +15 -8
- package/extensions/cxx_debugging/src/MEMFSResourceLoader.ts +7 -7
- package/extensions/cxx_debugging/src/ModuleConfiguration.ts +6 -6
- package/extensions/cxx_debugging/src/ModuleConfigurationList.ts +4 -4
- package/extensions/cxx_debugging/src/WasmTypes.ts +21 -11
- package/extensions/cxx_debugging/src/WorkerRPC.ts +3 -4
- package/extensions/cxx_debugging/tests/CreditsItem_test.ts +2 -3
- package/extensions/cxx_debugging/tests/DevToolsPluginTestWorker.ts +4 -4
- package/extensions/cxx_debugging/tests/DevToolsPlugin_test.ts +12 -12
- package/extensions/cxx_debugging/tests/Externref_test.ts +3 -6
- package/extensions/cxx_debugging/tests/Formatters_test.ts +3 -3
- package/extensions/cxx_debugging/tests/Interpreter_test.ts +1 -1
- package/extensions/cxx_debugging/tests/RealBackend.ts +9 -9
- package/extensions/cxx_debugging/tests/SymbolsBackend_test.ts +31 -29
- package/extensions/cxx_debugging/tests/TestUtils.ts +8 -7
- package/extensions/cxx_debugging/tests/inputs/externref.js +14 -4
- package/extensions/cxx_debugging/tests/inputs/page.js +3 -1
- package/front_end/Images/generate-css-vars.js +1 -0
- package/front_end/Images/rollup.config.mjs +0 -1
- package/front_end/Images/src/account-tree.svg +1 -0
- package/front_end/Images/src/arrow-collapse.svg +3 -0
- package/front_end/Images/src/arrow-drop-down.svg +3 -0
- package/front_end/Images/src/difference.svg +3 -0
- package/front_end/Images/src/global.svg +5 -0
- package/front_end/Images/src/grid-on.svg +10 -0
- package/front_end/Images/src/keyboard-full.svg +10 -0
- package/front_end/Images/src/label.svg +10 -0
- package/front_end/Images/src/node-stack-icon.svg +1 -0
- package/front_end/Images/src/override.svg +11 -0
- package/front_end/Images/src/palette.svg +10 -0
- package/front_end/Images/src/photo-camera.svg +10 -0
- package/front_end/Images/src/terminal.svg +10 -0
- package/front_end/Images/src/tonality.svg +10 -0
- package/front_end/Tests.js +1 -8
- package/front_end/application_tokens.css +407 -0
- package/front_end/core/common/Base64.test.ts +3 -3
- package/front_end/core/common/Color.ts +8 -0
- package/front_end/core/common/Console.ts +3 -3
- package/front_end/core/common/EventTarget.test.ts +7 -7
- package/front_end/core/common/EventTarget.ts +3 -3
- package/front_end/core/common/ParsedURL.test.ts +33 -37
- package/front_end/core/common/ParsedURL.ts +1 -1
- package/front_end/core/common/ResolverBase.test.ts +1 -1
- package/front_end/core/common/ResolverBase.ts +2 -7
- package/front_end/core/common/ResourceType.test.ts +19 -23
- package/front_end/core/common/Revealer.ts +5 -0
- package/front_end/core/common/SettingRegistration.test.ts +1 -1
- package/front_end/core/common/Settings.ts +6 -6
- package/front_end/core/common/Throttler.ts +3 -3
- package/front_end/core/dom_extension/DOMExtension.test.ts +36 -41
- package/front_end/core/host/AidaClient.test.ts +16 -3
- package/front_end/core/host/AidaClient.ts +31 -16
- package/front_end/core/host/InspectorFrontendHost.ts +6 -0
- package/front_end/core/host/InspectorFrontendHostAPI.ts +32 -34
- package/front_end/core/host/ResourceLoader.ts +1 -1
- package/front_end/core/host/UserMetrics.ts +100 -126
- package/front_end/core/i18n/collect-ui-strings.js +5 -4
- package/front_end/core/i18n/generate-locales-js.js +4 -2
- package/front_end/core/i18n/i18nImpl.ts +1 -1
- package/front_end/core/i18n/i18nTypes.ts +3 -3
- package/front_end/core/i18n/locales/af.json +848 -518
- package/front_end/core/i18n/locales/am.json +857 -527
- package/front_end/core/i18n/locales/ar.json +864 -534
- package/front_end/core/i18n/locales/as.json +853 -523
- package/front_end/core/i18n/locales/az.json +856 -526
- package/front_end/core/i18n/locales/be.json +854 -524
- package/front_end/core/i18n/locales/bg.json +844 -514
- package/front_end/core/i18n/locales/bn.json +851 -521
- package/front_end/core/i18n/locales/bs.json +861 -531
- package/front_end/core/i18n/locales/ca.json +851 -521
- package/front_end/core/i18n/locales/cs.json +854 -524
- package/front_end/core/i18n/locales/cy.json +849 -519
- package/front_end/core/i18n/locales/da.json +850 -520
- package/front_end/core/i18n/locales/de.json +848 -518
- package/front_end/core/i18n/locales/el.json +851 -521
- package/front_end/core/i18n/locales/en-GB.json +845 -515
- package/front_end/core/i18n/locales/es-419.json +847 -517
- package/front_end/core/i18n/locales/es.json +847 -517
- package/front_end/core/i18n/locales/et.json +843 -513
- package/front_end/core/i18n/locales/eu.json +861 -531
- package/front_end/core/i18n/locales/fa.json +860 -530
- package/front_end/core/i18n/locales/fi.json +848 -518
- package/front_end/core/i18n/locales/fil.json +849 -519
- package/front_end/core/i18n/locales/fr-CA.json +849 -519
- package/front_end/core/i18n/locales/fr.json +849 -519
- package/front_end/core/i18n/locales/gl.json +852 -522
- package/front_end/core/i18n/locales/gu.json +846 -516
- package/front_end/core/i18n/locales/he.json +867 -537
- package/front_end/core/i18n/locales/hi.json +853 -523
- package/front_end/core/i18n/locales/hr.json +854 -524
- package/front_end/core/i18n/locales/hu.json +848 -518
- package/front_end/core/i18n/locales/hy.json +850 -520
- package/front_end/core/i18n/locales/id.json +849 -519
- package/front_end/core/i18n/locales/is.json +850 -520
- package/front_end/core/i18n/locales/it.json +852 -522
- package/front_end/core/i18n/locales/ja.json +844 -514
- package/front_end/core/i18n/locales/ka.json +847 -517
- package/front_end/core/i18n/locales/kk.json +850 -520
- package/front_end/core/i18n/locales/km.json +853 -523
- package/front_end/core/i18n/locales/kn.json +857 -527
- package/front_end/core/i18n/locales/ko.json +850 -520
- package/front_end/core/i18n/locales/ky.json +846 -516
- package/front_end/core/i18n/locales/lo.json +851 -521
- package/front_end/core/i18n/locales/lt.json +845 -515
- package/front_end/core/i18n/locales/lv.json +849 -519
- package/front_end/core/i18n/locales/mk.json +851 -521
- package/front_end/core/i18n/locales/ml.json +850 -520
- package/front_end/core/i18n/locales/mn.json +860 -530
- package/front_end/core/i18n/locales/mr.json +852 -522
- package/front_end/core/i18n/locales/ms.json +848 -518
- package/front_end/core/i18n/locales/my.json +857 -527
- package/front_end/core/i18n/locales/ne.json +857 -527
- package/front_end/core/i18n/locales/nl.json +847 -517
- package/front_end/core/i18n/locales/no.json +848 -518
- package/front_end/core/i18n/locales/or.json +969 -639
- package/front_end/core/i18n/locales/pa.json +850 -520
- package/front_end/core/i18n/locales/pl.json +849 -519
- package/front_end/core/i18n/locales/pt-PT.json +850 -520
- package/front_end/core/i18n/locales/pt.json +844 -514
- package/front_end/core/i18n/locales/ro.json +850 -520
- package/front_end/core/i18n/locales/ru.json +861 -531
- package/front_end/core/i18n/locales/si.json +850 -520
- package/front_end/core/i18n/locales/sk.json +850 -520
- package/front_end/core/i18n/locales/sl.json +851 -521
- package/front_end/core/i18n/locales/sq.json +847 -517
- package/front_end/core/i18n/locales/sr-Latn.json +848 -518
- package/front_end/core/i18n/locales/sr.json +848 -518
- package/front_end/core/i18n/locales/sv.json +849 -519
- package/front_end/core/i18n/locales/sw.json +856 -526
- package/front_end/core/i18n/locales/ta.json +853 -523
- package/front_end/core/i18n/locales/te.json +854 -524
- package/front_end/core/i18n/locales/th.json +839 -509
- package/front_end/core/i18n/locales/tr.json +850 -520
- package/front_end/core/i18n/locales/uk.json +850 -520
- package/front_end/core/i18n/locales/ur.json +849 -519
- package/front_end/core/i18n/locales/uz.json +854 -524
- package/front_end/core/i18n/locales/vi.json +847 -517
- package/front_end/core/i18n/locales/zh-HK.json +852 -522
- package/front_end/core/i18n/locales/zh-TW.json +852 -522
- package/front_end/core/i18n/locales/zh.json +849 -519
- package/front_end/core/i18n/locales/zu.json +855 -525
- package/front_end/core/platform/DevToolsPath.test.ts +80 -41
- package/front_end/core/platform/DevToolsPath.ts +32 -9
- package/front_end/core/platform/ServerTiming.ts +8 -8
- package/front_end/core/platform/StringUtilities.ts +1 -1
- package/front_end/core/protocol_client/InspectorBackend.ts +15 -22
- package/front_end/core/protocol_client/protocol_client.ts +1 -0
- package/front_end/core/root/Runtime.test.ts +17 -0
- package/front_end/core/root/Runtime.ts +79 -50
- package/front_end/core/sdk/AccessibilityModel.ts +3 -3
- package/front_end/core/sdk/AnimationModel.ts +5 -5
- package/front_end/core/sdk/AutofillModel.ts +3 -3
- package/front_end/core/sdk/CPUProfilerModel.ts +4 -4
- package/front_end/core/sdk/CPUThrottlingManager.ts +157 -17
- package/front_end/core/sdk/CSSMatchedStyles.test.ts +3 -0
- package/front_end/core/sdk/CSSMatchedStyles.ts +73 -6
- package/front_end/core/sdk/CSSMetadata.ts +21 -0
- package/front_end/core/sdk/CSSModel.test.ts +7 -9
- package/front_end/core/sdk/CSSModel.ts +53 -34
- package/front_end/core/sdk/CSSProperty.ts +16 -6
- package/front_end/core/sdk/CSSPropertyParser.ts +4 -4
- package/front_end/{panels/elements/PropertyMatchers.test.ts → core/sdk/CSSPropertyParserMatchers.test.ts} +126 -63
- package/front_end/{panels/elements/PropertyMatchers.ts → core/sdk/CSSPropertyParserMatchers.ts} +126 -59
- package/front_end/core/sdk/CSSStyleDeclaration.ts +13 -1
- package/front_end/core/sdk/CSSStyleSheetHeader.test.ts +29 -0
- package/front_end/core/sdk/CSSStyleSheetHeader.ts +1 -1
- package/front_end/core/sdk/ChildTargetManager.test.ts +20 -4
- package/front_end/core/sdk/ChildTargetManager.ts +8 -11
- package/front_end/core/sdk/Connections.ts +22 -9
- package/front_end/core/sdk/ConsoleModel.test.ts +6 -4
- package/front_end/core/sdk/ConsoleModel.ts +11 -6
- package/front_end/core/sdk/CookieModel.test.ts +8 -7
- package/front_end/core/sdk/CookieModel.ts +3 -3
- package/front_end/core/sdk/DOMDebuggerModel.ts +5 -5
- package/front_end/core/sdk/DOMModel.ts +35 -17
- package/front_end/core/sdk/DebuggerModel.test.ts +4 -3
- package/front_end/core/sdk/DebuggerModel.ts +13 -13
- package/front_end/core/sdk/EmulationModel.ts +2 -3
- package/front_end/core/sdk/FrameManager.ts +7 -7
- package/front_end/core/sdk/HeapProfilerModel.ts +7 -7
- package/front_end/core/sdk/IOModel.ts +2 -3
- package/front_end/core/sdk/IsolateManager.ts +4 -4
- package/front_end/core/sdk/IssuesModel.ts +7 -4
- package/front_end/core/sdk/LogModel.ts +5 -5
- package/front_end/core/sdk/NetworkManager.test.ts +103 -54
- package/front_end/core/sdk/NetworkManager.ts +57 -22
- package/front_end/core/sdk/NetworkRequest.test.ts +19 -20
- package/front_end/core/sdk/NetworkRequest.ts +10 -10
- package/front_end/core/sdk/OverlayModel.test.ts +6 -6
- package/front_end/core/sdk/OverlayModel.ts +10 -10
- package/front_end/core/sdk/OverlayPersistentHighlighter.test.ts +5 -3
- package/front_end/core/sdk/PageResourceLoader.test.ts +20 -25
- package/front_end/core/sdk/PageResourceLoader.ts +3 -3
- package/front_end/core/sdk/PaintProfiler.ts +4 -4
- package/front_end/core/sdk/PerformanceMetricsModel.ts +2 -2
- package/front_end/core/sdk/PreloadingModel.test.ts +19 -17
- package/front_end/core/sdk/PreloadingModel.ts +4 -4
- package/front_end/core/sdk/RehydratingConnection.ts +6 -4
- package/front_end/core/sdk/RemoteObject.ts +2 -2
- package/front_end/core/sdk/ResourceTreeModel.ts +39 -32
- package/front_end/core/sdk/RuntimeModel.test.ts +4 -2
- package/front_end/core/sdk/RuntimeModel.ts +14 -12
- package/front_end/core/sdk/ScreenCaptureModel.ts +3 -0
- package/front_end/core/sdk/Script.ts +1 -1
- package/front_end/core/sdk/SecurityOriginManager.ts +6 -6
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +5 -5
- package/front_end/core/sdk/ServiceWorkerManager.ts +10 -11
- package/front_end/core/sdk/SourceMap.test.ts +141 -77
- package/front_end/core/sdk/SourceMap.ts +110 -193
- package/front_end/core/sdk/SourceMapFunctionRanges.test.ts +171 -0
- package/front_end/core/sdk/SourceMapFunctionRanges.ts +150 -0
- package/front_end/core/sdk/SourceMapManager.test.ts +14 -14
- package/front_end/core/sdk/SourceMapManager.ts +12 -12
- package/front_end/core/sdk/SourceMapScopes.ts +29 -7
- package/front_end/core/sdk/SourceMapScopesInfo.test.ts +36 -28
- package/front_end/core/sdk/SourceMapScopesInfo.ts +35 -23
- package/front_end/core/sdk/StorageBucketsModel.ts +8 -8
- package/front_end/core/sdk/StorageKeyManager.test.ts +4 -2
- package/front_end/core/sdk/StorageKeyManager.ts +8 -7
- package/front_end/core/sdk/Target.test.ts +39 -3
- package/front_end/core/sdk/Target.ts +41 -1
- package/front_end/core/sdk/TargetManager.test.ts +6 -4
- package/front_end/core/sdk/TargetManager.ts +6 -6
- package/front_end/core/sdk/TraceObject.test.ts +1 -1
- package/front_end/core/sdk/TraceObject.ts +32 -0
- package/front_end/core/sdk/WebAuthnModel.ts +6 -6
- package/front_end/core/sdk/sdk-meta.ts +1 -1
- package/front_end/core/sdk/sdk.ts +4 -5
- package/front_end/design_system_tokens.css +775 -0
- package/front_end/devtools_compatibility.js +5 -5
- package/front_end/entrypoint_template.html +2 -0
- package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +1 -2
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.test.ts +12 -2
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +3 -3
- package/front_end/entrypoints/formatter_worker/ScopeParser.ts +0 -1
- package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +0 -1
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +67 -52
- package/front_end/entrypoints/inspector_main/InspectorMain.test.ts +276 -142
- package/front_end/entrypoints/inspector_main/InspectorMain.ts +41 -2
- package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +1 -1
- package/front_end/entrypoints/inspector_main/RenderingOptions.ts +1 -4
- package/front_end/entrypoints/js_app/js_app.ts +2 -1
- package/front_end/entrypoints/main/ExecutionContextSelector.ts +1 -1
- package/front_end/entrypoints/main/MainImpl.ts +83 -78
- package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +5 -7
- package/front_end/entrypoints/node_app/NodeMain.ts +4 -5
- package/front_end/entrypoints/node_app/node_app.ts +1 -0
- package/front_end/entrypoints/wasmparser_worker/WasmParserWorker.ts +1 -1
- package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
- package/front_end/generated/InspectorBackendCommands.js +20 -20
- package/front_end/generated/SupportedCSSProperties.js +205 -9
- package/front_end/generated/protocol-mapping.d.ts +41 -23
- package/front_end/generated/protocol-proxy-api.d.ts +34 -25
- package/front_end/generated/protocol.ts +173 -79
- package/front_end/global_typings/global_defs.d.ts +0 -5
- package/front_end/legacy/legacy-defs.d.ts +0 -2
- package/front_end/legacy_test_runner/application_test_runner/ResourceTreeTestRunner.js +2 -1
- package/front_end/legacy_test_runner/bindings_test_runner/BindingsTestRunner.js +3 -4
- package/front_end/legacy_test_runner/elements_test_runner/ElementsTestRunner.js +1 -2
- package/front_end/legacy_test_runner/heap_profiler_test_runner/heap_profiler_test_runner.js +15 -3
- package/front_end/models/autofill_manager/AutofillManager.ts +3 -3
- package/front_end/models/bindings/CompilerScriptMapping.test.ts +6 -6
- package/front_end/models/bindings/CompilerScriptMapping.ts +8 -0
- package/front_end/models/bindings/ContentProviderBasedProject.ts +1 -1
- package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +5 -3
- package/front_end/models/bindings/DebuggerWorkspaceBinding.test.ts +29 -3
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +8 -0
- package/front_end/models/bindings/DefaultScriptMapping.test.ts +4 -2
- package/front_end/models/bindings/FileUtils.ts +1 -1
- package/front_end/models/bindings/IgnoreListManager.test.ts +17 -15
- package/front_end/models/bindings/IgnoreListManager.ts +6 -6
- package/front_end/models/bindings/NetworkProject.ts +4 -4
- package/front_end/models/bindings/PresentationConsoleMessageHelper.test.ts +4 -2
- package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +4 -5
- package/front_end/models/bindings/ResourceMapping.test.ts +6 -4
- package/front_end/models/bindings/ResourceScriptMapping.test.ts +4 -2
- package/front_end/models/bindings/ResourceScriptMapping.ts +4 -4
- package/front_end/models/bindings/ResourceUtils.test.ts +26 -28
- package/front_end/models/bindings/ResourceUtils.ts +1 -8
- package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
- package/front_end/models/breakpoints/BreakpointManager.test.ts +23 -22
- package/front_end/models/breakpoints/BreakpointManager.ts +4 -4
- package/front_end/models/cpu_profile/CPUProfileDataModel.test.ts +8 -1
- package/front_end/models/cpu_profile/CPUProfileDataModel.ts +14 -4
- package/front_end/models/cpu_profile/ProfileTreeModel.ts +1 -3
- package/front_end/models/crux-manager/CrUXManager.test.ts +27 -15
- package/front_end/models/crux-manager/CrUXManager.ts +23 -8
- package/front_end/models/emulation/DeviceModeModel.ts +3 -3
- package/front_end/models/emulation/EmulatedDevices.ts +7 -7
- package/front_end/models/extensions/ExtensionAPI.ts +300 -174
- package/front_end/models/extensions/ExtensionEndpoint.ts +8 -8
- package/front_end/models/extensions/ExtensionPanel.ts +4 -2
- package/front_end/models/extensions/ExtensionServer.test.ts +163 -28
- package/front_end/models/extensions/ExtensionServer.ts +59 -5
- package/front_end/models/extensions/HostUrlPattern.test.ts +59 -58
- package/front_end/models/extensions/LanguageExtensionEndpoint.test.ts +9 -5
- package/front_end/models/extensions/LanguageExtensionEndpoint.ts +3 -3
- package/front_end/models/extensions/RecorderPluginManager.ts +13 -13
- package/front_end/models/formatter/FormatterWorkerPool.ts +1 -3
- package/front_end/models/har/Log.test.ts +3 -1
- package/front_end/models/har/Log.ts +3 -3
- package/front_end/models/har/Writer.test.ts +2 -1
- package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +4 -10
- package/front_end/models/issues_manager/ClientHintIssue.ts +2 -3
- package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +0 -1
- package/front_end/models/issues_manager/CookieIssue.ts +1 -0
- package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +0 -1
- package/front_end/models/issues_manager/DeprecationIssue.ts +2 -3
- package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +2 -3
- package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +2 -3
- package/front_end/models/issues_manager/GenericIssue.ts +0 -1
- package/front_end/models/issues_manager/IssueResolver.test.ts +1 -1
- package/front_end/models/issues_manager/IssuesManager.ts +29 -10
- package/front_end/models/issues_manager/MarkdownIssueDescription.ts +1 -1
- package/front_end/models/issues_manager/SelectElementAccessibilityIssue.test.ts +86 -0
- package/front_end/models/issues_manager/SelectElementAccessibilityIssue.ts +110 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +7 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedSelectChild.md +7 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +3 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +3 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +3 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +3 -0
- package/front_end/models/issues_manager/issues_manager.ts +2 -0
- package/front_end/models/javascript_metadata/NativeFunctions.js +149 -130
- package/front_end/models/live-metrics/LiveMetrics.ts +21 -21
- package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +13 -13
- package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +10 -3
- package/front_end/models/logs/NetworkLog.test.ts +3 -1
- package/front_end/models/logs/NetworkLog.ts +6 -6
- package/front_end/models/logs/RequestResolver.test.ts +1 -1
- package/front_end/models/persistence/EditFileSystemView.ts +3 -6
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +9 -13
- package/front_end/models/persistence/NetworkPersistenceManager.test.ts +36 -44
- package/front_end/models/persistence/NetworkPersistenceManager.ts +6 -6
- package/front_end/models/persistence/PersistenceAction.test.ts +11 -9
- package/front_end/models/persistence/PersistenceImpl.test.ts +10 -8
- package/front_end/models/persistence/PersistenceImpl.ts +4 -4
- package/front_end/models/persistence/PersistenceUtils.ts +3 -3
- package/front_end/models/persistence/PlatformFileSystem.test.ts +4 -3
- package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
- package/front_end/models/persistence/WorkspaceSettingsTab.ts +14 -20
- package/front_end/models/project_settings/ProjectSettingsModel.test.ts +138 -0
- package/front_end/models/project_settings/ProjectSettingsModel.ts +157 -0
- package/front_end/models/project_settings/project_settings.ts +9 -0
- package/front_end/models/source_map_scopes/NamesResolver.test.ts +11 -3
- package/front_end/models/source_map_scopes/NamesResolver.ts +5 -7
- package/front_end/models/source_map_scopes/ScopeChainModel.ts +3 -3
- package/front_end/models/text_utils/StaticContentProvider.test.ts +4 -2
- package/front_end/models/text_utils/StreamingContentData.ts +3 -3
- package/front_end/models/text_utils/TextUtils.ts +1 -1
- package/front_end/models/trace/LanternComputationData.ts +11 -10
- package/front_end/models/trace/ModelImpl.test.ts +6 -6
- package/front_end/models/trace/ModelImpl.ts +11 -15
- package/front_end/models/trace/Processor.test.ts +8 -0
- package/front_end/models/trace/Processor.ts +11 -23
- package/front_end/models/trace/extras/FilmStrip.test.ts +54 -32
- package/front_end/models/trace/extras/FilmStrip.ts +11 -10
- package/front_end/models/trace/extras/MainThreadActivity.test.ts +7 -7
- package/front_end/models/trace/extras/MainThreadActivity.ts +5 -5
- package/front_end/models/trace/extras/StackTraceForEvent.ts +5 -1
- package/front_end/models/trace/extras/ThirdParties.test.ts +100 -65
- package/front_end/models/trace/extras/ThirdParties.ts +132 -56
- package/front_end/models/trace/extras/TimelineJSProfile.ts +10 -5
- package/front_end/models/trace/extras/TraceFilter.test.ts +3 -2
- package/front_end/models/trace/extras/TraceTree.test.ts +65 -39
- package/front_end/models/trace/extras/TraceTree.ts +32 -21
- package/front_end/models/trace/handlers/AnimationFramesHandler.test.ts +1 -1
- package/front_end/models/trace/handlers/AnimationFramesHandler.ts +1 -1
- package/front_end/models/trace/handlers/DOMStatsHandler.test.ts +30 -0
- package/front_end/models/trace/handlers/DOMStatsHandler.ts +31 -0
- package/front_end/models/trace/handlers/ExtensionTraceDataHandler.test.ts +741 -381
- package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +180 -15
- package/front_end/models/trace/handlers/FlowsHandler.ts +9 -10
- package/front_end/models/trace/handlers/FramesHandler.test.ts +42 -43
- package/front_end/models/trace/handlers/FramesHandler.ts +24 -25
- package/front_end/models/trace/handlers/InitiatorsHandler.ts +0 -41
- package/front_end/models/trace/handlers/LargestImagePaintHandler.test.ts +29 -12
- package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +31 -39
- package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +2 -2
- package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +33 -24
- package/front_end/models/trace/handlers/MetaHandler.test.ts +5 -4
- package/front_end/models/trace/handlers/MetaHandler.ts +46 -47
- package/front_end/models/trace/handlers/ModelHandlers.ts +1 -0
- package/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts +62 -62
- package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +38 -40
- package/front_end/models/trace/handlers/PageLoadMetricsHandler.test.ts +2 -2
- package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +26 -27
- package/front_end/models/trace/handlers/RendererHandler.ts +5 -5
- package/front_end/models/trace/handlers/SamplesHandler.test.ts +49 -16
- package/front_end/models/trace/handlers/SamplesHandler.ts +69 -60
- package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +31 -42
- package/front_end/models/trace/handlers/ScreenshotsHandler.ts +38 -13
- package/front_end/models/trace/handlers/ServerTimingsHandler.test.ts +6 -6
- package/front_end/models/trace/handlers/ServerTimingsHandler.ts +4 -5
- package/front_end/models/trace/handlers/Threads.test.ts +5 -5
- package/front_end/models/trace/handlers/Threads.ts +13 -4
- package/front_end/models/trace/handlers/UserInteractionsHandler.test.ts +4 -4
- package/front_end/models/trace/handlers/UserInteractionsHandler.ts +17 -18
- package/front_end/models/trace/handlers/UserTimings.md +1 -1
- package/front_end/models/trace/handlers/UserTimingsHandler.test.ts +32 -24
- package/front_end/models/trace/handlers/UserTimingsHandler.ts +25 -4
- package/front_end/models/trace/handlers/WarningsHandler.ts +2 -2
- package/front_end/models/trace/handlers/WorkersHandler.test.ts +4 -4
- package/front_end/models/trace/handlers/helpers.ts +17 -18
- package/front_end/models/trace/handlers/types.ts +2 -1
- package/front_end/models/trace/helpers/SamplesIntegrator.test.ts +68 -0
- package/front_end/models/trace/helpers/SamplesIntegrator.ts +59 -18
- package/front_end/models/trace/helpers/SyntheticEvents.test.ts +1 -1
- package/front_end/models/trace/helpers/SyntheticEvents.ts +1 -1
- package/front_end/models/trace/helpers/Timing.test.ts +33 -45
- package/front_end/models/trace/helpers/Timing.ts +50 -76
- package/front_end/models/trace/helpers/Trace.test.ts +13 -13
- package/front_end/models/trace/helpers/Trace.ts +36 -35
- package/front_end/models/trace/helpers/TreeHelpers.test.ts +10 -81
- package/front_end/models/trace/helpers/TreeHelpers.ts +13 -181
- package/front_end/models/trace/insights/CLSCulprits.test.ts +1 -1
- package/front_end/models/trace/insights/CLSCulprits.ts +206 -107
- package/front_end/models/trace/insights/Common.test.ts +6 -2
- package/front_end/models/trace/insights/Common.ts +165 -31
- package/front_end/models/trace/insights/DOMSize.test.ts +54 -22
- package/front_end/models/trace/insights/DOMSize.ts +71 -17
- package/front_end/models/trace/insights/DocumentLatency.test.ts +4 -4
- package/front_end/models/trace/insights/DocumentLatency.ts +87 -22
- package/front_end/models/trace/insights/FontDisplay.ts +24 -14
- package/front_end/models/trace/insights/ForcedReflow.test.ts +35 -0
- package/front_end/models/trace/insights/ForcedReflow.ts +224 -0
- package/front_end/models/trace/insights/ImageDelivery.test.ts +18 -16
- package/front_end/models/trace/insights/ImageDelivery.ts +63 -26
- package/front_end/models/trace/insights/InteractionToNextPaint.ts +39 -6
- package/front_end/models/trace/insights/LCPDiscovery.test.ts +23 -4
- package/front_end/models/trace/insights/LCPDiscovery.ts +57 -19
- package/front_end/models/trace/insights/LCPPhases.test.ts +2 -2
- package/front_end/models/trace/insights/LCPPhases.ts +57 -29
- package/front_end/models/trace/insights/LongCriticalNetworkTree.ts +60 -0
- package/front_end/models/trace/insights/Models.ts +2 -0
- package/front_end/models/trace/insights/RenderBlocking.ts +22 -10
- package/front_end/models/trace/insights/SlowCSSSelector.ts +42 -10
- package/front_end/models/trace/insights/ThirdParties.test.ts +56 -39
- package/front_end/models/trace/insights/ThirdParties.ts +41 -24
- package/front_end/models/trace/insights/Viewport.ts +8 -7
- package/front_end/models/trace/insights/types.ts +36 -17
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +80 -52
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +6 -7
- package/front_end/models/trace/lantern/graph/BaseNode.test.ts +59 -52
- package/front_end/models/trace/lantern/graph/BaseNode.ts +2 -1
- package/front_end/models/trace/lantern/graph/CPUNode.ts +2 -1
- package/front_end/models/trace/lantern/graph/NetworkNode.ts +2 -1
- package/front_end/models/trace/lantern/graph/PageDependencyGraph.test.ts +84 -88
- package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +2 -1
- package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.ts +1 -1
- package/front_end/models/trace/lantern/simulation/ConnectionPool.test.ts +40 -28
- package/front_end/models/trace/lantern/simulation/ConnectionPool.ts +1 -1
- package/front_end/models/trace/lantern/simulation/DNSCache.test.ts +3 -5
- package/front_end/models/trace/lantern/simulation/DNSCache.ts +2 -2
- package/front_end/models/trace/lantern/simulation/Simulator.test.ts +68 -37
- package/front_end/models/trace/lantern/simulation/Simulator.ts +4 -3
- package/front_end/models/trace/lantern/simulation/TCPConnection.ts +0 -4
- package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +2 -2
- package/front_end/models/trace/lantern/types/Lantern.ts +56 -56
- package/front_end/models/trace/root-causes/LayoutShift.test.ts +17 -20
- package/front_end/models/trace/root-causes/LayoutShift.ts +20 -19
- package/front_end/models/trace/root-causes/RootCauses.ts +8 -8
- package/front_end/models/trace/types/Configuration.ts +23 -6
- package/front_end/models/trace/types/Extensions.ts +4 -6
- package/front_end/models/trace/types/File.ts +30 -30
- package/front_end/models/trace/types/Timing.ts +12 -20
- package/front_end/models/trace/types/TraceEvents.ts +254 -188
- package/front_end/models/workspace/FileManager.ts +3 -3
- package/front_end/models/workspace/SearchConfig.test.ts +3 -2
- package/front_end/models/workspace/UISourceCode.ts +10 -13
- package/front_end/models/workspace/WorkspaceImpl.test.ts +12 -13
- package/front_end/models/workspace/WorkspaceImpl.ts +10 -10
- package/front_end/models/workspace_diff/WorkspaceDiff.test.ts +5 -3
- package/front_end/models/workspace_diff/WorkspaceDiff.ts +49 -47
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +4 -7
- package/front_end/panels/accessibility/AccessibilityNodeView.ts +1 -4
- package/front_end/panels/accessibility/AccessibilitySubPane.ts +6 -8
- package/front_end/panels/accessibility/axBreadcrumbs.css +3 -14
- package/front_end/panels/ai_assistance/AiAssistancePanel.test.ts +67 -89
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +245 -203
- package/front_end/panels/ai_assistance/AiHistoryStorage.test.ts +16 -16
- package/front_end/panels/ai_assistance/AiHistoryStorage.ts +62 -4
- package/front_end/panels/ai_assistance/ChangeManager.test.ts +101 -23
- package/front_end/panels/ai_assistance/ChangeManager.ts +32 -13
- package/front_end/panels/ai_assistance/ExtensionScope.ts +50 -31
- package/front_end/panels/ai_assistance/agents/AiAgent.test.ts +88 -272
- package/front_end/panels/ai_assistance/agents/AiAgent.ts +389 -382
- package/front_end/panels/ai_assistance/agents/FileAgent.test.ts +22 -217
- package/front_end/panels/ai_assistance/agents/FileAgent.ts +5 -69
- package/front_end/panels/ai_assistance/agents/NetworkAgent.test.ts +19 -163
- package/front_end/panels/ai_assistance/agents/NetworkAgent.ts +9 -253
- package/front_end/panels/ai_assistance/agents/PatchAgent.ts +120 -198
- package/front_end/panels/ai_assistance/agents/PerformanceAgent.test.ts +44 -67
- package/front_end/panels/ai_assistance/agents/PerformanceAgent.ts +31 -12
- package/front_end/panels/ai_assistance/agents/PerformanceInsightsAgent.ts +117 -0
- package/front_end/panels/ai_assistance/agents/StylingAgent.test.ts +220 -418
- package/front_end/panels/ai_assistance/agents/StylingAgent.ts +245 -69
- package/front_end/panels/ai_assistance/ai_assistance-meta.ts +0 -14
- package/front_end/panels/ai_assistance/ai_assistance.ts +4 -0
- package/front_end/panels/ai_assistance/components/ChatView.ts +945 -772
- package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.ts +57 -0
- package/front_end/panels/ai_assistance/components/UserActionRow.test.ts +67 -29
- package/front_end/panels/ai_assistance/components/UserActionRow.ts +294 -244
- package/front_end/panels/ai_assistance/components/chatView.css +87 -22
- package/front_end/panels/ai_assistance/components/userActionRow.css +72 -78
- package/front_end/panels/ai_assistance/data_formatters/FileFormatter.test.ts +115 -0
- package/front_end/panels/ai_assistance/data_formatters/FileFormatter.ts +81 -0
- package/front_end/panels/ai_assistance/data_formatters/NetworkRequestFormatter.test.ts +87 -0
- package/front_end/panels/ai_assistance/data_formatters/NetworkRequestFormatter.ts +272 -0
- package/front_end/panels/ai_assistance/debug.ts +30 -0
- package/front_end/panels/animation/AnimationScreenshotPopover.ts +2 -1
- package/front_end/panels/animation/AnimationTimeline.test.ts +8 -8
- package/front_end/panels/animation/AnimationTimeline.ts +8 -3
- package/front_end/panels/animation/AnimationUI.ts +6 -6
- package/front_end/panels/animation/animationTimeline.css +1 -5
- package/front_end/panels/application/AppManifestView.test.ts +7 -5
- package/front_end/panels/application/AppManifestView.ts +16 -20
- package/front_end/panels/application/ApplicationPanelSidebar.test.ts +5 -3
- package/front_end/panels/application/ApplicationPanelSidebar.ts +94 -25
- package/front_end/panels/application/ApplicationPanelTreeElement.ts +34 -2
- package/front_end/panels/application/BackgroundServiceModel.ts +4 -4
- package/front_end/panels/application/BackgroundServiceView.test.ts +23 -2
- package/front_end/panels/application/BackgroundServiceView.ts +37 -33
- package/front_end/panels/application/CookieItemsView.ts +7 -6
- package/front_end/panels/application/DOMStorageItemsView.ts +38 -53
- package/front_end/panels/application/DOMStorageModel.ts +11 -11
- package/front_end/panels/application/ExtensionStorageItemsView.test.ts +18 -25
- package/front_end/panels/application/ExtensionStorageItemsView.ts +41 -96
- package/front_end/panels/application/ExtensionStorageModel.test.ts +4 -2
- package/front_end/panels/application/ExtensionStorageModel.ts +4 -4
- package/front_end/panels/application/IndexedDBModel.ts +8 -8
- package/front_end/panels/application/IndexedDBViews.ts +11 -14
- package/front_end/panels/application/InterestGroupStorageModel.ts +4 -4
- package/front_end/panels/application/InterestGroupStorageView.test.ts +9 -33
- package/front_end/panels/application/InterestGroupStorageView.ts +38 -33
- package/front_end/panels/application/KeyValueStorageItemsView.test.ts +122 -0
- package/front_end/panels/application/KeyValueStorageItemsView.ts +356 -0
- package/front_end/panels/application/OpenedWindowDetailsView.ts +4 -10
- package/front_end/panels/application/PreloadingTreeElement.ts +2 -2
- package/front_end/panels/application/ReportingApiReportsView.test.ts +1 -13
- package/front_end/panels/application/ReportingApiReportsView.ts +14 -19
- package/front_end/panels/application/ReportingApiView.test.ts +13 -0
- package/front_end/panels/application/ResourcesPanel.ts +11 -12
- package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +11 -1
- package/front_end/panels/application/ServiceWorkerCacheViews.ts +12 -5
- package/front_end/panels/application/ServiceWorkersView.ts +1 -6
- package/front_end/panels/application/SharedStorageEventsView.test.ts +4 -19
- package/front_end/panels/application/SharedStorageEventsView.ts +24 -28
- package/front_end/panels/application/SharedStorageItemsView.test.ts +1 -1
- package/front_end/panels/application/SharedStorageItemsView.ts +14 -10
- package/front_end/panels/application/SharedStorageModel.ts +9 -9
- package/front_end/panels/application/StorageBucketsTreeElement.ts +19 -3
- package/front_end/panels/application/StorageItemsView.ts +4 -2
- package/front_end/panels/application/StorageView.ts +4 -11
- package/front_end/panels/application/appManifestView.css +1 -1
- package/front_end/panels/application/application.ts +2 -0
- package/front_end/panels/application/components/BackForwardCacheView.ts +28 -25
- package/front_end/panels/application/components/BounceTrackingMitigationsView.test.ts +7 -8
- package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +24 -38
- package/front_end/panels/application/components/EndpointsGrid.test.ts +10 -9
- package/front_end/panels/application/components/EndpointsGrid.ts +40 -51
- package/front_end/panels/application/components/FrameDetailsView.ts +59 -56
- package/front_end/panels/application/components/InterestGroupAccessGrid.test.ts +3 -7
- package/front_end/panels/application/components/InterestGroupAccessGrid.ts +65 -73
- package/front_end/panels/application/components/OriginTrialTreeView.test.ts +1 -1
- package/front_end/panels/application/components/OriginTrialTreeView.ts +23 -15
- package/front_end/panels/application/components/PermissionsPolicySection.ts +17 -13
- package/front_end/panels/application/components/ProtocolHandlersView.test.ts +5 -3
- package/front_end/panels/application/components/ProtocolHandlersView.ts +16 -10
- package/front_end/panels/application/components/ReportsGrid.test.ts +10 -9
- package/front_end/panels/application/components/ReportsGrid.ts +67 -81
- package/front_end/panels/application/components/ServiceWorkerRouterView.ts +8 -4
- package/front_end/panels/application/components/SharedStorageAccessGrid.test.ts +6 -12
- package/front_end/panels/application/components/SharedStorageAccessGrid.ts +96 -97
- package/front_end/panels/application/components/SharedStorageMetadataView.ts +10 -6
- package/front_end/panels/application/components/StackTrace.test.ts +4 -3
- package/front_end/panels/application/components/StackTrace.ts +16 -10
- package/front_end/panels/application/components/StorageMetadataView.ts +18 -18
- package/front_end/panels/application/components/TrustTokensView.test.ts +7 -11
- package/front_end/panels/application/components/TrustTokensView.ts +75 -76
- package/front_end/panels/application/components/bounceTrackingMitigationsView.css +1 -2
- package/front_end/panels/application/components/interestGroupAccessGrid.css +3 -2
- package/front_end/panels/application/components/reportingApiGrid.css +3 -13
- package/front_end/panels/application/components/sharedStorageAccessGrid.css +3 -2
- package/front_end/panels/application/components/trustTokensView.css +3 -2
- package/front_end/panels/application/interestGroupStorageView.css +0 -13
- package/front_end/panels/application/preloading/PreloadingView.test.ts +19 -27
- package/front_end/panels/application/preloading/PreloadingView.ts +17 -26
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +9 -12
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +63 -93
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.test.ts +75 -12
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +43 -25
- package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +18 -19
- package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +24 -20
- package/front_end/panels/application/preloading/components/PreloadingGrid.ts +57 -124
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.test.ts +4 -2
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +31 -63
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +12 -8
- package/front_end/panels/application/preloading/components/RuleSetGrid.test.ts +10 -6
- package/front_end/panels/application/preloading/components/RuleSetGrid.ts +126 -219
- package/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts +36 -34
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +20 -16
- package/front_end/panels/application/preloading/components/preloadingDetailsReportView.css +8 -0
- package/front_end/panels/application/preloading/components/preloadingDisabledInfobar.css +6 -19
- package/front_end/panels/application/preloading/components/preloadingGrid.css +2 -2
- package/front_end/panels/application/preloading/components/ruleSetGrid.css +2 -2
- package/front_end/panels/application/sharedStorageEventsView.css +0 -13
- package/front_end/panels/autofill/AutofillView.test.ts +14 -11
- package/front_end/panels/autofill/AutofillView.ts +56 -114
- package/front_end/panels/autofill/autofillView.css +5 -0
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +3 -6
- package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +22 -14
- package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +2 -5
- package/front_end/panels/browser_debugger/domBreakpointsSidebarPane.css +4 -0
- package/front_end/panels/changes/ChangesSidebar.ts +6 -9
- package/front_end/panels/changes/ChangesView.ts +45 -22
- package/front_end/panels/changes/changesView.css +2 -2
- package/front_end/panels/console/ConsoleContextSelector.ts +1 -1
- package/front_end/panels/console/ConsoleFilter.ts +3 -3
- package/front_end/panels/console/ConsolePinPane.ts +6 -7
- package/front_end/panels/console/ConsolePrompt.ts +5 -8
- package/front_end/panels/console/ConsoleSidebar.ts +4 -8
- package/front_end/panels/console/ConsoleView.test.ts +31 -4
- package/front_end/panels/console/ConsoleView.ts +61 -59
- package/front_end/panels/console/ConsoleViewMessage.test.ts +5 -3
- package/front_end/panels/console/ConsoleViewMessage.ts +34 -1
- package/front_end/panels/console/ErrorStackParser.test.ts +13 -13
- package/front_end/panels/console/consoleSidebar.css +4 -0
- package/front_end/panels/console/consoleView.css +13 -5
- package/front_end/panels/console_counters/WarningErrorCounter.ts +1 -0
- package/front_end/panels/coverage/CoverageDecorationManager.test.ts +4 -3
- package/front_end/panels/coverage/CoverageListView.ts +2 -5
- package/front_end/panels/coverage/CoverageModel.ts +8 -8
- package/front_end/panels/coverage/CoverageView.ts +11 -7
- package/front_end/panels/coverage/coverageView.css +1 -2
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +5 -11
- package/front_end/panels/css_overview/CSSOverviewController.ts +8 -8
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +1 -4
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -5
- package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +8 -9
- package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +6 -4
- package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +151 -239
- package/front_end/panels/developer_resources/DeveloperResourcesView.test.ts +7 -6
- package/front_end/panels/developer_resources/DeveloperResourcesView.ts +15 -14
- package/front_end/panels/developer_resources/developerResourcesListView.css +4 -8
- package/front_end/panels/developer_resources/developerResourcesView.css +0 -1
- package/front_end/panels/elements/AccessibilityTreeUtils.ts +3 -3
- package/front_end/panels/elements/AccessibilityTreeView.test.ts +3 -1
- package/front_end/panels/elements/AccessibilityTreeView.ts +5 -1
- package/front_end/panels/elements/ClassesPaneWidget.ts +2 -2
- package/front_end/panels/elements/ColorSwatchPopoverIcon.test.ts +63 -0
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +44 -18
- package/front_end/panels/elements/ComputedStyleModel.ts +4 -4
- package/front_end/panels/elements/ComputedStyleWidget.test.ts +153 -0
- package/front_end/panels/elements/ComputedStyleWidget.ts +27 -13
- package/front_end/panels/elements/DOMLinkifier.ts +2 -2
- package/front_end/panels/elements/ElementStatePaneWidget.test.ts +8 -19
- package/front_end/panels/elements/ElementStatePaneWidget.ts +10 -2
- package/front_end/panels/elements/ElementsPanel.ts +2 -2
- package/front_end/panels/elements/ElementsSidebarPane.ts +6 -2
- package/front_end/panels/elements/ElementsTreeElement.ts +18 -20
- package/front_end/panels/elements/ElementsTreeOutline.test.ts +93 -0
- package/front_end/panels/elements/ElementsTreeOutline.ts +18 -7
- package/front_end/panels/elements/EventListenersWidget.ts +1 -1
- package/front_end/panels/elements/LayersWidget.ts +3 -3
- package/front_end/panels/elements/MetricsSidebarPane.ts +1 -4
- package/front_end/panels/elements/NodeStackTraceWidget.ts +1 -1
- package/front_end/panels/elements/PlatformFontsWidget.ts +4 -9
- package/front_end/panels/elements/PropertiesWidget.ts +4 -6
- package/front_end/panels/elements/PropertyRenderer.ts +31 -16
- package/front_end/panels/elements/StylePropertiesSection.test.ts +15 -49
- package/front_end/panels/elements/StylePropertiesSection.ts +19 -14
- package/front_end/panels/elements/StylePropertyHighlighter.test.ts +3 -0
- package/front_end/panels/elements/StylePropertyTreeElement.test.ts +171 -172
- package/front_end/panels/elements/StylePropertyTreeElement.ts +329 -177
- package/front_end/panels/elements/StylesSidebarPane.test.ts +423 -27
- package/front_end/panels/elements/StylesSidebarPane.ts +173 -30
- package/front_end/panels/elements/TopLayerContainer.ts +1 -2
- package/front_end/panels/elements/WebCustomData.test.ts +1 -1
- package/front_end/panels/elements/components/AccessibilityTreeNode.ts +7 -5
- package/front_end/panels/elements/components/AnchorFunctionLinkSwatch.ts +17 -13
- package/front_end/panels/elements/components/CSSHintDetailsView.ts +6 -4
- package/front_end/panels/elements/components/CSSPropertyDocsView.ts +8 -6
- package/front_end/panels/elements/components/CSSPropertyIconResolver.ts +31 -9
- package/front_end/panels/elements/components/CSSQuery.ts +14 -6
- package/front_end/panels/elements/components/CSSVariableValueView.ts +9 -5
- package/front_end/panels/elements/components/ComputedStyleProperty.ts +5 -3
- package/front_end/panels/elements/components/ComputedStyleTrace.ts +6 -4
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +12 -8
- package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +6 -4
- package/front_end/panels/elements/components/LayoutPane.ts +15 -8
- package/front_end/panels/elements/components/QueryContainer.ts +17 -13
- package/front_end/panels/elements/components/StylePropertyEditor.ts +11 -7
- package/front_end/panels/elements/components/layoutPane.css +1 -1
- package/front_end/panels/elements/elements.ts +0 -2
- package/front_end/panels/elements/elementsTreeOutline.css +3 -5
- package/front_end/panels/elements/stylePropertiesTreeOutline.css +4 -0
- package/front_end/panels/emulation/DeviceModeToolbar.ts +28 -42
- package/front_end/panels/emulation/DeviceModeView.ts +2 -3
- package/front_end/panels/emulation/DeviceModeWrapper.ts +1 -1
- package/front_end/panels/emulation/InspectedPagePlaceholder.ts +5 -5
- package/front_end/panels/emulation/MediaQueryInspector.ts +1 -1
- package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +3 -6
- package/front_end/panels/emulation/deviceModeView.css +17 -13
- package/front_end/panels/emulation/emulation-meta.ts +0 -1
- package/front_end/panels/event_listeners/EventListenersUtils.ts +4 -3
- package/front_end/panels/event_listeners/EventListenersView.ts +2 -5
- package/front_end/panels/explain/PromptBuilder.test.ts +39 -16
- package/front_end/panels/explain/PromptBuilder.ts +10 -11
- package/front_end/panels/explain/components/ConsoleInsight.test.ts +226 -0
- package/front_end/panels/explain/components/ConsoleInsight.ts +234 -47
- package/front_end/panels/explain/components/consoleInsight.css +55 -0
- package/front_end/panels/explain/components/consoleInsightSourcesList.css +2 -0
- package/front_end/panels/issues/AffectedBlockedByResponseView.ts +3 -3
- package/front_end/panels/issues/AffectedDescendantsWithinSelectElementView.ts +64 -0
- package/front_end/panels/issues/AffectedDirectivesView.ts +2 -2
- package/front_end/panels/issues/AffectedHeavyAdView.ts +1 -1
- package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/AffectedTrackingSitesView.ts +1 -0
- package/front_end/panels/issues/IssueAggregator.ts +17 -7
- package/front_end/panels/issues/IssueView.ts +2 -0
- package/front_end/panels/issues/IssuesPane.ts +9 -8
- package/front_end/panels/issues/components/ElementsPanelLink.ts +6 -4
- package/front_end/panels/issues/components/HideIssuesMenu.ts +6 -4
- package/front_end/panels/issues/issuesPane.css +1 -1
- package/front_end/panels/issues/issuesTree.css +7 -4
- package/front_end/panels/layer_viewer/LayerDetailsView.ts +12 -6
- package/front_end/panels/layer_viewer/LayerTreeOutline.ts +3 -3
- package/front_end/panels/layer_viewer/LayerViewHost.ts +0 -1
- package/front_end/panels/layer_viewer/Layers3DView.ts +7 -7
- package/front_end/panels/layer_viewer/PaintProfilerView.ts +5 -8
- package/front_end/panels/layer_viewer/TransformController.ts +8 -5
- package/front_end/panels/layer_viewer/layerDetailsView.css +4 -0
- package/front_end/panels/layer_viewer/layers3DView.css +1 -1
- package/front_end/panels/layers/LayerTreeModel.ts +5 -5
- package/front_end/panels/layers/LayersPanel.ts +1 -2
- package/front_end/panels/lighthouse/LighthouseController.ts +9 -9
- package/front_end/panels/lighthouse/LighthousePanel.ts +10 -9
- package/front_end/panels/lighthouse/LighthouseProtocolService.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseReportSelector.ts +3 -7
- package/front_end/panels/lighthouse/LighthouseStartView.ts +5 -2
- package/front_end/panels/lighthouse/LighthouseStatusView.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseTimespanView.ts +1 -1
- package/front_end/panels/lighthouse/lighthousePanel.css +2 -2
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.test.ts +1 -1
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +14 -14
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.test.ts +3 -3
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +3 -3
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +9 -5
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +26 -26
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +10 -6
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +9 -5
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +15 -11
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +16 -9
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +4 -3
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +8 -4
- package/front_end/panels/linear_memory_inspector/components/valueInterpreterDisplay.css +1 -0
- package/front_end/panels/media/EventDisplayTable.ts +2 -5
- package/front_end/panels/media/EventTimelineView.ts +3 -3
- package/front_end/panels/media/MediaModel.ts +7 -7
- package/front_end/panels/media/PlayerListView.ts +1 -5
- package/front_end/panels/media/PlayerMessagesView.ts +5 -7
- package/front_end/panels/media/PlayerPropertiesView.ts +5 -8
- package/front_end/panels/mobile_throttling/CalibrationController.ts +368 -0
- package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +5 -4
- package/front_end/panels/mobile_throttling/ThrottlingManager.test.ts +7 -9
- package/front_end/panels/mobile_throttling/ThrottlingManager.ts +63 -39
- package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +40 -14
- package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +334 -11
- package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +1 -0
- package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +32 -0
- package/front_end/panels/network/BinaryResourceView.ts +7 -9
- package/front_end/panels/network/BlockedURLsPane.test.ts +4 -2
- package/front_end/panels/network/BlockedURLsPane.ts +9 -7
- package/front_end/panels/network/EventSourceMessagesView.ts +6 -5
- package/front_end/panels/network/NetworkConfigView.ts +3 -5
- package/front_end/panels/network/NetworkDataGridNode.test.ts +38 -58
- package/front_end/panels/network/NetworkDataGridNode.ts +4 -4
- package/front_end/panels/network/NetworkItemView.test.ts +26 -28
- package/front_end/panels/network/NetworkItemView.ts +9 -11
- package/front_end/panels/network/NetworkLogView.test.ts +24 -24
- package/front_end/panels/network/NetworkLogView.ts +9 -6
- package/front_end/panels/network/NetworkManageCustomHeadersView.ts +3 -3
- package/front_end/panels/network/NetworkOverview.ts +12 -12
- package/front_end/panels/network/NetworkPanel.test.ts +1 -2
- package/front_end/panels/network/NetworkPanel.ts +43 -46
- package/front_end/panels/network/NetworkSearchScope.test.ts +5 -5
- package/front_end/panels/network/NetworkTimeCalculator.ts +3 -3
- package/front_end/panels/network/NetworkWaterfallColumn.ts +5 -3
- package/front_end/panels/network/RequestCookiesView.test.ts +5 -4
- package/front_end/panels/network/RequestCookiesView.ts +4 -6
- package/front_end/panels/network/RequestHTMLView.ts +2 -1
- package/front_end/panels/network/RequestInitiatorView.ts +5 -5
- package/front_end/panels/network/RequestPayloadView.ts +20 -12
- package/front_end/panels/network/RequestPreviewView.test.ts +8 -9
- package/front_end/panels/network/RequestPreviewView.ts +5 -3
- package/front_end/panels/network/RequestResponseView.test.ts +8 -8
- package/front_end/panels/network/RequestResponseView.ts +8 -3
- package/front_end/panels/network/RequestTimingView.test.ts +5 -3
- package/front_end/panels/network/RequestTimingView.ts +1 -1
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +11 -5
- package/front_end/panels/network/SignedExchangeInfoView.ts +6 -10
- package/front_end/panels/network/binaryResourceView.css +1 -1
- package/front_end/panels/network/components/EditableSpan.ts +5 -3
- package/front_end/panels/network/components/HeaderSectionRow.ts +25 -24
- package/front_end/panels/network/components/RequestHeaderSection.ts +9 -5
- package/front_end/panels/network/components/RequestHeadersView.test.ts +15 -20
- package/front_end/panels/network/components/RequestHeadersView.ts +28 -24
- package/front_end/panels/network/components/RequestTrustTokensView.ts +29 -19
- package/front_end/panels/network/components/ResponseHeaderSection.test.ts +25 -32
- package/front_end/panels/network/components/ResponseHeaderSection.ts +8 -8
- package/front_end/panels/network/components/WebBundleInfoView.css +8 -0
- package/front_end/panels/network/components/WebBundleInfoView.ts +32 -49
- package/front_end/panels/network/network-meta.ts +5 -2
- package/front_end/panels/network/networkConfigView.css +3 -3
- package/front_end/panels/network/networkLogView.css +1 -1
- package/front_end/panels/network/networkManageCustomHeadersView.css +7 -11
- package/front_end/panels/network/networkPanel.css +9 -12
- package/front_end/panels/network/requestInitiatorView.css +1 -1
- package/front_end/panels/network/webSocketFrameView.css +1 -1
- package/front_end/panels/performance_monitor/PerformanceMonitor.ts +4 -4
- package/front_end/panels/profiler/HeapDetachedElementsView.ts +5 -5
- package/front_end/panels/profiler/HeapProfileView.ts +7 -7
- package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +5 -5
- package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +15 -15
- package/front_end/panels/profiler/HeapSnapshotProxy.ts +3 -3
- package/front_end/panels/profiler/HeapSnapshotView.ts +36 -17
- package/front_end/panels/profiler/HeapTimelineOverview.ts +4 -4
- package/front_end/panels/profiler/IsolateSelector.ts +1 -1
- package/front_end/panels/profiler/LiveHeapProfileView.ts +5 -3
- package/front_end/panels/profiler/ProfileDataGrid.ts +1 -2
- package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +5 -5
- package/front_end/panels/profiler/ProfileHeader.ts +12 -12
- package/front_end/panels/profiler/ProfileLauncherView.ts +4 -7
- package/front_end/panels/profiler/ProfileView.ts +1 -1
- package/front_end/panels/profiler/ProfilesPanel.ts +12 -11
- package/front_end/panels/profiler/TopDownProfileDataGrid.ts +2 -2
- package/front_end/panels/profiler/liveHeapProfile.css +1 -1
- package/front_end/panels/profiler/profileLauncherView.css +1 -2
- package/front_end/panels/protocol_monitor/{components/JSONEditor.css → JSONEditor.css} +6 -1
- package/front_end/panels/protocol_monitor/{components/JSONEditor.test.ts → JSONEditor.test.ts} +90 -91
- package/front_end/panels/protocol_monitor/{components/JSONEditor.ts → JSONEditor.ts} +159 -81
- package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +293 -360
- package/front_end/panels/protocol_monitor/protocol_monitor.ts +2 -2
- package/front_end/panels/recorder/RecorderController.test.ts +0 -2
- package/front_end/panels/recorder/RecorderController.ts +48 -18
- package/front_end/panels/recorder/components/ControlButton.ts +7 -3
- package/front_end/panels/recorder/components/CreateRecordingView.ts +8 -6
- package/front_end/panels/recorder/components/ExtensionView.ts +8 -4
- package/front_end/panels/recorder/components/RecordingListView.ts +8 -4
- package/front_end/panels/recorder/components/RecordingView.ts +22 -18
- package/front_end/panels/recorder/components/ReplaySection.ts +3 -3
- package/front_end/panels/recorder/components/SelectButton.ts +14 -10
- package/front_end/panels/recorder/components/StepEditor.ts +18 -14
- package/front_end/panels/recorder/components/StepView.ts +20 -17
- package/front_end/panels/recorder/components/TimelineSection.ts +9 -5
- package/front_end/panels/recorder/components/components.ts +0 -2
- package/front_end/panels/recorder/controllers/SelectorPicker.ts +3 -4
- package/front_end/panels/recorder/converters/Converter.ts +1 -1
- package/front_end/panels/recorder/extensions/ExtensionManager.ts +3 -3
- package/front_end/panels/recorder/injected/injected.ts +2 -2
- package/front_end/panels/recorder/injected/selectors/CSSSelector.test.ts +0 -2
- package/front_end/panels/recorder/models/RecordingPlayer.ts +10 -13
- package/front_end/panels/recorder/models/RecordingSession.ts +31 -34
- package/front_end/panels/recorder/models/Schema.ts +1 -1
- package/front_end/panels/recorder/models/SchemaUtils.ts +4 -3
- package/front_end/panels/recorder/recorderController.css +2 -1
- package/front_end/panels/recorder/util/util.ts +1 -1
- package/front_end/panels/screencast/ScreencastView.ts +5 -21
- package/front_end/panels/search/SearchResultsPane.ts +1 -4
- package/front_end/panels/search/SearchView.ts +8 -5
- package/front_end/panels/security/CookieControlsTreeElement.ts +7 -4
- package/front_end/panels/security/CookieControlsView.test.ts +38 -1
- package/front_end/panels/security/CookieControlsView.ts +183 -68
- package/front_end/panels/security/CookieReportTreeElement.ts +7 -4
- package/front_end/panels/security/CookieReportView.test.ts +2 -2
- package/front_end/panels/security/CookieReportView.ts +87 -42
- package/front_end/panels/security/OriginTreeElement.ts +2 -3
- package/front_end/panels/security/SecurityModel.ts +3 -3
- package/front_end/panels/security/SecurityPanel.test.ts +43 -3
- package/front_end/panels/security/SecurityPanel.ts +48 -50
- package/front_end/panels/security/SecurityPanelSidebar.ts +82 -23
- package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +21 -2
- package/front_end/panels/security/cookieControlsView.css +29 -4
- package/front_end/panels/security/cookieReportView.css +4 -3
- package/front_end/panels/security/security-meta.ts +20 -7
- package/front_end/panels/sensors/LocationsSettingsTab.ts +18 -19
- package/front_end/panels/sensors/SensorsView.ts +3 -7
- package/front_end/panels/sensors/sensors.css +1 -1
- package/front_end/panels/settings/AISettingsTab.test.ts +3 -4
- package/front_end/panels/settings/AISettingsTab.ts +47 -29
- package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +18 -29
- package/front_end/panels/settings/KeybindsSettingsTab.ts +11 -12
- package/front_end/panels/settings/SettingsScreen.ts +9 -9
- package/front_end/panels/settings/components/SyncSection.ts +9 -6
- package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +11 -16
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +14 -10
- package/front_end/panels/settings/emulation/utils/UserAgentMetadata.ts +5 -5
- package/front_end/panels/settings/settingsScreen.css +1 -1
- package/front_end/panels/snippets/ScriptSnippetFileSystem.test.ts +4 -2
- package/front_end/panels/snippets/SnippetsQuickOpen.ts +9 -3
- package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -4
- package/front_end/panels/sources/BreakpointEditDialog.test.ts +2 -3
- package/front_end/panels/sources/BreakpointEditDialog.ts +6 -11
- package/front_end/panels/sources/CSSPlugin.test.ts +3 -2
- package/front_end/panels/sources/CallStackSidebarPane.ts +3 -6
- package/front_end/panels/sources/CoveragePlugin.test.ts +4 -2
- package/front_end/panels/sources/CoveragePlugin.ts +4 -0
- package/front_end/panels/sources/DebuggerPausedMessage.ts +1 -1
- package/front_end/panels/sources/DebuggerPlugin.test.ts +4 -2
- package/front_end/panels/sources/DebuggerPlugin.ts +19 -15
- package/front_end/panels/sources/FilePathScoreFunction.ts +39 -19
- package/front_end/panels/sources/FilteredUISourceCodeListProvider.test.ts +3 -3
- package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +2 -1
- package/front_end/panels/sources/GoToLineQuickOpen.ts +16 -22
- package/front_end/panels/sources/NavigatorView.test.ts +9 -7
- package/front_end/panels/sources/NavigatorView.ts +34 -31
- package/front_end/panels/sources/OpenFileQuickOpen.ts +2 -2
- package/front_end/panels/sources/OutlineQuickOpen.ts +9 -6
- package/front_end/panels/sources/Plugin.ts +1 -1
- package/front_end/panels/sources/ProfilePlugin.ts +5 -1
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +2 -5
- package/front_end/panels/sources/SnippetsPlugin.ts +2 -2
- package/front_end/panels/sources/SourcesNavigator.test.ts +40 -38
- package/front_end/panels/sources/SourcesNavigator.ts +45 -49
- package/front_end/panels/sources/SourcesPanel.ts +13 -10
- package/front_end/panels/sources/SourcesView.test.ts +11 -10
- package/front_end/panels/sources/SourcesView.ts +39 -28
- package/front_end/panels/sources/TabbedEditorContainer.test.ts +12 -19
- package/front_end/panels/sources/TabbedEditorContainer.ts +6 -6
- package/front_end/panels/sources/ThreadsSidebarPane.ts +1 -4
- package/front_end/panels/sources/UISourceCodeFrame.ts +7 -3
- package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +5 -9
- package/front_end/panels/sources/components/BreakpointsView.test.ts +19 -18
- package/front_end/panels/sources/components/BreakpointsView.ts +15 -11
- package/front_end/panels/sources/components/BreakpointsViewUtils.test.ts +44 -42
- package/front_end/panels/sources/components/HeadersView.test.ts +4 -2
- package/front_end/panels/sources/components/HeadersView.ts +18 -18
- package/front_end/panels/sources/components/breakpointsView.css +7 -7
- package/front_end/panels/sources/dialog.css +1 -1
- package/front_end/panels/sources/sources-meta.ts +12 -5
- package/front_end/panels/sources/sourcesPanel.css +5 -0
- package/front_end/panels/sources/sourcesView.css +0 -4
- package/front_end/panels/timeline/AnimationsTrackAppender.ts +0 -5
- package/front_end/panels/timeline/AnnotationHelpers.test.ts +4 -4
- package/front_end/panels/timeline/AnnotationHelpers.ts +8 -9
- package/front_end/panels/timeline/AppenderUtils.ts +16 -13
- package/front_end/panels/timeline/BenchmarkEvents.ts +1 -1
- package/front_end/panels/timeline/Breadcrumbs.test.ts +29 -29
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +41 -58
- package/front_end/panels/timeline/CountersGraph.ts +3 -2
- package/front_end/panels/timeline/EntriesFilter.test.ts +12 -63
- package/front_end/panels/timeline/EntriesFilter.ts +18 -33
- package/front_end/panels/timeline/EventsTimelineTreeView.ts +5 -5
- package/front_end/panels/timeline/ExtensionTrackAppender.ts +2 -2
- package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +22 -19
- package/front_end/panels/timeline/ModificationsManager.test.ts +18 -18
- package/front_end/panels/timeline/ModificationsManager.ts +8 -9
- package/front_end/panels/timeline/NetworkTrackAppender.ts +8 -10
- package/front_end/panels/timeline/README.md +30 -0
- package/front_end/panels/timeline/ServerTimingsTrackAppender.ts +0 -4
- package/front_end/panels/timeline/ThirdPartyTreeView.test.ts +68 -0
- package/front_end/panels/timeline/ThirdPartyTreeView.ts +300 -0
- package/front_end/panels/timeline/ThreadAppender.ts +6 -13
- package/front_end/panels/timeline/TimelineController.ts +3 -4
- package/front_end/panels/timeline/TimelineDetailsView.test.ts +36 -13
- package/front_end/panels/timeline/TimelineDetailsView.ts +91 -31
- package/front_end/panels/timeline/TimelineEventOverview.ts +27 -27
- package/front_end/panels/timeline/TimelineFilters.test.ts +5 -7
- package/front_end/panels/timeline/TimelineFilters.ts +2 -2
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +4 -3
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +85 -64
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +7 -8
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +18 -20
- package/front_end/panels/timeline/TimelineFlameChartView.test.ts +75 -21
- package/front_end/panels/timeline/TimelineFlameChartView.ts +259 -74
- package/front_end/panels/timeline/TimelineHistoryManager.ts +4 -3
- package/front_end/panels/timeline/TimelineLayersView.ts +1 -1
- package/front_end/panels/timeline/TimelineLoader.ts +5 -5
- package/front_end/panels/timeline/TimelineMiniMap.test.ts +1 -1
- package/front_end/panels/timeline/TimelineMiniMap.ts +8 -12
- package/front_end/panels/timeline/TimelinePaintProfilerView.ts +2 -5
- package/front_end/panels/timeline/TimelinePanel.test.ts +140 -0
- package/front_end/panels/timeline/TimelinePanel.ts +160 -164
- package/front_end/panels/timeline/TimelineSelection.test.ts +1 -1
- package/front_end/panels/timeline/TimelineSelection.ts +9 -9
- package/front_end/panels/timeline/TimelineSelectorStatsView.ts +148 -186
- package/front_end/panels/timeline/TimelineTreeView.test.ts +24 -22
- package/front_end/panels/timeline/TimelineTreeView.ts +153 -46
- package/front_end/panels/timeline/TimelineUIUtils.test.ts +130 -101
- package/front_end/panels/timeline/TimelineUIUtils.ts +108 -200
- package/front_end/panels/timeline/TimingsTrackAppender.ts +9 -9
- package/front_end/panels/timeline/components/Breadcrumbs.ts +3 -3
- package/front_end/panels/timeline/components/BreadcrumbsUI.test.ts +6 -6
- package/front_end/panels/timeline/components/BreadcrumbsUI.ts +10 -6
- package/front_end/panels/timeline/components/CPUThrottlingSelector.test.ts +12 -4
- package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +117 -44
- package/front_end/panels/timeline/components/DetailsView.ts +2 -2
- package/front_end/panels/timeline/components/FieldSettingsDialog.ts +13 -9
- package/front_end/panels/timeline/components/IgnoreListSetting.test.ts +43 -45
- package/front_end/panels/timeline/components/IgnoreListSetting.ts +35 -13
- package/front_end/panels/timeline/components/InteractionBreakdown.ts +8 -4
- package/front_end/panels/timeline/components/LayoutShiftDetails.ts +58 -38
- package/front_end/panels/timeline/components/LiveMetricsView.test.ts +2 -2
- package/front_end/panels/timeline/components/LiveMetricsView.ts +36 -28
- package/front_end/panels/timeline/components/MetricCard.ts +25 -45
- package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +4 -1
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +47 -27
- package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +18 -15
- package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +9 -5
- package/front_end/panels/timeline/components/OriginMap.ts +10 -10
- package/front_end/panels/timeline/components/RelatedInsightChips.ts +9 -5
- package/front_end/panels/timeline/components/Sidebar.test.ts +86 -8
- package/front_end/panels/timeline/components/Sidebar.ts +19 -24
- package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +6 -6
- package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +23 -15
- package/front_end/panels/timeline/components/SidebarInsightsTab.ts +30 -13
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +29 -7
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +238 -48
- package/front_end/panels/timeline/components/TimelineSummary.test.ts +4 -2
- package/front_end/panels/timeline/components/TimelineSummary.ts +40 -36
- package/front_end/panels/timeline/components/Utils.test.ts +2 -2
- package/front_end/panels/timeline/components/Utils.ts +52 -5
- package/front_end/panels/timeline/components/fieldSettingsDialog.css +7 -4
- package/front_end/panels/timeline/components/ignoreListSetting.css +1 -2
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.test.ts +8 -6
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +47 -20
- package/front_end/panels/timeline/components/insights/CLSCulprits.ts +11 -101
- package/front_end/panels/timeline/components/insights/Checklist.ts +108 -0
- package/front_end/panels/timeline/components/insights/DOMSize.ts +83 -18
- package/front_end/panels/timeline/components/insights/DocumentLatency.ts +18 -101
- package/front_end/panels/timeline/components/insights/EventRef.ts +12 -8
- package/front_end/panels/timeline/components/insights/FontDisplay.ts +9 -18
- package/front_end/panels/timeline/components/insights/ForcedReflow.ts +105 -0
- package/front_end/panels/timeline/components/insights/ImageDelivery.ts +8 -26
- package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +10 -40
- package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +25 -94
- package/front_end/panels/timeline/components/insights/LCPPhases.ts +17 -53
- package/front_end/panels/timeline/components/insights/LongCriticalNetworkTree.ts +53 -0
- package/front_end/panels/timeline/components/insights/NodeLink.ts +42 -27
- package/front_end/panels/timeline/components/insights/README.md +6 -8
- package/front_end/panels/timeline/components/insights/RenderBlocking.ts +9 -25
- package/front_end/panels/timeline/components/insights/SidebarInsight.ts +4 -4
- package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +15 -44
- package/front_end/panels/timeline/components/insights/Table.ts +21 -14
- package/front_end/panels/timeline/components/insights/ThirdParties.ts +11 -25
- package/front_end/panels/timeline/components/insights/Viewport.ts +16 -11
- package/front_end/panels/timeline/components/insights/baseInsightComponent.css +3 -39
- package/front_end/panels/timeline/components/insights/checklist.css +33 -0
- package/front_end/panels/timeline/components/insights/insights.ts +6 -0
- package/front_end/panels/timeline/components/insights/table.css +1 -0
- package/front_end/panels/timeline/components/layoutShiftDetails.css +1 -0
- package/front_end/panels/timeline/components/liveMetricsView.css +1 -1
- package/front_end/panels/timeline/components/sidebarAnnotationsTab.css +1 -1
- package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +54 -3
- package/front_end/panels/timeline/components/timelineSummary.css +14 -7
- package/front_end/panels/timeline/docs/flame_chart_migration.md +1 -3
- package/front_end/panels/timeline/docs/sync_tracks.md +1 -1
- package/front_end/panels/timeline/enable-easter-egg.js +1 -0
- package/front_end/panels/timeline/fixtures/traces/README.md +18 -2
- package/front_end/panels/timeline/fixtures/traces/crux.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/dom-size-overlap.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/dom-size.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/forced-reflow.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/lcp-fetchpriority-high.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/lcp-late-paint-event.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/multi-frame-dom-stats.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/timings-track.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/web-dev-initial-url.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/web-dev-screenshot-source-ids.json.gz +0 -0
- package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +42 -7
- package/front_end/panels/timeline/overlays/OverlaysImpl.ts +125 -55
- package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +37 -35
- package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +9 -6
- package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +10 -7
- package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +15 -11
- package/front_end/panels/timeline/timeline.ts +2 -0
- package/front_end/panels/timeline/timelineFlameChartView.css +2 -3
- package/front_end/panels/timeline/timelineFlamechartPopover.css +3 -0
- package/front_end/panels/timeline/timelinePanel.css +224 -21
- package/front_end/panels/timeline/timelineSelectorStatsView.css +9 -0
- package/front_end/panels/timeline/timelineStatusDialog.css +23 -11
- package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +3 -4
- package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +34 -35
- package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +6 -7
- package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +2 -3
- package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +3 -4
- package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +9 -7
- package/front_end/panels/timeline/track_appenders/NetworkTrackAppender.test.ts +2 -3
- package/front_end/panels/timeline/track_appenders/ServerTimingsTrackAppender.test.ts +5 -9
- package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +8 -7
- package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +7 -8
- package/front_end/panels/timeline/utils/AICallTree.test.ts +112 -11
- package/front_end/panels/timeline/utils/AICallTree.ts +57 -12
- package/front_end/panels/timeline/utils/EntityMapper.test.ts +1 -1
- package/front_end/panels/timeline/utils/EntityMapper.ts +1 -1
- package/front_end/panels/timeline/utils/EntryName.test.ts +15 -0
- package/front_end/panels/timeline/utils/EntryName.ts +13 -1
- package/front_end/panels/timeline/utils/EntryStyles.ts +11 -5
- package/front_end/panels/timeline/utils/Helpers.ts +15 -9
- package/front_end/panels/timeline/utils/IgnoreList.test.ts +5 -5
- package/front_end/panels/timeline/utils/ImageCache.test.ts +3 -2
- package/front_end/panels/timeline/utils/ImageCache.ts +12 -7
- package/front_end/panels/timeline/utils/InsightAIContext.ts +5 -0
- package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +6 -5
- package/front_end/panels/timeline/utils/SourceMapsResolver.ts +5 -5
- package/front_end/panels/timeline/utils/utils.ts +2 -2
- package/front_end/panels/utils/utils.test.ts +26 -32
- package/front_end/panels/web_audio/AudioContextContentBuilder.ts +1 -1
- package/front_end/panels/web_audio/AudioContextSelector.ts +4 -4
- package/front_end/panels/web_audio/WebAudioModel.ts +17 -17
- package/front_end/panels/web_audio/WebAudioView.ts +8 -4
- package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +3 -3
- package/front_end/panels/webauthn/WebauthnPane.ts +13 -12
- package/front_end/panels/webauthn/webauthnPane.css +1 -1
- package/front_end/panels/whats_new/ReleaseNote.test.ts +4 -3
- package/front_end/panels/whats_new/ReleaseNoteText.ts +10 -10
- package/front_end/panels/whats_new/ReleaseNoteView.test.ts +6 -5
- package/front_end/panels/whats_new/ReleaseNoteView.ts +34 -37
- package/front_end/panels/whats_new/WhatsNewImpl.ts +2 -2
- package/front_end/panels/whats_new/releaseNoteView.css +9 -4
- package/front_end/panels/whats_new/resources/WNDT.md +6 -6
- package/front_end/panels/whats_new/whats_new-meta.ts +0 -1
- package/front_end/services/puppeteer/PuppeteerConnection.ts +0 -1
- package/front_end/services/trace_bounds/TraceBounds.test.ts +20 -20
- package/front_end/services/trace_bounds/TraceBounds.ts +10 -12
- package/front_end/testing/AiAssistanceHelpers.ts +142 -0
- package/front_end/testing/DOMHelpers.ts +31 -14
- package/front_end/testing/DataGridHelpers.ts +7 -76
- package/front_end/testing/EnvironmentHelpers.ts +27 -7
- package/front_end/testing/ExpectStubCall.ts +2 -3
- package/front_end/testing/LanguagePluginHelpers.ts +4 -2
- package/front_end/testing/MockConnection.ts +11 -16
- package/front_end/testing/MockExecutionContext.ts +4 -4
- package/front_end/testing/MutationHelpers.test.ts +5 -7
- package/front_end/testing/MutationHelpers.ts +1 -1
- package/front_end/testing/OverridesHelpers.ts +4 -2
- package/front_end/testing/RealConnection.ts +1 -1
- package/front_end/testing/ResourceTreeHelpers.ts +4 -2
- package/front_end/testing/StyleHelpers.ts +90 -0
- package/front_end/testing/TraceHelpers.ts +36 -38
- package/front_end/testing/TrackAsyncOperations.ts +15 -15
- package/front_end/testing/UISourceCodeHelpers.ts +5 -3
- package/front_end/testing/test_setup.ts +4 -3
- package/front_end/third_party/codemirror.next/package.json +1 -1
- package/front_end/third_party/i18n/localized-string-set.ts +2 -2
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +13 -14
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts +4 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js +6 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.d.ts +5 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js +4 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +13 -13
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js +11 -11
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js +7 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/CDPSession.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/CDPSession.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts +4 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +4 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js +5 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.js +5 -12
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js +1 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +7 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js +2 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js +0 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js +1 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js +3 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.d.ts +34 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.js +8 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.d.ts +14 -33
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.js +308 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +0 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js +0 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +0 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts +15 -12
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js +47 -11
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js +5 -9
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js +4 -18
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts +2 -16
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +36 -63
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +411 -542
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +13 -14
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts +4 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js +6 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.d.ts +5 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js +4 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +13 -13
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js +11 -11
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js +7 -7
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/CDPSession.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/CDPSession.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts +4 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js +6 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.js +5 -12
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.js +1 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +7 -7
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js +2 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js +0 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js +1 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js +3 -7
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.d.ts +34 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.d.ts +14 -33
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.js +306 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +0 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js +0 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +0 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts +15 -12
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js +47 -11
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js +5 -9
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js +4 -18
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +2 -16
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +36 -63
- package/front_end/third_party/puppeteer/package/package.json +14 -8
- package/front_end/third_party/puppeteer/package/src/api/Browser.ts +27 -27
- package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +6 -6
- package/front_end/third_party/puppeteer/package/src/api/Frame.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/api/Page.ts +13 -13
- package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/bidi/CDPSession.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +12 -4
- package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +2 -1
- package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Browser.ts +8 -21
- package/front_end/third_party/puppeteer/package/src/cdp/BrowserConnector.ts +0 -6
- package/front_end/third_party/puppeteer/package/src/cdp/CDPSession.ts +2 -1
- package/front_end/third_party/puppeteer/package/src/cdp/DeviceRequestPrompt.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +2 -3
- package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +0 -7
- package/front_end/third_party/puppeteer/package/src/cdp/FrameManager.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/HTTPResponse.ts +1 -3
- package/front_end/third_party/puppeteer/package/src/cdp/IsolatedWorld.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +4 -10
- package/front_end/third_party/puppeteer/package/src/cdp/TargetManageEvents.ts +38 -0
- package/front_end/third_party/puppeteer/package/src/cdp/TargetManager.ts +417 -35
- package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +0 -2
- package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +0 -6
- package/front_end/third_party/puppeteer/package/src/common/PDFOptions.ts +63 -25
- package/front_end/third_party/puppeteer/package/src/common/WaitTask.ts +2 -6
- package/front_end/third_party/puppeteer/package/src/common/util.ts +3 -1
- package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +5 -14
- package/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts +3 -21
- package/front_end/third_party/puppeteer/package/src/node/LaunchOptions.ts +2 -19
- package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
- package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +1 -2
- package/front_end/third_party/third-party-web/README.chromium +2 -2
- package/front_end/third_party/third-party-web/lib/nostats-subset.js +1 -1
- package/front_end/third_party/third-party-web/package/README.md +586 -573
- package/front_end/third_party/third-party-web/package/dist/entities-httparchive-nostats.json +1 -1
- package/front_end/third_party/third-party-web/package/dist/entities-httparchive.json +1 -1
- package/front_end/third_party/third-party-web/package/dist/entities-nostats.json +1 -1
- package/front_end/third_party/third-party-web/package/dist/entities.json +1 -1
- package/front_end/third_party/third-party-web/package/facades.md +46 -0
- package/front_end/third_party/third-party-web/package/lib/__snapshots__/index.test.js.snap +1 -1
- package/front_end/third_party/third-party-web/package/lib/index.test.js +6 -6
- package/front_end/third_party/third-party-web/package/lib/markdown/faqs.partial.md +36 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/goals.partial.md +9 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/methodology.partial.md +5 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/template.md +151 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-02-01.md +1 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-03-01.md +1 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-06.md +1 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-13.md +14 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2021-01-01.md +1 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2024-07-01.md +3 -0
- package/front_end/third_party/third-party-web/package/nostats-subset.d.ts +1 -0
- package/front_end/third_party/third-party-web/package/package.json +5 -4
- package/front_end/third_party/third-party-web/package.json +2 -1
- package/front_end/third_party/third-party-web/rebuild.sh +8 -0
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +9 -5
- package/front_end/ui/components/adorners/Adorner.ts +15 -17
- package/front_end/ui/components/buttons/Button.test.ts +26 -6
- package/front_end/ui/components/buttons/Button.ts +16 -34
- package/front_end/ui/components/buttons/button.css +8 -18
- package/front_end/ui/components/buttons/buttons.ts +2 -0
- package/front_end/ui/components/cards/Card.test.ts +81 -72
- package/front_end/ui/components/cards/Card.ts +85 -54
- package/front_end/ui/components/cards/card.css +40 -36
- package/front_end/ui/components/chrome_link/ChromeLink.test.ts +6 -6
- package/front_end/ui/components/chrome_link/ChromeLink.ts +4 -6
- package/front_end/ui/components/code_highlighter/code_highlighter.ts +2 -2
- package/front_end/ui/components/dialogs/ButtonDialog.ts +6 -4
- package/front_end/ui/components/dialogs/Dialog.ts +18 -13
- package/front_end/ui/components/dialogs/ShortcutDialog.ts +7 -5
- package/front_end/ui/components/dialogs/dialog.css +6 -1
- package/front_end/ui/components/dialogs/shortcutDialog.css +1 -22
- package/front_end/ui/components/diff_view/DiffView.ts +20 -14
- package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.ts +4 -4
- package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.ts +8 -8
- package/front_end/ui/components/docs/building-ui-documentation/StylingComponents.md +5 -1
- package/front_end/ui/components/docs/{data_grid → combo_box}/basic.html +2 -11
- package/front_end/ui/components/docs/combo_box/basic.ts +49 -0
- package/front_end/ui/components/docs/create_breadcrumbs.ts +4 -4
- package/front_end/ui/components/docs/dialog/basic.ts +1 -1
- package/front_end/ui/components/docs/dialog/button_dialog.ts +1 -1
- package/front_end/ui/components/docs/dialog/shortcut_dialog.ts +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/helpers.ts +1 -1
- package/front_end/ui/components/docs/expandable_list/basic.ts +2 -2
- package/front_end/ui/components/docs/icon_component/basic.ts +8 -34
- package/front_end/ui/components/docs/linkifier/simple-url.ts +1 -1
- package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +3 -3
- package/front_end/ui/components/docs/performance_panel/flamechart.ts +8 -8
- package/front_end/ui/components/docs/performance_panel/network_request_details.ts +2 -1
- package/front_end/ui/components/docs/performance_panel/overview.ts +2 -2
- package/front_end/ui/components/docs/performance_panel/track_example.ts +4 -4
- package/front_end/ui/components/docs/recorder_control_button/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_create_recording_view/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_recording_list_view/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_recording_view/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_select_button/basic.ts +4 -4
- package/front_end/ui/components/docs/recorder_split_view/basic.ts +1 -1
- package/front_end/ui/components/docs/report/basic.ts +3 -3
- package/front_end/ui/components/docs/theme_colors/basic.ts +4 -4
- package/front_end/ui/components/docs/{data_grid_controller → tooltip}/basic.html +2 -12
- package/front_end/ui/components/docs/tooltip/basic.ts +64 -0
- package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +4 -4
- package/front_end/ui/components/expandable_list/ExpandableList.test.ts +1 -3
- package/front_end/ui/components/expandable_list/ExpandableList.ts +11 -7
- package/front_end/ui/components/floating_button/FloatingButton.ts +8 -4
- package/front_end/ui/components/helpers/directives.ts +7 -7
- package/front_end/ui/components/helpers/helpers.test.ts +3 -5
- package/front_end/ui/components/highlighting/HighlightManager.ts +5 -1
- package/front_end/ui/components/icon_button/FileSourceIcon.ts +5 -6
- package/front_end/ui/components/icon_button/Icon.ts +5 -19
- package/front_end/ui/components/icon_button/IconButton.ts +9 -12
- package/front_end/ui/components/icon_button/iconButton.css +13 -9
- package/front_end/ui/components/input/input.ts +10 -2
- package/front_end/ui/components/issue_counter/IssueCounter.ts +3 -8
- package/front_end/ui/components/issue_counter/IssueLinkIcon.test.ts +1 -4
- package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +9 -5
- package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -1
- package/front_end/ui/components/linkifier/LinkifierImpl.test.ts +6 -4
- package/front_end/ui/components/linkifier/LinkifierImpl.ts +21 -6
- package/front_end/ui/components/linkifier/LinkifierUtils.ts +1 -1
- package/front_end/ui/components/markdown_view/CodeBlock.test.ts +12 -22
- package/front_end/ui/components/markdown_view/CodeBlock.ts +14 -15
- package/front_end/ui/components/markdown_view/MarkdownImage.ts +10 -6
- package/front_end/ui/components/markdown_view/MarkdownLink.test.ts +4 -2
- package/front_end/ui/components/markdown_view/MarkdownLink.ts +6 -4
- package/front_end/ui/components/markdown_view/MarkdownView.test.ts +19 -17
- package/front_end/ui/components/markdown_view/MarkdownView.ts +81 -35
- package/front_end/ui/components/markdown_view/markdownView.css +15 -0
- package/front_end/ui/components/menus/Menu.ts +39 -9
- package/front_end/ui/components/menus/README.md +10 -2
- package/front_end/ui/components/menus/SelectMenu.test.ts +1 -3
- package/front_end/ui/components/menus/SelectMenu.ts +20 -12
- package/front_end/ui/components/menus/menu.css +1 -1
- package/front_end/ui/components/menus/menuGroup.css +0 -1
- package/front_end/ui/components/menus/menuItem.css +11 -3
- package/front_end/ui/components/node_text/NodeText.ts +9 -5
- package/front_end/ui/components/panel_feedback/FeedbackButton.test.ts +5 -3
- package/front_end/ui/components/panel_feedback/FeedbackButton.ts +3 -7
- package/front_end/ui/components/panel_feedback/PanelFeedback.test.ts +5 -3
- package/front_end/ui/components/panel_feedback/PanelFeedback.ts +6 -4
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +5 -3
- package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +7 -4
- package/front_end/ui/components/report_view/ReportView.test.ts +2 -4
- package/front_end/ui/components/report_view/ReportView.ts +37 -20
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.test.ts +1 -4
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +11 -7
- package/front_end/ui/components/settings/SettingCheckbox.ts +10 -6
- package/front_end/ui/components/settings/SettingDeprecationWarning.ts +9 -5
- package/front_end/ui/components/spinners/Spinner.ts +6 -4
- package/front_end/ui/components/split_view/SplitView.ts +2 -4
- package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +11 -9
- package/front_end/ui/components/suggestion_input/SuggestionInput.ts +16 -9
- package/front_end/ui/components/survey_link/SurveyLink.ts +4 -10
- package/front_end/ui/components/switch/SwitchImpl.test.ts +0 -1
- package/front_end/ui/components/switch/SwitchImpl.ts +7 -5
- package/front_end/ui/components/switch/switch.css +18 -0
- package/front_end/ui/components/text_editor/TextEditor.test.ts +5 -3
- package/front_end/ui/components/text_editor/TextEditor.ts +2 -4
- package/front_end/ui/components/text_prompt/TextPrompt.ts +4 -9
- package/front_end/ui/components/text_prompt/textPrompt.css +6 -1
- package/front_end/ui/components/tooltip/Tooltip.test.ts +55 -0
- package/front_end/ui/components/tooltip/Tooltip.ts +146 -0
- package/front_end/ui/components/tooltip/tooltip.css +41 -0
- package/front_end/ui/components/tooltip/tooltips.ts +7 -0
- package/front_end/ui/components/tree_outline/TreeOutline.test.ts +2 -4
- package/front_end/ui/components/tree_outline/TreeOutline.ts +15 -14
- package/front_end/ui/components/tree_outline/TreeOutlineUtils.ts +8 -8
- package/front_end/ui/components/tree_outline/treeOutline.css +5 -3
- package/front_end/ui/legacy/ARIAUtils.ts +5 -5
- package/front_end/ui/legacy/ActionRegistration.ts +4 -4
- package/front_end/ui/legacy/Context.ts +3 -3
- package/front_end/ui/legacy/ContextMenu.ts +8 -2
- package/front_end/ui/legacy/Dialog.ts +4 -4
- package/front_end/ui/legacy/DockController.ts +5 -5
- package/front_end/ui/legacy/DropTarget.ts +1 -1
- package/front_end/ui/legacy/EmptyWidget.ts +16 -12
- package/front_end/ui/legacy/FilterBar.test.ts +3 -3
- package/front_end/ui/legacy/FilterBar.ts +29 -12
- package/front_end/ui/legacy/Geometry.ts +3 -11
- package/front_end/ui/legacy/GlassPane.ts +3 -7
- package/front_end/ui/legacy/Infobar.ts +5 -13
- package/front_end/ui/legacy/InspectorView.ts +15 -11
- package/front_end/ui/legacy/ListModel.ts +3 -3
- package/front_end/ui/legacy/ListWidget.ts +24 -15
- package/front_end/ui/legacy/PopoverHelper.ts +1 -1
- package/front_end/ui/legacy/ProgressIndicator.ts +8 -5
- package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +1 -1
- package/front_end/ui/legacy/ReportView.ts +5 -5
- package/front_end/ui/legacy/ResizerWidget.ts +6 -6
- package/front_end/ui/legacy/RootView.ts +1 -1
- package/front_end/ui/legacy/SearchableView.ts +7 -5
- package/front_end/ui/legacy/SettingsUI.ts +8 -17
- package/front_end/ui/legacy/SoftContextMenu.ts +1 -1
- package/front_end/ui/legacy/SoftDropDown.ts +2 -2
- package/front_end/ui/legacy/SplitWidget.test.ts +1 -2
- package/front_end/ui/legacy/SplitWidget.ts +10 -5
- package/front_end/ui/legacy/SuggestBox.ts +1 -1
- package/front_end/ui/legacy/TabbedPane.ts +36 -16
- package/front_end/ui/legacy/TargetCrashedScreen.ts +1 -1
- package/front_end/ui/legacy/TextPrompt.ts +4 -4
- package/front_end/ui/legacy/ThrottledWidget.ts +7 -2
- package/front_end/ui/legacy/Toolbar.test.ts +100 -17
- package/front_end/ui/legacy/Toolbar.ts +141 -178
- package/front_end/ui/legacy/Treeoutline.ts +12 -14
- package/front_end/ui/legacy/UIUtils.test.ts +13 -17
- package/front_end/ui/legacy/UIUtils.ts +21 -36
- package/front_end/ui/legacy/ViewManager.ts +14 -11
- package/front_end/ui/legacy/Widget.test.ts +39 -29
- package/front_end/ui/legacy/Widget.ts +83 -30
- package/front_end/ui/legacy/XLink.test.ts +4 -6
- package/front_end/ui/legacy/XLink.ts +1 -3
- package/front_end/ui/legacy/ZoomManager.ts +3 -3
- package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.ts +5 -5
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +7 -5
- package/front_end/ui/legacy/components/color_picker/ContrastInfo.ts +3 -3
- package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +5 -5
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +22 -18
- package/front_end/ui/legacy/components/color_picker/spectrum.css +3 -3
- package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +2 -5
- package/front_end/ui/legacy/components/data_grid/DataGrid.test.ts +1 -2
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +88 -38
- package/front_end/ui/legacy/components/data_grid/DataGridElement.test.ts +269 -0
- package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +470 -0
- package/front_end/ui/legacy/components/data_grid/SortableDataGrid.ts +6 -0
- package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +110 -15
- package/front_end/ui/legacy/components/data_grid/dataGrid.css +4 -2
- package/front_end/ui/legacy/components/data_grid/data_grid.ts +2 -2
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +15 -15
- package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +4 -4
- package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +9 -5
- package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +10 -6
- package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +8 -4
- package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.ts +9 -9
- package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +5 -4
- package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +7 -5
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +10 -6
- package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +8 -9
- package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.ts +0 -13
- package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +11 -7
- package/front_end/ui/legacy/components/inline_editor/SwatchPopoverHelper.ts +4 -4
- package/front_end/ui/legacy/components/inline_editor/Swatches.ts +11 -13
- package/front_end/ui/legacy/components/inline_editor/fontEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/inline_editor.ts +0 -2
- package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +1 -2
- package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -3
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +3 -3
- package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +3 -4
- package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +7 -7
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +23 -15
- package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +26 -9
- package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +19 -17
- package/front_end/ui/legacy/components/perf_ui/FlameChart.test.ts +2 -2
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +158 -147
- package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +3 -3
- package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +7 -13
- package/front_end/ui/legacy/components/perf_ui/PieChart.ts +6 -4
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.test.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +1 -14
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.test.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +17 -17
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +32 -37
- package/front_end/ui/legacy/components/perf_ui/overviewGrid.css +1 -1
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +31 -28
- package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +9 -7
- package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +8 -12
- package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +39 -54
- package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +8 -7
- package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/JSONView.ts +2 -2
- package/front_end/ui/legacy/components/source_frame/PreviewFactory.ts +7 -3
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.test.ts +4 -2
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +6 -4
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +5 -5
- package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/XMLView.ts +3 -3
- package/front_end/ui/legacy/components/source_frame/resourceSourceFrame.css +1 -1
- package/front_end/ui/legacy/components/utils/ImagePreview.ts +4 -7
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +1 -1
- package/front_end/ui/legacy/components/utils/Linkifier.test.ts +7 -7
- package/front_end/ui/legacy/components/utils/Linkifier.ts +6 -7
- package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +3 -12
- package/front_end/ui/legacy/dialog.css +2 -1
- package/front_end/ui/legacy/emptyWidget.css +0 -21
- package/front_end/ui/legacy/filter.css +3 -1
- package/front_end/ui/legacy/infobar.css +14 -2
- package/front_end/ui/legacy/inspectorCommon.css +635 -144
- package/front_end/ui/legacy/inspectorViewTabbedPane.css +1 -1
- package/front_end/ui/legacy/reportView.css +1 -1
- package/front_end/ui/legacy/searchableView.css +1 -1
- package/front_end/ui/legacy/softContextMenu.css +1 -1
- package/front_end/ui/legacy/tabbedPane.css +118 -21
- package/front_end/ui/legacy/textPrompt.css +1 -0
- package/front_end/ui/legacy/theme_support/ThemeSupport.ts +0 -5
- package/front_end/ui/legacy/toolbar.css +11 -543
- package/front_end/ui/legacy/treeoutline.css +7 -7
- package/front_end/ui/legacy/viewContainers.css +3 -3
- package/front_end/ui/{lit-html → lit}/i18n-template.test.ts +5 -7
- package/front_end/ui/visual_logging/Debugging.ts +58 -33
- package/front_end/ui/visual_logging/KnownContextValues.ts +65 -10
- package/front_end/ui/visual_logging/visual_logging.ts +2 -2
- package/inspector_overlay/common.ts +0 -1
- package/inspector_overlay/css_grid_label_helpers.ts +1 -1
- package/inspector_overlay/drag_resize_handler.ts +4 -4
- package/inspector_overlay/highlight_common.ts +0 -1
- package/inspector_overlay/main.ts +12 -13
- package/inspector_overlay/resources.grd +1 -1
- package/inspector_overlay/testing/InspectorOverlayHelpers.ts +3 -3
- package/inspector_overlay/tool_highlight.css +2 -2
- package/inspector_overlay/tool_highlight.ts +0 -1
- package/inspector_overlay/tool_persistent.ts +7 -13
- package/inspector_overlay/tool_screenshot.ts +6 -6
- package/inspector_overlay/tool_source_order.ts +1 -2
- package/package.json +21 -24
- package/scripts/add_icon_paths.py +71 -0
- package/scripts/ai_assistance/README.md +4 -4
- package/scripts/ai_assistance/auto-run-helpers.js +82 -0
- package/scripts/ai_assistance/auto-run.js +349 -113
- package/scripts/ai_assistance/auto-run.test.js +88 -0
- package/scripts/ai_assistance/to_tsv.mjs +2 -3
- package/scripts/ai_assistance/tsconfig.json +15 -0
- package/scripts/ai_assistance/types.d.ts +2 -1
- package/scripts/build/compress_files.js +2 -2
- package/scripts/build/cross_reference_ninja_and_tsc.js +27 -16
- package/scripts/build/devtools_plugin.js +2 -2
- package/scripts/build/esbuild.js +2 -1
- package/scripts/build/generate_css_js_files.js +13 -57
- package/scripts/build/generate_deprecations.py +0 -2
- package/scripts/build/generate_devtools_grd.py +1 -2
- package/scripts/build/generate_html_entrypoint.js +1 -0
- package/scripts/build/generate_supported_css.py +1 -1
- package/scripts/build/ninja/copy-file.js +6 -4
- package/scripts/build/ninja/copy-files.js +1 -0
- package/scripts/build/ninja/generate-declaration.js +1 -0
- package/scripts/build/ninja/generate-tsconfig.js +0 -1
- package/scripts/build/ninja/generate_css.gni +1 -16
- package/scripts/build/ninja/minify-json-files.js +1 -0
- package/scripts/build/rollup.config.mjs +1 -1
- package/scripts/build/tests/generate_css_js_files_test.js +5 -56
- package/scripts/build/typescript/ts_library.py +24 -1
- package/scripts/check_esbuild_versions.js +1 -1
- package/scripts/check_experiments.js +10 -7
- package/scripts/component_server/server.js +4 -7
- package/scripts/devtools_paths.js +6 -6
- package/scripts/eslint_rules/README.md +5 -1
- package/scripts/eslint_rules/lib/canvas-context-tracking.js +3 -0
- package/scripts/eslint_rules/lib/check-css-import.js +7 -3
- package/scripts/eslint_rules/lib/check-enumerated-histograms.js +3 -0
- package/scripts/eslint_rules/lib/check-license-header.js +7 -2
- package/scripts/eslint_rules/lib/check-test-definitions.js +5 -1
- package/scripts/eslint_rules/lib/check-was-shown-methods.js +3 -0
- package/scripts/eslint_rules/lib/enforce-bound-render-for-schedule-render.js +3 -0
- package/scripts/eslint_rules/lib/enforce-custom-event-names.js +3 -0
- package/scripts/eslint_rules/lib/enforce-default-import-name.js +5 -1
- package/scripts/eslint_rules/lib/enforce-optional-properties-last.js +4 -1
- package/scripts/eslint_rules/lib/es-modules-import.js +26 -1
- package/scripts/eslint_rules/lib/html-tagged-template.js +8 -4
- package/scripts/eslint_rules/lib/inject-checkbox-styles.js +7 -2
- package/scripts/eslint_rules/lib/inline-type-imports.js +3 -0
- package/scripts/eslint_rules/lib/jslog-context-list.js +4 -1
- package/scripts/eslint_rules/lib/l10n-filename-matches.js +42 -23
- package/scripts/eslint_rules/lib/l10n-helper.js +5 -3
- package/scripts/eslint_rules/lib/l10n-i18nString-call-only-with-uistrings.js +3 -0
- package/scripts/eslint_rules/lib/l10n-no-i18nString-calls-module-instantiation.js +5 -1
- package/scripts/eslint_rules/lib/l10n-no-locked-or-placeholder-only-phrase.js +3 -0
- package/scripts/eslint_rules/lib/l10n-no-uistrings-export.js +14 -5
- package/scripts/eslint_rules/lib/l10n-no-unused-message.js +12 -2
- package/scripts/eslint_rules/lib/{lit-html-no-attribute-quotes.js → lit-no-attribute-quotes.js} +4 -1
- package/scripts/eslint_rules/lib/lit-template-result-or-nothing.js +44 -26
- package/scripts/eslint_rules/lib/{no-a-tags-in-lit-html.js → no-a-tags-in-lit.js} +3 -0
- package/scripts/eslint_rules/lib/no-assert-equal.js +3 -0
- package/scripts/eslint_rules/lib/no-assert-strict-equal-for-arrays-and-objects.js +3 -0
- package/scripts/eslint_rules/lib/no-bound-component-methods.js +4 -1
- package/scripts/eslint_rules/lib/no-commented-out-console.js +4 -1
- package/scripts/eslint_rules/lib/no-commented-out-import.js +4 -1
- package/scripts/eslint_rules/lib/no-customized-builtin-elements.js +3 -0
- package/scripts/eslint_rules/lib/no-importing-images-from-src.js +3 -0
- package/scripts/eslint_rules/lib/no-imports-in-directory.js +5 -1
- package/scripts/eslint_rules/lib/no-it-screenshot-only-or-repeat.js +3 -0
- package/scripts/eslint_rules/lib/no-new-lit-element-components.js +4 -2
- package/scripts/eslint_rules/lib/no-only-eslint-tests.js +4 -1
- package/scripts/eslint_rules/lib/no-screenshot-test-outside-perf-panel.js +8 -3
- package/scripts/eslint_rules/lib/no-self-closing-custom-element-tagnames.js +3 -0
- package/scripts/eslint_rules/lib/no-underscored-properties.js +3 -0
- package/scripts/eslint_rules/lib/prefer-private-class-members.js +12 -2
- package/scripts/eslint_rules/lib/prefer-url-string.js +95 -0
- package/scripts/eslint_rules/lib/screenshot-assertion-in-it-screenshot.js +3 -0
- package/scripts/eslint_rules/lib/set-data-type-reference.js +3 -0
- package/scripts/eslint_rules/lib/single-screenshot-assertion-per-test.js +3 -0
- package/scripts/eslint_rules/lib/static-custom-event-names.js +3 -0
- package/scripts/eslint_rules/lib/trace-engine-test-timeouts.js +3 -0
- package/scripts/eslint_rules/lib/utils.js +8 -8
- package/scripts/eslint_rules/tests/canvas-context-tracking.test.js +8 -6
- package/scripts/eslint_rules/tests/check-css-import.test.js +12 -21
- package/scripts/eslint_rules/tests/check-enumerated-histograms.test.js +16 -14
- package/scripts/eslint_rules/tests/check-license-header.test.js +9 -11
- package/scripts/eslint_rules/tests/check-test-definitions.test.js +11 -6
- package/scripts/eslint_rules/tests/check-was-shown-methods.test.js +9 -11
- package/scripts/eslint_rules/tests/enforce-bound-render-for-schedule-render.test.js +8 -6
- package/scripts/eslint_rules/tests/enforce-custom-event-names.test.js +9 -11
- package/scripts/eslint_rules/tests/enforce-default-import-name.test.js +23 -7
- package/scripts/eslint_rules/tests/enforce-optional-properties-last.test.js +3 -7
- package/scripts/eslint_rules/tests/es-modules-import.test.js +108 -65
- package/scripts/eslint_rules/tests/html-tagged-template.test.js +25 -26
- package/scripts/eslint_rules/tests/inject-checkbox-styles.test.js +25 -21
- package/scripts/eslint_rules/tests/inline-type-imports.test.js +3 -6
- package/scripts/eslint_rules/tests/jslog-context-list.test.js +46 -35
- package/scripts/eslint_rules/tests/l10n-filename-matches.test.js +92 -18
- package/scripts/eslint_rules/tests/l10n-i18nString-call-only-with-uistrings.test.js +6 -7
- package/scripts/eslint_rules/tests/l10n-no-i18nString-calls-module-instantiation.test.js +10 -8
- package/scripts/eslint_rules/tests/l10n-no-locked-or-placeholder-only-phrase.test.js +12 -7
- package/scripts/eslint_rules/tests/l10n-no-uistrings-export.test.js +13 -8
- package/scripts/eslint_rules/tests/l10n-no-unused-message.test.js +7 -7
- package/scripts/eslint_rules/tests/{lit-html-no-attribute-quotes.test.js → lit-no-attribute-quotes.test.js} +11 -12
- package/scripts/eslint_rules/tests/lit-template-result-or-nothing.test.js +32 -35
- package/scripts/eslint_rules/tests/no-a-tags-in-lit.test.js +69 -0
- package/scripts/eslint_rules/tests/no-assert-deep-strict-equal.test.js +2 -3
- package/scripts/eslint_rules/tests/no-assert-equal-boolean-null-undefined.test.js +2 -3
- package/scripts/eslint_rules/tests/no-assert-equal.test.js +2 -3
- package/scripts/eslint_rules/tests/no-assert-strict-equal-for-arrays-and-objects.test.js +3 -4
- package/scripts/eslint_rules/tests/no-bound-component-methods.test.js +24 -12
- package/scripts/eslint_rules/tests/no-commented-out-console.test.js +3 -6
- package/scripts/eslint_rules/tests/no-commented-out-import.test.js +3 -6
- package/scripts/eslint_rules/tests/no-customized-builtin-elements.test.js +2 -3
- package/scripts/eslint_rules/tests/no-importing-images-from-src.test.js +12 -11
- package/scripts/eslint_rules/tests/no-imports-in-directory.test.js +84 -22
- package/scripts/eslint_rules/tests/no-it-screenshot-only-or-repeat.test.js +3 -6
- package/scripts/eslint_rules/tests/no-new-lit-element-components.test.js +3 -6
- package/scripts/eslint_rules/tests/no-only-eslint-tests.test.js +11 -6
- package/scripts/eslint_rules/tests/no-screenshot-test-outside-perf-panel.test.js +3 -4
- package/scripts/eslint_rules/tests/no-self-closing-custom-element-tagnames.test.js +17 -20
- package/scripts/eslint_rules/tests/no-underscored-properties.test.js +19 -12
- package/scripts/eslint_rules/tests/prefer-assert-instance-of.test.js +2 -3
- package/scripts/eslint_rules/tests/prefer-assert-is-ok.test.js +2 -3
- package/scripts/eslint_rules/tests/prefer-assert-length-of.test.js +2 -3
- package/scripts/eslint_rules/tests/prefer-private-class-members.test.js +3 -6
- package/scripts/eslint_rules/tests/prefer-readonly-keyword.test.js +7 -10
- package/scripts/eslint_rules/tests/prefer-url-string.test.js +87 -0
- package/scripts/eslint_rules/tests/screenshot-assertion-in-it-screenshot.test.js +3 -6
- package/scripts/eslint_rules/tests/set-data-type-reference.test.js +18 -10
- package/scripts/eslint_rules/tests/single-screenshot-assertion-per-test.test.js +3 -6
- package/scripts/eslint_rules/tests/static-custom-event-names.test.js +13 -13
- package/scripts/eslint_rules/tests/trace-engine-test-timeouts.test.js +3 -5
- package/scripts/eslint_rules/tests/utils/utils.js +18 -0
- package/scripts/eslint_rules/tests/utils.test.js +9 -9
- package/scripts/javascript_natives/index.js +14 -6
- package/scripts/migration/web-tests-esm/rename-legacy-global.mjs +4 -4
- package/scripts/npm_test.js +1 -0
- package/scripts/reformat-clang-js-ts.js +1 -2
- package/scripts/run_on_target.mjs +1 -1
- package/scripts/search-trace-files.js +1 -1
- package/scripts/stylelint_rules/lib/use_theme_colors.mjs +25 -41
- package/scripts/stylelint_rules/tests/{use_theme_colors_test.js → use_theme_colors.test.js} +14 -2
- package/scripts/utils.js +23 -14
- package/scripts/watch_build.js +19 -76
- package/tsconfig.json +2 -1
- package/front_end/core/sdk/CPUProfileDataModel.ts +0 -17
- package/front_end/core/sdk/ProfileTreeModel.ts +0 -17
- package/front_end/panels/application/reportingApiReportsView.css +0 -18
- package/front_end/panels/emulation/deviceModeToolbar.css +0 -14
- package/front_end/panels/protocol_monitor/components/Toolbar.ts +0 -91
- package/front_end/panels/protocol_monitor/components/components.ts +0 -11
- package/front_end/panels/protocol_monitor/components/toolbar.css +0 -31
- package/front_end/panels/recorder/components/StartView.ts +0 -133
- package/front_end/panels/timeline/historyToolbarButton.css +0 -81
- package/front_end/panels/timeline/utils/NetworkRequest.ts +0 -40
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts +0 -26
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js +0 -311
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.d.ts +0 -36
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.js +0 -154
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.js.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts +0 -26
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js +0 -307
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.d.ts +0 -36
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.js +0 -150
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.js.map +0 -1
- package/front_end/third_party/puppeteer/package/src/cdp/ChromeTargetManager.ts +0 -438
- package/front_end/third_party/puppeteer/package/src/cdp/FirefoxTargetManager.ts +0 -214
- package/front_end/third_party/third-party-web/package/.prettierrc +0 -10
- package/front_end/ui/components/data_grid/DataGrid.test.ts +0 -1056
- package/front_end/ui/components/data_grid/DataGrid.ts +0 -963
- package/front_end/ui/components/data_grid/DataGridContextMenuUtils.ts +0 -67
- package/front_end/ui/components/data_grid/DataGridController.test.ts +0 -431
- package/front_end/ui/components/data_grid/DataGridController.ts +0 -302
- package/front_end/ui/components/data_grid/DataGridControllerIntegrator.ts +0 -49
- package/front_end/ui/components/data_grid/DataGridEvents.ts +0 -121
- package/front_end/ui/components/data_grid/DataGridRenderers.ts +0 -27
- package/front_end/ui/components/data_grid/DataGridUtils.ts +0 -259
- package/front_end/ui/components/data_grid/README.md +0 -118
- package/front_end/ui/components/data_grid/dataGrid.css +0 -188
- package/front_end/ui/components/data_grid/dataGridController.css +0 -11
- package/front_end/ui/components/data_grid/data_grid.ts +0 -18
- package/front_end/ui/components/docs/data_grid/adding-data.html +0 -35
- package/front_end/ui/components/docs/data_grid/adding-data.ts +0 -61
- package/front_end/ui/components/docs/data_grid/basic.ts +0 -27
- package/front_end/ui/components/docs/data_grid/empty.html +0 -31
- package/front_end/ui/components/docs/data_grid/empty.ts +0 -21
- package/front_end/ui/components/docs/data_grid/hide-cols.html +0 -35
- package/front_end/ui/components/docs/data_grid/hide-cols.ts +0 -59
- package/front_end/ui/components/docs/data_grid/large-data.html +0 -30
- package/front_end/ui/components/docs/data_grid/large-data.ts +0 -43
- package/front_end/ui/components/docs/data_grid/sticky-headers.html +0 -30
- package/front_end/ui/components/docs/data_grid/sticky-headers.ts +0 -44
- package/front_end/ui/components/docs/data_grid/three_columns.html +0 -29
- package/front_end/ui/components/docs/data_grid/three_columns.ts +0 -44
- package/front_end/ui/components/docs/data_grid_controller/basic.ts +0 -45
- package/front_end/ui/components/docs/data_grid_controller/custom-context-menu-items.html +0 -28
- package/front_end/ui/components/docs/data_grid_controller/custom-context-menu-items.ts +0 -34
- package/front_end/ui/components/docs/data_grid_controller/filter.html +0 -40
- package/front_end/ui/components/docs/data_grid_controller/filter.ts +0 -298
- package/front_end/ui/components/docs/recorder_start_view/basic.html +0 -20
- package/front_end/ui/components/docs/recorder_start_view/basic.ts +0 -13
- package/front_end/ui/legacy/applicationColorTokens.css +0 -61
- package/front_end/ui/legacy/components/data_grid/DataGridWithPreview.ts +0 -297
- package/front_end/ui/legacy/components/inline_editor/CSSLength.test.ts +0 -75
- package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +0 -156
- package/front_end/ui/legacy/components/inline_editor/cssLength.css +0 -27
- package/front_end/ui/legacy/designTokens.css +0 -115
- package/front_end/ui/legacy/inspectorSyntaxHighlight.css +0 -131
- package/front_end/ui/legacy/themeColors.css +0 -796
- package/front_end/ui/legacy/tokens.css +0 -202
- package/scripts/check_enumerated_histograms.js +0 -101
- package/scripts/eslint_rules/lib/lit-html-host-this.js +0 -86
- package/scripts/eslint_rules/lib/no-style-tags-in-lit-html.js +0 -51
- package/scripts/eslint_rules/tests/lit-html-host-this.test.js +0 -48
- package/scripts/eslint_rules/tests/no-a-tags-in-lit-html.test.js +0 -64
- package/scripts/eslint_rules/tests/no-style-tags-in-lit-html.test.js +0 -61
- /package/front_end/ui/{legacy → components/buttons}/textButton.css +0 -0
- /package/front_end/ui/{lit-html → lit}/i18n-template.ts +0 -0
- /package/front_end/ui/{lit-html/lit-html.ts → lit/lit.ts} +0 -0
- /package/front_end/ui/{lit-html → lit}/visibility.gni +0 -0
@@ -104,6 +104,9 @@
|
|
104
104
|
"core/common/Revealer.ts | networkPanel": {
|
105
105
|
"message": "நெட்வொர்க் பேனல்"
|
106
106
|
},
|
107
|
+
"core/common/Revealer.ts | securityPanel": {
|
108
|
+
"message": "Security panel"
|
109
|
+
},
|
107
110
|
"core/common/Revealer.ts | sourcesPanel": {
|
108
111
|
"message": "ஆதாரங்கள் பேனல்"
|
109
112
|
},
|
@@ -152,6 +155,9 @@
|
|
152
155
|
"core/common/SettingRegistration.ts | persistence": {
|
153
156
|
"message": "தொடர்ச்சியான செயல்"
|
154
157
|
},
|
158
|
+
"core/common/SettingRegistration.ts | privacy": {
|
159
|
+
"message": "தனியுரிமை"
|
160
|
+
},
|
155
161
|
"core/common/SettingRegistration.ts | rendering": {
|
156
162
|
"message": "ரெண்டரிங்"
|
157
163
|
},
|
@@ -206,6 +212,21 @@
|
|
206
212
|
"core/sdk/CPUProfilerModel.ts | profileD": {
|
207
213
|
"message": "சுயவிவரம் {PH1}"
|
208
214
|
},
|
215
|
+
"core/sdk/CPUThrottlingManager.ts | calibratedLowTierMobile": {
|
216
|
+
"message": "குறைந்த திறன் கொண்ட மொபைல்"
|
217
|
+
},
|
218
|
+
"core/sdk/CPUThrottlingManager.ts | calibratedMidTierMobile": {
|
219
|
+
"message": "நடுத்தரத் திறன் கொண்ட மொபைல்"
|
220
|
+
},
|
221
|
+
"core/sdk/CPUThrottlingManager.ts | calibrationErrorDeviceTooWeak": {
|
222
|
+
"message": "சாதனம் ஆற்றல் மிக்கதாக இல்லை"
|
223
|
+
},
|
224
|
+
"core/sdk/CPUThrottlingManager.ts | dSlowdown": {
|
225
|
+
"message": "{PH1}× குறைவான வேகம்"
|
226
|
+
},
|
227
|
+
"core/sdk/CPUThrottlingManager.ts | noThrottling": {
|
228
|
+
"message": "த்ராட்லிங் இல்லை"
|
229
|
+
},
|
209
230
|
"core/sdk/CSSStyleSheetHeader.ts | couldNotFindTheOriginalStyle": {
|
210
231
|
"message": "அசல் ஸ்டைல் ஷீட்டைக் கண்டறிய முடியவில்லை."
|
211
232
|
},
|
@@ -218,6 +239,9 @@
|
|
218
239
|
"core/sdk/CompilerSourceMappingContentProvider.ts | couldNotLoadContentForSS": {
|
219
240
|
"message": "{PH1} தளத்திலுள்ள உள்ளடக்கத்தை ஏற்ற முடியவில்லை ({PH2})"
|
220
241
|
},
|
242
|
+
"core/sdk/Connections.ts | websocketDisconnected": {
|
243
|
+
"message": "WebSocket துண்டிக்கப்பட்டது"
|
244
|
+
},
|
221
245
|
"core/sdk/ConsoleModel.ts | bfcacheNavigation": {
|
222
246
|
"message": "‘முன் பின் பக்கங்களைத் தற்காலிகமாகச் சேமித்தல்’ அம்சத்தின் மூலம் {PH1} தளத்திற்குச் செல்லுதல் மீட்டெடுக்கப்பட்டது (https://web.dev/bfcache/ என்ற தளத்தைப் பார்க்கவும்)"
|
223
247
|
},
|
@@ -297,7 +321,7 @@
|
|
297
321
|
"message": "{PH1} ஏற்றப்பட்டது: {PH2} \"{PH3}\"."
|
298
322
|
},
|
299
323
|
"core/sdk/NetworkManager.ts | slowG": {
|
300
|
-
"message": "
|
324
|
+
"message": "3ஜி"
|
301
325
|
},
|
302
326
|
"core/sdk/NetworkRequest.ts | anUnknownErrorWasEncounteredWhenTrying": {
|
303
327
|
"message": "இந்தக் குக்கீயைச் சேமிக்க முயலும்போது அறியப்படாத பிழை ஏற்பட்டது."
|
@@ -437,6 +461,12 @@
|
|
437
461
|
"core/sdk/PageResourceLoader.ts | loadCanceledDueToReloadOf": {
|
438
462
|
"message": "கண்காணிக்கப்பட்ட பக்கம் ரெஃப்ரெஷ் செய்யப்பட்டதால் ஏற்றுதல் ரத்துசெய்யப்பட்டது"
|
439
463
|
},
|
464
|
+
"core/sdk/RehydratingConnection.ts | errorLoadingLog": {
|
465
|
+
"message": "பதிவை ஏற்றுவதில் பிழை"
|
466
|
+
},
|
467
|
+
"core/sdk/RehydratingConnection.ts | noHostWindow": {
|
468
|
+
"message": "ஹோஸ்ட் சாளரத்தைக் கண்டறிய முடியவில்லை"
|
469
|
+
},
|
440
470
|
"core/sdk/RehydratingConnection.ts | noSourceText": {
|
441
471
|
"message": "மூல வார்த்தை கிடைக்கவில்லை"
|
442
472
|
},
|
@@ -1121,6 +1151,9 @@
|
|
1121
1151
|
"entrypoints/node_app/NodeConnectionsPanel.ts | specifyNetworkEndpointAnd": {
|
1122
1152
|
"message": "நெட்வொர்க் எண்ட்பாயிண்ட்டைக் குறிப்பிட்டால் DevTools அதனுடன் தானாக இணைக்கப்படும். மேலும் அறிய {PH1} ஐப் பார்க்கவும்."
|
1123
1153
|
},
|
1154
|
+
"entrypoints/node_app/NodeMain.ts | NodejsTitleS": {
|
1155
|
+
"message": "டெவெலப்பர் கருவிகள் - Node.js: {PH1}"
|
1156
|
+
},
|
1124
1157
|
"entrypoints/node_app/NodeMain.ts | main": {
|
1125
1158
|
"message": "முதன்மை"
|
1126
1159
|
},
|
@@ -1148,9 +1181,6 @@
|
|
1148
1181
|
"generated/Deprecation.ts | AuthorizationCoveredByWildcard": {
|
1149
1182
|
"message": "CORS Access-Control-Allow-Headersஸைக் கையாளும்போது வைல்டுகார்டு குறியீட்டில் (*) அங்கீகரிப்பு சேர்க்கப்படாது."
|
1150
1183
|
},
|
1151
|
-
"generated/Deprecation.ts | CSSCustomStateDeprecatedSyntax": {
|
1152
|
-
"message": ":--customstatename நிறுத்தப்பட்டது. அதற்குப் பதிலாக :state(customstatename) தொடரியலைப் பயன்படுத்தவும்."
|
1153
|
-
},
|
1154
1184
|
"generated/Deprecation.ts | CSSSelectorInternalMediaControlsOverlayCastButton": {
|
1155
1185
|
"message": "இயல்பு அலைபரப்பு ஒருங்கிணைப்பை முடக்க -internal-media-controls-overlay-cast-button தேர்விக்குப் பதிலாக disableRemotePlayback பண்புக்கூறைப் பயன்படுத்த வேண்டும்."
|
1156
1186
|
},
|
@@ -1301,12 +1331,12 @@
|
|
1301
1331
|
"generated/Deprecation.ts | UnloadHandler": {
|
1302
1332
|
"message": "அன்லோடு ஈவண்ட் லிசனர்கள் நிறுத்தப்பட்டன, அவை விரைவில் அகற்றப்படும்."
|
1303
1333
|
},
|
1304
|
-
"generated/Deprecation.ts | V8GPUAdapter_RequestAdapterInfo_Method": {
|
1305
|
-
"message": "GPUAdapter requestAdapterInfo() முறை நிறுத்தப்பட்டது, இதற்குப் பதிலாக GPUAdapter info பண்புக்கூறைப் பயன்படுத்தவும்."
|
1306
|
-
},
|
1307
1334
|
"generated/Deprecation.ts | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
1308
1335
|
"message": "SharedArrayBuffer ஐத் தொடர்ந்து பயன்படுத்த நீட்டிப்புகள் கிராஸ் ஆரிஜின் ஐசொலேஷனைப் பயன்படுத்த வேண்டும். https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/ தளத்தைப் பார்வையிடவும்."
|
1309
1336
|
},
|
1337
|
+
"generated/Deprecation.ts | WebGPULimitMaxInterStageShaderComponents": {
|
1338
|
+
"message": "maxInterStageShaderComponents என்ற WebGPU வரம்பு நிறுத்தப்பட்டது, இதற்குப் பதிலாக maxInterStageShaderVariables என்ற WebGPU வரம்பைப் பயன்படுத்தவும்."
|
1339
|
+
},
|
1310
1340
|
"generated/Deprecation.ts | WebSQL": {
|
1311
1341
|
"message": "இணைய SQL நிறுத்தப்பட்டது. SQLite WebAssembly அல்லது இன்டெக்ஸ் செய்யப்பட்ட தரவுத்தளத்தைப் பயன்படுத்தவும்"
|
1312
1342
|
},
|
@@ -1370,6 +1400,9 @@
|
|
1370
1400
|
"models/bindings/ResourceScriptMapping.ts | liveEditFailed": {
|
1371
1401
|
"message": "LiveEdit செய்ய முடியவில்லை: {PH1}"
|
1372
1402
|
},
|
1403
|
+
"models/crux-manager/CrUXManager.ts | fieldOverrideWarning": {
|
1404
|
+
"message": "தற்போதைய தளத்திற்கு இல்லாமல் வேறொரு URLலுக்குப் புலத் தரவு உள்ளமைக்கப்பட்டுள்ளது."
|
1405
|
+
},
|
1373
1406
|
"models/emulation/DeviceModeModel.ts | devicePixelRatioMustBeANumberOr": {
|
1374
1407
|
"message": "சாதனத்தின் பிக்சல் விகித மதிப்பு எண்ணாகவோ காலியாகவோ இருக்க வேண்டும்."
|
1375
1408
|
},
|
@@ -1547,6 +1580,9 @@
|
|
1547
1580
|
"models/issues_manager/SharedDictionaryIssue.ts | compressionDictionaryTransport": {
|
1548
1581
|
"message": "கம்ப்ரெஷன் டிக்ஷனரி டிரான்ஸ்போர்ட்"
|
1549
1582
|
},
|
1583
|
+
"models/live-metrics/LiveMetrics.ts | lcpEmulationWarning": {
|
1584
|
+
"message": "பக்கம் ஏற்றப்பட்ட பிறகு புதிய சாதனத்தைச் சிமுலேட் செய்வது LCPயில் மாற்றத்தை ஏற்படுத்தலாம். துல்லியமான LCP தரவுக்கு, புதிய சாதனத்தைச் சிமுலேட் செய்தபிறகு பக்கத்தை ரெஃப்ரெஷ் செய்யவும்."
|
1585
|
+
},
|
1550
1586
|
"models/logs/NetworkLog.ts | anonymous": {
|
1551
1587
|
"message": "<அறியப்படாதது>"
|
1552
1588
|
},
|
@@ -1694,6 +1730,12 @@
|
|
1694
1730
|
"models/trace/insights/CLSCulprits.ts | title": {
|
1695
1731
|
"message": "லே-அவுட் ஷிஃப்ட்டுக்கான காரணங்கள்"
|
1696
1732
|
},
|
1733
|
+
"models/trace/insights/DOMSize.ts | description": {
|
1734
|
+
"message": "DOM அளவு பெரிதாக இருப்பதால் ஸ்டைல் கணக்கீடுகள் மற்றும் தளவமைப்பு மறுசீராக்கங்களின் கால அளவு அதிகரிக்கலாம், இதனால் பக்கத்தின் பதிலளிக்கும் தன்மையும் பாதிக்கப்படலாம். ஒரு பெரிய DOM நினைவக உபயோகத்தையும் அதிகரிக்கும். [அதிகப்படியான DOM அளவைத் தவிர்ப்பது எப்படி என்று தெரிந்துகொள்ளுங்கள்](https://developer.chrome.com/docs/lighthouse/performance/dom-size/)."
|
1735
|
+
},
|
1736
|
+
"models/trace/insights/DOMSize.ts | title": {
|
1737
|
+
"message": "DOM அளவு மேம்பாடு"
|
1738
|
+
},
|
1697
1739
|
"models/trace/insights/DocumentLatency.ts | description": {
|
1698
1740
|
"message": "உங்களின் முதல் நெட்வொர்க் கோரிக்கை மிகவும் முக்கியமானது. திசைதிருப்புதல்களைத் தவிர்த்தல், விரைவான சேவையகப் பதிலை உறுதிசெய்தல், வார்த்தையைச் சுருக்குதல் ஆகியவற்றின் மூலம் அதன் தாமதத்தைக் குறைக்கவும்."
|
1699
1741
|
},
|
@@ -1706,6 +1748,30 @@
|
|
1706
1748
|
"models/trace/insights/FontDisplay.ts | title": {
|
1707
1749
|
"message": "எழுத்து வடிவக் காட்சி"
|
1708
1750
|
},
|
1751
|
+
"models/trace/insights/ForcedReflow.ts | description": {
|
1752
|
+
"message": "பல APIகள் (பொதுவாக, லே-அவுட் வடிவியலை ஸ்கேன் செய்பவை) ஸ்டைல் மற்றும் லே-அவுட்டைக் கணக்கிடுவதற்காக ஸ்கிரிப்ட் செயல்படுத்தலை இடைநிறுத்தும்படி ரென்டரிங் இன்ஜினைக் கட்டாயப்படுத்துகின்றன. [கட்டாய ரீஃப்ளோ](https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing#avoid-forced-synchronous-layouts) மற்றும் அதன் மிட்டிகேஷன்கள் குறித்து மேலும் தெரிந்துகொள்ளுங்கள்."
|
1753
|
+
},
|
1754
|
+
"models/trace/insights/ForcedReflow.ts | title": {
|
1755
|
+
"message": "கட்டாய ரீஃப்ளோ"
|
1756
|
+
},
|
1757
|
+
"models/trace/insights/ImageDelivery.ts | description": {
|
1758
|
+
"message": "படங்களின் பதிவிறக்க நேரத்தைக் குறைப்பதால் பக்கம் மற்றும் LCP ஏற்றப்படும் நேரம் மேம்படலாம். [பட அளவை மேம்படுத்துவது குறித்து மேலும் தெரிந்துகொள்ளுங்கள்](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)"
|
1759
|
+
},
|
1760
|
+
"models/trace/insights/ImageDelivery.ts | title": {
|
1761
|
+
"message": "படம் காட்டப்படும் விதத்தை மேம்படுத்துதல்"
|
1762
|
+
},
|
1763
|
+
"models/trace/insights/ImageDelivery.ts | useCompression": {
|
1764
|
+
"message": "படச் சுருக்கக் காரணியை அதிகரிப்பது இந்தப் படத்திற்கான பதிவிறக்க அளவை மேம்படுத்தக்கூடும். (மதிப்பிடப்பட்ட அளவு: {PH1})"
|
1765
|
+
},
|
1766
|
+
"models/trace/insights/ImageDelivery.ts | useModernFormat": {
|
1767
|
+
"message": "நவீனப் பட வடிவமைப்பை (WebP, AVIF) பயன்படுத்துவது அல்லது படச் சுருக்குதலை அதிகரிப்பது படத்தின் பதிவிறக்க அளவை மேம்படுத்தக்கூடும். (மதிப்பிடப்பட்ட அளவு: {PH1})"
|
1768
|
+
},
|
1769
|
+
"models/trace/insights/ImageDelivery.ts | useResponsiveSize": {
|
1770
|
+
"message": "காட்டப்படும் பரிமாணங்களை ({PH3}) விடவும் இந்தப் பட ஃபைல் ({PH2}) பெரிதாக உள்ளது. படத்தின் பதிவிறக்க அளவைக் குறைக்க, தானாகப் பொருந்தும் தன்மையுள்ள படங்களைப் பயன்படுத்தவும். (மதிப்பிடப்பட்ட அளவு: {PH1})"
|
1771
|
+
},
|
1772
|
+
"models/trace/insights/ImageDelivery.ts | useVideoFormat": {
|
1773
|
+
"message": "GIFகளுக்குப் பதிலாக வீடியோ வடிவமைப்புகளைப் பயன்படுத்துவது அனிமேஷன் செய்யப்படும் உள்ளடக்கத்தின் பதிவிறக்க அளவை மேம்படுத்தும். (மதிப்பிடப்பட்ட அளவு: {PH1})"
|
1774
|
+
},
|
1709
1775
|
"models/trace/insights/InteractionToNextPaint.ts | description": {
|
1710
1776
|
"message": "நீளமான நிலையில் இருந்து ஆய்வைத் தொடங்கவும். [தாமதங்களைக் குறைக்கலாம்](https://web.dev/articles/optimize-inp#optimize_interactions). செயலாக்கத்திற்கான கால அளவைக் குறைக்க, [முக்கியத் தொடரிழையின் (பெரும்பாலும் JS செயலாக்கங்கள்) செயல்திறன் பாதிப்புகளை](https://web.dev/articles/optimize-long-tasks) மேம்படுத்தவும்."
|
1711
1777
|
},
|
@@ -1724,6 +1790,12 @@
|
|
1724
1790
|
"models/trace/insights/LCPPhases.ts | title": {
|
1725
1791
|
"message": "நிலையின்படி LCP"
|
1726
1792
|
},
|
1793
|
+
"models/trace/insights/LongCriticalNetworkTree.ts | description": {
|
1794
|
+
"message": "செயின்களின் நீளத்தைக் குறைத்தல், ஆதாரங்களின் பதிவிறக்க அளவைக் குறைத்தல், பக்கம் ஏற்றப்படுவதன் வேகத்தை அதிகரிக்க தேவையற்ற ஆதாரங்களைப் பதிவிறக்குவதைத் தவிர்த்தல் போன்றவற்றின் மூலம் [முக்கியக் கோரிக்கைகளின் செயினிங்கைத் தவிர்க்கலாம்](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains)."
|
1795
|
+
},
|
1796
|
+
"models/trace/insights/LongCriticalNetworkTree.ts | title": {
|
1797
|
+
"message": "நீளமான கிரிட்டிக்கல் நெட்வொர்க் ட்ரீ"
|
1798
|
+
},
|
1727
1799
|
"models/trace/insights/RenderBlocking.ts | description": {
|
1728
1800
|
"message": "பக்கத்தின் துவக்க ரென்டரைத் தடுக்கும் கோரிக்கைகள் LCPயைத் தாமதப்படுத்தக்கூடும். [தவிர்ப்பது அல்லது இன்லைனில்](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources/) வழங்குவதன் மூலம் இந்த நெட்வொர்க் கோரிக்கைகளை முக்கியக் கோரிக்கைத் தடத்தில் இருந்து வெளியேற்றலாம்."
|
1729
1801
|
},
|
@@ -1743,10 +1815,10 @@
|
|
1743
1815
|
"message": "மூன்றாம் தரப்பினர்"
|
1744
1816
|
},
|
1745
1817
|
"models/trace/insights/Viewport.ts | description": {
|
1746
|
-
"message": "
|
1818
|
+
"message": "காட்சிப் பகுதி மொபைலுக்கு ஏற்றவாறு மேம்படுத்தப்படவில்லை என்றால் தட்டுதல் செயல்பாடுகள் [300 மிவி வரை தாமதம் ஆகக்கூடும்](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/)."
|
1747
1819
|
},
|
1748
1820
|
"models/trace/insights/Viewport.ts | title": {
|
1749
|
-
"message": "காட்சிப்
|
1821
|
+
"message": "காட்சிப் பகுதியை மொபைலுக்கு ஏற்றதாக மேம்படுத்துதல்"
|
1750
1822
|
},
|
1751
1823
|
"models/workspace/UISourceCode.ts | index": {
|
1752
1824
|
"message": "(பொருளடக்கம்)"
|
@@ -2171,6 +2243,87 @@
|
|
2171
2243
|
"panels/accessibility/accessibility-meta.ts | shoAccessibility": {
|
2172
2244
|
"message": "அணுகல்தன்மையைக் காட்டு"
|
2173
2245
|
},
|
2246
|
+
"panels/ai_assistance/AiAssistancePanel.ts | chatDeleted": {
|
2247
|
+
"message": "உரையாடல் நீக்கப்பட்டது"
|
2248
|
+
},
|
2249
|
+
"panels/ai_assistance/AiAssistancePanel.ts | clearChatHistory": {
|
2250
|
+
"message": "லோக்கல் பதிவுகளை அழி"
|
2251
|
+
},
|
2252
|
+
"panels/ai_assistance/AiAssistancePanel.ts | deleteChat": {
|
2253
|
+
"message": "லோக்கல் பதிவுகளை நீக்கு"
|
2254
|
+
},
|
2255
|
+
"panels/ai_assistance/AiAssistancePanel.ts | help": {
|
2256
|
+
"message": "உதவி"
|
2257
|
+
},
|
2258
|
+
"panels/ai_assistance/AiAssistancePanel.ts | history": {
|
2259
|
+
"message": "பதிவு"
|
2260
|
+
},
|
2261
|
+
"panels/ai_assistance/AiAssistancePanel.ts | newChat": {
|
2262
|
+
"message": "புதிய உரையாடல்"
|
2263
|
+
},
|
2264
|
+
"panels/ai_assistance/AiAssistancePanel.ts | newChatCreated": {
|
2265
|
+
"message": "புதிய உரையாடல் உருவாக்கப்பட்டது"
|
2266
|
+
},
|
2267
|
+
"panels/ai_assistance/AiAssistancePanel.ts | noPastConversations": {
|
2268
|
+
"message": "முந்தைய உரையாடல்கள் எதுவும் இல்லை"
|
2269
|
+
},
|
2270
|
+
"panels/ai_assistance/AiAssistancePanel.ts | sendFeedback": {
|
2271
|
+
"message": "கருத்தை அனுப்பும்"
|
2272
|
+
},
|
2273
|
+
"panels/ai_assistance/AiAssistancePanel.ts | settings": {
|
2274
|
+
"message": "அமைப்புகள்"
|
2275
|
+
},
|
2276
|
+
"panels/ai_assistance/ai_assistance-meta.ts | aiAssistance": {
|
2277
|
+
"message": "AI உதவி"
|
2278
|
+
},
|
2279
|
+
"panels/ai_assistance/ai_assistance-meta.ts | askAi": {
|
2280
|
+
"message": "AIயிடம் கேட்கலாம்"
|
2281
|
+
},
|
2282
|
+
"panels/ai_assistance/ai_assistance-meta.ts | enableAiAssistance": {
|
2283
|
+
"message": "AI உதவியை இயக்கு"
|
2284
|
+
},
|
2285
|
+
"panels/ai_assistance/ai_assistance-meta.ts | geoRestricted": {
|
2286
|
+
"message": "இந்த அம்சம் உங்கள் பிராந்தியத்தில் கிடைக்கவில்லை."
|
2287
|
+
},
|
2288
|
+
"panels/ai_assistance/ai_assistance-meta.ts | policyRestricted": {
|
2289
|
+
"message": "இந்த அமைப்பை உங்கள் நிர்வாகி நிர்வகிக்கிறார்."
|
2290
|
+
},
|
2291
|
+
"panels/ai_assistance/ai_assistance-meta.ts | showAiAssistance": {
|
2292
|
+
"message": "AI உதவியைக் காட்டு"
|
2293
|
+
},
|
2294
|
+
"panels/ai_assistance/ai_assistance-meta.ts | wrongLocale": {
|
2295
|
+
"message": "இந்த அம்சத்தைப் பயன்படுத்த, டெவெலப்பர் கருவிகள் அமைப்புகளில் உங்களின் விருப்ப மொழியை ஆங்கிலம் என்று அமைத்திடுங்கள்."
|
2296
|
+
},
|
2297
|
+
"panels/ai_assistance/components/ChatView.ts | followTheSteps": {
|
2298
|
+
"message": "கேள்வி கேட்க மேலே உள்ள வழிமுறைகளைப் பின்பற்றவும்"
|
2299
|
+
},
|
2300
|
+
"panels/ai_assistance/components/ChatView.ts | inputDisclaimerForEmptyState": {
|
2301
|
+
"message": "இது பரிசோதனை நிலையில் உள்ள AI அம்சம் என்பதால் சில சமயங்களில் சரியாகச் செயல்படாமல் போகலாம்."
|
2302
|
+
},
|
2303
|
+
"panels/ai_assistance/components/ChatView.ts | learnAbout": {
|
2304
|
+
"message": "டெவெலப்பர் கருவிகளில் AI குறித்துத் தெரிந்துகொள்ளுங்கள்"
|
2305
|
+
},
|
2306
|
+
"panels/ai_assistance/components/ChatView.ts | notLoggedIn": {
|
2307
|
+
"message": "உங்கள் Google கணக்கு மூலம் Chromeமில் உள்நுழைந்திருக்கும்போது மட்டுமே இந்த அம்சத்தைப் பயன்படுத்த முடியும்"
|
2308
|
+
},
|
2309
|
+
"panels/ai_assistance/components/ChatView.ts | offline": {
|
2310
|
+
"message": "இணைய இணைப்பைச் சரிபார்த்து மீண்டும் முயலவும்"
|
2311
|
+
},
|
2312
|
+
"panels/ai_assistance/components/ChatView.ts | settingsLink": {
|
2313
|
+
"message": "அமைப்புகளில் AI உதவி"
|
2314
|
+
},
|
2315
|
+
"panels/ai_assistance/components/ChatView.ts | turnOnForStyles": {
|
2316
|
+
"message": "CSS ஸ்டைல்களைப் புரிந்துகொள்வதற்கான உதவியைப் பெற {PH1} இயக்குங்கள்"
|
2317
|
+
},
|
2318
|
+
"panels/ai_assistance/components/ChatView.ts | turnOnForStylesAndRequests": {
|
2319
|
+
"message": "ஸ்டைல்கள் மற்றும் நெட்வொர்க் கோரிக்கைகளுக்கான உதவியைப் பெற {PH1} இயக்குங்கள்"
|
2320
|
+
},
|
2321
|
+
"panels/ai_assistance/components/ChatView.ts | turnOnForStylesRequestsAndFiles": {
|
2322
|
+
"message": "ஸ்டைல்கள், நெட்வொர்க் கோரிக்கைகள் மற்றும் ஃபைல்கள் தொடர்பான உதவியைப் பெற {PH1} என்பதை இயக்கவும்"
|
2323
|
+
},
|
2324
|
+
"panels/ai_assistance/components/ChatView.ts | turnOnForStylesRequestsPerformanceAndFiles": {
|
2325
|
+
"message": "ஸ்டைல்கள், நெட்வொர்க் கோரிக்கைகள், செயல்திறன் மற்றும் ஃபைல்கள் தொடர்பான உதவியைப் பெற {PH1} என்பதை இயக்கவும்"
|
2326
|
+
},
|
2174
2327
|
"panels/animation/AnimationTimeline.ts | animationPreviewS": {
|
2175
2328
|
"message": "அனிமேஷன் மாதிரிக்காட்சி {PH1}"
|
2176
2329
|
},
|
@@ -2507,11 +2660,14 @@
|
|
2507
2660
|
"panels/application/ApplicationPanelSidebar.ts | cookies": {
|
2508
2661
|
"message": "குக்கீகள்"
|
2509
2662
|
},
|
2663
|
+
"panels/application/ApplicationPanelSidebar.ts | cookiesDescription": {
|
2664
|
+
"message": "இந்தப் பக்கத்தில் குக்கீகளைப் பார்க்கலாம், சேர்க்கலாம், திருத்தலாம், நீக்கலாம்."
|
2665
|
+
},
|
2510
2666
|
"panels/application/ApplicationPanelSidebar.ts | cookiesUsedByFramesFromS": {
|
2511
2667
|
"message": "{PH1} தளத்தில் இருந்து ஃபிரேம்கள் மூலம் குக்கீகள் பயன்படுத்தப்பட்டன"
|
2512
2668
|
},
|
2513
2669
|
"panels/application/ApplicationPanelSidebar.ts | documentNotAvailable": {
|
2514
|
-
"message": "ஆவணம்
|
2670
|
+
"message": "ஆவணம் எதுவும் கண்டறியப்படவில்லை"
|
2515
2671
|
},
|
2516
2672
|
"panels/application/ApplicationPanelSidebar.ts | extensionLocalStorage": {
|
2517
2673
|
"message": "லோக்கல்"
|
@@ -2525,6 +2681,9 @@
|
|
2525
2681
|
"panels/application/ApplicationPanelSidebar.ts | extensionStorage": {
|
2526
2682
|
"message": "நீட்டிப்புச் சேமிப்பகம்"
|
2527
2683
|
},
|
2684
|
+
"panels/application/ApplicationPanelSidebar.ts | extensionStorageDescription": {
|
2685
|
+
"message": "இந்தப் பக்கத்தில், நீட்டிப்புச் சேமிப்பகக் குறியீடு-மதிப்பு இணைப்புகளைப் பார்க்கலாம், சேர்க்கலாம், திருத்தலாம், நீக்கலாம்."
|
2686
|
+
},
|
2528
2687
|
"panels/application/ApplicationPanelSidebar.ts | extensionSyncStorage": {
|
2529
2688
|
"message": "ஒத்திசைவு"
|
2530
2689
|
},
|
@@ -2534,6 +2693,9 @@
|
|
2534
2693
|
"panels/application/ApplicationPanelSidebar.ts | indexeddb": {
|
2535
2694
|
"message": "IndexedDB"
|
2536
2695
|
},
|
2696
|
+
"panels/application/ApplicationPanelSidebar.ts | indexeddbDescription": {
|
2697
|
+
"message": "இந்தப் பக்கத்தில், indexedDB குறியீடு-மதிப்பு இணைப்புகள் மற்றும் தரவுத்தளங்களைப் பார்க்கலாம் நீக்கலாம்."
|
2698
|
+
},
|
2537
2699
|
"panels/application/ApplicationPanelSidebar.ts | keyPathS": {
|
2538
2700
|
"message": "முக்கியத் தடம்: {PH1}"
|
2539
2701
|
},
|
@@ -2543,12 +2705,33 @@
|
|
2543
2705
|
"panels/application/ApplicationPanelSidebar.ts | localStorage": {
|
2544
2706
|
"message": "சாதனச் சேமிப்பகம்"
|
2545
2707
|
},
|
2708
|
+
"panels/application/ApplicationPanelSidebar.ts | localStorageDescription": {
|
2709
|
+
"message": "இந்தப் பக்கத்தில், லோக்கல் சேமிப்பகக் குறியீடு-மதிப்பு இணைப்புகளைப் பார்க்கலாம், சேர்க்கலாம், திருத்தலாம், நீக்கலாம்."
|
2710
|
+
},
|
2546
2711
|
"panels/application/ApplicationPanelSidebar.ts | manifest": {
|
2547
2712
|
"message": "மெனிஃபெஸ்ட்"
|
2548
2713
|
},
|
2714
|
+
"panels/application/ApplicationPanelSidebar.ts | manifestDescription": {
|
2715
|
+
"message": "மொபைலின் முகப்புத் திரைகளில் உங்கள் ஆப்ஸ் காட்டப்படும் விதத்தையும், ஆப்ஸைத் தொடங்கும்போது அதன் தோற்றத்தையும் மெனிஃபெஸ்ட் வரையறுக்கிறது."
|
2716
|
+
},
|
2717
|
+
"panels/application/ApplicationPanelSidebar.ts | noCookies": {
|
2718
|
+
"message": "குக்கீகள் எதுவும் அமைக்கப்படவில்லை"
|
2719
|
+
},
|
2720
|
+
"panels/application/ApplicationPanelSidebar.ts | noExtensionStorage": {
|
2721
|
+
"message": "நீட்டிப்புச் சேமிப்பகம் எதுவும் கண்டறியப்படவில்லை"
|
2722
|
+
},
|
2723
|
+
"panels/application/ApplicationPanelSidebar.ts | noIndexeddb": {
|
2724
|
+
"message": "indexedDB எதுவும் கண்டறியப்படவில்லை"
|
2725
|
+
},
|
2726
|
+
"panels/application/ApplicationPanelSidebar.ts | noLocalStorage": {
|
2727
|
+
"message": "லோக்கல் சேமிப்பகம் எதுவும் கண்டறியப்படவில்லை"
|
2728
|
+
},
|
2549
2729
|
"panels/application/ApplicationPanelSidebar.ts | noManifestDetected": {
|
2550
2730
|
"message": "மெனிஃபெஸ்ட் எதுவும் கண்டறியப்படவில்லை"
|
2551
2731
|
},
|
2732
|
+
"panels/application/ApplicationPanelSidebar.ts | noSessionStorage": {
|
2733
|
+
"message": "அமர்வுச் சேமிப்பகம் எதுவும் கண்டறியப்படவில்லை"
|
2734
|
+
},
|
2552
2735
|
"panels/application/ApplicationPanelSidebar.ts | onInvokeAlert": {
|
2553
2736
|
"message": "{PH1}க்குச் செல்கிறது"
|
2554
2737
|
},
|
@@ -2558,12 +2741,21 @@
|
|
2558
2741
|
"panels/application/ApplicationPanelSidebar.ts | openedWindows": {
|
2559
2742
|
"message": "திறந்துள்ள சாளரங்கள்"
|
2560
2743
|
},
|
2744
|
+
"panels/application/ApplicationPanelSidebar.ts | openedWindowsDescription": {
|
2745
|
+
"message": "இந்தப் பக்கத்தில் window.open() மூலம் திறக்கப்பட்ட சாளரங்களைப் பார்க்கலாம்."
|
2746
|
+
},
|
2561
2747
|
"panels/application/ApplicationPanelSidebar.ts | refreshIndexeddb": {
|
2562
2748
|
"message": "IndexedDBயை ரெஃப்ரெஷ் செய்"
|
2563
2749
|
},
|
2750
|
+
"panels/application/ApplicationPanelSidebar.ts | resourceDescription": {
|
2751
|
+
"message": "இந்தப் பக்கத்தில் ஃபிரேமின் ஆதாரங்களைப் பார்க்கலாம்."
|
2752
|
+
},
|
2564
2753
|
"panels/application/ApplicationPanelSidebar.ts | sessionStorage": {
|
2565
2754
|
"message": "அமர்வுச் சேமிப்பகம்"
|
2566
2755
|
},
|
2756
|
+
"panels/application/ApplicationPanelSidebar.ts | sessionStorageDescription": {
|
2757
|
+
"message": "இந்தப் பக்கத்தில், அமர்வுச் சேமிப்பகக் குறியீடு-மதிப்பு இணைப்புகளைப் பார்க்கலாம், சேர்க்கலாம், திருத்தலாம், நீக்கலாம்."
|
2758
|
+
},
|
2567
2759
|
"panels/application/ApplicationPanelSidebar.ts | storage": {
|
2568
2760
|
"message": "சேமிப்பகம்"
|
2569
2761
|
},
|
@@ -2588,6 +2780,9 @@
|
|
2588
2780
|
"panels/application/ApplicationPanelSidebar.ts | worker": {
|
2589
2781
|
"message": "worker"
|
2590
2782
|
},
|
2783
|
+
"panels/application/ApplicationPanelSidebar.ts | workerDescription": {
|
2784
|
+
"message": "இந்தப் பக்கத்தில், முதல்நிலை ஃபிரேம் உருவாக்கிய பிரத்தியேக வொர்க்கர்களைப் பார்க்கலாம்."
|
2785
|
+
},
|
2591
2786
|
"panels/application/BackForwardCacheTreeElement.ts | backForwardCache": {
|
2592
2787
|
"message": "முன் பின் பக்கங்களைத் தற்காலிகமாகச் சேமித்தல்"
|
2593
2788
|
},
|
@@ -2681,6 +2876,9 @@
|
|
2681
2876
|
"panels/application/CookieItemsView.ts | cookies": {
|
2682
2877
|
"message": "குக்கீகள்"
|
2683
2878
|
},
|
2879
|
+
"panels/application/CookieItemsView.ts | noCookieSelected": {
|
2880
|
+
"message": "குக்கீ எதுவும் தேர்ந்தெடுக்கப்படவில்லை"
|
2881
|
+
},
|
2684
2882
|
"panels/application/CookieItemsView.ts | numberOfCookiesShownInTableS": {
|
2685
2883
|
"message": "இந்த டேபிளில் காட்டப்படும் குக்கீகளின் எண்ணிக்கை: {PH1}"
|
2686
2884
|
},
|
@@ -2696,9 +2894,6 @@
|
|
2696
2894
|
"panels/application/CookieItemsView.ts | showUrlDecoded": {
|
2697
2895
|
"message": "டீகோட் செய்யப்பட்ட URLலைக் காட்டு"
|
2698
2896
|
},
|
2699
|
-
"panels/application/DOMStorageItemsView.ts | domStorage": {
|
2700
|
-
"message": "DOM சேமிப்பகம்"
|
2701
|
-
},
|
2702
2897
|
"panels/application/DOMStorageItemsView.ts | domStorageItemDeleted": {
|
2703
2898
|
"message": "சேமிப்பக மதிப்பு நீக்கப்பட்டது."
|
2704
2899
|
},
|
@@ -2708,30 +2903,12 @@
|
|
2708
2903
|
"panels/application/DOMStorageItemsView.ts | domStorageItemsCleared": {
|
2709
2904
|
"message": "DOM சேமிப்பகத் தரவு அழிக்கப்பட்டது"
|
2710
2905
|
},
|
2711
|
-
"panels/application/DOMStorageItemsView.ts | key": {
|
2712
|
-
"message": "குறியீடு"
|
2713
|
-
},
|
2714
|
-
"panels/application/DOMStorageItemsView.ts | value": {
|
2715
|
-
"message": "மதிப்பு"
|
2716
|
-
},
|
2717
|
-
"panels/application/ExtensionStorageItemsView.ts | extensionStorage": {
|
2718
|
-
"message": "நீட்டிப்புச் சேமிப்பகம்"
|
2719
|
-
},
|
2720
|
-
"panels/application/ExtensionStorageItemsView.ts | extensionStorageItemDeleted": {
|
2721
|
-
"message": "சேமிப்பக மதிப்பு நீக்கப்பட்டது."
|
2722
|
-
},
|
2723
2906
|
"panels/application/ExtensionStorageItemsView.ts | extensionStorageItems": {
|
2724
2907
|
"message": "நீட்டிப்புச் சேமிப்பக உள்ளடக்கங்கள்"
|
2725
2908
|
},
|
2726
2909
|
"panels/application/ExtensionStorageItemsView.ts | extensionStorageItemsCleared": {
|
2727
2910
|
"message": "நீட்டிப்பின் சேமிப்பக உள்ளடக்கங்கள் அழிக்கப்பட்டன"
|
2728
2911
|
},
|
2729
|
-
"panels/application/ExtensionStorageItemsView.ts | key": {
|
2730
|
-
"message": "கீ"
|
2731
|
-
},
|
2732
|
-
"panels/application/ExtensionStorageItemsView.ts | value": {
|
2733
|
-
"message": "மதிப்பு"
|
2734
|
-
},
|
2735
2912
|
"panels/application/IndexedDBViews.ts | clearObjectStore": {
|
2736
2913
|
"message": "ஆப்ஜெக்ட் சேமிப்பை அழிக்கும்"
|
2737
2914
|
},
|
@@ -2882,9 +3059,15 @@
|
|
2882
3059
|
"panels/application/ServiceWorkerCacheTreeElement.ts | cacheStorage": {
|
2883
3060
|
"message": "தற்காலிகச் சேமிப்பிடம்"
|
2884
3061
|
},
|
3062
|
+
"panels/application/ServiceWorkerCacheTreeElement.ts | cacheStorageDescription": {
|
3063
|
+
"message": "இந்தப் பக்கத்தில் தற்காலிகச் சேமிப்புத் தரவைப் பார்க்கலாம் நீக்கலாம்."
|
3064
|
+
},
|
2885
3065
|
"panels/application/ServiceWorkerCacheTreeElement.ts | delete": {
|
2886
3066
|
"message": "நீக்கு"
|
2887
3067
|
},
|
3068
|
+
"panels/application/ServiceWorkerCacheTreeElement.ts | noCacheStorage": {
|
3069
|
+
"message": "தற்காலிகச் சேமிப்பு எதுவும் கண்டறியப்படவில்லை"
|
3070
|
+
},
|
2888
3071
|
"panels/application/ServiceWorkerCacheTreeElement.ts | refreshCaches": {
|
2889
3072
|
"message": "தற்காலிகச் சேமிப்பை ரெஃப்ரெஷ் செய்"
|
2890
3073
|
},
|
@@ -2906,6 +3089,9 @@
|
|
2906
3089
|
"panels/application/ServiceWorkerCacheViews.ts | name": {
|
2907
3090
|
"message": "பெயர்"
|
2908
3091
|
},
|
3092
|
+
"panels/application/ServiceWorkerCacheViews.ts | noCacheEntrySelected": {
|
3093
|
+
"message": "தற்காலிகச் சேமிப்பு உள்ளீடு எதுவும் தேர்ந்தெடுக்கப்படவில்லை"
|
3094
|
+
},
|
2909
3095
|
"panels/application/ServiceWorkerCacheViews.ts | preview": {
|
2910
3096
|
"message": "மாதிரிக்காட்சி"
|
2911
3097
|
},
|
@@ -3086,9 +3272,15 @@
|
|
3086
3272
|
"panels/application/SharedStorageListTreeElement.ts | sharedStorage": {
|
3087
3273
|
"message": "பகிர்ந்த சேமிப்பகம்"
|
3088
3274
|
},
|
3275
|
+
"panels/application/StorageBucketsTreeElement.ts | noStorageBuckets": {
|
3276
|
+
"message": "சேமிப்பக பக்கெட்டுகள் எதுவும் கண்டறியப்படவில்லை"
|
3277
|
+
},
|
3089
3278
|
"panels/application/StorageBucketsTreeElement.ts | storageBuckets": {
|
3090
3279
|
"message": "சேமிப்பக பக்கெட்டுகள்"
|
3091
3280
|
},
|
3281
|
+
"panels/application/StorageBucketsTreeElement.ts | storageBucketsDescription": {
|
3282
|
+
"message": "இந்தப் பக்கத்தில் சேமிப்பக பக்கெட்டுகளையும், அவற்றுடன் தொடர்புடைய storageAPIகளையும் பார்க்கலாம் நீக்கலாம்."
|
3283
|
+
},
|
3092
3284
|
"panels/application/StorageItemsView.ts | clearAll": {
|
3093
3285
|
"message": "அனைத்தையும் அழி"
|
3094
3286
|
},
|
@@ -3953,9 +4145,6 @@
|
|
3953
4145
|
"panels/application/components/SharedStorageAccessGrid.ts | eventType": {
|
3954
4146
|
"message": "அணுகல் வகை"
|
3955
4147
|
},
|
3956
|
-
"panels/application/components/SharedStorageAccessGrid.ts | mainFrameId": {
|
3957
|
-
"message": "முதன்மை ஃபிரேம் ஐடி"
|
3958
|
-
},
|
3959
4148
|
"panels/application/components/SharedStorageAccessGrid.ts | noEvents": {
|
3960
4149
|
"message": "பகிர்ந்த சேமிப்பக நிகழ்வுகள் எதுவும் பதிவுசெய்யப்படவில்லை."
|
3961
4150
|
},
|
@@ -4148,6 +4337,9 @@
|
|
4148
4337
|
"panels/application/preloading/components/MismatchedPreloadingGrid.ts | url": {
|
4149
4338
|
"message": "URL"
|
4150
4339
|
},
|
4340
|
+
"panels/application/preloading/components/PreloadingDetailsReportView.ts | automaticallyFellBackToPrefetch": {
|
4341
|
+
"message": "(ப்ரீஃபெட்சிற்குத் தானாகவே ஃபால்பேக் ஆகிவிட்டது)"
|
4342
|
+
},
|
4151
4343
|
"panels/application/preloading/components/PreloadingDetailsReportView.ts | buttonClickToInspect": {
|
4152
4344
|
"message": "ப்ரீரெண்டர் செய்யப்பட்ட பக்கத்தை ஆய்வு செய்ய கிளிக் செய்யவும்"
|
4153
4345
|
},
|
@@ -4160,6 +4352,9 @@
|
|
4160
4352
|
"panels/application/preloading/components/PreloadingDetailsReportView.ts | detailedStatusFailure": {
|
4161
4353
|
"message": "யூக அடிப்படையிலான ஏற்றுதல் தோல்வியடைந்தது."
|
4162
4354
|
},
|
4355
|
+
"panels/application/preloading/components/PreloadingDetailsReportView.ts | detailedStatusFallbackToPrefetch": {
|
4356
|
+
"message": "முன்கணித்து ஏற்றுதல் தோல்வி அடைந்தது, ஆனால் ப்ரீஃபெட்ச்சிற்கான ஃபால்பேக் வெற்றி அடைந்தது."
|
4357
|
+
},
|
4163
4358
|
"panels/application/preloading/components/PreloadingDetailsReportView.ts | detailedStatusNotTriggered": {
|
4164
4359
|
"message": "யூக அடிப்படையிலான ஏற்றுதல் இன்னும் இயக்கப்படவில்லை."
|
4165
4360
|
},
|
@@ -4244,6 +4439,9 @@
|
|
4244
4439
|
"panels/application/preloading/components/PreloadingGrid.ts | action": {
|
4245
4440
|
"message": "செயல்"
|
4246
4441
|
},
|
4442
|
+
"panels/application/preloading/components/PreloadingGrid.ts | prefetchFallbackReady": {
|
4443
|
+
"message": "ப்ரீஃபெட்ச் ஃபால்பேக் தயார்"
|
4444
|
+
},
|
4247
4445
|
"panels/application/preloading/components/PreloadingGrid.ts | ruleSet": {
|
4248
4446
|
"message": "ரூல் செட்"
|
4249
4447
|
},
|
@@ -4745,11 +4943,14 @@
|
|
4745
4943
|
"panels/browser_debugger/DOMBreakpointsSidebarPane.ts | checked": {
|
4746
4944
|
"message": "சரிபார்க்கப்பட்டது"
|
4747
4945
|
},
|
4946
|
+
"panels/browser_debugger/DOMBreakpointsSidebarPane.ts | domBreakpointsDescription": {
|
4947
|
+
"message": "DOM நோடு அல்லது அதன் உபநிலைகளை மாற்றுகின்ற குறியீட்டில் DOM பிரேக்பாயிண்ட்டுகள் இடைநிறுத்தப்படும்."
|
4948
|
+
},
|
4748
4949
|
"panels/browser_debugger/DOMBreakpointsSidebarPane.ts | domBreakpointsList": {
|
4749
4950
|
"message": "DOM பிரேக்பாயிண்ட்டுகள் பட்டியல்"
|
4750
4951
|
},
|
4751
4952
|
"panels/browser_debugger/DOMBreakpointsSidebarPane.ts | noBreakpoints": {
|
4752
|
-
"message": "
|
4953
|
+
"message": "No DOM breakpoints set"
|
4753
4954
|
},
|
4754
4955
|
"panels/browser_debugger/DOMBreakpointsSidebarPane.ts | nodeRemoved": {
|
4755
4956
|
"message": "கணு அகற்றப்பட்டது"
|
@@ -4865,14 +5066,20 @@
|
|
4865
5066
|
"panels/changes/ChangesSidebar.ts | sFromSourceMap": {
|
4866
5067
|
"message": "{PH1} (சோர்ஸ் மேப்பில் இருந்து)"
|
4867
5068
|
},
|
4868
|
-
"panels/changes/ChangesView.ts |
|
4869
|
-
"message": "
|
5069
|
+
"panels/changes/ChangesView.ts | binaryDataDescription": {
|
5070
|
+
"message": "The changes tab doesn't show binary data changes"
|
5071
|
+
},
|
5072
|
+
"panels/changes/ChangesView.ts | changesViewDescription": {
|
5073
|
+
"message": "On this page you can track code changes made within DevTools."
|
4870
5074
|
},
|
4871
5075
|
"panels/changes/ChangesView.ts | copy": {
|
4872
5076
|
"message": "நகலெடு"
|
4873
5077
|
},
|
4874
5078
|
"panels/changes/ChangesView.ts | noChanges": {
|
4875
|
-
"message": "
|
5079
|
+
"message": "No changes yet"
|
5080
|
+
},
|
5081
|
+
"panels/changes/ChangesView.ts | noTextualDiff": {
|
5082
|
+
"message": "No textual diff available"
|
4876
5083
|
},
|
4877
5084
|
"panels/changes/ChangesView.ts | sDeletions": {
|
4878
5085
|
"message": "{n,plural, =1{# நீக்குதல் (-)}other{# நீக்குதல்கள் (-)}}"
|
@@ -4973,6 +5180,9 @@
|
|
4973
5180
|
"panels/console/ConsoleView.ts | consoleSidebarShown": {
|
4974
5181
|
"message": "கன்சோல் பக்கப்பட்டி காட்டப்படுகிறது"
|
4975
5182
|
},
|
5183
|
+
"panels/console/ConsoleView.ts | copyConsole": {
|
5184
|
+
"message": "கன்சோலை நகலெடு"
|
5185
|
+
},
|
4976
5186
|
"panels/console/ConsoleView.ts | copyVisibleStyledSelection": {
|
4977
5187
|
"message": "தெரியும் நடையிலான தேர்வை நகலெடு"
|
4978
5188
|
},
|
@@ -5087,6 +5297,9 @@
|
|
5087
5297
|
"panels/console/ConsoleViewMessage.ts | Mxx": {
|
5088
5298
|
"message": " M<XX>"
|
5089
5299
|
},
|
5300
|
+
"panels/console/ConsoleViewMessage.ts | SeeIssueInCookieReport": {
|
5301
|
+
"message": "Click to open privacy and security panel and show third-party cookie report"
|
5302
|
+
},
|
5090
5303
|
"panels/console/ConsoleViewMessage.ts | assertionFailed": {
|
5091
5304
|
"message": "அசர்ஷென் தோல்வியுற்றது: "
|
5092
5305
|
},
|
@@ -5621,6 +5834,12 @@
|
|
5621
5834
|
"panels/developer_resources/DeveloperResourcesView.ts | loadHttpsDeveloperResources": {
|
5622
5835
|
"message": "டெவெலப்பர் கருவிகள் மூலம் அல்லாமல் நீங்கள் கண்காணிக்கும் இணையதளம் மூலம் HTTP(S) டெவெலப்பர் ஆதாரங்களை ஏற்றும்"
|
5623
5836
|
},
|
5837
|
+
"panels/developer_resources/DeveloperResourcesView.ts | noResourceMatches": {
|
5838
|
+
"message": "ரிசோர்ஸ் எதுவும் பொருந்தவில்லை"
|
5839
|
+
},
|
5840
|
+
"panels/developer_resources/DeveloperResourcesView.ts | numberOfResourceMatch": {
|
5841
|
+
"message": "{n,plural, =1{# ரிசோர்ஸ் பொருந்துகிறது}other{# ரிசோர்ஸ்கள் பொருந்துகின்றன}}"
|
5842
|
+
},
|
5624
5843
|
"panels/developer_resources/DeveloperResourcesView.ts | resources": {
|
5625
5844
|
"message": "{n,plural, =1{# ஆதாரம்}other{# ஆதாரங்கள்}}"
|
5626
5845
|
},
|
@@ -5714,6 +5933,9 @@
|
|
5714
5933
|
"panels/elements/ElementStatePaneWidget.ts | toggleElementState": {
|
5715
5934
|
"message": "உறுப்பு நிலைக்கு மாறும்"
|
5716
5935
|
},
|
5936
|
+
"panels/elements/ElementsPanel.ts | adornerSettings": {
|
5937
|
+
"message": "பேட்ஜ் அமைப்புகள்"
|
5938
|
+
},
|
5717
5939
|
"panels/elements/ElementsPanel.ts | computed": {
|
5718
5940
|
"message": "கணக்கிடப்பட்ட ஸ்டைல்கள்"
|
5719
5941
|
},
|
@@ -5876,9 +6098,6 @@
|
|
5876
6098
|
"panels/elements/ElementsTreeElement.ts | valueIsTooLargeToEdit": {
|
5877
6099
|
"message": "<மதிப்பு திருத்துவதற்கு மிகவும் பெரியதாக உள்ளது>"
|
5878
6100
|
},
|
5879
|
-
"panels/elements/ElementsTreeOutline.ts | adornerSettings": {
|
5880
|
-
"message": "பேட்ஜ் அமைப்புகள்…"
|
5881
|
-
},
|
5882
6101
|
"panels/elements/ElementsTreeOutline.ts | pageDom": {
|
5883
6102
|
"message": "பக்க DOM"
|
5884
6103
|
},
|
@@ -6110,12 +6329,6 @@
|
|
6110
6329
|
"panels/elements/components/AccessibilityTreeNode.ts | ignored": {
|
6111
6330
|
"message": "தவிர்க்கப்பட்டது"
|
6112
6331
|
},
|
6113
|
-
"panels/elements/components/AdornerSettingsPane.ts | closeButton": {
|
6114
|
-
"message": "மூடும்"
|
6115
|
-
},
|
6116
|
-
"panels/elements/components/AdornerSettingsPane.ts | settingsTitle": {
|
6117
|
-
"message": "பேட்ஜ்களைக் காட்டு"
|
6118
|
-
},
|
6119
6332
|
"panels/elements/components/AnchorFunctionLinkSwatch.ts | jumpToAnchorNode": {
|
6120
6333
|
"message": "ஆங்க்கர் நோடுக்குச் செல்லும்"
|
6121
6334
|
},
|
@@ -6381,7 +6594,7 @@
|
|
6381
6594
|
"message": "அகலம்"
|
6382
6595
|
},
|
6383
6596
|
"panels/emulation/DeviceModeToolbar.ts | zoom": {
|
6384
|
-
"message": "
|
6597
|
+
"message": "பெரிதாக்கு"
|
6385
6598
|
},
|
6386
6599
|
"panels/emulation/DeviceModeView.ts | doubleclickForFullHeight": {
|
6387
6600
|
"message": "முழு உயரத்தில் காட்ட இருமுறை தட்டவும்"
|
@@ -6503,9 +6716,15 @@
|
|
6503
6716
|
"panels/explain/components/ConsoleInsight.ts | opensInNewTab": {
|
6504
6717
|
"message": "(புதிய பக்கத்தில் திறக்கும்)"
|
6505
6718
|
},
|
6719
|
+
"panels/explain/components/ConsoleInsight.ts | references": {
|
6720
|
+
"message": "ஆதாரங்களும் தொடர்புடைய உள்ளடக்கமும்"
|
6721
|
+
},
|
6506
6722
|
"panels/explain/components/ConsoleInsight.ts | relatedCode": {
|
6507
6723
|
"message": "தொடர்புடைய குறியீடு"
|
6508
6724
|
},
|
6725
|
+
"panels/explain/components/ConsoleInsight.ts | relatedContent": {
|
6726
|
+
"message": "தொடர்புடைய உள்ளடக்கம்"
|
6727
|
+
},
|
6509
6728
|
"panels/explain/components/ConsoleInsight.ts | reloadRecommendation": {
|
6510
6729
|
"message": "மேம்பட்ட புள்ளிவிவரத்தை உருவாக்குவதற்காக இந்த மெசேஜ் உடன் தொடர்புடைய நெட்வொர்க் கோரிக்கைத் தரவைப் பெற, இந்தப் பக்கத்தை ரெஃப்ரெஷ் செய்யவும்."
|
6511
6730
|
},
|
@@ -6527,6 +6746,9 @@
|
|
6527
6746
|
"panels/explain/components/ConsoleInsight.ts | stackTrace": {
|
6528
6747
|
"message": "ஸ்டாக் டிரேஸ்:"
|
6529
6748
|
},
|
6749
|
+
"panels/explain/components/ConsoleInsight.ts | timedOut": {
|
6750
|
+
"message": "Generating a response took too long. Please try again."
|
6751
|
+
},
|
6530
6752
|
"panels/explain/components/ConsoleInsight.ts | turnOnInSettings": {
|
6531
6753
|
"message": "கன்சோல் எச்சரிக்கைகளையும் பிழைகளையும் புரிந்துகொண்டு அவற்றைச் சரிசெய்வதற்காக AI உதவிபெற {PH1} அம்சத்தை இயக்குங்கள்."
|
6532
6754
|
},
|
@@ -6543,94 +6765,13 @@
|
|
6543
6765
|
"message": "இந்த எச்சரிக்கையைப் புரிந்துகொள்ளுங்கள்"
|
6544
6766
|
},
|
6545
6767
|
"panels/explain/explain-meta.ts | geoRestricted": {
|
6546
|
-
"message": "இந்த அம்சம் உங்கள் பிராந்தியத்தில்
|
6768
|
+
"message": "இந்த அம்சம் உங்கள் பிராந்தியத்தில் கிடைக்கவில்லை."
|
6547
6769
|
},
|
6548
6770
|
"panels/explain/explain-meta.ts | policyRestricted": {
|
6549
|
-
"message": "உங்கள் நிர்வாகி
|
6771
|
+
"message": "இந்த அமைப்பை உங்கள் நிர்வாகி நிர்வகிக்கிறார்."
|
6550
6772
|
},
|
6551
6773
|
"panels/explain/explain-meta.ts | wrongLocale": {
|
6552
|
-
"message": "இந்த அம்சத்தைப்
|
6553
|
-
},
|
6554
|
-
"panels/freestyler/FreestylerPanel.ts | chatDeleted": {
|
6555
|
-
"message": "உரையாடல் நீக்கப்பட்டது"
|
6556
|
-
},
|
6557
|
-
"panels/freestyler/FreestylerPanel.ts | clearChatHistory": {
|
6558
|
-
"message": "உரையாடல் பதிவுகளை அழி"
|
6559
|
-
},
|
6560
|
-
"panels/freestyler/FreestylerPanel.ts | deleteChat": {
|
6561
|
-
"message": "உரையாடலை நீக்கு"
|
6562
|
-
},
|
6563
|
-
"panels/freestyler/FreestylerPanel.ts | help": {
|
6564
|
-
"message": "உதவி"
|
6565
|
-
},
|
6566
|
-
"panels/freestyler/FreestylerPanel.ts | history": {
|
6567
|
-
"message": "பதிவு"
|
6568
|
-
},
|
6569
|
-
"panels/freestyler/FreestylerPanel.ts | newChat": {
|
6570
|
-
"message": "புதிய உரையாடல்"
|
6571
|
-
},
|
6572
|
-
"panels/freestyler/FreestylerPanel.ts | newChatCreated": {
|
6573
|
-
"message": "புதிய உரையாடல் உருவாக்கப்பட்டது"
|
6574
|
-
},
|
6575
|
-
"panels/freestyler/FreestylerPanel.ts | noPastConversations": {
|
6576
|
-
"message": "முந்தைய உரையாடல்கள் எதுவும் இல்லை"
|
6577
|
-
},
|
6578
|
-
"panels/freestyler/FreestylerPanel.ts | sendFeedback": {
|
6579
|
-
"message": "கருத்தை அனுப்பும்"
|
6580
|
-
},
|
6581
|
-
"panels/freestyler/FreestylerPanel.ts | settings": {
|
6582
|
-
"message": "அமைப்புகள்"
|
6583
|
-
},
|
6584
|
-
"panels/freestyler/components/FreestylerChatUi.ts | followTheSteps": {
|
6585
|
-
"message": "கேள்வி கேட்க மேலே உள்ள வழிமுறைகளைப் பின்பற்றவும்"
|
6586
|
-
},
|
6587
|
-
"panels/freestyler/components/FreestylerChatUi.ts | inputDisclaimerForEmptyState": {
|
6588
|
-
"message": "இது பரிசோதனை நிலையில் உள்ள AI அம்சம் என்பதால் சில சமயங்களில் சரியாகச் செயல்படாமல் போகலாம்."
|
6589
|
-
},
|
6590
|
-
"panels/freestyler/components/FreestylerChatUi.ts | learnAbout": {
|
6591
|
-
"message": "டெவெலப்பர் கருவிகளில் AI குறித்துத் தெரிந்துகொள்ளுங்கள்"
|
6592
|
-
},
|
6593
|
-
"panels/freestyler/components/FreestylerChatUi.ts | notLoggedIn": {
|
6594
|
-
"message": "உங்கள் Google கணக்கு மூலம் Chromeமில் உள்நுழைந்திருக்கும்போது மட்டுமே இந்த அம்சத்தைப் பயன்படுத்த முடியும்"
|
6595
|
-
},
|
6596
|
-
"panels/freestyler/components/FreestylerChatUi.ts | offline": {
|
6597
|
-
"message": "இணைய இணைப்பைச் சரிபார்த்து மீண்டும் முயலவும்"
|
6598
|
-
},
|
6599
|
-
"panels/freestyler/components/FreestylerChatUi.ts | settingsLink": {
|
6600
|
-
"message": "அமைப்புகளில் AI உதவி"
|
6601
|
-
},
|
6602
|
-
"panels/freestyler/components/FreestylerChatUi.ts | turnOnForStyles": {
|
6603
|
-
"message": "CSS ஸ்டைல்களைப் புரிந்துகொள்வதற்கான உதவியைப் பெற {PH1} இயக்குங்கள்"
|
6604
|
-
},
|
6605
|
-
"panels/freestyler/components/FreestylerChatUi.ts | turnOnForStylesAndRequests": {
|
6606
|
-
"message": "ஸ்டைல்கள் மற்றும் நெட்வொர்க் கோரிக்கைகளுக்கான உதவியைப் பெற {PH1} இயக்குங்கள்"
|
6607
|
-
},
|
6608
|
-
"panels/freestyler/components/FreestylerChatUi.ts | turnOnForStylesRequestsAndFiles": {
|
6609
|
-
"message": "ஸ்டைல்கள், நெட்வொர்க் கோரிக்கைகள் மற்றும் ஃபைல்கள் தொடர்பான உதவியைப் பெற {PH1} என்பதை இயக்கவும்"
|
6610
|
-
},
|
6611
|
-
"panels/freestyler/components/FreestylerChatUi.ts | turnOnForStylesRequestsPerformanceAndFiles": {
|
6612
|
-
"message": "ஸ்டைல்கள், நெட்வொர்க் கோரிக்கைகள், செயல்திறன் மற்றும் ஃபைல்கள் தொடர்பான உதவியைப் பெற {PH1} என்பதை இயக்கவும்"
|
6613
|
-
},
|
6614
|
-
"panels/freestyler/freestyler-meta.ts | aiAssistance": {
|
6615
|
-
"message": "AI உதவி"
|
6616
|
-
},
|
6617
|
-
"panels/freestyler/freestyler-meta.ts | askAi": {
|
6618
|
-
"message": "AIயிடம் கேட்கலாம்"
|
6619
|
-
},
|
6620
|
-
"panels/freestyler/freestyler-meta.ts | enableAiAssistance": {
|
6621
|
-
"message": "AI உதவியை இயக்கு"
|
6622
|
-
},
|
6623
|
-
"panels/freestyler/freestyler-meta.ts | geoRestricted": {
|
6624
|
-
"message": "இந்த அம்சம் உங்கள் பிராந்தியத்தில் கிடைக்கவில்லை"
|
6625
|
-
},
|
6626
|
-
"panels/freestyler/freestyler-meta.ts | policyRestricted": {
|
6627
|
-
"message": "உங்கள் நிர்வாகி இந்த அமைப்பை நிர்வகிக்கிறார்"
|
6628
|
-
},
|
6629
|
-
"panels/freestyler/freestyler-meta.ts | showAiAssistance": {
|
6630
|
-
"message": "AI உதவியைக் காட்டு"
|
6631
|
-
},
|
6632
|
-
"panels/freestyler/freestyler-meta.ts | wrongLocale": {
|
6633
|
-
"message": "இந்த அம்சத்தைப் பயன்படுத்த டெவெலப்பர் கருவிகள் அமைப்புகளில் உங்களின் விருப்ப மொழியை ஆங்கிலம் என்று அமையுங்கள்"
|
6774
|
+
"message": "இந்த அம்சத்தைப் பயன்படுத்த, டெவெலப்பர் கருவிகள் அமைப்புகளில் உங்களின் விருப்ப மொழியை ஆங்கிலம் என்று அமைத்திடுங்கள்."
|
6634
6775
|
},
|
6635
6776
|
"panels/issues/AffectedBlockedByResponseView.ts | blockedResource": {
|
6636
6777
|
"message": "தடுக்கப்பட்ட ஆதாரம்"
|
@@ -7052,6 +7193,9 @@
|
|
7052
7193
|
"panels/layer_viewer/LayerDetailsView.ts | nearestLayerShiftingStickyBox": {
|
7053
7194
|
"message": "அருகிலுள்ள லேயராய் மாற்றுகின்ற, நிலையாகப் பொருந்தியிருக்கும் பெட்டி"
|
7054
7195
|
},
|
7196
|
+
"panels/layer_viewer/LayerDetailsView.ts | noLayerSelected": {
|
7197
|
+
"message": "லேயர் எதுவும் தேர்ந்தெடுக்கப்படவில்லை"
|
7198
|
+
},
|
7055
7199
|
"panels/layer_viewer/LayerDetailsView.ts | nonFastScrollable": {
|
7056
7200
|
"message": "மெதுவாக ஸ்க்ரோல் செய்யக்கூடியவை"
|
7057
7201
|
},
|
@@ -7727,6 +7871,9 @@
|
|
7727
7871
|
"panels/media/media-meta.ts | video": {
|
7728
7872
|
"message": "வீடியோ"
|
7729
7873
|
},
|
7874
|
+
"panels/mobile_throttling/CalibrationController.ts | runningCalibration": {
|
7875
|
+
"message": "CPU சீராக்கத்தை இயக்குகிறது, இந்தப் பக்கத்தில் இருந்து வெளியேற வேண்டாம் அல்லது டெவெலப்பர் கருவிகளை மூட வேண்டாம்."
|
7876
|
+
},
|
7730
7877
|
"panels/mobile_throttling/MobileThrottlingSelector.ts | advanced": {
|
7731
7878
|
"message": "மேம்பட்டவை"
|
7732
7879
|
},
|
@@ -7763,15 +7910,15 @@
|
|
7763
7910
|
"panels/mobile_throttling/ThrottlingManager.ts | addS": {
|
7764
7911
|
"message": "{PH1} ஐச் சேர்க்கும்"
|
7765
7912
|
},
|
7913
|
+
"panels/mobile_throttling/ThrottlingManager.ts | calibrate": {
|
7914
|
+
"message": "Calibrate…"
|
7915
|
+
},
|
7766
7916
|
"panels/mobile_throttling/ThrottlingManager.ts | cpuThrottling": {
|
7767
7917
|
"message": "CPU த்ராட்லிங்"
|
7768
7918
|
},
|
7769
7919
|
"panels/mobile_throttling/ThrottlingManager.ts | cpuThrottlingIsEnabled": {
|
7770
7920
|
"message": "CPU த்ராட்லிங் இயக்கப்பட்டுள்ளது"
|
7771
7921
|
},
|
7772
|
-
"panels/mobile_throttling/ThrottlingManager.ts | dSlowdown": {
|
7773
|
-
"message": "{PH1}× குறைவான வேகம்"
|
7774
|
-
},
|
7775
7922
|
"panels/mobile_throttling/ThrottlingManager.ts | excessConcurrency": {
|
7776
7923
|
"message": "இயல்பு மதிப்பைவிட அதிகமாக அமைத்தால் சிஸ்டம் செயல்திறன் குறையக்கூடும்."
|
7777
7924
|
},
|
@@ -7784,12 +7931,15 @@
|
|
7784
7931
|
"panels/mobile_throttling/ThrottlingManager.ts | hardwareConcurrencySettingLabel": {
|
7785
7932
|
"message": "navigator.hardwareConcurrencyயால் தெரிவிக்கப்பட்ட மதிப்பினை மீறிச் செயல்படும்"
|
7786
7933
|
},
|
7787
|
-
"panels/mobile_throttling/ThrottlingManager.ts | noThrottling": {
|
7788
|
-
"message": "த்ராட்லிங் இல்லை"
|
7789
|
-
},
|
7790
7934
|
"panels/mobile_throttling/ThrottlingManager.ts | offline": {
|
7791
7935
|
"message": "ஆஃப்லைன்"
|
7792
7936
|
},
|
7937
|
+
"panels/mobile_throttling/ThrottlingManager.ts | recalibrate": {
|
7938
|
+
"message": "Recalibrate…"
|
7939
|
+
},
|
7940
|
+
"panels/mobile_throttling/ThrottlingManager.ts | recommendedThrottling": {
|
7941
|
+
"message": "{PH1} – பரிந்துரைக்கப்படுகிறது"
|
7942
|
+
},
|
7793
7943
|
"panels/mobile_throttling/ThrottlingManager.ts | resetConcurrency": {
|
7794
7944
|
"message": "இயல்பு மதிப்புக்கு மீட்டமைக்கும்"
|
7795
7945
|
},
|
@@ -7808,7 +7958,10 @@
|
|
7808
7958
|
"panels/mobile_throttling/ThrottlingPresets.ts | fastGXCpuSlowdown": {
|
7809
7959
|
"message": "வேகமான 3G & 4 மடங்கு CPU ஸ்லோடவுன்"
|
7810
7960
|
},
|
7811
|
-
"panels/mobile_throttling/ThrottlingPresets.ts |
|
7961
|
+
"panels/mobile_throttling/ThrottlingPresets.ts | fastGXCpuSlowdownCalibrated": {
|
7962
|
+
"message": "வேகமான 3G மற்றும் {PH1} மடங்கு CPU ஸ்லோடவுன்"
|
7963
|
+
},
|
7964
|
+
"panels/mobile_throttling/ThrottlingPresets.ts | lowTierMobile": {
|
7812
7965
|
"message": "குறைந்த திறன் கொண்ட மொபைல்"
|
7813
7966
|
},
|
7814
7967
|
"panels/mobile_throttling/ThrottlingPresets.ts | midtierMobile": {
|
@@ -7818,14 +7971,50 @@
|
|
7818
7971
|
"message": "இணைய இணைப்பு இல்லை"
|
7819
7972
|
},
|
7820
7973
|
"panels/mobile_throttling/ThrottlingPresets.ts | noThrottling": {
|
7821
|
-
"message": "த்ராட்லிங் இல்லை"
|
7974
|
+
"message": "CPU மற்றும் நெட்வொர்க் த்ராட்லிங் இல்லை"
|
7822
7975
|
},
|
7823
7976
|
"panels/mobile_throttling/ThrottlingPresets.ts | slowGXCpuSlowdown": {
|
7824
7977
|
"message": "மெதுவான 3G & 6 மடங்கு CPU ஸ்லோடவுன்"
|
7825
7978
|
},
|
7979
|
+
"panels/mobile_throttling/ThrottlingPresets.ts | slowGXCpuSlowdownCalibrated": {
|
7980
|
+
"message": "மெதுவான 3G மற்றும் {PH1} மடங்கு CPU ஸ்லோடவுன்"
|
7981
|
+
},
|
7826
7982
|
"panels/mobile_throttling/ThrottlingSettingsTab.ts | addCustomProfile": {
|
7827
7983
|
"message": "சுயவிவரத்தைச் சேர்"
|
7828
7984
|
},
|
7985
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrate": {
|
7986
|
+
"message": "சீராக்கு"
|
7987
|
+
},
|
7988
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationCTA": {
|
7989
|
+
"message": "CPU த்ராட்லிங் முன்னமைவுகளைப் பயன்படுத்த, சீராக்கச் செயல்முறையை இயக்கி உங்கள் சாதனத்திற்கு ஏற்ற த்ராட்லிங் மதிப்பைக் கணக்கிட வேண்டும்."
|
7990
|
+
},
|
7991
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationConfirmationPrompt": {
|
7992
|
+
"message": "சீராக்க ~5 வினாடிகள் ஆகும், தற்காலிகமாக இந்தப் பக்கத்தில் இருந்து வேறு பக்கத்திற்குச் செல்லும். தொடர விரும்புகிறீர்களா?"
|
7993
|
+
},
|
7994
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationWarningHighCPU": {
|
7995
|
+
"message": "CPU உபயோகம் மிக அதிகமாக உள்ளது"
|
7996
|
+
},
|
7997
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationWarningLowBattery": {
|
7998
|
+
"message": "சாதனத்தின் பேட்டரி குறைவாக உள்ளது (<20%), CPU த்ராட்லிங்கால் முடிவுகள் பாதிக்கப்பட்டிருக்கலாம்"
|
7999
|
+
},
|
8000
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationWarningRunningOnBattery": {
|
8001
|
+
"message": "சாதனம் பேட்டரியில் இயங்குகிறது, சிறந்த முடிவுகளுக்கு சார்ஜரில் செருகவும்"
|
8002
|
+
},
|
8003
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | cancel": {
|
8004
|
+
"message": "ரத்துசெய்"
|
8005
|
+
},
|
8006
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | continue": {
|
8007
|
+
"message": "தொடர்க"
|
8008
|
+
},
|
8009
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | cpuCalibrationDescription": {
|
8010
|
+
"message": "இந்த முன்னமைவுகள் வழக்கமான குறைந்த அல்லது நடுத்தரச் செயல்திறனுடைய மொபைல் சாதனங்களின் செயல்திறனைத் தோராயமாக மதிப்பிட உங்கள் CPUவை இந்த முன்னமைவுகள் கட்டுப்படுத்தும்."
|
8011
|
+
},
|
8012
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | cpuThrottlingPresets": {
|
8013
|
+
"message": "CPU த்ராட்லிங் முன்னமைவுகள்"
|
8014
|
+
},
|
8015
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | dSlowdown": {
|
8016
|
+
"message": "{PH1}× குறைவான வேகம்"
|
8017
|
+
},
|
7829
8018
|
"panels/mobile_throttling/ThrottlingSettingsTab.ts | dms": {
|
7830
8019
|
"message": "{PH1} ms"
|
7831
8020
|
},
|
@@ -7844,6 +8033,9 @@
|
|
7844
8033
|
"panels/mobile_throttling/ThrottlingSettingsTab.ts | latencyMustBeAnIntegerBetweenSms": {
|
7845
8034
|
"message": "தாமதத்திற்கான மதிப்பு {PH1} ms, {PH2} ms (இரண்டும் அடங்கும்) ஆகியவற்றுக்கு இடையே ஒரு முழு எண்ணாக இருக்க வேண்டும்"
|
7846
8035
|
},
|
8036
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | needsCalibration": {
|
8037
|
+
"message": "சீராக்கம் தேவை"
|
8038
|
+
},
|
7847
8039
|
"panels/mobile_throttling/ThrottlingSettingsTab.ts | networkThrottlingProfiles": {
|
7848
8040
|
"message": "நெட்வொர்க் த்ராட்லிங் சுயவிவரங்கள்"
|
7849
8041
|
},
|
@@ -7883,6 +8075,9 @@
|
|
7883
8075
|
"panels/mobile_throttling/ThrottlingSettingsTab.ts | profileNameCharactersLengthMust": {
|
7884
8076
|
"message": "ப்ரொஃபைல் பெயர் 1 முதல் {PH1} எழுத்துகளுக்குள் (இரண்டும் அடங்கும்) இருக்க வேண்டும்"
|
7885
8077
|
},
|
8078
|
+
"panels/mobile_throttling/ThrottlingSettingsTab.ts | recalibrate": {
|
8079
|
+
"message": "மறுசீரமை"
|
8080
|
+
},
|
7886
8081
|
"panels/mobile_throttling/ThrottlingSettingsTab.ts | sMustBeANumberBetweenSkbsToSkbs": {
|
7887
8082
|
"message": "{PH1} மதிப்பு {PH2} kbit/s, {PH3} kbit/s (இரண்டும் அடங்கும்) ஆகியவற்றுக்கு இடையே உள்ள ஒரு மதிப்பாக இருக்க வேண்டும்"
|
7888
8083
|
},
|
@@ -8588,6 +8783,9 @@
|
|
8588
8783
|
"panels/network/NetworkPanel.ts | doNotClearLogOnPageReload": {
|
8589
8784
|
"message": "பக்கத்தை ரெஃப்ரெஷ் செய்யும்போது/செல்லும்போது பதிவு அழிக்கப்படாது"
|
8590
8785
|
},
|
8786
|
+
"panels/network/NetworkPanel.ts | exportHar": {
|
8787
|
+
"message": "தேவையில்லாதவை அகற்றிவிட்டோ பாதுகாக்கப்பட வேண்டிய தனிப்பட்ட தரவுடனோ HAR வடிவில் பதிவிறக்கும்"
|
8788
|
+
},
|
8591
8789
|
"panels/network/NetworkPanel.ts | exportHarSanitized": {
|
8592
8790
|
"message": "தேவையில்லாதவற்றை அகற்றிய பின்னர் HAR வடிவில் பதிவிறக்கும்..."
|
8593
8791
|
},
|
@@ -8696,14 +8894,17 @@
|
|
8696
8894
|
"panels/network/RequestCookiesView.ts | thisRequestHasNoCookies": {
|
8697
8895
|
"message": "இந்தக் கோரிக்கையில் குக்கீகள் இல்லை."
|
8698
8896
|
},
|
8897
|
+
"panels/network/RequestInitiatorView.ts | noInitiator": {
|
8898
|
+
"message": "No initiator data"
|
8899
|
+
},
|
8699
8900
|
"panels/network/RequestInitiatorView.ts | requestCallStack": {
|
8700
8901
|
"message": "கோரிக்கைக்கான கால் ஸ்டாக்"
|
8701
8902
|
},
|
8702
8903
|
"panels/network/RequestInitiatorView.ts | requestInitiatorChain": {
|
8703
8904
|
"message": "கோரிக்கையைத் தொடங்குபவை"
|
8704
8905
|
},
|
8705
|
-
"panels/network/
|
8706
|
-
"message": "
|
8906
|
+
"panels/network/RequestPayloadView.ts | copyPayload": {
|
8907
|
+
"message": "நகலெடு"
|
8707
8908
|
},
|
8708
8909
|
"panels/network/RequestPayloadView.ts | copyValue": {
|
8709
8910
|
"message": "மதிப்பை நகலெடு"
|
@@ -8759,8 +8960,11 @@
|
|
8759
8960
|
"panels/network/RequestResponseView.ts | failedToLoadResponseData": {
|
8760
8961
|
"message": "பதில் தரவை ஏற்ற முடியவில்லை"
|
8761
8962
|
},
|
8963
|
+
"panels/network/RequestResponseView.ts | noPreview": {
|
8964
|
+
"message": "Nothing to preview"
|
8965
|
+
},
|
8762
8966
|
"panels/network/RequestResponseView.ts | thisRequestHasNoResponseData": {
|
8763
|
-
"message": "
|
8967
|
+
"message": "This request has no response data available"
|
8764
8968
|
},
|
8765
8969
|
"panels/network/RequestTimingView.ts | cacheStorageCacheNameS": {
|
8766
8970
|
"message": "தற்காலிக நினைவகச் சேமிப்பகத்தின் பெயர்: {PH1}"
|
@@ -8939,6 +9143,9 @@
|
|
8939
9143
|
"panels/network/ResourceWebSocketFrameView.ts | na": {
|
8940
9144
|
"message": "இல்லை"
|
8941
9145
|
},
|
9146
|
+
"panels/network/ResourceWebSocketFrameView.ts | noMessageSelected": {
|
9147
|
+
"message": "மெசேஜ் எதுவும் தேர்ந்தெடுக்கப்படவில்லை"
|
9148
|
+
},
|
8942
9149
|
"panels/network/ResourceWebSocketFrameView.ts | pingMessage": {
|
8943
9150
|
"message": "மெசேஜைப் பிங் செய்"
|
8944
9151
|
},
|
@@ -9000,7 +9207,7 @@
|
|
9000
9207
|
"message": "லேபிள்"
|
9001
9208
|
},
|
9002
9209
|
"panels/network/SignedExchangeInfoView.ts | learnmore": {
|
9003
|
-
"message": "மேலும்
|
9210
|
+
"message": "மேலும் அறிக"
|
9004
9211
|
},
|
9005
9212
|
"panels/network/SignedExchangeInfoView.ts | requestUrl": {
|
9006
9213
|
"message": "URLலைக் கோரு"
|
@@ -9149,6 +9356,9 @@
|
|
9149
9356
|
"panels/network/components/RequestTrustTokensView.ts | parameters": {
|
9150
9357
|
"message": "அளவுருக்கள்"
|
9151
9358
|
},
|
9359
|
+
"panels/network/components/RequestTrustTokensView.ts | perSiteLimit": {
|
9360
|
+
"message": "ஒரு தளத்திற்கான வழங்குநர் எண்ணிக்கை வரம்பை அடைந்துவிட்டது."
|
9361
|
+
},
|
9152
9362
|
"panels/network/components/RequestTrustTokensView.ts | refreshPolicy": {
|
9153
9363
|
"message": "கொள்கையைப் புதுப்பி"
|
9154
9364
|
},
|
@@ -9402,10 +9612,10 @@
|
|
9402
9612
|
"message": "தேர்ந்தெடுத்த அளவு: {PH1}"
|
9403
9613
|
},
|
9404
9614
|
"panels/profiler/HeapProfileView.ts | selfSize": {
|
9405
|
-
"message": "
|
9615
|
+
"message": "செயல்பாட்டின் அளவு"
|
9406
9616
|
},
|
9407
9617
|
"panels/profiler/HeapProfileView.ts | selfSizeBytes": {
|
9408
|
-
"message": "
|
9618
|
+
"message": "செயல்பாட்டின் அளவு"
|
9409
9619
|
},
|
9410
9620
|
"panels/profiler/HeapProfileView.ts | skb": {
|
9411
9621
|
"message": "{PH1} கி.பை."
|
@@ -9423,7 +9633,7 @@
|
|
9423
9633
|
"message": "மொத்த அளவு"
|
9424
9634
|
},
|
9425
9635
|
"panels/profiler/HeapProfileView.ts | totalSizeBytes": {
|
9426
|
-
"message": "மொத்த அளவு
|
9636
|
+
"message": "மொத்த அளவு"
|
9427
9637
|
},
|
9428
9638
|
"panels/profiler/HeapProfileView.ts | url": {
|
9429
9639
|
"message": "URL"
|
@@ -9650,6 +9860,12 @@
|
|
9650
9860
|
"panels/profiler/HeapSnapshotView.ts | objectsRetainedByDetachedDomNodes": {
|
9651
9861
|
"message": "இணைப்பு நீக்கப்பட்ட DOM நோடுகள் மூலம் தக்கவைக்கப்பட்டுள்ள ஆப்ஜெக்ட்டுகள்"
|
9652
9862
|
},
|
9863
|
+
"panels/profiler/HeapSnapshotView.ts | otherJSObjects": {
|
9864
|
+
"message": "பிற JS ஆப்ஜெக்ட்டுகள்"
|
9865
|
+
},
|
9866
|
+
"panels/profiler/HeapSnapshotView.ts | otherNonJSObjects": {
|
9867
|
+
"message": "JS அல்லாத பிற ஆப்ஜெக்ட்டுகள் (HTML, CSS போன்றவை)"
|
9868
|
+
},
|
9653
9869
|
"panels/profiler/HeapSnapshotView.ts | percentagePlaceholder": {
|
9654
9870
|
"message": "{PH1}%"
|
9655
9871
|
},
|
@@ -9968,6 +10184,27 @@
|
|
9968
10184
|
"panels/profiler/profiler-meta.ts | stopRecordingHeapAllocations": {
|
9969
10185
|
"message": "ஹீப் ஒதுக்கீடுகளை ரெக்கார்டு செய்வதை நிறுத்து"
|
9970
10186
|
},
|
10187
|
+
"panels/protocol_monitor/JSONEditor.ts | addCustomProperty": {
|
10188
|
+
"message": "பிரத்தியேகமான பிராப்பர்ட்டியைச் சேர்"
|
10189
|
+
},
|
10190
|
+
"panels/protocol_monitor/JSONEditor.ts | addParameter": {
|
10191
|
+
"message": "பாராமீட்டரைச் சேர்"
|
10192
|
+
},
|
10193
|
+
"panels/protocol_monitor/JSONEditor.ts | copyCommand": {
|
10194
|
+
"message": "கட்டளையை நகலெடு"
|
10195
|
+
},
|
10196
|
+
"panels/protocol_monitor/JSONEditor.ts | deleteParameter": {
|
10197
|
+
"message": "பாராமீட்டரை நீக்கு"
|
10198
|
+
},
|
10199
|
+
"panels/protocol_monitor/JSONEditor.ts | resetDefaultValue": {
|
10200
|
+
"message": "இயல்பு மதிப்பிற்கு மாற்றியமை"
|
10201
|
+
},
|
10202
|
+
"panels/protocol_monitor/JSONEditor.ts | sendCommandCmdEnter": {
|
10203
|
+
"message": "கட்டளையை அனுப்பு - ⌘+Enter"
|
10204
|
+
},
|
10205
|
+
"panels/protocol_monitor/JSONEditor.ts | sendCommandCtrlEnter": {
|
10206
|
+
"message": "கட்டளையை அனுப்பு - Ctrl+Enter"
|
10207
|
+
},
|
9971
10208
|
"panels/protocol_monitor/ProtocolMonitor.ts | CDPCommandEditorHidden": {
|
9972
10209
|
"message": "CDP கமாண்ட் எடிட்டர் மறைக்கப்பட்டது"
|
9973
10210
|
},
|
@@ -9996,7 +10233,7 @@
|
|
9996
10233
|
"message": "முறை"
|
9997
10234
|
},
|
9998
10235
|
"panels/protocol_monitor/ProtocolMonitor.ts | noMessageSelected": {
|
9999
|
-
"message": "
|
10236
|
+
"message": "மெசேஜ் எதுவும் தேர்ந்தெடுக்கப்படவில்லை"
|
10000
10237
|
},
|
10001
10238
|
"panels/protocol_monitor/ProtocolMonitor.ts | record": {
|
10002
10239
|
"message": "ரெக்கார்டு செய்"
|
@@ -10013,6 +10250,9 @@
|
|
10013
10250
|
"panels/protocol_monitor/ProtocolMonitor.ts | save": {
|
10014
10251
|
"message": "சேமி"
|
10015
10252
|
},
|
10253
|
+
"panels/protocol_monitor/ProtocolMonitor.ts | selectAMessageToView": {
|
10254
|
+
"message": "Select a message to see its details"
|
10255
|
+
},
|
10016
10256
|
"panels/protocol_monitor/ProtocolMonitor.ts | selectTarget": {
|
10017
10257
|
"message": "இலக்கைத் தேர்ந்தெடுக்கவும்"
|
10018
10258
|
},
|
@@ -10037,27 +10277,6 @@
|
|
10037
10277
|
"panels/protocol_monitor/ProtocolMonitor.ts | type": {
|
10038
10278
|
"message": "வகை"
|
10039
10279
|
},
|
10040
|
-
"panels/protocol_monitor/components/JSONEditor.ts | addCustomProperty": {
|
10041
|
-
"message": "பிரத்தியேகமான பிராப்பர்ட்டியைச் சேர்"
|
10042
|
-
},
|
10043
|
-
"panels/protocol_monitor/components/JSONEditor.ts | addParameter": {
|
10044
|
-
"message": "பாராமீட்டரைச் சேர்"
|
10045
|
-
},
|
10046
|
-
"panels/protocol_monitor/components/JSONEditor.ts | deleteParameter": {
|
10047
|
-
"message": "பாராமீட்டரை நீக்கு"
|
10048
|
-
},
|
10049
|
-
"panels/protocol_monitor/components/JSONEditor.ts | resetDefaultValue": {
|
10050
|
-
"message": "இயல்பு மதிப்பிற்கு மாற்றியமை"
|
10051
|
-
},
|
10052
|
-
"panels/protocol_monitor/components/Toolbar.ts | copyCommand": {
|
10053
|
-
"message": "கட்டளையை நகலெடு"
|
10054
|
-
},
|
10055
|
-
"panels/protocol_monitor/components/Toolbar.ts | sendCommandCmdEnter": {
|
10056
|
-
"message": "கட்டளையை அனுப்பு - ⌘+Enter"
|
10057
|
-
},
|
10058
|
-
"panels/protocol_monitor/components/Toolbar.ts | sendCommandCtrlEnter": {
|
10059
|
-
"message": "கட்டளையை அனுப்பு - Ctrl+Enter"
|
10060
|
-
},
|
10061
10280
|
"panels/protocol_monitor/protocol_monitor-meta.ts | protocolMonitor": {
|
10062
10281
|
"message": "நெறிமுறை மானிட்டர்"
|
10063
10282
|
},
|
@@ -10071,7 +10290,7 @@
|
|
10071
10290
|
"message": "ரெக்கார்டிங் அல்லது தேர்ந்தெடுத்த படியை நகலெடுத்தல்"
|
10072
10291
|
},
|
10073
10292
|
"panels/recorder/RecorderController.ts | createRecording": {
|
10074
|
-
"message": "
|
10293
|
+
"message": "Create recording"
|
10075
10294
|
},
|
10076
10295
|
"panels/recorder/RecorderController.ts | deleteRecording": {
|
10077
10296
|
"message": "ரெக்கார்டிங்கை நீக்கு"
|
@@ -10088,15 +10307,24 @@
|
|
10088
10307
|
"panels/recorder/RecorderController.ts | getExtensions": {
|
10089
10308
|
"message": "நீட்டிப்புகளைப் பெறுக…"
|
10090
10309
|
},
|
10310
|
+
"panels/recorder/RecorderController.ts | header": {
|
10311
|
+
"message": "Nothing recorded yet"
|
10312
|
+
},
|
10091
10313
|
"panels/recorder/RecorderController.ts | importRecording": {
|
10092
10314
|
"message": "ரெக்கார்டிங்கைப் பதிவேற்று"
|
10093
10315
|
},
|
10316
|
+
"panels/recorder/RecorderController.ts | learnMore": {
|
10317
|
+
"message": "Learn more"
|
10318
|
+
},
|
10094
10319
|
"panels/recorder/RecorderController.ts | noRecordings": {
|
10095
10320
|
"message": "ரெக்கார்டிங்குகள் எதுவுமில்லை"
|
10096
10321
|
},
|
10097
10322
|
"panels/recorder/RecorderController.ts | numberOfRecordings": {
|
10098
10323
|
"message": "ரெக்கார்டிங்குகள்"
|
10099
10324
|
},
|
10325
|
+
"panels/recorder/RecorderController.ts | recordingDescription": {
|
10326
|
+
"message": "Use recordings to create automated end-to-end tests or performance traces."
|
10327
|
+
},
|
10100
10328
|
"panels/recorder/RecorderController.ts | replayRecording": {
|
10101
10329
|
"message": "ரெக்கார்டிங்கை மீண்டும் பிளே செய்"
|
10102
10330
|
},
|
@@ -10280,24 +10508,6 @@
|
|
10280
10508
|
"panels/recorder/components/ReplaySection.ts | speedGroup": {
|
10281
10509
|
"message": "வேகம்"
|
10282
10510
|
},
|
10283
|
-
"panels/recorder/components/StartView.ts | createRecording": {
|
10284
|
-
"message": "புதிய ரெக்கார்டிங்கை உருவாக்கு"
|
10285
|
-
},
|
10286
|
-
"panels/recorder/components/StartView.ts | header": {
|
10287
|
-
"message": "ஒட்டுமொத்த பயனர் அனுபவத்தில் செயல்திறனை முழுவதுமாக அளவிடுங்கள்"
|
10288
|
-
},
|
10289
|
-
"panels/recorder/components/StartView.ts | quickStart": {
|
10290
|
-
"message": "விரைவுத் தொடக்கம்: டெவெலப்பர் கருவிகளில் உள்ள புதிய ரெக்கார்டர் பேனலைத் தெரிந்துகொள்ளுதல்"
|
10291
|
-
},
|
10292
|
-
"panels/recorder/components/StartView.ts | step1": {
|
10293
|
-
"message": "உங்கள் இணையதளத்திலோ ஆப்ஸிலோ பயனர் அனுபவத்தை ரெக்கார்டு செய்யவும்"
|
10294
|
-
},
|
10295
|
-
"panels/recorder/components/StartView.ts | step2": {
|
10296
|
-
"message": "ரெக்கார்டிங் சரியாகப் பிளே ஆகிறதா என்பதைப் பார்க்க மீண்டும் பிளே செய்யவும்"
|
10297
|
-
},
|
10298
|
-
"panels/recorder/components/StartView.ts | step3": {
|
10299
|
-
"message": "சோதனை செய்ய விரிவான செயல்திறன் டிரேஸை உருவாக்கவும் அல்லது Puppeteer ஸ்கிரிப்ட்டைப் பதிவேற்றவும்"
|
10300
|
-
},
|
10301
10511
|
"panels/recorder/components/StepEditor.ts | addAttribute": {
|
10302
10512
|
"message": "{attributeName} ஐச் சேர்"
|
10303
10513
|
},
|
@@ -10520,24 +10730,186 @@
|
|
10520
10730
|
"panels/search/SearchView.ts | searching": {
|
10521
10731
|
"message": "தேடுகிறது…"
|
10522
10732
|
},
|
10733
|
+
"panels/security/CookieControlsView.ts | cardDisclaimer": {
|
10734
|
+
"message": "டெவெலப்பர் கருவிகள் திறந்திருக்கும்போது மட்டும்"
|
10735
|
+
},
|
10736
|
+
"panels/security/CookieControlsView.ts | cardTitle": {
|
10737
|
+
"message": "மூன்றாம் தரப்புக் குக்கீகளைத் தற்காலிகமாக வரம்பிடுதல்"
|
10738
|
+
},
|
10739
|
+
"panels/security/CookieControlsView.ts | enableFlag": {
|
10740
|
+
"message": "இதைப் பயன்படுத்த, {PH1} ஐ இயல்பு என்று அமைக்கவும்"
|
10741
|
+
},
|
10742
|
+
"panels/security/CookieControlsView.ts | enrollGracePeriod": {
|
10743
|
+
"message": "இதைப் பயன்படுத்த, {PH1} இல் இந்தத் தளத்தையோ உட்பொதிக்கபட்டுள்ள தளங்களையோ இயக்கவும்"
|
10744
|
+
},
|
10745
|
+
"panels/security/CookieControlsView.ts | enterpriseDisclaimer": {
|
10746
|
+
"message": "இந்தத் தளத்திற்கான மூன்றாம் தரப்புக் குக்கீகளின் அணுகலை உங்கள் நிறுவனம் நிர்வகிக்கிறது"
|
10747
|
+
},
|
10748
|
+
"panels/security/CookieControlsView.ts | enterpriseTooltip": {
|
10749
|
+
"message": "இந்த அமைப்பை உங்கள் நிறுவனம் நிர்வகிக்கிறது"
|
10750
|
+
},
|
10751
|
+
"panels/security/CookieControlsView.ts | exceptions": {
|
10752
|
+
"message": "விதிவிலக்குகள்"
|
10753
|
+
},
|
10754
|
+
"panels/security/CookieControlsView.ts | exceptionsExplanation": {
|
10755
|
+
"message": "மூன்றாம் தரப்புக் குக்கீகளுக்கு அணுகலை வழங்கும் சூழ்நிலைகள்"
|
10756
|
+
},
|
10757
|
+
"panels/security/CookieControlsView.ts | gracePeriod": {
|
10758
|
+
"message": "சலுகைக் காலத்தில்"
|
10759
|
+
},
|
10760
|
+
"panels/security/CookieControlsView.ts | gracePeriodExplanation": {
|
10761
|
+
"message": "இந்தத் தளம் அல்லது இதில் உள்ளமைக்கப்பட்டுள்ள தளம் {PH1} பதிவுசெய்யப்பட்டிருந்தால் அந்தத் தளம் மூன்றாம் தரப்புக் குக்கீகளை அணுகலாம்"
|
10762
|
+
},
|
10763
|
+
"panels/security/CookieControlsView.ts | gracePeriodTitle": {
|
10764
|
+
"message": "மூன்றாம் தரப்புக் குக்கீகளுக்கான சலுகைக் காலம்"
|
10765
|
+
},
|
10766
|
+
"panels/security/CookieControlsView.ts | heuristicExplanation": {
|
10767
|
+
"message": "பாப்-அப்கள், திசைதிருப்புதல்கள் போன்ற {PH1}, இந்தத் தளத்தில் உட்பொதிக்கப்பட்டுள்ள தளம் மூன்றாம் தரப்புக் குக்கீகளை அணுக முடியும்"
|
10768
|
+
},
|
10769
|
+
"panels/security/CookieControlsView.ts | heuristicTitle": {
|
10770
|
+
"message": "ஹியுரிஸ்ட்டிக்ஸ் அடிப்படையிலான விதிவிலக்கு"
|
10771
|
+
},
|
10772
|
+
"panels/security/CookieControlsView.ts | scenarios": {
|
10773
|
+
"message": "முன்கூட்டியே வரையறுக்கப்பட்ட சூழல்களில்"
|
10774
|
+
},
|
10775
|
+
"panels/security/CookieControlsView.ts | siteReloadMessage": {
|
10776
|
+
"message": "புதுப்பிக்கப்பட்ட கட்டுப்பாடுகளைப் பயன்படுத்த, பக்கத்தை ரெஃப்ரெஷ் செய்யவும்"
|
10777
|
+
},
|
10778
|
+
"panels/security/CookieControlsView.ts | tpcdHeuristicsGrants": {
|
10779
|
+
"message": "#tpcd-heuristics-grants"
|
10780
|
+
},
|
10781
|
+
"panels/security/CookieControlsView.ts | tpcdMetadataGrants": {
|
10782
|
+
"message": "#tpcd-metadata-grants"
|
10783
|
+
},
|
10784
|
+
"panels/security/CookieControlsView.ts | viewDetails": {
|
10785
|
+
"message": "விவரங்களைக் காட்டு"
|
10786
|
+
},
|
10787
|
+
"panels/security/CookieControlsView.ts | viewExplanation": {
|
10788
|
+
"message": "மூன்றாம் தரப்புக் குக்கீகள் Chromeமில் கட்டுப்படுத்தப்பட்டு இருந்தால் இந்தத் தளம் எப்படிச் செயல்படும் என்று பரிசோதனை செய்து பார்க்கலாம்"
|
10789
|
+
},
|
10790
|
+
"panels/security/CookieControlsView.ts | viewTitle": {
|
10791
|
+
"message": "கட்டுப்பாடுகள்"
|
10792
|
+
},
|
10793
|
+
"panels/security/CookieReportView.ts | adCookieTypeString": {
|
10794
|
+
"message": "விளம்பரப்படுத்தல்"
|
10795
|
+
},
|
10523
10796
|
"panels/security/CookieReportView.ts | allowed": {
|
10524
10797
|
"message": "அனுமதிக்கப்பட்டது"
|
10525
10798
|
},
|
10526
10799
|
"panels/security/CookieReportView.ts | allowedByException": {
|
10527
10800
|
"message": "விதிவிலக்கின் மூலம் அனுமதிக்கப்பட்டது"
|
10528
10801
|
},
|
10802
|
+
"panels/security/CookieReportView.ts | analyticsCookieTypeString": {
|
10803
|
+
"message": "பகுப்பாய்வுகள்"
|
10804
|
+
},
|
10529
10805
|
"panels/security/CookieReportView.ts | blocked": {
|
10530
10806
|
"message": "தடுக்கப்பட்டது"
|
10531
10807
|
},
|
10532
10808
|
"panels/security/CookieReportView.ts | body": {
|
10533
|
-
"message": "
|
10809
|
+
"message": "மூன்றாம் தரப்புக் குக்கீகள் மற்றும் பிற குக்கீகள் Chromeமில் வரம்பிடப்பட்டால் இந்தத் தளம் செயல்படாமல் போகக்கூடும்."
|
10810
|
+
},
|
10811
|
+
"panels/security/CookieReportView.ts | cdnCookieTypeString": {
|
10812
|
+
"message": "CDN"
|
10813
|
+
},
|
10814
|
+
"panels/security/CookieReportView.ts | consentProviderCookieTypeString": {
|
10815
|
+
"message": "ஒப்புதல் வழங்குநர்"
|
10816
|
+
},
|
10817
|
+
"panels/security/CookieReportView.ts | contentCookieTypeString": {
|
10818
|
+
"message": "உள்ளடக்கம்"
|
10819
|
+
},
|
10820
|
+
"panels/security/CookieReportView.ts | customerSuccessCookieTypeString": {
|
10821
|
+
"message": "வாடிக்கையாளர் வெற்றி"
|
10822
|
+
},
|
10823
|
+
"panels/security/CookieReportView.ts | domain": {
|
10824
|
+
"message": "டொமைன்"
|
10825
|
+
},
|
10826
|
+
"panels/security/CookieReportView.ts | emptyReport": {
|
10827
|
+
"message": "காட்டுவதற்கு எதுவும் இல்லை"
|
10828
|
+
},
|
10829
|
+
"panels/security/CookieReportView.ts | emptyReportExplanation": {
|
10830
|
+
"message": "மூன்றாம் தரப்புக் குக்கீகளில் சிக்கல் எதுவும் கண்டறியப்படவில்லை"
|
10831
|
+
},
|
10832
|
+
"panels/security/CookieReportView.ts | gitHubResource": {
|
10833
|
+
"message": "மூன்றாம் தரப்புத் தளத்தின் {PH1} ஐச் சரிபாருங்கள்"
|
10834
|
+
},
|
10835
|
+
"panels/security/CookieReportView.ts | gitHubResourceInsightTypeString": {
|
10836
|
+
"message": "Github"
|
10837
|
+
},
|
10838
|
+
"panels/security/CookieReportView.ts | gracePeriod": {
|
10839
|
+
"message": "{PH1} ஐச் சரிபாருங்கள். சலுகைக் கால விதிவிலக்கு செயலில் உள்ளது."
|
10840
|
+
},
|
10841
|
+
"panels/security/CookieReportView.ts | gracePeriodInsightTypeString": {
|
10842
|
+
"message": "சலுகைக் காலம்"
|
10843
|
+
},
|
10844
|
+
"panels/security/CookieReportView.ts | guidance": {
|
10845
|
+
"message": "வழிகாட்டல்"
|
10846
|
+
},
|
10847
|
+
"panels/security/CookieReportView.ts | heuristics": {
|
10848
|
+
"message": "பின்னர் நடவடிக்கை தேவை. ஹியுரிஸ்ட்டிக்ஸ் அடிப்படையிலான விதிவிலக்கு செயலில் உள்ளது."
|
10849
|
+
},
|
10850
|
+
"panels/security/CookieReportView.ts | heuristicsInisightTypeString": {
|
10851
|
+
"message": "ஹியுரிஸ்ட்டிக்ஸ்"
|
10852
|
+
},
|
10853
|
+
"panels/security/CookieReportView.ts | hostingCookieTypeString": {
|
10854
|
+
"message": "ஹோஸ்டிங்"
|
10534
10855
|
},
|
10535
10856
|
"panels/security/CookieReportView.ts | learnMoreLink": {
|
10536
10857
|
"message": "மூன்றாம் தரப்புக் குக்கீகள் எப்படிப் பயன்படுத்தப்படுகின்றன என்பது குறித்து மேலும் தெரிந்துகொள்ளுங்கள்"
|
10537
10858
|
},
|
10859
|
+
"panels/security/CookieReportView.ts | marketingCookieTypeString": {
|
10860
|
+
"message": "மார்க்கெட்டிங்"
|
10861
|
+
},
|
10862
|
+
"panels/security/CookieReportView.ts | name": {
|
10863
|
+
"message": "பெயர்"
|
10864
|
+
},
|
10865
|
+
"panels/security/CookieReportView.ts | other": {
|
10866
|
+
"message": "கூடுதல் தகவல்களுக்கு மூன்றாம் தரப்புத் தளத்தைப் பார்க்கவும்"
|
10867
|
+
},
|
10868
|
+
"panels/security/CookieReportView.ts | otherCookieTypeString": {
|
10869
|
+
"message": "மற்றவை"
|
10870
|
+
},
|
10871
|
+
"panels/security/CookieReportView.ts | otherInsightTypeString": {
|
10872
|
+
"message": "மற்றவை"
|
10873
|
+
},
|
10874
|
+
"panels/security/CookieReportView.ts | platform": {
|
10875
|
+
"message": "பிளாட்ஃபார்ம்"
|
10876
|
+
},
|
10877
|
+
"panels/security/CookieReportView.ts | recommendation": {
|
10878
|
+
"message": "பரிந்துரை"
|
10879
|
+
},
|
10880
|
+
"panels/security/CookieReportView.ts | report": {
|
10881
|
+
"message": "மூன்றாம் தரப்புக் குக்கீ அறிக்கை"
|
10882
|
+
},
|
10883
|
+
"panels/security/CookieReportView.ts | reportedIssues": {
|
10884
|
+
"message": "புகாரளித்த சிக்கல்கள்"
|
10885
|
+
},
|
10886
|
+
"panels/security/CookieReportView.ts | showRequestsWithThisCookie": {
|
10887
|
+
"message": "இந்தக் குக்கீயில் உள்ள கோரிக்கைகளைக் காட்டு"
|
10888
|
+
},
|
10889
|
+
"panels/security/CookieReportView.ts | socialCookieTypeString": {
|
10890
|
+
"message": "சமூக ஊடகம்"
|
10891
|
+
},
|
10892
|
+
"panels/security/CookieReportView.ts | status": {
|
10893
|
+
"message": "நிலை"
|
10894
|
+
},
|
10895
|
+
"panels/security/CookieReportView.ts | tagManagerCookieTypeString": {
|
10896
|
+
"message": "குறிச்சொல் நிர்வாகி"
|
10897
|
+
},
|
10538
10898
|
"panels/security/CookieReportView.ts | title": {
|
10539
10899
|
"message": "மூன்றாம் தரப்புக் குக்கீகள்"
|
10540
10900
|
},
|
10901
|
+
"panels/security/CookieReportView.ts | type": {
|
10902
|
+
"message": "வகை"
|
10903
|
+
},
|
10904
|
+
"panels/security/CookieReportView.ts | unknown": {
|
10905
|
+
"message": "தெரியவில்லை"
|
10906
|
+
},
|
10907
|
+
"panels/security/CookieReportView.ts | utilityCookieTypeString": {
|
10908
|
+
"message": "யூட்டிலிட்டி"
|
10909
|
+
},
|
10910
|
+
"panels/security/CookieReportView.ts | videoCookieTypeString": {
|
10911
|
+
"message": "வீடியோ"
|
10912
|
+
},
|
10541
10913
|
"panels/security/SecurityModel.ts | cipherWithMAC": {
|
10542
10914
|
"message": "{PH2} உடன் {PH1}"
|
10543
10915
|
},
|
@@ -10841,15 +11213,12 @@
|
|
10841
11213
|
"panels/security/SecurityPanelSidebar.ts | cookieReport": {
|
10842
11214
|
"message": "மூன்றாம் தரப்புக் குக்கீகள்"
|
10843
11215
|
},
|
11216
|
+
"panels/security/SecurityPanelSidebar.ts | flagControls": {
|
11217
|
+
"message": "கட்டுப்பாடுகள்"
|
11218
|
+
},
|
10844
11219
|
"panels/security/SecurityPanelSidebar.ts | mainOrigin": {
|
10845
11220
|
"message": "முதன்மை ஆரிஜின்"
|
10846
11221
|
},
|
10847
|
-
"panels/security/SecurityPanelSidebar.ts | mainOriginNonsecure": {
|
10848
|
-
"message": "முதன்மை ஆரிஜின் (பாதுகாப்பற்றது)"
|
10849
|
-
},
|
10850
|
-
"panels/security/SecurityPanelSidebar.ts | mainOriginSecure": {
|
10851
|
-
"message": "முதன்மை ஆரிஜின் (பாதுகாப்பானது)"
|
10852
|
-
},
|
10853
11222
|
"panels/security/SecurityPanelSidebar.ts | nonsecureOrigins": {
|
10854
11223
|
"message": "பாதுகாப்பற்ற மூலங்கள்"
|
10855
11224
|
},
|
@@ -10871,18 +11240,18 @@
|
|
10871
11240
|
"panels/security/SecurityPanelSidebar.ts | unknownCanceled": {
|
10872
11241
|
"message": "தெரியவில்லை/ரத்துசெய்யப்பட்டது"
|
10873
11242
|
},
|
11243
|
+
"panels/security/security-meta.ts | PrivacyAndSecurity": {
|
11244
|
+
"message": "தனியுரிமை மற்றும் பாதுகாப்பு"
|
11245
|
+
},
|
10874
11246
|
"panels/security/security-meta.ts | security": {
|
10875
11247
|
"message": "பாதுகாப்பு"
|
10876
11248
|
},
|
10877
|
-
"panels/security/security-meta.ts |
|
10878
|
-
"message": "
|
11249
|
+
"panels/security/security-meta.ts | showPrivacyAndSecurity": {
|
11250
|
+
"message": "தனியுரிமை மற்றும் பாதுகாப்பைக் காட்டு"
|
10879
11251
|
},
|
10880
11252
|
"panels/security/security-meta.ts | showSecurity": {
|
10881
11253
|
"message": "பாதுகாப்பைக் காட்டு"
|
10882
11254
|
},
|
10883
|
-
"panels/security/security-meta.ts | showSecurityAndPrivacy": {
|
10884
|
-
"message": "பாதுகாப்பு மற்றும் தனியுரிமை பேனலைக் காட்டு"
|
10885
|
-
},
|
10886
11255
|
"panels/sensors/LocationsSettingsTab.ts | addLocation": {
|
10887
11256
|
"message": "இருப்பிடத்தைச் சேர்"
|
10888
11257
|
},
|
@@ -11117,11 +11486,8 @@
|
|
11117
11486
|
"panels/sensors/sensors-meta.ts | userIdleScreenUnlocked": {
|
11118
11487
|
"message": "பயனர் செயலில் இல்லை எனில் திரையை அன்லாக் செய்"
|
11119
11488
|
},
|
11120
|
-
"panels/settings/AISettingsTab.ts | adminSettings": {
|
11121
|
-
"message": "உங்கள் Google கணக்கு நிர்வாகம் மற்றும்/அல்லது பிராந்தியத்தைப் பொறுத்து தரவுச் சேகரிப்பை Google தவிர்க்கக்கூடும். நிர்வகிக்கப்படும் பயனர்களுக்குக் கிடைக்கக்கூடிய அம்சங்கள் உங்கள் நிறுவனத்தின் அமைப்புகளைப் பொறுத்து மாறுபடக்கூடும்."
|
11122
|
-
},
|
11123
11489
|
"panels/settings/AISettingsTab.ts | ageRestricted": {
|
11124
|
-
"message": "18 அல்லது அதற்கு மேற்பட்ட வயதுடைய பயனர்கள் மட்டுமே இந்த அம்சத்தைப் பயன்படுத்த
|
11490
|
+
"message": "18 அல்லது அதற்கு மேற்பட்ட வயதுடைய பயனர்கள் மட்டுமே இந்த அம்சத்தைப் பயன்படுத்த முடியும்."
|
11125
11491
|
},
|
11126
11492
|
"panels/settings/AISettingsTab.ts | boostYourProductivity": {
|
11127
11493
|
"message": "AI மூலம் உங்கள் பணிச் செயல்திறனை அதிகரித்தல்"
|
@@ -11129,6 +11495,15 @@
|
|
11129
11495
|
"panels/settings/AISettingsTab.ts | consoleInsightsSendsData": {
|
11130
11496
|
"message": "கன்சோல் மெசேஜ், இணைக்கப்பட்டுள்ள ஸ்டாக் டிரேஸ், தொடர்புடைய மூலக் குறியீடு, இணைக்கப்பட்டுள்ள நெட்வொர்க் தலைப்புகள் ஆகியவை விளக்கங்களை உருவாக்குவதற்காக Googleளுக்கு அனுப்பப்படும். இந்த அம்சத்தை மேம்படுத்துவதற்காக இந்தத் தரவு மதிப்பாய்வாளர்களுக்குக் காட்டப்படலாம்."
|
11131
11497
|
},
|
11498
|
+
"panels/settings/AISettingsTab.ts | consoleInsightsSendsDataNoLogging": {
|
11499
|
+
"message": "The console message, associated stack trace, related source code, and the associated network headers are sent to Google to generate explanations. This data will not be used to improve Google’s AI models."
|
11500
|
+
},
|
11501
|
+
"panels/settings/AISettingsTab.ts | dataCollection": {
|
11502
|
+
"message": "உங்கள் பிராந்தியத்தைப் பொறுத்து தரவுச் சேகரிப்பை Google தவிர்க்கக்கூடும்"
|
11503
|
+
},
|
11504
|
+
"panels/settings/AISettingsTab.ts | dataCollectionNoLogging": {
|
11505
|
+
"message": "உங்கள் Google கணக்கு நிர்வாகம் மற்றும்/அல்லது பிராந்தியத்தைப் பொறுத்து தரவுச் சேகரிப்பை Google தவிர்க்கக்கூடும்"
|
11506
|
+
},
|
11132
11507
|
"panels/settings/AISettingsTab.ts | enableAiAssistance": {
|
11133
11508
|
"message": "AI உதவியை இயக்கு"
|
11134
11509
|
},
|
@@ -11136,7 +11511,7 @@
|
|
11136
11511
|
"message": "Console insights அம்சத்தை இயக்கு"
|
11137
11512
|
},
|
11138
11513
|
"panels/settings/AISettingsTab.ts | experimentalFeatures": {
|
11139
|
-
"message": "இந்த அம்சங்கள்
|
11514
|
+
"message": "இந்த அம்சங்கள் ஜெனரேட்டிவ் AIயைப் பயன்படுத்துகின்றன. இவை Googleளின் கருத்துகளைப் பிரதிபலிக்காத, துல்லியமற்ற, மனதைப் புண்படுத்தக்கூடிய தகவல்களைக் காட்டக்கூடும்."
|
11140
11515
|
},
|
11141
11516
|
"panels/settings/AISettingsTab.ts | explainConsole": {
|
11142
11517
|
"message": "கன்சோல் எச்சரிக்கைகள் மற்றும் பிழைகளுக்கான விளக்கங்களைப் பெறலாம்"
|
@@ -11156,6 +11531,9 @@
|
|
11156
11531
|
"panels/settings/AISettingsTab.ts | freestylerSendsData": {
|
11157
11532
|
"message": "பரிசோதனை செய்யப்பட்ட பக்கம் Web APIகள், நெட்வொர்க் கோரிக்கைகள், ஃபைல்கள், செயல்திறன் டிரேஸ்கள் ஆகியவற்றின் வழியாக அணுகக்கூடிய எந்தத் தரவும் விளக்கங்களை உருவாக்குவதற்காக Googleளுக்கு அனுப்பப்படுகிறது. இந்த அம்சத்தை மேம்படுத்துவதற்காக இந்தத் தரவு மதிப்பாய்வாளர்களுக்குக் காட்டப்படலாம். தனிப்பட்ட அல்லது பாதுகாக்கவேண்டிய தகவல் இருக்கும் பக்கங்களில் பயன்படுத்த வேண்டாம்."
|
11158
11533
|
},
|
11534
|
+
"panels/settings/AISettingsTab.ts | freestylerSendsDataNoLogging": {
|
11535
|
+
"message": "Any data the inspected page can access via Web APIs, network requests, files, and performance traces are sent to Google to generate explanations. This data will not be used to improve Google’s AI models."
|
11536
|
+
},
|
11159
11537
|
"panels/settings/AISettingsTab.ts | helpUnderstandConsole": {
|
11160
11538
|
"message": "கன்சோல் எச்சரிக்கைகள் மற்றும் பிழைகளைப் புரிந்துகொண்டு சரிசெய்ய உதவும்"
|
11161
11539
|
},
|
@@ -11189,12 +11567,12 @@
|
|
11189
11567
|
"panels/settings/AISettingsTab.ts | receiveSuggestions": {
|
11190
11568
|
"message": "இந்தச் சிக்கல்களைச் சரிசெய்வதற்கான பரிந்துரைகளையும் குறியீட்டு மாதிரிகளையும் பெறலாம்"
|
11191
11569
|
},
|
11192
|
-
"panels/settings/AISettingsTab.ts | retainData": {
|
11193
|
-
"message": "உபயோகத் தரவு 18 மாதங்கள் வரை தக்கவைக்கப்பட்டு யார் வழங்கியது என்று Google சொல்ல முடியாத வகையில் சேமிக்கப்படும்."
|
11194
|
-
},
|
11195
11570
|
"panels/settings/AISettingsTab.ts | sendsDataToGoogle": {
|
11196
11571
|
"message": "தொடர்புடைய தரவை இந்த அம்சங்கள் Googleளுக்கு அனுப்பும். மதிப்பாய்வாளர்களின் உதவியுடன் தனது தயாரிப்புகளையும் சேவைகளையும் மேம்படுத்த Google இந்தத் தரவையும் கருத்தையும் சேகரிக்கிறது. பாதுகாக்கவேண்டிய அல்லது தனிப்பட்ட தகவல்களைப் பகிர வேண்டாம்."
|
11197
11572
|
},
|
11573
|
+
"panels/settings/AISettingsTab.ts | sendsDataToGoogleNoLogging": {
|
11574
|
+
"message": "AIயை மேம்படுத்த உங்கள் உள்ளடக்கத்தை மதிப்பாய்வாளர்கள் பயன்படுத்தமாட்டார்கள். எப்போது வேண்டுமானாலும் இந்த அமைப்புகளை உங்கள் நிறுவனம் மாற்றலாம்."
|
11575
|
+
},
|
11198
11576
|
"panels/settings/AISettingsTab.ts | showLess": {
|
11199
11577
|
"message": "குறைவாகக் காட்டு"
|
11200
11578
|
},
|
@@ -11217,7 +11595,7 @@
|
|
11217
11595
|
"message": "ஸ்கிரிப்ட்டின் URLலுக்கான ரெகுலர் எக்ஸ்ப்ரெஷன் விதியைச் சேர்க்கலாம்"
|
11218
11596
|
},
|
11219
11597
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | addPattern": {
|
11220
|
-
"message": "ரிஜெக்ஸ் விதியைச்
|
11598
|
+
"message": "ரிஜெக்ஸ் விதியைச் சேர்"
|
11221
11599
|
},
|
11222
11600
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | automaticallyIgnoreListKnownThirdPartyScripts": {
|
11223
11601
|
"message": "சோர்ஸ் மேப்களில் உள்ள அறியப்பட்ட மூன்றாம் தரப்பு ஸ்கிரிப்ட்டுகள்"
|
@@ -11331,7 +11709,7 @@
|
|
11331
11709
|
"message": "மேலும் அறிக"
|
11332
11710
|
},
|
11333
11711
|
"panels/settings/SettingsScreen.ts | noResults": {
|
11334
|
-
"message": "
|
11712
|
+
"message": "வடிப்பானுடன் பரிசோதனைகள் எதுவும் பொருந்தவில்லை"
|
11335
11713
|
},
|
11336
11714
|
"panels/settings/SettingsScreen.ts | oneOrMoreSettingsHaveChanged": {
|
11337
11715
|
"message": "ஒன்று அல்லது மேற்பட்ட அமைப்புகளில் மாற்றம் செய்யப்பட்டுள்ளதால் அவை செயல்படுத்தப்பட ரெஃப்ரெஷ் செய்ய வேண்டும்."
|
@@ -11370,7 +11748,7 @@
|
|
11370
11748
|
"message": "இந்த அமைப்பை இயக்க, Chrome ஒத்திசைவை இயக்க வேண்டும்."
|
11371
11749
|
},
|
11372
11750
|
"panels/settings/emulation/DevicesSettingsTab.ts | addCustomDevice": {
|
11373
|
-
"message": "பிரத்தியேகச் சாதனத்தைச்
|
11751
|
+
"message": "பிரத்தியேகச் சாதனத்தைச் சேர்"
|
11374
11752
|
},
|
11375
11753
|
"panels/settings/emulation/DevicesSettingsTab.ts | customDevices": {
|
11376
11754
|
"message": "பிரத்தியேகச் சாதனங்கள்"
|
@@ -11549,6 +11927,9 @@
|
|
11549
11927
|
"panels/snippets/SnippetsQuickOpen.ts | run": {
|
11550
11928
|
"message": "இயக்கு"
|
11551
11929
|
},
|
11930
|
+
"panels/snippets/SnippetsQuickOpen.ts | runSnippet": {
|
11931
|
+
"message": "ஸ்னிப்பெட்டை இயக்கு"
|
11932
|
+
},
|
11552
11933
|
"panels/snippets/SnippetsQuickOpen.ts | snippet": {
|
11553
11934
|
"message": "துணுக்கு"
|
11554
11935
|
},
|
@@ -11847,28 +12228,28 @@
|
|
11847
12228
|
"message": "{PH1} (தவிர்க்க வேண்டியவற்றின் பட்டியல்)"
|
11848
12229
|
},
|
11849
12230
|
"panels/sources/GoToLineQuickOpen.ts | currentLineSTypeALineNumber": {
|
11850
|
-
"message": "
|
12231
|
+
"message": "1 மற்றும் {PH1}க்கு இடையிலான வரிக்குச் செல்ல, வரி எண்ணை டைப் செய்யவும்"
|
11851
12232
|
},
|
11852
12233
|
"panels/sources/GoToLineQuickOpen.ts | currentPositionXsTypeAnOffset": {
|
11853
|
-
"message": "
|
12234
|
+
"message": "குறிப்பிட்டதற்குச் செல்ல, 0x{PH1}, 0x{PH2} ஆகியவற்றுக்கு இடையிலான ஆஃப்செட்டை டைப் செய்யவும்"
|
11854
12235
|
},
|
11855
12236
|
"panels/sources/GoToLineQuickOpen.ts | goToLineS": {
|
11856
|
-
"message": "{PH1}வது வரிக்குச்
|
12237
|
+
"message": "{PH1}வது வரிக்குச் செல்"
|
11857
12238
|
},
|
11858
12239
|
"panels/sources/GoToLineQuickOpen.ts | goToLineSAndColumnS": {
|
11859
|
-
"message": "{PH1}வது வரியில் {PH2}வது நெடுவரிசைக்குச்
|
12240
|
+
"message": "{PH1}வது வரியில் {PH2}வது நெடுவரிசைக்குச் செல்"
|
11860
12241
|
},
|
11861
12242
|
"panels/sources/GoToLineQuickOpen.ts | goToOffsetXs": {
|
11862
|
-
"message": "0x{PH1} ஆஃப்செட்டுக்குச்
|
12243
|
+
"message": "0x{PH1} ஆஃப்செட்டுக்குச் செல்"
|
11863
12244
|
},
|
11864
12245
|
"panels/sources/GoToLineQuickOpen.ts | noFileSelected": {
|
11865
|
-
"message": "ஃபைல் எதுவும்
|
12246
|
+
"message": "ஃபைல் எதுவும் தேர்ந்தெடுக்கப்படவில்லை"
|
11866
12247
|
},
|
11867
12248
|
"panels/sources/GoToLineQuickOpen.ts | noResultsFound": {
|
11868
12249
|
"message": "முடிவுகள் எதுவுமில்லை"
|
11869
12250
|
},
|
11870
12251
|
"panels/sources/GoToLineQuickOpen.ts | typeANumberToGoToThatLine": {
|
11871
|
-
"message": "குறிப்பிட்ட வரிக்குச் செல்ல அதன் எண்ணை
|
12252
|
+
"message": "குறிப்பிட்ட வரிக்குச் செல்ல அதன் எண்ணை டைப் செய்யவும்"
|
11872
12253
|
},
|
11873
12254
|
"panels/sources/InplaceFormatterEditorAction.ts | format": {
|
11874
12255
|
"message": "ஃபார்மேட் செய்யும்"
|
@@ -11997,23 +12378,32 @@
|
|
11997
12378
|
"message": "புதிய துணுக்கை உருவாக்கு"
|
11998
12379
|
},
|
11999
12380
|
"panels/sources/SourcesNavigator.ts | explainContentScripts": {
|
12000
|
-
"message": "நீட்டிப்புகள் வழங்கும் உள்ளடக்க ஸ்கிரிப்ட்டுகளைப்
|
12381
|
+
"message": "நீட்டிப்புகள் வழங்கும் உள்ளடக்க ஸ்கிரிப்ட்டுகளைப் பார்க்கலாம்."
|
12001
12382
|
},
|
12002
12383
|
"panels/sources/SourcesNavigator.ts | explainLocalOverrides": {
|
12003
|
-
"message": "ரிமோட் ஆதாரங்களைப் பரிசோதித்துப் பார்க்க சாதனத்தில் நெட்வொர்க் கோரிக்கைகளையும் இணைய உள்ளடக்கத்தையும் மீறிச்
|
12384
|
+
"message": "ரிமோட் ஆதாரங்களைப் பரிசோதித்துப் பார்க்க சாதனத்தில் நெட்வொர்க் கோரிக்கைகளையும் இணைய உள்ளடக்கத்தையும் மீறிச் செயல்படும்."
|
12004
12385
|
},
|
12005
12386
|
"panels/sources/SourcesNavigator.ts | explainSnippets": {
|
12006
|
-
"message": "நீங்கள் அடிக்கடி இயக்கும் JavaScript குறியீட்டை எப்போது வேண்டுமானாலும் மீண்டும் இயக்க
|
12387
|
+
"message": "நீங்கள் அடிக்கடி இயக்கும் JavaScript குறியீட்டை எப்போது வேண்டுமானாலும் மீண்டும் இயக்க அதை ஸ்னிப்பெட் வடிவில் சேமிக்கவும்."
|
12007
12388
|
},
|
12008
12389
|
"panels/sources/SourcesNavigator.ts | explainWorkspace": {
|
12009
|
-
"message": "நீங்கள் உருவாக்கும் சோர்ஸ்களில் திருத்தங்களை நேரடியாக
|
12010
|
-
},
|
12011
|
-
"panels/sources/SourcesNavigator.ts | learnMore": {
|
12012
|
-
"message": "மேலும் அறிக"
|
12390
|
+
"message": "நீங்கள் உருவாக்கும் சோர்ஸ்களில் திருத்தங்களை நேரடியாக ஒத்திசைக்க, பணியிடங்களை அமைக்கவும்."
|
12013
12391
|
},
|
12014
12392
|
"panels/sources/SourcesNavigator.ts | newSnippet": {
|
12015
12393
|
"message": "புதிய துணுக்கு"
|
12016
12394
|
},
|
12395
|
+
"panels/sources/SourcesNavigator.ts | noContentScripts": {
|
12396
|
+
"message": "உள்ளடக்க ஸ்கிரிப்ட்டுகள் எதுவும் கண்டறியப்படவில்லை"
|
12397
|
+
},
|
12398
|
+
"panels/sources/SourcesNavigator.ts | noLocalOverrides": {
|
12399
|
+
"message": "லோக்கல் ஓவர்ரைடு எதுவும் அமைக்கப்படவில்லை"
|
12400
|
+
},
|
12401
|
+
"panels/sources/SourcesNavigator.ts | noSnippets": {
|
12402
|
+
"message": "ஸ்னிப்பெட்டுகள் எதுவும் சேமிக்கப்படவில்லை"
|
12403
|
+
},
|
12404
|
+
"panels/sources/SourcesNavigator.ts | noWorkspace": {
|
12405
|
+
"message": "பணியிடங்கள் எதுவும் அமைக்கப்படவில்லை"
|
12406
|
+
},
|
12017
12407
|
"panels/sources/SourcesNavigator.ts | remove": {
|
12018
12408
|
"message": "அகற்று"
|
12019
12409
|
},
|
@@ -12270,7 +12660,7 @@
|
|
12270
12660
|
"message": "பிரேக்பாயிண்ட்டுகள்"
|
12271
12661
|
},
|
12272
12662
|
"panels/sources/sources-meta.ts | closeAll": {
|
12273
|
-
"message": "
|
12663
|
+
"message": "எல்லாவற்றையும் மூடு"
|
12274
12664
|
},
|
12275
12665
|
"panels/sources/sources-meta.ts | closeTheActiveTab": {
|
12276
12666
|
"message": "செயலில் உள்ள தாவலை மூடுக"
|
@@ -12386,6 +12776,9 @@
|
|
12386
12776
|
"panels/sources/sources-meta.ts | goToLine": {
|
12387
12777
|
"message": "வரிக்குச் செல்"
|
12388
12778
|
},
|
12779
|
+
"panels/sources/sources-meta.ts | goToSymbol": {
|
12780
|
+
"message": "குறியீடுக்குச் செல்"
|
12781
|
+
},
|
12389
12782
|
"panels/sources/sources-meta.ts | incrementCssUnitBy": {
|
12390
12783
|
"message": "CSS யூனிட்டை {PH1} ஆக அதிகரிக்கும்"
|
12391
12784
|
},
|
@@ -12413,6 +12806,9 @@
|
|
12413
12806
|
"panels/sources/sources-meta.ts | open": {
|
12414
12807
|
"message": "திற"
|
12415
12808
|
},
|
12809
|
+
"panels/sources/sources-meta.ts | openFile": {
|
12810
|
+
"message": "ஃபைலைத் திற"
|
12811
|
+
},
|
12416
12812
|
"panels/sources/sources-meta.ts | pauseScriptExecution": {
|
12417
12813
|
"message": "ஸ்கிரிப்ட்டைச் செயல்படுத்துவதை நிறுத்து"
|
12418
12814
|
},
|
@@ -12599,9 +12995,6 @@
|
|
12599
12995
|
"panels/timeline/CountersGraph.ts | ss": {
|
12600
12996
|
"message": "[{PH1} – {PH2}]"
|
12601
12997
|
},
|
12602
|
-
"panels/timeline/EventsTimelineTreeView.ts | Dms": {
|
12603
|
-
"message": "{PH1} மிவி"
|
12604
|
-
},
|
12605
12998
|
"panels/timeline/EventsTimelineTreeView.ts | all": {
|
12606
12999
|
"message": "எல்லாம்"
|
12607
13000
|
},
|
@@ -12647,6 +13040,18 @@
|
|
12647
13040
|
"panels/timeline/ServerTimingsTrackAppender.ts | serverTimingTrack": {
|
12648
13041
|
"message": "இந்த டிராக்கில் சேவையக நேர நெட்வொர்க் ரெஸ்பான்ஸ் தலைப்புகளில் இருந்து எடுக்கப்பட்ட நேரங்கள் உள்ளன. அவற்றின் தொடக்க நேரங்கள் மட்டுமே கணக்கிடப்படுகின்றன, அவை துல்லியமற்றதாக இருக்கக்கூடும்."
|
12649
13042
|
},
|
13043
|
+
"panels/timeline/ThirdPartyTreeView.ts | firstOrThirdPartyName": {
|
13044
|
+
"message": "1st / 3rd party"
|
13045
|
+
},
|
13046
|
+
"panels/timeline/ThirdPartyTreeView.ts | selfTime": {
|
13047
|
+
"message": "செயல்பாட்டின் கால அளவு"
|
13048
|
+
},
|
13049
|
+
"panels/timeline/ThirdPartyTreeView.ts | transferSize": {
|
13050
|
+
"message": "டிரான்ஸ்ஃபர் அளவு"
|
13051
|
+
},
|
13052
|
+
"panels/timeline/ThirdPartyTreeView.ts | unattributed": {
|
13053
|
+
"message": "[குறிப்பிடாதவை]"
|
13054
|
+
},
|
12650
13055
|
"panels/timeline/ThreadAppender.ts | bidderWorklet": {
|
12651
13056
|
"message": "ஏலதாரர் பணித் தொகுப்பு"
|
12652
13057
|
},
|
@@ -12666,7 +13071,7 @@
|
|
12666
13071
|
"message": "முதன்மை — {PH1}"
|
12667
13072
|
},
|
12668
13073
|
"panels/timeline/ThreadAppender.ts | onIgnoreList": {
|
12669
|
-
"message": "
|
13074
|
+
"message": "தவிர்க்க வேண்டியவற்றின் பட்டியலில் உள்ளவை ({rule})"
|
12670
13075
|
},
|
12671
13076
|
"panels/timeline/ThreadAppender.ts | raster": {
|
12672
13077
|
"message": "ராஸ்டெர்"
|
@@ -12725,9 +13130,6 @@
|
|
12725
13130
|
"panels/timeline/TimelineDetailsView.ts | paintProfiler": {
|
12726
13131
|
"message": "பெயிண்ட் ப்ரொஃபைலர்"
|
12727
13132
|
},
|
12728
|
-
"panels/timeline/TimelineDetailsView.ts | rangeSS": {
|
12729
|
-
"message": "வரம்பு: {PH1} – {PH2}"
|
12730
|
-
},
|
12731
13133
|
"panels/timeline/TimelineDetailsView.ts | selectorStats": {
|
12732
13134
|
"message": "தேர்விக்கான புள்ளிவிவரங்கள்"
|
12733
13135
|
},
|
@@ -12788,11 +13190,14 @@
|
|
12788
13190
|
"panels/timeline/TimelineHistoryManager.ts | currentSessionSS": {
|
12789
13191
|
"message": "தற்போதைய நேரம்: {PH1}. {PH2}"
|
12790
13192
|
},
|
13193
|
+
"panels/timeline/TimelineHistoryManager.ts | dSlowdown": {
|
13194
|
+
"message": "{PH1}× குறைவான வேகம்"
|
13195
|
+
},
|
12791
13196
|
"panels/timeline/TimelineHistoryManager.ts | landingPageTitle": {
|
12792
13197
|
"message": "தற்போதைய அளவீடுகள்"
|
12793
13198
|
},
|
12794
|
-
"panels/timeline/TimelineHistoryManager.ts |
|
12795
|
-
"message": "
|
13199
|
+
"panels/timeline/TimelineHistoryManager.ts | nodeLandingPageTitle": {
|
13200
|
+
"message": "புதிய ரெக்கார்டிங்"
|
12796
13201
|
},
|
12797
13202
|
"panels/timeline/TimelineHistoryManager.ts | sD": {
|
12798
13203
|
"message": "{PH1} #{PH2}"
|
@@ -12800,21 +13205,6 @@
|
|
12800
13205
|
"panels/timeline/TimelineHistoryManager.ts | selectTimelineSession": {
|
12801
13206
|
"message": "டைம்லைன் நேரத்தைத் தேர்ந்தெடுக்கலாம்"
|
12802
13207
|
},
|
12803
|
-
"panels/timeline/TimelineLandingPage.ts | afterRecordingSelectAnAreaOf": {
|
12804
|
-
"message": "ரெக்கார்டு செய்ததும் இழுப்பதன் மூலம் ’மேலோட்டப் பார்வை’ என்பதில் விரும்பும் பகுதியைத் தேர்ந்தெடுக்கவும். பிறகு மவுஸ் வீல்/{PH1} விசைகளை அழுத்தி காலப்பதிவின் அளவை மாற்றி நகர்த்தவும். {PH2}"
|
12805
|
-
},
|
12806
|
-
"panels/timeline/TimelineLandingPage.ts | clickTheRecordButtonSOrHitSTo": {
|
12807
|
-
"message": "புதிதாக ரெக்கார்டு செய்ய, {PH1} பட்டனைக் கிளிக் செய்யுங்கள் அல்லது {PH2} விசைகளை அழுத்துங்கள்."
|
12808
|
-
},
|
12809
|
-
"panels/timeline/TimelineLandingPage.ts | clickTheReloadButtonSOrHitSTo": {
|
12810
|
-
"message": "பக்கம் ஏற்றப்படுவதை ரெக்கார்டு செய்ய, ரெஃப்ரெஷ் செய்வதற்கான {PH1} பட்டனைக் கிளிக் செய்யவும் அல்லது {PH2} ஆகிய விசைகளை அழுத்தவும்."
|
12811
|
-
},
|
12812
|
-
"panels/timeline/TimelineLandingPage.ts | learnmore": {
|
12813
|
-
"message": "மேலும் அறிக"
|
12814
|
-
},
|
12815
|
-
"panels/timeline/TimelineLandingPage.ts | wasd": {
|
12816
|
-
"message": "WASD"
|
12817
|
-
},
|
12818
13208
|
"panels/timeline/TimelineLoader.ts | malformedTimelineDataS": {
|
12819
13209
|
"message": "தவறான காலப்பதிவுத் தரவு: {PH1}"
|
12820
13210
|
},
|
@@ -12863,6 +13253,9 @@
|
|
12863
13253
|
"panels/timeline/TimelinePanel.ts | description": {
|
12864
13254
|
"message": "விளக்கம்"
|
12865
13255
|
},
|
13256
|
+
"panels/timeline/TimelinePanel.ts | dimThirdParties": {
|
13257
|
+
"message": "Dim 3rd parties"
|
13258
|
+
},
|
12866
13259
|
"panels/timeline/TimelinePanel.ts | disableJavascriptSamples": {
|
12867
13260
|
"message": "JavaScript மாதிரிகளை முடக்கு"
|
12868
13261
|
},
|
@@ -12870,7 +13263,7 @@
|
|
12870
13263
|
"message": "மொபைல் சாதனங்களில் இயங்கும் போது JavaScript சாம்பிளிங்கை முடக்கும், சுமையைக் குறைக்கும்"
|
12871
13264
|
},
|
12872
13265
|
"panels/timeline/TimelinePanel.ts | downloadAfterError": {
|
12873
|
-
"message": "
|
13266
|
+
"message": "டிரேஸைப் பதிவிறக்கு"
|
12874
13267
|
},
|
12875
13268
|
"panels/timeline/TimelinePanel.ts | dropTimelineFileOrUrlHere": {
|
12876
13269
|
"message": "காலப்பதிவு ஃபைலையோ URLலையோ இங்கே இழுத்து விடவும்"
|
@@ -12923,9 +13316,6 @@
|
|
12923
13316
|
"panels/timeline/TimelinePanel.ts | networkConditions": {
|
12924
13317
|
"message": "நெட்வொர்க் நிலைகள்"
|
12925
13318
|
},
|
12926
|
-
"panels/timeline/TimelinePanel.ts | performanceExtension": {
|
12927
|
-
"message": "நீட்டிப்புத் தரவு"
|
12928
|
-
},
|
12929
13319
|
"panels/timeline/TimelinePanel.ts | processed": {
|
12930
13320
|
"message": "செயலாக்கப்பட்டது"
|
12931
13321
|
},
|
@@ -12956,6 +13346,9 @@
|
|
12956
13346
|
"panels/timeline/TimelinePanel.ts | selectionCleared": {
|
12957
13347
|
"message": "தேர்ந்தெடுத்தவை அழிக்கப்பட்டன"
|
12958
13348
|
},
|
13349
|
+
"panels/timeline/TimelinePanel.ts | showCustomtracks": {
|
13350
|
+
"message": "பிரத்தியேக டிராக்குகளைக் காட்டு"
|
13351
|
+
},
|
12959
13352
|
"panels/timeline/TimelinePanel.ts | showDataAddedByExtensions": {
|
12960
13353
|
"message": "செயல்திறன் பேனலின் நீட்டிப்புகளால் சேர்க்கப்பட்ட தரவைக் காட்டும்"
|
12961
13354
|
},
|
@@ -12971,9 +13364,6 @@
|
|
12971
13364
|
"panels/timeline/TimelinePanel.ts | sidebarShown": {
|
12972
13365
|
"message": "செயல்திறன் பக்கப்பட்டி காட்டப்படுகிறது"
|
12973
13366
|
},
|
12974
|
-
"panels/timeline/TimelinePanel.ts | ssec": {
|
12975
|
-
"message": "{PH1} வினாடி"
|
12976
|
-
},
|
12977
13367
|
"panels/timeline/TimelinePanel.ts | status": {
|
12978
13368
|
"message": "நிலை"
|
12979
13369
|
},
|
@@ -12983,9 +13373,24 @@
|
|
12983
13373
|
"panels/timeline/TimelinePanel.ts | stoppingTimeline": {
|
12984
13374
|
"message": "காலப்பதிவை நிறுத்துகிறது…"
|
12985
13375
|
},
|
13376
|
+
"panels/timeline/TimelinePanel.ts | thirdPartiesByThirdPartyWeb": {
|
13377
|
+
"message": "3rd parties classified by third-party-web"
|
13378
|
+
},
|
12986
13379
|
"panels/timeline/TimelinePanel.ts | time": {
|
12987
13380
|
"message": "நேரம்"
|
12988
13381
|
},
|
13382
|
+
"panels/timeline/TimelinePanel.ts | timelineFastZoomInOut": {
|
13383
|
+
"message": "விரைவாகப் பெரிதாக்கும்/சிறிதாக்கும்"
|
13384
|
+
},
|
13385
|
+
"panels/timeline/TimelinePanel.ts | timelinePanLeftRight": {
|
13386
|
+
"message": "இடது/வலதுபுறம் நகர்த்தும்"
|
13387
|
+
},
|
13388
|
+
"panels/timeline/TimelinePanel.ts | timelineScrollUpDown": {
|
13389
|
+
"message": "மேலே/கீழே நகர்த்தும்"
|
13390
|
+
},
|
13391
|
+
"panels/timeline/TimelinePanel.ts | timelineZoomInOut": {
|
13392
|
+
"message": "பெரிதாக்கும்/சிறிதாக்கும்"
|
13393
|
+
},
|
12989
13394
|
"panels/timeline/TimelineSelectorStatsView.ts | copyTable": {
|
12990
13395
|
"message": "அட்டவணையை நகலெடு"
|
12991
13396
|
},
|
@@ -13031,11 +13436,17 @@
|
|
13031
13436
|
"panels/timeline/TimelineTreeView.ts | activity": {
|
13032
13437
|
"message": "செயல்பாடு"
|
13033
13438
|
},
|
13439
|
+
"panels/timeline/TimelineTreeView.ts | bottomUp": {
|
13440
|
+
"message": "கீழிருந்து மேல்"
|
13441
|
+
},
|
13034
13442
|
"panels/timeline/TimelineTreeView.ts | chromeExtensionsOverhead": {
|
13035
13443
|
"message": "[Chrome நீட்டிப்புகள் சுமை]"
|
13036
13444
|
},
|
13037
|
-
"panels/timeline/TimelineTreeView.ts |
|
13038
|
-
"message": "
|
13445
|
+
"panels/timeline/TimelineTreeView.ts | extension": {
|
13446
|
+
"message": "நீட்டிப்பு"
|
13447
|
+
},
|
13448
|
+
"panels/timeline/TimelineTreeView.ts | firstParty": {
|
13449
|
+
"message": "முதல் தரப்பு"
|
13039
13450
|
},
|
13040
13451
|
"panels/timeline/TimelineTreeView.ts | groupBy": {
|
13041
13452
|
"message": "இதன்படி குழுவாக்கு:"
|
@@ -13115,6 +13526,9 @@
|
|
13115
13526
|
"panels/timeline/TimelineTreeView.ts | vRuntime": {
|
13116
13527
|
"message": "[V8 இயங்கும் நேரம்]"
|
13117
13528
|
},
|
13529
|
+
"panels/timeline/TimelineTreeView.ts | viewBottomUp": {
|
13530
|
+
"message": "கீழிருந்து மேல் காட்டு"
|
13531
|
+
},
|
13118
13532
|
"panels/timeline/TimelineUIUtils.ts | UnknownNode": {
|
13119
13533
|
"message": "[ அறியப்படாத கணு ]"
|
13120
13534
|
},
|
@@ -13214,18 +13628,6 @@
|
|
13214
13628
|
"panels/timeline/TimelineUIUtils.ts | consumedCacheSize": {
|
13215
13629
|
"message": "உபயோகப்படுத்தப்பட்ட தற்காலிகச் சேமிப்பின் அளவு"
|
13216
13630
|
},
|
13217
|
-
"panels/timeline/TimelineUIUtils.ts | cumulativeLayoutShifts": {
|
13218
|
-
"message": "கியூமுலேட்டிவ் லேஅவுட் ஷிஃப்ட்"
|
13219
|
-
},
|
13220
|
-
"panels/timeline/TimelineUIUtils.ts | cumulativeScore": {
|
13221
|
-
"message": "ஒட்டுமொத்த ஸ்கோர்"
|
13222
|
-
},
|
13223
|
-
"panels/timeline/TimelineUIUtils.ts | currentClusterId": {
|
13224
|
-
"message": "தற்போதைய கிளஸ்டர் ஐடி"
|
13225
|
-
},
|
13226
|
-
"panels/timeline/TimelineUIUtils.ts | currentClusterScore": {
|
13227
|
-
"message": "தற்போதைய கிளஸ்டர் ஸ்கோர்"
|
13228
|
-
},
|
13229
13631
|
"panels/timeline/TimelineUIUtils.ts | delay": {
|
13230
13632
|
"message": "தாமதம்"
|
13231
13633
|
},
|
@@ -13250,12 +13652,12 @@
|
|
13250
13652
|
"panels/timeline/TimelineUIUtils.ts | emptyPlaceholder": {
|
13251
13653
|
"message": "{PH1}"
|
13252
13654
|
},
|
13655
|
+
"panels/timeline/TimelineUIUtils.ts | entity": {
|
13656
|
+
"message": "Third party"
|
13657
|
+
},
|
13253
13658
|
"panels/timeline/TimelineUIUtils.ts | entryIsHidden": {
|
13254
13659
|
"message": "(உள்ளீடு மறைக்கப்பட்டுள்ளது)"
|
13255
13660
|
},
|
13256
|
-
"panels/timeline/TimelineUIUtils.ts | evolvedClsLink": {
|
13257
|
-
"message": "மாறியுள்ளது"
|
13258
|
-
},
|
13259
13661
|
"panels/timeline/TimelineUIUtils.ts | failedToLoadScriptFromCache": {
|
13260
13662
|
"message": "தற்காலிகச் சேமிப்பில் இருந்து ஸ்கிரிப்ட்டை ஏற்ற முடியவில்லை"
|
13261
13663
|
},
|
@@ -13271,9 +13673,6 @@
|
|
13271
13673
|
"panels/timeline/TimelineUIUtils.ts | function": {
|
13272
13674
|
"message": "செயல்பாடு"
|
13273
13675
|
},
|
13274
|
-
"panels/timeline/TimelineUIUtils.ts | hadRecentInput": {
|
13275
|
-
"message": "சமீபத்திய உள்ளீட்டைக் கொண்டுள்ளது"
|
13276
|
-
},
|
13277
13676
|
"panels/timeline/TimelineUIUtils.ts | idleCallbackRequested": {
|
13278
13677
|
"message": "ஐடில் கால்பேக் கேட்கப்பட்டது"
|
13279
13678
|
},
|
@@ -13325,15 +13724,6 @@
|
|
13325
13724
|
"panels/timeline/TimelineUIUtils.ts | module": {
|
13326
13725
|
"message": "மாடியூல்"
|
13327
13726
|
},
|
13328
|
-
"panels/timeline/TimelineUIUtils.ts | movedFrom": {
|
13329
|
-
"message": "இதிலிருந்து நகர்த்தப்பட்டது:"
|
13330
|
-
},
|
13331
|
-
"panels/timeline/TimelineUIUtils.ts | movedTo": {
|
13332
|
-
"message": "இதற்கு நகர்த்தப்பட்டது:"
|
13333
|
-
},
|
13334
|
-
"panels/timeline/TimelineUIUtils.ts | no": {
|
13335
|
-
"message": "இல்லை"
|
13336
|
-
},
|
13337
13727
|
"panels/timeline/TimelineUIUtils.ts | nodesThatNeedLayout": {
|
13338
13728
|
"message": "லே-அவுட் தேவைப்படும் நோடுகள்"
|
13339
13729
|
},
|
@@ -13385,9 +13775,6 @@
|
|
13385
13775
|
"panels/timeline/TimelineUIUtils.ts | sAtSParentheses": {
|
13386
13776
|
"message": "{PH1} ({PH2} இல்)"
|
13387
13777
|
},
|
13388
|
-
"panels/timeline/TimelineUIUtils.ts | sCLSInformation": {
|
13389
|
-
"message": "{PH1} மோசமான பயனர் அனுபவத்தை ஏற்படுத்தலாம். இது சமீபத்தில் {PH2}."
|
13390
|
-
},
|
13391
13778
|
"panels/timeline/TimelineUIUtils.ts | sChildren": {
|
13392
13779
|
"message": "{PH1} (உபநிலை)"
|
13393
13780
|
},
|
@@ -13418,9 +13805,6 @@
|
|
13418
13805
|
"panels/timeline/TimelineUIUtils.ts | sSs": {
|
13419
13806
|
"message": "{PH1} [{PH2}…{PH3}]"
|
13420
13807
|
},
|
13421
|
-
"panels/timeline/TimelineUIUtils.ts | score": {
|
13422
|
-
"message": "ஸ்கோர்"
|
13423
|
-
},
|
13424
13808
|
"panels/timeline/TimelineUIUtils.ts | script": {
|
13425
13809
|
"message": "ஸ்கிரிப்ட்"
|
13426
13810
|
},
|
@@ -13448,6 +13832,9 @@
|
|
13448
13832
|
"panels/timeline/TimelineUIUtils.ts | stylesheetUrl": {
|
13449
13833
|
"message": "ஸ்டைல்ஷீட் URL"
|
13450
13834
|
},
|
13835
|
+
"panels/timeline/TimelineUIUtils.ts | thirdPartyTable": {
|
13836
|
+
"message": "1st / 3rd party table"
|
13837
|
+
},
|
13451
13838
|
"panels/timeline/TimelineUIUtils.ts | timeSpentInRendering": {
|
13452
13839
|
"message": "ரெண்டரிங்கில் செலவிட்ட நேரம்"
|
13453
13840
|
},
|
@@ -13478,9 +13865,6 @@
|
|
13478
13865
|
"panels/timeline/TimelineUIUtils.ts | warning": {
|
13479
13866
|
"message": "எச்சரிக்கை"
|
13480
13867
|
},
|
13481
|
-
"panels/timeline/TimelineUIUtils.ts | yes": {
|
13482
|
-
"message": "ஆம்"
|
13483
|
-
},
|
13484
13868
|
"panels/timeline/TimingsTrackAppender.ts | timings": {
|
13485
13869
|
"message": "நேரங்கள்"
|
13486
13870
|
},
|
@@ -13535,17 +13919,26 @@
|
|
13535
13919
|
"panels/timeline/components/BreadcrumbsUI.ts | removeChildBreadcrumbs": {
|
13536
13920
|
"message": "உபநிலைப் பாதைகளை அகற்று"
|
13537
13921
|
},
|
13922
|
+
"panels/timeline/components/CPUThrottlingSelector.ts | calibrate": {
|
13923
|
+
"message": "Calibrate…"
|
13924
|
+
},
|
13538
13925
|
"panels/timeline/components/CPUThrottlingSelector.ts | cpu": {
|
13539
13926
|
"message": "CPU: {PH1}"
|
13540
13927
|
},
|
13541
13928
|
"panels/timeline/components/CPUThrottlingSelector.ts | cpuThrottling": {
|
13542
13929
|
"message": "CPU த்ராட்லிங்: {PH1}"
|
13543
13930
|
},
|
13544
|
-
"panels/timeline/components/CPUThrottlingSelector.ts |
|
13545
|
-
"message": "
|
13931
|
+
"panels/timeline/components/CPUThrottlingSelector.ts | labelCalibratedPresets": {
|
13932
|
+
"message": "சீராக்கப்பட்ட முன்னமைவுகள்"
|
13546
13933
|
},
|
13547
|
-
"panels/timeline/components/CPUThrottlingSelector.ts |
|
13548
|
-
"message": "
|
13934
|
+
"panels/timeline/components/CPUThrottlingSelector.ts | recalibrate": {
|
13935
|
+
"message": "Recalibrate…"
|
13936
|
+
},
|
13937
|
+
"panels/timeline/components/CPUThrottlingSelector.ts | recommendedThrottling": {
|
13938
|
+
"message": "{PH1} – பரிந்துரைக்கப்படுகிறது"
|
13939
|
+
},
|
13940
|
+
"panels/timeline/components/CPUThrottlingSelector.ts | recommendedThrottlingReason": {
|
13941
|
+
"message": "உண்மையான பயனர் சூழல்களைச் சிமுலேட் செய்யும்படி அமைப்பை மாற்றிப் பாருங்கள்"
|
13549
13942
|
},
|
13550
13943
|
"panels/timeline/components/DetailsView.ts | forcedReflow": {
|
13551
13944
|
"message": "இயக்கப்பட்ட மறுசீராக்கம்"
|
@@ -13577,15 +13970,9 @@
|
|
13577
13970
|
"panels/timeline/components/DetailsView.ts | websocketProtocol": {
|
13578
13971
|
"message": "WebSocket நெறிமுறை"
|
13579
13972
|
},
|
13580
|
-
"panels/timeline/components/FieldSettingsDialog.ts | add": {
|
13581
|
-
"message": "சேர்"
|
13582
|
-
},
|
13583
13973
|
"panels/timeline/components/FieldSettingsDialog.ts | advanced": {
|
13584
13974
|
"message": "மேம்பட்டவை"
|
13585
13975
|
},
|
13586
|
-
"panels/timeline/components/FieldSettingsDialog.ts | alreadyMapped": {
|
13587
|
-
"message": "\"{PH1}\" ஏற்கெனவே ஒரு புரொடக்ஷன் ஆரிஜினுடன் மேப் செய்யப்பட்டது."
|
13588
|
-
},
|
13589
13976
|
"panels/timeline/components/FieldSettingsDialog.ts | cancel": {
|
13590
13977
|
"message": "ரத்துசெய்"
|
13591
13978
|
},
|
@@ -13595,15 +13982,6 @@
|
|
13595
13982
|
"panels/timeline/components/FieldSettingsDialog.ts | configureFieldData": {
|
13596
13983
|
"message": "புலத் தரவு பெறுவதை உள்ளமைத்தல்"
|
13597
13984
|
},
|
13598
|
-
"panels/timeline/components/FieldSettingsDialog.ts | delete": {
|
13599
|
-
"message": "நீக்கு"
|
13600
|
-
},
|
13601
|
-
"panels/timeline/components/FieldSettingsDialog.ts | developmentOrigin": {
|
13602
|
-
"message": "டெவெலப்மெண்ட் ஆரிஜின்"
|
13603
|
-
},
|
13604
|
-
"panels/timeline/components/FieldSettingsDialog.ts | developmentOriginValue": {
|
13605
|
-
"message": "டெவெலப்மெண்ட் ஆரிஜின்: {PH1}"
|
13606
|
-
},
|
13607
13985
|
"panels/timeline/components/FieldSettingsDialog.ts | doesNotHaveSufficientData": {
|
13608
13986
|
"message": "Chrome UX Reportடில் இந்தப் பக்கத்தின் வேகம் குறித்த போதுமான நிகழ்நேரத் தரவு இல்லை."
|
13609
13987
|
},
|
@@ -13631,12 +14009,6 @@
|
|
13631
14009
|
"panels/timeline/components/FieldSettingsDialog.ts | privacyDisclosure": {
|
13632
14010
|
"message": "தனியுரிமை வெளியீடு"
|
13633
14011
|
},
|
13634
|
-
"panels/timeline/components/FieldSettingsDialog.ts | productionOrigin": {
|
13635
|
-
"message": "புரொடக்ஷன் ஆரிஜின்"
|
13636
|
-
},
|
13637
|
-
"panels/timeline/components/FieldSettingsDialog.ts | productionOriginValue": {
|
13638
|
-
"message": "புரொடக்ஷன் ஆரிஜின்: {PH1}"
|
13639
|
-
},
|
13640
14012
|
"panels/timeline/components/FieldSettingsDialog.ts | setUp": {
|
13641
14013
|
"message": "அமை"
|
13642
14014
|
},
|
@@ -13646,6 +14018,39 @@
|
|
13646
14018
|
"panels/timeline/components/FieldSettingsDialog.ts | whenPerformanceIsShown": {
|
13647
14019
|
"message": "டெவெலப்பர் கருவிகள் திறந்திருக்கும்போது, நீங்கள் பார்வையிடும் URLகள் புலத் தரவை வினவுவதற்காக Googleளுக்கு அனுப்பப்படும். இந்தக் கோரிக்கைகள் உங்கள் Google கணக்குடன் தொடர்புபடுத்தப்படாது."
|
13648
14020
|
},
|
14021
|
+
"panels/timeline/components/IgnoreListSetting.ts | addNewRegex": {
|
14022
|
+
"message": "ஸ்கிரிப்ட்டின் URLலுக்கான ரெகுலர் எக்ஸ்ப்ரெஷன் விதியைச் சேர்க்கலாம்"
|
14023
|
+
},
|
14024
|
+
"panels/timeline/components/IgnoreListSetting.ts | ignoreList": {
|
14025
|
+
"message": "தவிர்க்க வேண்டியவற்றின் பட்டியல்"
|
14026
|
+
},
|
14027
|
+
"panels/timeline/components/IgnoreListSetting.ts | ignoreListDescription": {
|
14028
|
+
"message": "பொருந்தும் ஸ்கிரிப்ட்டுகளை ஃபிளேம் சார்ட்டில் இருந்து அகற்ற ரெகுலர் எக்ஸ்ப்ரெஷன் விதிகளைச் சேர்க்கலாம்."
|
14029
|
+
},
|
14030
|
+
"panels/timeline/components/IgnoreListSetting.ts | ignoreScriptsWhoseNamesMatchNewRegex": {
|
14031
|
+
"message": "புதிய ரிஜெக்ஸ் உடன் பொருந்தும் பெயர் உள்ள ஸ்கிரிப்ட்டுகளைத் தவிர்க்கும்"
|
14032
|
+
},
|
14033
|
+
"panels/timeline/components/IgnoreListSetting.ts | ignoreScriptsWhoseNamesMatchS": {
|
14034
|
+
"message": "“{regex}” உடன் பொருந்தும் ஸ்கிரிப்ட் பெயர்களைத் தவிர்"
|
14035
|
+
},
|
14036
|
+
"panels/timeline/components/IgnoreListSetting.ts | patternAlreadyExists": {
|
14037
|
+
"message": "விதி ஏற்கெனவே உள்ளது"
|
14038
|
+
},
|
14039
|
+
"panels/timeline/components/IgnoreListSetting.ts | patternAlreadyExistsWillBeEnables": {
|
14040
|
+
"message": "இந்த விதி ஏற்கெனவே உள்ளது, ஆனால் முடக்கப்பட்டுள்ளது. இந்த மதிப்பைச் சேமித்தால் விதி மீண்டும் இயக்கப்படும்."
|
14041
|
+
},
|
14042
|
+
"panels/timeline/components/IgnoreListSetting.ts | patternCannotBeEmpty": {
|
14043
|
+
"message": "விதி காலியாக இருக்கக்கூடாது"
|
14044
|
+
},
|
14045
|
+
"panels/timeline/components/IgnoreListSetting.ts | patternMustBeAValidRegular": {
|
14046
|
+
"message": "சரியான ரெகுலர் எக்ஸ்ப்ரெஷனாக விதி இருக்க வேண்டும்"
|
14047
|
+
},
|
14048
|
+
"panels/timeline/components/IgnoreListSetting.ts | removeRegex": {
|
14049
|
+
"message": "ரிஜெக்ஸை அகற்று: ''{regex}''"
|
14050
|
+
},
|
14051
|
+
"panels/timeline/components/IgnoreListSetting.ts | showIgnoreListSettingDialog": {
|
14052
|
+
"message": "தவிர்க்க வேண்டியவற்றின் பட்டியல் அமைப்பிற்கான தகவல் பெட்டியைக் காட்டு"
|
14053
|
+
},
|
13649
14054
|
"panels/timeline/components/InteractionBreakdown.ts | inputDelay": {
|
13650
14055
|
"message": "உள்ளீட்டுத் தாமதம்"
|
13651
14056
|
},
|
@@ -13784,6 +14189,12 @@
|
|
13784
14189
|
"panels/timeline/components/LiveMetricsView.ts | nextSteps": {
|
13785
14190
|
"message": "அடுத்த படிகள்"
|
13786
14191
|
},
|
14192
|
+
"panels/timeline/components/LiveMetricsView.ts | nodeClickToRecord": {
|
14193
|
+
"message": "இணைக்கப்பட்ட Node செயலாக்கத்தின் செயல்திறன் டைம்லைனை ரெக்கார்டு செய்யும்."
|
14194
|
+
},
|
14195
|
+
"panels/timeline/components/LiveMetricsView.ts | nodePerformanceTimeline": {
|
14196
|
+
"message": "Node செயல்திறன்"
|
14197
|
+
},
|
13787
14198
|
"panels/timeline/components/LiveMetricsView.ts | notEnoughData": {
|
13788
14199
|
"message": "போதுமான தரவு இல்லை"
|
13789
14200
|
},
|
@@ -13808,9 +14219,6 @@
|
|
13808
14219
|
"panels/timeline/components/LiveMetricsView.ts | processingDuration": {
|
13809
14220
|
"message": "செயலாக்க நேரம்"
|
13810
14221
|
},
|
13811
|
-
"panels/timeline/components/LiveMetricsView.ts | realUserEnvironments": {
|
13812
|
-
"message": "பயனர் சூழல்கள்"
|
13813
|
-
},
|
13814
14222
|
"panels/timeline/components/LiveMetricsView.ts | resourceLoadDelay": {
|
13815
14223
|
"message": "ரிசோர்ஸை ஏற்றுவதில் தாமதம்"
|
13816
14224
|
},
|
@@ -13832,9 +14240,6 @@
|
|
13832
14240
|
"panels/timeline/components/LiveMetricsView.ts | showInpInteraction": {
|
13833
14241
|
"message": "INP இன்டராக்ஷனுக்குச் செல்லும்."
|
13834
14242
|
},
|
13835
|
-
"panels/timeline/components/LiveMetricsView.ts | simulateDifferentDevices": {
|
13836
|
-
"message": "வெவ்வேறு சாதனங்களை சிமுலேட் செய்"
|
13837
|
-
},
|
13838
14243
|
"panels/timeline/components/LiveMetricsView.ts | tablet": {
|
13839
14244
|
"message": "டேப்லெட்"
|
13840
14245
|
},
|
@@ -13854,7 +14259,7 @@
|
|
13854
14259
|
"message": "URL: {PH1}"
|
13855
14260
|
},
|
13856
14261
|
"panels/timeline/components/LiveMetricsView.ts | useDeviceToolbar": {
|
13857
|
-
"message": "சாதனக்
|
14262
|
+
"message": "உண்மையான பயனர் சூழல்களை சிமுலேட் செய்யவும் செயல்திறன் சிக்கல்களை மேலும் கண்டறியவும், [சாதனக் கருவிப்பட்டியைப்](https://developer.chrome.com/docs/devtools/device-mode) பயன்படுத்தி த்ராட்லிங்கை உள்ளமைக்கவும்."
|
13858
14263
|
},
|
13859
14264
|
"panels/timeline/components/LiveMetricsView.ts | worstCluster": {
|
13860
14265
|
"message": "மோசமான கிளஸ்டர்"
|
@@ -14018,6 +14423,9 @@
|
|
14018
14423
|
"panels/timeline/components/NetworkRequestDetails.ts | encodedData": {
|
14019
14424
|
"message": "என்கோடிங் செய்த தரவு"
|
14020
14425
|
},
|
14426
|
+
"panels/timeline/components/NetworkRequestDetails.ts | entity": {
|
14427
|
+
"message": "Third party"
|
14428
|
+
},
|
14021
14429
|
"panels/timeline/components/NetworkRequestDetails.ts | fromCache": {
|
14022
14430
|
"message": "தற்காலிகச் சேமிப்பிலிருந்து"
|
14023
14431
|
},
|
@@ -14036,9 +14444,6 @@
|
|
14036
14444
|
"panels/timeline/components/NetworkRequestDetails.ts | no": {
|
14037
14445
|
"message": "இல்லை"
|
14038
14446
|
},
|
14039
|
-
"panels/timeline/components/NetworkRequestDetails.ts | preview": {
|
14040
|
-
"message": "மாதிரிக்காட்சி"
|
14041
|
-
},
|
14042
14447
|
"panels/timeline/components/NetworkRequestDetails.ts | priority": {
|
14043
14448
|
"message": "முன்னுரிமை"
|
14044
14449
|
},
|
@@ -14090,9 +14495,33 @@
|
|
14090
14495
|
"panels/timeline/components/NetworkThrottlingSelector.ts | presets": {
|
14091
14496
|
"message": "முன்னமைவுகள்"
|
14092
14497
|
},
|
14498
|
+
"panels/timeline/components/NetworkThrottlingSelector.ts | recommendedThrottling": {
|
14499
|
+
"message": "{PH1} – பரிந்துரைக்கப்படுகிறது"
|
14500
|
+
},
|
14501
|
+
"panels/timeline/components/NetworkThrottlingSelector.ts | recommendedThrottlingReason": {
|
14502
|
+
"message": "உண்மையான பயனர் சூழல்களைச் சிமுலேட் செய்யும்படி அமைப்பை மாற்றிப் பாருங்கள்"
|
14503
|
+
},
|
14504
|
+
"panels/timeline/components/OriginMap.ts | alreadyMapped": {
|
14505
|
+
"message": "\"{PH1}\" ஏற்கெனவே ஒரு புரொடக்ஷன் ஆரிஜினுடன் மேப் செய்யப்பட்டது."
|
14506
|
+
},
|
14507
|
+
"panels/timeline/components/OriginMap.ts | developmentOrigin": {
|
14508
|
+
"message": "டெவெலப்மெண்ட் ஆரிஜின்"
|
14509
|
+
},
|
14510
|
+
"panels/timeline/components/OriginMap.ts | invalidOrigin": {
|
14511
|
+
"message": "\"{PH1}\" என்பது தவறான ஆரிஜின் அல்லது URL."
|
14512
|
+
},
|
14513
|
+
"panels/timeline/components/OriginMap.ts | pageHasNoData": {
|
14514
|
+
"message": "Chrome UX Reportடில் இந்தப் பக்கத்தின் உண்மையான பயனர் குறித்த தரவு போதுமானதாக இல்லை."
|
14515
|
+
},
|
14516
|
+
"panels/timeline/components/OriginMap.ts | productionOrigin": {
|
14517
|
+
"message": "புரொடக்ஷன் ஆரிஜின்"
|
14518
|
+
},
|
14093
14519
|
"panels/timeline/components/RelatedInsightChips.ts | insightKeyword": {
|
14094
14520
|
"message": "புள்ளிவிவரம்"
|
14095
14521
|
},
|
14522
|
+
"panels/timeline/components/RelatedInsightChips.ts | insightWithName": {
|
14523
|
+
"message": "புள்ளிவிவரம்: {PH1}"
|
14524
|
+
},
|
14096
14525
|
"panels/timeline/components/SidebarAnnotationsTab.ts | annotationGetStarted": {
|
14097
14526
|
"message": "உங்களுக்காகவும் பிறருக்காகவும் டிரேஸில் குறிப்பைச் சேர்த்தல்"
|
14098
14527
|
},
|
@@ -14138,158 +14567,65 @@
|
|
14138
14567
|
"panels/timeline/components/SidebarInsightsTab.ts | feedbackTooltip": {
|
14139
14568
|
"message": "நுண்தகவல் என்பது பரிசோதனை நிலையில் உள்ள அம்சம் ஆகும். இதை மேம்படுத்த உங்கள் கருத்து உதவும்."
|
14140
14569
|
},
|
14141
|
-
"panels/timeline/components/SidebarSingleInsightSet.ts |
|
14142
|
-
"message": "
|
14143
|
-
},
|
14144
|
-
"panels/timeline/components/Utils.ts | fms": {
|
14145
|
-
"message": "{PH1}[மிவி]()"
|
14146
|
-
},
|
14147
|
-
"panels/timeline/components/Utils.ts | fs": {
|
14148
|
-
"message": "{PH1}[வி]()"
|
14149
|
-
},
|
14150
|
-
"panels/timeline/components/insights/CLSCulprits.ts | animation": {
|
14151
|
-
"message": "அனிமேஷன்"
|
14152
|
-
},
|
14153
|
-
"panels/timeline/components/insights/CLSCulprits.ts | fontRequest": {
|
14154
|
-
"message": "எழுத்து வடிவத்திற்கான கோரிக்கை"
|
14155
|
-
},
|
14156
|
-
"panels/timeline/components/insights/CLSCulprits.ts | injectedIframe": {
|
14157
|
-
"message": "சேர்க்கப்பட்டுள்ள iframe"
|
14158
|
-
},
|
14159
|
-
"panels/timeline/components/insights/CLSCulprits.ts | layoutShiftCluster": {
|
14160
|
-
"message": "{PH1} இல் லே-அவுட் ஷிஃப்ட் கிளஸ்டர்"
|
14161
|
-
},
|
14162
|
-
"panels/timeline/components/insights/CLSCulprits.ts | topCulprits": {
|
14163
|
-
"message": "லே-அவுட் ஷிஃப்ட்டுக்கான முக்கியமான காரணங்கள்"
|
14164
|
-
},
|
14165
|
-
"panels/timeline/components/insights/CLSCulprits.ts | unsizedImages": {
|
14166
|
-
"message": "அளவு குறிப்பிடப்படாத படங்கள்"
|
14167
|
-
},
|
14168
|
-
"panels/timeline/components/insights/CLSCulprits.ts | worstCluster": {
|
14169
|
-
"message": "மோசமான கிளஸ்டர்"
|
14570
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | dismissTitle": {
|
14571
|
+
"message": "Dismiss"
|
14170
14572
|
},
|
14171
|
-
"panels/timeline/components/
|
14172
|
-
"message": "
|
14573
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | fieldMismatchNotice": {
|
14574
|
+
"message": "There are many reasons why local and field metrics [may not match](https://web.dev/articles/lab-and-field-data-differences). Adjust [throttling settings and device emulation](https://developer.chrome.com/docs/devtools/device-mode) to analyze traces more similar to the average user's environment."
|
14173
14575
|
},
|
14174
|
-
"panels/timeline/components/
|
14175
|
-
"message": "
|
14576
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | fieldMismatchTitle": {
|
14577
|
+
"message": "Field & local metrics mismatch"
|
14176
14578
|
},
|
14177
|
-
"panels/timeline/components/
|
14178
|
-
"message": "
|
14179
|
-
},
|
14180
|
-
"panels/timeline/components/insights/DocumentLatency.ts | failedServerResponseTime": {
|
14181
|
-
"message": "சேவையகம் மெதுவாகப் பதிலளித்தது"
|
14182
|
-
},
|
14183
|
-
"panels/timeline/components/insights/DocumentLatency.ts | failedTextCompression": {
|
14184
|
-
"message": "சுருக்குதல் பயன்படுத்தப்படவில்லை"
|
14185
|
-
},
|
14186
|
-
"panels/timeline/components/insights/DocumentLatency.ts | passingRedirects": {
|
14187
|
-
"message": "திசைதிருப்புதல்களைத் தவிர்க்கும்"
|
14188
|
-
},
|
14189
|
-
"panels/timeline/components/insights/DocumentLatency.ts | passingServerResponseTime": {
|
14190
|
-
"message": "சேவையகம் விரைவாகப் பதிலளித்தது"
|
14191
|
-
},
|
14192
|
-
"panels/timeline/components/insights/DocumentLatency.ts | passingTextCompression": {
|
14193
|
-
"message": "வார்த்தைச் சுருக்குதலைப் பயன்படுத்துகிறது"
|
14194
|
-
},
|
14195
|
-
"panels/timeline/components/insights/DocumentLatency.ts | redirectsLabel": {
|
14196
|
-
"message": "திசைதிருப்புதல்கள்"
|
14197
|
-
},
|
14198
|
-
"panels/timeline/components/insights/DocumentLatency.ts | serverResponseTimeLabel": {
|
14199
|
-
"message": "சேவையக பதிலளிப்பு நேரம்"
|
14200
|
-
},
|
14201
|
-
"panels/timeline/components/insights/DocumentLatency.ts | successAriaLabel": {
|
14202
|
-
"message": "புள்ளிவிவரம் சரிபார்க்கப்பட்டது: {PH1}"
|
14203
|
-
},
|
14204
|
-
"panels/timeline/components/insights/DocumentLatency.ts | uncompressedDownload": {
|
14205
|
-
"message": "சுருக்கப்படாத பதிவிறக்கம்"
|
14206
|
-
},
|
14207
|
-
"panels/timeline/components/insights/FontDisplay.ts | fontColumn": {
|
14208
|
-
"message": "எழுத்து வடிவம்"
|
14209
|
-
},
|
14210
|
-
"panels/timeline/components/insights/FontDisplay.ts | wastedTimeColumn": {
|
14211
|
-
"message": "வீண் செய்யப்பட்ட நேரம்"
|
14212
|
-
},
|
14213
|
-
"panels/timeline/components/insights/InteractionToNextPaint.ts | duration": {
|
14214
|
-
"message": "கால அளவு"
|
14215
|
-
},
|
14216
|
-
"panels/timeline/components/insights/InteractionToNextPaint.ts | inputDelay": {
|
14217
|
-
"message": "உள்ளீட்டுத் தாமதம்"
|
14218
|
-
},
|
14219
|
-
"panels/timeline/components/insights/InteractionToNextPaint.ts | phase": {
|
14220
|
-
"message": "நிலை"
|
14221
|
-
},
|
14222
|
-
"panels/timeline/components/insights/InteractionToNextPaint.ts | presentationDelay": {
|
14223
|
-
"message": "காட்சிப்படுத்தல் தாமதம்"
|
14579
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | fieldScoreLabel": {
|
14580
|
+
"message": "Field ({PH1})"
|
14224
14581
|
},
|
14225
|
-
"panels/timeline/components/
|
14226
|
-
"message": "
|
14227
|
-
},
|
14228
|
-
"panels/timeline/components/insights/LCPDiscovery.ts | failedAriaLabel": {
|
14229
|
-
"message": "புள்ளிவிவரத்தைச் சரிபார்க்க முடியவில்லை: {PH1}"
|
14230
|
-
},
|
14231
|
-
"panels/timeline/components/insights/LCPDiscovery.ts | fetchPriorityApplied": {
|
14232
|
-
"message": "fetchpriority=high பயன்படுத்தப்பட்டுள்ளது"
|
14233
|
-
},
|
14234
|
-
"panels/timeline/components/insights/LCPDiscovery.ts | lazyLoadNotApplied": {
|
14235
|
-
"message": "தேவையுள்ளபோது காட்டுதல் பயன்படுத்தப்படவில்லை"
|
14236
|
-
},
|
14237
|
-
"panels/timeline/components/insights/LCPDiscovery.ts | lcpLoadDelay": {
|
14238
|
-
"message": "ஆரம்பக்கட்டத் துவக்கப் புள்ளிக்குப் பிறகு {PH1} கழித்து LCP படம் காட்டப்பட்டது."
|
14239
|
-
},
|
14240
|
-
"panels/timeline/components/insights/LCPDiscovery.ts | requestDiscoverable": {
|
14241
|
-
"message": "முதல் ஆவணத்தில் கோரிக்கையைக் கண்டறியலாம்"
|
14242
|
-
},
|
14243
|
-
"panels/timeline/components/insights/LCPDiscovery.ts | successAriaLabel": {
|
14244
|
-
"message": "புள்ளிவிவரம் சரிபார்க்கப்பட்டது: {PH1}"
|
14245
|
-
},
|
14246
|
-
"panels/timeline/components/insights/LCPPhases.ts | elementRenderDelay": {
|
14247
|
-
"message": "எலிமெண்ட் ரென்டரிங் தாமதம்"
|
14582
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | metricScore": {
|
14583
|
+
"message": "{PH1}: {PH2} {PH3} ஸ்கோர்"
|
14248
14584
|
},
|
14249
|
-
"panels/timeline/components/
|
14250
|
-
"message": "
|
14585
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | metricScoreUnavailable": {
|
14586
|
+
"message": "{PH1}: கிடைக்கவில்லை"
|
14251
14587
|
},
|
14252
|
-
"panels/timeline/components/
|
14253
|
-
"message": "
|
14588
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | originOption": {
|
14589
|
+
"message": "ஆரிஜின்"
|
14254
14590
|
},
|
14255
|
-
"panels/timeline/components/
|
14256
|
-
"message": "
|
14591
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | passedInsights": {
|
14592
|
+
"message": "சரிபார்க்கப்பட்ட புள்ளிவிவரங்கள் ({PH1})"
|
14257
14593
|
},
|
14258
|
-
"panels/timeline/components/
|
14259
|
-
"message": "
|
14594
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | urlOption": {
|
14595
|
+
"message": "URL"
|
14260
14596
|
},
|
14261
|
-
"panels/timeline/components/
|
14262
|
-
"message": "
|
14597
|
+
"panels/timeline/components/TimelineSummary.ts | rangeSS": {
|
14598
|
+
"message": "வரம்பு: {PH1} – {PH2}"
|
14263
14599
|
},
|
14264
|
-
"panels/timeline/components/
|
14265
|
-
"message": "
|
14600
|
+
"panels/timeline/components/TimelineSummary.ts | total": {
|
14601
|
+
"message": "மொத்தம்"
|
14266
14602
|
},
|
14267
|
-
"panels/timeline/components/
|
14268
|
-
"message": "
|
14603
|
+
"panels/timeline/components/Utils.ts | fms": {
|
14604
|
+
"message": "{PH1}[மிவி]()"
|
14269
14605
|
},
|
14270
|
-
"panels/timeline/components/
|
14271
|
-
"message": "
|
14606
|
+
"panels/timeline/components/Utils.ts | fs": {
|
14607
|
+
"message": "{PH1}[வி]()"
|
14272
14608
|
},
|
14273
|
-
"panels/timeline/components/insights/
|
14274
|
-
"message": "
|
14609
|
+
"panels/timeline/components/insights/BaseInsightComponent.ts | estimatedSavings": {
|
14610
|
+
"message": "கணக்கிடப்பட்ட சேமிப்பு: {PH1}"
|
14275
14611
|
},
|
14276
|
-
"panels/timeline/components/insights/
|
14277
|
-
"message": "
|
14612
|
+
"panels/timeline/components/insights/BaseInsightComponent.ts | estimatedSavingsTimingAndBytes": {
|
14613
|
+
"message": "கணக்கிடப்பட்ட சேமிப்பு: {PH1} & {PH2}"
|
14278
14614
|
},
|
14279
|
-
"panels/timeline/components/insights/
|
14280
|
-
"message": "
|
14615
|
+
"panels/timeline/components/insights/BaseInsightComponent.ts | viewDetails": {
|
14616
|
+
"message": "{PH1}க்கான விவரங்களைக் காட்டும்"
|
14281
14617
|
},
|
14282
|
-
"panels/timeline/
|
14283
|
-
"message": "
|
14618
|
+
"panels/timeline/overlays/OverlaysImpl.ts | fieldMetricMarkerField": {
|
14619
|
+
"message": "{PH1} - புலம் ({PH2})"
|
14284
14620
|
},
|
14285
|
-
"panels/timeline/
|
14286
|
-
"message": "
|
14621
|
+
"panels/timeline/overlays/OverlaysImpl.ts | fieldMetricMarkerLocal": {
|
14622
|
+
"message": "{PH1} - லோக்கல்"
|
14287
14623
|
},
|
14288
|
-
"panels/timeline/
|
14289
|
-
"message": "
|
14624
|
+
"panels/timeline/overlays/OverlaysImpl.ts | originOption": {
|
14625
|
+
"message": "ஆரிஜின்"
|
14290
14626
|
},
|
14291
|
-
"panels/timeline/
|
14292
|
-
"message": "
|
14627
|
+
"panels/timeline/overlays/OverlaysImpl.ts | urlOption": {
|
14628
|
+
"message": "URL"
|
14293
14629
|
},
|
14294
14630
|
"panels/timeline/overlays/components/EntriesLinkOverlay.ts | diagram": {
|
14295
14631
|
"message": "உள்ளீடுகளுக்கு இடையேயான இணைப்புகள்"
|
@@ -14351,6 +14687,9 @@
|
|
14351
14687
|
"panels/timeline/utils/EntryName.ts | frame": {
|
14352
14688
|
"message": "ஃபிரேம்"
|
14353
14689
|
},
|
14690
|
+
"panels/timeline/utils/EntryName.ts | layoutShift": {
|
14691
|
+
"message": "லே-அவுட் ஷிஃப்ட்"
|
14692
|
+
},
|
14354
14693
|
"panels/timeline/utils/EntryName.ts | wsConnectionClosed": {
|
14355
14694
|
"message": "WebSocket மூடப்பட்டது"
|
14356
14695
|
},
|
@@ -14411,6 +14750,9 @@
|
|
14411
14750
|
"panels/timeline/utils/EntryStyles.ts | computeIntersections": {
|
14412
14751
|
"message": "இண்டர்செக்ஷன்களைக் கணக்கிடு"
|
14413
14752
|
},
|
14753
|
+
"panels/timeline/utils/EntryStyles.ts | consoleTaskRun": {
|
14754
|
+
"message": "கன்சோல் பணியை இயக்கு"
|
14755
|
+
},
|
14414
14756
|
"panels/timeline/utils/EntryStyles.ts | consoleTime": {
|
14415
14757
|
"message": "கன்சோல் நேரம்"
|
14416
14758
|
},
|
@@ -14481,7 +14823,7 @@
|
|
14481
14823
|
"message": "ஐடில் கால்பேக்கைச் செயல்படுத்து"
|
14482
14824
|
},
|
14483
14825
|
"panels/timeline/utils/EntryStyles.ts | firstContentfulPaint": {
|
14484
|
-
"message": "
|
14826
|
+
"message": "ஃபர்ஸ்ட் கன்டென்ட்ஃபுல் பெயிண்ட்"
|
14485
14827
|
},
|
14486
14828
|
"panels/timeline/utils/EntryStyles.ts | firstPaint": {
|
14487
14829
|
"message": "முதல் தோற்றம்"
|
@@ -14523,7 +14865,7 @@
|
|
14523
14865
|
"message": "JS ஃபிரேம்"
|
14524
14866
|
},
|
14525
14867
|
"panels/timeline/utils/EntryStyles.ts | largestContentfulPaint": {
|
14526
|
-
"message": "
|
14868
|
+
"message": "லார்ஜஸ்ட் கன்டென்ட்ஃபுல் பெயிண்ட்"
|
14527
14869
|
},
|
14528
14870
|
"panels/timeline/utils/EntryStyles.ts | layerize": {
|
14529
14871
|
"message": "லேயராக்குதல்"
|
@@ -14711,6 +15053,18 @@
|
|
14711
15053
|
"panels/timeline/utils/EntryStyles.ts | xhrReadyStateChange": {
|
14712
15054
|
"message": "XHR readyState மாற்றம்"
|
14713
15055
|
},
|
15056
|
+
"panels/timeline/utils/IgnoreList.ts | skip3rdPartyScripts": {
|
15057
|
+
"message": "தவிர்க்க வேண்டியவற்றின் பட்டியலுடன் ஆதார மேப்பில் குறிக்கப்பட்டுள்ளது"
|
15058
|
+
},
|
15059
|
+
"panels/timeline/utils/IgnoreList.ts | skipAnonymousScripts": {
|
15060
|
+
"message": "அடையாளம் நீக்கப்பட்ட ஸ்கிரிப்ட்"
|
15061
|
+
},
|
15062
|
+
"panels/timeline/utils/IgnoreList.ts | skipContentScripts": {
|
15063
|
+
"message": "உள்ளடக்க ஸ்கிரிப்ட்"
|
15064
|
+
},
|
15065
|
+
"panels/timeline/utils/IgnoreList.ts | unknown": {
|
15066
|
+
"message": "தெரியவில்லை"
|
15067
|
+
},
|
14714
15068
|
"panels/utils/utils.ts | requestContentHeadersOverridden": {
|
14715
15069
|
"message": "கோரிக்கை உள்ளடக்கம், தலைப்புகள் ஆகிய இரண்டும் மீறிச் செயல்படுகின்றன"
|
14716
15070
|
},
|
@@ -14861,11 +15215,8 @@
|
|
14861
15215
|
"panels/webauthn/webauthn-meta.ts | webauthn": {
|
14862
15216
|
"message": "WebAuthn"
|
14863
15217
|
},
|
14864
|
-
"panels/whats_new/ReleaseNoteView.ts |
|
14865
|
-
"message": "
|
14866
|
-
},
|
14867
|
-
"panels/whats_new/ReleaseNoteView.ts | learnMore": {
|
14868
|
-
"message": "மேலும் அறிக"
|
15218
|
+
"panels/whats_new/ReleaseNoteView.ts | seeFeatures": {
|
15219
|
+
"message": "எல்லாப் புதிய அம்சங்களையும் காட்டு"
|
14869
15220
|
},
|
14870
15221
|
"panels/whats_new/whats_new-meta.ts | bug": {
|
14871
15222
|
"message": "பிழை"
|
@@ -14888,40 +15239,7 @@
|
|
14888
15239
|
"panels/whats_new/whats_new-meta.ts | whatsNew": {
|
14889
15240
|
"message": "புதியவை"
|
14890
15241
|
},
|
14891
|
-
"ui/components/
|
14892
|
-
"message": "நெடுவரிசை வரிசைப்படுத்தப்பட்டுள்ள நிலை: {PH1}. வரிசைப்படுத்துதல் வடிப்பானைப் பயன்படுத்த Enter பட்டனை அழுத்தவும்"
|
14893
|
-
},
|
14894
|
-
"ui/components/data_grid/DataGrid.ts | headerOptions": {
|
14895
|
-
"message": "தலைப்பிற்கான விருப்பங்கள்"
|
14896
|
-
},
|
14897
|
-
"ui/components/data_grid/DataGrid.ts | resetColumns": {
|
14898
|
-
"message": "நெடுவரிசைகளை மீட்டமை"
|
14899
|
-
},
|
14900
|
-
"ui/components/data_grid/DataGrid.ts | sortAsc": {
|
14901
|
-
"message": "ஏறுவரிசை"
|
14902
|
-
},
|
14903
|
-
"ui/components/data_grid/DataGrid.ts | sortBy": {
|
14904
|
-
"message": "இதன்படி வரிசைப்படுத்து"
|
14905
|
-
},
|
14906
|
-
"ui/components/data_grid/DataGrid.ts | sortDesc": {
|
14907
|
-
"message": "இறங்குவரிசை"
|
14908
|
-
},
|
14909
|
-
"ui/components/data_grid/DataGrid.ts | sortNone": {
|
14910
|
-
"message": "எதுவுமில்லை"
|
14911
|
-
},
|
14912
|
-
"ui/components/data_grid/DataGridController.ts | sortInAscendingOrder": {
|
14913
|
-
"message": "{PH1} ஏறுவரிசையில் வரிசைப்படுத்தப்பட்டது"
|
14914
|
-
},
|
14915
|
-
"ui/components/data_grid/DataGridController.ts | sortInDescendingOrder": {
|
14916
|
-
"message": "{PH1} இறங்குவரிசையில் வரிசைப்படுத்தப்பட்டது"
|
14917
|
-
},
|
14918
|
-
"ui/components/data_grid/DataGridController.ts | sortingCanceled": {
|
14919
|
-
"message": "{PH1} வரிசைப்படுத்துதல் ரத்துசெய்யப்பட்டது"
|
14920
|
-
},
|
14921
|
-
"ui/components/dialogs/IconDialog.ts | close": {
|
14922
|
-
"message": "மூடும்"
|
14923
|
-
},
|
14924
|
-
"ui/components/dialogs/ShortcutDialog.ts | close": {
|
15242
|
+
"ui/components/dialogs/Dialog.ts | close": {
|
14925
15243
|
"message": "மூடும்"
|
14926
15244
|
},
|
14927
15245
|
"ui/components/dialogs/ShortcutDialog.ts | dialogTitle": {
|
@@ -15161,6 +15479,9 @@
|
|
15161
15479
|
"ui/legacy/InspectorView.ts | panels": {
|
15162
15480
|
"message": "பேனல்கள்"
|
15163
15481
|
},
|
15482
|
+
"ui/legacy/InspectorView.ts | reloadDebuggedTab": {
|
15483
|
+
"message": "ரெஃப்ரெஷ் செய்"
|
15484
|
+
},
|
15164
15485
|
"ui/legacy/InspectorView.ts | reloadDevtools": {
|
15165
15486
|
"message": "டெவெலப்பர் கருவிகளை ரெஃப்ரெஷ் செய்"
|
15166
15487
|
},
|
@@ -15288,7 +15609,7 @@
|
|
15288
15609
|
"message": "மூடுக"
|
15289
15610
|
},
|
15290
15611
|
"ui/legacy/TabbedPane.ts | closeAll": {
|
15291
|
-
"message": "
|
15612
|
+
"message": "எல்லாவற்றையும் மூடு"
|
15292
15613
|
},
|
15293
15614
|
"ui/legacy/TabbedPane.ts | closeOthers": {
|
15294
15615
|
"message": "பிறவற்றை மறை"
|
@@ -15302,6 +15623,12 @@
|
|
15302
15623
|
"ui/legacy/TabbedPane.ts | moreTabs": {
|
15303
15624
|
"message": "கூடுதல் தாவல்கள்"
|
15304
15625
|
},
|
15626
|
+
"ui/legacy/TabbedPane.ts | moveTabLeft": {
|
15627
|
+
"message": "இடப்புறம் நகர்த்து"
|
15628
|
+
},
|
15629
|
+
"ui/legacy/TabbedPane.ts | moveTabRight": {
|
15630
|
+
"message": "வலப்புறம் நகர்த்து"
|
15631
|
+
},
|
15305
15632
|
"ui/legacy/TabbedPane.ts | previewFeature": {
|
15306
15633
|
"message": "மாதிரிக்காட்சி அம்சம்"
|
15307
15634
|
},
|
@@ -15489,7 +15816,7 @@
|
|
15489
15816
|
"message": "இந்தக் குக்கீயுடன் தொடர்புடைய சிக்கலைக் காட்டு"
|
15490
15817
|
},
|
15491
15818
|
"ui/legacy/components/cookie_table/CookiesTable.ts | showRequestsWithThisCookie": {
|
15492
|
-
"message": "இந்தக்
|
15819
|
+
"message": "இந்தக் குக்கீயில் உள்ள கோரிக்கைகளைக் காட்டு"
|
15493
15820
|
},
|
15494
15821
|
"ui/legacy/components/cookie_table/CookiesTable.ts | size": {
|
15495
15822
|
"message": "அளவு"
|
@@ -15527,6 +15854,9 @@
|
|
15527
15854
|
"ui/legacy/components/data_grid/DataGrid.ts | emptyRowCreated": {
|
15528
15855
|
"message": "காலியான அட்டவணை வரிசை உருவாக்கப்பட்டது. இருமுறை கிளிக் செய்தோ சூழல் மெனுவைப் பயன்படுத்தியோ திருத்தலாம்."
|
15529
15856
|
},
|
15857
|
+
"ui/legacy/components/data_grid/DataGrid.ts | enterToSort": {
|
15858
|
+
"message": "நெடுவரிசை வரிசைப்படுத்தப்பட்டுள்ள நிலை: {PH1}. வரிசைப்படுத்துதல் வடிப்பானைப் பயன்படுத்த Enter பட்டனை அழுத்தவும்"
|
15859
|
+
},
|
15530
15860
|
"ui/legacy/components/data_grid/DataGrid.ts | expanded": {
|
15531
15861
|
"message": "விரிவாக்கப்பட்டது"
|
15532
15862
|
},
|
@@ -15554,11 +15884,8 @@
|
|
15554
15884
|
"ui/legacy/components/data_grid/DataGrid.ts | sortByString": {
|
15555
15885
|
"message": "இதன்படி வரிசைப்படுத்து"
|
15556
15886
|
},
|
15557
|
-
"ui/legacy/components/data_grid/
|
15558
|
-
"message": "
|
15559
|
-
},
|
15560
|
-
"ui/legacy/components/data_grid/DataGridWithPreview.ts | selectAValueToPreview": {
|
15561
|
-
"message": "மாதிரிக்காட்சியைப் பார்க்க ஒரு மதிப்பைத் தேர்ந்தெடுக்கவும்"
|
15887
|
+
"ui/legacy/components/data_grid/DataGrid.ts | sortableColumn": {
|
15888
|
+
"message": "Sortable column. Press enter to apply sorting filter"
|
15562
15889
|
},
|
15563
15890
|
"ui/legacy/components/data_grid/ShowMoreDataGridNode.ts | showAllD": {
|
15564
15891
|
"message": "அனைத்தையும் ({PH1}) காட்டு"
|
@@ -15741,7 +16068,7 @@
|
|
15741
16068
|
"message": "குறிப்புகளை நீக்கு"
|
15742
16069
|
},
|
15743
16070
|
"ui/legacy/components/perf_ui/FlameChart.ts | enterTrackConfigurationMode": {
|
15744
|
-
"message": "டிராக்குகளை
|
16071
|
+
"message": "டிராக்குகளை உள்ளமை"
|
15745
16072
|
},
|
15746
16073
|
"ui/legacy/components/perf_ui/FlameChart.ts | eventSelectedFromGroup": {
|
15747
16074
|
"message": "{PH2}க்குள் {PH1} நிகழ்வு தேர்ந்தெடுக்கப்பட்டது. இந்த நிகழ்வை ஃபோகஸ் செய்ய \"enter\" அழுத்தவும்."
|
@@ -15797,11 +16124,14 @@
|
|
15797
16124
|
"ui/legacy/components/perf_ui/PieChart.ts | total": {
|
15798
16125
|
"message": "மொத்தம்"
|
15799
16126
|
},
|
16127
|
+
"ui/legacy/components/perf_ui/perf_ui-meta.ts | classic": {
|
16128
|
+
"message": "கிளாசிக்"
|
16129
|
+
},
|
15800
16130
|
"ui/legacy/components/perf_ui/perf_ui-meta.ts | collectGarbage": {
|
15801
16131
|
"message": "தேவையற்றவற்றைச் சேகரி"
|
15802
16132
|
},
|
15803
|
-
"ui/legacy/components/perf_ui/perf_ui-meta.ts |
|
15804
|
-
"message": "
|
16133
|
+
"ui/legacy/components/perf_ui/perf_ui-meta.ts | flamechartSelectedNavigation": {
|
16134
|
+
"message": "ஃபிளேம் சார்ட் வழிசெலுத்தல்:"
|
15805
16135
|
},
|
15806
16136
|
"ui/legacy/components/perf_ui/perf_ui-meta.ts | hideLiveMemoryAllocation": {
|
15807
16137
|
"message": "நேரலை நினைவக ஒதுக்கீட்டிற்கான விரிவுரைகளை மறை"
|
@@ -15809,15 +16139,12 @@
|
|
15809
16139
|
"ui/legacy/components/perf_ui/perf_ui-meta.ts | liveMemoryAllocationAnnotations": {
|
15810
16140
|
"message": "நேரலை நினைவக ஒதுக்கீட்டிற்கான சிறுகுறிப்புகள்"
|
15811
16141
|
},
|
15812
|
-
"ui/legacy/components/perf_ui/perf_ui-meta.ts |
|
15813
|
-
"message": "
|
16142
|
+
"ui/legacy/components/perf_ui/perf_ui-meta.ts | modern": {
|
16143
|
+
"message": "மாடர்ன்"
|
15814
16144
|
},
|
15815
16145
|
"ui/legacy/components/perf_ui/perf_ui-meta.ts | showLiveMemoryAllocation": {
|
15816
16146
|
"message": "நேரலை நினைவக ஒதுக்கீட்டிற்கான சிறுகுறிப்புகளைக் காட்டு"
|
15817
16147
|
},
|
15818
|
-
"ui/legacy/components/perf_ui/perf_ui-meta.ts | zoom": {
|
15819
|
-
"message": "பெரிதாக்கு"
|
15820
|
-
},
|
15821
16148
|
"ui/legacy/components/quick_open/CommandMenu.ts | command": {
|
15822
16149
|
"message": "கட்டளை"
|
15823
16150
|
},
|
@@ -15833,6 +16160,9 @@
|
|
15833
16160
|
"ui/legacy/components/quick_open/CommandMenu.ts | run": {
|
15834
16161
|
"message": "இயக்கு"
|
15835
16162
|
},
|
16163
|
+
"ui/legacy/components/quick_open/CommandMenu.ts | runCommand": {
|
16164
|
+
"message": "கட்டளையை இயக்கு"
|
16165
|
+
},
|
15836
16166
|
"ui/legacy/components/quick_open/FilteredListWidget.ts | noResultsFound": {
|
15837
16167
|
"message": "முடிவுகள் எதுவுமில்லை"
|
15838
16168
|
},
|
@@ -15890,8 +16220,11 @@
|
|
15890
16220
|
"ui/legacy/components/source_frame/JSONView.ts | find": {
|
15891
16221
|
"message": "தேடு"
|
15892
16222
|
},
|
16223
|
+
"ui/legacy/components/source_frame/PreviewFactory.ts | failedToLoadData": {
|
16224
|
+
"message": "Failed to load data"
|
16225
|
+
},
|
15893
16226
|
"ui/legacy/components/source_frame/PreviewFactory.ts | nothingToPreview": {
|
15894
|
-
"message": "
|
16227
|
+
"message": "Nothing to preview"
|
15895
16228
|
},
|
15896
16229
|
"ui/legacy/components/source_frame/ResourceSourceFrame.ts | find": {
|
15897
16230
|
"message": "தேடு"
|
@@ -16027,8 +16360,5 @@
|
|
16027
16360
|
},
|
16028
16361
|
"ui/legacy/components/utils/Linkifier.ts | unknown": {
|
16029
16362
|
"message": "(தெரியவில்லை)"
|
16030
|
-
},
|
16031
|
-
"ui/legacy/components/utils/TargetDetachedDialog.ts | websocketDisconnected": {
|
16032
|
-
"message": "WebSocket துண்டிக்கப்பட்டது"
|
16033
16363
|
}
|
16034
16364
|
}
|