diff --git a/x-pack/plugins/fleet/cypress/tasks/common.ts b/x-pack/plugins/fleet/cypress/tasks/common.ts index de6e117bac4cc2..cf161640bf03fa 100644 --- a/x-pack/plugins/fleet/cypress/tasks/common.ts +++ b/x-pack/plugins/fleet/cypress/tasks/common.ts @@ -67,7 +67,6 @@ export const internalRequest = ({ const NEW_FEATURES_TOUR_STORAGE_KEYS = { RULE_MANAGEMENT_PAGE: 'securitySolution.rulesManagementPage.newFeaturesTour.v8.9', TIMELINES: 'securitySolution.security.timelineFlyoutHeader.saveTimelineTour', - TIMELINE: 'securitySolution.timeline.newFeaturesTour.v8.12', FLYOUT: 'securitySolution.documentDetails.newFeaturesTour.v8.14', }; diff --git a/x-pack/plugins/security_solution/common/constants.ts b/x-pack/plugins/security_solution/common/constants.ts index d0fb117eafc506..584b992a0f61d3 100644 --- a/x-pack/plugins/security_solution/common/constants.ts +++ b/x-pack/plugins/security_solution/common/constants.ts @@ -422,7 +422,6 @@ export const RULES_TABLE_MAX_PAGE_SIZE = 100; export const NEW_FEATURES_TOUR_STORAGE_KEYS = { RULE_MANAGEMENT_PAGE: 'securitySolution.rulesManagementPage.newFeaturesTour.v8.13', TIMELINES: 'securitySolution.security.timelineFlyoutHeader.saveTimelineTour', - TIMELINE: 'securitySolution.timeline.newFeaturesTour.v8.12', FLYOUT: 'securitySolution.documentDetails.newFeaturesTour.v8.14', }; diff --git a/x-pack/plugins/security_solution/public/timelines/components/add_to_favorites/index.test.tsx b/x-pack/plugins/security_solution/public/timelines/components/add_to_favorites/index.test.tsx index 54427b25e74ed6..8aeec715c99416 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/add_to_favorites/index.test.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/add_to_favorites/index.test.tsx @@ -30,10 +30,10 @@ jest.mock('react-redux', () => { }; }); -const renderAddFavoritesButton = (isPartOfGuidedTour = false) => +const renderAddFavoritesButton = () => render( - + ); @@ -87,17 +87,4 @@ describe('AddToFavoritesButton', () => { expect(getByTestId('timeline-favorite-filled-star')).toBeInTheDocument(); expect(queryByTestId('timeline-favorite-empty-star')).not.toBeInTheDocument(); }); - - it('should use id for guided tour if prop is true', () => { - mockGetState.mockReturnValue({ - ...mockTimelineModel, - status: TimelineStatusEnum.active, - }); - - const { getByTestId } = renderAddFavoritesButton(true); - - const button = getByTestId('timeline-favorite-empty-star'); - - expect(button).toHaveProperty('id', 'add-to-favorites'); - }); }); diff --git a/x-pack/plugins/security_solution/public/timelines/components/add_to_favorites/index.tsx b/x-pack/plugins/security_solution/public/timelines/components/add_to_favorites/index.tsx index c0c89f1e08a2df..3acbbce33ee98e 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/add_to_favorites/index.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/add_to_favorites/index.tsx @@ -13,7 +13,6 @@ import type { State } from '../../../common/store'; import { selectTimelineById } from '../../store/selectors'; import { timelineActions } from '../../store'; import { TimelineStatusEnum } from '../../../../common/api/timeline'; -import { TIMELINE_TOUR_CONFIG_ANCHORS } from '../timeline/tour/step_config'; const ADD_TO_FAVORITES = i18n.translate( 'xpack.securitySolution.timeline.addToFavoriteButtonLabel', @@ -34,46 +33,39 @@ interface AddToFavoritesButtonProps { * Id of the timeline to be displayed in the bottom bar and within the modal */ timelineId: string; - /** - * Whether the button is a step in the timeline guided tour - */ - isPartOfGuidedTour?: boolean; } /** * This component renders the add to favorites button for timeline. * It is used in the bottom bar as well as in the timeline modal's header. */ -export const AddToFavoritesButton = React.memo( - ({ timelineId, isPartOfGuidedTour = false }) => { - const dispatch = useDispatch(); - const { isFavorite, status } = useSelector((state: State) => - selectTimelineById(state, timelineId) - ); +export const AddToFavoritesButton = React.memo(({ timelineId }) => { + const dispatch = useDispatch(); + const { isFavorite, status } = useSelector((state: State) => + selectTimelineById(state, timelineId) + ); - const isTimelineDraftOrImmutable = status !== TimelineStatusEnum.active; - const label = isFavorite ? REMOVE_FROM_FAVORITES : ADD_TO_FAVORITES; + const isTimelineDraftOrImmutable = status !== TimelineStatusEnum.active; + const label = isFavorite ? REMOVE_FROM_FAVORITES : ADD_TO_FAVORITES; - const handleClick = useCallback( - () => dispatch(timelineActions.updateIsFavorite({ id: timelineId, isFavorite: !isFavorite })), - [dispatch, timelineId, isFavorite] - ); + const handleClick = useCallback( + () => dispatch(timelineActions.updateIsFavorite({ id: timelineId, isFavorite: !isFavorite })), + [dispatch, timelineId, isFavorite] + ); - return ( - - {label} - - ); - } -); + return ( + + {label} + + ); +}); AddToFavoritesButton.displayName = 'AddToFavoritesButton'; diff --git a/x-pack/plugins/security_solution/public/timelines/components/modal/actions/save_timeline_button.tsx b/x-pack/plugins/security_solution/public/timelines/components/modal/actions/save_timeline_button.tsx index 523c12223b5c6e..de9d35b2835177 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/modal/actions/save_timeline_button.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/modal/actions/save_timeline_button.tsx @@ -15,7 +15,6 @@ import { SaveTimelineModal } from './save_timeline_modal'; import * as i18n from './translations'; import { selectTimelineById } from '../../../store/selectors'; import type { State } from '../../../../common/store'; -import { TIMELINE_TOUR_CONFIG_ANCHORS } from '../../timeline/tour/step_config'; export interface SaveTimelineButtonProps { /** @@ -75,7 +74,6 @@ export const SaveTimelineButton = React.memo( data-test-subj="timeline-modal-save-timeline-tooltip" > ( - + ( = ({ description, sessionViewConfig, initialized, - show: isOpen, - isLoading, - activeTab, } = useDeepEqualSelector((state) => pick( [ @@ -112,10 +107,6 @@ const StatefulTimelineComponent: React.FC = ({ ) ); - const { - kibanaSecuritySolutionsPrivileges: { crud: canEditTimeline }, - } = useUserPrivileges(); - const { timelineFullScreen } = useTimelineFullScreen(); useEffect(() => { @@ -205,20 +196,6 @@ const StatefulTimelineComponent: React.FC = ({ const timelineContext = useMemo(() => ({ timelineId }), [timelineId]); const resolveConflictComponent = useResolveConflict(); - const showTimelineTour = isOpen && !isLoading && canEditTimeline; - - const handleSwitchToTab = useCallback( - (tab: TimelineTabs) => { - dispatch( - timelineActions.setActiveTabTimeline({ - id: timelineId, - activeTab: tab, - }) - ); - }, - [timelineId, dispatch] - ); - return ( = ({ /> - {showTimelineTour ? ( - - ) : null} ); }; diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/search_or_filter/search_or_filter.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/search_or_filter/search_or_filter.tsx index bd5adf6b38cc41..3ec2a965d80219 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/search_or_filter/search_or_filter.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/search_or_filter/search_or_filter.tsx @@ -28,7 +28,6 @@ import { DATA_PROVIDER_HIDDEN_POPULATED, DATA_PROVIDER_VISIBLE, } from './translations'; -import { TIMELINE_TOUR_CONFIG_ANCHORS } from '../tour/step_config'; interface Props { dataProviders: DataProvider[]; @@ -112,7 +111,7 @@ export const SearchOrFilter = React.memo( alignItems="flexStart" responsive={false} > - + @@ -143,7 +142,6 @@ export const SearchOrFilter = React.memo( = {}) => { - return ( - - - {Object.values(TIMELINE_TOUR_CONFIG_ANCHORS).map((anchor) => { - return
; - })} - - ); -}; - -describe('Timeline Tour', () => { - beforeAll(() => { - (useIsElementMounted as jest.Mock).mockReturnValue(true); - }); - - beforeEach(() => { - (useKibana as jest.Mock).mockReturnValue({ - ...mockedUseKibana, - services: { - ...mockedUseKibana.services, - storage: storageMock, - }, - }); - - storageMock.clear(); - }); - - it('should not render tour steps when element are not mounted', () => { - (useIsElementMounted as jest.Mock).mockReturnValueOnce(false); - render(); - expect(screen.queryByTestId('timeline-tour-step-1')).toBeNull(); - }); - - it('should render tour steps when element are mounted', async () => { - render(); - - await waitFor(() => { - expect(screen.getByTestId('timeline-tour-step-1')).toBeVisible(); - }); - - fireEvent.click(screen.getByText('Next')); - await waitFor(() => { - expect(screen.getByTestId('timeline-tour-step-2')).toBeVisible(); - }); - - fireEvent.click(screen.getByText('Next')); - - await waitFor(() => { - expect(screen.getByTestId('timeline-tour-step-3')).toBeVisible(); - }); - - fireEvent.click(screen.getByText('Next')); - - await waitFor(() => { - expect(screen.getByTestId('timeline-tour-step-4')).toBeVisible(); - }); - - fireEvent.click(screen.getByText('Next')); - - await waitFor(() => { - expect(screen.queryByText('Finish tour')).toBeVisible(); - }); - }); - - it('should render different tour steps when timeline type is template', async () => { - render(); - - await waitFor(() => { - expect(screen.getByTestId('timeline-tour-step-1')).toBeVisible(); - }); - - fireEvent.click(screen.getByText('Next')); - await waitFor(() => { - expect(screen.getByTestId('timeline-tour-step-2')).toBeVisible(); - }); - - fireEvent.click(screen.getByText('Next')); - - await waitFor(() => { - expect(screen.getByTestId('timeline-tour-step-3')).toBeVisible(); - }); - - fireEvent.click(screen.getByText('Next')); - - await waitFor(() => { - expect(screen.queryByText('Finish tour')).toBeVisible(); - }); - }); -}); diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/tour/index.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/tour/index.tsx deleted file mode 100644 index f959e6fe3a47ab..00000000000000 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/tour/index.tsx +++ /dev/null @@ -1,142 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -/* - * This timeline tour only valid for 8.12 release is not needed for 8.13 - * - * */ - -import React, { useEffect, useCallback, useState, useMemo } from 'react'; -import { EuiButton, EuiButtonEmpty, EuiTourStep } from '@elastic/eui'; -import type { TimelineType } from '../../../../../common/api/timeline'; -import type { TimelineTabs } from '../../../../../common/types'; -import { useIsElementMounted } from '../../../../detection_engine/rule_management_ui/components/rules_table/rules_table/guided_onboarding/use_is_element_mounted'; -import { NEW_FEATURES_TOUR_STORAGE_KEYS } from '../../../../../common/constants'; -import { useKibana } from '../../../../common/lib/kibana'; -import { timelineTourSteps, tourConfig } from './step_config'; -import * as i18n from './translations'; - -interface TourState { - currentTourStep: number; - isTourActive: boolean; - tourPopoverWidth: number; - tourSubtitle: string; -} - -export interface TimelineTourProps { - activeTab: TimelineTabs; - timelineType: TimelineType; - switchToTab: (tab: TimelineTabs) => void; -} - -const TimelineTourComp = (props: TimelineTourProps) => { - const { activeTab, switchToTab, timelineType } = props; - const { - services: { storage }, - } = useKibana(); - - const updatedTourSteps = useMemo( - () => - timelineTourSteps.filter((step) => !step.timelineType || step.timelineType === timelineType), - [timelineType] - ); - - const [tourState, setTourState] = useState(() => { - const restoredTourState = storage.get(NEW_FEATURES_TOUR_STORAGE_KEYS.TIMELINE); - if (restoredTourState != null) { - return restoredTourState; - } - return tourConfig; - }); - - const finishTour = useCallback(() => { - setTourState((prev) => { - return { - ...prev, - isTourActive: false, - }; - }); - }, []); - - const nextStep = useCallback(() => { - setTourState((prev) => { - return { - ...prev, - currentTourStep: prev.currentTourStep + 1, - }; - }); - }, []); - - useEffect(() => { - storage.set(NEW_FEATURES_TOUR_STORAGE_KEYS.TIMELINE, tourState); - }, [tourState, storage]); - - const getFooterAction = useCallback( - (step: number) => { - // if it's the last step, we don't want to show the next button - return step === updatedTourSteps.length ? ( - - {i18n.TIMELINE_TOUR_FINISH} - - ) : ( - [ - - {i18n.TIMELINE_TOUR_EXIT} - , - - {i18n.TIMELINE_TOUR_NEXT} - , - ] - ); - }, - [finishTour, nextStep, updatedTourSteps.length] - ); - - const nextEl = updatedTourSteps[tourState.currentTourStep - 1]?.anchor; - - const isElementAtCurrentStepMounted = useIsElementMounted(nextEl); - - const currentStepConfig = updatedTourSteps[tourState.currentTourStep - 1]; - - if (currentStepConfig?.timelineTab && currentStepConfig.timelineTab !== activeTab) { - switchToTab(currentStepConfig.timelineTab); - } - - if (!tourState.isTourActive || !isElementAtCurrentStepMounted) { - return null; - } - - return ( - <> - {updatedTourSteps.map((steps, idx) => { - const stepCount = idx + 1; - if (tourState.currentTourStep !== stepCount) return null; - const panelProps = { - 'data-test-subj': `timeline-tour-step-${idx + 1}`, - }; - return ( - - ); - })} - - ); -}; - -export const TimelineTour = React.memo(TimelineTourComp); diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/tour/step_config.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/tour/step_config.tsx deleted file mode 100644 index 719a06de6d4573..00000000000000 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/tour/step_config.tsx +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { EuiText, EuiCode } from '@elastic/eui'; -import React from 'react'; -import { FormattedMessage } from '@kbn/i18n-react'; -import { TimelineTypeEnum } from '../../../../../common/api/timeline'; -import { TimelineTabs } from '../../../../../common/types'; -import * as i18n from './translations'; - -export const TIMELINE_TOUR_CONFIG_ANCHORS = { - ACTION_MENU: 'timeline-action-menu', - DATA_VIEW: 'timeline-data-view', - DATA_PROVIDER: 'toggle-data-provider', - SAVE_TIMELINE: 'save-timeline-action', - ADD_TO_FAVORITES: 'add-to-favorites', -}; - -export const timelineTourSteps = [ - { - title: i18n.TIMELINE_TOUR_TIMELINE_ACTIONS_STEP_TITLE, - content: ( - - {i18n.TIMELINE_TOUR_NEW}, - openButton: {i18n.TIMELINE_TOUR_OPEN}, - }} - /> - - ), - anchor: TIMELINE_TOUR_CONFIG_ANCHORS.ACTION_MENU, - }, - { - title: i18n.TIMELINE_TOUR_ADD_TO_FAVORITES_STEP_TITLE, - content: ( - - - - ), - anchor: TIMELINE_TOUR_CONFIG_ANCHORS.ADD_TO_FAVORITES, - }, - { - timelineTab: TimelineTabs.query, - title: i18n.TIMELINE_TOUR_CHANGE_DATA_VIEW_TITLE, - content: ( - - {i18n.TIMELINE_TOUR_DATA_VIEW}, - }} - /> - - ), - anchor: TIMELINE_TOUR_CONFIG_ANCHORS.DATA_VIEW, - }, - { - timelineType: TimelineTypeEnum.default, - timelineTab: TimelineTabs.query, - title: i18n.TIMELINE_TOUR_DATA_PROVIDER_VISIBILITY_TITLE, - content: {i18n.TIMELINE_TOUR_DATA_PROVIDER_VISIBILITY_DESCRIPTION}, - anchor: TIMELINE_TOUR_CONFIG_ANCHORS.DATA_PROVIDER, - }, - { - title: i18n.TIMELINE_TOUR_SAVE_TIMELINE_STEP_TITLE, - content: ( - - {i18n.TIMELINE_TOUR_SAVE}, - editButton: {i18n.TIMELINE_TOUR_EDIT}, - }} - /> - - ), - anchor: TIMELINE_TOUR_CONFIG_ANCHORS.SAVE_TIMELINE, - }, -]; - -export const tourConfig = { - currentTourStep: 1, - isTourActive: true, - tourPopoverWidth: 300, - tourSubtitle: i18n.TIMELINE_TOUR_SUBTITLE, -}; diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/tour/translations.ts b/x-pack/plugins/security_solution/public/timelines/components/timeline/tour/translations.ts deleted file mode 100644 index 3bb3b0e7eac006..00000000000000 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/tour/translations.ts +++ /dev/null @@ -1,92 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { i18n } from '@kbn/i18n'; - -export const TIMELINE_TOUR_SUBTITLE = i18n.translate( - 'xpack.securitySolution.timeline.tour.subTitle', - { - defaultMessage: 'Recent Timeline improvements', - } -); - -export const TIMELINE_TOUR_TIMELINE_ACTIONS_STEP_TITLE = i18n.translate( - 'xpack.securitySolution.timeline.tour.newTimeline.title', - { - defaultMessage: 'Actions are now easier to find', - } -); - -export const TIMELINE_TOUR_DATA_PROVIDER_VISIBILITY_TITLE = i18n.translate( - 'xpack.securitySolution.timeline.tour.dataProviderToggle.title', - { - defaultMessage: 'The query builder is collapsed by default', - } -); - -export const TIMELINE_TOUR_DATA_PROVIDER_VISIBILITY_DESCRIPTION = i18n.translate( - 'xpack.securitySolution.timeline.tour.dataProviderToggle.description', - { - defaultMessage: 'Click to expand or collapse the query builder.', - } -); - -export const TIMELINE_TOUR_SAVE_TIMELINE_STEP_TITLE = i18n.translate( - 'xpack.securitySolution.timeline.tour.saveTimeline.title', - { - defaultMessage: 'An easier way to save new changes', - } -); - -export const TIMELINE_TOUR_CHANGE_DATA_VIEW_TITLE = i18n.translate( - 'xpack.securitySolution.timeline.tour.changeDataView.title', - { - defaultMessage: 'The Data view menu has moved', - } -); - -export const TIMELINE_TOUR_ADD_TO_FAVORITES_STEP_TITLE = i18n.translate( - 'xpack.securitySolution.timeline.tour.addToFavorites.title', - { - defaultMessage: 'A new and intuitive way to favorite your Timeline', - } -); - -export const TIMELINE_TOUR_NEXT = i18n.translate('xpack.securitySolution.timeline.tour.next', { - defaultMessage: 'Next', -}); - -export const TIMELINE_TOUR_FINISH = i18n.translate('xpack.securitySolution.timeline.tour.finish', { - defaultMessage: 'Finish tour', -}); - -export const TIMELINE_TOUR_EXIT = i18n.translate('xpack.securitySolution.timeline.tour.exit', { - defaultMessage: 'Exit tour', -}); - -export const TIMELINE_TOUR_SAVE = i18n.translate('xpack.securitySolution.timeline.tour.save', { - defaultMessage: 'Save', -}); - -export const TIMELINE_TOUR_NEW = i18n.translate('xpack.securitySolution.timeline.tour.new', { - defaultMessage: 'New', -}); - -export const TIMELINE_TOUR_OPEN = i18n.translate('xpack.securitySolution.timeline.tour.open', { - defaultMessage: 'Open', -}); - -export const TIMELINE_TOUR_EDIT = i18n.translate('xpack.securitySolution.timeline.tour.edit', { - defaultMessage: 'Edit', -}); - -export const TIMELINE_TOUR_DATA_VIEW = i18n.translate( - 'xpack.securitySolution.timeline.tour.dataView', - { - defaultMessage: 'Data view', - } -); diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 2c76d6c9573191..e5fe67cbdf02fe 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -40369,23 +40369,6 @@ "xpack.securitySolution.timeline.tabs.sessionTabTimelineTitle": "Vue de session", "xpack.securitySolution.timeline.tcp": "TCP", "xpack.securitySolution.timeline.toggleEventDetailsTitle": "Développer les détails de l'événement", - "xpack.securitySolution.timeline.tour.addToFavorites.description": "Cliquez pour ajouter votre chronologie à vos favoris afin de la retrouver plus rapidement par la suite.", - "xpack.securitySolution.timeline.tour.addToFavorites.title": "Une nouvelle façon intuitive d'ajouter votre chronologie à vos favoris", - "xpack.securitySolution.timeline.tour.changeDataView.description": "Cliquez sur le menu {dataViewButton} pour choisir les données d'événement ou d'alerte à afficher.", - "xpack.securitySolution.timeline.tour.changeDataView.title": "Le menu d'affichage des données s'est déplacé", - "xpack.securitySolution.timeline.tour.dataProviderToggle.description": "Cliquez pour développer ou réduire le générateur de requêtes.", - "xpack.securitySolution.timeline.tour.dataProviderToggle.title": "Le constructeur de requêtes est réduit par défaut", - "xpack.securitySolution.timeline.tour.dataView": "Vue de données", - "xpack.securitySolution.timeline.tour.edit": "Modifier", - "xpack.securitySolution.timeline.tour.exit": "Sortir du tour", - "xpack.securitySolution.timeline.tour.finish": "Finir le tour", - "xpack.securitySolution.timeline.tour.new": "Nouveauté", - "xpack.securitySolution.timeline.tour.newTimeline.title": "Les actions sont désormais plus faciles à trouver", - "xpack.securitySolution.timeline.tour.next": "Suivant", - "xpack.securitySolution.timeline.tour.open": "Ouvrir", - "xpack.securitySolution.timeline.tour.save": "Enregistrer", - "xpack.securitySolution.timeline.tour.saveTimeline.title": "Une façon plus simple d'enregistrer les nouveaux changements", - "xpack.securitySolution.timeline.tour.subTitle": "Améliorations de la chronologie récente", "xpack.securitySolution.timeline.typeTooltip": "Type", "xpack.securitySolution.timeline.unsavedWorkMessage": "Quitter Timeline avec un travail non enregistré ?", "xpack.securitySolution.timeline.unsavedWorkTitle": "Modifications non enregistrées", diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index b7b13e022bb150..0bd410f31c0b39 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -40113,25 +40113,6 @@ "xpack.securitySolution.timeline.tabs.sessionTabTimelineTitle": "セッションビュー", "xpack.securitySolution.timeline.tcp": "TCP", "xpack.securitySolution.timeline.toggleEventDetailsTitle": "イベントの詳細を展開", - "xpack.securitySolution.timeline.tour.addToFavorites.description": "クリックすると、タイムラインがお気に入りに追加され、後ですばやく見つけられるようになります。", - "xpack.securitySolution.timeline.tour.addToFavorites.title": "タイムラインをお気に入りに追加するための新しい直感的な方法", - "xpack.securitySolution.timeline.tour.changeDataView.description": "{dataViewButton}メニューをクリックして、表示するイベントまたはアラートデータを選択します。", - "xpack.securitySolution.timeline.tour.changeDataView.title": "データビューメニューが移動しました", - "xpack.securitySolution.timeline.tour.dataProviderToggle.description": "クリックすると、クエリビルダーが展開されたり、折りたたまれたりします。", - "xpack.securitySolution.timeline.tour.dataProviderToggle.title": "クエリビルダーはデフォルトで折りたたまれています", - "xpack.securitySolution.timeline.tour.dataView": "データビュー", - "xpack.securitySolution.timeline.tour.edit": "編集", - "xpack.securitySolution.timeline.tour.exit": "ガイドを終了", - "xpack.securitySolution.timeline.tour.finish": "ガイドを完了", - "xpack.securitySolution.timeline.tour.new": "新規", - "xpack.securitySolution.timeline.tour.newTimeline.description": "{newButton}をクリックして、新しいタイムラインを作成します。{openButton}をクリックして、既存の項目を開きます。", - "xpack.securitySolution.timeline.tour.newTimeline.title": "アクションが見つけやすくなりました", - "xpack.securitySolution.timeline.tour.next": "次へ", - "xpack.securitySolution.timeline.tour.open": "開く", - "xpack.securitySolution.timeline.tour.save": "保存", - "xpack.securitySolution.timeline.tour.saveTimeline.description": "{saveButton}をクリックして、新しい変更を手動で保存します。タイムラインを保存するときには、名前と説明を{editButton}するか、新しいタイムラインとして保存することができます。", - "xpack.securitySolution.timeline.tour.saveTimeline.title": "新しい変更を保存する方法が簡単になりました", - "xpack.securitySolution.timeline.tour.subTitle": "最近のタイムラインの改良", "xpack.securitySolution.timeline.typeTooltip": "型", "xpack.securitySolution.timeline.unsavedWorkMessage": "作業を保存せずにタイムラインから移動しますか?", "xpack.securitySolution.timeline.unsavedWorkTitle": "保存されていない変更", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 47bbff06074b2b..80e113dd341de5 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -40158,25 +40158,6 @@ "xpack.securitySolution.timeline.tabs.sessionTabTimelineTitle": "会话视图", "xpack.securitySolution.timeline.tcp": "TCP", "xpack.securitySolution.timeline.toggleEventDetailsTitle": "展开事件详情", - "xpack.securitySolution.timeline.tour.addToFavorites.description": "单击以收藏您的时间线,以便稍后快速找到它。", - "xpack.securitySolution.timeline.tour.addToFavorites.title": "收藏时间线的全新直观方式", - "xpack.securitySolution.timeline.tour.changeDataView.description": "单击 {dataViewButton} 菜单以选择要显示的事件或告警数据。", - "xpack.securitySolution.timeline.tour.changeDataView.title": "已移动数据视图菜单", - "xpack.securitySolution.timeline.tour.dataProviderToggle.description": "单击以展开或折叠查询构建器。", - "xpack.securitySolution.timeline.tour.dataProviderToggle.title": "查询构建器默认处于折叠状态", - "xpack.securitySolution.timeline.tour.dataView": "数据视图", - "xpack.securitySolution.timeline.tour.edit": "编辑", - "xpack.securitySolution.timeline.tour.exit": "退出教程", - "xpack.securitySolution.timeline.tour.finish": "完成教程", - "xpack.securitySolution.timeline.tour.new": "新建", - "xpack.securitySolution.timeline.tour.newTimeline.description": "单击 {newButton} 以创建新时间线。单击 {openButton} 以打开现有项。", - "xpack.securitySolution.timeline.tour.newTimeline.title": "现在可以更轻松地查找操作", - "xpack.securitySolution.timeline.tour.next": "下一步", - "xpack.securitySolution.timeline.tour.open": "打开", - "xpack.securitySolution.timeline.tour.save": "保存", - "xpack.securitySolution.timeline.tour.saveTimeline.description": "单击 {saveButton} 以手动保存新更改。在保存时间线时,您可以{editButton}其名称和描述,或将其另存为新时间线。", - "xpack.securitySolution.timeline.tour.saveTimeline.title": "保存新更改的更简便方法", - "xpack.securitySolution.timeline.tour.subTitle": "最近的时间线改进", "xpack.securitySolution.timeline.typeTooltip": "类型", "xpack.securitySolution.timeline.unsavedWorkMessage": "离开有未保存工作的时间线?", "xpack.securitySolution.timeline.unsavedWorkTitle": "未保存的更改",