Translating dropzone texts

Hello,
Trying out the cornerstone Forms plugin, how can one translate the “Remove file” texte on a dropzone file ?

Hello @deciplex,

Thanks for writing to us.

I would suggest you please add this custom code to the active child theme’s functions.php file.

function custom_text_translate($translated) {
  $translated = str_ireplace('Remove file', 'Your Custom Text', $translated); return $translated;
}
add_filter('gettext', 'custom_text_translate' );

Please replace the “Your Custom Text” with your exact text.

Thanks