diff --git a/mailpoet/assets/js/src/automation/editor/components/actions/trash-button.tsx b/mailpoet/assets/js/src/automation/editor/components/actions/trash-button.tsx index 33c88ced8c..96eaf971cd 100644 --- a/mailpoet/assets/js/src/automation/editor/components/actions/trash-button.tsx +++ b/mailpoet/assets/js/src/automation/editor/components/actions/trash-button.tsx @@ -4,6 +4,7 @@ import { Button, } from '@wordpress/components'; import { useDispatch, useSelect } from '@wordpress/data'; +import { __, sprintf } from '@wordpress/i18n'; import { storeName } from '../../store'; export function TrashButton(): JSX.Element { @@ -30,7 +31,12 @@ export function TrashButton(): JSX.Element { onCancel={() => setShowConfirmDialog(false)} __experimentalHideHeader={false} > - You are about to delete the ā€œ{workflow.name}ā€ workflow. + {sprintf( + __('You are about to delete the ā€œ%sā€ workflow.', 'mailpoet'), + workflow.name, + )} +
+ {__(' This will stop it for all subscribers immediately.', 'mailpoet')}