Skip to content

Commit

Permalink
Final texts
Browse files Browse the repository at this point in the history
  • Loading branch information
stratoula committed Nov 16, 2020
1 parent 09be652 commit ac1a741
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/plugins/vis_type_metric/public/metric_vis_type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const createMetricVisTypeDefinition = (): BaseVisTypeOptions => ({
title: i18n.translate('visTypeMetric.metricTitle', { defaultMessage: 'Metric' }),
icon: 'visMetric',
description: i18n.translate('visTypeMetric.metricDescription', {
defaultMessage: 'Display a calculation as a single number.',
defaultMessage: 'Show a calculation as a single number.',
}),
toExpressionAst,
visConfig: {
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vis_type_table/public/table_vis_type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const tableVisTypeDefinition: BaseVisTypeOptions<TableVisParams> = {
}),
icon: 'visTable',
description: i18n.translate('visTypeTable.tableVisDescription', {
defaultMessage: 'Display values in a table.',
defaultMessage: 'Display data in rows and columns.',
}),
getSupportedTriggers: () => {
return [VIS_EVENT_TO_TRIGGER.filter];
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vis_type_tagcloud/public/tag_cloud_type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const tagCloudVisTypeDefinition = {
return [VIS_EVENT_TO_TRIGGER.filter];
},
description: i18n.translate('visTypeTagCloud.vis.tagCloudDescription', {
defaultMessage: 'Display a group of words.',
defaultMessage: 'Display word frequency with font size.',
}),
visConfig: {
defaults: {
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vis_type_timelion/public/timelion_vis_type.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function getTimelionVisDefinition(dependencies: TimelionVisDependencies)
title: 'Timelion',
icon: 'visTimelion',
description: i18n.translate('timelion.timelionDescription', {
defaultMessage: 'Build time-series using functional expressions.',
defaultMessage: 'Show time series data on a graph.',
}),
visConfig: {
defaults: {
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vis_type_vislib/public/area.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const areaVisTypeDefinition: BaseVisTypeOptions<BasicVislibParams> = {
title: i18n.translate('visTypeVislib.area.areaTitle', { defaultMessage: 'Area' }),
icon: 'visArea',
description: i18n.translate('visTypeVislib.area.areaDescription', {
defaultMessage: 'Emphasize the quantity beneath a line chart.',
defaultMessage: 'Emphasize the data between an axis and a line.',
}),
getSupportedTriggers: () => [VIS_EVENT_TO_TRIGGER.filter, VIS_EVENT_TO_TRIGGER.brush],
toExpressionAst,
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vis_type_vislib/public/goal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const goalVisTypeDefinition: BaseVisTypeOptions<BasicVislibParams> = {
title: i18n.translate('visTypeVislib.goal.goalTitle', { defaultMessage: 'Goal' }),
icon: 'visGoal',
description: i18n.translate('visTypeVislib.goal.goalDescription', {
defaultMessage: 'Track how close you are to your final goal.',
defaultMessage: 'Track how a metric progresses to a goal.',
}),
toExpressionAst,
visConfig: {
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vis_type_vislib/public/heatmap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const heatmapVisTypeDefinition: BaseVisTypeOptions<BasicVislibParams> = {
title: i18n.translate('visTypeVislib.heatmap.heatmapTitle', { defaultMessage: 'Heat map' }),
icon: 'heatmap',
description: i18n.translate('visTypeVislib.heatmap.heatmapDescription', {
defaultMessage: 'Shade cells in a matrix.',
defaultMessage: 'Shade cells in cells in a matrix.',
}),
getSupportedTriggers: () => [VIS_EVENT_TO_TRIGGER.filter],
toExpressionAst,
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vis_type_vislib/public/histogram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const histogramVisTypeDefinition: BaseVisTypeOptions<BasicVislibParams> =
}),
icon: 'visBarVertical',
description: i18n.translate('visTypeVislib.histogram.histogramDescription', {
defaultMessage: 'Represent data in vertical bars on an axis.',
defaultMessage: 'Present data in vertical bars on an axis.',
}),
getSupportedTriggers: () => [VIS_EVENT_TO_TRIGGER.filter, VIS_EVENT_TO_TRIGGER.brush],
toExpressionAst,
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vis_type_vislib/public/horizontal_bar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const horizontalBarVisTypeDefinition: BaseVisTypeOptions<BasicVislibParam
}),
icon: 'visBarHorizontal',
description: i18n.translate('visTypeVislib.horizontalBar.horizontalBarDescription', {
defaultMessage: 'Represent data in horizontal bars on an axis.',
defaultMessage: 'Present data in horizontal bars on an axis.',
}),
getSupportedTriggers: () => [VIS_EVENT_TO_TRIGGER.filter, VIS_EVENT_TO_TRIGGER.brush],
toExpressionAst,
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vis_type_vislib/public/pie.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const pieVisTypeDefinition: BaseVisTypeOptions<PieVisParams> = {
title: i18n.translate('visTypeVislib.pie.pieTitle', { defaultMessage: 'Pie' }),
icon: 'visPie',
description: i18n.translate('visTypeVislib.pie.pieDescription', {
defaultMessage: 'Compare parts of a whole.',
defaultMessage: 'Compare data in proportion to a whole.',
}),
getSupportedTriggers: () => [VIS_EVENT_TO_TRIGGER.filter],
toExpressionAst,
Expand Down

0 comments on commit ac1a741

Please sign in to comment.