diff --git a/packages/strapi-admin/admin/src/translations/en.json b/packages/strapi-admin/admin/src/translations/en.json
index a83776608a..f6c25b214a 100755
--- a/packages/strapi-admin/admin/src/translations/en.json
+++ b/packages/strapi-admin/admin/src/translations/en.json
@@ -14,6 +14,9 @@
"components.AutoReloadBlocker.header": "Reload feature is required for this plugin.",
"components.AutoReloadBlocker.description": "Open the following file and enable the feature.",
"components.ProductionBlocker.header": "This plugin is only available in development.",
- "components.ProductionBlocker.description": "For safety we have to disable this plugin in other environments."
-
+ "components.ProductionBlocker.description": "For safety we have to disable this plugin in other environments.",
+ "components.popUpWarning.button.cancel": "Cancel",
+ "components.popUpWarning.button.confirm": "Confirm",
+ "components.popUpWarning.title": "Please confirm",
+ "components.popUpWarning.message": "Are you sure you want to delete this?"
}
diff --git a/packages/strapi-admin/admin/src/translations/fr.json b/packages/strapi-admin/admin/src/translations/fr.json
index 015d6b0f99..45ba197216 100755
--- a/packages/strapi-admin/admin/src/translations/fr.json
+++ b/packages/strapi-admin/admin/src/translations/fr.json
@@ -14,5 +14,10 @@
"components.AutoReloadBlocker.header": "L'autoReload doit être activé pour ce plugin.",
"components.AutoReloadBlocker.description": "Ouvrez le fichier suivant pour activer cette fonctionnalité.",
"components.ProductionBlocker.header": "Ce plugin est disponible uniquement en développement.",
- "components.ProductionBlocker.description": "Pour des raisons de sécurité il est désactivé dans les autres environnements."
+ "components.ProductionBlocker.description": "Pour des raisons de sécurité il est désactivé dans les autres environnements.",
+ "comonents.popUpWarning.button.cancel": "Annuler",
+ "comonents.popUpWarning.button.confirm": "Confirmer",
+ "components.popUpWarning.title": "Merci de confirmer",
+ "components.popUpWarning.message": "Etes-vous sure de vouloir le supprimer?"
+
}
diff --git a/packages/strapi-helper-plugin/lib/src/components/PopUpWarning/index.js b/packages/strapi-helper-plugin/lib/src/components/PopUpWarning/index.js
index 5044629bdc..c6ab2699b9 100644
--- a/packages/strapi-helper-plugin/lib/src/components/PopUpWarning/index.js
+++ b/packages/strapi-helper-plugin/lib/src/components/PopUpWarning/index.js
@@ -35,25 +35,25 @@ class PopUpWarning extends React.Component { // eslint-disable-line react/prefer