diff --git a/x-pack/plugins/lens/public/datatable_visualization/components/__snapshots__/table_basic.test.tsx.snap b/x-pack/plugins/lens/public/datatable_visualization/components/__snapshots__/table_basic.test.tsx.snap
index d69af298018e7..158c7fa4aeec3 100644
--- a/x-pack/plugins/lens/public/datatable_visualization/components/__snapshots__/table_basic.test.tsx.snap
+++ b/x-pack/plugins/lens/public/datatable_visualization/components/__snapshots__/table_basic.test.tsx.snap
@@ -107,10 +107,10 @@ exports[`DatatableComponent it renders actions column when there are row actions
"showMoveLeft": false,
"showMoveRight": false,
"showSortAsc": Object {
- "label": "Sort asc",
+ "label": "Sort ascending",
},
"showSortDesc": Object {
- "label": "Sort desc",
+ "label": "Sort descending",
},
},
"cellActions": undefined,
@@ -144,10 +144,10 @@ exports[`DatatableComponent it renders actions column when there are row actions
"showMoveLeft": false,
"showMoveRight": false,
"showSortAsc": Object {
- "label": "Sort asc",
+ "label": "Sort ascending",
},
"showSortDesc": Object {
- "label": "Sort desc",
+ "label": "Sort descending",
},
},
"cellActions": undefined,
@@ -181,10 +181,10 @@ exports[`DatatableComponent it renders actions column when there are row actions
"showMoveLeft": false,
"showMoveRight": false,
"showSortAsc": Object {
- "label": "Sort asc",
+ "label": "Sort ascending",
},
"showSortDesc": Object {
- "label": "Sort desc",
+ "label": "Sort descending",
},
},
"cellActions": undefined,
@@ -329,10 +329,10 @@ exports[`DatatableComponent it renders the title and value 1`] = `
"showMoveLeft": false,
"showMoveRight": false,
"showSortAsc": Object {
- "label": "Sort asc",
+ "label": "Sort ascending",
},
"showSortDesc": Object {
- "label": "Sort desc",
+ "label": "Sort descending",
},
},
"cellActions": undefined,
@@ -366,10 +366,10 @@ exports[`DatatableComponent it renders the title and value 1`] = `
"showMoveLeft": false,
"showMoveRight": false,
"showSortAsc": Object {
- "label": "Sort asc",
+ "label": "Sort ascending",
},
"showSortDesc": Object {
- "label": "Sort desc",
+ "label": "Sort descending",
},
},
"cellActions": undefined,
@@ -403,10 +403,10 @@ exports[`DatatableComponent it renders the title and value 1`] = `
"showMoveLeft": false,
"showMoveRight": false,
"showSortAsc": Object {
- "label": "Sort asc",
+ "label": "Sort ascending",
},
"showSortDesc": Object {
- "label": "Sort desc",
+ "label": "Sort descending",
},
},
"cellActions": undefined,
diff --git a/x-pack/plugins/lens/public/datatable_visualization/components/columns.tsx b/x-pack/plugins/lens/public/datatable_visualization/components/columns.tsx
index 5ff1e84276ba7..fdb05599c38e9 100644
--- a/x-pack/plugins/lens/public/datatable_visualization/components/columns.tsx
+++ b/x-pack/plugins/lens/public/datatable_visualization/components/columns.tsx
@@ -152,14 +152,14 @@ export const createGridColumns = (
? false
: {
label: i18n.translate('xpack.lens.table.sort.ascLabel', {
- defaultMessage: 'Sort asc',
+ defaultMessage: 'Sort ascending',
}),
},
showSortDesc: isReadOnly
? false
: {
label: i18n.translate('xpack.lens.table.sort.descLabel', {
- defaultMessage: 'Sort desc',
+ defaultMessage: 'Sort descending',
}),
},
additional: isReadOnly
diff --git a/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx b/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx
index 2c4cecd356ced..89b8809d1b23c 100644
--- a/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx
+++ b/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx
@@ -10,16 +10,7 @@ import classNames from 'classnames';
import { FormattedMessage } from '@kbn/i18n/react';
import { Ast } from '@kbn/interpreter/common';
import { i18n } from '@kbn/i18n';
-import {
- EuiFlexGroup,
- EuiFlexItem,
- EuiIcon,
- EuiText,
- EuiTextColor,
- EuiButtonEmpty,
- EuiLink,
- EuiTitle,
-} from '@elastic/eui';
+import { EuiFlexGroup, EuiFlexItem, EuiIcon, EuiText, EuiButtonEmpty, EuiLink } from '@elastic/eui';
import { CoreStart, CoreSetup } from 'kibana/public';
import {
DataPublicPluginStart,
@@ -423,16 +414,6 @@ export const InnerVisualizationWrapper = ({
{i18n.translate('xpack.lens.indexPattern.dateHistogram.autoBasicExplanation', { - defaultMessage: 'The auto date histogram splits a date field into buckets by interval.', + defaultMessage: 'The auto date histogram splits a data field into buckets by interval.', })}
{i18n.translate('xpack.lens.indexPattern.ranges.granularityPopoverAdvancedExplanation', {
defaultMessage:
- 'Intervals are incremented by 10, 5 or 2: for example an interval can be 100 or 0.2 .',
+ 'Intervals are incremented by 10, 5 or 2. For example, an interval can be 100 or 0.2 .',
})}