Skip to content

Commit ead6eee

Browse files
szabostevelcawl
andauthored
Reviews data frame analytics UI text (#93033) (#93562)
Co-authored-by: Lisa Cawley <lcawley@elastic.co>
1 parent 73bc704 commit ead6eee

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/advanced_step/advanced_step_form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ export const AdvancedStepForm: FC<CreateAnalyticsStepProps> = ({
560560
})}
561561
helpText={i18n.translate('xpack.ml.dataframe.analytics.create.maxNumThreadsHelpText', {
562562
defaultMessage:
563-
'The maximum number of threads to be used by the analysis. The default value is 1',
563+
'The maximum number of threads to be used by the analysis. The default value is 1.',
564564
})}
565565
isInvalid={maxNumThreads === 0}
566566
error={

x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/advanced_step/outlier_hyper_parameters.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const OutlierHyperParameters: FC<Props> = ({ actions, state, advancedPara
3030
})}
3131
helpText={i18n.translate('xpack.ml.dataframe.analytics.create.methodHelpText', {
3232
defaultMessage:
33-
'Sets the method that outlier detection uses. If not set, uses an ensemble of different methods and normalises and combines their individual outlier scores to obtain the overall outlier score. We recommend to use the ensemble method',
33+
'Sets the method that outlier detection uses. If not set, uses an ensemble of different methods, normalizes and combines their individual outlier scores to obtain the overall outlier score. It is recommended to use the ensemble method.',
3434
})}
3535
isInvalid={advancedParamErrors[ANALYSIS_ADVANCED_FIELDS.METHOD] !== undefined}
3636
error={advancedParamErrors[ANALYSIS_ADVANCED_FIELDS.METHOD]}
@@ -56,7 +56,7 @@ export const OutlierHyperParameters: FC<Props> = ({ actions, state, advancedPara
5656
})}
5757
helpText={i18n.translate('xpack.ml.dataframe.analytics.create.nNeighborsHelpText', {
5858
defaultMessage:
59-
'The value for how many nearest neighbors each method of outlier detection will use to calculate its outlier score. When not set, different values will be used for different ensemble members. Must be a positive integer',
59+
'The value for how many nearest neighbors each method of outlier detection uses to calculate its outlier score. When not set, different values are used for different ensemble members. Must be a positive integer.',
6060
})}
6161
isInvalid={advancedParamErrors[ANALYSIS_ADVANCED_FIELDS.N_NEIGHBORS] !== undefined}
6262
error={advancedParamErrors[ANALYSIS_ADVANCED_FIELDS.N_NEIGHBORS]}
@@ -66,7 +66,7 @@ export const OutlierHyperParameters: FC<Props> = ({ actions, state, advancedPara
6666
'xpack.ml.dataframe.analytics.create.nNeighborsInputAriaLabel',
6767
{
6868
defaultMessage:
69-
'The value for how many nearest neighbors each method of outlier detection will use to calculate its outlier score.',
69+
'The value for how many nearest neighbors each method of outlier detection uses to calculate its outlier score.',
7070
}
7171
)}
7272
data-test-subj="mlAnalyticsCreateJobWizardnNeighborsInput"

x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ export const ConfigurationStepForm: FC<CreateAnalyticsStepProps> = ({
539539
'xpack.ml.dataframe.analytics.create.scatterplotMatrixLabelHelpText',
540540
{
541541
defaultMessage:
542-
'Visualizes the relationships between pairs of selected included fields',
542+
'Visualizes the relationships between pairs of selected included fields.',
543543
}
544544
)}
545545
fullWidth

0 commit comments

Comments
 (0)