[ML] Adjusts strings of text on ML and transforms UIs (#151976)

## Summary

This PR makes small changes to the strings of helper text in the ML UI.
It also slightly changes the transform UI text. It mostly adds some
missing full stops to the end of the sentences for the sake of
consistency.
This commit is contained in:
István Zoltán Szabó 2023-02-24 17:37:02 +01:00 committed by GitHub
parent 5ed88cb414
commit d973dad3a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 9 additions and 9 deletions

View file

@ -233,7 +233,7 @@ export const SpikeAnalysisTable: FC<SpikeAnalysisTableProps> = ({
content={i18n.translate(
'xpack.aiops.explainLogRateSpikes.spikeAnalysisTable.impactLabelColumnTooltip',
{
defaultMessage: 'The level of impact of the field on the message rate difference',
defaultMessage: 'The level of impact of the field on the message rate difference.',
}
)}
>

View file

@ -328,7 +328,7 @@ export const SpikeAnalysisGroupsTable: FC<SpikeAnalysisTableProps> = ({
'xpack.aiops.explainLogRateSpikes.spikeAnalysisTableGroups.logRateColumnTooltip',
{
defaultMessage:
'A visual representation of the impact of the group on the message rate difference',
'A visual representation of the impact of the group on the message rate difference.',
}
)}
>
@ -377,7 +377,7 @@ export const SpikeAnalysisGroupsTable: FC<SpikeAnalysisTableProps> = ({
'xpack.aiops.explainLogRateSpikes.spikeAnalysisTableGroups.pValueColumnTooltip',
{
defaultMessage:
'The significance of changes in the frequency of values; lower values indicate greater change',
'The significance of changes in the frequency of values; lower values indicate greater change.',
}
)}
>

View file

@ -70,7 +70,7 @@ const tooltipContent = {
'xpack.ml.dataframe.analytics.regressionExploration.msleTooltipContent',
{
defaultMessage:
'Average squared difference between the logarithm of the predicted values and the logarithm of the actual (ground truth) value',
'Average squared difference between the logarithm of the predicted values and the logarithm of the actual (ground truth) value.',
}
),
[REGRESSION_STATS.R_SQUARED]: i18n.translate(

View file

@ -304,7 +304,7 @@ export const StepDefineForm: FC<StepDefineFormProps> = React.memo((props) => {
'xpack.transform.stepDefineForm.datePickerIconTipContent',
{
defaultMessage:
'The time range will be applied to previews only and will not be part of the final transform configuration.',
'The time range is applied to previews only and will not be part of the final transform configuration.',
}
)}
/>

View file

@ -23,7 +23,7 @@ export const TransformFunctionSelector: FC<TransformFunctionSelectorProps> = ({
{
name: TRANSFORM_FUNCTION.PIVOT,
helpText: i18n.translate('xpack.transform.stepDefineForm.pivotHelperText', {
defaultMessage: 'Aggregate and group your data',
defaultMessage: 'Aggregate and group your data.',
}),
icon: 'aggregate',
title: i18n.translate('xpack.transform.stepDefineForm.pivotLabel', {
@ -33,7 +33,7 @@ export const TransformFunctionSelector: FC<TransformFunctionSelectorProps> = ({
{
name: TRANSFORM_FUNCTION.LATEST,
helpText: i18n.translate('xpack.transform.stepDefineForm.latestHelperText', {
defaultMessage: 'Keep track of your most recent data',
defaultMessage: 'Keep track of your most recent data.',
}),
icon: 'clock',
title: i18n.translate('xpack.transform.stepDefineForm.latestLabel', {

View file

@ -793,7 +793,7 @@ export const StepDetailsForm: FC<StepDetailsFormProps> = React.memo(
}
helpText={i18n.translate('xpack.transform.stepDetailsForm.frequencyHelpText', {
defaultMessage:
'The interval to check for changes in source indices when the transformation runs continuously.',
'The interval to check for changes in source indices when the transform runs continuously.',
})}
>
<EuiFieldText

View file

@ -110,7 +110,7 @@ export const EditTransformFlyoutForm: FC<EditTransformFlyoutFormProps> = ({
errorMessages={formFields.frequency.errorMessages}
helpText={i18n.translate('xpack.transform.transformList.editFlyoutFormFrequencyHelpText', {
defaultMessage:
'The interval to check for changes in source indices when the transformation runs continuously.',
'The interval to check for changes in source indices when the transform runs continuously.',
})}
label={i18n.translate('xpack.transform.transformList.editFlyoutFormFrequencyLabel', {
defaultMessage: 'Frequency',