Translate

This is a translation key used to show a confirmation message before deleting an entity.

How It Works:

  • Add the key in your translation JSON files (usually under assets/i18n/[lang].json in Angular).

  • Once it's added in each language file, the correct translation will be shown automatically depending on the selected language.

delete_confirmation_message: This is the key

And you will put the value you want to see in the dialog when confirmation of the delete process

Let us see an example:

en.json
{
  ...
  //This message will appear when the confirmation dialog shows
 "delete_confirmation_message": "Are you sure you want to delete this entry?"
 ...
 }

Last updated