chrome-devtools-frontend 1.0.1367881 → 1.0.1376716
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/.vscode/extensions.json +4 -4
- package/config/gni/devtools_grd_files.gni +30 -8
- package/config/gni/devtools_image_files.gni +3 -0
- package/docs/README.md +1 -5
- package/docs/checklist/javascript.md +45 -8
- package/docs/contributing/design.md +1 -1
- package/docs/contributing/settings-experiments-features.md +1 -1
- package/docs/cookbook/README.md +12 -0
- package/docs/cookbook/create_new_issues.md +91 -0
- package/docs/cookbook/dependencies.md +103 -0
- package/docs/cookbook/localization.md +320 -0
- package/docs/cookbook/navbar.md +8 -0
- package/docs/cookbook/release_management.md +60 -0
- package/docs/cookbook/uma_metrics.md +121 -0
- package/docs/dependencies.md +1 -100
- package/docs/l10n.md +1 -295
- package/docs/release_management.md +1 -53
- package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +1 -1
- package/extensions/cxx_debugging/e2e/tsconfig.json +1 -0
- package/extensions/cxx_debugging/src/ExtensionOptions.ts +6 -7
- package/extensions/cxx_debugging/tests/CreditsItem_test.ts +4 -4
- package/front_end/.eslintrc.js +0 -1
- package/front_end/Images/src/center-focus-weak.svg +1 -0
- package/front_end/Images/src/history.svg +3 -0
- package/front_end/Images/src/home.svg +1 -0
- package/front_end/core/common/Color.ts +10 -0
- package/front_end/core/common/ResourceType.test.ts +26 -26
- package/front_end/core/common/ResourceType.ts +21 -12
- package/front_end/core/common/Revealer.ts +5 -0
- package/front_end/core/common/Settings.ts +5 -1
- package/front_end/core/host/AidaClient.ts +58 -0
- package/front_end/core/host/InspectorFrontendHost.ts +1 -1
- package/front_end/core/host/InspectorFrontendHostAPI.ts +8 -1
- package/front_end/core/host/UserMetrics.ts +16 -13
- package/front_end/core/i18n/locales/af.json +598 -109
- package/front_end/core/i18n/locales/am.json +607 -118
- package/front_end/core/i18n/locales/ar.json +888 -399
- package/front_end/core/i18n/locales/as.json +603 -114
- package/front_end/core/i18n/locales/az.json +606 -117
- package/front_end/core/i18n/locales/be.json +599 -110
- package/front_end/core/i18n/locales/bg.json +598 -109
- package/front_end/core/i18n/locales/bn.json +609 -120
- package/front_end/core/i18n/locales/bs.json +607 -118
- package/front_end/core/i18n/locales/ca.json +601 -112
- package/front_end/core/i18n/locales/cs.json +605 -116
- package/front_end/core/i18n/locales/cy.json +603 -114
- package/front_end/core/i18n/locales/da.json +599 -110
- package/front_end/core/i18n/locales/de.json +604 -115
- package/front_end/core/i18n/locales/el.json +596 -107
- package/front_end/core/i18n/locales/en-GB.json +599 -110
- package/front_end/core/i18n/locales/es-419.json +600 -111
- package/front_end/core/i18n/locales/es.json +602 -113
- package/front_end/core/i18n/locales/et.json +601 -112
- package/front_end/core/i18n/locales/eu.json +605 -116
- package/front_end/core/i18n/locales/fa.json +609 -120
- package/front_end/core/i18n/locales/fi.json +598 -109
- package/front_end/core/i18n/locales/fil.json +605 -116
- package/front_end/core/i18n/locales/fr-CA.json +602 -113
- package/front_end/core/i18n/locales/fr.json +600 -111
- package/front_end/core/i18n/locales/gl.json +595 -106
- package/front_end/core/i18n/locales/gu.json +605 -116
- package/front_end/core/i18n/locales/he.json +603 -114
- package/front_end/core/i18n/locales/hi.json +600 -111
- package/front_end/core/i18n/locales/hr.json +600 -111
- package/front_end/core/i18n/locales/hu.json +600 -111
- package/front_end/core/i18n/locales/hy.json +599 -110
- package/front_end/core/i18n/locales/id.json +603 -114
- package/front_end/core/i18n/locales/is.json +598 -109
- package/front_end/core/i18n/locales/it.json +602 -113
- package/front_end/core/i18n/locales/ja.json +596 -107
- package/front_end/core/i18n/locales/ka.json +597 -108
- package/front_end/core/i18n/locales/kk.json +884 -395
- package/front_end/core/i18n/locales/km.json +605 -116
- package/front_end/core/i18n/locales/kn.json +606 -117
- package/front_end/core/i18n/locales/ko.json +591 -102
- package/front_end/core/i18n/locales/ky.json +599 -110
- package/front_end/core/i18n/locales/lo.json +608 -119
- package/front_end/core/i18n/locales/lt.json +597 -108
- package/front_end/core/i18n/locales/lv.json +606 -117
- package/front_end/core/i18n/locales/mk.json +885 -396
- package/front_end/core/i18n/locales/ml.json +601 -112
- package/front_end/core/i18n/locales/mn.json +599 -110
- package/front_end/core/i18n/locales/mr.json +601 -112
- package/front_end/core/i18n/locales/ms.json +602 -113
- package/front_end/core/i18n/locales/my.json +604 -115
- package/front_end/core/i18n/locales/ne.json +609 -120
- package/front_end/core/i18n/locales/nl.json +597 -108
- package/front_end/core/i18n/locales/no.json +601 -112
- package/front_end/core/i18n/locales/or.json +601 -112
- package/front_end/core/i18n/locales/pa.json +600 -111
- package/front_end/core/i18n/locales/pl.json +601 -112
- package/front_end/core/i18n/locales/pt-PT.json +600 -111
- package/front_end/core/i18n/locales/pt.json +596 -107
- package/front_end/core/i18n/locales/ro.json +601 -112
- package/front_end/core/i18n/locales/ru.json +609 -120
- package/front_end/core/i18n/locales/si.json +603 -114
- package/front_end/core/i18n/locales/sk.json +599 -110
- package/front_end/core/i18n/locales/sl.json +601 -112
- package/front_end/core/i18n/locales/sq.json +602 -113
- package/front_end/core/i18n/locales/sr-Latn.json +598 -109
- package/front_end/core/i18n/locales/sr.json +598 -109
- package/front_end/core/i18n/locales/sv.json +600 -111
- package/front_end/core/i18n/locales/sw.json +606 -117
- package/front_end/core/i18n/locales/ta.json +892 -403
- package/front_end/core/i18n/locales/te.json +604 -115
- package/front_end/core/i18n/locales/th.json +597 -108
- package/front_end/core/i18n/locales/tr.json +601 -112
- package/front_end/core/i18n/locales/uk.json +598 -109
- package/front_end/core/i18n/locales/ur.json +604 -115
- package/front_end/core/i18n/locales/uz.json +599 -110
- package/front_end/core/i18n/locales/vi.json +602 -113
- package/front_end/core/i18n/locales/zh-HK.json +599 -110
- package/front_end/core/i18n/locales/zh-TW.json +595 -106
- package/front_end/core/i18n/locales/zh.json +601 -112
- package/front_end/core/i18n/locales/zu.json +607 -118
- package/front_end/core/root/Runtime.ts +15 -7
- package/front_end/{panels/animation → core/sdk}/AnimationModel.test.ts +85 -6
- package/front_end/{panels/animation → core/sdk}/AnimationModel.ts +302 -36
- package/front_end/core/sdk/CSSContainerQuery.ts +4 -2
- package/front_end/core/sdk/CSSMatchedStyles.test.ts +4 -0
- package/front_end/core/sdk/CSSMatchedStyles.ts +13 -10
- package/front_end/core/sdk/CSSMetadata.ts +6 -0
- package/front_end/core/sdk/CSSStyleDeclaration.test.ts +10 -0
- package/front_end/core/sdk/CSSStyleDeclaration.ts +1 -1
- package/front_end/core/sdk/DOMModel.ts +3 -3
- package/front_end/core/sdk/DebuggerModel.test.ts +2 -0
- package/front_end/core/sdk/EmulationModel.ts +32 -0
- package/front_end/core/sdk/EnhancedTracesParser.test.ts +4 -4
- package/front_end/core/sdk/EnhancedTracesParser.ts +4 -5
- package/front_end/core/sdk/RehydratingConnection.test.ts +190 -0
- package/front_end/core/sdk/RehydratingConnection.ts +310 -0
- package/front_end/core/sdk/RehydratingObject.ts +26 -2
- package/front_end/core/sdk/RuntimeModel.ts +31 -0
- package/front_end/core/sdk/Script.ts +1 -1
- package/front_end/core/sdk/TraceObject.ts +8 -0
- package/front_end/core/sdk/sdk.ts +2 -0
- package/front_end/devtools_compatibility.js +0 -1
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +95 -74
- package/front_end/entrypoints/main/MainImpl.ts +10 -0
- package/front_end/generated/InspectorBackendCommands.js +10 -9
- package/front_end/generated/SupportedCSSProperties.js +15 -1
- package/front_end/generated/protocol-mapping.d.ts +4 -3
- package/front_end/generated/protocol-proxy-api.d.ts +4 -3
- package/front_end/generated/protocol.ts +31 -2
- package/front_end/legacy_test_runner/network_test_runner/network_test_runner.js +1 -0
- package/front_end/models/har/HARFormat.ts +1 -0
- package/front_end/models/har/Importer.test.ts +16 -2
- package/front_end/models/har/Importer.ts +2 -2
- package/front_end/models/har/Log.test.ts +23 -0
- package/front_end/models/har/Log.ts +6 -4
- package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +4 -2
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +58 -18
- package/front_end/models/issues_manager/CookieIssue.ts +12 -0
- package/front_end/models/issues_manager/descriptions/arInvalidInfoHeader.md +5 -0
- package/front_end/models/issues_manager/descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +5 -0
- package/front_end/models/issues_manager/descriptions/arNoRegisterOsSourceHeader.md +5 -0
- package/front_end/models/issues_manager/descriptions/arNoRegisterOsTriggerHeader.md +5 -0
- package/front_end/models/issues_manager/descriptions/arNoRegisterSourceHeader.md +5 -0
- package/front_end/models/issues_manager/descriptions/arNoRegisterTriggerHeader.md +5 -0
- package/front_end/models/issues_manager/descriptions/arNoWebOrOsSupport.md +4 -0
- package/front_end/models/issues_manager/descriptions/placeholderDescriptionForInvisibleIssues.md +3 -0
- package/front_end/models/javascript_metadata/NativeFunctions.js +69 -18
- package/front_end/models/live-metrics/LiveMetrics.ts +116 -19
- package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +24 -61
- package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +49 -21
- package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +43 -5
- package/front_end/models/timeline_model/TimelineModelFilter.ts +2 -2
- package/front_end/models/trace/Processor.ts +5 -1
- package/front_end/models/trace/extras/ThirdParties.test.ts +117 -0
- package/front_end/models/trace/extras/ThirdParties.ts +207 -0
- package/front_end/models/trace/extras/extras.ts +1 -0
- package/front_end/models/trace/handlers/FramesHandler.ts +12 -5
- package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +40 -0
- package/front_end/models/trace/handlers/InitiatorsHandler.ts +9 -0
- package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +17 -0
- package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +2 -2
- package/front_end/models/trace/handlers/RendererHandler.test.ts +4 -4
- package/front_end/models/trace/helpers/Timing.test.ts +29 -0
- package/front_end/models/trace/helpers/Timing.ts +18 -0
- package/front_end/models/trace/helpers/TreeHelpers.test.ts +52 -34
- package/front_end/models/trace/helpers/TreeHelpers.ts +135 -45
- package/front_end/models/trace/insights/CumulativeLayoutShift.test.ts +22 -0
- package/front_end/models/trace/insights/CumulativeLayoutShift.ts +62 -20
- package/front_end/models/trace/insights/ThirdPartyWeb.ts +13 -183
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +4 -4
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +9 -5
- package/front_end/models/trace/lantern/simulation/Simulator.ts +1 -1
- package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +4 -0
- package/front_end/models/trace/types/TraceEvents.ts +68 -2
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +1 -1
- package/front_end/panels/animation/AnimationGroupPreviewUI.ts +3 -3
- package/front_end/panels/animation/AnimationTimeline.test.ts +15 -15
- package/front_end/panels/animation/AnimationTimeline.ts +85 -53
- package/front_end/panels/animation/AnimationUI.ts +5 -6
- package/front_end/panels/animation/animation-meta.ts +15 -0
- package/front_end/panels/animation/animation.ts +0 -4
- package/front_end/panels/application/ApplicationPanelSidebar.test.ts +16 -0
- package/front_end/panels/application/ApplicationPanelSidebar.ts +13 -9
- package/front_end/panels/application/ExtensionStorageItemsView.test.ts +72 -0
- package/front_end/panels/application/ExtensionStorageItemsView.ts +23 -1
- package/front_end/panels/application/ExtensionStorageModel.test.ts +15 -0
- package/front_end/panels/application/ExtensionStorageModel.ts +10 -1
- package/front_end/panels/application/OpenedWindowDetailsView.ts +2 -3
- package/front_end/panels/application/SharedStorageItemsView.test.ts +1 -20
- package/front_end/panels/application/components/BackForwardCacheStrings.ts +1 -0
- package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +3 -7
- package/front_end/panels/application/components/EndpointsGrid.ts +1 -2
- package/front_end/panels/application/components/FrameDetailsView.ts +8 -8
- package/front_end/panels/application/components/InterestGroupAccessGrid.ts +4 -8
- package/front_end/panels/application/components/PermissionsPolicySection.ts +3 -4
- package/front_end/panels/application/components/ReportsGrid.ts +2 -4
- package/front_end/panels/application/components/SharedStorageAccessGrid.ts +4 -9
- package/front_end/panels/application/components/StackTrace.ts +6 -9
- package/front_end/panels/application/components/StorageMetadataView.ts +1 -2
- package/front_end/panels/application/components/TrustTokensView.ts +1 -2
- package/front_end/panels/application/preloading/PreloadingView.ts +5 -5
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +2 -2
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +3 -9
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +2 -5
- package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +2 -2
- package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingGrid.ts +3 -6
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +1 -3
- package/front_end/panels/application/preloading/components/PreloadingString.ts +5 -0
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +2 -3
- package/front_end/panels/application/preloading/components/RuleSetGrid.ts +7 -10
- package/front_end/panels/autofill/AutofillView.ts +2 -5
- package/front_end/panels/console/ConsoleView.ts +1 -1
- package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +3 -5
- package/front_end/panels/elements/AccessibilityTreeUtils.ts +4 -6
- package/front_end/panels/elements/CSSRuleValidator.ts +0 -5
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +0 -2
- package/front_end/panels/elements/ElementStatePaneWidget.ts +5 -0
- package/front_end/panels/elements/ElementsPanel.ts +4 -4
- package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
- package/front_end/panels/elements/StylePropertyTreeElement.test.ts +90 -0
- package/front_end/panels/elements/StylePropertyTreeElement.ts +29 -2
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +3 -5
- package/front_end/panels/elements/components/LayoutPane.ts +2 -3
- package/front_end/panels/elements/components/QueryContainer.ts +3 -5
- package/front_end/panels/elements/stylePropertiesTreeOutline.css +13 -0
- package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +0 -2
- package/front_end/panels/event_listeners/EventListenersView.ts +2 -2
- package/front_end/panels/event_listeners/eventListenersView.css +4 -3
- package/front_end/panels/explain/components/ConsoleInsight.test.ts +56 -8
- package/front_end/panels/explain/components/ConsoleInsight.ts +53 -36
- package/front_end/panels/explain/explain-meta.ts +1 -12
- package/front_end/panels/freestyler/AiAgent.test.ts +92 -12
- package/front_end/panels/freestyler/AiAgent.ts +341 -56
- package/front_end/panels/freestyler/DrJonesFileAgent.test.ts +70 -43
- package/front_end/panels/freestyler/DrJonesFileAgent.ts +75 -79
- package/front_end/panels/freestyler/DrJonesNetworkAgent.test.ts +135 -72
- package/front_end/panels/freestyler/DrJonesNetworkAgent.ts +219 -117
- package/front_end/panels/freestyler/DrJonesPerformanceAgent.test.ts +102 -56
- package/front_end/panels/freestyler/DrJonesPerformanceAgent.ts +118 -114
- package/front_end/panels/freestyler/FreestylerAgent.test.ts +108 -100
- package/front_end/panels/freestyler/FreestylerAgent.ts +65 -183
- package/front_end/panels/freestyler/FreestylerEvaluateAction.test.ts +40 -36
- package/front_end/panels/freestyler/FreestylerEvaluateAction.ts +15 -14
- package/front_end/panels/freestyler/FreestylerPanel.test.ts +548 -15
- package/front_end/panels/freestyler/FreestylerPanel.ts +385 -132
- package/front_end/panels/freestyler/components/FreestylerChatUi.test.ts +34 -4
- package/front_end/panels/freestyler/components/FreestylerChatUi.ts +186 -92
- package/front_end/panels/freestyler/components/UserActionRow.test.ts +60 -0
- package/front_end/panels/freestyler/components/{ProvideFeedback.ts → UserActionRow.ts} +42 -16
- package/front_end/panels/freestyler/components/freestylerChatUi.css +100 -97
- package/front_end/panels/freestyler/components/userActionRow.css +149 -0
- package/front_end/panels/freestyler/freestyler-meta.ts +50 -23
- package/front_end/panels/freestyler/freestyler.ts +1 -1
- package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +14 -0
- package/front_end/panels/issues/IssueAggregator.ts +10 -1
- package/front_end/panels/issues/components/ElementsPanelLink.ts +0 -1
- package/front_end/panels/issues/components/HideIssuesMenu.ts +12 -4
- package/front_end/panels/lighthouse/LighthouseStartView.ts +1 -1
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +2 -2
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +1 -2
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +7 -12
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +3 -4
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +1 -2
- package/front_end/panels/network/BinaryResourceView.ts +3 -2
- package/front_end/panels/network/NetworkDataGridNode.test.ts +29 -0
- package/front_end/panels/network/NetworkDataGridNode.ts +56 -5
- package/front_end/panels/network/NetworkLogView.test.ts +29 -0
- package/front_end/panels/network/NetworkLogView.ts +2 -2
- package/front_end/panels/network/NetworkPanel.test.ts +3 -22
- package/front_end/panels/network/NetworkPanel.ts +26 -7
- package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -0
- package/front_end/panels/network/RequestResponseView.test.ts +2 -2
- package/front_end/panels/network/RequestResponseView.ts +6 -10
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +3 -1
- package/front_end/panels/network/components/HeaderSectionRow.ts +11 -12
- package/front_end/panels/network/components/RequestHeaderSection.ts +4 -9
- package/front_end/panels/network/components/RequestHeadersView.css +7 -0
- package/front_end/panels/network/components/RequestTrustTokensView.ts +1 -1
- package/front_end/panels/network/network.ts +0 -2
- package/front_end/panels/network/networkConfigView.css +8 -7
- package/front_end/panels/network/networkLogView.css +32 -2
- package/front_end/panels/network/networkPanel.css +2 -1
- package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +11 -10
- package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +12 -8
- package/front_end/panels/profiler/HeapSnapshotProxy.ts +6 -6
- package/front_end/panels/protocol_monitor/components/JSONEditor.ts +5 -5
- package/front_end/panels/recorder/components/StartView.ts +4 -5
- package/front_end/panels/recorder/components/recordingView.css +1 -4
- package/front_end/panels/recorder/components/selectButton.css +6 -50
- package/front_end/panels/recorder/models/RecorderShortcutHelper.ts +1 -1
- package/front_end/panels/recorder/models/RecordingSession.ts +4 -4
- package/front_end/panels/recorder/recorderController.css +38 -18
- package/front_end/panels/screencast/ScreencastApp.ts +1 -1
- package/front_end/panels/screencast/ScreencastView.ts +1 -1
- package/front_end/panels/search/SearchView.ts +0 -2
- package/front_end/panels/search/searchView.css +5 -1
- package/front_end/panels/security/CookieReportTreeElement.ts +26 -0
- package/front_end/panels/security/OriginTreeElement.ts +20 -7
- package/front_end/panels/security/SecurityPanel.ts +64 -15
- package/front_end/panels/security/{SecurityAndPrivacyPanelSidebar.ts → SecurityPanelSidebar.ts} +24 -13
- package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +1 -12
- package/front_end/panels/security/sidebar.css +40 -1
- package/front_end/panels/sensors/SensorsView.ts +27 -0
- package/front_end/panels/sensors/sensors-meta.ts +59 -0
- package/front_end/panels/settings/AISettingsTab.test.ts +79 -11
- package/front_end/panels/settings/AISettingsTab.ts +109 -22
- package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +44 -30
- package/front_end/panels/settings/KeybindsSettingsTab.ts +34 -17
- package/front_end/panels/settings/SettingsScreen.ts +1 -1
- package/front_end/panels/settings/aiSettingsTab.css +13 -0
- package/front_end/panels/settings/components/SyncSection.ts +1 -3
- package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +51 -29
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +24 -12
- package/front_end/panels/settings/emulation/devicesSettingsTab.css +11 -10
- package/front_end/panels/settings/frameworkIgnoreListSettingsTab.css +14 -42
- package/front_end/panels/settings/keybindsSettingsTab.css +51 -89
- package/front_end/panels/settings/settingsScreen.css +30 -6
- package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -1
- package/front_end/panels/sources/CSSPlugin.ts +0 -2
- package/front_end/panels/sources/NavigatorView.ts +31 -23
- package/front_end/panels/sources/SourcesPanel.ts +25 -6
- package/front_end/panels/sources/SourcesView.test.ts +1 -0
- package/front_end/panels/sources/SourcesView.ts +2 -2
- package/front_end/panels/sources/components/BreakpointsView.ts +0 -1
- package/front_end/panels/sources/components/HeadersView.ts +0 -1
- package/front_end/panels/sources/navigatorTree.css +11 -0
- package/front_end/panels/timeline/AnnotationHelpers.ts +3 -3
- package/front_end/panels/timeline/AppenderUtils.ts +1 -3
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +21 -9
- package/front_end/panels/timeline/EntriesFilter.test.ts +19 -36
- package/front_end/panels/timeline/EntriesFilter.ts +6 -4
- package/front_end/panels/timeline/EventsTimelineTreeView.ts +9 -9
- package/front_end/panels/timeline/InteractionsTrackAppender.ts +2 -1
- package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +6 -6
- package/front_end/panels/timeline/NetworkTrackAppender.ts +1 -8
- package/front_end/panels/timeline/ThreadAppender.ts +5 -6
- package/front_end/panels/timeline/TimelineDetailsView.test.ts +85 -42
- package/front_end/panels/timeline/TimelineDetailsView.ts +71 -42
- package/front_end/panels/timeline/TimelineEventOverview.ts +10 -10
- package/front_end/panels/timeline/TimelineFilters.test.ts +4 -4
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +58 -62
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +16 -15
- package/front_end/panels/timeline/TimelineFlameChartView.test.ts +2 -3
- package/front_end/panels/timeline/TimelineFlameChartView.ts +102 -57
- package/front_end/panels/timeline/TimelineHistoryManager.ts +4 -0
- package/front_end/panels/timeline/TimelineMiniMap.ts +0 -8
- package/front_end/panels/timeline/TimelinePanel.ts +89 -44
- package/front_end/panels/timeline/TimelineSelection.test.ts +91 -36
- package/front_end/panels/timeline/TimelineSelection.ts +48 -60
- package/front_end/panels/timeline/TimelineSelectorStatsView.ts +3 -8
- package/front_end/panels/timeline/TimelineTreeView.ts +7 -5
- package/front_end/panels/timeline/TimelineUIUtils.test.ts +51 -4
- package/front_end/panels/timeline/TimelineUIUtils.ts +37 -27
- package/front_end/panels/timeline/UIDevtoolsController.ts +5 -5
- package/front_end/panels/timeline/UIDevtoolsUtils.ts +59 -68
- package/front_end/panels/timeline/components/BreadcrumbsUI.ts +2 -3
- package/front_end/panels/timeline/components/LayoutShiftDetails.ts +25 -8
- package/front_end/panels/timeline/components/LiveMetricsView.test.ts +230 -68
- package/front_end/panels/timeline/components/LiveMetricsView.ts +146 -112
- package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +14 -7
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +47 -117
- package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +64 -74
- package/front_end/panels/timeline/components/Sidebar.ts +2 -1
- package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +11 -13
- package/front_end/panels/timeline/components/SidebarInsightsTab.ts +51 -2
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +1 -2
- package/front_end/panels/timeline/components/Utils.ts +28 -29
- package/front_end/panels/timeline/components/components.ts +0 -4
- package/front_end/panels/timeline/components/insights/CLSCulprits.ts +10 -3
- package/front_end/panels/timeline/components/insights/DocumentLatency.ts +8 -4
- package/front_end/panels/timeline/components/insights/EventRef.ts +0 -1
- package/front_end/panels/timeline/components/insights/FontDisplay.ts +1 -1
- package/front_end/panels/timeline/components/insights/Helpers.ts +4 -4
- package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +3 -5
- package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +1 -1
- package/front_end/panels/timeline/components/insights/LCPPhases.ts +7 -1
- package/front_end/panels/timeline/components/insights/NodeLink.ts +0 -1
- package/front_end/panels/timeline/components/insights/README.md +2 -2
- package/front_end/panels/timeline/components/insights/RenderBlocking.ts +5 -7
- package/front_end/panels/timeline/components/insights/SidebarInsight.ts +14 -5
- package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +112 -34
- package/front_end/panels/timeline/components/insights/Table.ts +1 -3
- package/front_end/panels/timeline/components/insights/ThirdParties.ts +6 -9
- package/front_end/panels/timeline/components/insights/Viewport.ts +3 -5
- package/front_end/panels/timeline/components/layoutShiftDetails.css +7 -1
- package/front_end/panels/timeline/components/liveMetricsView.css +59 -18
- package/front_end/panels/timeline/components/networkRequestDetails.css +9 -49
- package/front_end/panels/timeline/components/networkRequestTooltip.css +34 -11
- package/front_end/panels/timeline/components/relatedInsightChips.css +1 -1
- package/front_end/panels/timeline/components/sidebarInsightsTab.css +20 -0
- package/front_end/panels/timeline/extensions/ExtensionUI.ts +7 -7
- package/front_end/panels/timeline/fixtures/traces/README.md +4 -0
- package/front_end/panels/timeline/fixtures/traces/scheduler-post-task.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/unsized-images.json.gz +0 -0
- package/front_end/panels/timeline/historyToolbarButton.css +33 -19
- package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +0 -16
- package/front_end/panels/timeline/overlays/OverlaysImpl.ts +48 -22
- package/front_end/panels/timeline/overlays/components/entriesLinkOverlay.css +8 -0
- package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +16 -0
- package/front_end/panels/timeline/timeline-meta.ts +11 -0
- package/front_end/panels/timeline/timelineFlameChartView.css +16 -0
- package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +2 -3
- package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +1 -6
- package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +1 -1
- package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +7 -8
- package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +2 -2
- package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +3 -3
- package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +3 -4
- package/front_end/panels/timeline/track_appenders/ServerTimingsTrackAppender.test.ts +2 -3
- package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +5 -10
- package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +5 -5
- package/front_end/panels/timeline/utils/AICallTree.test.ts +80 -0
- package/front_end/panels/timeline/utils/AICallTree.ts +165 -0
- package/front_end/panels/timeline/{components → utils}/EntryName.test.ts +12 -12
- package/front_end/panels/timeline/{components → utils}/EntryName.ts +1 -1
- package/front_end/panels/timeline/{components → utils}/EntryStyles.ts +28 -1
- package/front_end/panels/timeline/utils/Helpers.test.ts +8 -3
- package/front_end/panels/timeline/utils/Helpers.ts +3 -4
- package/front_end/panels/timeline/utils/IgnoreList.test.ts +86 -0
- package/front_end/panels/timeline/utils/IgnoreList.ts +11 -4
- package/front_end/panels/timeline/utils/NetworkRequest.ts +1 -1
- package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +51 -18
- package/front_end/panels/timeline/utils/SourceMapsResolver.ts +3 -1
- package/front_end/panels/timeline/utils/utils.ts +6 -0
- package/front_end/panels/utils/utils.ts +56 -4
- package/front_end/services/trace_bounds/TraceBounds.ts +7 -1
- package/front_end/testing/ContextMenuHelpers.ts +1 -1
- package/front_end/testing/EnvironmentHelpers.ts +25 -3
- package/front_end/testing/NetworkHelpers.ts +38 -0
- package/front_end/testing/StorageItemsViewHelpers.ts +24 -0
- package/front_end/testing/TraceHelpers.ts +10 -0
- package/front_end/third_party/additional_readme_paths.json +1 -0
- package/front_end/third_party/codemirror.next/chunk/angular.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/angular.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/legacy.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/less.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/php.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/sass.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/vue.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/vue.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js.map +1 -1
- package/front_end/third_party/codemirror.next/codemirror.next.d.ts +68 -3
- package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
- package/front_end/third_party/codemirror.next/package.json +2 -1
- package/front_end/third_party/intl-messageformat/README.chromium +2 -1
- package/front_end/third_party/intl-messageformat/package/intl-messageformat.esm.js +0 -1
- package/front_end/third_party/json5/LICENSE +23 -0
- package/front_end/third_party/json5/README.chromium +17 -0
- package/front_end/third_party/json5/json5-tsconfig.json +8 -0
- package/front_end/third_party/json5/json5.ts +4 -0
- package/front_end/third_party/json5/lib/index.d.ts +2 -0
- package/front_end/third_party/json5/lib/index.js +1121 -0
- package/front_end/third_party/json5/package/lib/index.d.ts +4 -0
- package/front_end/third_party/json5/package/lib/index.js +9 -0
- package/front_end/third_party/json5/package/lib/parse.d.ts +15 -0
- package/front_end/third_party/json5/package/lib/parse.js +1114 -0
- package/front_end/third_party/json5/package/lib/register.js +13 -0
- package/front_end/third_party/json5/package/lib/require.js +4 -0
- package/front_end/third_party/json5/package/lib/stringify.d.ts +89 -0
- package/front_end/third_party/json5/package/lib/stringify.js +261 -0
- package/front_end/third_party/json5/package/lib/unicode.d.ts +3 -0
- package/front_end/third_party/json5/package/lib/unicode.js +4 -0
- package/front_end/third_party/json5/package/lib/util.d.ts +5 -0
- package/front_end/third_party/json5/package/lib/util.js +35 -0
- package/front_end/third_party/json5/package.json +8 -0
- package/front_end/third_party/json5/rebuild.sh +5 -0
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +2 -2
- 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 +1 -6
- 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/BrowserContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.js +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.js +18 -11
- 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 +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js +13 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts +7 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.js +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPResponse.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/JSHandle.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/JSHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +22 -22
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js +26 -19
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js +1 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js +4 -0
- 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/BrowserConnector.js +1 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +12 -5
- 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 +3 -0
- 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.js +21 -10
- 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 +12 -5
- 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/Browser.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.js +2 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js +3 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Binding.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Binding.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts +0 -1
- 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/BrowserConnector.js +1 -2
- 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/BrowserContext.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts +3 -3
- 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 +17 -13
- 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/ExtensionTransport.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.js +5 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.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/HTTPResponse.js +1 -1
- 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/Input.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.d.ts +1 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.d.ts.map +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/JSHandle.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/JSHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts +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 +16 -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/PredefinedNetworkConditions.d.ts +4 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js +4 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +2 -0
- 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 +2 -0
- 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/cdp/utils.js +6 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/utils.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js +1 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CSSQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +3 -0
- 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/Debug.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js +4 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js +1 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HandleIterator.js +13 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HandleIterator.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LazyArg.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LazyArg.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PSelectorParser.js +1 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PSelectorParser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PierceQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts +7 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js +0 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts +2 -3
- 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 +14 -12
- 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/environment.d.ts +0 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.d.ts.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.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/ARIAQuerySelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/CSSSelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/TextQuerySelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/XPathQuerySelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +4 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/util.js +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/util.js.map +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.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js +3 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util/fs.js +2 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util/fs.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts +6 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js +15 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js.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/Deferred.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.js +4 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.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/cjs/puppeteer/util/Mutex.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.js +18 -13
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js +4 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +374 -578
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +316 -150
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +2 -2
- 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 +1 -6
- 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/BrowserContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.js +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.js +16 -9
- 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 +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js +13 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts +7 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPResponse.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/JSHandle.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/JSHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +22 -22
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js +24 -17
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js +4 -0
- 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/BrowserContext.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +12 -5
- 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 +3 -0
- 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.js +21 -10
- 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 +12 -5
- 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/Browser.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js +3 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Binding.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Binding.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts +0 -1
- 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/BrowserContext.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts +3 -3
- 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 +17 -13
- 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/ExtensionTransport.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.js +5 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.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/HTTPResponse.js +1 -1
- 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/Input.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.d.ts +1 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.d.ts.map +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/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts +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 +16 -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/PredefinedNetworkConditions.d.ts +4 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js +4 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +2 -0
- 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 +2 -0
- 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/CSSQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +3 -0
- 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/Debug.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HandleIterator.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HandleIterator.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LazyArg.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LazyArg.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PierceQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js +12 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts +7 -7
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js +0 -7
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts +2 -3
- 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 +3 -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/environment.d.ts +0 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts.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.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/ARIAQuerySelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/CSSSelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/TextQuerySelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/XPathQuerySelector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts.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.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core-browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core-browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts +6 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.js +3 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.js.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/esm/puppeteer/util/Deferred.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/ErrorLike.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/ErrorLike.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Function.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Mutex.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Mutex.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.js +12 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +374 -578
- package/front_end/third_party/puppeteer/package/package.json +6 -6
- package/front_end/third_party/puppeteer/package/src/api/Browser.ts +8 -8
- package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/api/CDPSession.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/api/Dialog.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +44 -44
- package/front_end/third_party/puppeteer/package/src/api/Frame.ts +33 -33
- package/front_end/third_party/puppeteer/package/src/api/HTTPRequest.ts +14 -9
- package/front_end/third_party/puppeteer/package/src/api/Input.ts +11 -11
- package/front_end/third_party/puppeteer/package/src/api/JSHandle.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/api/Page.ts +88 -87
- package/front_end/third_party/puppeteer/package/src/api/Realm.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/api/WebWorker.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/api/api.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/api/locators/locators.ts +79 -79
- package/front_end/third_party/puppeteer/package/src/bidi/BidiOverCdp.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +9 -5
- package/front_end/third_party/puppeteer/package/src/bidi/BrowserConnector.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +10 -10
- package/front_end/third_party/puppeteer/package/src/bidi/CDPSession.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +6 -6
- package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +11 -11
- package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +45 -41
- package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +9 -9
- package/front_end/third_party/puppeteer/package/src/bidi/HTTPResponse.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/bidi/Input.ts +10 -10
- package/front_end/third_party/puppeteer/package/src/bidi/JSHandle.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +56 -52
- package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +15 -15
- package/front_end/third_party/puppeteer/package/src/bidi/Serializer.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/Target.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/bidi/WebWorker.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/bidi/core/Browser.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +17 -17
- package/front_end/third_party/puppeteer/package/src/bidi/core/Connection.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/Navigation.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +6 -6
- package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/bidi/core/Session.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/bidi/core/UserContext.ts +9 -9
- package/front_end/third_party/puppeteer/package/src/bidi/core/UserPrompt.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/bidi/core/core.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/util.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/cdp/AriaQueryHandler.ts +10 -6
- package/front_end/third_party/puppeteer/package/src/cdp/Binding.ts +6 -6
- package/front_end/third_party/puppeteer/package/src/cdp/Browser.ts +24 -24
- package/front_end/third_party/puppeteer/package/src/cdp/BrowserConnector.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/cdp/BrowserContext.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/cdp/CDPSession.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/cdp/ChromeTargetManager.ts +19 -17
- package/front_end/third_party/puppeteer/package/src/cdp/Connection.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/cdp/Coverage.ts +11 -11
- package/front_end/third_party/puppeteer/package/src/cdp/DeviceRequestPrompt.ts +17 -17
- package/front_end/third_party/puppeteer/package/src/cdp/Dialog.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/ElementHandle.ts +6 -6
- package/front_end/third_party/puppeteer/package/src/cdp/EmulationManager.ts +34 -34
- package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +18 -19
- package/front_end/third_party/puppeteer/package/src/cdp/ExtensionTransport.ts +7 -3
- package/front_end/third_party/puppeteer/package/src/cdp/FirefoxTargetManager.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +16 -16
- package/front_end/third_party/puppeteer/package/src/cdp/FrameManager.ts +20 -20
- package/front_end/third_party/puppeteer/package/src/cdp/FrameManagerEvents.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/cdp/HTTPResponse.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/cdp/Input.ts +16 -14
- package/front_end/third_party/puppeteer/package/src/cdp/IsolatedWorld.ts +14 -13
- package/front_end/third_party/puppeteer/package/src/cdp/JSHandle.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/cdp/LifecycleWatcher.ts +11 -11
- package/front_end/third_party/puppeteer/package/src/cdp/NetworkEventManager.ts +15 -15
- package/front_end/third_party/puppeteer/package/src/cdp/NetworkManager.ts +38 -37
- package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +71 -70
- package/front_end/third_party/puppeteer/package/src/cdp/PredefinedNetworkConditions.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/cdp/Target.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/cdp/TargetManager.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Tracing.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/cdp/WebWorker.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +2 -0
- package/front_end/third_party/puppeteer/package/src/cdp/utils.ts +10 -10
- package/front_end/third_party/puppeteer/package/src/common/BrowserConnector.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/common/CSSQueryHandler.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/common/CallbackRegistry.ts +9 -7
- package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +3 -0
- package/front_end/third_party/puppeteer/package/src/common/ConsoleMessage.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/common/CustomQueryHandler.ts +6 -6
- package/front_end/third_party/puppeteer/package/src/common/Debug.ts +0 -1
- package/front_end/third_party/puppeteer/package/src/common/EventEmitter.ts +8 -8
- package/front_end/third_party/puppeteer/package/src/common/FileChooser.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/common/HandleIterator.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/common/LazyArg.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/common/NetworkManagerEvents.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/common/PQueryHandler.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/common/PSelectorParser.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/common/PierceQueryHandler.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/common/Puppeteer.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/common/QueryHandler.ts +12 -12
- package/front_end/third_party/puppeteer/package/src/common/TaskQueue.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/common/TextQueryHandler.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/common/WaitTask.ts +8 -8
- package/front_end/third_party/puppeteer/package/src/common/XPathQueryHandler.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/common/common.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/common/util.ts +15 -14
- package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/injected/ARIAQuerySelector.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/injected/CSSSelector.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/injected/PQuerySelector.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/injected/PierceQuerySelector.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/injected/TextContent.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/injected/TextQuerySelector.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/injected/XPathQuerySelector.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/injected/util.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +38 -30
- package/front_end/third_party/puppeteer/package/src/node/ChromeLauncher.ts +11 -12
- package/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts +8 -8
- package/front_end/third_party/puppeteer/package/src/node/NodeWebSocketTransport.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/node/PipeTransport.ts +7 -3
- package/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/node/ScreenRecorder.ts +10 -10
- package/front_end/third_party/puppeteer/package/src/node/node.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/puppeteer-core.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/util/AsyncIterableUtil.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/util/Deferred.ts +3 -2
- package/front_end/third_party/puppeteer/package/src/util/ErrorLike.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/util/Function.ts +4 -4
- package/front_end/third_party/puppeteer/package/src/util/Mutex.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/util/assert.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/util/decorators.ts +8 -9
- package/front_end/third_party/puppeteer/package/src/util/encoding.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/util/util.ts +1 -0
- package/front_end/third_party/web-vitals/README.chromium +3 -3
- package/front_end/third_party/web-vitals/package/README.md +36 -23
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.d.ts +2 -1
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +11 -13
- package/front_end/third_party/web-vitals/package/dist/modules/lib/bindReporter.d.ts +2 -22
- package/front_end/third_party/web-vitals/package/dist/modules/lib/initMetric.d.ts +3 -2
- package/front_end/third_party/web-vitals/package/dist/modules/lib/interactions.js +1 -1
- package/front_end/third_party/web-vitals/package/dist/modules/onLCP.js +4 -1
- package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.iife.js +1 -1
- package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.js +1 -1
- package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.umd.cjs +1 -1
- package/front_end/third_party/web-vitals/package/dist/web-vitals.iife.js +1 -1
- package/front_end/third_party/web-vitals/package/dist/web-vitals.js +1 -1
- package/front_end/third_party/web-vitals/package/dist/web-vitals.umd.cjs +1 -1
- package/front_end/third_party/web-vitals/package/package.json +1 -1
- package/front_end/third_party/web-vitals/package/src/attribution/onINP.ts +11 -14
- package/front_end/third_party/web-vitals/package/src/lib/interactions.ts +1 -1
- package/front_end/third_party/web-vitals/package/src/onLCP.ts +4 -1
- package/front_end/third_party/web-vitals/rebuild.sh +14 -0
- package/front_end/third_party/web-vitals/web-vitals.ts +2 -0
- package/front_end/ui/components/adorners/Adorner.ts +0 -1
- package/front_end/ui/components/buttons/Button.ts +0 -1
- package/front_end/ui/components/buttons/button.css +1 -0
- package/front_end/ui/components/cards/Card.test.ts +31 -5
- package/front_end/ui/components/cards/Card.ts +22 -3
- package/front_end/ui/components/cards/card.css +25 -7
- package/front_end/ui/components/chrome_link/ChromeLink.ts +0 -1
- package/front_end/ui/components/data_grid/DataGrid.ts +0 -1
- package/front_end/ui/components/data_grid/DataGridController.ts +2 -3
- package/front_end/ui/components/data_grid/DataGridControllerIntegrator.ts +1 -2
- package/front_end/ui/components/dialogs/Dialog.ts +0 -1
- package/front_end/ui/components/dialogs/IconDialog.ts +9 -11
- package/front_end/ui/components/dialogs/ShortcutDialog.ts +3 -4
- package/front_end/ui/components/diff_view/DiffView.ts +0 -1
- package/front_end/ui/components/docs/building-ui-documentation/ComponentPerformance.md +1 -4
- package/front_end/ui/components/docs/building-ui-documentation/CreatingComponents.md +14 -44
- package/front_end/ui/components/docs/freestyler/basic.ts +2 -3
- package/front_end/ui/components/docs/freestyler/empty_state.ts +2 -2
- package/front_end/ui/components/docs/icon_dialog/basic.ts +4 -4
- package/front_end/ui/components/docs/performance_panel/basic.ts +4 -1
- package/front_end/ui/components/docs/report/basic.ts +3 -3
- package/front_end/ui/components/expandable_list/ExpandableList.ts +0 -1
- package/front_end/ui/components/floating_button/FloatingButton.ts +0 -1
- package/front_end/ui/components/icon_button/FileSourceIcon.test.ts +32 -0
- package/front_end/ui/components/icon_button/FileSourceIcon.ts +76 -0
- package/front_end/ui/components/icon_button/Icon.ts +0 -3
- package/front_end/ui/components/icon_button/IconButton.ts +0 -1
- package/front_end/ui/components/icon_button/fileSourceIcon.css +43 -0
- package/front_end/ui/components/icon_button/icon_button.ts +2 -0
- package/front_end/ui/components/issue_counter/IssueCounter.ts +1 -3
- package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +0 -1
- package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -1
- package/front_end/ui/components/linkifier/LinkifierImpl.ts +4 -2
- package/front_end/ui/components/markdown_view/CodeBlock.ts +0 -1
- package/front_end/ui/components/markdown_view/MarkdownImage.ts +0 -1
- package/front_end/ui/components/markdown_view/MarkdownLink.ts +0 -1
- package/front_end/ui/components/markdown_view/MarkdownView.ts +10 -7
- package/front_end/ui/components/menus/Menu.ts +0 -3
- package/front_end/ui/components/menus/SelectMenu.ts +0 -2
- package/front_end/ui/components/menus/selectMenu.css +8 -5
- package/front_end/ui/components/menus/selectMenuButton.css +29 -17
- package/front_end/ui/components/node_text/NodeText.ts +0 -1
- package/front_end/ui/components/panel_feedback/FeedbackButton.ts +0 -1
- package/front_end/ui/components/panel_feedback/PanelFeedback.ts +1 -3
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +1 -3
- package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +0 -1
- package/front_end/ui/components/report_view/ReportView.ts +1 -7
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +0 -1
- package/front_end/ui/components/settings/SettingCheckbox.ts +28 -10
- package/front_end/ui/components/settings/SettingDeprecationWarning.ts +2 -4
- package/front_end/ui/components/settings/settingCheckbox.css +1 -0
- package/front_end/ui/components/spinners/Spinner.ts +0 -1
- package/front_end/ui/components/spinners/spinner.css +1 -0
- package/front_end/ui/components/split_view/SplitView.ts +0 -1
- package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +0 -1
- package/front_end/ui/components/survey_link/SurveyLink.ts +1 -3
- package/front_end/ui/components/switch/SwitchImpl.ts +0 -1
- package/front_end/ui/components/text_editor/TextEditor.ts +0 -2
- package/front_end/ui/components/text_prompt/TextPrompt.ts +0 -1
- package/front_end/ui/components/tree_outline/TreeOutline.ts +0 -1
- package/front_end/ui/components/two_states_counter/TwoStatesCounter.ts +0 -1
- package/front_end/ui/legacy/ContextMenu.ts +46 -7
- package/front_end/ui/legacy/FilterBar.test.ts +52 -0
- package/front_end/ui/legacy/FilterBar.ts +46 -1
- package/front_end/ui/legacy/KeyboardShortcut.ts +35 -21
- package/front_end/ui/legacy/Panel.ts +2 -2
- package/front_end/ui/legacy/ShortcutRegistry.ts +10 -7
- package/front_end/ui/legacy/SoftContextMenu.ts +3 -0
- package/front_end/ui/legacy/ThrottledWidget.ts +2 -2
- package/front_end/ui/legacy/Toolbar.ts +1 -0
- package/front_end/ui/legacy/Treeoutline.ts +7 -4
- package/front_end/ui/legacy/UIUtils.ts +9 -0
- package/front_end/ui/legacy/View.ts +2 -2
- package/front_end/ui/legacy/ViewManager.ts +2 -1
- package/front_end/ui/legacy/Widget.ts +4 -4
- package/front_end/ui/legacy/components/data_grid/DataGrid.test.ts +51 -0
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +92 -6
- package/front_end/ui/legacy/components/data_grid/dataGrid.css +8 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +4 -7
- package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +0 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +0 -1
- package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +0 -1
- package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +0 -1
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +0 -1
- package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +0 -3
- package/front_end/ui/legacy/components/inline_editor/Swatches.ts +1 -2
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +2 -2
- package/front_end/ui/legacy/components/perf_ui/CanvasHelper.ts +1 -83
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +3 -2
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +162 -57
- package/front_end/ui/legacy/components/perf_ui/PieChart.ts +0 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +3 -3
- package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +5 -9
- package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +9 -60
- package/front_end/ui/legacy/components/source_frame/SourceFrame.test.ts +18 -0
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +20 -3
- package/front_end/{panels/network/RequestBinaryResponseView.test.ts → ui/legacy/components/source_frame/StreamingContentHexView.test.ts} +12 -12
- package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +122 -0
- package/front_end/ui/legacy/components/source_frame/source_frame.ts +2 -0
- package/front_end/ui/legacy/designTokens.css +46 -40
- package/front_end/ui/legacy/filter.css +23 -8
- package/front_end/ui/legacy/inspectorCommon.css +31 -29
- package/front_end/ui/legacy/searchableView.css +4 -3
- package/front_end/ui/legacy/softDropDownButton.css +10 -6
- package/front_end/ui/legacy/tabbedPane.css +1 -1
- package/front_end/ui/legacy/toolbar.css +38 -18
- package/front_end/ui/visual_logging/KnownContextValues.ts +67 -1
- package/front_end/ui/visual_logging/LoggingDriver.test.ts +53 -6
- package/front_end/ui/visual_logging/LoggingDriver.ts +8 -5
- package/front_end/ui/visual_logging/LoggingEvents.test.ts +5 -1
- package/front_end/ui/visual_logging/LoggingEvents.ts +1 -1
- package/front_end/ui/visual_logging/LoggingState.ts +1 -1
- package/package.json +5 -6
- package/scripts/build/esbuild.js +3 -1
- package/scripts/devtools_paths.js +11 -1
- package/scripts/eslint_rules/lib/check_test_definitions.js +1 -1
- package/scripts/eslint_rules/tests/check_test_definitions_test.js +10 -0
- package/tsconfig.json +11 -1
- package/docs/add_uma_metrics.md +0 -41
- package/docs/uma_metrics.md +0 -23
- package/front_end/panels/animation/AnimationDOMNode.ts +0 -268
- package/front_end/panels/freestyler/components/ProvideFeedback.test.ts +0 -29
- package/front_end/panels/freestyler/components/provideFeedback.css +0 -60
- package/front_end/panels/network/RequestBinaryResponseView.ts +0 -67
- package/scripts/eslint_rules/lib/lit_html_data_as_type.js +0 -83
- package/scripts/eslint_rules/tests/lit_html_data_as_type_test.js +0 -81
@@ -215,6 +215,9 @@
|
|
215
215
|
"core/i18n/time-utilities.ts | fms": {
|
216
216
|
"message": "{PH1} ಮಿ.ಸೆ"
|
217
217
|
},
|
218
|
+
"core/i18n/time-utilities.ts | fmsExpanded": {
|
219
|
+
"message": "{PH1} ಮಿಲಿಸೆಕೆಂಡ್ಗಳು"
|
220
|
+
},
|
218
221
|
"core/i18n/time-utilities.ts | fs": {
|
219
222
|
"message": "{PH1} ಸೆ"
|
220
223
|
},
|
@@ -549,7 +552,7 @@
|
|
549
552
|
"message": "AVIF ಫಾರ್ಮ್ಯಾಟ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
550
553
|
},
|
551
554
|
"core/sdk/sdk-meta.ts | disableCache": {
|
552
|
-
"message": "ಕ್ಯಾಷ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ
|
555
|
+
"message": "DevTools ತೆರೆದಿರುವಾಗ ಕ್ಯಾಷ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
553
556
|
},
|
554
557
|
"core/sdk/sdk-meta.ts | disableJavascript": {
|
555
558
|
"message": "JavaScript ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
@@ -968,6 +971,9 @@
|
|
968
971
|
"entrypoints/main/main-meta.ts | auto": {
|
969
972
|
"message": "ಸ್ವಯಂಚಾಲಿತ"
|
970
973
|
},
|
974
|
+
"entrypoints/main/main-meta.ts | autoTheme": {
|
975
|
+
"message": "ಸ್ವಯಂ"
|
976
|
+
},
|
971
977
|
"entrypoints/main/main-meta.ts | bottom": {
|
972
978
|
"message": "ಕೆಳಭಾಗ"
|
973
979
|
},
|
@@ -995,6 +1001,9 @@
|
|
995
1001
|
"entrypoints/main/main-meta.ts | dockToRight": {
|
996
1002
|
"message": "ಬಲಬದಿಗೆ ಡಾಕ್ ಮಾಡಿ"
|
997
1003
|
},
|
1004
|
+
"entrypoints/main/main-meta.ts | dontMatchChromeColorSchemeCommand": {
|
1005
|
+
"message": "Chrome ಕಲರ್ ಸ್ಕೀಮ್ಗೆ ಹೊಂದಾಣಿಕೆಯಾಗುವುದಿಲ್ಲ"
|
1006
|
+
},
|
998
1007
|
"entrypoints/main/main-meta.ts | enableCtrlShortcutToSwitchPanels": {
|
999
1008
|
"message": "ಪ್ಯಾನೆಲ್ಗಳನ್ನು ಬದಲಿಸಲು Ctrl + 1-9 ಶಾರ್ಟ್ಕಟ್ ಸಕ್ರಿಯಗೊಳಿಸಿ"
|
1000
1009
|
},
|
@@ -1031,6 +1040,9 @@
|
|
1031
1040
|
"entrypoints/main/main-meta.ts | matchChromeColorScheme": {
|
1032
1041
|
"message": "Chrome ಕಲರ್ ಸ್ಕೀಮ್ ಅನ್ನು ಹೊಂದಾಣಿಕೆ ಮಾಡಿ"
|
1033
1042
|
},
|
1043
|
+
"entrypoints/main/main-meta.ts | matchChromeColorSchemeCommand": {
|
1044
|
+
"message": "Chrome ಕಲರ್ ಸ್ಕೀಮ್ ಅನ್ನು ಹೊಂದಾಣಿಕೆ ಮಾಡಿ"
|
1045
|
+
},
|
1034
1046
|
"entrypoints/main/main-meta.ts | matchChromeColorSchemeDocumentation": {
|
1035
1047
|
"message": "DevTools ಬಣ್ಣಗಳನ್ನು, ಕಸ್ಟಮೈಸ್ ಮಾಡಲಾದ ನಿಮ್ಮ Chrome ಥೀಮ್ನೊಂದಿಗೆ ಹೊಂದಾಣಿಕೆ ಮಾಡಿ (ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದಾಗ)"
|
1036
1048
|
},
|
@@ -1067,6 +1079,9 @@
|
|
1067
1079
|
"entrypoints/main/main-meta.ts | searchOnEnterCommand": {
|
1068
1080
|
"message": "ನೀವು ಟೈಪ್ ಮಾಡುತ್ತಿರುವಂತೆಯೇ ಹುಡುಕಾಟವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ (ಹುಡುಕಲು Enter ಒತ್ತಿರಿ)"
|
1069
1081
|
},
|
1082
|
+
"entrypoints/main/main-meta.ts | switchToBrowserPreferredTheme": {
|
1083
|
+
"message": "ಬ್ರೌಸರ್ನ ಆದ್ಯತೆಯ ಥೀಮ್ಗೆ ಬದಲಿಸಿ"
|
1084
|
+
},
|
1070
1085
|
"entrypoints/main/main-meta.ts | switchToDarkTheme": {
|
1071
1086
|
"message": "ಡಾರ್ಕ್ ಥೀಮ್ಗೆ ಬದಲಿಸಿ"
|
1072
1087
|
},
|
@@ -1349,6 +1364,9 @@
|
|
1349
1364
|
"models/bindings/DebuggerLanguagePlugins.ts | loadingDebugSymbolsForVia": {
|
1350
1365
|
"message": "[{PH1}] {PH2} ಗಾಗಿ ({PH3} ಮೂಲಕ) ಡೀಬಗ್ ಸಂಕೇತಗಳನ್ನು ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
1351
1366
|
},
|
1367
|
+
"models/bindings/IgnoreListManager.ts | addAllAnonymousScriptsToIgnoreList": {
|
1368
|
+
"message": "ನಿರ್ಲಕ್ಷಿಸಬೇಕಾದವುಗಳ ಪಟ್ಟಿಗೆ ಎಲ್ಲಾ ಅನಾಮಧೇಯ ಸ್ಕ್ರಿಪ್ಟ್ಗಳನ್ನು ಸೇರಿಸಿ"
|
1369
|
+
},
|
1352
1370
|
"models/bindings/IgnoreListManager.ts | addAllContentScriptsToIgnoreList": {
|
1353
1371
|
"message": "ನಿರ್ಲಕ್ಷಿಸಬೇಕಾದವುಗಳ ಪಟ್ಟಿಗೆ ಎಲ್ಲಾ ವಿಸ್ತರಣೆ ಸ್ಕ್ರಿಪ್ಟ್ಗಳನ್ನು ಸೇರಿಸಿ"
|
1354
1372
|
},
|
@@ -2453,6 +2471,21 @@
|
|
2453
2471
|
"panels/application/ApplicationPanelSidebar.ts | documentNotAvailable": {
|
2454
2472
|
"message": "ಡಾಕ್ಯುಮೆಂಟ್ ಲಭ್ಯವಿಲ್ಲ"
|
2455
2473
|
},
|
2474
|
+
"panels/application/ApplicationPanelSidebar.ts | extensionLocalStorage": {
|
2475
|
+
"message": "ಸ್ಥಳೀಯ"
|
2476
|
+
},
|
2477
|
+
"panels/application/ApplicationPanelSidebar.ts | extensionManagedStorage": {
|
2478
|
+
"message": "ನಿರ್ವಹಿಸಲಾಗಿದೆ"
|
2479
|
+
},
|
2480
|
+
"panels/application/ApplicationPanelSidebar.ts | extensionSessionStorage": {
|
2481
|
+
"message": "ಸೆಶನ್"
|
2482
|
+
},
|
2483
|
+
"panels/application/ApplicationPanelSidebar.ts | extensionStorage": {
|
2484
|
+
"message": "ಎಕ್ಸ್ಟೆನ್ಶನ್ ಸಂಗ್ರಹಣೆ"
|
2485
|
+
},
|
2486
|
+
"panels/application/ApplicationPanelSidebar.ts | extensionSyncStorage": {
|
2487
|
+
"message": "ಸಿಂಕ್"
|
2488
|
+
},
|
2456
2489
|
"panels/application/ApplicationPanelSidebar.ts | frames": {
|
2457
2490
|
"message": "ಫ್ರೇಮ್ಗಳು"
|
2458
2491
|
},
|
@@ -2639,6 +2672,24 @@
|
|
2639
2672
|
"panels/application/DOMStorageItemsView.ts | value": {
|
2640
2673
|
"message": "ಮೌಲ್ಯ"
|
2641
2674
|
},
|
2675
|
+
"panels/application/ExtensionStorageItemsView.ts | extensionStorage": {
|
2676
|
+
"message": "ಎಕ್ಸ್ಟೆನ್ಶನ್ ಸಂಗ್ರಹಣೆ"
|
2677
|
+
},
|
2678
|
+
"panels/application/ExtensionStorageItemsView.ts | extensionStorageItemDeleted": {
|
2679
|
+
"message": "ಸಂಗ್ರಹಣೆ ಐಟಂ ಅನ್ನು ಅಳಿಸಲಾಗಿದೆ."
|
2680
|
+
},
|
2681
|
+
"panels/application/ExtensionStorageItemsView.ts | extensionStorageItems": {
|
2682
|
+
"message": "ಎಕ್ಸ್ಟೆನ್ಶನ್ ಸಂಗ್ರಹಣೆ ಐಟಂಗಳು"
|
2683
|
+
},
|
2684
|
+
"panels/application/ExtensionStorageItemsView.ts | extensionStorageItemsCleared": {
|
2685
|
+
"message": "ಎಕ್ಸ್ಟೆನ್ಶನ್ ಸಂಗ್ರಹಣೆ ಐಟಂಗಳನ್ನು ತೆರವುಗೊಳಿಸಲಾಗಿದೆ"
|
2686
|
+
},
|
2687
|
+
"panels/application/ExtensionStorageItemsView.ts | key": {
|
2688
|
+
"message": "ಕೀ"
|
2689
|
+
},
|
2690
|
+
"panels/application/ExtensionStorageItemsView.ts | value": {
|
2691
|
+
"message": "ಮೌಲ್ಯ"
|
2692
|
+
},
|
2642
2693
|
"panels/application/IndexedDBViews.ts | clearObjectStore": {
|
2643
2694
|
"message": "ಆಬ್ಜೆಕ್ಟ್ ಸ್ಟೋರ್ ಅನ್ನು ತೆರವುಗೊಳಿಸಿ"
|
2644
2695
|
},
|
@@ -3998,6 +4049,9 @@
|
|
3998
4049
|
"panels/application/preloading/PreloadingView.ts | noRuleSets": {
|
3999
4050
|
"message": "ನಿಯಮ ಸೆಟ್ಗಳಿಲ್ಲ"
|
4000
4051
|
},
|
4052
|
+
"panels/application/preloading/PreloadingView.ts | prettyPrint": {
|
4053
|
+
"message": "ಅಂದವಾದ ಪ್ರಿಂಟ್"
|
4054
|
+
},
|
4001
4055
|
"panels/application/preloading/PreloadingView.ts | statusFailure": {
|
4002
4056
|
"message": "ವಿಫಲವಾಗಿದೆ"
|
4003
4057
|
},
|
@@ -6411,7 +6465,7 @@
|
|
6411
6465
|
"message": "ಬದಲಾಗಿ ಹುಡುಕಾಟವನ್ನು ಬಳಸಿ"
|
6412
6466
|
},
|
6413
6467
|
"panels/explain/components/ConsoleInsight.ts | settingsLink": {
|
6414
|
-
"message": "
|
6468
|
+
"message": "ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿನ Console insights"
|
6415
6469
|
},
|
6416
6470
|
"panels/explain/components/ConsoleInsight.ts | signInToUse": {
|
6417
6471
|
"message": "ಈ ಫೀಚರ್ ಅನ್ನು ಬಳಸಲು ಸೈನ್ ಇನ್ ಮಾಡಿ"
|
@@ -6425,9 +6479,6 @@
|
|
6425
6479
|
"panels/explain/components/ConsoleInsight.ts | updateSettings": {
|
6426
6480
|
"message": "ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಿ"
|
6427
6481
|
},
|
6428
|
-
"panels/explain/explain-meta.ts | ageRestricted": {
|
6429
|
-
"message": "ಈ ಫೀಚರ್ 18 ವರ್ಷ ಅಥವಾ ಅದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ವಯಸ್ಸಿನ ಬಳಕೆದಾರರಿಗೆ ಮಾತ್ರ ಲಭ್ಯವಿದೆ"
|
6430
|
-
},
|
6431
6482
|
"panels/explain/explain-meta.ts | enableConsoleInsights": {
|
6432
6483
|
"message": "AI ಮೂಲಕ ಕನ್ಸೋಲ್ ಸಂದೇಶಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಿ"
|
6433
6484
|
},
|
@@ -6444,11 +6495,71 @@
|
|
6444
6495
|
"message": "ಈ ಫೀಚರ್ ನಿಮ್ಮ ಪ್ರದೇಶದಲ್ಲಿ ಲಭ್ಯವಿಲ್ಲ"
|
6445
6496
|
},
|
6446
6497
|
"panels/explain/explain-meta.ts | policyRestricted": {
|
6447
|
-
"message": "
|
6498
|
+
"message": "ಈ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ನಿಮ್ಮ ನಿರ್ವಾಹಕರು ನಿರ್ವಹಿಸುತ್ತಾರೆ"
|
6448
6499
|
},
|
6449
6500
|
"panels/explain/explain-meta.ts | wrongLocale": {
|
6450
6501
|
"message": "ಈ ಫೀಚರ್ ಅನ್ನು ಬಳಸಲು, DevTools ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ನಿಮ್ಮ ಭಾಷೆಯ ಆದ್ಯತೆಯನ್ನು ಇಂಗ್ಲಿಷ್ಗೆ ಅಪ್ಡೇಟ್ ಮಾಡಿ"
|
6451
6502
|
},
|
6503
|
+
"panels/freestyler/FreestylerPanel.ts | chatCleared": {
|
6504
|
+
"message": "Chat ಅನ್ನು ತೆರವುಗೊಳಿಸಲಾಗಿದೆ"
|
6505
|
+
},
|
6506
|
+
"panels/freestyler/FreestylerPanel.ts | clearChat": {
|
6507
|
+
"message": "ಚಾಟ್ ತೆರವುಗೊಳಿಸಿ"
|
6508
|
+
},
|
6509
|
+
"panels/freestyler/FreestylerPanel.ts | help": {
|
6510
|
+
"message": "ಸಹಾಯ"
|
6511
|
+
},
|
6512
|
+
"panels/freestyler/FreestylerPanel.ts | sendFeedback": {
|
6513
|
+
"message": "ಫೀಡ್ಬ್ಯಾಕ್ ಕಳುಹಿಸಿ"
|
6514
|
+
},
|
6515
|
+
"panels/freestyler/FreestylerPanel.ts | settings": {
|
6516
|
+
"message": "ಸೆಟ್ಟಿಂಗ್ಗಳು"
|
6517
|
+
},
|
6518
|
+
"panels/freestyler/components/FreestylerChatUi.ts | followTheSteps": {
|
6519
|
+
"message": "ಪ್ರಶ್ನೆಯನ್ನು ಕೇಳಲು ಮೇಲಿನ ಹಂತಗಳನ್ನು ಅನುಸರಿಸಿ"
|
6520
|
+
},
|
6521
|
+
"panels/freestyler/components/FreestylerChatUi.ts | inputDisclaimerForEmptyState": {
|
6522
|
+
"message": "ಇದು ಪ್ರಾಯೋಗಿಕ AI ಫೀಚರ್ ಆಗಿದೆ ಮತ್ತು ಇದು ಯಾವಾಗಲೂ ಸರಿಯಾದ ಕ್ರಿಯೆಗಳನ್ನೇ ಮಾಡುವುದಿಲ್ಲ."
|
6523
|
+
},
|
6524
|
+
"panels/freestyler/components/FreestylerChatUi.ts | learnAbout": {
|
6525
|
+
"message": "DevTools ನಲ್ಲಿ AI ಕುರಿತು ತಿಳಿಯಿರಿ"
|
6526
|
+
},
|
6527
|
+
"panels/freestyler/components/FreestylerChatUi.ts | notLoggedIn": {
|
6528
|
+
"message": "ನಿಮ್ಮ Google ಖಾತೆಯ ಮೂಲಕ ನೀವು Chrome ಗೆ ಸೈನ್ ಇನ್ ಮಾಡಿದಾಗ ಮಾತ್ರ ಈ ಫೀಚರ್ ಲಭ್ಯವಿರುತ್ತದೆ"
|
6529
|
+
},
|
6530
|
+
"panels/freestyler/components/FreestylerChatUi.ts | offline": {
|
6531
|
+
"message": "ನಿಮ್ಮ ಇಂಟರ್ನೆಟ್ ಕನೆಕ್ಷನ್ ಅನ್ನು ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ"
|
6532
|
+
},
|
6533
|
+
"panels/freestyler/components/FreestylerChatUi.ts | settingsLink": {
|
6534
|
+
"message": "ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ AI ಸಹಾಯ"
|
6535
|
+
},
|
6536
|
+
"panels/freestyler/components/FreestylerChatUi.ts | turnOnForStyles": {
|
6537
|
+
"message": "CSS ಶೈಲಿಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳುವುದಕ್ಕೆ ಸಹಾಯ ಪಡೆಯಲು {PH1} ಅನ್ನು ಆನ್ ಮಾಡಿ"
|
6538
|
+
},
|
6539
|
+
"panels/freestyler/components/FreestylerChatUi.ts | turnOnForStylesAndRequests": {
|
6540
|
+
"message": "ಶೈಲಿಗಳು ಮತ್ತು ನೆಟ್ವರ್ಕ್ ವಿನಂತಿಗಳ ಮೂಲಕ ಸಹಾಯ ಪಡೆಯಲು {PH1} ಅನ್ನು ಆನ್ ಮಾಡಿ"
|
6541
|
+
},
|
6542
|
+
"panels/freestyler/freestyler-meta.ts | aiAssistance": {
|
6543
|
+
"message": "AI ಸಹಾಯ"
|
6544
|
+
},
|
6545
|
+
"panels/freestyler/freestyler-meta.ts | askAi": {
|
6546
|
+
"message": "AI ಅನ್ನು ಕೇಳಿ"
|
6547
|
+
},
|
6548
|
+
"panels/freestyler/freestyler-meta.ts | enableAiAssistance": {
|
6549
|
+
"message": "AI ಸಹಾಯವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"
|
6550
|
+
},
|
6551
|
+
"panels/freestyler/freestyler-meta.ts | geoRestricted": {
|
6552
|
+
"message": "ಈ ಫೀಚರ್ ನಿಮ್ಮ ಪ್ರದೇಶದಲ್ಲಿ ಲಭ್ಯವಿಲ್ಲ"
|
6553
|
+
},
|
6554
|
+
"panels/freestyler/freestyler-meta.ts | policyRestricted": {
|
6555
|
+
"message": "ಈ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ನಿಮ್ಮ ನಿರ್ವಾಹಕರು ನಿರ್ವಹಿಸುತ್ತಾರೆ"
|
6556
|
+
},
|
6557
|
+
"panels/freestyler/freestyler-meta.ts | showAiAssistance": {
|
6558
|
+
"message": "AI ಸಹಾಯವನ್ನು ತೋರಿಸಿ"
|
6559
|
+
},
|
6560
|
+
"panels/freestyler/freestyler-meta.ts | wrongLocale": {
|
6561
|
+
"message": "ಈ ಫೀಚರ್ ಅನ್ನು ಬಳಸಲು, DevTools ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ನಿಮ್ಮ ಭಾಷೆಯ ಆದ್ಯತೆಯನ್ನು ಇಂಗ್ಲಿಷ್ಗೆ ಸೆಟ್ ಮಾಡಿ"
|
6562
|
+
},
|
6452
6563
|
"panels/issues/AffectedBlockedByResponseView.ts | blockedResource": {
|
6453
6564
|
"message": "ನಿರ್ಬಂಧಿತ ಸಂಪನ್ಮೂಲ"
|
6454
6565
|
},
|
@@ -7598,11 +7709,8 @@
|
|
7598
7709
|
"panels/mobile_throttling/ThrottlingManager.ts | hardwareConcurrency": {
|
7599
7710
|
"message": "ಹಾರ್ಡ್ವೇರ್ ಏಕರೂಪತೆ"
|
7600
7711
|
},
|
7601
|
-
"panels/mobile_throttling/ThrottlingManager.ts |
|
7602
|
-
"message": "
|
7603
|
-
},
|
7604
|
-
"panels/mobile_throttling/ThrottlingManager.ts | hardwareConcurrencySettingTooltip": {
|
7605
|
-
"message": "ಪುಟದಲ್ಲಿ navigator.hardwareConcurrency ವರದಿ ಮಾಡಿದ ಮೌಲ್ಯವನ್ನು ಓವರ್ರೈಡ್ ಮಾಡಿ"
|
7712
|
+
"panels/mobile_throttling/ThrottlingManager.ts | hardwareConcurrencySettingLabel": {
|
7713
|
+
"message": "navigator.hardwareConcurrency ವರದಿ ಮಾಡಿದ ಮೌಲ್ಯವನ್ನು ಓವರ್ರೈಡ್ ಮಾಡಿ"
|
7606
7714
|
},
|
7607
7715
|
"panels/mobile_throttling/ThrottlingManager.ts | noThrottling": {
|
7608
7716
|
"message": "ಥ್ರಾಟಲಿಂಗ್ ಇಲ್ಲ"
|
@@ -7949,15 +8057,6 @@
|
|
7949
8057
|
"panels/network/NetworkDataGridNode.ts | redirect": {
|
7950
8058
|
"message": "ಮರುನಿರ್ದೇಶಿಸಿ"
|
7951
8059
|
},
|
7952
|
-
"panels/network/NetworkDataGridNode.ts | requestContentHeadersOverridden": {
|
7953
|
-
"message": "ವಿನಂತಿಯ ಕಂಟೆಂಟ್ ಮತ್ತು ಹೆಡರ್ಗಳೆರಡನ್ನೂ ಓವರ್ರೈಡ್ ಮಾಡಲಾಗಿದೆ"
|
7954
|
-
},
|
7955
|
-
"panels/network/NetworkDataGridNode.ts | requestContentOverridden": {
|
7956
|
-
"message": "ವಿನಂತಿಯ ಕಂಟೆಂಟ್ ಅನ್ನು ಓವರ್ರೈಡ್ ಮಾಡಲಾಗಿದೆ"
|
7957
|
-
},
|
7958
|
-
"panels/network/NetworkDataGridNode.ts | requestHeadersOverridden": {
|
7959
|
-
"message": "ವಿನಂತಿಯ ಹೆಡರ್ಗಳನ್ನು ಓವರ್ರೈಡ್ ಮಾಡಲಾಗಿದೆ"
|
7960
|
-
},
|
7961
8060
|
"panels/network/NetworkDataGridNode.ts | sPreflight": {
|
7962
8061
|
"message": "{PH1} + ಪ್ರಿ-ಫ್ಲೈಟ್"
|
7963
8062
|
},
|
@@ -7994,9 +8093,6 @@
|
|
7994
8093
|
"panels/network/NetworkDataGridNode.ts | signedexchange": {
|
7995
8094
|
"message": "ಸಹಿ ಮಾಡಿದ-ವಿನಿಮಯ"
|
7996
8095
|
},
|
7997
|
-
"panels/network/NetworkDataGridNode.ts | thirdPartyPhaseout": {
|
7998
|
-
"message": "Chrome ಫ್ಲ್ಯಾಗ್ಗಳಿಂದಾಗಿ ಅಥವಾ ಬ್ರೌಸರ್ ಕಾನ್ಫಿಗರೇಶನ್ನಿಂದಾಗಿ ಈ ವಿನಂತಿಗಾಗಿ ಕುಕಿಗಳನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ. ಸಮಸ್ಯೆಗಳ ಪ್ಯಾನೆಲ್ನಲ್ಲಿ ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ."
|
7999
|
-
},
|
8000
8096
|
"panels/network/NetworkDataGridNode.ts | timeSubtitleTooltipText": {
|
8001
8097
|
"message": "ಸುಪ್ತತೆ (ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಸ್ವೀಕರಿಸಿದ ಸಮಯ - ಪ್ರಾರಂಭದ ಸಮಯ)"
|
8002
8098
|
},
|
@@ -8415,7 +8511,7 @@
|
|
8415
8511
|
"message": "ಕ್ಯಾಷ್ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
8416
8512
|
},
|
8417
8513
|
"panels/network/NetworkPanel.ts | disableCacheWhileDevtoolsIsOpen": {
|
8418
|
-
"message": "ಕ್ಯಾಷ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ
|
8514
|
+
"message": "DevTools ತೆರೆದಿರುವಾಗ ಕ್ಯಾಷ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
8419
8515
|
},
|
8420
8516
|
"panels/network/NetworkPanel.ts | doNotClearLogOnPageReload": {
|
8421
8517
|
"message": "ಪುಟವನ್ನು ಮತ್ತೊಮ್ಮೆ ಲೋಡ್ ಮಾಡಿದಾಗ / ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿದಾಗ ಲಾಗ್ ತೆರವುಗೊಳಿಸಬೇಡಿ"
|
@@ -8463,7 +8559,7 @@
|
|
8463
8559
|
"message": "ವಿನಂತಿಯ ಸಾಲುಗಳಲ್ಲಿ ಹೆಚ್ಚಿನ ಮಾಹಿತಿ ತೋರಿಸಿ"
|
8464
8560
|
},
|
8465
8561
|
"panels/network/NetworkPanel.ts | showOverview": {
|
8466
|
-
"message": "
|
8562
|
+
"message": "ಓವರ್ವ್ಯೂ"
|
8467
8563
|
},
|
8468
8564
|
"panels/network/NetworkPanel.ts | showOverviewOfNetworkRequests": {
|
8469
8565
|
"message": "ನೆಟ್ವರ್ಕ್ ವಿನಂತಿಗಳ ಅವಲೋಕನವನ್ನು ತೋರಿಸಿ"
|
@@ -9030,7 +9126,7 @@
|
|
9030
9126
|
"message": "ನೆಟ್ವರ್ಕ್ ವಿನಂತಿ ನಿರ್ಬಂಧಿಸುವಿಕೆ ಪ್ಯಾಟರ್ನ್ ಅನ್ನು ಸೇರಿಸಿ"
|
9031
9127
|
},
|
9032
9128
|
"panels/network/network-meta.ts | allowToGenerateHarWithSensitiveData": {
|
9033
|
-
"message": "HAR
|
9129
|
+
"message": "HAR ಸೂಕ್ಷ್ಮವಾದ ವೈಯಕ್ತಿಕ ಡೇಟಾದೊಂದಿಗೆ ಜನರೇಟ್ ಮಾಡಲು ಅನುಮತಿಸಿ"
|
9034
9130
|
},
|
9035
9131
|
"panels/network/network-meta.ts | allowToGenerateHarWithSensitiveDataDocumentation": {
|
9036
9132
|
"message": "ಡೀಫಾಲ್ಟ್ ಆಗಿ, ಜನರೇಟ್ ಮಾಡಲಾದ HAR ಲಾಗ್ಗಳನ್ನು ಸ್ಯಾನಿಟೈಸ್ ಮಾಡಲಾಗುತ್ತದೆ ಮತ್ತು ಅವು Cookie, Set-Cookie, ಅಥವಾ Authorization HTTP ಹೆಡರ್ಗಳನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ. ಈ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಾಗ, ಸೂಕ್ಷ್ಮವಾದ ವೈಯಕ್ತಿಕ ಡೇಟಾದೊಂದಿಗೆ HAR ಅನ್ನು ಎಕ್ಸ್ಪೋರ್ಟ್/ಕಾಪಿ ಮಾಡಲು ಆಯ್ಕೆಗಳನ್ನು ಒದಗಿಸಲಾಗುತ್ತದೆ."
|
@@ -9051,7 +9147,7 @@
|
|
9051
9147
|
"message": "ಡಿಸ್ಕ್ ಕ್ಯಾಷ್"
|
9052
9148
|
},
|
9053
9149
|
"panels/network/network-meta.ts | dontAllowToGenerateHarWithSensitiveData": {
|
9054
|
-
"message": "HAR
|
9150
|
+
"message": "HAR ಸೂಕ್ಷ್ಮವಾದ ವೈಯಕ್ತಿಕ ಡೇಟಾದೊಂದಿಗೆ ಜನರೇಟ್ ಮಾಡಲು ಅನುಮತಿಸಬೇಡಿ"
|
9055
9151
|
},
|
9056
9152
|
"panels/network/network-meta.ts | dontGroupNetworkLogItemsByFrame": {
|
9057
9153
|
"message": "ಫ್ರೇಮ್ ಮೂಲಕ ನೆಟ್ವರ್ಕ್ ಲಾಗ್ ಐಟಂಗಳನ್ನು ಗುಂಪು ಮಾಡಬೇಡಿ"
|
@@ -10637,12 +10733,45 @@
|
|
10637
10733
|
"panels/security/SecurityPanel.ts | yourPageRequestedNonsecure": {
|
10638
10734
|
"message": "ನಿಮ್ಮ ಪುಟವು ನಿರ್ಬಂಧಿಸಿದ ಸುರಕ್ಷಿತವಲ್ಲದ ಮಾಹಿತಿ ಮೂಲಗಳನ್ನು ವಿನಂತಿಸಿದೆ."
|
10639
10735
|
},
|
10736
|
+
"panels/security/SecurityPanelSidebar.ts | mainOrigin": {
|
10737
|
+
"message": "ಪ್ರಧಾನ ಮೂಲ"
|
10738
|
+
},
|
10739
|
+
"panels/security/SecurityPanelSidebar.ts | mainOriginNonsecure": {
|
10740
|
+
"message": "ಪ್ರಧಾನ ಮೂಲ (ಸುರಕ್ಷಿತವಲ್ಲ)"
|
10741
|
+
},
|
10742
|
+
"panels/security/SecurityPanelSidebar.ts | mainOriginSecure": {
|
10743
|
+
"message": "ಪ್ರಧಾನ ಮೂಲ (ಸುರಕ್ಷಿತ)"
|
10744
|
+
},
|
10745
|
+
"panels/security/SecurityPanelSidebar.ts | nonsecureOrigins": {
|
10746
|
+
"message": "ಸುರಕ್ಷಿತವಲ್ಲದ ಮೂಲಗಳು"
|
10747
|
+
},
|
10748
|
+
"panels/security/SecurityPanelSidebar.ts | overview": {
|
10749
|
+
"message": "ಅವಲೋಕನ"
|
10750
|
+
},
|
10751
|
+
"panels/security/SecurityPanelSidebar.ts | reloadToViewDetails": {
|
10752
|
+
"message": "ವಿವರಗಳನ್ನು ವೀಕ್ಷಿಸಲು ಮರುಲೋಡ್ ಮಾಡಿ"
|
10753
|
+
},
|
10754
|
+
"panels/security/SecurityPanelSidebar.ts | secureOrigins": {
|
10755
|
+
"message": "ಸುರಕ್ಷಿತ ಮೂಲಸ್ಥಾನಗಳು"
|
10756
|
+
},
|
10757
|
+
"panels/security/SecurityPanelSidebar.ts | security": {
|
10758
|
+
"message": "ಭದ್ರತೆ"
|
10759
|
+
},
|
10760
|
+
"panels/security/SecurityPanelSidebar.ts | unknownCanceled": {
|
10761
|
+
"message": "ಅಪರಿಚಿತ / ರದ್ದುಪಡಿಸಲಾಗಿದೆ"
|
10762
|
+
},
|
10640
10763
|
"panels/security/security-meta.ts | security": {
|
10641
|
-
"message": "
|
10764
|
+
"message": "ಭದ್ರತೆ"
|
10765
|
+
},
|
10766
|
+
"panels/security/security-meta.ts | securityAndPrivacy": {
|
10767
|
+
"message": "ಭದ್ರತೆ ಮತ್ತು ಗೌಪ್ಯತೆ"
|
10642
10768
|
},
|
10643
10769
|
"panels/security/security-meta.ts | showSecurity": {
|
10644
10770
|
"message": "ಸುರಕ್ಷತೆ ಫಲಕವನ್ನು ತೋರಿಸಿ"
|
10645
10771
|
},
|
10772
|
+
"panels/security/security-meta.ts | showSecurityAndPrivacy": {
|
10773
|
+
"message": "ಭದ್ರತೆ ಮತ್ತು ಗೌಪ್ಯತೆಯನ್ನು ತೋರಿಸಿ"
|
10774
|
+
},
|
10646
10775
|
"panels/sensors/LocationsSettingsTab.ts | addLocation": {
|
10647
10776
|
"message": "ಸ್ಥಳ ಸೇರಿಸಿ..."
|
10648
10777
|
},
|
@@ -10857,16 +10986,25 @@
|
|
10857
10986
|
"message": "ಬಳಕೆದಾರರು ನಿಷ್ಕ್ರಿಯರಾಗಿದ್ದಾರೆ, ಸ್ಕ್ರೀನ್ ಅನ್ಲಾಕ್ ಆಗಿದೆ"
|
10858
10987
|
},
|
10859
10988
|
"panels/settings/AISettingsTab.ts | adminSettings": {
|
10860
|
-
"message": "ನಿಮ್ಮ Google ಖಾತೆ ನಿರ್ವಹಣೆ ಮತ್ತು/ಅಥವಾ ಪ್ರದೇಶವನ್ನು ಆಧರಿಸಿ, Google ಡೇಟಾ ಸಂಗ್ರಹಣೆಯಿಂದ ದೂರ ಉಳಿಯಬಹುದು.
|
10989
|
+
"message": "ನಿಮ್ಮ Google ಖಾತೆ ನಿರ್ವಹಣೆ ಮತ್ತು/ಅಥವಾ ಪ್ರದೇಶವನ್ನು ಆಧರಿಸಿ, Google ಡೇಟಾ ಸಂಗ್ರಹಣೆಯಿಂದ ದೂರ ಉಳಿಯಬಹುದು. ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಆಧರಿಸಿ, ನಿರ್ವಹಣೆ ಮಾಡಲಾಗುವ ಬಳಕೆದಾರರಿಗೆ ಲಭ್ಯವಿರುವ ಫೀಚರ್ಗಳಲ್ಲಿ ವ್ಯತ್ಯಾಸವಿರಬಹುದು."
|
10990
|
+
},
|
10991
|
+
"panels/settings/AISettingsTab.ts | ageRestricted": {
|
10992
|
+
"message": "ಈ ಫೀಚರ್ 18 ವರ್ಷ ಅಥವಾ ಅದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ವಯಸ್ಸಿನ ಬಳಕೆದಾರರಿಗೆ ಮಾತ್ರ ಲಭ್ಯವಿದೆ"
|
10993
|
+
},
|
10994
|
+
"panels/settings/AISettingsTab.ts | aiInnovations": {
|
10995
|
+
"message": "AI ಆವಿಷ್ಕಾರಗಳು"
|
10861
10996
|
},
|
10862
10997
|
"panels/settings/AISettingsTab.ts | boostYourProductivity": {
|
10863
|
-
"message": "
|
10998
|
+
"message": "AI ಮೂಲಕ ನಿಮ್ಮ ಉತ್ಪಾದಕತೆಯನ್ನು ಹೆಚ್ಚಿಸಿ"
|
10864
10999
|
},
|
10865
11000
|
"panels/settings/AISettingsTab.ts | consoleInsightsSendsData": {
|
10866
11001
|
"message": "ವಿವರಣೆಗಳನ್ನು ರಚಿಸಲು ಕನ್ಸೋಲ್ ಸಂದೇಶ, ಸಂಬಂಧಿತ ಸ್ಟಾಕ್ ಟ್ರೇಸ್, ಸಂಬಂಧಿತ ಮೂಲ ಕೋಡ್ ಮತ್ತು ಸಂಬಂಧಿತ ನೆಟ್ವರ್ಕ್ ಹೆಡರ್ಗಳನ್ನು Google ಗೆ ಕಳುಹಿಸಲಾಗುತ್ತದೆ. ಈ ಫೀಚರ್ ಅನ್ನು ಸುಧಾರಿಸಲು ಮಾನವ ರಿವ್ಯೂವರ್ಗಳು ಈ ಡೇಟಾವನ್ನು ನೋಡಬಹುದು."
|
10867
11002
|
},
|
11003
|
+
"panels/settings/AISettingsTab.ts | enableAiAssistance": {
|
11004
|
+
"message": "AI ಸಹಾಯವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"
|
11005
|
+
},
|
10868
11006
|
"panels/settings/AISettingsTab.ts | enableConsoleInsights": {
|
10869
|
-
"message": "
|
11007
|
+
"message": "Console insights ಸಕ್ರಿಯಗೊಳಿಸಿ"
|
10870
11008
|
},
|
10871
11009
|
"panels/settings/AISettingsTab.ts | experimentalFeatures": {
|
10872
11010
|
"message": "ಈ ಫೀಚರ್ಗಳು ಪ್ರಾಯೋಗಿಕವಾಗಿವೆ. ಇವುಗಳು ಜನರೇಟಿವ್ AI ಅನ್ನು ಬಳಸುತ್ತವೆ ಮತ್ತು Google ನ ದೃಷ್ಟಿಕೋನಗಳನ್ನು ಪ್ರತಿನಿಧಿಸದ, ನಿಖರವಲ್ಲದ ಅಥವಾ ಆಕ್ಷೇಪಾರ್ಹವಾದ ಮಾಹಿತಿಯನ್ನು ಒದಗಿಸಬಹುದು."
|
@@ -10875,40 +11013,52 @@
|
|
10875
11013
|
"message": "ಕನ್ಸೋಲ್ ಎಚ್ಚರಿಕೆಗಳು ಮತ್ತು ದೋಷಗಳಿಗಾಗಿ ವಿವರಣೆಗಳನ್ನು ಪಡೆಯಿರಿ"
|
10876
11014
|
},
|
10877
11015
|
"panels/settings/AISettingsTab.ts | explainStyling": {
|
10878
|
-
"message": "
|
11016
|
+
"message": "AI-ಚಾಲಿತ ಒಳನೋಟಗಳ ಮೂಲಕ CSS ಶೈಲಿಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಿ"
|
10879
11017
|
},
|
10880
|
-
"panels/settings/AISettingsTab.ts |
|
10881
|
-
"message": "
|
11018
|
+
"panels/settings/AISettingsTab.ts | explainStylingAndNetworkRequest": {
|
11019
|
+
"message": "AI-ಚಾಲಿತ ಒಳನೋಟಗಳೊಂದಿಗೆ CSS ಶೈಲಿಗಳು ಮತ್ತು ನೆಟ್ವರ್ಕ್ ಚಟುವಟಿಕೆಯನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಿ"
|
11020
|
+
},
|
11021
|
+
"panels/settings/AISettingsTab.ts | explainStylingNetworkAndFile": {
|
11022
|
+
"message": "AI-ಚಾಲಿತ ಒಳನೋಟಗಳೊಂದಿಗೆ CSS ಶೈಲಿಗಳು, ನೆಟ್ವರ್ಕ್ ಚಟುವಟಿಕೆ ಮತ್ತು ಫೈಲ್ ಮೂಲಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಿ"
|
10882
11023
|
},
|
10883
|
-
"panels/settings/AISettingsTab.ts |
|
10884
|
-
"message": "
|
11024
|
+
"panels/settings/AISettingsTab.ts | freestylerSendsData": {
|
11025
|
+
"message": "ತಪಾಸಣೆ ಮಾಡಲಾದ ಪುಟವು ವೆಬ್ API ಗಳು, ನೆಟ್ವರ್ಕ್ ವಿನಂತಿಗಳು, ಫೈಲ್ಗಳು ಮತ್ತು ಪರ್ಫಾರ್ಮೆನ್ಸ್ ಜಾಡುಗಳ ಮೂಲಕ ಆ್ಯಕ್ಸೆಸ್ ಮಾಡಬಹುದಾದ ಯಾವುದೇ ಡೇಟಾವನ್ನು, ವಿವರಣೆಗಳನ್ನು ಜನರೇಟ್ ಮಾಡುವುದಕ್ಕಾಗಿ Google ಗೆ ಕಳುಹಿಸಬಹುದು. ಈ ಫೀಚರ್ ಅನ್ನು ಸುಧಾರಿಸಲು ಮಾನವ ರಿವ್ಯೂವರ್ಗಳು ಈ ಡೇಟಾವನ್ನು ನೋಡಬಹುದು. ವೈಯಕ್ತಿಕ ಅಥವಾ ಸೂಕ್ಷ್ಮವಾದ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿರುವ ಪುಟಗಳಲ್ಲಿ ಬಳಸಬೇಡಿ."
|
10885
11026
|
},
|
10886
11027
|
"panels/settings/AISettingsTab.ts | helpUnderstandConsole": {
|
10887
11028
|
"message": "ಕನ್ಸೋಲ್ ಎಚ್ಚರಿಕೆಗಳು ಮತ್ತು ದೋಷಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಲು ಮತ್ತು ಸರಿಪಡಿಸಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತದೆ"
|
10888
11029
|
},
|
10889
11030
|
"panels/settings/AISettingsTab.ts | helpUnderstandStyling": {
|
10890
|
-
"message": "
|
11031
|
+
"message": "CSS ಶೈಲಿಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಲು ಸಹಾಯ ಪಡೆಯಿರಿ"
|
11032
|
+
},
|
11033
|
+
"panels/settings/AISettingsTab.ts | helpUnderstandStylingAndNetworkRequest": {
|
11034
|
+
"message": "CSS ಶೈಲಿಗಳು ಮತ್ತು ನೆಟ್ವರ್ಕ್ ವಿನಂತಿಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಲು ಸಹಾಯ ಪಡೆಯಿರಿ"
|
11035
|
+
},
|
11036
|
+
"panels/settings/AISettingsTab.ts | helpUnderstandStylingNetworkAndFile": {
|
11037
|
+
"message": "CSS ಶೈಲಿಗಳು, ನೆಟ್ವರ್ಕ್ ವಿನಂತಿಗಳು ಮತ್ತು ಫೈಲ್ಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಲು ಸಹಾಯ ಪಡೆಯಿರಿ"
|
10891
11038
|
},
|
10892
11039
|
"panels/settings/AISettingsTab.ts | learnMore": {
|
10893
11040
|
"message": "ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ"
|
10894
11041
|
},
|
10895
|
-
"panels/settings/AISettingsTab.ts |
|
10896
|
-
"message": "
|
11042
|
+
"panels/settings/AISettingsTab.ts | notLoggedIn": {
|
11043
|
+
"message": "ನಿಮ್ಮ Google ಖಾತೆಯಿಂದ ನೀವು Chrome ಗೆ ಸೈನ್ ಇನ್ ಮಾಡಿದಾಗ ಮಾತ್ರ ಈ ಫೀಚರ್ ಲಭ್ಯವಾಗುತ್ತದೆ."
|
11044
|
+
},
|
11045
|
+
"panels/settings/AISettingsTab.ts | offline": {
|
11046
|
+
"message": "ಈ ಫೀಚರ್ ಸಕ್ರಿಯ ಇಂಟರ್ನೆಟ್ ಕನೆಕ್ಷನ್ ಜೊತೆಗೆ ಮಾತ್ರ ಲಭ್ಯವಿದೆ."
|
10897
11047
|
},
|
10898
11048
|
"panels/settings/AISettingsTab.ts | privacyNotice": {
|
10899
11049
|
"message": "Google ಗೌಪ್ಯತೆ ನೀತಿ"
|
10900
11050
|
},
|
10901
11051
|
"panels/settings/AISettingsTab.ts | receiveStylingSuggestions": {
|
10902
|
-
"message": "
|
11052
|
+
"message": "ಸಂದರ್ಭೋಚಿತ ವಿವರಣೆಗಳು ಮತ್ತು ಸಲಹೆಗಳೊಂದಿಗೆ ನಿಮ್ಮ ಅಭಿವೃದ್ಧಿ ಕಾರ್ಯವನ್ನು ಸುಧಾರಿಸಿ"
|
10903
11053
|
},
|
10904
11054
|
"panels/settings/AISettingsTab.ts | receiveSuggestions": {
|
10905
11055
|
"message": "ಈ ಸಮಸ್ಯೆಗಳನ್ನು ಪರಿಹರಿಸಲು ಸಲಹೆಗಳು ಮತ್ತು ಕೋಡ್ ಮಾದರಿಗಳನ್ನು ಸ್ವೀಕರಿಸಿ"
|
10906
11056
|
},
|
10907
11057
|
"panels/settings/AISettingsTab.ts | retainData": {
|
10908
|
-
"message": "ಬಳಕೆಯ ಡೇಟಾವನ್ನು 18
|
11058
|
+
"message": "ಬಳಕೆಯ ಡೇಟಾವನ್ನು 18 ತಿಂಗಳವರೆಗೆ ಇರಿಸಿಕೊಳ್ಳಲಾಗುತ್ತದೆ ಮತ್ತು ಅದನ್ನು ಯಾರು ಒದಗಿಸಿದ್ದಾರೆ ಎಂದು Google ಗೆ ತಿಳಿಯಲು ಸಾಧ್ಯವಿಲ್ಲದ ರೀತಿಯಲ್ಲಿ ಸಂಗ್ರಹಣೆ ಮಾಡಲಾಗುತ್ತದೆ."
|
10909
11059
|
},
|
10910
11060
|
"panels/settings/AISettingsTab.ts | sendsDataToGoogle": {
|
10911
|
-
"message": "ಈ
|
11061
|
+
"message": "ಈ ಫೀಚರ್ಗಳು ಸಂಬಂಧಿತ ಡೇಟಾವನ್ನು Google ಗೆ ಕಳುಹಿಸುತ್ತವೆ. ಮಾನವ ರಿವ್ಯೂವರ್ಗಳ ಸಹಾಯದಿಂದ Google ತನ್ನ ಉತ್ಪನ್ನಗಳು ಮತ್ತು ಸೇವೆಗಳನ್ನು ಸುಧಾರಿಸಲು ಈ ಡೇಟಾ ಮತ್ತು ಫೀಡ್ಬ್ಯಾಕ್ ಅನ್ನು ಸಂಗ್ರಹಿಸುತ್ತದೆ. ಸೂಕ್ಷ್ಮವಾದ ಅಥವಾ ವೈಯಕ್ತಿಕ ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ತಪ್ಪಿಸಿ."
|
10912
11062
|
},
|
10913
11063
|
"panels/settings/AISettingsTab.ts | showLess": {
|
10914
11064
|
"message": "ಕಡಿಮೆ ತೋರಿಸಿ"
|
@@ -10920,7 +11070,7 @@
|
|
10920
11070
|
"message": "Google ಸೇವಾ ನಿಯಮಗಳು"
|
10921
11071
|
},
|
10922
11072
|
"panels/settings/AISettingsTab.ts | termsOfServicePrivacyNotice": {
|
10923
|
-
"message": "ಈ
|
11073
|
+
"message": "ಈ ಫೀಚರ್ಗಳ ಬಳಕೆಯು {PH1} ಮತ್ತು {PH2} ಗೆ ಒಳಪಟ್ಟಿರುತ್ತದೆ"
|
10924
11074
|
},
|
10925
11075
|
"panels/settings/AISettingsTab.ts | thingsToConsider": {
|
10926
11076
|
"message": "ಪರಿಗಣಿಸಬೇಕಾದ ಸಂಗತಿಗಳು"
|
@@ -10929,10 +11079,10 @@
|
|
10929
11079
|
"message": "ಆನ್ ಆಗಿರುವಾಗ"
|
10930
11080
|
},
|
10931
11081
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | addFilenamePattern": {
|
10932
|
-
"message": "
|
11082
|
+
"message": "ಸ್ಕ್ರಿಪ್ಟ್ನ URL ಗೆ ರೆಗ್ಯುಲರ್ ಎಕ್ಸ್ಪ್ರೆಶನ್ ನಿಯಮವನ್ನು ಸೇರಿಸಿ"
|
10933
11083
|
},
|
10934
11084
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | addPattern": {
|
10935
|
-
"message": "
|
11085
|
+
"message": "ರೆಗ್ಯುಲರ್ ಎಕ್ಸ್ಪ್ರೆಶನ್ ನಿಯಮವನ್ನು ಸೇರಿಸಿ..."
|
10936
11086
|
},
|
10937
11087
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | automaticallyIgnoreListKnownThirdPartyScripts": {
|
10938
11088
|
"message": "ಮೂಲ ನಕ್ಷೆಗಳಿಂದ ಪರಿಚಿತ ಥರ್ಡ್-ಪಾರ್ಟಿಯ ಸ್ಕ್ರಿಪ್ಟ್ಗಳು"
|
@@ -10941,20 +11091,23 @@
|
|
10941
11091
|
"message": "ಕಸ್ಟಮ್ ಹೊರಗಿಡುವ ನಿಯಮಗಳು:"
|
10942
11092
|
},
|
10943
11093
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | debuggerWillSkipThroughThe": {
|
10944
|
-
"message": "
|
11094
|
+
"message": "ಡೀಬಗರ್ ಈ ಸ್ಕ್ರಿಪ್ಟ್ಗಳನ್ನು ಪರಿಶೀಲಿಸುವುದಿಲ್ಲ ಅಥವಾ ಅವುಗಳ ಮೇಲೆ ಪರಿಣಾಮ ಬೀರುವ ವಿನಾಯಿತಿಗಳನ್ನು ನಿಲ್ಲಿಸುವುದಿಲ್ಲ ಮತ್ತು ಪರ್ಫಾರ್ಮೆನ್ಸ್ ಪ್ಯಾನೆಲ್ ಹೊಂದಾಣಿಕೆಯಾಗುವ ಫ್ಲೇಮ್ಚಾರ್ಟ್ ಐಟಂಗಳನ್ನು ಕುಗ್ಗಿಸುತ್ತದೆ."
|
10945
11095
|
},
|
10946
11096
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | enableIgnoreListing": {
|
10947
|
-
"message": "
|
11097
|
+
"message": "ನಿರ್ಲಕ್ಷಿಸಬೇಕಾದವುಗಳ ಪಟ್ಟಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"
|
10948
11098
|
},
|
10949
11099
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | enableIgnoreListingTooltip": {
|
10950
11100
|
"message": "ನಿರ್ಲಕ್ಷಿಸಬೇಕಾದ ವಿಷಯಗಳ ಲಿಸ್ಟಿಂಗ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸುವಿಕೆಯನ್ನು ಅನ್ಚೆಕ್ ಮಾಡಿ"
|
10951
11101
|
},
|
10952
11102
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | frameworkIgnoreList": {
|
10953
|
-
"message": "ಫ್ರೇಮ್ವರ್ಕ್
|
11103
|
+
"message": "ಫ್ರೇಮ್ವರ್ಕ್ ನಿರ್ಲಕ್ಷಿಸಬೇಕಾದವುಗಳ ಪಟ್ಟಿ"
|
10954
11104
|
},
|
10955
11105
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | generalExclusionRules": {
|
10956
11106
|
"message": "ಸಾಮಾನ್ಯ ಹೊರಗಿಡುವ ನಿಯಮಗಳು:"
|
10957
11107
|
},
|
11108
|
+
"panels/settings/FrameworkIgnoreListSettingsTab.ts | ignoreListAnonymousScripts": {
|
11109
|
+
"message": "ಮಾಪನ ಅಥವಾ ಕನ್ಸೋಲ್ನಿಂದ ಅನಾಮಧೇಯ ಸ್ಕ್ರಿಪ್ಟ್ಗಳು"
|
11110
|
+
},
|
10958
11111
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | ignoreListContentScripts": {
|
10959
11112
|
"message": "ವಿಸ್ತರಣೆಗಳಿಂದ ಇಂಜೆಕ್ಟ್ ಮಾಡಲಾದ ಕಂಟೆಂಟ್ ಸ್ಕ್ರಿಪ್ಟ್ಗಳು"
|
10960
11113
|
},
|
@@ -10965,16 +11118,16 @@
|
|
10965
11118
|
"message": "ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ"
|
10966
11119
|
},
|
10967
11120
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | pattern": {
|
10968
|
-
"message": "
|
11121
|
+
"message": "ಸ್ಕ್ರಿಪ್ಟ್ನ URL ಗೆ ರೆಗ್ಯುಲರ್ ಎಕ್ಸ್ಪ್ರೆಶನ್ ನಿಯಮವನ್ನು ಸೇರಿಸಿ"
|
10969
11122
|
},
|
10970
11123
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | patternAlreadyExists": {
|
10971
|
-
"message": "
|
11124
|
+
"message": "ನಿಯಮ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ"
|
10972
11125
|
},
|
10973
11126
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | patternCannotBeEmpty": {
|
10974
|
-
"message": "
|
11127
|
+
"message": "ನಿಯಮ ಖಾಲಿ ಇರುವಂತಿಲ್ಲ"
|
10975
11128
|
},
|
10976
11129
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | patternMustBeAValidRegular": {
|
10977
|
-
"message": "
|
11130
|
+
"message": "ನಿಯಮವು, ಮಾನ್ಯವಾದ ರೆಗ್ಯುಲರ್ ಎಕ್ಸ್ಪ್ರೆಶನ್ ಆಗಿರಬೇಕು"
|
10978
11131
|
},
|
10979
11132
|
"panels/settings/KeybindsSettingsTab.ts | FullListOfDevtoolsKeyboard": {
|
10980
11133
|
"message": "DevTools ಕೀಬೋರ್ಡ್ ಶಾರ್ಟ್ಕಟ್ಗಳು ಮತ್ತು ಗೆಸ್ಚರ್ಗಳ ಪೂರ್ಣ ಪಟ್ಟಿ"
|
@@ -11213,6 +11366,9 @@
|
|
11213
11366
|
"panels/settings/emulation/emulation-meta.ts | showDevices": {
|
11214
11367
|
"message": "ಸಾಧನಗಳನ್ನು ತೋರಿಸಿ"
|
11215
11368
|
},
|
11369
|
+
"panels/settings/settings-meta.ts | aiInnovations": {
|
11370
|
+
"message": "AI ಆವಿಷ್ಕಾರಗಳು"
|
11371
|
+
},
|
11216
11372
|
"panels/settings/settings-meta.ts | documentation": {
|
11217
11373
|
"message": "ಡಾಕ್ಯುಮೆಂಟೇಶನ್"
|
11218
11374
|
},
|
@@ -11231,11 +11387,14 @@
|
|
11231
11387
|
"panels/settings/settings-meta.ts | shortcuts": {
|
11232
11388
|
"message": "ಶಾರ್ಟ್ಕಟ್ಗಳು"
|
11233
11389
|
},
|
11390
|
+
"panels/settings/settings-meta.ts | showAiInnovations": {
|
11391
|
+
"message": "AI ಆವಿಷ್ಕಾರಗಳನ್ನು ತೋರಿಸಿ"
|
11392
|
+
},
|
11234
11393
|
"panels/settings/settings-meta.ts | showExperiments": {
|
11235
11394
|
"message": "ಪ್ರಯೋಗಗಳನ್ನು ತೋರಿಸಿ"
|
11236
11395
|
},
|
11237
11396
|
"panels/settings/settings-meta.ts | showIgnoreList": {
|
11238
|
-
"message": "
|
11397
|
+
"message": "ನಿರ್ಲಕ್ಷಿಸಬೇಕಾದವುಗಳ ಪಟ್ಟಿಯನ್ನು ತೋರಿಸಿ"
|
11239
11398
|
},
|
11240
11399
|
"panels/settings/settings-meta.ts | showPreferences": {
|
11241
11400
|
"message": "ಆದ್ಯತೆಗಳನ್ನು ತೋರಿಸಿ"
|
@@ -12254,6 +12413,33 @@
|
|
12254
12413
|
"panels/timeline/AnimationsTrackAppender.ts | animations": {
|
12255
12414
|
"message": "ಆ್ಯನಿಮೇಶನ್ಗಳು"
|
12256
12415
|
},
|
12416
|
+
"panels/timeline/AnnotationHelpers.ts | entriesLink": {
|
12417
|
+
"message": "ಕನೆಕ್ಟ್ ಆಗಿರುವ ನಮೂದುಗಳು"
|
12418
|
+
},
|
12419
|
+
"panels/timeline/AnnotationHelpers.ts | entryLabel": {
|
12420
|
+
"message": "ಎಂಟ್ರಿ ಲೇಬಲ್"
|
12421
|
+
},
|
12422
|
+
"panels/timeline/AnnotationHelpers.ts | srAnnotationAdded": {
|
12423
|
+
"message": "{PH1} ಟಿಪ್ಪಣಿಯನ್ನು ಸೇರಿಸಲಾಗಿದೆ"
|
12424
|
+
},
|
12425
|
+
"panels/timeline/AnnotationHelpers.ts | srAnnotationRemoved": {
|
12426
|
+
"message": "{PH1} ಟಿಪ್ಪಣಿಯನ್ನು ತೆಗೆದುಹಾಕಲಾಗಿದೆ"
|
12427
|
+
},
|
12428
|
+
"panels/timeline/AnnotationHelpers.ts | srEnterLabelEditMode": {
|
12429
|
+
"message": "ಟಿಪ್ಪಣಿಯ ಲೇಬಲ್ ಪಠ್ಯವನ್ನು ಎಡಿಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ"
|
12430
|
+
},
|
12431
|
+
"panels/timeline/AnnotationHelpers.ts | srEntriesLinked": {
|
12432
|
+
"message": "ಕನೆಕ್ಟ್ ಆಗಿರುವ ನಮೂದುಗಳ ಟಿಪ್ಪಣಿಯು ಈಗ {PH1} ರಿಂದ {PH2} ರವರೆಗೆ ಲಿಂಕ್ ಆಗಿದೆ"
|
12433
|
+
},
|
12434
|
+
"panels/timeline/AnnotationHelpers.ts | srLabelTextUpdated": {
|
12435
|
+
"message": "ಲೇಬಲ್ ಅನ್ನು {PH1} ಗೆ ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗಿದೆ"
|
12436
|
+
},
|
12437
|
+
"panels/timeline/AnnotationHelpers.ts | srTimeRangeBoundsUpdated": {
|
12438
|
+
"message": "ಸಮಯ ಶ್ರೇಣಿಯನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗಿದೆ, {PH1} ರಿಂದ ಪ್ರಾರಂಭವಾಗುತ್ತದೆ ಮತ್ತು {PH2} ಕ್ಕೆ ಕೊನೆಗೊಳ್ಳುತ್ತದೆ"
|
12439
|
+
},
|
12440
|
+
"panels/timeline/AnnotationHelpers.ts | timeRange": {
|
12441
|
+
"message": "ಸಮಯ ಶ್ರೇಣಿ"
|
12442
|
+
},
|
12257
12443
|
"panels/timeline/AppenderUtils.ts | sSelfS": {
|
12258
12444
|
"message": "{PH1} (ಸ್ವಯಂ {PH2})"
|
12259
12445
|
},
|
@@ -12308,6 +12494,12 @@
|
|
12308
12494
|
"panels/timeline/IsolateSelector.ts | selectJavascriptVmInstance": {
|
12309
12495
|
"message": "JavaScript VM ನಿದರ್ಶನವನ್ನು ಆಯ್ಕೆಮಾಡಿ"
|
12310
12496
|
},
|
12497
|
+
"panels/timeline/LayoutShiftsTrackAppender.ts | layoutShift": {
|
12498
|
+
"message": "ಲೇಔಟ್ ಶಿಫ್ಟ್"
|
12499
|
+
},
|
12500
|
+
"panels/timeline/LayoutShiftsTrackAppender.ts | layoutShiftCluster": {
|
12501
|
+
"message": "ಲೇಔಟ್ ಶಿಫ್ಟ್ ಕ್ಲಸ್ಟರ್"
|
12502
|
+
},
|
12311
12503
|
"panels/timeline/LayoutShiftsTrackAppender.ts | layoutShifts": {
|
12312
12504
|
"message": "ಲೇಔಟ್ ಶಿಫ್ಟ್ಗಳು"
|
12313
12505
|
},
|
@@ -12506,9 +12698,6 @@
|
|
12506
12698
|
"panels/timeline/TimelinePanel.ts | CpuThrottlingIsEnabled": {
|
12507
12699
|
"message": "- CPU ಥ್ರಾಟಲಿಂಗ್ ಸಕ್ರಿಯವಾಗಿದೆ"
|
12508
12700
|
},
|
12509
|
-
"panels/timeline/TimelinePanel.ts | HardwareConcurrencyIsEnabled": {
|
12510
|
-
"message": "- ಹಾರ್ಡ್ವೇರ್ ಏಕರೂಪ ಓವರ್ರೈಡ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
|
12511
|
-
},
|
12512
12701
|
"panels/timeline/TimelinePanel.ts | JavascriptSamplingIsDisabled": {
|
12513
12702
|
"message": "- JavaScript ಸ್ಯಾಂಪ್ಲಿಂಗ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
|
12514
12703
|
},
|
@@ -12566,6 +12755,9 @@
|
|
12566
12755
|
"panels/timeline/TimelinePanel.ts | enableSelectorStats": {
|
12567
12756
|
"message": "CSS ಸೆಲೆಕ್ಟರ್ ಅಂಕಿಅಂಶಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ (ನಿಧಾನ)"
|
12568
12757
|
},
|
12758
|
+
"panels/timeline/TimelinePanel.ts | eventSelected": {
|
12759
|
+
"message": "{PH1} ಈವೆಂಟ್ ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ"
|
12760
|
+
},
|
12569
12761
|
"panels/timeline/TimelinePanel.ts | exportEnhancedTraces": {
|
12570
12762
|
"message": "ವರ್ಧಿತ ಪರ್ಫಾರ್ಮೆನ್ಸ್ ಟ್ರೇಸ್ಗಳು"
|
12571
12763
|
},
|
@@ -12578,12 +12770,18 @@
|
|
12578
12770
|
"panels/timeline/TimelinePanel.ts | fixMe": {
|
12579
12771
|
"message": "ಇದನ್ನು ಸರಿಪಡಿಸಿ"
|
12580
12772
|
},
|
12773
|
+
"panels/timeline/TimelinePanel.ts | frameSelected": {
|
12774
|
+
"message": "ಫ್ರೇಮ್ ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ"
|
12775
|
+
},
|
12581
12776
|
"panels/timeline/TimelinePanel.ts | hideSidebar": {
|
12582
12777
|
"message": "ಏಕೈಕ ಸೈಡ್ಬಾರ್ ಅನ್ನು ಮರೆಮಾಡಿ"
|
12583
12778
|
},
|
12584
12779
|
"panels/timeline/TimelinePanel.ts | initializingProfiler": {
|
12585
12780
|
"message": "ಪ್ರೊಫೈಲರ್ ಪ್ರಾರಂಭಿಸಲಾಗುತ್ತಿದೆ…"
|
12586
12781
|
},
|
12782
|
+
"panels/timeline/TimelinePanel.ts | learnMore": {
|
12783
|
+
"message": "ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ"
|
12784
|
+
},
|
12587
12785
|
"panels/timeline/TimelinePanel.ts | loadProfile": {
|
12588
12786
|
"message": "ಪ್ರೊಫೈಲ್ ಲೋಡ್ ಮಾಡಿ…"
|
12589
12787
|
},
|
@@ -12629,6 +12827,9 @@
|
|
12629
12827
|
"panels/timeline/TimelinePanel.ts | screenshots": {
|
12630
12828
|
"message": "ಸ್ಕ್ರೀನ್ಶಾಟ್ಗಳು"
|
12631
12829
|
},
|
12830
|
+
"panels/timeline/TimelinePanel.ts | selectionCleared": {
|
12831
|
+
"message": "ಆಯ್ಕೆಯನ್ನು ತೆರವುಗೊಳಿಸಲಾಗಿದೆ"
|
12832
|
+
},
|
12632
12833
|
"panels/timeline/TimelinePanel.ts | showDataAddedByExtensions": {
|
12633
12834
|
"message": "ಪರ್ಫಾರ್ಮೆನ್ಸ್ ಪ್ಯಾನೆಲ್ನ ಎಕ್ಸ್ಟೆನ್ಶನ್ಗಳ ಮೂಲಕ ಸೇರಿಸಲಾದ ಡೇಟಾವನ್ನು ತೋರಿಸಿ"
|
12634
12835
|
},
|
@@ -12678,7 +12879,7 @@
|
|
12678
12879
|
"message": "% ನಿಧಾನ-ಗತಿಯ ಹೊಂದಾಣಿಕೆಗಳು"
|
12679
12880
|
},
|
12680
12881
|
"panels/timeline/TimelineSelectorStatsView.ts | rejectPercentageExplanation": {
|
12681
|
-
"message": "ಬ್ಲೂಮ್ ಫಿಲ್ಟರ್ನಿಂದ ತ್ವರಿತವಾಗಿ ತಳ್ಳಿಹಾಕಲು ಸಾಧ್ಯವಾಗದ, ಹೊಂದಾಣಿಕೆಯಾಗದ ನೋಡ್ಗಳ ಶೇಕಡಾವಾರು (ಪಂದ್ಯದ ಪ್ರಯತ್ನಗಳು - ಹೊಂದಾಣಿಕೆಯ ಎಣಿಕೆ). ಕಡಿಮೆ ಇದ್ದರೆ ಉತ್ತಮ."
|
12882
|
+
"message": "ಹೆಚ್ಚಿನ ಸೆಲೆಕ್ಟರ್ ಸಂಕೀರ್ಣತೆಯಿಂದಾಗಿ ಬ್ಲೂಮ್ ಫಿಲ್ಟರ್ನಿಂದ ತ್ವರಿತವಾಗಿ ತಳ್ಳಿಹಾಕಲು ಸಾಧ್ಯವಾಗದ, ಹೊಂದಾಣಿಕೆಯಾಗದ ನೋಡ್ಗಳ ಶೇಕಡಾವಾರು (ಪಂದ್ಯದ ಪ್ರಯತ್ನಗಳು - ಹೊಂದಾಣಿಕೆಯ ಎಣಿಕೆ). ಕಡಿಮೆ ಇದ್ದರೆ ಉತ್ತಮ."
|
12682
12883
|
},
|
12683
12884
|
"panels/timeline/TimelineSelectorStatsView.ts | selector": {
|
12684
12885
|
"message": "ಸೆಲೆಕ್ಟರ್"
|
@@ -12797,6 +12998,9 @@
|
|
12797
12998
|
"panels/timeline/TimelineUIUtils.ts | allottedTime": {
|
12798
12999
|
"message": "ನಿಯೋಜಿಸಿದ ಸಮಯ"
|
12799
13000
|
},
|
13001
|
+
"panels/timeline/TimelineUIUtils.ts | animating": {
|
13002
|
+
"message": "ಅನಿಮೇಟಿಂಗ್"
|
13003
|
+
},
|
12800
13004
|
"panels/timeline/TimelineUIUtils.ts | animationFrameRequested": {
|
12801
13005
|
"message": "ಆ್ಯನಿಮೇಶನ್ ಫ್ರೇಮ್ ವಿನಂತಿಸಲಾಗಿದೆ"
|
12802
13006
|
},
|
@@ -12821,6 +13025,66 @@
|
|
12821
13025
|
"panels/timeline/TimelineUIUtils.ts | compile": {
|
12822
13026
|
"message": "ಕಂಪೈಲ್"
|
12823
13027
|
},
|
13028
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailed": {
|
13029
|
+
"message": "ಸಂಯೋಜನೆ ವಿಫಲವಾಗಿದೆ"
|
13030
|
+
},
|
13031
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedAcceleratedAnimationsDisabled": {
|
13032
|
+
"message": "ವೇಗವರ್ಧಿತ ಆ್ಯನಿಮೇಶನ್ಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
|
13033
|
+
},
|
13034
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedAffectsImportantProperty": {
|
13035
|
+
"message": "ಎಫೆಕ್ಟ್, !ಪ್ರಮುಖವಾದ ಆಸ್ತಿಯ ಮೇಲೆ ಪರಿಣಾಮ ಬೀರುತ್ತದೆ"
|
13036
|
+
},
|
13037
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedAnimationAffectsNonCSSProperties": {
|
13038
|
+
"message": "ಆ್ಯನಿಮೇಶನ್ CSS ಅಲ್ಲದ ಆಸ್ತಿಗಳ ಮೇಲೆ ಪರಿಣಾಮ ಬೀರುತ್ತದೆ"
|
13039
|
+
},
|
13040
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedAnimationHasNoVisibleChange": {
|
13041
|
+
"message": "ಆ್ಯನಿಮೇಶನ್ ಯಾವುದೇ ಗೋಚರ ಬದಲಾವಣೆಯನ್ನು ಹೊಂದಿಲ್ಲ"
|
13042
|
+
},
|
13043
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedEffectHasNonReplaceCompositeMode": {
|
13044
|
+
"message": "ಎಫೆಕ್ಟ್ \"ಬದಲಿಸಿ\" ಹೊರತುಪಡಿಸಿ ಸಂಯೋಜಿತ ಮೋಡ್ ಅನ್ನು ಹೊಂದಿದೆ"
|
13045
|
+
},
|
13046
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedEffectHasUnsupportedTimingParams": {
|
13047
|
+
"message": "ಎಫೆಕ್ಟ್, ಬೆಂಬಲಿಸದ ಸಮಯದ ಪ್ಯಾರಾಮೀಟರ್ಗಳನ್ನು ಹೊಂದಿದೆ"
|
13048
|
+
},
|
13049
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedEffectSuppressedByDevtools": {
|
13050
|
+
"message": "DevTools ಮೂಲಕ ಎಫೆಕ್ಟ್ ಅನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ "
|
13051
|
+
},
|
13052
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedFilterRelatedPropertyMayMovePixels": {
|
13053
|
+
"message": "ಫಿಲ್ಟರ್-ಸಂಬಂಧಿತ ಆಸ್ತಿ ಪಿಕ್ಸೆಲ್ಗಳನ್ನು ಸರಿಸಬಹುದು"
|
13054
|
+
},
|
13055
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedInvalidAnimationOrEffect": {
|
13056
|
+
"message": "ಅಮಾನ್ಯವಾದ ಆ್ಯನಿಮೇಶನ್ ಅಥವಾ ಎಫೆಕ್ಟ್"
|
13057
|
+
},
|
13058
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedMixedKeyframeValueTypes": {
|
13059
|
+
"message": "ಮಿಶ್ರ ಕೀಫ್ರೇಮ್ ಮೌಲ್ಯದ ಪ್ರಕಾರಗಳು"
|
13060
|
+
},
|
13061
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedSVGTargetHasIndependentTransformProperty": {
|
13062
|
+
"message": "SVG ಟಾರ್ಗೆಟ್ ಸ್ವತಂತ್ರ ರೂಪಾಂತರ ಆಸ್ತಿಯನ್ನು ಹೊಂದಿದೆ"
|
13063
|
+
},
|
13064
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedTargetHasCSSOffset": {
|
13065
|
+
"message": "ಟಾರ್ಗೆಟ್ CSS ಆಫ್ಸೆಟ್ ಅನ್ನು ಹೊಂದಿದೆ"
|
13066
|
+
},
|
13067
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedTargetHasIncompatibleAnimations": {
|
13068
|
+
"message": "ಟಾರ್ಗೆಟ್ ಹೊಂದಾಣಿಕೆಯಾಗದ ಮತ್ತೊಂದು ಆ್ಯನಿಮೇಶನ್ ಅನ್ನು ಹೊಂದಿದೆ"
|
13069
|
+
},
|
13070
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedTargetHasInvalidCompositingState": {
|
13071
|
+
"message": "ಟಾರ್ಗೆಟ್ ಅಮಾನ್ಯವಾದ ಸಂಯೋಜನೆಯ ಸ್ಥಿತಿಯನ್ನು ಹೊಂದಿದೆ"
|
13072
|
+
},
|
13073
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedTimelineSourceHasInvalidCompositingState": {
|
13074
|
+
"message": "ಟೈಮ್ಲೈನ್ ಮೂಲವು ಅಮಾನ್ಯವಾದ ಸಂಯೋಜನೆಯ ಸ್ಥಿತಿಯನ್ನು ಹೊಂದಿದೆ"
|
13075
|
+
},
|
13076
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedTransformDependsBoxSize": {
|
13077
|
+
"message": "ಪರಿವರ್ತನೆ-ಸಂಬಂಧಿತ ಆಸ್ತಿ ಬಾಕ್ಸ್ ಗಾತ್ರವನ್ನು ಅವಲಂಬಿಸಿರುತ್ತದೆ"
|
13078
|
+
},
|
13079
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedTransformRelatedPropertyCannotBeAcceleratedOnTarget": {
|
13080
|
+
"message": "ಪರಿವರ್ತನೆ ಸಂಬಂಧಿತ ಆಸ್ತಿಯನ್ನು ಟಾರ್ಗೆಟ್ನಲ್ಲಿ ವೇಗಗೊಳಿಸಲಾಗುವುದಿಲ್ಲ"
|
13081
|
+
},
|
13082
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedUnknownReason": {
|
13083
|
+
"message": "ಅಪರಿಚಿತ ಕಾರಣ"
|
13084
|
+
},
|
13085
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedUnsupportedCSSProperty": {
|
13086
|
+
"message": "{propertyCount,plural, =1{ಬೆಂಬಲಿಸದ CSS ಆಸ್ತಿ: {properties}}one{ಬೆಂಬಲಿಸದ CSS ಆಸ್ತಿಗಳು: {properties}}other{ಬೆಂಬಲಿಸದ CSS ಆಸ್ತಿಗಳು: {properties}}}"
|
13087
|
+
},
|
12824
13088
|
"panels/timeline/TimelineUIUtils.ts | consumedCacheSize": {
|
12825
13089
|
"message": "ಬಳಸಲಾದ ಕ್ಯಾಷ್ನ ಗಾತ್ರ"
|
12826
13090
|
},
|
@@ -13619,6 +13883,12 @@
|
|
13619
13883
|
"panels/timeline/components/InteractionBreakdown.ts | processingDuration": {
|
13620
13884
|
"message": "ಪ್ರಕ್ರಿಯೆಗೊಳಿಸುವ ಅವಧಿ"
|
13621
13885
|
},
|
13886
|
+
"panels/timeline/components/LayoutShiftDetails.ts | animation": {
|
13887
|
+
"message": "ಆ್ಯನಿಮೇಶನ್"
|
13888
|
+
},
|
13889
|
+
"panels/timeline/components/LayoutShiftDetails.ts | cluster": {
|
13890
|
+
"message": "ಲೇಔಟ್ ಶಿಫ್ಟ್ ಕ್ಲಸ್ಟರ್ @ {PH1}"
|
13891
|
+
},
|
13622
13892
|
"panels/timeline/components/LayoutShiftDetails.ts | culprit": {
|
13623
13893
|
"message": "ಕಲ್ಪ್ರಿಟ್"
|
13624
13894
|
},
|
@@ -13631,20 +13901,23 @@
|
|
13631
13901
|
"panels/timeline/components/LayoutShiftDetails.ts | injectedIframe": {
|
13632
13902
|
"message": "ಇಂಜೆಕ್ಟ್ ಮಾಡಲಾದ iframe"
|
13633
13903
|
},
|
13634
|
-
"panels/timeline/components/LayoutShiftDetails.ts | insight": {
|
13635
|
-
"message": "ಒಳನೋಟ"
|
13636
|
-
},
|
13637
13904
|
"panels/timeline/components/LayoutShiftDetails.ts | layoutShift": {
|
13638
|
-
"message": "ಲೇಔಟ್
|
13905
|
+
"message": "ಲೇಔಟ್ ಶಿಫ್ಟ್ @ {PH1}"
|
13639
13906
|
},
|
13640
|
-
"panels/timeline/components/LayoutShiftDetails.ts |
|
13641
|
-
"message": "
|
13907
|
+
"panels/timeline/components/LayoutShiftDetails.ts | nonCompositedAnimation": {
|
13908
|
+
"message": "ಸಂಯೋಜಿತವಲ್ಲದ ಆ್ಯನಿಮೇಶನ್"
|
13909
|
+
},
|
13910
|
+
"panels/timeline/components/LayoutShiftDetails.ts | parentCluster": {
|
13911
|
+
"message": "ಪೋಷಕರ ಕ್ಲಸ್ಟರ್"
|
13642
13912
|
},
|
13643
13913
|
"panels/timeline/components/LayoutShiftDetails.ts | shiftScore": {
|
13644
13914
|
"message": "ಶಿಫ್ಟ್ ಸ್ಕೋರ್"
|
13645
13915
|
},
|
13646
13916
|
"panels/timeline/components/LayoutShiftDetails.ts | startTime": {
|
13647
|
-
"message": "
|
13917
|
+
"message": "ಪ್ರಾರಂಭದ ಸಮಯ"
|
13918
|
+
},
|
13919
|
+
"panels/timeline/components/LayoutShiftDetails.ts | total": {
|
13920
|
+
"message": "ಒಟ್ಟು"
|
13648
13921
|
},
|
13649
13922
|
"panels/timeline/components/LiveMetricsView.ts | allDevices": {
|
13650
13923
|
"message": "ಎಲ್ಲಾ ಸಾಧನಗಳು"
|
@@ -13652,15 +13925,12 @@
|
|
13652
13925
|
"panels/timeline/components/LiveMetricsView.ts | auto": {
|
13653
13926
|
"message": "ಸ್ವಯಂಚಾಲಿತ ({PH1})"
|
13654
13927
|
},
|
13655
|
-
"panels/timeline/components/LiveMetricsView.ts |
|
13656
|
-
"message": "
|
13928
|
+
"panels/timeline/components/LiveMetricsView.ts | clearCurrentLog": {
|
13929
|
+
"message": "ಪ್ರಸ್ತುತ ಲಾಗ್ ಅನ್ನು ತೆರವುಗೊಳಿಸಿ"
|
13657
13930
|
},
|
13658
13931
|
"panels/timeline/components/LiveMetricsView.ts | collectionPeriod": {
|
13659
13932
|
"message": "ಸಂಗ್ರಹಣೆ ಅವಧಿ:"
|
13660
13933
|
},
|
13661
|
-
"panels/timeline/components/LiveMetricsView.ts | considerRealUser": {
|
13662
|
-
"message": "ನೈಜ ಬಳಕೆದಾರರ ಪರಿಸರಗಳನ್ನು ಪರಿಗಣಿಸಿ"
|
13663
|
-
},
|
13664
13934
|
"panels/timeline/components/LiveMetricsView.ts | dateRange": {
|
13665
13935
|
"message": "{PH1} - {PH2}"
|
13666
13936
|
},
|
@@ -13673,21 +13943,39 @@
|
|
13673
13943
|
"panels/timeline/components/LiveMetricsView.ts | disableNetworkCache": {
|
13674
13944
|
"message": "ನೆಟ್ವರ್ಕ್ ಕ್ಯಾಷ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
13675
13945
|
},
|
13946
|
+
"panels/timeline/components/LiveMetricsView.ts | elementRenderDelay": {
|
13947
|
+
"message": "ಎಲಿಮೆಂಟ್ ರೆಂಡರ್ ವಿಳಂಬ"
|
13948
|
+
},
|
13676
13949
|
"panels/timeline/components/LiveMetricsView.ts | environmentSettings": {
|
13677
13950
|
"message": "ಪರಿಸರ ಸೆಟ್ಟಿಂಗ್ಗಳು"
|
13678
13951
|
},
|
13952
|
+
"panels/timeline/components/LiveMetricsView.ts | eventLogs": {
|
13953
|
+
"message": "ಸಂವಹನ ಮತ್ತು ಲೇಔಟ್ ಶಿಫ್ಟ್ ಲಾಗ್ಗಳ ವಿಭಾಗ"
|
13954
|
+
},
|
13679
13955
|
"panels/timeline/components/LiveMetricsView.ts | fieldData": {
|
13680
13956
|
"message": "ಫೀಲ್ಡ್ ಡೇಟಾ"
|
13681
13957
|
},
|
13682
13958
|
"panels/timeline/components/LiveMetricsView.ts | fieldDataLink": {
|
13683
13959
|
"message": "ಫೀಲ್ಡ್ ಡೇಟಾ"
|
13684
13960
|
},
|
13961
|
+
"panels/timeline/components/LiveMetricsView.ts | inpInteraction": {
|
13962
|
+
"message": "INP ಸಂವಹನವು 98ನೇ ಶೇಕಡಾವಾರು ಸಂವಹನದ ವಿಳಂಬವಾಗಿದೆ."
|
13963
|
+
},
|
13964
|
+
"panels/timeline/components/LiveMetricsView.ts | inpInteractionLink": {
|
13965
|
+
"message": "INP ಸಂವಹನ"
|
13966
|
+
},
|
13967
|
+
"panels/timeline/components/LiveMetricsView.ts | inputDelay": {
|
13968
|
+
"message": "ಇನ್ಪುಟ್ ವಿಳಂಬ"
|
13969
|
+
},
|
13685
13970
|
"panels/timeline/components/LiveMetricsView.ts | interactionExcluded": {
|
13686
13971
|
"message": "INP ಅನ್ನು ಸಂವಹನ ವಿಳಂಬಗಳ 98ನೇ ಶೇಕಡಾವನ್ನು ಬಳಸಿಕೊಂಡು ಲೆಕ್ಕಹಾಕಲಾಗುತ್ತದೆ, ಆದ್ದರಿಂದ ಕೆಲವು ಸಂವಹನ ವಿಳಂಬಗಳು INP ಮೌಲ್ಯಕ್ಕಿಂತ ದೊಡ್ಡದಾಗಿರಬಹುದು."
|
13687
13972
|
},
|
13688
13973
|
"panels/timeline/components/LiveMetricsView.ts | interactions": {
|
13689
13974
|
"message": "ಸಂವಹನಗಳು"
|
13690
13975
|
},
|
13976
|
+
"panels/timeline/components/LiveMetricsView.ts | layoutShifts": {
|
13977
|
+
"message": "ಲೇಔಟ್ ಶಿಫ್ಟ್ಗಳು"
|
13978
|
+
},
|
13691
13979
|
"panels/timeline/components/LiveMetricsView.ts | lcpElement": {
|
13692
13980
|
"message": "LCP ಎಲಿಮೆಂಟ್"
|
13693
13981
|
},
|
@@ -13706,12 +13994,6 @@
|
|
13706
13994
|
"panels/timeline/components/LiveMetricsView.ts | mobile": {
|
13707
13995
|
"message": "ಮೊಬೈಲ್"
|
13708
13996
|
},
|
13709
|
-
"panels/timeline/components/LiveMetricsView.ts | mostUsersDesktop": {
|
13710
|
-
"message": "{PH1} ಬಳಕೆದಾರರು ಡೆಸ್ಕ್ಟಾಪ್ ಬಳಸುತ್ತಿದ್ದಾರೆ."
|
13711
|
-
},
|
13712
|
-
"panels/timeline/components/LiveMetricsView.ts | mostUsersMobile": {
|
13713
|
-
"message": "{PH1} ಬಳಕೆದಾರರು ಮೊಬೈಲ್ ಬಳಸುತ್ತಿದ್ದಾರೆ."
|
13714
|
-
},
|
13715
13997
|
"panels/timeline/components/LiveMetricsView.ts | needsDataOption": {
|
13716
13998
|
"message": "{PH1} - ಡೇಟಾ ಇಲ್ಲ"
|
13717
13999
|
},
|
@@ -13721,24 +14003,42 @@
|
|
13721
14003
|
"panels/timeline/components/LiveMetricsView.ts | nextSteps": {
|
13722
14004
|
"message": "ಮುಂದಿನ ಹಂತಗಳು"
|
13723
14005
|
},
|
14006
|
+
"panels/timeline/components/LiveMetricsView.ts | numShifts": {
|
14007
|
+
"message": "{shiftCount,plural, =1{{shiftCount} ಶಿಫ್ಟ್}one{{shiftCount} ಶಿಫ್ಟ್ಗಳು}other{{shiftCount} ಶಿಫ್ಟ್ಗಳು}}"
|
14008
|
+
},
|
13724
14009
|
"panels/timeline/components/LiveMetricsView.ts | originOption": {
|
13725
14010
|
"message": "ಮೂಲ"
|
13726
14011
|
},
|
13727
14012
|
"panels/timeline/components/LiveMetricsView.ts | originOptionWithKey": {
|
13728
14013
|
"message": "ಮೂಲ: {PH1}"
|
13729
14014
|
},
|
13730
|
-
"panels/timeline/components/LiveMetricsView.ts |
|
13731
|
-
"message": "
|
14015
|
+
"panels/timeline/components/LiveMetricsView.ts | presentationDelay": {
|
14016
|
+
"message": "ಪ್ರಸ್ತುತಿ ವಿಳಂಬ"
|
14017
|
+
},
|
14018
|
+
"panels/timeline/components/LiveMetricsView.ts | processingDuration": {
|
14019
|
+
"message": "ಪ್ರಕ್ರಿಯೆಗೊಳಿಸುವ ಅವಧಿ"
|
14020
|
+
},
|
14021
|
+
"panels/timeline/components/LiveMetricsView.ts | resourceLoadDelay": {
|
14022
|
+
"message": "ಮಾಹಿತಿಯ ಮೂಲವನ್ನು ಲೋಡ್ ಮಾಡುವಾಗ ವಿಳಂಬ"
|
14023
|
+
},
|
14024
|
+
"panels/timeline/components/LiveMetricsView.ts | resourceLoadDuration": {
|
14025
|
+
"message": "ಮಾಹಿತಿಯ ಮೂಲ ಲೋಡ್ ಆಗುವ ಅವಧಿ"
|
13732
14026
|
},
|
13733
14027
|
"panels/timeline/components/LiveMetricsView.ts | seeHowYourLocalMetricsCompare": {
|
13734
14028
|
"message": "ನಿಮ್ಮ ಸ್ಥಳೀಯ ಮೆಟ್ರಿಕ್ಗಳು ನೈಜ ಬಳಕೆದಾರರ ಡೇಟಾಗೆ {PH1} ನಲ್ಲಿ ಹೇಗೆ ಹೋಲಿಸುತ್ತವೆ ಎಂಬುದನ್ನು ನೋಡಿ."
|
13735
14029
|
},
|
14030
|
+
"panels/timeline/components/LiveMetricsView.ts | showClsCluster": {
|
14031
|
+
"message": "ತೀರಾ ಕಳಪೆ ಲೇಔಟ್ ಶಿಫ್ಟ್ ಕ್ಲಸ್ಟರ್ಗೆ ಹೋಗಿ."
|
14032
|
+
},
|
13736
14033
|
"panels/timeline/components/LiveMetricsView.ts | showFieldDataForDevice": {
|
13737
14034
|
"message": "ಸಾಧನದ ಪ್ರಕಾರಕ್ಕಾಗಿ ಫೀಲ್ಡ್ ಡೇಟಾವನ್ನು ತೋರಿಸಿ: {PH1}"
|
13738
14035
|
},
|
13739
14036
|
"panels/timeline/components/LiveMetricsView.ts | showFieldDataForPage": {
|
13740
14037
|
"message": "ಫೀಲ್ಡ್ ಡೇಟಾವನ್ನು {PH1} ಗೆ ತೋರಿಸಿ"
|
13741
14038
|
},
|
14039
|
+
"panels/timeline/components/LiveMetricsView.ts | showInpInteraction": {
|
14040
|
+
"message": "INP ಸಂವಹನಕ್ಕೆ ಹೋಗಿ."
|
14041
|
+
},
|
13742
14042
|
"panels/timeline/components/LiveMetricsView.ts | simulateDifferentDevices": {
|
13743
14043
|
"message": "ವಿವಿಧ ಸಾಧನಗಳನ್ನು ಸಿಮ್ಯುಲೇಟ್ ಮಾಡಿ"
|
13744
14044
|
},
|
@@ -13751,6 +14051,9 @@
|
|
13751
14051
|
"panels/timeline/components/LiveMetricsView.ts | theLocalMetricsAre": {
|
13752
14052
|
"message": "{PH1} ಅನ್ನು ನಿಮ್ಮ ನೆಟ್ವರ್ಕ್ ಕನೆಕ್ಷನ್ ಮತ್ತು ಸಾಧನವನ್ನು ಬಳಸಿಕೊಂಡು ಪ್ರಸ್ತುತ ಪುಟದಿಂದ ಕ್ಯಾಪ್ಚರ್ ಮಾಡಲಾಗಿದೆ."
|
13753
14053
|
},
|
14054
|
+
"panels/timeline/components/LiveMetricsView.ts | timeToFirstByte": {
|
14055
|
+
"message": "ಮೊದಲ ಬೈಟ್ನ ಸಮಯ"
|
14056
|
+
},
|
13754
14057
|
"panels/timeline/components/LiveMetricsView.ts | tryDisablingThrottling": {
|
13755
14058
|
"message": "75ನೇ ಶೇಕಡಾ ನೈಜ ಬಳಕೆದಾರರು ಥ್ರಾಟಲಿಂಗ್-ರಹಿತ ಕನೆಕ್ಷನ್ ಅನ್ನು ಹೋಲುವ ನೆಟ್ವರ್ಕ್ ವಿಳಂಬಗಳನ್ನು ಅನುಭವಿಸಿದರು."
|
13756
14059
|
},
|
@@ -13766,12 +14069,18 @@
|
|
13766
14069
|
"panels/timeline/components/LiveMetricsView.ts | useDeviceToolbar": {
|
13767
14070
|
"message": "{PH1} ಗಾಗಿ ಸಾಧನದ ಟೂಲ್ಬಾರ್ ಅನ್ನು ಬಳಸಿ."
|
13768
14071
|
},
|
14072
|
+
"panels/timeline/components/LiveMetricsView.ts | worstCluster": {
|
14073
|
+
"message": "ಅತ್ಯಂತ ಕಳಪೆ ಕ್ಲಸ್ಟರ್"
|
14074
|
+
},
|
13769
14075
|
"panels/timeline/components/MetricCard.ts | betweenRange": {
|
13770
14076
|
"message": "({PH1}-{PH2})"
|
13771
14077
|
},
|
13772
14078
|
"panels/timeline/components/MetricCard.ts | considerTesting": {
|
13773
14079
|
"message": "ನಿಮ್ಮ ಸ್ಥಳೀಯ ಪರೀಕ್ಷೆ ಪರಿಸ್ಥಿತಿಗಳನ್ನು ಪರಿಗಣಿಸಿ"
|
13774
14080
|
},
|
14081
|
+
"panels/timeline/components/MetricCard.ts | duration": {
|
14082
|
+
"message": "ಸ್ಥಳೀಯ ಅವಧಿ (ಮಿ.ಸೆ.)"
|
14083
|
+
},
|
13775
14084
|
"panels/timeline/components/MetricCard.ts | field75thPercentile": {
|
13776
14085
|
"message": "ಫೀಲ್ಡ್ 75ನೇ ಶೇಕಡಾ"
|
13777
14086
|
},
|
@@ -13796,6 +14105,9 @@
|
|
13796
14105
|
"panels/timeline/components/MetricCard.ts | percentage": {
|
13797
14106
|
"message": "{PH1}%"
|
13798
14107
|
},
|
14108
|
+
"panels/timeline/components/MetricCard.ts | phase": {
|
14109
|
+
"message": "ಹಂತ"
|
14110
|
+
},
|
13799
14111
|
"panels/timeline/components/MetricCard.ts | poor": {
|
13800
14112
|
"message": "ಕಳಪೆ"
|
13801
14113
|
},
|
@@ -13901,24 +14213,15 @@
|
|
13901
14213
|
"panels/timeline/components/NetworkRequestDetails.ts | FromServiceWorker": {
|
13902
14214
|
"message": " (service worker ನಿಂದ)"
|
13903
14215
|
},
|
13904
|
-
"panels/timeline/components/NetworkRequestDetails.ts | contentDownloading": {
|
13905
|
-
"message": "ಕಂಟೆಂಟ್ ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ"
|
13906
|
-
},
|
13907
14216
|
"panels/timeline/components/NetworkRequestDetails.ts | decodedBody": {
|
13908
14217
|
"message": "ಡೀಕೋಡ್ ಮಾಡಲಾದ ಮುಖ್ಯ ಭಾಗ"
|
13909
14218
|
},
|
13910
|
-
"panels/timeline/components/NetworkRequestDetails.ts | duration": {
|
13911
|
-
"message": "ಅವಧಿ"
|
13912
|
-
},
|
13913
14219
|
"panels/timeline/components/NetworkRequestDetails.ts | encodedData": {
|
13914
14220
|
"message": "ಎನ್ಕೋಡ್ ಮಾಡಲಾಗಿರುವ ಡೇಟಾ"
|
13915
14221
|
},
|
13916
14222
|
"panels/timeline/components/NetworkRequestDetails.ts | fromCache": {
|
13917
14223
|
"message": "ಕ್ಯಾಷ್ನಿಂದ"
|
13918
14224
|
},
|
13919
|
-
"panels/timeline/components/NetworkRequestDetails.ts | initialPriority": {
|
13920
|
-
"message": "ಆರಂಭಿಕ ಆದ್ಯತೆ"
|
13921
|
-
},
|
13922
14225
|
"panels/timeline/components/NetworkRequestDetails.ts | initiatedBy": {
|
13923
14226
|
"message": "ಇವರಿಂದ ಪ್ರಾರಂಭಿಸಲಾಗಿದೆ"
|
13924
14227
|
},
|
@@ -13937,18 +14240,9 @@
|
|
13937
14240
|
"panels/timeline/components/NetworkRequestDetails.ts | priority": {
|
13938
14241
|
"message": "ಆದ್ಯತೆ"
|
13939
14242
|
},
|
13940
|
-
"panels/timeline/components/NetworkRequestDetails.ts | queuingAndConnecting": {
|
13941
|
-
"message": "ಸರದಿಗೆ ಸೇರಿಸಲಾಗುತ್ತಿದೆ ಮತ್ತು ಸಂಪರ್ಕಿಸಲಾಗುತ್ತಿದೆ"
|
13942
|
-
},
|
13943
14243
|
"panels/timeline/components/NetworkRequestDetails.ts | requestMethod": {
|
13944
14244
|
"message": "ವಿನಂತಿಯ ವಿಧಾನ"
|
13945
14245
|
},
|
13946
|
-
"panels/timeline/components/NetworkRequestDetails.ts | requestSentAndWaiting": {
|
13947
|
-
"message": "ವಿನಂತಿಯನ್ನು ಕಳುಹಿಸಲಾಗಿದೆ ಮತ್ತು ಕಾಯಲಾಗುತ್ತಿದೆ"
|
13948
|
-
},
|
13949
|
-
"panels/timeline/components/NetworkRequestDetails.ts | waitingOnMainThread": {
|
13950
|
-
"message": "ಮುಖ್ಯ ಥ್ರೆಡ್ನಲ್ಲಿ ಕಾಯಲಾಗುತ್ತಿದೆ"
|
13951
|
-
},
|
13952
14246
|
"panels/timeline/components/NetworkRequestDetails.ts | yes": {
|
13953
14247
|
"message": "ಹೌದು"
|
13954
14248
|
},
|
@@ -13988,23 +14282,95 @@
|
|
13988
14282
|
"panels/timeline/components/NetworkThrottlingSelector.ts | presets": {
|
13989
14283
|
"message": "ಪ್ರಿಸೆಟ್ಗಳು"
|
13990
14284
|
},
|
13991
|
-
"panels/timeline/components/
|
13992
|
-
"message": "
|
14285
|
+
"panels/timeline/components/RelatedInsightChips.ts | insightKeyword": {
|
14286
|
+
"message": "ಒಳನೋಟ"
|
13993
14287
|
},
|
13994
|
-
"panels/timeline/components/SidebarAnnotationsTab.ts |
|
13995
|
-
"message": "
|
14288
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | annotationGetStarted": {
|
14289
|
+
"message": "ನಿಮಗಾಗಿ ಮತ್ತು ಇತರರಿಗೆ ಜಾಡಿನ ಟಿಪ್ಪಣಿ ಮಾಡಿ"
|
13996
14290
|
},
|
13997
|
-
"panels/timeline/components/SidebarAnnotationsTab.ts |
|
13998
|
-
"message": "
|
14291
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | deleteAnnotationTutorialDescription": {
|
14292
|
+
"message": "ಅಳಿಸುವಿಕೆ ಫಂಕ್ಷನ್ ಅನ್ನು ಆ್ಯಕ್ಸೆಸ್ ಮಾಡಲು ಟಿಪ್ಪಣಿಗಳ ಟ್ಯಾಬ್ ಅನ್ನು ಆಯ್ಕೆಮಾಡಿದ ನಂತರ ಸೈಡ್ಬಾರ್ನ ಪಟ್ಟಿಯ ಮೇಲೆ ಹೋವರ್ ಮಾಡಿ."
|
13999
14293
|
},
|
14000
|
-
"panels/timeline/components/SidebarAnnotationsTab.ts |
|
14001
|
-
"message": "
|
14294
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | deleteAnnotationTutorialTitle": {
|
14295
|
+
"message": "ಟಿಪ್ಪಣಿಯನ್ನು ಅಳಿಸಿ"
|
14002
14296
|
},
|
14003
|
-
"panels/timeline/components/SidebarAnnotationsTab.ts |
|
14004
|
-
"message": "
|
14297
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | deleteButton": {
|
14298
|
+
"message": "ಟಿಪ್ಪಣಿಯನ್ನು ಅಳಿಸಿ: {PH1}"
|
14299
|
+
},
|
14300
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | entryLabelDescriptionLabel": {
|
14301
|
+
"message": "\"{PH1}\" ಈವೆಂಟ್ ಅನ್ನು \"{PH2}\" ಪಠ್ಯದೊಂದಿಗೆ ಟಿಪ್ಪಣಿ ಮಾಡಲಾಗಿದೆ"
|
14302
|
+
},
|
14303
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | entryLabelTutorialDescription": {
|
14304
|
+
"message": "ಐಟಂ ಮೇಲೆ ಡಬಲ್-ಕ್ಲಿಕ್ ಮಾಡಿ ಮತ್ತು ಐಟಂ ಲೇಬಲ್ ಅನ್ನು ರಚಿಸಲು ಟೈಪ್ ಮಾಡಿ."
|
14305
|
+
},
|
14306
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | entryLabelTutorialTitle": {
|
14307
|
+
"message": "ಐಟಂ ಅನ್ನು ಲೇಬಲ್ ಮಾಡಿ"
|
14308
|
+
},
|
14309
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | entryLinkDescriptionLabel": {
|
14310
|
+
"message": "\"{PH1}\" ಈವೆಂಟ್ ಮತ್ತು \"{PH2}\" ಈವೆಂಟ್ ನಡುವಿನ ಲಿಂಕ್"
|
14311
|
+
},
|
14312
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | entryLinkTutorialDescription": {
|
14313
|
+
"message": "ಐಟಂ ಮೇಲೆ ಡಬಲ್-ಕ್ಲಿಕ್ ಮಾಡಿ, ಪಕ್ಕದಲ್ಲಿರುವ ಬಲಗಡೆಯ ಬಾಣದ ಮೇಲೆ ಕ್ಲಿಕ್ ಮಾಡಿ, ನಂತರ ಗಮ್ಯಸ್ಥಾನದ ಐಟಂ ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಿ."
|
14314
|
+
},
|
14315
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | entryLinkTutorialTitle": {
|
14316
|
+
"message": "ಎರಡು ಐಟಂಗಳನ್ನು ಕನೆಕ್ಟ್ ಮಾಡಿ"
|
14317
|
+
},
|
14318
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | timeRangeDescriptionLabel": {
|
14319
|
+
"message": "{PH1} ರಿಂದ ಪ್ರಾರಂಭವಾಗುವ ಮತ್ತು {PH2} ಕ್ಕೆ ಕೊನೆಗೊಳ್ಳುವ ಸಮಯ ಶ್ರೇಣಿ"
|
14320
|
+
},
|
14321
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | timeRangeTutorialDescription": {
|
14322
|
+
"message": "ಫ್ಲೇಮ್ಚಾರ್ಟ್ನಲ್ಲಿ Shift ಕೀ ಅನ್ನು ಡ್ರ್ಯಾಗ್ ಮಾಡಿ ನಂತರ ಸಮಯ ಶ್ರೇಣಿಯ ಟಿಪ್ಪಣಿಯನ್ನು ರಚಿಸಲು ಟೈಪ್ ಮಾಡಿ."
|
14323
|
+
},
|
14324
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | timeRangeTutorialTitle": {
|
14325
|
+
"message": "ಸಮಯದ ಶ್ರೇಣಿಯನ್ನು ವಿವರಿಸಿ"
|
14326
|
+
},
|
14327
|
+
"panels/timeline/components/SidebarInsightsTab.ts | feedbackButton": {
|
14328
|
+
"message": "ಫೀಡ್ಬ್ಯಾಕ್"
|
14329
|
+
},
|
14330
|
+
"panels/timeline/components/SidebarInsightsTab.ts | feedbackTooltip": {
|
14331
|
+
"message": "ಒಳನೋಟಗಳು ಎಂಬುದು ಪ್ರಾಯೋಗಿಕ ಫೀಚರ್ ಆಗಿದೆ. ನಿಮ್ಮ ಫೀಡ್ಬ್ಯಾಕ್ ನಮಗೆ ಸುಧಾರಿಸಲು ಸಹಾಯ ಮಾಡುತ್ತದೆ."
|
14332
|
+
},
|
14333
|
+
"panels/timeline/components/SidebarSingleInsightSet.ts | metricScore": {
|
14334
|
+
"message": "{PH1}: {PH2} {PH3} ಸ್ಕೋರ್"
|
14335
|
+
},
|
14336
|
+
"panels/timeline/components/Utils.ts | fms": {
|
14337
|
+
"message": "{PH1}[ಮಿ.ಸೆ]()"
|
14338
|
+
},
|
14339
|
+
"panels/timeline/components/Utils.ts | fs": {
|
14340
|
+
"message": "{PH1}[ಸೆ]()"
|
14341
|
+
},
|
14342
|
+
"panels/timeline/components/insights/CLSCulprits.ts | animation": {
|
14343
|
+
"message": "ಆ್ಯನಿಮೇಶನ್"
|
14344
|
+
},
|
14345
|
+
"panels/timeline/components/insights/CLSCulprits.ts | description": {
|
14346
|
+
"message": "ಯಾವುದೇ ಬಳಕೆದಾರರ ಸಂವಹನವಿಲ್ಲದೆ ಎಲಿಮೆಂಟ್ಗಳು ಸರಿಸಿದಾಗ ಲೇಔಟ್ ಶಿಫ್ಟ್ಗಳು ಸಂಭವಿಸುತ್ತವೆ. [ಲೇಔಟ್ ಶಿಫ್ಟ್ಗಳಿಗೆ ಕಾರಣವಾದ ಅಂಶಗಳನ್ನು ಪರಿಶೀಲಿಸಿ](https://web.dev/articles/optimize-cls), ಉದಾಹರಣೆಗೆ ಎಲಿಮೆಂಟ್ಗಳನ್ನು ಸೇರಿಸುವುದು, ತೆಗೆದುಹಾಕುವುದು ಅಥವಾ ಪುಟ ಲೋಡ್ ಆಗುತ್ತಿದ್ದಂತೆ ಅವುಗಳ ಫಾಂಟ್ಗಳು ಬದಲಾಗುವುದು."
|
14347
|
+
},
|
14348
|
+
"panels/timeline/components/insights/CLSCulprits.ts | fontRequest": {
|
14349
|
+
"message": "ಫಾಂಟ್ ವಿನಂತಿ"
|
14350
|
+
},
|
14351
|
+
"panels/timeline/components/insights/CLSCulprits.ts | injectedIframe": {
|
14352
|
+
"message": "ಇಂಜೆಕ್ಟ್ ಮಾಡಲಾದ iframe"
|
14353
|
+
},
|
14354
|
+
"panels/timeline/components/insights/CLSCulprits.ts | layoutShiftCluster": {
|
14355
|
+
"message": "ಲೇಔಟ್ ಶಿಫ್ಟ್ ಕ್ಲಸ್ಟರ್ @ {PH1}"
|
14356
|
+
},
|
14357
|
+
"panels/timeline/components/insights/CLSCulprits.ts | title": {
|
14358
|
+
"message": "ಲೇಔಟ್ ಶಿಫ್ಟ್ ಕಲ್ಪ್ರಿಟ್ಗಳು"
|
14359
|
+
},
|
14360
|
+
"panels/timeline/components/insights/CLSCulprits.ts | topCulprits": {
|
14361
|
+
"message": "ಟಾಪ್ ಲೇಔಟ್ ಶಿಫ್ಟ್ ಕಲ್ಪ್ರಿಟ್ಗಳು"
|
14005
14362
|
},
|
14006
|
-
"panels/timeline/components/
|
14007
|
-
"message": "
|
14363
|
+
"panels/timeline/components/insights/CLSCulprits.ts | worstCluster": {
|
14364
|
+
"message": "ಅತ್ಯಂತ ಕಳಪೆ ಕ್ಲಸ್ಟರ್"
|
14365
|
+
},
|
14366
|
+
"panels/timeline/components/insights/CLSCulprits.ts | worstLayoutShiftCluster": {
|
14367
|
+
"message": "ತೀರಾ ಕಳಪೆ ಲೇಔಟ್ ಶಿಫ್ಟ್ ಕ್ಲಸ್ಟರ್"
|
14368
|
+
},
|
14369
|
+
"panels/timeline/components/insights/DocumentLatency.ts | description": {
|
14370
|
+
"message": "ನಿಮ್ಮ ಮೊದಲ ನೆಟ್ವರ್ಕ್ ವಿನಂತಿಯು ಅತ್ಯಂತ ಪ್ರಮುಖವಾಗಿದೆ. ರೀಡೈರೆಕ್ಟ್ಗಳನ್ನು ತಪ್ಪಿಸುವ ಮೂಲಕ, ವೇಗದ ಸರ್ವರ್ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳುವ ಮೂಲಕ ಮತ್ತು ಪಠ್ಯ ಕಂಪ್ರೆಶನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವ ಮೂಲಕ ವಿಳಂಬವನ್ನು ಕಡಿಮೆ ಮಾಡಿ."
|
14371
|
+
},
|
14372
|
+
"panels/timeline/components/insights/DocumentLatency.ts | failedAriaLabel": {
|
14373
|
+
"message": "ಒಳನೋಟದ ಪರಿಶೀಲನೆ ವಿಫಲವಾಗಿದೆ: {PH1}"
|
14008
14374
|
},
|
14009
14375
|
"panels/timeline/components/insights/DocumentLatency.ts | failedRedirects": {
|
14010
14376
|
"message": "ರೀಡೈರೆಕ್ಟ್ಗಳನ್ನು ಹೊಂದಿತ್ತು"
|
@@ -14024,8 +14390,35 @@
|
|
14024
14390
|
"panels/timeline/components/insights/DocumentLatency.ts | passingTextCompression": {
|
14025
14391
|
"message": "ಪಠ್ಯ ಕಂಪ್ರೆಶನ್ ಅನ್ನು ಅನ್ವಯಿಸುತ್ತದೆ"
|
14026
14392
|
},
|
14393
|
+
"panels/timeline/components/insights/DocumentLatency.ts | redirectsLabel": {
|
14394
|
+
"message": "ರೀಡೈರೆಕ್ಟ್ಗಳು"
|
14395
|
+
},
|
14396
|
+
"panels/timeline/components/insights/DocumentLatency.ts | serverResponseTimeLabel": {
|
14397
|
+
"message": "ಸರ್ವರ್ ಪ್ರತಿಕ್ರಿಯೆಯ ಸಮಯ"
|
14398
|
+
},
|
14399
|
+
"panels/timeline/components/insights/DocumentLatency.ts | successAriaLabel": {
|
14400
|
+
"message": "ಒಳನೋಟ ಪರಿಶೀಲನೆಯ ಯಶಸ್ವಿಯಾಗಿದೆ: {PH1}"
|
14401
|
+
},
|
14402
|
+
"panels/timeline/components/insights/DocumentLatency.ts | title": {
|
14403
|
+
"message": "ಡಾಕ್ಯುಮೆಂಟ್ ವಿನಂತಿಯ ವಿಳಂಬ"
|
14404
|
+
},
|
14405
|
+
"panels/timeline/components/insights/DocumentLatency.ts | uncompressedDownload": {
|
14406
|
+
"message": "ಕಂಪ್ರೆಸ್ ಮಾಡದ ಡೌನ್ಲೋಡ್"
|
14407
|
+
},
|
14408
|
+
"panels/timeline/components/insights/FontDisplay.ts | description": {
|
14409
|
+
"message": "ಪಠ್ಯವು ಸ್ಥಿರವಾಗಿ ಗೋಚರಿಸುವುದನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಲು swap ಅಥವಾ optional ನ [ಫಾಂಟ್-ಡಿಸ್ಪ್ಲೇ](https://developer.chrome.com/blog/font-display) ಅನ್ನು ಬಳಸುವುದನ್ನು ಪರಿಗಣಿಸಿ. [ಫಾಂಟ್ ಮೆಟ್ರಿಕ್ನಲ್ಲಿನ ಓವರ್ರೈಡ್ಗಳಿಂದ](https://developer.chrome.com/blog/font-fallbacks) ಲೇಔಟ್ ಬದಲಾವಣೆಗಳನ್ನು ಕಡಿಮೆ ಮಾಡಲು swap ಅನ್ನು ಮತ್ತಷ್ಟು ಆಪ್ಟಿಮೈಸ್ ಮಾಡಬಹುದು."
|
14410
|
+
},
|
14411
|
+
"panels/timeline/components/insights/FontDisplay.ts | fontColumn": {
|
14412
|
+
"message": "ಫಾಂಟ್"
|
14413
|
+
},
|
14414
|
+
"panels/timeline/components/insights/FontDisplay.ts | title": {
|
14415
|
+
"message": "ಫಾಂಟ್ ಡಿಸ್ಪ್ಲೇ"
|
14416
|
+
},
|
14417
|
+
"panels/timeline/components/insights/FontDisplay.ts | wastedTimeColumn": {
|
14418
|
+
"message": "ವ್ಯರ್ಥವಾದ ಸಮಯ"
|
14419
|
+
},
|
14027
14420
|
"panels/timeline/components/insights/InteractionToNextPaint.ts | description": {
|
14028
|
-
"message": "
|
14421
|
+
"message": "ದೀರ್ಘವಾದ ಹಂತದೊಂದಿಗೆ ತನಿಖೆಯನ್ನು ಪ್ರಾರಂಭಿಸಿ. [ವಿಳಂಬವನ್ನು ಕಡಿಮೆ ಮಾಡಬಹುದು](https://web.dev/articles/optimize-inp#optimize_interactions). ಪ್ರಕ್ರಿಯೆಗೊಳಿಸುವ ಅವಧಿಯನ್ನು ಕಡಿಮೆ ಮಾಡಲು, [ಮುಖ್ಯ ಥ್ರೆಡ್ ವೆಚ್ಚಗಳನ್ನು ಆಪ್ಟಿಮೈಸ್ ಮಾಡಿ](https://web.dev/articles/optimize-long-tasks) ಇದು ಸಾಮಾನ್ಯವಾಗಿ JS ಆಗಿದೆ."
|
14029
14422
|
},
|
14030
14423
|
"panels/timeline/components/insights/InteractionToNextPaint.ts | duration": {
|
14031
14424
|
"message": "ಅವಧಿ"
|
@@ -14033,9 +14426,6 @@
|
|
14033
14426
|
"panels/timeline/components/insights/InteractionToNextPaint.ts | inputDelay": {
|
14034
14427
|
"message": "ಇನ್ಪುಟ್ ವಿಳಂಬ"
|
14035
14428
|
},
|
14036
|
-
"panels/timeline/components/insights/InteractionToNextPaint.ts | longestInteraction": {
|
14037
|
-
"message": "ಅತ್ಯಂತ ದೀರ್ಘ ಸಂವಹನ"
|
14038
|
-
},
|
14039
14429
|
"panels/timeline/components/insights/InteractionToNextPaint.ts | phase": {
|
14040
14430
|
"message": "ಹಂತ"
|
14041
14431
|
},
|
@@ -14048,6 +14438,12 @@
|
|
14048
14438
|
"panels/timeline/components/insights/InteractionToNextPaint.ts | title": {
|
14049
14439
|
"message": "ಹಂತದ ಪ್ರಕಾರ INP"
|
14050
14440
|
},
|
14441
|
+
"panels/timeline/components/insights/LCPDiscovery.ts | description": {
|
14442
|
+
"message": "HTML ನಿಂದ LCP ಇಮೇಜ್ ಅನ್ನು ತಕ್ಷಣವೇ [ಕಂಡುಹಿಡಿಯುವಂತೆ](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) ಮಾಡುವ ಮೂಲಕ LCP ಅನ್ನು ಆಪ್ಟಿಮೈಜ್ ಮಾಡಿ ಮತ್ತು [ಲೇಜಿ ಲೋಡಿಂಗ್ ಅನ್ನು ತಪ್ಪಿಸಿ](https://web.dev/articles/lcp-lazy-loading)"
|
14443
|
+
},
|
14444
|
+
"panels/timeline/components/insights/LCPDiscovery.ts | failedAriaLabel": {
|
14445
|
+
"message": "ಒಳನೋಟದ ಪರಿಶೀಲನೆ ವಿಫಲವಾಗಿದೆ: {PH1}"
|
14446
|
+
},
|
14051
14447
|
"panels/timeline/components/insights/LCPDiscovery.ts | fetchPriorityApplied": {
|
14052
14448
|
"message": "fetchpriority=ಹೆಚ್ಚು ಅನ್ವಯಿಸಲಾಗಿದೆ"
|
14053
14449
|
},
|
@@ -14060,11 +14456,26 @@
|
|
14060
14456
|
"panels/timeline/components/insights/LCPDiscovery.ts | requestDiscoverable": {
|
14061
14457
|
"message": "ಆರಂಭಿಕ ದಾಖಲೆಯಲ್ಲಿ ವಿನಂತಿಯನ್ನು ಕಂಡುಹಿಡಿಯಬಹುದು"
|
14062
14458
|
},
|
14459
|
+
"panels/timeline/components/insights/LCPDiscovery.ts | successAriaLabel": {
|
14460
|
+
"message": "ಒಳನೋಟ ಪರಿಶೀಲನೆಯ ಯಶಸ್ವಿಯಾಗಿದೆ: {PH1}"
|
14461
|
+
},
|
14462
|
+
"panels/timeline/components/insights/LCPDiscovery.ts | title": {
|
14463
|
+
"message": "LCP ವಿನಂತಿ ಅನ್ವೇಷಣೆ"
|
14464
|
+
},
|
14465
|
+
"panels/timeline/components/insights/LCPPhases.ts | description": {
|
14466
|
+
"message": "ಪ್ರತಿಯೊಂದು [ಹಂತವು ಸುಧಾರಣೆಗಾಗಿ ನಿರ್ದಿಷ್ಟ ತಂತ್ರಗಳನ್ನು ಹೊಂದಿದೆ](https://web.dev/articles/optimize-lcp#lcp-breakdown). ಸಾಮಾನ್ಯವಾಗಿ, ಹೆಚ್ಚಿನ LCP ಯ ಹೆಚ್ಚಿನ ಸಮಯವನ್ನು ಸಂಪನ್ಮೂಲಗಳನ್ನು ಲೋಡ್ ಮಾಡುವ ಪ್ರಕ್ರಿಯೆಯಲ್ಲಿ ಕಳೆಯಬೇಕು, ವಿಳಂಬದ ಮೇಲೆ ಅಲ್ಲ."
|
14467
|
+
},
|
14063
14468
|
"panels/timeline/components/insights/LCPPhases.ts | elementRenderDelay": {
|
14064
14469
|
"message": "ಎಲಿಮೆಂಟ್ ರೆಂಡರ್ ವಿಳಂಬ"
|
14065
14470
|
},
|
14471
|
+
"panels/timeline/components/insights/LCPPhases.ts | percentLCP": {
|
14472
|
+
"message": "LCP ಯ %"
|
14473
|
+
},
|
14474
|
+
"panels/timeline/components/insights/LCPPhases.ts | phase": {
|
14475
|
+
"message": "ಹಂತ"
|
14476
|
+
},
|
14066
14477
|
"panels/timeline/components/insights/LCPPhases.ts | resourceLoadDelay": {
|
14067
|
-
"message": "ಮಾಹಿತಿಯ ಮೂಲವನ್ನು ಲೋಡ್
|
14478
|
+
"message": "ಮಾಹಿತಿಯ ಮೂಲವನ್ನು ಲೋಡ್ ಮಾಡುವಾಗ ವಿಳಂಬ"
|
14068
14479
|
},
|
14069
14480
|
"panels/timeline/components/insights/LCPPhases.ts | resourceLoadDuration": {
|
14070
14481
|
"message": "ಮಾಹಿತಿಯ ಮೂಲ ಲೋಡ್ ಆಗುವ ಅವಧಿ"
|
@@ -14072,12 +14483,51 @@
|
|
14072
14483
|
"panels/timeline/components/insights/LCPPhases.ts | timeToFirstByte": {
|
14073
14484
|
"message": "ಮೊದಲ ಬೈಟ್ನ ಸಮಯ"
|
14074
14485
|
},
|
14486
|
+
"panels/timeline/components/insights/LCPPhases.ts | title": {
|
14487
|
+
"message": "ಹಂತದ ಪ್ರಕಾರ LCP"
|
14488
|
+
},
|
14075
14489
|
"panels/timeline/components/insights/RenderBlocking.ts | description": {
|
14076
14490
|
"message": "ವಿನಂತಿಗಳು ಪುಟದ ಆರಂಭಿಕ ರೆಂಡರ್ ಅನ್ನು ನಿರ್ಬಂಧಿಸುತ್ತಿವೆ, ಇದು LCP ನಲ್ಲಿ ವಿಳಂಬ ಉಂಟುಮಾಡಬಹುದು. [ಡಿಫರ್ ಮಾಡುವುದು ಅಥವಾ ಇನ್ಲೈನ್ ಮಾಡುವುದು](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources/) ಈ ನೆಟ್ವರ್ಕ್ ವಿನಂತಿಗಳನ್ನು ಮುಖ್ಯ ಪಾಥ್ನಿಂದ ತೆರವುಗೊಳಿಸಬಹುದು."
|
14077
14491
|
},
|
14492
|
+
"panels/timeline/components/insights/RenderBlocking.ts | duration": {
|
14493
|
+
"message": "ಅವಧಿ"
|
14494
|
+
},
|
14495
|
+
"panels/timeline/components/insights/RenderBlocking.ts | renderBlockingRequest": {
|
14496
|
+
"message": "ವಿನಂತಿ"
|
14497
|
+
},
|
14498
|
+
"panels/timeline/components/insights/RenderBlocking.ts | title": {
|
14499
|
+
"message": "ನಿರ್ಬಂಧಿಸುವ ವಿನಂತಿಗಳನ್ನು ಸಲ್ಲಿಸಿ"
|
14500
|
+
},
|
14078
14501
|
"panels/timeline/components/insights/SidebarInsight.ts | estimatedSavings": {
|
14079
14502
|
"message": "ಅಂದಾಜು ಉಳಿತಾಯಗಳು: {PH1}"
|
14080
14503
|
},
|
14504
|
+
"panels/timeline/components/insights/SidebarInsight.ts | estimatedSavingsTimingAndBytes": {
|
14505
|
+
"message": "ಅಂದಾಜು ಉಳಿತಾಯ: {PH1} ಮತ್ತು {PH2}"
|
14506
|
+
},
|
14507
|
+
"panels/timeline/components/insights/SidebarInsight.ts | viewDetails": {
|
14508
|
+
"message": "{PH1} ನ ವಿವರಗಳನ್ನು ವೀಕ್ಷಿಸಿ"
|
14509
|
+
},
|
14510
|
+
"panels/timeline/components/insights/SlowCSSSelector.ts | description": {
|
14511
|
+
"message": "ಮರು ಲೆಕ್ಕಾಚಾರದ ಶೈಲಿಯ ವೆಚ್ಚಗಳು ಅಧಿಕವಾಗಿದ್ದರೆ, ಸೆಲೆಕ್ಟರ್ ಅನ್ನು ಉತ್ತಮಗೊಳಿಸುವುದರಿಂದ ಅವುಗಳನ್ನು ಕಡಿಮೆ ಮಾಡಬಹುದು. ಹೆಚ್ಚು ಕಳೆದ ಸಮಯ ಮತ್ತು ಹೆಚ್ಚಿನ ನಿಧಾನ-ಪಥದ ಶೇಕಡಾವಾರಿನ ಮೂಲಕ [ಸೆಲೆಕ್ಟರ್ಗಳನ್ನು ಆಪ್ಟಿಮೈಜ್ ಮಾಡಿ](https://developer.chrome.com/docs/devtools/performance/selector-stats). ಸರಳವಾದ ಸೆಲೆಕ್ಟರ್ಗಳು, ಕಡಿಮೆ ಸೆಲೆಕ್ಟರ್ಗಳು, ಚಿಕ್ಕದಾದ DOM ಮತ್ತು ಶಾಲೋ DOM ಹೊಂದಾಣಿಕೆಯ ದರಗಳನ್ನು ಕಡಿಮೆ ಮಾಡುತ್ತದೆ."
|
14512
|
+
},
|
14513
|
+
"panels/timeline/components/insights/SlowCSSSelector.ts | elapsed": {
|
14514
|
+
"message": "ತೆಗೆದುಕೊಂಡ ಸಮಯ"
|
14515
|
+
},
|
14516
|
+
"panels/timeline/components/insights/SlowCSSSelector.ts | matchAttempts": {
|
14517
|
+
"message": "ಹೊಂದಾಣಿಕೆಯ ಪ್ರಯತ್ನಗಳು"
|
14518
|
+
},
|
14519
|
+
"panels/timeline/components/insights/SlowCSSSelector.ts | matchCount": {
|
14520
|
+
"message": "ಹೊಂದಾಣಿಕೆಯ ಎಣಿಕೆ"
|
14521
|
+
},
|
14522
|
+
"panels/timeline/components/insights/SlowCSSSelector.ts | title": {
|
14523
|
+
"message": "CSS ಸೆಲೆಕ್ಟರ್ ದರ"
|
14524
|
+
},
|
14525
|
+
"panels/timeline/components/insights/SlowCSSSelector.ts | topSelectors": {
|
14526
|
+
"message": "ಟಾಪ್ ಸೆಲೆಕ್ಟರ್ಗಳು"
|
14527
|
+
},
|
14528
|
+
"panels/timeline/components/insights/SlowCSSSelector.ts | total": {
|
14529
|
+
"message": "ಒಟ್ಟು"
|
14530
|
+
},
|
14081
14531
|
"panels/timeline/components/insights/ThirdParties.ts | columnBlockingTime": {
|
14082
14532
|
"message": "ನಿರ್ಬಂಧಿಸಿದ ಸಮಯ"
|
14083
14533
|
},
|
@@ -14088,13 +14538,28 @@
|
|
14088
14538
|
"message": "ವರ್ಗಾವಣೆಯ ಗಾತ್ರ"
|
14089
14539
|
},
|
14090
14540
|
"panels/timeline/components/insights/ThirdParties.ts | description": {
|
14091
|
-
"message": "
|
14541
|
+
"message": "ಥರ್ಡ್ ಪಾರ್ಟಿ ಕೋಡ್, ಲೋಡ್ ಪರ್ಫಾರ್ಮೆನ್ಸ್ನ ಮೇಲೆ ಗಣನೀಯವಾಗಿ ಪ್ರಭಾವ ಬೀರಬಹುದು. ನಿಮ್ಮ ಪುಟದ ಕಂಟೆಂಟ್ಗೆ ಆದ್ಯತೆ ನೀಡಲು [ಥರ್ಡ್ ಪಾರ್ಟಿ ಕೋಡ್ ಅನ್ನು ಲೋಡ್ ಮಾಡುವುದನ್ನು ಕಡಿಮೆ ಮಾಡಿ ಮತ್ತು ಮುಂದೂಡಿ](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/)."
|
14092
14542
|
},
|
14093
14543
|
"panels/timeline/components/insights/ThirdParties.ts | title": {
|
14094
|
-
"message": "
|
14544
|
+
"message": "ಥರ್ಡ್ ಪಾರ್ಟಿಗಳು"
|
14095
14545
|
},
|
14096
14546
|
"panels/timeline/components/insights/Viewport.ts | description": {
|
14097
|
-
"message": "ವ್ಯೂವ್ಪೋರ್ಟ್
|
14547
|
+
"message": "ಪುಟದ ವ್ಯೂವ್ಪೋರ್ಟ್ ಅನ್ನು ಮೊಬೈಲ್ ಸಾಧನಗಳಿಗಾಗಿ ಆಪ್ಟಿಮೈಸ್ ಮಾಡಲಾಗಿಲ್ಲ, ಆದ್ದರಿಂದ ಟ್ಯಾಪ್ ಸಂವಹನಗಳು [300 ಮಿ.ಸೆ ವರೆಗೆ ವಿಳಂಬವಾಗಬಹುದು](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/)."
|
14548
|
+
},
|
14549
|
+
"panels/timeline/components/insights/Viewport.ts | title": {
|
14550
|
+
"message": "ವ್ಯೂವ್ಪೋರ್ಟ್ ಅನ್ನು ಮೊಬೈಲ್ಗಾಗಿ ಆಪ್ಟಿಮೈಸ್ ಮಾಡಲಾಗಿಲ್ಲ"
|
14551
|
+
},
|
14552
|
+
"panels/timeline/overlays/components/EntriesLinkOverlay.ts | diagram": {
|
14553
|
+
"message": "ನಮೂದುಗಳ ನಡುವಿನ ಲಿಂಕ್"
|
14554
|
+
},
|
14555
|
+
"panels/timeline/overlays/components/EntryLabelOverlay.ts | entryLabel": {
|
14556
|
+
"message": "ಎಂಟ್ರಿ ಲೇಬಲ್"
|
14557
|
+
},
|
14558
|
+
"panels/timeline/overlays/components/EntryLabelOverlay.ts | inputTextPrompt": {
|
14559
|
+
"message": "ಟಿಪ್ಪಣಿಯ ಲೇಬಲ್ ಅನ್ನು ನಮೂದಿಸಿ"
|
14560
|
+
},
|
14561
|
+
"panels/timeline/overlays/components/TimeRangeOverlay.ts | timeRange": {
|
14562
|
+
"message": "ಸಮಯ ಶ್ರೇಣಿ"
|
14098
14563
|
},
|
14099
14564
|
"panels/timeline/timeline-meta.ts | hideChromeFrameInLayersView": {
|
14100
14565
|
"message": "ಲೇಯರ್ಗಳ ವೀಕ್ಷಣೆಯಲ್ಲಿ chrome ಫ್ರೇಮ್ ಅನ್ನು ಮರೆಮಾಡಿ"
|
@@ -14135,6 +14600,18 @@
|
|
14135
14600
|
"panels/timeline/timeline-meta.ts | stop": {
|
14136
14601
|
"message": "ನಿಲ್ಲಿಸಿ"
|
14137
14602
|
},
|
14603
|
+
"panels/utils/utils.ts | requestContentHeadersOverridden": {
|
14604
|
+
"message": "ವಿನಂತಿಯ ಕಂಟೆಂಟ್ ಮತ್ತು ಹೆಡರ್ಗಳೆರಡನ್ನೂ ಓವರ್ರೈಡ್ ಮಾಡಲಾಗಿದೆ"
|
14605
|
+
},
|
14606
|
+
"panels/utils/utils.ts | requestContentOverridden": {
|
14607
|
+
"message": "ವಿನಂತಿಯ ಕಂಟೆಂಟ್ ಅನ್ನು ಓವರ್ರೈಡ್ ಮಾಡಲಾಗಿದೆ"
|
14608
|
+
},
|
14609
|
+
"panels/utils/utils.ts | requestHeadersOverridden": {
|
14610
|
+
"message": "ವಿನಂತಿಯ ಹೆಡರ್ಗಳನ್ನು ಓವರ್ರೈಡ್ ಮಾಡಲಾಗಿದೆ"
|
14611
|
+
},
|
14612
|
+
"panels/utils/utils.ts | thirdPartyPhaseout": {
|
14613
|
+
"message": "Chrome ಫ್ಲ್ಯಾಗ್ಗಳಿಂದಾಗಿ ಅಥವಾ ಬ್ರೌಸರ್ ಕಾನ್ಫಿಗರೇಶನ್ನಿಂದಾಗಿ ಈ ವಿನಂತಿಗಾಗಿ ಕುಕಿಗಳನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ. ಸಮಸ್ಯೆಗಳ ಪ್ಯಾನೆಲ್ನಲ್ಲಿ ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ."
|
14614
|
+
},
|
14138
14615
|
"panels/web_audio/AudioContextContentBuilder.ts | callbackBufferSize": {
|
14139
14616
|
"message": "ಕಾಲ್ಬ್ಯಾಕ್ ಬಫರ್ ಗಾತ್ರ"
|
14140
14617
|
},
|
@@ -14154,7 +14631,7 @@
|
|
14154
14631
|
"message": "ನಮೂನೆ ದರ"
|
14155
14632
|
},
|
14156
14633
|
"panels/web_audio/AudioContextContentBuilder.ts | state": {
|
14157
|
-
"message": "
|
14634
|
+
"message": "ರಾಜ್ಯ"
|
14158
14635
|
},
|
14159
14636
|
"panels/web_audio/AudioContextSelector.ts | audioContextS": {
|
14160
14637
|
"message": "ಆಡಿಯೋ ಸಂದರ್ಭ: {PH1}"
|
@@ -14345,6 +14822,9 @@
|
|
14345
14822
|
"ui/components/issue_counter/IssueLinkIcon.ts | issueUnavailable": {
|
14346
14823
|
"message": "ಈ ಸಮಯದಲ್ಲಿ ಸಮಸ್ಯೆ ಲಭ್ಯವಿಲ್ಲ"
|
14347
14824
|
},
|
14825
|
+
"ui/components/markdown_view/CodeBlock.ts | code": {
|
14826
|
+
"message": "ಕೋಡ್"
|
14827
|
+
},
|
14348
14828
|
"ui/components/markdown_view/CodeBlock.ts | copied": {
|
14349
14829
|
"message": "ಕ್ಲಿಪ್ಬೋರ್ಡ್ಗೆ ಕಾಪಿ ಮಾಡಲಾಗಿದೆ"
|
14350
14830
|
},
|
@@ -15116,9 +15596,15 @@
|
|
15116
15596
|
"ui/legacy/components/perf_ui/FilmStripView.ts | screenshotForSSelectToView": {
|
15117
15597
|
"message": "{PH1} ಗಾಗಿ ಸ್ಕ್ರೀನ್ಶಾಟ್ - ಹಿಂದಿನ ವಿನಂತಿಗಳನ್ನು ವೀಕ್ಷಿಸಲು ಆಯ್ಕೆಮಾಡಿ."
|
15118
15598
|
},
|
15599
|
+
"ui/legacy/components/perf_ui/FlameChart.ts | deleteAnnotations": {
|
15600
|
+
"message": "ಟಿಪ್ಪಣಿಗಳನ್ನು ಅಳಿಸಿ"
|
15601
|
+
},
|
15119
15602
|
"ui/legacy/components/perf_ui/FlameChart.ts | enterTrackConfigurationMode": {
|
15120
15603
|
"message": "ಟ್ರ್ಯಾಕ್ಗಳನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಿ…"
|
15121
15604
|
},
|
15605
|
+
"ui/legacy/components/perf_ui/FlameChart.ts | eventSelectedFromGroup": {
|
15606
|
+
"message": "{PH2} ರೊಳಗೆ {PH1} ಈವೆಂಟ್ ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ. ಈ ಈವೆಂಟ್ ಅನ್ನು ಫೋಕಸ್ ಮಾಡಲು \"Enter\" ಕೀ ಒತ್ತಿರಿ."
|
15607
|
+
},
|
15122
15608
|
"ui/legacy/components/perf_ui/FlameChart.ts | exitTrackConfigurationMode": {
|
15123
15609
|
"message": "ಟ್ರ್ಯಾಕ್ಗಳನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡುವುದನ್ನು ಮುಗಿಸಿ"
|
15124
15610
|
},
|
@@ -15303,7 +15789,7 @@
|
|
15303
15789
|
"message": "ಲೋಡ್ ಆಗುತ್ತಿದೆ…"
|
15304
15790
|
},
|
15305
15791
|
"ui/legacy/components/source_frame/SourceFrame.ts | prettyPrint": {
|
15306
|
-
"message": "ಅಂದವಾದ
|
15792
|
+
"message": "ಅಂದವಾದ ಪ್ರಿಂಟ್"
|
15307
15793
|
},
|
15308
15794
|
"ui/legacy/components/source_frame/SourceFrame.ts | source": {
|
15309
15795
|
"message": "ಮೂಲ"
|
@@ -15374,6 +15860,9 @@
|
|
15374
15860
|
"ui/legacy/components/utils/JSPresentationUtils.ts | showLess": {
|
15375
15861
|
"message": "ಕಡಿಮೆ ತೋರಿಸಿ"
|
15376
15862
|
},
|
15863
|
+
"ui/legacy/components/utils/JSPresentationUtils.ts | showMoreFrames": {
|
15864
|
+
"message": "ನಿರ್ಲಕ್ಷಿಸಬೇಕಾದವುಗಳ ಪಟ್ಟಿಯಲ್ಲಿರುವ ಫ್ರೇಮ್ಗಳನ್ನು ತೋರಿಸಿ"
|
15865
|
+
},
|
15377
15866
|
"ui/legacy/components/utils/JSPresentationUtils.ts | unknownSource": {
|
15378
15867
|
"message": "ಅಪರಿಚಿತ"
|
15379
15868
|
},
|