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
|
},
|
@@ -249,7 +252,7 @@
|
|
249
252
|
"message": "\"{PH1}\" профилі басталды."
|
250
253
|
},
|
251
254
|
"core/sdk/DebuggerModel.ts | block": {
|
252
|
-
"message": "
|
255
|
+
"message": "Блок"
|
253
256
|
},
|
254
257
|
"core/sdk/DebuggerModel.ts | catchBlock": {
|
255
258
|
"message": "Catch блогы"
|
@@ -273,7 +276,7 @@
|
|
273
276
|
"message": "Модуль"
|
274
277
|
},
|
275
278
|
"core/sdk/DebuggerModel.ts | returnValue": {
|
276
|
-
"message": "
|
279
|
+
"message": "Қайтару мәні"
|
277
280
|
},
|
278
281
|
"core/sdk/DebuggerModel.ts | script": {
|
279
282
|
"message": "Скрипт"
|
@@ -282,10 +285,10 @@
|
|
282
285
|
"message": "With блогы"
|
283
286
|
},
|
284
287
|
"core/sdk/NetworkManager.ts | fast4G": {
|
285
|
-
"message": "
|
288
|
+
"message": "Жылдам 4G"
|
286
289
|
},
|
287
290
|
"core/sdk/NetworkManager.ts | fastG": {
|
288
|
-
"message": "
|
291
|
+
"message": "Баяу 4G"
|
289
292
|
},
|
290
293
|
"core/sdk/NetworkManager.ts | noContentForPreflight": {
|
291
294
|
"message": "Алдын ала жіберілетін сұрау үшін қолжетімді контент жоқ."
|
@@ -354,10 +357,10 @@
|
|
354
357
|
"message": "Бұл cookie файлына жад пайдаланудың API интерфейсі рұқсат берді. Толық ақпарат: goo.gle/saa"
|
355
358
|
},
|
356
359
|
"core/sdk/NetworkRequest.ts | exemptionReasonTPCDDeprecationTrial": {
|
357
|
-
"message": "
|
360
|
+
"message": "Бұл cookie файлына үшінші тарап cookie файлы ескі функциясының сынақ нұсқасы арқылы рұқсат берілді. Толық ақпарат: goo.gle/ps-dt."
|
358
361
|
},
|
359
362
|
"core/sdk/NetworkRequest.ts | exemptionReasonTPCDHeuristics": {
|
360
|
-
"message": "
|
363
|
+
"message": "Бұл cookie файлына үшінші тарап cookie файлын қолданыстан шығарудың эвристикасы арқылы рұқсат берілді. Толық ақпарат: goo.gle/hbe"
|
361
364
|
},
|
362
365
|
"core/sdk/NetworkRequest.ts | exemptionReasonTPCDMetadata": {
|
363
366
|
"message": "Бұл cookie файлына үшінші тарап cookie файлының ескі функцияның сынақ нұсқасының кешіктіру мерзімі арқылы рұқсат берілді. Толық ақпарат: goo.gle/dt-grace."
|
@@ -366,7 +369,7 @@
|
|
366
369
|
"message": "Бұл cookie файлына жад пайдаланудың жоғары деңгейлі API интерфейсі рұқсат берді. Толық ақпарат: goo.gle/saa-top"
|
367
370
|
},
|
368
371
|
"core/sdk/NetworkRequest.ts | exemptionReasonTopLevelTPCDDeprecationTrial": {
|
369
|
-
"message": "
|
372
|
+
"message": "Бұл cookie файлына жоғарғы деңгейдегі үшінші тарап cookie файлы ескі функциясының сынақ нұсқасы арқылы рұқсат берілді. Толық ақпарат: goo.gle/ps-dt."
|
370
373
|
},
|
371
374
|
"core/sdk/NetworkRequest.ts | exemptionReasonUserSetting": {
|
372
375
|
"message": "Бұл cookie файлына пайдаланушы параметрі арқылы рұқсат берілді"
|
@@ -411,7 +414,7 @@
|
|
411
414
|
"message": "Бұл қосылымның схемасында cookie файлдарын сақтауға рұқсат жоқ."
|
412
415
|
},
|
413
416
|
"core/sdk/NetworkRequest.ts | thirdPartyPhaseout": {
|
414
|
-
"message": "
|
417
|
+
"message": "Бұл cookie файлы Chrome жалаушаларына немесе браузер конфигурациясына байланысты блокталды. Толық ақпарат \"Ақаулар\" панелінде берілген."
|
415
418
|
},
|
416
419
|
"core/sdk/NetworkRequest.ts | thisSetcookieDidntSpecifyASamesite": {
|
417
420
|
"message": "Бұл Set-Cookie тақырыбы \"SameSite\" төлсипатын көрсетпеді, \"SameSite=Lax\"\" төлсипатына қайтарылып, бөгелді, себебі ол жоғары деңгейлі навигацияға жауап болып табылмайтын әртүрлі сайттағы жауаптан келді. Бұл жауап әртүрлі сайттағы жауап болып есептеледі, себебі URL-дің схемасы қазіргі сайттан басқа."
|
@@ -435,7 +438,7 @@
|
|
435
438
|
"message": "Cookie файлын Set-Cookie тақырыбы арқылы орнату әрекеті бөгелді, себебі ол тым үлкен. Атау мен мәннің жалпы өлшемі 4096 таңбаға тең не одан кем болуы керек."
|
436
439
|
},
|
437
440
|
"core/sdk/NetworkRequest.ts | thisSetcookieWasBlockedDueThirdPartyPhaseout": {
|
438
|
-
"message": "
|
441
|
+
"message": "Бұл cookie файлының параметрі Chrome жалаушаларына немесе браузер конфигурациясына байланысты блокталды. Толық ақпарат \"Ақаулар\" панелінде берілген."
|
439
442
|
},
|
440
443
|
"core/sdk/NetworkRequest.ts | thisSetcookieWasBlockedDueToUser": {
|
441
444
|
"message": "Cookie файлын Set-Cookie тақырыбы арқылы орнату әрекеті пайдаланушы параметрлеріне байланысты бөгелді."
|
@@ -513,7 +516,7 @@
|
|
513
516
|
"message": "тоқтатылуда"
|
514
517
|
},
|
515
518
|
"core/sdk/SourceMapScopeChainEntry.ts | block": {
|
516
|
-
"message": "
|
519
|
+
"message": "Блок"
|
517
520
|
},
|
518
521
|
"core/sdk/SourceMapScopeChainEntry.ts | closure": {
|
519
522
|
"message": "Жабылуы"
|
@@ -525,7 +528,7 @@
|
|
525
528
|
"message": "Жергілікті"
|
526
529
|
},
|
527
530
|
"core/sdk/SourceMapScopeChainEntry.ts | returnValue": {
|
528
|
-
"message": "
|
531
|
+
"message": "Қайтару мәні"
|
529
532
|
},
|
530
533
|
"core/sdk/sdk-meta.ts | achromatopsia": {
|
531
534
|
"message": "Ахроматопсия (түссіз)"
|
@@ -549,7 +552,7 @@
|
|
549
552
|
"message": "AVIF форматын өшіру"
|
550
553
|
},
|
551
554
|
"core/sdk/sdk-meta.ts | disableCache": {
|
552
|
-
"message": "
|
555
|
+
"message": "Әзірлеуші құралдары ашық кезде кэшті өшіру"
|
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
|
},
|
@@ -1029,10 +1038,13 @@
|
|
1029
1038
|
"message": "жарық"
|
1030
1039
|
},
|
1031
1040
|
"entrypoints/main/main-meta.ts | matchChromeColorScheme": {
|
1032
|
-
"message": "
|
1041
|
+
"message": "Chrome түстер схемасын сәйкестендіру"
|
1042
|
+
},
|
1043
|
+
"entrypoints/main/main-meta.ts | matchChromeColorSchemeCommand": {
|
1044
|
+
"message": "Chrome түстер схемасын сәйкестендіру"
|
1033
1045
|
},
|
1034
1046
|
"entrypoints/main/main-meta.ts | matchChromeColorSchemeDocumentation": {
|
1035
|
-
"message": "
|
1047
|
+
"message": "Әзірлеуші құралдарының түстерін бейімделген Chrome тақырыбына (қосылған болса) сәйкестендіріңіз."
|
1036
1048
|
},
|
1037
1049
|
"entrypoints/main/main-meta.ts | nextPanel": {
|
1038
1050
|
"message": "Келесі панель"
|
@@ -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
|
},
|
@@ -1305,7 +1320,7 @@
|
|
1305
1320
|
"message": "Босату оқиғасы тыңдаушылары қолданыстан шығарылды және өшіріледі."
|
1306
1321
|
},
|
1307
1322
|
"generated/Deprecation.ts | V8GPUAdapter_RequestAdapterInfo_Method": {
|
1308
|
-
"message": "
|
1323
|
+
"message": "GPUAdapter requestAdapterInfo() әдісі ескірген, оның орнына GPUAdapter info төлсипатын пайдаланыңыз."
|
1309
1324
|
},
|
1310
1325
|
"generated/Deprecation.ts | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
1311
1326
|
"message": "SharedArrayBuffer элементін одан әрі пайдалану үшін кеңейтімдерде дереккөзаралық оқшаулау нұсқасы таңдалуы керек. https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/ бетін қараңыз."
|
@@ -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
|
},
|
@@ -1440,7 +1458,7 @@
|
|
1440
1458
|
"message": "Сенімді түрлер – саясатты бұзу жағдайы"
|
1441
1459
|
},
|
1442
1460
|
"models/issues_manager/CookieDeprecationMetadataIssue.ts | thirdPartyPhaseoutExplained": {
|
1443
|
-
"message": "
|
1461
|
+
"message": "Chrome браузерінің үшінші тарап cookie файлдарын өңдеуіне енгізілген өзгерістер"
|
1444
1462
|
},
|
1445
1463
|
"models/issues_manager/CookieIssue.ts | aSecure": {
|
1446
1464
|
"message": "қауіпсіз"
|
@@ -1449,10 +1467,10 @@
|
|
1449
1467
|
"message": "қауіпті"
|
1450
1468
|
},
|
1451
1469
|
"models/issues_manager/CookieIssue.ts | consoleTpcdErrorMessage": {
|
1452
|
-
"message": "
|
1470
|
+
"message": "Үшінші тарап cookie файлы Chrome-да Chrome жалаушаларына немесе браузер конфигурациясына байланысты блокталады."
|
1453
1471
|
},
|
1454
1472
|
"models/issues_manager/CookieIssue.ts | consoleTpcdWarningMessage": {
|
1455
|
-
"message": "Chrome
|
1473
|
+
"message": "Chrome пайдаланушыларға үшінші тарап cookie файлдарынсыз шолуға мүмкіндік беретін жаңа интерфейске ауысып жатыр."
|
1456
1474
|
},
|
1457
1475
|
"models/issues_manager/CookieIssue.ts | fileCrosSiteRedirectBug": {
|
1458
1476
|
"message": "Қате туралы хабарлау"
|
@@ -1467,7 +1485,7 @@
|
|
1467
1485
|
"message": "SameSite cookie файлдары түсіндірілді."
|
1468
1486
|
},
|
1469
1487
|
"models/issues_manager/CookieIssue.ts | thirdPartyPhaseoutExplained": {
|
1470
|
-
"message": "
|
1488
|
+
"message": "Chrome браузерінің үшінші тарап cookie файлдарын өңдеуіне енгізілген өзгерістер"
|
1471
1489
|
},
|
1472
1490
|
"models/issues_manager/CorsIssue.ts | CORS": {
|
1473
1491
|
"message": "Ресурсты әртүрлі көздер арасында бөлісу (CORS)"
|
@@ -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
|
},
|
@@ -3162,7 +3213,7 @@
|
|
3162
3213
|
"message": "Плагиндерден тұратын беттер қазір алға-артқа өту кэшіне жарамайды."
|
3163
3214
|
},
|
3164
3215
|
"panels/application/components/BackForwardCacheStrings.ts | contentDiscarded": {
|
3165
|
-
"message": "
|
3216
|
+
"message": "Анықталмаған"
|
3166
3217
|
},
|
3167
3218
|
"panels/application/components/BackForwardCacheStrings.ts | contentFileChooser": {
|
3168
3219
|
"message": "FileChooser API-ын пайдаланатын беттер алға-артқа өту кэшіне жарамайды."
|
@@ -3504,7 +3555,7 @@
|
|
3504
3555
|
"message": "Жиектер"
|
3505
3556
|
},
|
3506
3557
|
"panels/application/components/BackForwardCacheView.ts | issuesInMultipleFrames": {
|
3507
|
-
"message": "{n,
|
3558
|
+
"message": "{n,plural, =1{{m} кадрда # қате табылды.}other{{m} кадрда # қате табылды.}}"
|
3508
3559
|
},
|
3509
3560
|
"panels/application/components/BackForwardCacheView.ts | issuesInSingleFrame": {
|
3510
3561
|
"message": "{n,plural, =1{1 кадрда # қате табылды.}other{1 кадрда # қате табылды.}}"
|
@@ -3906,7 +3957,7 @@
|
|
3906
3957
|
"message": "Жию"
|
3907
3958
|
},
|
3908
3959
|
"panels/application/components/StackTrace.ts | showSMoreFrames": {
|
3909
|
-
"message": "{n,plural, =1{Тағы #
|
3960
|
+
"message": "{n,plural, =1{Тағы # кадр көрсету}other{Тағы # кадр көрсету}}"
|
3910
3961
|
},
|
3911
3962
|
"panels/application/components/StorageMetadataView.ts | bucketName": {
|
3912
3963
|
"message": "Шелек аты"
|
@@ -3996,7 +4047,10 @@
|
|
3996
4047
|
"message": "Ережелер жинағы бойынша сүзу"
|
3997
4048
|
},
|
3998
4049
|
"panels/application/preloading/PreloadingView.ts | noRuleSets": {
|
3999
|
-
"message": "
|
4050
|
+
"message": "ереже жинақтары жоқ"
|
4051
|
+
},
|
4052
|
+
"panels/application/preloading/PreloadingView.ts | prettyPrint": {
|
4053
|
+
"message": "Автоформаттау"
|
4000
4054
|
},
|
4001
4055
|
"panels/application/preloading/PreloadingView.ts | statusFailure": {
|
4002
4056
|
"message": "Орындалмаған"
|
@@ -5025,19 +5079,19 @@
|
|
5025
5079
|
"message": "Бұл қатені түсініп алу"
|
5026
5080
|
},
|
5027
5081
|
"panels/console/ConsoleViewMessage.ts | explainThisErrorWithAI": {
|
5028
|
-
"message": "
|
5082
|
+
"message": "Бұл қатені түсініп алыңыз. AI негізінде жұмыс істейді."
|
5029
5083
|
},
|
5030
5084
|
"panels/console/ConsoleViewMessage.ts | explainThisMessage": {
|
5031
5085
|
"message": "Бұл хабарды түсініп алу"
|
5032
5086
|
},
|
5033
5087
|
"panels/console/ConsoleViewMessage.ts | explainThisMessageWithAI": {
|
5034
|
-
"message": "
|
5088
|
+
"message": "Бұл хабарды түсініп алыңыз. AI негізінде жұмыс істейді."
|
5035
5089
|
},
|
5036
5090
|
"panels/console/ConsoleViewMessage.ts | explainThisWarning": {
|
5037
5091
|
"message": "Бұл ескертуді түсініп алу"
|
5038
5092
|
},
|
5039
5093
|
"panels/console/ConsoleViewMessage.ts | explainThisWarningWithAI": {
|
5040
|
-
"message": "
|
5094
|
+
"message": "Бұл ескертуді түсініп алыңыз. AI негізінде жұмыс істейді."
|
5041
5095
|
},
|
5042
5096
|
"panels/console/ConsoleViewMessage.ts | functionWasResolvedFromBound": {
|
5043
5097
|
"message": "Функция тәуелді функциядан ажыратылды."
|
@@ -5214,7 +5268,7 @@
|
|
5214
5268
|
"message": "{n,plural, =1{# байт}other{# байт}}"
|
5215
5269
|
},
|
5216
5270
|
"panels/coverage/CoverageListView.ts | sBytesS": {
|
5217
|
-
"message": "{n,
|
5271
|
+
"message": "{n,plural, =1{# байт, {percentage}}other{# байт, {percentage}}}"
|
5218
5272
|
},
|
5219
5273
|
"panels/coverage/CoverageListView.ts | sBytesSBelongToBlocksOf": {
|
5220
5274
|
"message": "{PH1} байт ({PH2}) JavaScript блоктарына тиесілі, олар (әлі) орындалмады."
|
@@ -5538,7 +5592,7 @@
|
|
5538
5592
|
"message": "Контейнер элементінде {PROPERTY_NAME} элементін орнатып көріңіз немесе оның орнына {ALTERNATIVE_PROPERTY_NAME} пайдаланыңыз."
|
5539
5593
|
},
|
5540
5594
|
"panels/elements/CSSRuleValidator.ts | flexGridContainerPropertyRuleReason": {
|
5541
|
-
"message": "
|
5595
|
+
"message": "Бұл элемент — {CONTAINER_DISPLAY_NAME}, яғни {CONTAINER_DISPLAY_NAME} контейнерінің туынды элементі, бірақ {PROPERTY_NAME} тек контейнерлерге қолданылады."
|
5542
5596
|
},
|
5543
5597
|
"panels/elements/CSSRuleValidator.ts | fontVariationSettingsWarning": {
|
5544
5598
|
"message": "“{PH1}” {PH2} параметріне арналған мән “{PH5}” қаріптер тобы үшін [{PH3}, {PH4}] ауқымынан тыс."
|
@@ -5727,7 +5781,7 @@
|
|
5727
5781
|
"message": "Мәтінді өңдеу"
|
5728
5782
|
},
|
5729
5783
|
"panels/elements/ElementsTreeElement.ts | elementHasScrollableOverflow": {
|
5730
|
-
"message": "
|
5784
|
+
"message": "Бұл элементте айналдыруға болатын қосымша мәзір бар."
|
5731
5785
|
},
|
5732
5786
|
"panels/elements/ElementsTreeElement.ts | enableFlexMode": {
|
5733
5787
|
"message": "Икемді режимді қосу"
|
@@ -6168,7 +6222,7 @@
|
|
6168
6222
|
"message": "Пайдаланушы агенті үшін DOM көлеңкесін көрсету"
|
6169
6223
|
},
|
6170
6224
|
"panels/elements/elements-meta.ts | stackTrace": {
|
6171
|
-
"message": "
|
6225
|
+
"message": "Стэкті трассалау"
|
6172
6226
|
},
|
6173
6227
|
"panels/elements/elements-meta.ts | toggleEyeDropper": {
|
6174
6228
|
"message": "Тамызғышты ауыстыру"
|
@@ -6354,7 +6408,7 @@
|
|
6354
6408
|
"message": "Оқиғаны бақылау құралын пассив не бөгеу режиміне ауыстыру"
|
6355
6409
|
},
|
6356
6410
|
"panels/explain/components/ConsoleInsight.ts | badResponse": {
|
6357
|
-
"message": "
|
6411
|
+
"message": "Қате жауап"
|
6358
6412
|
},
|
6359
6413
|
"panels/explain/components/ConsoleInsight.ts | closeInsight": {
|
6360
6414
|
"message": "Түсіндірмені жабу"
|
@@ -6372,7 +6426,7 @@
|
|
6372
6426
|
"message": "Түсіндірме жасалуда…"
|
6373
6427
|
},
|
6374
6428
|
"panels/explain/components/ConsoleInsight.ts | goodResponse": {
|
6375
|
-
"message": "
|
6429
|
+
"message": "Дұрыс жауап"
|
6376
6430
|
},
|
6377
6431
|
"panels/explain/components/ConsoleInsight.ts | inputData": {
|
6378
6432
|
"message": "Бұл хабарды түсіну үшін пайдаланылған деректер"
|
@@ -6411,7 +6465,7 @@
|
|
6411
6465
|
"message": "Оның орнына іздеу механизмін пайдалану"
|
6412
6466
|
},
|
6413
6467
|
"panels/explain/components/ConsoleInsight.ts | settingsLink": {
|
6414
|
-
"message": "Console insights
|
6468
|
+
"message": "Параметрлердегі Console insights"
|
6415
6469
|
},
|
6416
6470
|
"panels/explain/components/ConsoleInsight.ts | signInToUse": {
|
6417
6471
|
"message": "Бұл функцияны пайдалану үшін жүйеге кіріңіз."
|
@@ -6420,14 +6474,11 @@
|
|
6420
6474
|
"message": "Стекті бақылау"
|
6421
6475
|
},
|
6422
6476
|
"panels/explain/components/ConsoleInsight.ts | turnOnInSettings": {
|
6423
|
-
"message": "
|
6477
|
+
"message": "{PH1} функциясын қосып, консольдегі ескертулер мен қателерді түсіну және шешу үшін жасанды интеллектіден көмек алыңыз."
|
6424
6478
|
},
|
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": "Бұл функцияны пайдалану үшін әзірлеуші құралдары параметрлеріндегі тіл параметрін ағылшын тіліне жаңартыңыз."
|
6451
6502
|
},
|
6503
|
+
"panels/freestyler/FreestylerPanel.ts | chatCleared": {
|
6504
|
+
"message": "Чат тазаланды."
|
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": "Әзірлеуші құралдарындағы жасанды интеллект туралы ақпарат"
|
6526
|
+
},
|
6527
|
+
"panels/freestyler/components/FreestylerChatUi.ts | notLoggedIn": {
|
6528
|
+
"message": "Бұл функция Chrome-ға Google аккаунтымен кірген кезде ғана қолжетімді."
|
6529
|
+
},
|
6530
|
+
"panels/freestyler/components/FreestylerChatUi.ts | offline": {
|
6531
|
+
"message": "Интернет байланысын тексеріп, әрекетті қайталаңыз."
|
6532
|
+
},
|
6533
|
+
"panels/freestyler/components/FreestylerChatUi.ts | settingsLink": {
|
6534
|
+
"message": "параметрлердегі жасанды интеллектіге негізделген көмек"
|
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": "Жасанды интеллектіге негізделген көмек"
|
6544
|
+
},
|
6545
|
+
"panels/freestyler/freestyler-meta.ts | askAi": {
|
6546
|
+
"message": "Жасанды интеллектіден сұрау"
|
6547
|
+
},
|
6548
|
+
"panels/freestyler/freestyler-meta.ts | enableAiAssistance": {
|
6549
|
+
"message": "Жасанды интеллектіге негізделген көмек функциясын қосу"
|
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": "\"Жасанды интеллектіге негізделген көмек\" панелін көрсету"
|
6559
|
+
},
|
6560
|
+
"panels/freestyler/freestyler-meta.ts | wrongLocale": {
|
6561
|
+
"message": "Бұл функцияны пайдалану үшін әзірлеуші құралдарының параметрлерінде тілді ағылшын тіліне орнатыңыз."
|
6562
|
+
},
|
6452
6563
|
"panels/issues/AffectedBlockedByResponseView.ts | blockedResource": {
|
6453
6564
|
"message": "Блокталған ресурс"
|
6454
6565
|
},
|
@@ -6783,7 +6894,7 @@
|
|
6783
6894
|
"message": "Жалпы"
|
6784
6895
|
},
|
6785
6896
|
"panels/issues/IssuesPane.ts | groupByCategory": {
|
6786
|
-
"message": "
|
6897
|
+
"message": "Санаты бойынша топтау"
|
6787
6898
|
},
|
6788
6899
|
"panels/issues/IssuesPane.ts | groupByKind": {
|
6789
6900
|
"message": "Түрлері бойынша топтау"
|
@@ -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} + Preflight"
|
7963
8062
|
},
|
@@ -7994,9 +8093,6 @@
|
|
7994
8093
|
"panels/network/NetworkDataGridNode.ts | signedexchange": {
|
7995
8094
|
"message": "signed-exchange"
|
7996
8095
|
},
|
7997
|
-
"panels/network/NetworkDataGridNode.ts | thirdPartyPhaseout": {
|
7998
|
-
"message": "Cookies for this request are blocked either because of Chrome flags or browser configuration. Learn more in the Issues panel."
|
7999
|
-
},
|
8000
8096
|
"panels/network/NetworkDataGridNode.ts | timeSubtitleTooltipText": {
|
8001
8097
|
"message": "Кідіріс (жауап алынған уақыт – басталу уақыты)"
|
8002
8098
|
},
|
@@ -8118,10 +8214,10 @@
|
|
8118
8214
|
"message": "Барлығын fetch ретінде көшіру"
|
8119
8215
|
},
|
8120
8216
|
"panels/network/NetworkLogView.ts | copyAllAsHarSanitized": {
|
8121
|
-
"message": "
|
8217
|
+
"message": "Барлығын HAR (тазартылған) ретінде көшіру"
|
8122
8218
|
},
|
8123
8219
|
"panels/network/NetworkLogView.ts | copyAllAsHarWithSensitiveData": {
|
8124
|
-
"message": "
|
8220
|
+
"message": "Барлығын HAR ретінде көшіру (құпия деректермен бірге)"
|
8125
8221
|
},
|
8126
8222
|
"panels/network/NetworkLogView.ts | copyAllAsNodejsFetch": {
|
8127
8223
|
"message": "Барлығын fetch (Node.js) ретінде көшіру"
|
@@ -8142,10 +8238,10 @@
|
|
8142
8238
|
"message": "Көрсетілгеннің барлығын fetch ретінде көшіру"
|
8143
8239
|
},
|
8144
8240
|
"panels/network/NetworkLogView.ts | copyAllListedAsHarSanitized": {
|
8145
|
-
"message": "
|
8241
|
+
"message": "Тізімделгендердің барлығын HAR (тазартылған) ретінде көшіру"
|
8146
8242
|
},
|
8147
8243
|
"panels/network/NetworkLogView.ts | copyAllListedAsHarWithSensitiveData": {
|
8148
|
-
"message": "
|
8244
|
+
"message": "Тізімделгеннің барлығын HAR ретінде көшіру (құпия деректермен бірге)"
|
8149
8245
|
},
|
8150
8246
|
"panels/network/NetworkLogView.ts | copyAllListedAsNodejsFetch": {
|
8151
8247
|
"message": "Көрсетілгеннің барлығын fetch (Node.js) ретінде көшіру"
|
@@ -8415,22 +8511,22 @@
|
|
8415
8511
|
"message": "Кэшті өшіру"
|
8416
8512
|
},
|
8417
8513
|
"panels/network/NetworkPanel.ts | disableCacheWhileDevtoolsIsOpen": {
|
8418
|
-
"message": "
|
8514
|
+
"message": "Әзірлеуші құралдары ашық кезде кэшті өшіру"
|
8419
8515
|
},
|
8420
8516
|
"panels/network/NetworkPanel.ts | doNotClearLogOnPageReload": {
|
8421
8517
|
"message": "Қайта жүктеу/навигация бетінде журналды өшірмеу"
|
8422
8518
|
},
|
8423
8519
|
"panels/network/NetworkPanel.ts | exportHarSanitized": {
|
8424
|
-
"message": "
|
8520
|
+
"message": "HAR (тазартылған) экспортталып жатыр…"
|
8425
8521
|
},
|
8426
8522
|
"panels/network/NetworkPanel.ts | exportHarWithSensitiveData": {
|
8427
|
-
"message": "
|
8523
|
+
"message": "HAR (құпия деректермен бірге) экспортталып жатыр…"
|
8428
8524
|
},
|
8429
8525
|
"panels/network/NetworkPanel.ts | fetchingFrames": {
|
8430
8526
|
"message": "Кадрлар алынуда…"
|
8431
8527
|
},
|
8432
8528
|
"panels/network/NetworkPanel.ts | groupByFrame": {
|
8433
|
-
"message": "
|
8529
|
+
"message": "Кадр бойынша топтау"
|
8434
8530
|
},
|
8435
8531
|
"panels/network/NetworkPanel.ts | groupRequestsByTopLevelRequest": {
|
8436
8532
|
"message": "Жоғары деңгейлі сұрау кадры бойынша сұрауларды топтау"
|
@@ -9030,10 +9126,10 @@
|
|
9030
9126
|
"message": "Желі сұрауын блоктау өрнегін қосу"
|
9031
9127
|
},
|
9032
9128
|
"panels/network/network-meta.ts | allowToGenerateHarWithSensitiveData": {
|
9033
|
-
"message": "
|
9129
|
+
"message": "Құпия деректермен бірге HAR жасалуына рұқсат беру"
|
9034
9130
|
},
|
9035
9131
|
"panels/network/network-meta.ts | allowToGenerateHarWithSensitiveDataDocumentation": {
|
9036
|
-
"message": "
|
9132
|
+
"message": "Әдепкісінше жасалған HAR журналдары тазартылады және онда Cookie, Set-Cookie немесе Authorization HTTP тақырыбы болмайды. Бұл параметр қосулы болғанда, HAR файлдарын құпия деректермен бірге экспорттауға/көшіруге болады."
|
9037
9133
|
},
|
9038
9134
|
"panels/network/network-meta.ts | clear": {
|
9039
9135
|
"message": "Желі журналын өшіру"
|
@@ -9051,7 +9147,7 @@
|
|
9051
9147
|
"message": "диск кэші"
|
9052
9148
|
},
|
9053
9149
|
"panels/network/network-meta.ts | dontAllowToGenerateHarWithSensitiveData": {
|
9054
|
-
"message": "
|
9150
|
+
"message": "Құпия деректермен бірге HAR жасалуына рұқсат бермеу"
|
9055
9151
|
},
|
9056
9152
|
"panels/network/network-meta.ts | dontGroupNetworkLogItemsByFrame": {
|
9057
9153
|
"message": "Желі журналының элементтерін кадр бойынша топтастырмау"
|
@@ -9168,25 +9264,25 @@
|
|
9168
9264
|
"message": "жүйені бақылау"
|
9169
9265
|
},
|
9170
9266
|
"panels/profiler/HeapDetachedElementsDataGrid.ts | detachedElementsList": {
|
9171
|
-
"message": "
|
9267
|
+
"message": "Ажыратылған элементтер тізімі"
|
9172
9268
|
},
|
9173
9269
|
"panels/profiler/HeapDetachedElementsDataGrid.ts | detachedNodes": {
|
9174
|
-
"message": "
|
9270
|
+
"message": "Ажыратылған түйіндер"
|
9175
9271
|
},
|
9176
9272
|
"panels/profiler/HeapDetachedElementsDataGrid.ts | nodeSize": {
|
9177
|
-
"message": "
|
9273
|
+
"message": "Түйіндер саны"
|
9178
9274
|
},
|
9179
9275
|
"panels/profiler/HeapDetachedElementsView.ts | detachedElementProfile": {
|
9180
|
-
"message": "
|
9276
|
+
"message": "Ажыратылған элементтер {PH1}"
|
9181
9277
|
},
|
9182
9278
|
"panels/profiler/HeapDetachedElementsView.ts | detachedElementsDescription": {
|
9183
|
-
"message": "
|
9279
|
+
"message": "Ажыратылған элементтерде JS көрсеткіші арқылы сақталатын нысандар көрсетіледі."
|
9184
9280
|
},
|
9185
9281
|
"panels/profiler/HeapDetachedElementsView.ts | detachedElementsTitle": {
|
9186
|
-
"message": "
|
9282
|
+
"message": "Ажыратылған элементтер"
|
9187
9283
|
},
|
9188
9284
|
"panels/profiler/HeapDetachedElementsView.ts | startDetachedElements": {
|
9189
|
-
"message": "
|
9285
|
+
"message": "Ажыратылған элементтерді алу"
|
9190
9286
|
},
|
9191
9287
|
"panels/profiler/HeapProfileView.ts | allocationSampling": {
|
9192
9288
|
"message": "Үлестіру үлгісі"
|
@@ -9204,7 +9300,7 @@
|
|
9204
9300
|
"message": "Профиль ({PH1})"
|
9205
9301
|
},
|
9206
9302
|
"panels/profiler/HeapProfileView.ts | recordMemoryAllocations": {
|
9207
|
-
"message": "
|
9303
|
+
"message": "Минималды үстеме шығындармен ұзақ жұмыс істейтін операциялардың сынамасын алу және JavaScript орындау стэгі бойынша мәлімет алу арқылы жадты шамамен үлестіру"
|
9208
9304
|
},
|
9209
9305
|
"panels/profiler/HeapProfileView.ts | recording": {
|
9210
9306
|
"message": "Жазуда…"
|
@@ -9222,7 +9318,7 @@
|
|
9222
9318
|
"message": "Өзіндік өлшемі"
|
9223
9319
|
},
|
9224
9320
|
"panels/profiler/HeapProfileView.ts | selfSizeBytes": {
|
9225
|
-
"message": "
|
9321
|
+
"message": "Жеке өлшемі (байт)"
|
9226
9322
|
},
|
9227
9323
|
"panels/profiler/HeapProfileView.ts | skb": {
|
9228
9324
|
"message": "{PH1} КБ"
|
@@ -9240,7 +9336,7 @@
|
|
9240
9336
|
"message": "Жалпы өлшемі"
|
9241
9337
|
},
|
9242
9338
|
"panels/profiler/HeapProfileView.ts | totalSizeBytes": {
|
9243
|
-
"message": "
|
9339
|
+
"message": "Жалпы өлшем (байт)"
|
9244
9340
|
},
|
9245
9341
|
"panels/profiler/HeapProfileView.ts | url": {
|
9246
9342
|
"message": "URL"
|
@@ -9390,7 +9486,7 @@
|
|
9390
9486
|
"message": "\"{PH1}\" әдісін шақыру сұралып жатқанда, қате шықты."
|
9391
9487
|
},
|
9392
9488
|
"panels/profiler/HeapSnapshotView.ts | AllocationTimelinesShowInstrumented": {
|
9393
|
-
"message": "
|
9489
|
+
"message": "Уақыт өте келе жадтың үлестірілуін жазып алып, әлі де белсенді үлестіру әрекеттерімен аралықтарды таңдау арқылы жадтың жылыстауын оқшаулаңыз."
|
9394
9490
|
},
|
9395
9491
|
"panels/profiler/HeapSnapshotView.ts | allObjects": {
|
9396
9492
|
"message": "Барлық нысандар"
|
@@ -9399,7 +9495,7 @@
|
|
9399
9495
|
"message": "Үлестіру"
|
9400
9496
|
},
|
9401
9497
|
"panels/profiler/HeapSnapshotView.ts | allocationInstrumentationOn": {
|
9402
|
-
"message": "
|
9498
|
+
"message": "Хронологияда үлестіру"
|
9403
9499
|
},
|
9404
9500
|
"panels/profiler/HeapSnapshotView.ts | allocationStack": {
|
9405
9501
|
"message": "Үлестіру стегі"
|
@@ -9423,7 +9519,7 @@
|
|
9423
9519
|
"message": "Қайталанатын жолдар"
|
9424
9520
|
},
|
9425
9521
|
"panels/profiler/HeapSnapshotView.ts | exposeInternals": {
|
9426
|
-
"message": "
|
9522
|
+
"message": "Жүзеге асыру бөлшектері бар ішкі құрамдастар"
|
9427
9523
|
},
|
9428
9524
|
"panels/profiler/HeapSnapshotView.ts | filter": {
|
9429
9525
|
"message": "Сүзгі"
|
@@ -9441,7 +9537,7 @@
|
|
9441
9537
|
"message": "Жинақ снапшоты"
|
9442
9538
|
},
|
9443
9539
|
"panels/profiler/HeapSnapshotView.ts | heapSnapshotProfilesShowMemory": {
|
9444
|
-
"message": "
|
9540
|
+
"message": "JavaScript нысандары мен қатысты DOM түйіндерінің жадта таралуын қараңыз."
|
9445
9541
|
},
|
9446
9542
|
"panels/profiler/HeapSnapshotView.ts | heapSnapshots": {
|
9447
9543
|
"message": "Жинақ снапшоттары"
|
@@ -9462,7 +9558,7 @@
|
|
9462
9558
|
"message": "Нысандар {PH1} және {PH2} аралығында үлестіріледі"
|
9463
9559
|
},
|
9464
9560
|
"panels/profiler/HeapSnapshotView.ts | objectsRetainedByConsole": {
|
9465
|
-
"message": "
|
9561
|
+
"message": "Әзірлеуші құралдарының консолі арқылы сақталған нысандар"
|
9466
9562
|
},
|
9467
9563
|
"panels/profiler/HeapSnapshotView.ts | objectsRetainedByDetachedDomNodes": {
|
9468
9564
|
"message": "Ажыратылған DOM түйіндері ұстап қалған нысандар"
|
@@ -9474,7 +9570,7 @@
|
|
9474
9570
|
"message": "Перспектива"
|
9475
9571
|
},
|
9476
9572
|
"panels/profiler/HeapSnapshotView.ts | recordAllocationStacksExtra": {
|
9477
|
-
"message": "
|
9573
|
+
"message": "Стэк трассаларын үлестіру (көбірек үстеме шығын)"
|
9478
9574
|
},
|
9479
9575
|
"panels/profiler/HeapSnapshotView.ts | recording": {
|
9480
9576
|
"message": "Жазуда…"
|
@@ -9498,7 +9594,7 @@
|
|
9498
9594
|
"message": "Снапшот жасалуда…"
|
9499
9595
|
},
|
9500
9596
|
"panels/profiler/HeapSnapshotView.ts | stackWasNotRecordedForThisObject": {
|
9501
|
-
"message": "
|
9597
|
+
"message": "Стэк бұл нысан үшін жазылмады, себебі ол осы профиль жазбасы басталмас бұрын үлестірілген."
|
9502
9598
|
},
|
9503
9599
|
"panels/profiler/HeapSnapshotView.ts | startRecordingHeapProfile": {
|
9504
9600
|
"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
10764
|
"message": "Қауіпсіздік"
|
10642
10765
|
},
|
10766
|
+
"panels/security/security-meta.ts | securityAndPrivacy": {
|
10767
|
+
"message": "Қауіпсіздік және құпиялық"
|
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,70 +10986,91 @@
|
|
10857
10986
|
"message": "Пайдаланушы күту күйінде, экранның құлпы ашылған"
|
10858
10987
|
},
|
10859
10988
|
"panels/settings/AISettingsTab.ts | adminSettings": {
|
10860
|
-
"message": "
|
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": "Жасанды интеллектіге негізделген көмек функциясын қосу"
|
11005
|
+
},
|
10868
11006
|
"panels/settings/AISettingsTab.ts | enableConsoleInsights": {
|
10869
|
-
"message": "
|
11007
|
+
"message": "Console insights функциясын қосу"
|
10870
11008
|
},
|
10871
11009
|
"panels/settings/AISettingsTab.ts | experimentalFeatures": {
|
10872
|
-
"message": "
|
11010
|
+
"message": "Бұл функциялар эксперименттік сатыда. Олар жасампаз AI технологиясын қолданады және Google көзқарасын білдірмейтін қате немесе намысқа тиетін ақпарат беруі мүмкін."
|
10873
11011
|
},
|
10874
11012
|
"panels/settings/AISettingsTab.ts | explainConsole": {
|
10875
11013
|
"message": "Консоль ескертулері мен қателерінің түсіндірмелерін алу"
|
10876
11014
|
},
|
10877
11015
|
"panels/settings/AISettingsTab.ts | explainStyling": {
|
10878
|
-
"message": "
|
11016
|
+
"message": "CSS стильдерін жасанды интеллектіге негізделген статистика көмегімен түсіну"
|
10879
11017
|
},
|
10880
|
-
"panels/settings/AISettingsTab.ts |
|
10881
|
-
"message": "
|
11018
|
+
"panels/settings/AISettingsTab.ts | explainStylingAndNetworkRequest": {
|
11019
|
+
"message": "Жасанды интеллектіге негізделген статистикадан CSS стильдері мен желіні пайдалану дерегі туралы ақпарат алу"
|
10882
11020
|
},
|
10883
|
-
"panels/settings/AISettingsTab.ts |
|
10884
|
-
"message": "
|
11021
|
+
"panels/settings/AISettingsTab.ts | explainStylingNetworkAndFile": {
|
11022
|
+
"message": "Жасанды интеллектіге негізделген статистикадан CSS стильдері, желіні пайдалану дерегі мен файл дереккөздері туралы ақпарат алу"
|
11023
|
+
},
|
11024
|
+
"panels/settings/AISettingsTab.ts | freestylerSendsData": {
|
11025
|
+
"message": "Тексерілетін бет Web 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": "Бұл функция Chrome-ға Google аккаунтымен кірген кезде ғана қолжетімді."
|
11044
|
+
},
|
11045
|
+
"panels/settings/AISettingsTab.ts | offline": {
|
11046
|
+
"message": "Бұл функция интернет байланысы қосулы болған кезде ғана қолжетімді."
|
10897
11047
|
},
|
10898
11048
|
"panels/settings/AISettingsTab.ts | privacyNotice": {
|
10899
|
-
"message": "Google
|
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": "
|
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
|
-
"message": "
|
11064
|
+
"message": "Жию"
|
10915
11065
|
},
|
10916
11066
|
"panels/settings/AISettingsTab.ts | showMore": {
|
10917
|
-
"message": "
|
11067
|
+
"message": "Жаю"
|
10918
11068
|
},
|
10919
11069
|
"panels/settings/AISettingsTab.ts | termsOfService": {
|
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,10 +11091,10 @@
|
|
10941
11091
|
"message": "Ерекшеліктер туралы арнаулы ережелер:"
|
10942
11092
|
},
|
10943
11093
|
"panels/settings/FrameworkIgnoreListSettingsTab.ts | debuggerWillSkipThroughThe": {
|
10944
|
-
"message": "
|
11094
|
+
"message": "Түзеткіш осы скриптілер бойынша ақаулықты іздемейді немесе тек оларға әсер ететін ерекше жағдайларды үзбейді. \"Өнімділік\" панелінде сәйкес келетін FlameChart элементтері жиылады."
|
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": "Барлық еленбейтін тізімді өшіру үшін құсбелгіні алып тастаңыз."
|
@@ -10955,6 +11105,9 @@
|
|
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
|
},
|
@@ -11220,7 +11376,7 @@
|
|
11220
11376
|
"message": "Эксперименттер"
|
11221
11377
|
},
|
11222
11378
|
"panels/settings/settings-meta.ts | ignoreList": {
|
11223
|
-
"message": "
|
11379
|
+
"message": "Елемеу тізімі"
|
11224
11380
|
},
|
11225
11381
|
"panels/settings/settings-meta.ts | preferences": {
|
11226
11382
|
"message": "Параметрлер"
|
@@ -11231,6 +11387,9 @@
|
|
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
|
},
|
@@ -11334,7 +11493,7 @@
|
|
11334
11493
|
"message": "Жаю"
|
11335
11494
|
},
|
11336
11495
|
"panels/sources/CategorizedBreakpointL10n.ts | animationFrameFired": {
|
11337
|
-
"message": "
|
11496
|
+
"message": "Анимация кадры басталды."
|
11338
11497
|
},
|
11339
11498
|
"panels/sources/CategorizedBreakpointL10n.ts | beforeBidderWorkletBiddingStart": {
|
11340
11499
|
"message": "Қатысушының баға ұсыну фазасының басталуы"
|
@@ -11349,7 +11508,7 @@
|
|
11349
11508
|
"message": "Сатушыға баға беру фазасының басталуы"
|
11350
11509
|
},
|
11351
11510
|
"panels/sources/CategorizedBreakpointL10n.ts | cancelAnimationFrame": {
|
11352
|
-
"message": "
|
11511
|
+
"message": "Анимация кадрынан бас тарту"
|
11353
11512
|
},
|
11354
11513
|
"panels/sources/CategorizedBreakpointL10n.ts | closeAudiocontext": {
|
11355
11514
|
"message": "AudioContext жабу"
|
@@ -11364,7 +11523,7 @@
|
|
11364
11523
|
"message": "Саясат талаптарын бұзу жағдайлары"
|
11365
11524
|
},
|
11366
11525
|
"panels/sources/CategorizedBreakpointL10n.ts | requestAnimationFrame": {
|
11367
|
-
"message": "
|
11526
|
+
"message": "Анимация кадрын сұрау"
|
11368
11527
|
},
|
11369
11528
|
"panels/sources/CategorizedBreakpointL10n.ts | resumeAudiocontext": {
|
11370
11529
|
"message": "AudioContext трансляциясын жалғастыру"
|
@@ -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} aннотация өшірілді"
|
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
|
},
|
@@ -12261,10 +12447,10 @@
|
|
12261
12447
|
"message": "Құжаттар"
|
12262
12448
|
},
|
12263
12449
|
"panels/timeline/CountersGraph.ts | gpuMemory": {
|
12264
|
-
"message": "GPU
|
12450
|
+
"message": "GPU жады"
|
12265
12451
|
},
|
12266
12452
|
"panels/timeline/CountersGraph.ts | jsHeap": {
|
12267
|
-
"message": "JS
|
12453
|
+
"message": "JS жинағы"
|
12268
12454
|
},
|
12269
12455
|
"panels/timeline/CountersGraph.ts | listeners": {
|
12270
12456
|
"message": "Тыңдармандар"
|
@@ -12288,13 +12474,13 @@
|
|
12288
12474
|
"message": "Ұзақтық сүзгісі"
|
12289
12475
|
},
|
12290
12476
|
"panels/timeline/EventsTimelineTreeView.ts | startTime": {
|
12291
|
-
"message": "
|
12477
|
+
"message": "Басталу уақыты"
|
12292
12478
|
},
|
12293
12479
|
"panels/timeline/ExtensionTrackAppender.ts | customTrackDescription": {
|
12294
12480
|
"message": "Бұл — үшінші тарап қосқан арнаулы трек."
|
12295
12481
|
},
|
12296
12482
|
"panels/timeline/ExtensionTrackAppender.ts | customTrackName": {
|
12297
|
-
"message": "{PH1}
|
12483
|
+
"message": "{PH1} — арнаулы нұсқа түрі"
|
12298
12484
|
},
|
12299
12485
|
"panels/timeline/GPUTrackAppender.ts | gpu": {
|
12300
12486
|
"message": "GPU"
|
@@ -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
|
},
|
@@ -12345,7 +12537,7 @@
|
|
12345
12537
|
"message": "Растр"
|
12346
12538
|
},
|
12347
12539
|
"panels/timeline/ThreadAppender.ts | rasterizerThreadS": {
|
12348
|
-
"message": "
|
12540
|
+
"message": "Растеризатор тізбегі: {PH1}"
|
12349
12541
|
},
|
12350
12542
|
"panels/timeline/ThreadAppender.ts | sellerWorklet": {
|
12351
12543
|
"message": "Сатушылар тізімі"
|
@@ -12354,10 +12546,10 @@
|
|
12354
12546
|
"message": "Сатушылар тізімі — {PH1}"
|
12355
12547
|
},
|
12356
12548
|
"panels/timeline/ThreadAppender.ts | threadPool": {
|
12357
|
-
"message": "
|
12549
|
+
"message": "Тізбек пулы"
|
12358
12550
|
},
|
12359
12551
|
"panels/timeline/ThreadAppender.ts | threadPoolThreadS": {
|
12360
|
-
"message": "
|
12552
|
+
"message": "Тізбек пулының жұмысшысы: {PH1}"
|
12361
12553
|
},
|
12362
12554
|
"panels/timeline/ThreadAppender.ts | threadS": {
|
12363
12555
|
"message": "{PH1} тізбегі"
|
@@ -12375,34 +12567,34 @@
|
|
12375
12567
|
"message": "Worker: {PH1} — {PH2}"
|
12376
12568
|
},
|
12377
12569
|
"panels/timeline/ThreadAppender.ts | workletService": {
|
12378
|
-
"message": "
|
12570
|
+
"message": "Аукциондар тізімі қызметі"
|
12379
12571
|
},
|
12380
12572
|
"panels/timeline/ThreadAppender.ts | workletServiceS": {
|
12381
|
-
"message": "
|
12573
|
+
"message": "Аукциондар ворклеті қызметі — {PH1}"
|
12382
12574
|
},
|
12383
12575
|
"panels/timeline/TimelineController.ts | tracingNotSupported": {
|
12384
12576
|
"message": "Нысананың мұндай түрінде өнімділікті бақылау жазбасы пайдаланылмайды."
|
12385
12577
|
},
|
12386
12578
|
"panels/timeline/TimelineDetailsView.ts | bottomup": {
|
12387
|
-
"message": "
|
12579
|
+
"message": "Төменнен жоғарыға"
|
12388
12580
|
},
|
12389
12581
|
"panels/timeline/TimelineDetailsView.ts | callTree": {
|
12390
|
-
"message": "
|
12582
|
+
"message": "Тармақты шақыру"
|
12391
12583
|
},
|
12392
12584
|
"panels/timeline/TimelineDetailsView.ts | eventLog": {
|
12393
|
-
"message": "
|
12585
|
+
"message": "Оқиғалар журналы"
|
12394
12586
|
},
|
12395
12587
|
"panels/timeline/TimelineDetailsView.ts | layers": {
|
12396
12588
|
"message": "Қабаттар"
|
12397
12589
|
},
|
12398
12590
|
"panels/timeline/TimelineDetailsView.ts | paintProfiler": {
|
12399
|
-
"message": "
|
12591
|
+
"message": "Бояу профильдеушісі"
|
12400
12592
|
},
|
12401
12593
|
"panels/timeline/TimelineDetailsView.ts | rangeSS": {
|
12402
12594
|
"message": "Ауқым: {PH1} – {PH2}"
|
12403
12595
|
},
|
12404
12596
|
"panels/timeline/TimelineDetailsView.ts | selectorStats": {
|
12405
|
-
"message": "
|
12597
|
+
"message": "Таңдау құралының статистикасы"
|
12406
12598
|
},
|
12407
12599
|
"panels/timeline/TimelineDetailsView.ts | summary": {
|
12408
12600
|
"message": "Қорытынды"
|
@@ -12423,7 +12615,7 @@
|
|
12423
12615
|
"message": "Скриптіні елемеу тізіміне қосу"
|
12424
12616
|
},
|
12425
12617
|
"panels/timeline/TimelineFlameChartDataProvider.ts | droppedFrame": {
|
12426
|
-
"message": "
|
12618
|
+
"message": "Қолданылмаған кадр"
|
12427
12619
|
},
|
12428
12620
|
"panels/timeline/TimelineFlameChartDataProvider.ts | frame": {
|
12429
12621
|
"message": "Кадр"
|
@@ -12441,10 +12633,10 @@
|
|
12441
12633
|
"message": "Қайталанатын туынды элементті жасыру"
|
12442
12634
|
},
|
12443
12635
|
"panels/timeline/TimelineFlameChartDataProvider.ts | idleFrame": {
|
12444
|
-
"message": "
|
12636
|
+
"message": "Кадр күту режимінде"
|
12445
12637
|
},
|
12446
12638
|
"panels/timeline/TimelineFlameChartDataProvider.ts | partiallyPresentedFrame": {
|
12447
|
-
"message": "
|
12639
|
+
"message": "Ішінара көрсетілген кадр"
|
12448
12640
|
},
|
12449
12641
|
"panels/timeline/TimelineFlameChartDataProvider.ts | removeScriptFromIgnoreList": {
|
12450
12642
|
"message": "Скриптіні елемеу тізімінен өшіру"
|
@@ -12459,10 +12651,10 @@
|
|
12459
12651
|
"message": "{PH2} уақыттағы {PH1}"
|
12460
12652
|
},
|
12461
12653
|
"panels/timeline/TimelineHistoryManager.ts | currentSessionSS": {
|
12462
|
-
"message": "
|
12654
|
+
"message": "Қазіргі сеанс: {PH1}. {PH2}"
|
12463
12655
|
},
|
12464
12656
|
"panels/timeline/TimelineHistoryManager.ts | landingPageTitle": {
|
12465
|
-
"message": "
|
12657
|
+
"message": "Тікелей көрсеткіштер"
|
12466
12658
|
},
|
12467
12659
|
"panels/timeline/TimelineHistoryManager.ts | moments": {
|
12468
12660
|
"message": "сәттер"
|
@@ -12483,7 +12675,7 @@
|
|
12483
12675
|
"message": "{PH1} м"
|
12484
12676
|
},
|
12485
12677
|
"panels/timeline/TimelineHistoryManager.ts | selectTimelineSession": {
|
12486
|
-
"message": "
|
12678
|
+
"message": "Хронология сеансын таңдау"
|
12487
12679
|
},
|
12488
12680
|
"panels/timeline/TimelineLandingPage.ts | afterRecordingSelectAnAreaOf": {
|
12489
12681
|
"message": "Жазып болған соң, тарту арқылы жалпы ақпараттағы зерттеу аймағын таңдаңыз. Содан кейін тінтуірдің дөңгелегі немесе {PH1} пернелері арқылы хронологияны масштабтаңыз және панорамалаңыз. {PH2}"
|
@@ -12506,9 +12698,6 @@
|
|
12506
12698
|
"panels/timeline/TimelinePanel.ts | CpuThrottlingIsEnabled": {
|
12507
12699
|
"message": "- Орталық процессорды реттеу іске қосылды."
|
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,11 +12755,14 @@
|
|
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
|
-
"message": "
|
12762
|
+
"message": "Дұрысталған өнімділік трассалары"
|
12571
12763
|
},
|
12572
12764
|
"panels/timeline/TimelinePanel.ts | exportNormalTraces": {
|
12573
|
-
"message": "
|
12765
|
+
"message": "Негізгі өнімділік трассалары"
|
12574
12766
|
},
|
12575
12767
|
"panels/timeline/TimelinePanel.ts | failedToSaveTimelineSS": {
|
12576
12768
|
"message": "Хронология сақталмады: {PH1} ({PH2})"
|
@@ -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
|
},
|
@@ -12603,7 +12801,7 @@
|
|
12603
12801
|
"message": "Кеңейтім деректері"
|
12604
12802
|
},
|
12605
12803
|
"panels/timeline/TimelinePanel.ts | processed": {
|
12606
|
-
"message": "
|
12804
|
+
"message": "Орындалды"
|
12607
12805
|
},
|
12608
12806
|
"panels/timeline/TimelinePanel.ts | processingProfile": {
|
12609
12807
|
"message": "Профиль өңделуде…"
|
@@ -12621,14 +12819,17 @@
|
|
12621
12819
|
"message": "Профильді сақтау…"
|
12622
12820
|
},
|
12623
12821
|
"panels/timeline/TimelinePanel.ts | saveTraceWithAnnotationsMenuOption": {
|
12624
|
-
"message": "
|
12822
|
+
"message": "Трассаны сақтау"
|
12625
12823
|
},
|
12626
12824
|
"panels/timeline/TimelinePanel.ts | saveTraceWithoutAnnotationsMenuOption": {
|
12627
|
-
"message": "
|
12825
|
+
"message": "Трассаны aннотацияларсыз сақтау"
|
12628
12826
|
},
|
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
|
},
|
@@ -12660,7 +12861,7 @@
|
|
12660
12861
|
"message": "Уақыт"
|
12661
12862
|
},
|
12662
12863
|
"panels/timeline/TimelineSelectorStatsView.ts | copyTable": {
|
12663
|
-
"message": "
|
12864
|
+
"message": "Кестені көшіру"
|
12664
12865
|
},
|
12665
12866
|
"panels/timeline/TimelineSelectorStatsView.ts | elapsed": {
|
12666
12867
|
"message": "Өткен уақыт (мс)"
|
@@ -12669,22 +12870,22 @@
|
|
12669
12870
|
"message": "Жол: {PH1}:{PH2}"
|
12670
12871
|
},
|
12671
12872
|
"panels/timeline/TimelineSelectorStatsView.ts | matchAttempts": {
|
12672
|
-
"message": "
|
12873
|
+
"message": "Сәйкестендіру әрекеттерінің саны"
|
12673
12874
|
},
|
12674
12875
|
"panels/timeline/TimelineSelectorStatsView.ts | matchCount": {
|
12675
|
-
"message": "
|
12876
|
+
"message": "Сәйкестіктер саны"
|
12676
12877
|
},
|
12677
12878
|
"panels/timeline/TimelineSelectorStatsView.ts | rejectPercentage": {
|
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": "Таңдау құралы"
|
12685
12886
|
},
|
12686
12887
|
"panels/timeline/TimelineSelectorStatsView.ts | selectorStats": {
|
12687
|
-
"message": "
|
12888
|
+
"message": "Таңдау құралының статистикасы"
|
12688
12889
|
},
|
12689
12890
|
"panels/timeline/TimelineSelectorStatsView.ts | styleSheetId": {
|
12690
12891
|
"message": "Стильдер кестесі"
|
@@ -12714,22 +12915,22 @@
|
|
12714
12915
|
"message": "Топтау реті"
|
12715
12916
|
},
|
12716
12917
|
"panels/timeline/TimelineTreeView.ts | groupByActivity": {
|
12717
|
-
"message": "
|
12918
|
+
"message": "Әрекет бойынша топтау"
|
12718
12919
|
},
|
12719
12920
|
"panels/timeline/TimelineTreeView.ts | groupByCategory": {
|
12720
|
-
"message": "
|
12921
|
+
"message": "Санаты бойынша топтау"
|
12721
12922
|
},
|
12722
12923
|
"panels/timeline/TimelineTreeView.ts | groupByDomain": {
|
12723
|
-
"message": "
|
12924
|
+
"message": "Домен бойынша топтау"
|
12724
12925
|
},
|
12725
12926
|
"panels/timeline/TimelineTreeView.ts | groupByFrame": {
|
12726
|
-
"message": "
|
12927
|
+
"message": "Кадр бойынша топтау"
|
12727
12928
|
},
|
12728
12929
|
"panels/timeline/TimelineTreeView.ts | groupBySubdomain": {
|
12729
|
-
"message": "
|
12930
|
+
"message": "Ішкі домен арқылы топтау"
|
12730
12931
|
},
|
12731
12932
|
"panels/timeline/TimelineTreeView.ts | groupByThirdParties": {
|
12732
|
-
"message": "
|
12933
|
+
"message": "Үшінші тараптар бойынша топтау"
|
12733
12934
|
},
|
12734
12935
|
"panels/timeline/TimelineTreeView.ts | groupByUrl": {
|
12735
12936
|
"message": "URL бойынша топтау"
|
@@ -12744,16 +12945,16 @@
|
|
12744
12945
|
"message": "Ең ауыр стэктің жылжыту жолағы көрсетілді."
|
12745
12946
|
},
|
12746
12947
|
"panels/timeline/TimelineTreeView.ts | hideHeaviestStack": {
|
12747
|
-
"message": "
|
12948
|
+
"message": "Ең ауыр стэкті жасыру"
|
12748
12949
|
},
|
12749
12950
|
"panels/timeline/TimelineTreeView.ts | matchCase": {
|
12750
|
-
"message": "
|
12951
|
+
"message": "Регистрді есепке алу"
|
12751
12952
|
},
|
12752
12953
|
"panels/timeline/TimelineTreeView.ts | matchWholeWord": {
|
12753
12954
|
"message": "Тұтас сөзді сәйкестендіру"
|
12754
12955
|
},
|
12755
12956
|
"panels/timeline/TimelineTreeView.ts | noGrouping": {
|
12756
|
-
"message": "
|
12957
|
+
"message": "Топтаусыз"
|
12757
12958
|
},
|
12758
12959
|
"panels/timeline/TimelineTreeView.ts | page": {
|
12759
12960
|
"message": "Бет"
|
@@ -12768,22 +12969,22 @@
|
|
12768
12969
|
"message": "Мәліметтер үшін элементті таңдаңыз."
|
12769
12970
|
},
|
12770
12971
|
"panels/timeline/TimelineTreeView.ts | selfTime": {
|
12771
|
-
"message": "
|
12972
|
+
"message": "Жалғыз операция уақыты"
|
12772
12973
|
},
|
12773
12974
|
"panels/timeline/TimelineTreeView.ts | showHeaviestStack": {
|
12774
|
-
"message": "
|
12975
|
+
"message": "Ең ауыр стэкті көрсету"
|
12775
12976
|
},
|
12776
12977
|
"panels/timeline/TimelineTreeView.ts | timelineStack": {
|
12777
|
-
"message": "
|
12978
|
+
"message": "Хронология стэгі"
|
12778
12979
|
},
|
12779
12980
|
"panels/timeline/TimelineTreeView.ts | totalTime": {
|
12780
|
-
"message": "
|
12981
|
+
"message": "Жалпы уақыт"
|
12781
12982
|
},
|
12782
12983
|
"panels/timeline/TimelineTreeView.ts | unattributed": {
|
12783
12984
|
"message": "[төлсипатталмаған]"
|
12784
12985
|
},
|
12785
12986
|
"panels/timeline/TimelineTreeView.ts | useRegularExpression": {
|
12786
|
-
"message": "
|
12987
|
+
"message": "Тұрақты өрнекті қолдану"
|
12787
12988
|
},
|
12788
12989
|
"panels/timeline/TimelineTreeView.ts | vRuntime": {
|
12789
12990
|
"message": "[V8 жұмыс уақыты]"
|
@@ -12792,16 +12993,19 @@
|
|
12792
12993
|
"message": "[белгісіз түйін]"
|
12793
12994
|
},
|
12794
12995
|
"panels/timeline/TimelineUIUtils.ts | aggregatedTime": {
|
12795
|
-
"message": "
|
12996
|
+
"message": "Біріктірілген уақыт"
|
12796
12997
|
},
|
12797
12998
|
"panels/timeline/TimelineUIUtils.ts | allottedTime": {
|
12798
|
-
"message": "
|
12999
|
+
"message": "Бөлінген уақыт"
|
13000
|
+
},
|
13001
|
+
"panels/timeline/TimelineUIUtils.ts | animating": {
|
13002
|
+
"message": "Қозғалып жатыр"
|
12799
13003
|
},
|
12800
13004
|
"panels/timeline/TimelineUIUtils.ts | animationFrameRequested": {
|
12801
|
-
"message": "
|
13005
|
+
"message": "Анимация кадры сұралды."
|
12802
13006
|
},
|
12803
13007
|
"panels/timeline/TimelineUIUtils.ts | callbackFunction": {
|
12804
|
-
"message": "
|
13008
|
+
"message": "Кері шақыру функциясы"
|
12805
13009
|
},
|
12806
13010
|
"panels/timeline/TimelineUIUtils.ts | callbackId": {
|
12807
13011
|
"message": "Кері қоңырау шалу идентификаторы"
|
@@ -12821,23 +13025,83 @@
|
|
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": "Әсер !important элементі бар сипатқа қолданылады."
|
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": "Әсерде \"replace\" режимінен өзге режим қолданылады."
|
13045
|
+
},
|
13046
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedEffectHasUnsupportedTimingParams": {
|
13047
|
+
"message": "Әсер шамаларында уақыт параметрлеріне қолдау көрсетілмейді."
|
13048
|
+
},
|
13049
|
+
"panels/timeline/TimelineUIUtils.ts | compositingFailedEffectSuppressedByDevtools": {
|
13050
|
+
"message": "Әзірлеуші құралдары арқылы сығылған әсер "
|
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}}other{Қолдау көрсетілмейтін CSS сипаттары: {properties}}}"
|
13087
|
+
},
|
12824
13088
|
"panels/timeline/TimelineUIUtils.ts | consumedCacheSize": {
|
12825
|
-
"message": "
|
13089
|
+
"message": "Қолданылған кэш өлшемі"
|
12826
13090
|
},
|
12827
13091
|
"panels/timeline/TimelineUIUtils.ts | cumulativeLayoutShifts": {
|
12828
13092
|
"message": "Жинақтық схеманың ығысулары"
|
12829
13093
|
},
|
12830
13094
|
"panels/timeline/TimelineUIUtils.ts | cumulativeScore": {
|
12831
|
-
"message": "
|
13095
|
+
"message": "Жиынтық мән"
|
12832
13096
|
},
|
12833
13097
|
"panels/timeline/TimelineUIUtils.ts | currentClusterId": {
|
12834
|
-
"message": "
|
13098
|
+
"message": "Ағымдағы кластер идентификаторы"
|
12835
13099
|
},
|
12836
13100
|
"panels/timeline/TimelineUIUtils.ts | currentClusterScore": {
|
12837
|
-
"message": "
|
13101
|
+
"message": "Ағымдағы кластер бағасы"
|
12838
13102
|
},
|
12839
13103
|
"panels/timeline/TimelineUIUtils.ts | description": {
|
12840
|
-
"message": "
|
13104
|
+
"message": "Сипаттама"
|
12841
13105
|
},
|
12842
13106
|
"panels/timeline/TimelineUIUtils.ts | details": {
|
12843
13107
|
"message": "Мәліметтер"
|
@@ -12852,7 +13116,7 @@
|
|
12852
13116
|
"message": "Барлық функцияны жылдам компиляциялау"
|
12853
13117
|
},
|
12854
13118
|
"panels/timeline/TimelineUIUtils.ts | elementsAffected": {
|
12855
|
-
"message": "
|
13119
|
+
"message": "Әсері тиген элементтер"
|
12856
13120
|
},
|
12857
13121
|
"panels/timeline/TimelineUIUtils.ts | emptyPlaceholder": {
|
12858
13122
|
"message": "{PH1}"
|
@@ -12867,10 +13131,10 @@
|
|
12867
13131
|
"message": "скриптіні кэштен жүктеу мүмкін болмады"
|
12868
13132
|
},
|
12869
13133
|
"panels/timeline/TimelineUIUtils.ts | firstInvalidated": {
|
12870
|
-
"message": "
|
13134
|
+
"message": "Жарамсыз деп танылған алғашқы элемент"
|
12871
13135
|
},
|
12872
13136
|
"panels/timeline/TimelineUIUtils.ts | firstLayoutInvalidation": {
|
12873
|
-
"message": "
|
13137
|
+
"message": "Бірінші форматты жарамсыз деп тану"
|
12874
13138
|
},
|
12875
13139
|
"panels/timeline/TimelineUIUtils.ts | frame": {
|
12876
13140
|
"message": "Кадр"
|
@@ -12882,7 +13146,7 @@
|
|
12882
13146
|
"message": "Жақында енгізді."
|
12883
13147
|
},
|
12884
13148
|
"panels/timeline/TimelineUIUtils.ts | idleCallbackRequested": {
|
12885
|
-
"message": "
|
13149
|
+
"message": "Күту режиміндегі кері шақыру сұралды."
|
12886
13150
|
},
|
12887
13151
|
"panels/timeline/TimelineUIUtils.ts | imageUrl": {
|
12888
13152
|
"message": "Кескіннің URL сілтемесі"
|
@@ -12894,7 +13158,7 @@
|
|
12894
13158
|
"message": "Бастаған"
|
12895
13159
|
},
|
12896
13160
|
"panels/timeline/TimelineUIUtils.ts | initiatorStackTrace": {
|
12897
|
-
"message": "
|
13161
|
+
"message": "Бастаушының стэктер трассасы"
|
12898
13162
|
},
|
12899
13163
|
"panels/timeline/TimelineUIUtils.ts | inputDelay": {
|
12900
13164
|
"message": "Енгізу кідірісі"
|
@@ -12909,13 +13173,13 @@
|
|
12909
13173
|
"message": "Жарамсыз оқиғалар (жалпы {PH1})"
|
12910
13174
|
},
|
12911
13175
|
"panels/timeline/TimelineUIUtils.ts | invokedByTimeout": {
|
12912
|
-
"message": "
|
13176
|
+
"message": "Күту уақыты арқылы іске қосылды."
|
12913
13177
|
},
|
12914
13178
|
"panels/timeline/TimelineUIUtils.ts | layerRoot": {
|
12915
|
-
"message": "
|
13179
|
+
"message": "Қабат түбірі"
|
12916
13180
|
},
|
12917
13181
|
"panels/timeline/TimelineUIUtils.ts | layoutForced": {
|
12918
|
-
"message": "
|
13182
|
+
"message": "Формат іске қосылды"
|
12919
13183
|
},
|
12920
13184
|
"panels/timeline/TimelineUIUtils.ts | layoutRoot": {
|
12921
13185
|
"message": "Схема түбірі"
|
@@ -12942,16 +13206,16 @@
|
|
12942
13206
|
"message": "Жоқ"
|
12943
13207
|
},
|
12944
13208
|
"panels/timeline/TimelineUIUtils.ts | nodesThatNeedLayout": {
|
12945
|
-
"message": "
|
13209
|
+
"message": "Форматты қажет ететін түйіндер"
|
12946
13210
|
},
|
12947
13211
|
"panels/timeline/TimelineUIUtils.ts | outsideBreadcrumbRange": {
|
12948
13212
|
"message": "(навигация жолының ауқымынан тыс)"
|
12949
13213
|
},
|
12950
13214
|
"panels/timeline/TimelineUIUtils.ts | ownerElement": {
|
12951
|
-
"message": "
|
13215
|
+
"message": "Иенің элементі"
|
12952
13216
|
},
|
12953
13217
|
"panels/timeline/TimelineUIUtils.ts | paintProfiler": {
|
12954
|
-
"message": "
|
13218
|
+
"message": "Бояу профильдеушісі"
|
12955
13219
|
},
|
12956
13220
|
"panels/timeline/TimelineUIUtils.ts | parse": {
|
12957
13221
|
"message": "Талдау"
|
@@ -12969,13 +13233,13 @@
|
|
12969
13233
|
"message": "Өңдеу ұзақтығы"
|
12970
13234
|
},
|
12971
13235
|
"panels/timeline/TimelineUIUtils.ts | producedCacheSize": {
|
12972
|
-
"message": "
|
13236
|
+
"message": "Шығарылған кэш өлшемі"
|
12973
13237
|
},
|
12974
13238
|
"panels/timeline/TimelineUIUtils.ts | range": {
|
12975
13239
|
"message": "Аралық"
|
12976
13240
|
},
|
12977
13241
|
"panels/timeline/TimelineUIUtils.ts | recalculationForced": {
|
12978
|
-
"message": "
|
13242
|
+
"message": "Қайта есептеу күштеп іске қосылды."
|
12979
13243
|
},
|
12980
13244
|
"panels/timeline/TimelineUIUtils.ts | relatedNode": {
|
12981
13245
|
"message": "Ұқсас түйін"
|
@@ -13035,16 +13299,16 @@
|
|
13035
13299
|
"message": "скрипт жарамды емес"
|
13036
13300
|
},
|
13037
13301
|
"panels/timeline/TimelineUIUtils.ts | selectorStatsTitle": {
|
13038
|
-
"message": "
|
13302
|
+
"message": "Таңдау құралының статистикасы"
|
13039
13303
|
},
|
13040
13304
|
"panels/timeline/TimelineUIUtils.ts | selfTime": {
|
13041
|
-
"message": "
|
13305
|
+
"message": "Жалғыз операция уақыты"
|
13042
13306
|
},
|
13043
13307
|
"panels/timeline/TimelineUIUtils.ts | size": {
|
13044
13308
|
"message": "Өлшем"
|
13045
13309
|
},
|
13046
13310
|
"panels/timeline/TimelineUIUtils.ts | stackTrace": {
|
13047
|
-
"message": "
|
13311
|
+
"message": "Стэкті трассалау"
|
13048
13312
|
},
|
13049
13313
|
"panels/timeline/TimelineUIUtils.ts | streamed": {
|
13050
13314
|
"message": "Трансляцияланған"
|
@@ -13062,16 +13326,16 @@
|
|
13062
13326
|
"message": "Таймер идентификаторы"
|
13063
13327
|
},
|
13064
13328
|
"panels/timeline/TimelineUIUtils.ts | timerInstalled": {
|
13065
|
-
"message": "
|
13329
|
+
"message": "Таймер орнатылды."
|
13066
13330
|
},
|
13067
13331
|
"panels/timeline/TimelineUIUtils.ts | timestamp": {
|
13068
13332
|
"message": "Уақыт белгісі"
|
13069
13333
|
},
|
13070
13334
|
"panels/timeline/TimelineUIUtils.ts | totalTime": {
|
13071
|
-
"message": "
|
13335
|
+
"message": "Жалпы уақыт"
|
13072
13336
|
},
|
13073
13337
|
"panels/timeline/TimelineUIUtils.ts | traceEvent": {
|
13074
|
-
"message": "
|
13338
|
+
"message": "Трасса оқиғасы"
|
13075
13339
|
},
|
13076
13340
|
"panels/timeline/TimelineUIUtils.ts | type": {
|
13077
13341
|
"message": "Tүрі"
|
@@ -13092,7 +13356,7 @@
|
|
13092
13356
|
"message": "Бейсинхронды"
|
13093
13357
|
},
|
13094
13358
|
"panels/timeline/UIDevtoolsUtils.ts | drawFrame": {
|
13095
|
-
"message": "
|
13359
|
+
"message": "Кадр сызу"
|
13096
13360
|
},
|
13097
13361
|
"panels/timeline/UIDevtoolsUtils.ts | drawing": {
|
13098
13362
|
"message": "Сызу"
|
@@ -13101,7 +13365,7 @@
|
|
13101
13365
|
"message": "Тәжірибе"
|
13102
13366
|
},
|
13103
13367
|
"panels/timeline/UIDevtoolsUtils.ts | frameStart": {
|
13104
|
-
"message": "
|
13368
|
+
"message": "Кадрды бастау"
|
13105
13369
|
},
|
13106
13370
|
"panels/timeline/UIDevtoolsUtils.ts | gpu": {
|
13107
13371
|
"message": "GPU"
|
@@ -13134,10 +13398,10 @@
|
|
13134
13398
|
"message": "Жүйе"
|
13135
13399
|
},
|
13136
13400
|
"panels/timeline/components/BreadcrumbsUI.ts | activateBreadcrumb": {
|
13137
|
-
"message": "
|
13401
|
+
"message": "Навигация жолын іске қосу"
|
13138
13402
|
},
|
13139
13403
|
"panels/timeline/components/BreadcrumbsUI.ts | removeChildBreadcrumbs": {
|
13140
|
-
"message": "
|
13404
|
+
"message": "Туынды элементтің навигация жолдарын өшіру"
|
13141
13405
|
},
|
13142
13406
|
"panels/timeline/components/CPUThrottlingSelector.ts | cpu": {
|
13143
13407
|
"message": "Орталық процессор: {PH1}"
|
@@ -13176,19 +13440,19 @@
|
|
13176
13440
|
"message": "{PH1} байт"
|
13177
13441
|
},
|
13178
13442
|
"panels/timeline/components/DetailsView.ts | webSocketDataLength": {
|
13179
|
-
"message": "
|
13443
|
+
"message": "Деректердің байт мөлшері"
|
13180
13444
|
},
|
13181
13445
|
"panels/timeline/components/DetailsView.ts | websocketProtocol": {
|
13182
|
-
"message": "WebSocket
|
13446
|
+
"message": "WebSocket протоколы"
|
13183
13447
|
},
|
13184
13448
|
"panels/timeline/components/EntryName.ts | anonymous": {
|
13185
|
-
"message": "(
|
13449
|
+
"message": "(анонимді)"
|
13186
13450
|
},
|
13187
13451
|
"panels/timeline/components/EntryName.ts | eventDispatchS": {
|
13188
13452
|
"message": "Оқиға: {PH1}"
|
13189
13453
|
},
|
13190
13454
|
"panels/timeline/components/EntryName.ts | frame": {
|
13191
|
-
"message": "
|
13455
|
+
"message": "Кадр"
|
13192
13456
|
},
|
13193
13457
|
"panels/timeline/components/EntryName.ts | wsConnectionClosed": {
|
13194
13458
|
"message": "WebSocket жабылды"
|
@@ -13203,52 +13467,52 @@
|
|
13203
13467
|
"message": "Анимация"
|
13204
13468
|
},
|
13205
13469
|
"panels/timeline/components/EntryStyles.ts | animationFrameFired": {
|
13206
|
-
"message": "
|
13470
|
+
"message": "Анимация кадры басталды."
|
13207
13471
|
},
|
13208
13472
|
"panels/timeline/components/EntryStyles.ts | async": {
|
13209
13473
|
"message": "Бейсинхронды"
|
13210
13474
|
},
|
13211
13475
|
"panels/timeline/components/EntryStyles.ts | asyncTask": {
|
13212
|
-
"message": "
|
13476
|
+
"message": "Бейсинхрондау тапсырмасы"
|
13213
13477
|
},
|
13214
13478
|
"panels/timeline/components/EntryStyles.ts | cacheModule": {
|
13215
|
-
"message": "
|
13479
|
+
"message": "Модуль кодын кэштеу"
|
13216
13480
|
},
|
13217
13481
|
"panels/timeline/components/EntryStyles.ts | cacheScript": {
|
13218
|
-
"message": "
|
13482
|
+
"message": "Скрипт кодын кэштеу"
|
13219
13483
|
},
|
13220
13484
|
"panels/timeline/components/EntryStyles.ts | cachedWasmModule": {
|
13221
|
-
"message": "
|
13485
|
+
"message": "Кэштелген Wasm модулі"
|
13222
13486
|
},
|
13223
13487
|
"panels/timeline/components/EntryStyles.ts | cancelAnimationFrame": {
|
13224
|
-
"message": "
|
13488
|
+
"message": "Анимация кадрынан бас тарту"
|
13225
13489
|
},
|
13226
13490
|
"panels/timeline/components/EntryStyles.ts | cancelIdleCallback": {
|
13227
|
-
"message": "
|
13491
|
+
"message": "Күту режиміндегі кері шақырудан бас тарту"
|
13228
13492
|
},
|
13229
13493
|
"panels/timeline/components/EntryStyles.ts | commit": {
|
13230
13494
|
"message": "Түрлендіру"
|
13231
13495
|
},
|
13232
13496
|
"panels/timeline/components/EntryStyles.ts | compileCode": {
|
13233
|
-
"message": "
|
13497
|
+
"message": "Компиляциялау коды"
|
13234
13498
|
},
|
13235
13499
|
"panels/timeline/components/EntryStyles.ts | compileModule": {
|
13236
|
-
"message": "
|
13500
|
+
"message": "Модуль компиляциялау"
|
13237
13501
|
},
|
13238
13502
|
"panels/timeline/components/EntryStyles.ts | compileScript": {
|
13239
|
-
"message": "
|
13503
|
+
"message": "Скрипт компиляциялау"
|
13240
13504
|
},
|
13241
13505
|
"panels/timeline/components/EntryStyles.ts | compiledWasmModule": {
|
13242
|
-
"message": "
|
13506
|
+
"message": "Компиляцияланған Wasm модулі"
|
13243
13507
|
},
|
13244
13508
|
"panels/timeline/components/EntryStyles.ts | compositeLayers": {
|
13245
|
-
"message": "
|
13509
|
+
"message": "Күрделі қабаттар"
|
13246
13510
|
},
|
13247
13511
|
"panels/timeline/components/EntryStyles.ts | computeIntersections": {
|
13248
|
-
"message": "
|
13512
|
+
"message": "Қиылыстарды есептеу"
|
13249
13513
|
},
|
13250
13514
|
"panels/timeline/components/EntryStyles.ts | consoleTime": {
|
13251
|
-
"message": "
|
13515
|
+
"message": "Консоль уақыты"
|
13252
13516
|
},
|
13253
13517
|
"panels/timeline/components/EntryStyles.ts | cppGc": {
|
13254
13518
|
"message": "CPP GC"
|
@@ -13260,10 +13524,10 @@
|
|
13260
13524
|
"message": "Шифрдан шығару"
|
13261
13525
|
},
|
13262
13526
|
"panels/timeline/components/EntryStyles.ts | decryptReply": {
|
13263
|
-
"message": "
|
13527
|
+
"message": "Жауапты шифрдан шығару"
|
13264
13528
|
},
|
13265
13529
|
"panels/timeline/components/EntryStyles.ts | deserializeCodeCache": {
|
13266
|
-
"message": "
|
13530
|
+
"message": "Код кэшін сериядан шығару"
|
13267
13531
|
},
|
13268
13532
|
"panels/timeline/components/EntryStyles.ts | destroyWebsocket": {
|
13269
13533
|
"message": "WebSocket бұзу"
|
@@ -13272,49 +13536,49 @@
|
|
13272
13536
|
"message": "Дайджест"
|
13273
13537
|
},
|
13274
13538
|
"panels/timeline/components/EntryStyles.ts | digestReply": {
|
13275
|
-
"message": "
|
13539
|
+
"message": "Дайджест жауабы"
|
13276
13540
|
},
|
13277
13541
|
"panels/timeline/components/EntryStyles.ts | domGc": {
|
13278
13542
|
"message": "DOM қоқысын жинау"
|
13279
13543
|
},
|
13280
13544
|
"panels/timeline/components/EntryStyles.ts | domcontentloadedEvent": {
|
13281
|
-
"message": "DOMContentLoaded
|
13545
|
+
"message": "DOMContentLoaded оқиғасы"
|
13282
13546
|
},
|
13283
13547
|
"panels/timeline/components/EntryStyles.ts | drawFrame": {
|
13284
|
-
"message": "
|
13548
|
+
"message": "Кадр сызу"
|
13285
13549
|
},
|
13286
13550
|
"panels/timeline/components/EntryStyles.ts | drawing": {
|
13287
13551
|
"message": "Сызу"
|
13288
13552
|
},
|
13289
13553
|
"panels/timeline/components/EntryStyles.ts | embedderCallback": {
|
13290
|
-
"message": "
|
13554
|
+
"message": "Ендірушінің кері шақыруы"
|
13291
13555
|
},
|
13292
13556
|
"panels/timeline/components/EntryStyles.ts | encrypt": {
|
13293
13557
|
"message": "Шифрлау"
|
13294
13558
|
},
|
13295
13559
|
"panels/timeline/components/EntryStyles.ts | encryptReply": {
|
13296
|
-
"message": "
|
13560
|
+
"message": "Жауапты шифрлау"
|
13297
13561
|
},
|
13298
13562
|
"panels/timeline/components/EntryStyles.ts | evaluateModule": {
|
13299
|
-
"message": "
|
13563
|
+
"message": "Модульді бағалау"
|
13300
13564
|
},
|
13301
13565
|
"panels/timeline/components/EntryStyles.ts | evaluateScript": {
|
13302
|
-
"message": "
|
13566
|
+
"message": "Скриптіні бағалау"
|
13303
13567
|
},
|
13304
13568
|
"panels/timeline/components/EntryStyles.ts | event": {
|
13305
13569
|
"message": "Оқиға"
|
13306
13570
|
},
|
13307
13571
|
"panels/timeline/components/EntryStyles.ts | eventTiming": {
|
13308
|
-
"message": "
|
13572
|
+
"message": "Оқиға уақыты"
|
13309
13573
|
},
|
13310
13574
|
"panels/timeline/components/EntryStyles.ts | experience": {
|
13311
13575
|
"message": "Тәжірибе"
|
13312
13576
|
},
|
13313
13577
|
"panels/timeline/components/EntryStyles.ts | finishLoading": {
|
13314
|
-
"message": "
|
13578
|
+
"message": "Жүктеуді аяқтау"
|
13315
13579
|
},
|
13316
13580
|
"panels/timeline/components/EntryStyles.ts | fireIdleCallback": {
|
13317
|
-
"message": "
|
13581
|
+
"message": "Күту режиміндегі кері шақыруды іске қосу"
|
13318
13582
|
},
|
13319
13583
|
"panels/timeline/components/EntryStyles.ts | firstContentfulPaint": {
|
13320
13584
|
"message": "Бірінші контентті бояу"
|
@@ -13323,40 +13587,40 @@
|
|
13323
13587
|
"message": "Бірінші бояу"
|
13324
13588
|
},
|
13325
13589
|
"panels/timeline/components/EntryStyles.ts | frameStart": {
|
13326
|
-
"message": "
|
13590
|
+
"message": "Кадрды бастау"
|
13327
13591
|
},
|
13328
13592
|
"panels/timeline/components/EntryStyles.ts | frameStartMainThread": {
|
13329
|
-
"message": "
|
13593
|
+
"message": "Кадрдың басталу уақыты (негізгі тізбек)"
|
13330
13594
|
},
|
13331
13595
|
"panels/timeline/components/EntryStyles.ts | frameStartedLoading": {
|
13332
|
-
"message": "
|
13596
|
+
"message": "Кадр жүктеле бастады."
|
13333
13597
|
},
|
13334
13598
|
"panels/timeline/components/EntryStyles.ts | functionCall": {
|
13335
|
-
"message": "
|
13599
|
+
"message": "Функциялық шақыру"
|
13336
13600
|
},
|
13337
13601
|
"panels/timeline/components/EntryStyles.ts | gcEvent": {
|
13338
|
-
"message": "
|
13602
|
+
"message": "Қоқыс жинау іс-шарасы"
|
13339
13603
|
},
|
13340
13604
|
"panels/timeline/components/EntryStyles.ts | gpu": {
|
13341
13605
|
"message": "GPU"
|
13342
13606
|
},
|
13343
13607
|
"panels/timeline/components/EntryStyles.ts | hitTest": {
|
13344
|
-
"message": "
|
13608
|
+
"message": "Басу сынағы"
|
13345
13609
|
},
|
13346
13610
|
"panels/timeline/components/EntryStyles.ts | idle": {
|
13347
13611
|
"message": "Бос"
|
13348
13612
|
},
|
13349
13613
|
"panels/timeline/components/EntryStyles.ts | imageDecode": {
|
13350
|
-
"message": "
|
13614
|
+
"message": "Кескіннің кодын ашу"
|
13351
13615
|
},
|
13352
13616
|
"panels/timeline/components/EntryStyles.ts | installTimer": {
|
13353
|
-
"message": "
|
13617
|
+
"message": "Таймер орнату"
|
13354
13618
|
},
|
13355
13619
|
"panels/timeline/components/EntryStyles.ts | invalidateLayout": {
|
13356
13620
|
"message": "Схемасын жарамсыз деп тану"
|
13357
13621
|
},
|
13358
13622
|
"panels/timeline/components/EntryStyles.ts | jsFrame": {
|
13359
|
-
"message": "JS
|
13623
|
+
"message": "JS кадры"
|
13360
13624
|
},
|
13361
13625
|
"panels/timeline/components/EntryStyles.ts | largestContentfulPaint": {
|
13362
13626
|
"message": "Ең үлкен контентті бояу"
|
@@ -13371,7 +13635,7 @@
|
|
13371
13635
|
"message": "Формат өзгерісі"
|
13372
13636
|
},
|
13373
13637
|
"panels/timeline/components/EntryStyles.ts | layoutShiftCluster": {
|
13374
|
-
"message": "
|
13638
|
+
"message": "Формат өзгерісінің кластері"
|
13375
13639
|
},
|
13376
13640
|
"panels/timeline/components/EntryStyles.ts | loading": {
|
13377
13641
|
"message": "Жүктеу"
|
@@ -13386,13 +13650,13 @@
|
|
13386
13650
|
"message": "Шағын қоқыс жинау"
|
13387
13651
|
},
|
13388
13652
|
"panels/timeline/components/EntryStyles.ts | onMessage": {
|
13389
|
-
"message": "
|
13653
|
+
"message": "Хабарда"
|
13390
13654
|
},
|
13391
13655
|
"panels/timeline/components/EntryStyles.ts | onloadEvent": {
|
13392
|
-
"message": "
|
13656
|
+
"message": "Жүктеу оқиғасы"
|
13393
13657
|
},
|
13394
13658
|
"panels/timeline/components/EntryStyles.ts | optimizeCode": {
|
13395
|
-
"message": "
|
13659
|
+
"message": "Оңтайландыру коды"
|
13396
13660
|
},
|
13397
13661
|
"panels/timeline/components/EntryStyles.ts | other": {
|
13398
13662
|
"message": "Басқа"
|
@@ -13401,70 +13665,70 @@
|
|
13401
13665
|
"message": "Бояу"
|
13402
13666
|
},
|
13403
13667
|
"panels/timeline/components/EntryStyles.ts | paintImage": {
|
13404
|
-
"message": "
|
13668
|
+
"message": "Сурет салу"
|
13405
13669
|
},
|
13406
13670
|
"panels/timeline/components/EntryStyles.ts | paintSetup": {
|
13407
|
-
"message": "
|
13671
|
+
"message": "Сурет салуды реттеу"
|
13408
13672
|
},
|
13409
13673
|
"panels/timeline/components/EntryStyles.ts | painting": {
|
13410
13674
|
"message": "Кескіндеу"
|
13411
13675
|
},
|
13412
13676
|
"panels/timeline/components/EntryStyles.ts | parseAndCompile": {
|
13413
|
-
"message": "
|
13677
|
+
"message": "Талдау және компиляциялау"
|
13414
13678
|
},
|
13415
13679
|
"panels/timeline/components/EntryStyles.ts | parseHtml": {
|
13416
13680
|
"message": "HTML протоколын талдау"
|
13417
13681
|
},
|
13418
13682
|
"panels/timeline/components/EntryStyles.ts | parseStylesheet": {
|
13419
|
-
"message": "
|
13683
|
+
"message": "Стильдер кестесін талдау"
|
13420
13684
|
},
|
13421
13685
|
"panels/timeline/components/EntryStyles.ts | prePaint": {
|
13422
|
-
"message": "
|
13686
|
+
"message": "Сурет салуға дейінгі қадам"
|
13423
13687
|
},
|
13424
13688
|
"panels/timeline/components/EntryStyles.ts | profilingOverhead": {
|
13425
|
-
"message": "
|
13689
|
+
"message": "Профильдеу кезіндегі уақыт шығыны"
|
13426
13690
|
},
|
13427
13691
|
"panels/timeline/components/EntryStyles.ts | rasterizePaint": {
|
13428
|
-
"message": "
|
13692
|
+
"message": "Сурет салуды растеризациялау"
|
13429
13693
|
},
|
13430
13694
|
"panels/timeline/components/EntryStyles.ts | rasterizing": {
|
13431
13695
|
"message": "Растеризация"
|
13432
13696
|
},
|
13433
13697
|
"panels/timeline/components/EntryStyles.ts | recalculateStyle": {
|
13434
|
-
"message": "
|
13698
|
+
"message": "Стильді қайта есептеу"
|
13435
13699
|
},
|
13436
13700
|
"panels/timeline/components/EntryStyles.ts | receiveData": {
|
13437
|
-
"message": "
|
13701
|
+
"message": "Деректерді алу"
|
13438
13702
|
},
|
13439
13703
|
"panels/timeline/components/EntryStyles.ts | receiveResponse": {
|
13440
|
-
"message": "
|
13704
|
+
"message": "Жауап алу"
|
13441
13705
|
},
|
13442
13706
|
"panels/timeline/components/EntryStyles.ts | receiveWebsocketHandshake": {
|
13443
|
-
"message": "
|
13707
|
+
"message": "WebSocket келісімін алу"
|
13444
13708
|
},
|
13445
13709
|
"panels/timeline/components/EntryStyles.ts | removeTimer": {
|
13446
|
-
"message": "
|
13710
|
+
"message": "Таймерді өшіру"
|
13447
13711
|
},
|
13448
13712
|
"panels/timeline/components/EntryStyles.ts | rendering": {
|
13449
13713
|
"message": "Рендеринг"
|
13450
13714
|
},
|
13451
13715
|
"panels/timeline/components/EntryStyles.ts | requestAnimationFrame": {
|
13452
|
-
"message": "
|
13716
|
+
"message": "Анимация кадрын сұрау"
|
13453
13717
|
},
|
13454
13718
|
"panels/timeline/components/EntryStyles.ts | requestIdleCallback": {
|
13455
|
-
"message": "
|
13719
|
+
"message": "Күту режиміндегі кері шақыруды сұрау"
|
13456
13720
|
},
|
13457
13721
|
"panels/timeline/components/EntryStyles.ts | requestMainThreadFrame": {
|
13458
|
-
"message": "
|
13722
|
+
"message": "Негізгі тізбек кадрын сұрау"
|
13459
13723
|
},
|
13460
13724
|
"panels/timeline/components/EntryStyles.ts | runMicrotasks": {
|
13461
|
-
"message": "
|
13725
|
+
"message": "Микротапсырмаларды іске қосу"
|
13462
13726
|
},
|
13463
13727
|
"panels/timeline/components/EntryStyles.ts | schedulePostMessage": {
|
13464
13728
|
"message": "postMessage жоспарлау"
|
13465
13729
|
},
|
13466
13730
|
"panels/timeline/components/EntryStyles.ts | scheduleStyleRecalculation": {
|
13467
|
-
"message": "
|
13731
|
+
"message": "Стильді қайта есептеуді жоспарлау"
|
13468
13732
|
},
|
13469
13733
|
"panels/timeline/components/EntryStyles.ts | scripting": {
|
13470
13734
|
"message": "Скрипт жазу"
|
@@ -13473,22 +13737,22 @@
|
|
13473
13737
|
"message": "Айналдыру"
|
13474
13738
|
},
|
13475
13739
|
"panels/timeline/components/EntryStyles.ts | sendRequest": {
|
13476
|
-
"message": "
|
13740
|
+
"message": "Сұрау жіберу"
|
13477
13741
|
},
|
13478
13742
|
"panels/timeline/components/EntryStyles.ts | sendWebsocketHandshake": {
|
13479
|
-
"message": "
|
13743
|
+
"message": "WebSocket келісімін жіберу"
|
13480
13744
|
},
|
13481
13745
|
"panels/timeline/components/EntryStyles.ts | sign": {
|
13482
13746
|
"message": "Белгі"
|
13483
13747
|
},
|
13484
13748
|
"panels/timeline/components/EntryStyles.ts | signReply": {
|
13485
|
-
"message": "
|
13749
|
+
"message": "Жауапқа қол қою"
|
13486
13750
|
},
|
13487
13751
|
"panels/timeline/components/EntryStyles.ts | streamingCompileTask": {
|
13488
|
-
"message": "
|
13752
|
+
"message": "Трансляцияның компиляция тапсырмасы"
|
13489
13753
|
},
|
13490
13754
|
"panels/timeline/components/EntryStyles.ts | streamingWasmResponse": {
|
13491
|
-
"message": "
|
13755
|
+
"message": "Wasm жауабын трансляциялау"
|
13492
13756
|
},
|
13493
13757
|
"panels/timeline/components/EntryStyles.ts | system": {
|
13494
13758
|
"message": "Жүйе"
|
@@ -13497,49 +13761,49 @@
|
|
13497
13761
|
"message": "Тапсырма"
|
13498
13762
|
},
|
13499
13763
|
"panels/timeline/components/EntryStyles.ts | timerFired": {
|
13500
|
-
"message": "
|
13764
|
+
"message": "Таймер іске қосылды"
|
13501
13765
|
},
|
13502
13766
|
"panels/timeline/components/EntryStyles.ts | timestamp": {
|
13503
13767
|
"message": "Уақыт белгісі"
|
13504
13768
|
},
|
13505
13769
|
"panels/timeline/components/EntryStyles.ts | updateLayer": {
|
13506
|
-
"message": "
|
13770
|
+
"message": "Қабатты жаңарту"
|
13507
13771
|
},
|
13508
13772
|
"panels/timeline/components/EntryStyles.ts | updateLayerTree": {
|
13509
|
-
"message": "
|
13773
|
+
"message": "Қабат тармағын жаңарту"
|
13510
13774
|
},
|
13511
13775
|
"panels/timeline/components/EntryStyles.ts | userTiming": {
|
13512
|
-
"message": "
|
13776
|
+
"message": "Пайдаланушы өткізетін уақыт"
|
13513
13777
|
},
|
13514
13778
|
"panels/timeline/components/EntryStyles.ts | verify": {
|
13515
13779
|
"message": "Растау"
|
13516
13780
|
},
|
13517
13781
|
"panels/timeline/components/EntryStyles.ts | verifyReply": {
|
13518
|
-
"message": "
|
13782
|
+
"message": "Жауапты тексеру"
|
13519
13783
|
},
|
13520
13784
|
"panels/timeline/components/EntryStyles.ts | waitingForNetwork": {
|
13521
|
-
"message": "
|
13785
|
+
"message": "Желімен байланыс күтілуде"
|
13522
13786
|
},
|
13523
13787
|
"panels/timeline/components/EntryStyles.ts | wasmModuleCacheHit": {
|
13524
|
-
"message": "Wasm
|
13788
|
+
"message": "Wasm модулін кэшке айналдыру"
|
13525
13789
|
},
|
13526
13790
|
"panels/timeline/components/EntryStyles.ts | wasmModuleCacheInvalid": {
|
13527
|
-
"message": "Wasm
|
13791
|
+
"message": "Wasm модуль кэші жарамсыз."
|
13528
13792
|
},
|
13529
13793
|
"panels/timeline/components/EntryStyles.ts | willSendRequest": {
|
13530
|
-
"message": "
|
13794
|
+
"message": "Сұрау жібереді"
|
13531
13795
|
},
|
13532
13796
|
"panels/timeline/components/EntryStyles.ts | wsMessageReceived": {
|
13533
|
-
"message": "
|
13797
|
+
"message": "WebSocket хабарын алу"
|
13534
13798
|
},
|
13535
13799
|
"panels/timeline/components/EntryStyles.ts | wsMessageSent": {
|
13536
|
-
"message": "
|
13800
|
+
"message": "WebSocket хабарын жіберу"
|
13537
13801
|
},
|
13538
13802
|
"panels/timeline/components/EntryStyles.ts | xhrLoad": {
|
13539
|
-
"message": "XHR
|
13803
|
+
"message": "Жүктеу: XHR"
|
13540
13804
|
},
|
13541
13805
|
"panels/timeline/components/EntryStyles.ts | xhrReadyStateChange": {
|
13542
|
-
"message": "XHR readyState
|
13806
|
+
"message": "XHR readyState өзгерісі"
|
13543
13807
|
},
|
13544
13808
|
"panels/timeline/components/FieldSettingsDialog.ts | add": {
|
13545
13809
|
"message": "Қосу"
|
@@ -13619,32 +13883,41 @@
|
|
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
|
-
"message": "
|
13893
|
+
"message": "Себеп"
|
13624
13894
|
},
|
13625
13895
|
"panels/timeline/components/LayoutShiftDetails.ts | elementsShifted": {
|
13626
|
-
"message": "
|
13896
|
+
"message": "Өзгерген элементтер"
|
13627
13897
|
},
|
13628
13898
|
"panels/timeline/components/LayoutShiftDetails.ts | fontRequest": {
|
13629
|
-
"message": "
|
13899
|
+
"message": "Қаріп сұрауы"
|
13630
13900
|
},
|
13631
13901
|
"panels/timeline/components/LayoutShiftDetails.ts | injectedIframe": {
|
13632
|
-
"message": "
|
13633
|
-
},
|
13634
|
-
"panels/timeline/components/LayoutShiftDetails.ts | insight": {
|
13635
|
-
"message": "Статистика"
|
13902
|
+
"message": "Ендірілген iframe"
|
13636
13903
|
},
|
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
|
-
"message": "
|
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": "Consider real user environments"
|
13663
|
-
},
|
13664
13934
|
"panels/timeline/components/LiveMetricsView.ts | dateRange": {
|
13665
13935
|
"message": "{PH1} – {PH2}"
|
13666
13936
|
},
|
@@ -13671,10 +13941,16 @@
|
|
13671
13941
|
"message": "Құрылғы: {PH1}"
|
13672
13942
|
},
|
13673
13943
|
"panels/timeline/components/LiveMetricsView.ts | disableNetworkCache": {
|
13674
|
-
"message": "
|
13944
|
+
"message": "Желі кэшін өшіру"
|
13945
|
+
},
|
13946
|
+
"panels/timeline/components/LiveMetricsView.ts | elementRenderDelay": {
|
13947
|
+
"message": "Элемент рендерингісінің кідірісі"
|
13675
13948
|
},
|
13676
13949
|
"panels/timeline/components/LiveMetricsView.ts | environmentSettings": {
|
13677
|
-
"message": "
|
13950
|
+
"message": "Орта параметрлері"
|
13951
|
+
},
|
13952
|
+
"panels/timeline/components/LiveMetricsView.ts | eventLogs": {
|
13953
|
+
"message": "Әрекеттестік және формат өзгерісі журналдарының бөлімі"
|
13678
13954
|
},
|
13679
13955
|
"panels/timeline/components/LiveMetricsView.ts | fieldData": {
|
13680
13956
|
"message": "Өріс деректері"
|
@@ -13682,12 +13958,24 @@
|
|
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
|
-
"message": "INP
|
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
|
},
|
@@ -13695,10 +13983,10 @@
|
|
13695
13983
|
"message": "{PH1} – жүктеліп жатыр…"
|
13696
13984
|
},
|
13697
13985
|
"panels/timeline/components/LiveMetricsView.ts | localAndFieldMetrics": {
|
13698
|
-
"message": "
|
13986
|
+
"message": "Жергілікті және өрістік көрсеткіштер"
|
13699
13987
|
},
|
13700
13988
|
"panels/timeline/components/LiveMetricsView.ts | localMetrics": {
|
13701
|
-
"message": "
|
13989
|
+
"message": "Жергілікті көрсеткіштер"
|
13702
13990
|
},
|
13703
13991
|
"panels/timeline/components/LiveMetricsView.ts | localMetricsLink": {
|
13704
13992
|
"message": "жергілікті көрсеткіштер"
|
@@ -13706,41 +13994,53 @@
|
|
13706
13994
|
"panels/timeline/components/LiveMetricsView.ts | mobile": {
|
13707
13995
|
"message": "Мобильдік құрылғы"
|
13708
13996
|
},
|
13709
|
-
"panels/timeline/components/LiveMetricsView.ts | mostUsersDesktop": {
|
13710
|
-
"message": "{PH1} of users are on desktop."
|
13711
|
-
},
|
13712
|
-
"panels/timeline/components/LiveMetricsView.ts | mostUsersMobile": {
|
13713
|
-
"message": "{PH1} of users are on mobile."
|
13714
|
-
},
|
13715
13997
|
"panels/timeline/components/LiveMetricsView.ts | needsDataOption": {
|
13716
13998
|
"message": "{PH1} — деректер жоқ"
|
13717
13999
|
},
|
13718
14000
|
"panels/timeline/components/LiveMetricsView.ts | networkCacheExplanation": {
|
13719
|
-
"message": "
|
14001
|
+
"message": "Желі кэшін өшіру нәтижесінде алғаш кірушінің тәжірибесімен бірдей желі тәжірибесі үлгіленеді."
|
13720
14002
|
},
|
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} өзгеріс}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
|
-
"message": "
|
14043
|
+
"message": "әртүрлі құрылғыларды үлгілеу"
|
13744
14044
|
},
|
13745
14045
|
"panels/timeline/components/LiveMetricsView.ts | tablet": {
|
13746
14046
|
"message": "Планшет"
|
@@ -13751,11 +14051,14 @@
|
|
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
|
-
"message": "
|
14058
|
+
"message": "Нақты пайдаланушылардың 75-процентилі ешқандай шектеусіз байланысқа ұқсас желілік кідірістерге тап болды."
|
13756
14059
|
},
|
13757
14060
|
"panels/timeline/components/LiveMetricsView.ts | tryUsingThrottling": {
|
13758
|
-
"message": "
|
14061
|
+
"message": "Нақты пайдаланушылардың 75-процентилі {PH1} шектеуіне ұқсас желілік кідірістерге тап болды."
|
13759
14062
|
},
|
13760
14063
|
"panels/timeline/components/LiveMetricsView.ts | urlOption": {
|
13761
14064
|
"message": "URL"
|
@@ -13764,16 +14067,22 @@
|
|
13764
14067
|
"message": "URL: {PH1}"
|
13765
14068
|
},
|
13766
14069
|
"panels/timeline/components/LiveMetricsView.ts | useDeviceToolbar": {
|
13767
|
-
"message": "
|
14070
|
+
"message": "Құрылғының құралдар тақтасын мына мақсатта пайдаланыңыз: {PH1}."
|
14071
|
+
},
|
14072
|
+
"panels/timeline/components/LiveMetricsView.ts | worstCluster": {
|
14073
|
+
"message": "Ең нашар кластер"
|
13768
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
|
-
"message": "
|
14079
|
+
"message": "Жергілікті сынақ шарттарын қарастырыңыз."
|
14080
|
+
},
|
14081
|
+
"panels/timeline/components/MetricCard.ts | duration": {
|
14082
|
+
"message": "Жергілікті ұзақтық (мс)"
|
13774
14083
|
},
|
13775
14084
|
"panels/timeline/components/MetricCard.ts | field75thPercentile": {
|
13776
|
-
"message": "
|
14085
|
+
"message": "Өрістің 75-процентилі"
|
13777
14086
|
},
|
13778
14087
|
"panels/timeline/components/MetricCard.ts | good": {
|
13779
14088
|
"message": "Жақсы"
|
@@ -13796,98 +14105,101 @@
|
|
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
|
},
|
13802
14114
|
"panels/timeline/components/MetricCard.ts | recDynamicContentCLS": {
|
13803
|
-
"message": "
|
14115
|
+
"message": "Динамикалық контент формат өзгерістеріне әсер етуі мүмкін."
|
13804
14116
|
},
|
13805
14117
|
"panels/timeline/components/MetricCard.ts | recDynamicContentLCP": {
|
13806
|
-
"message": "
|
14118
|
+
"message": "LCP элементі контент динамикалық болған жағдайда беттің жүктелуіне байланысты өзгеруі мүмкін."
|
13807
14119
|
},
|
13808
14120
|
"panels/timeline/components/MetricCard.ts | recJourneyCLS": {
|
13809
|
-
"message": "
|
14121
|
+
"message": "Пайдаланушының бетте орындайтын әрекеттер сипаты формат өзгерістеріне әсер етуі мүмкін. Бетті айналдыру сияқты жалпы әрекеттестіктерді сынап жатқаныңызға көз жеткізіңіз."
|
13810
14122
|
},
|
13811
14123
|
"panels/timeline/components/MetricCard.ts | recJourneyINP": {
|
13812
|
-
"message": "
|
14124
|
+
"message": "Пайдаланушының бетте орындайтын әрекеттер сипаты әрекеттестік кідірістеріне әсер етуі мүмкін. Жалпы әрекеттестіктерді сынап жатқаныңызға көз жеткізіңіз."
|
13813
14125
|
},
|
13814
14126
|
"panels/timeline/components/MetricCard.ts | recThrottlingINP": {
|
13815
|
-
"message": "
|
14127
|
+
"message": "Нақты пайдаланушылардың әрекеттестіктері орталық процессор жылдамдығының төмендеуіне байланысты ұзағырақ болуы мүмкін. Орталық процессор шектеуін арттыру нәтижесінде үлгілік құрылғының жұмысы баяулайды."
|
13816
14128
|
},
|
13817
14129
|
"panels/timeline/components/MetricCard.ts | recThrottlingLCP": {
|
13818
|
-
"message": "
|
14130
|
+
"message": "Нақты пайдаланушыларда баяу желіге байланысты бет ұзағырақ жүктелуі мүмкін. Желі шектеуін арттырсаңыз, желі баяулайды."
|
13819
14131
|
},
|
13820
14132
|
"panels/timeline/components/MetricCard.ts | recViewportCLS": {
|
13821
|
-
"message": "
|
14133
|
+
"message": "Экран өлшемі формат өзгерістеріне әсер етуі мүмкін. Қарау терезесінің жалпы өлшемдерін сынап жатқаныңызға көз жеткізіңіз."
|
13822
14134
|
},
|
13823
14135
|
"panels/timeline/components/MetricCard.ts | recViewportLCP": {
|
13824
|
-
"message": "
|
14136
|
+
"message": "Экран өлшемі LCP элементінің түріне әсер етуі мүмкін. Қарау терезесінің жалпы өлшемдерін сынап жатқаныңызға көз жеткізіңіз."
|
13825
14137
|
},
|
13826
14138
|
"panels/timeline/components/MetricCard.ts | viewCardDetails": {
|
13827
14139
|
"message": "Карта мәліметтерін көру"
|
13828
14140
|
},
|
13829
14141
|
"panels/timeline/components/MetricCompareStrings.ts | goodBetterCompare": {
|
13830
|
-
"message": "
|
14142
|
+
"message": "Жергілікті {PH1}/{PH2} мәні жақсы, бірақ пайдаланушы тәжірибесімен салыстырғанда айтарлықтай жақсы."
|
13831
14143
|
},
|
13832
14144
|
"panels/timeline/components/MetricCompareStrings.ts | goodGoodDetailedCompare": {
|
13833
|
-
"message": "
|
14145
|
+
"message": "Жергілікті {PH1}/{PH2} мәні жақсы және {PH4}/{PH1} нақты пайдаланушы тәжірибесі сияқты бағаланады. Оған қоса өріс деректерінің 75-процентилінің {PH1}/{PH3} мәні жақсы."
|
13834
14146
|
},
|
13835
14147
|
"panels/timeline/components/MetricCompareStrings.ts | goodNeedsImprovementDetailedCompare": {
|
13836
|
-
"message": "
|
14148
|
+
"message": "Жергілікті {PH1}/{PH2} мәні жақсы және {PH4}/{PH1} нақты пайдаланушы тәжірибесі сияқты бағаланады. Алайда өріс деректерінің 75-процентилінің {PH1}/{PH3} мәнін жақсарту қажет."
|
13837
14149
|
},
|
13838
14150
|
"panels/timeline/components/MetricCompareStrings.ts | goodPoorDetailedCompare": {
|
13839
|
-
"message": "
|
14151
|
+
"message": "Жергілікті {PH1}/{PH2} мәні жақсы және {PH4}/{PH1} нақты пайдаланушы тәжірибесі сияқты бағаланады. Алайда өріс деректерінің 75-процентилінің {PH1}/{PH3} мәні нашар."
|
13840
14152
|
},
|
13841
14153
|
"panels/timeline/components/MetricCompareStrings.ts | goodSimilarCompare": {
|
13842
|
-
"message": "
|
14154
|
+
"message": "Жергілікті {PH1}/{PH2} мәні жақсы және пайдаланушы тәжірибесімен бірдей."
|
13843
14155
|
},
|
13844
14156
|
"panels/timeline/components/MetricCompareStrings.ts | goodSummarized": {
|
13845
|
-
"message": "
|
14157
|
+
"message": "Жергілікті {PH1}/{PH2} мәні жақсы."
|
13846
14158
|
},
|
13847
14159
|
"panels/timeline/components/MetricCompareStrings.ts | goodWorseCompare": {
|
13848
|
-
"message": "
|
14160
|
+
"message": "Жергілікті {PH1}/{PH2} мәні жақсы, бірақ пайдаланушы тәжірибесімен салыстырғанда айтарлықтай нашар."
|
13849
14161
|
},
|
13850
14162
|
"panels/timeline/components/MetricCompareStrings.ts | needsImprovementBetterCompare": {
|
13851
|
-
"message": "
|
14163
|
+
"message": "Жергілікті {PH1}/{PH2} мәнін жақсарту қажет және пайдаланушы тәжірибесімен салыстырғанда айтарлықтай жоғары деңгейде."
|
13852
14164
|
},
|
13853
14165
|
"panels/timeline/components/MetricCompareStrings.ts | needsImprovementGoodDetailedCompare": {
|
13854
|
-
"message": "
|
14166
|
+
"message": "Жергілікті {PH1}/{PH2} мәнін жақсарту қажет және ол нақты пайдаланушылардың {PH1} тәжірибесі үшін {PH4} мәнімен бірдей бағаланады. Алайда өріс деректерінің 75-процентилінің {PH1}/{PH3} мәні жақсы."
|
13855
14167
|
},
|
13856
14168
|
"panels/timeline/components/MetricCompareStrings.ts | needsImprovementNeedsImprovementDetailedCompare": {
|
13857
|
-
"message": "
|
14169
|
+
"message": "Жергілікті {PH1}/{PH2} мәнін жақсарту қажет және ол нақты пайдаланушылардың {PH1} тәжірибесі үшін {PH4} мәнімен бірдей бағаланады. Онымен қоса өріс деректерінің 75-процентилінің {PH1}/{PH3} мәнін жақсарту қажет."
|
13858
14170
|
},
|
13859
14171
|
"panels/timeline/components/MetricCompareStrings.ts | needsImprovementPoorDetailedCompare": {
|
13860
|
-
"message": "
|
14172
|
+
"message": "Жергілікті {PH1}/{PH2} мәнін жақсарту қажет және ол нақты пайдаланушылардың {PH1} тәжірибесі үшін {PH4} мәнімен бірдей бағаланады. Алайда өріс деректерінің 75-процентилінің {PH1}/{PH3} мәні нашар."
|
13861
14173
|
},
|
13862
14174
|
"panels/timeline/components/MetricCompareStrings.ts | needsImprovementSimilarCompare": {
|
13863
|
-
"message": "
|
14175
|
+
"message": "Жергілікті {PH1}/{PH2} мәнін жақсарту қажет және ол пайдаланушы тәжірибесімен бірдей."
|
13864
14176
|
},
|
13865
14177
|
"panels/timeline/components/MetricCompareStrings.ts | needsImprovementSummarized": {
|
13866
|
-
"message": "
|
14178
|
+
"message": "Жергілікті {PH1}/{PH2} мәнін жақсарту қажет."
|
13867
14179
|
},
|
13868
14180
|
"panels/timeline/components/MetricCompareStrings.ts | needsImprovementWorseCompare": {
|
13869
|
-
"message": "
|
14181
|
+
"message": "Жергілікті {PH1}/{PH2} мәнін жақсарту қажет және пайдаланушы тәжірибесімен салыстырғанда айтарлықтай төмен деңгейде."
|
13870
14182
|
},
|
13871
14183
|
"panels/timeline/components/MetricCompareStrings.ts | poorBetterCompare": {
|
13872
|
-
"message": "
|
14184
|
+
"message": "Жергілікті {PH1}/{PH2} мәні нашар, бірақ пайдаланушы тәжірибесімен салыстырғанда айтарлықтай жақсы."
|
13873
14185
|
},
|
13874
14186
|
"panels/timeline/components/MetricCompareStrings.ts | poorGoodDetailedCompare": {
|
13875
|
-
"message": "
|
14187
|
+
"message": "Жергілікті {PH1}/{PH2} мәні нашар және {PH4}/{PH1} нақты пайдаланушы тәжірибесі сияқты бағаланады. Алайда өріс деректерінің 75-процентилінің {PH1}/{PH3} мәні жақсы."
|
13876
14188
|
},
|
13877
14189
|
"panels/timeline/components/MetricCompareStrings.ts | poorNeedsImprovementDetailedCompare": {
|
13878
|
-
"message": "
|
14190
|
+
"message": "Жергілікті {PH1}/{PH2} мәні нашар және {PH4}/{PH1} нақты пайдаланушы тәжірибесі сияқты бағаланады. Алайда өріс деректерінің 75-процентилінің {PH1}/{PH3} мәнін жақсарту қажет."
|
13879
14191
|
},
|
13880
14192
|
"panels/timeline/components/MetricCompareStrings.ts | poorPoorDetailedCompare": {
|
13881
|
-
"message": "
|
14193
|
+
"message": "Жергілікті {PH1}/{PH2} мәні нашар және {PH4}/{PH1} нақты пайдаланушы тәжірибесі сияқты бағаланады. Оған қоса өріс деректерінің 75-процентилінің {PH1}/{PH3} мәні нашар."
|
13882
14194
|
},
|
13883
14195
|
"panels/timeline/components/MetricCompareStrings.ts | poorSimilarCompare": {
|
13884
|
-
"message": "
|
14196
|
+
"message": "Жергілікті {PH1}/{PH2} мәні нашар және пайдаланушы тәжірибесімен бірдей."
|
13885
14197
|
},
|
13886
14198
|
"panels/timeline/components/MetricCompareStrings.ts | poorSummarized": {
|
13887
|
-
"message": "
|
14199
|
+
"message": "Жергілікті {PH1}/{PH2} мәні нашар."
|
13888
14200
|
},
|
13889
14201
|
"panels/timeline/components/MetricCompareStrings.ts | poorWorseCompare": {
|
13890
|
-
"message": "
|
14202
|
+
"message": "Жергілікті {PH1}/{PH2} мәні нашар, бірақ пайдаланушы тәжірибесімен салыстырғанда айтарлықтай нашар."
|
13891
14203
|
},
|
13892
14204
|
"panels/timeline/components/NetworkRequestDetails.ts | FromCache": {
|
13893
14205
|
"message": " (кэштен)"
|
@@ -13901,29 +14213,20 @@
|
|
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
|
-
"message": "
|
13909
|
-
},
|
13910
|
-
"panels/timeline/components/NetworkRequestDetails.ts | duration": {
|
13911
|
-
"message": "Ұзақтық"
|
14217
|
+
"message": "Коды ашылған мәтін"
|
13912
14218
|
},
|
13913
14219
|
"panels/timeline/components/NetworkRequestDetails.ts | encodedData": {
|
13914
|
-
"message": "
|
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": "Initial priority"
|
13921
|
-
},
|
13922
14225
|
"panels/timeline/components/NetworkRequestDetails.ts | initiatedBy": {
|
13923
14226
|
"message": "Бастаған"
|
13924
14227
|
},
|
13925
14228
|
"panels/timeline/components/NetworkRequestDetails.ts | mimeType": {
|
13926
|
-
"message": "MIME
|
14229
|
+
"message": "MIME түрі"
|
13927
14230
|
},
|
13928
14231
|
"panels/timeline/components/NetworkRequestDetails.ts | networkRequest": {
|
13929
14232
|
"message": "Желі сұрауы"
|
@@ -13937,17 +14240,8 @@
|
|
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
|
-
"message": "
|
13945
|
-
},
|
13946
|
-
"panels/timeline/components/NetworkRequestDetails.ts | requestSentAndWaiting": {
|
13947
|
-
"message": "Сұрау жіберілді. Жауап күтіледі."
|
13948
|
-
},
|
13949
|
-
"panels/timeline/components/NetworkRequestDetails.ts | waitingOnMainThread": {
|
13950
|
-
"message": "Негізгі тізбек күтіліп жатыр"
|
14244
|
+
"message": "Сұрау әдісі"
|
13951
14245
|
},
|
13952
14246
|
"panels/timeline/components/NetworkRequestDetails.ts | yes": {
|
13953
14247
|
"message": "Иә"
|
@@ -13988,56 +14282,152 @@
|
|
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": "Статистика"
|
14287
|
+
},
|
14288
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | annotationGetStarted": {
|
14289
|
+
"message": "Өзіңіз және басқалар үшін трассаға aннотация жасаңыз"
|
14290
|
+
},
|
14291
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | deleteAnnotationTutorialDescription": {
|
14292
|
+
"message": "Жою функциясын ашу үшін \"Аннотациялар\" қойындысын таңдап, жылжыту жолағындағы тізімге курсорды апарыңыз."
|
14293
|
+
},
|
14294
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | deleteAnnotationTutorialTitle": {
|
14295
|
+
"message": "Аннотацияны жою"
|
14296
|
+
},
|
14297
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | deleteButton": {
|
14298
|
+
"message": "Аннотацияны жою: {PH1}"
|
14299
|
+
},
|
14300
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | entryLabelDescriptionLabel": {
|
14301
|
+
"message": "\"{PH2}\" мәтінімен аннотацияланған \"{PH1}\" оқиғасы"
|
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}\" оқиғасы арасындағы байланыс"
|
13993
14311
|
},
|
13994
|
-
"panels/timeline/components/SidebarAnnotationsTab.ts |
|
13995
|
-
"message": "
|
14312
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | entryLinkTutorialDescription": {
|
14313
|
+
"message": "Элементті екі рет басып, іргелес оң жақ көрсеткіні басыңыз, содан кейін мақсатты элементті таңдаңыз."
|
13996
14314
|
},
|
13997
|
-
"panels/timeline/components/SidebarAnnotationsTab.ts |
|
13998
|
-
"message": "
|
14315
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | entryLinkTutorialTitle": {
|
14316
|
+
"message": "Екі элементті қосу"
|
13999
14317
|
},
|
14000
|
-
"panels/timeline/components/SidebarAnnotationsTab.ts |
|
14001
|
-
"message": "
|
14318
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | timeRangeDescriptionLabel": {
|
14319
|
+
"message": "{PH1} басталып, {PH2} аяқталатын уақыт аралығы"
|
14002
14320
|
},
|
14003
|
-
"panels/timeline/components/SidebarAnnotationsTab.ts |
|
14004
|
-
"message": "
|
14321
|
+
"panels/timeline/components/SidebarAnnotationsTab.ts | timeRangeTutorialDescription": {
|
14322
|
+
"message": "FlameChart элементіндегі мәтінді \"Shift\" пернесін басып сүйреңіз, содан кейін уақыт аралығының аннотациясын жасау үшін мәтін теріңіз."
|
14005
14323
|
},
|
14006
|
-
"panels/timeline/components/SidebarAnnotationsTab.ts |
|
14007
|
-
"message": "
|
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": "Ең өзекті формат өзгерісінің себептері"
|
14362
|
+
},
|
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
|
-
"message": "
|
14376
|
+
"message": "Басқа жаққа бағытталған."
|
14011
14377
|
},
|
14012
14378
|
"panels/timeline/components/insights/DocumentLatency.ts | failedServerResponseTime": {
|
14013
|
-
"message": "
|
14379
|
+
"message": "Сервер баяу істеп тұр."
|
14014
14380
|
},
|
14015
14381
|
"panels/timeline/components/insights/DocumentLatency.ts | failedTextCompression": {
|
14016
|
-
"message": "
|
14382
|
+
"message": "Сығылмады."
|
14017
14383
|
},
|
14018
14384
|
"panels/timeline/components/insights/DocumentLatency.ts | passingRedirects": {
|
14019
|
-
"message": "
|
14385
|
+
"message": "Басқа жаққа бағыттауға жол бермейді."
|
14020
14386
|
},
|
14021
14387
|
"panels/timeline/components/insights/DocumentLatency.ts | passingServerResponseTime": {
|
14022
|
-
"message": "
|
14388
|
+
"message": "Сервер жылдам жұмыс істеп тұр."
|
14023
14389
|
},
|
14024
14390
|
"panels/timeline/components/insights/DocumentLatency.ts | passingTextCompression": {
|
14025
|
-
"message": "
|
14391
|
+
"message": "Мәтінді сығады."
|
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": "Жұмсалған уақыт"
|
14026
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
|
-
"message": "
|
14424
|
+
"message": "Ұзақтық"
|
14032
14425
|
},
|
14033
14426
|
"panels/timeline/components/insights/InteractionToNextPaint.ts | inputDelay": {
|
14034
14427
|
"message": "Енгізу кідірісі"
|
14035
14428
|
},
|
14036
|
-
"panels/timeline/components/insights/InteractionToNextPaint.ts | longestInteraction": {
|
14037
|
-
"message": "Longest interaction"
|
14038
|
-
},
|
14039
14429
|
"panels/timeline/components/insights/InteractionToNextPaint.ts | phase": {
|
14040
|
-
"message": "
|
14430
|
+
"message": "Кезең"
|
14041
14431
|
},
|
14042
14432
|
"panels/timeline/components/insights/InteractionToNextPaint.ts | presentationDelay": {
|
14043
14433
|
"message": "Презентация кідірісі"
|
@@ -14046,7 +14436,13 @@
|
|
14046
14436
|
"message": "Өңдеу ұзақтығы"
|
14047
14437
|
},
|
14048
14438
|
"panels/timeline/components/insights/InteractionToNextPaint.ts | title": {
|
14049
|
-
"message": "INP
|
14439
|
+
"message": "Кезең бойынша INP мәні"
|
14440
|
+
},
|
14441
|
+
"panels/timeline/components/insights/LCPDiscovery.ts | description": {
|
14442
|
+
"message": "LCP суреті HTML-ден бірден [табылатындай](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}"
|
14050
14446
|
},
|
14051
14447
|
"panels/timeline/components/insights/LCPDiscovery.ts | fetchPriorityApplied": {
|
14052
14448
|
"message": "fetchpriority=high қолданылды"
|
@@ -14060,9 +14456,24 @@
|
|
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
14478
|
"message": "Ресурсты жүктеу кідірісі"
|
14068
14479
|
},
|
@@ -14072,29 +14483,83 @@
|
|
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
|
-
"message": "
|
14490
|
+
"message": "Сұраулар LCP кідірістерін тудыруы мүмкін беттің бастапқы рендерингісін блоктап жатыр. [Кейінге қалдыру немесе ендіру](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources/) нәтижесінде бұл желі сұраулары маңызды жолдан тыс жылжытылуы мүмкін."
|
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": "Рендерингіні блоктау сұраулары"
|
14077
14500
|
},
|
14078
14501
|
"panels/timeline/components/insights/SidebarInsight.ts | estimatedSavings": {
|
14079
|
-
"message": "
|
14502
|
+
"message": "Болжалды үнемдеу көлемі: {PH1}"
|
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 шағын және жеңіл болса, сәйкестендіру шығындары азаяды."
|
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": "Жалпы"
|
14080
14530
|
},
|
14081
14531
|
"panels/timeline/components/insights/ThirdParties.ts | columnBlockingTime": {
|
14082
|
-
"message": "
|
14532
|
+
"message": "Блоктау уақыты"
|
14083
14533
|
},
|
14084
14534
|
"panels/timeline/components/insights/ThirdParties.ts | columnThirdParty": {
|
14085
|
-
"message": "
|
14535
|
+
"message": "Үшінші тарап"
|
14086
14536
|
},
|
14087
14537
|
"panels/timeline/components/insights/ThirdParties.ts | columnTransferSize": {
|
14088
|
-
"message": "
|
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": "Бұл сұрауға арналған cookie файлдары Chrome жалаушаларына немесе браузер конфигурациясына байланысты блокталады. Толық ақпарат \"Ақаулар\" панелінде берілген."
|
14614
|
+
},
|
14138
14615
|
"panels/web_audio/AudioContextContentBuilder.ts | callbackBufferSize": {
|
14139
14616
|
"message": "Кері қоңырау шалу буферінің өлшемі"
|
14140
14617
|
},
|
@@ -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
|
},
|
@@ -14937,7 +15417,7 @@
|
|
14937
15417
|
"message": "Кестеде көрсетілетін жазбалар саны: {PH1}"
|
14938
15418
|
},
|
14939
15419
|
"ui/legacy/components/data_grid/DataGridWithPreview.ts | selectAValueToPreview": {
|
14940
|
-
"message": "
|
15420
|
+
"message": "Алдын ала көру үшін мәнді таңдаңыз"
|
14941
15421
|
},
|
14942
15422
|
"ui/legacy/components/data_grid/ShowMoreDataGridNode.ts | showAllD": {
|
14943
15423
|
"message": "Барлық {PH1} ұсынысты көрсету"
|
@@ -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
|
},
|