Skip to content

Commit

Permalink
fix more translation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mgiota committed Apr 29, 2022
1 parent d26ca7c commit 30f3583
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ export function ManageLicenseModal({ licenseType, ruleTypeId, onConfirm, onCance
const licenseRequired = capitalize(licenseType);
return (
<EuiConfirmModal
title={i18n.translate('xpack.triggersActionsUI.sections.manageLicense.manageLicenseTitle', {
title={i18n.translate('xpack.observability.rules.manageLicense.manageLicenseTitle', {
defaultMessage: '{licenseRequired} license required',
values: { licenseRequired },
})}
onCancel={onCancel}
onConfirm={onConfirm}
confirmButtonText={i18n.translate(
'xpack.triggersActionsUI.sections.manageLicense.manageLicenseConfirmButtonText',
'xpack.observability.rules.manageLicense.manageLicenseConfirmButtonText',
{
defaultMessage: 'Manage license',
}
)}
cancelButtonText={i18n.translate(
'xpack.triggersActionsUI.sections.manageLicense.manageLicenseCancelButtonText',
'xpack.observability.rules.manageLicense.manageLicenseCancelButtonText',
{
defaultMessage: 'Cancel',
}
Expand All @@ -45,7 +45,7 @@ export function ManageLicenseModal({ licenseType, ruleTypeId, onConfirm, onCance
>
<p>
<FormattedMessage
id="xpack.triggersActionsUI.sections.manageLicense.manageLicenseMessage"
id="xpack.observability.rules.manageLicense.manageLicenseMessage"
defaultMessage="Rule type {ruleTypeId} is disabled because it requires a {licenseRequired} license. Continue to License Management to view upgrade options."
values={{ ruleTypeId, licenseRequired }}
/>
Expand Down

0 comments on commit 30f3583

Please sign in to comment.