Skip to content

Commit

Permalink
clarify actions that are applied to all locations
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiqueclarke committed Apr 28, 2023
1 parent 4416340 commit 7a2e857
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const TAGS_LABEL = i18n.translate('xpack.synthetics.management.monitorList.tags'
});

const ENABLED_LABEL = i18n.translate('xpack.synthetics.detailsPanel.monitorDetails.enabled', {
defaultMessage: 'Enabled',
defaultMessage: 'Enabled (all locations)',
});

const MONITOR_TYPE_LABEL = i18n.translate(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,28 +345,28 @@ const loadingLabel = (isEnabled: boolean) =>
const enableMonitorLabel = i18n.translate(
'xpack.synthetics.overview.actions.enableLabelEnableMonitor',
{
defaultMessage: 'Enable monitor',
defaultMessage: 'Enable monitor (all locations)',
}
);

const disableMonitorLabel = i18n.translate(
'xpack.synthetics.overview.actions.enableLabelDisableMonitor',
{
defaultMessage: 'Disable monitor',
defaultMessage: 'Disable monitor (all locations)',
}
);

const disableAlertLabel = i18n.translate(
'xpack.synthetics.overview.actions.disableLabelDisableAlert',
{
defaultMessage: 'Disable status alerts',
defaultMessage: 'Disable status alerts (all locations)',
}
);

const enableMonitorAlertLabel = i18n.translate(
'xpack.synthetics.overview.actions.enableLabelDisableAlert',
{
defaultMessage: 'Enable status alerts',
defaultMessage: 'Enable status alerts (all locations)',
}
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ const PREVIOUS_PERIOD_SERIES_NAME = i18n.translate(
);

const ENABLED_ITEM_TEXT = i18n.translate('xpack.synthetics.monitorList.enabledItemText', {
defaultMessage: 'Enabled',
defaultMessage: 'Enabled (all locations)',
});

const CLOSE_FLYOUT_TEXT = i18n.translate('xpack.synthetics.monitorList.closeFlyoutText', {
Expand Down

0 comments on commit 7a2e857

Please sign in to comment.