I’m using Drupal 7 and I have a Global: Custom Text in my view
<div class="myclass"> <h3>Label</h3> <div class="title">[title]</div> <div class="category">[category]</div> </div>
When I try to translate the ‘Label’ from
`Configuration » Regional and language » Translate interface`
I get an error ‘The submitted string contains disallowed HTML’. That is because the label is wrapped in a div. I could add the div in include/locale.inc in the function
`locale_string_is_safe($string)`
but I don’t think is a good idea to edit the Drupal core.
Do you have any better solution?