Bug 36246: Remove space before question mark in confirmation message

This has the benefit of making the messages on 2 separate pages
consistent so they appear as one string to translate.

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Katrin Fischer 2024-05-03 14:15:32 +00:00
parent afbb3450e4
commit ec3ee1fd43
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -139,7 +139,7 @@
"dom": "t"
}));
$(".delete_file").click(function(){
return ( confirm( _("Are you sure you want to delete this file ?") ) );
return ( confirm( _("Are you sure you want to delete this file?") ) );
});
});
</script>