When I try to translates empty strings in a django template I end up with the po header showing up instead an empty string http://codex.wordpress.org/Translating_WordPress#The_PO_File_Header . I have to translate empty strings because they are in db an I can't fill all models and translate them as they are dynamic. Now I use something like
{% if data %}
{% trans data %}
{% endif %}
I tried to mark the header as fuzzy but it didn't work.
Is there any way to avoid to check each translatable string and avoid the po header showing up ? I am using django 1.5.