When the Sitecore Client is run using the client translations in the German language, a pop-up message with the incorrect item name appears when deleting any item:
Sind Sie sicher, dass "Analytik-Filter" gelöscht werden soll?
In addition, no warning message is shown if the item to be deleted has subitems.
To resolve the issue, edit the \App_Data\localization\texts.de-DE.xml file:
<phrase key="Are you sure you want to delete "{0}"?{2}{1}">
<de-DE>Sind Sie sicher, dass "Analytik-Filter" gelöscht werden soll?</de-DE>
</phrase>
with the following value:
<phrase key="Are you sure you want to delete "{0}"?{2}{1}">
<de-DE>Sind Sie sicher, dass {0} gelöscht werden soll?{2}{1}</de-DE>
</phrase>