diff --git a/superset-frontend/src/components/DeleteModal.tsx b/superset-frontend/src/components/DeleteModal.tsx
index ad58aff54cc..37a9ca580c5 100644
--- a/superset-frontend/src/components/DeleteModal.tsx
+++ b/superset-frontend/src/components/DeleteModal.tsx
@@ -65,7 +65,9 @@ export default function DeleteModal({
>
{description}
- {t('type "delete" to confirm')}
+
+ {t('Type "%s" to confirm', t('DELETE'))}
+
,
) => {
const targetValue = (event.currentTarget?.value as string) ?? '';
- setDisableChange(targetValue.toUpperCase() !== 'DELETE');
+ setDisableChange(targetValue.toUpperCase() !== t('DELETE'));
}}
/>