I'm using django i18n and I've been executed makemessages
several times to include new phrases I marked for translation while I'm developing my app.
Recently, I realised there are some translation (not many) marked as:
#~ msgid "Location:"
#~ msgstr "Lugar:"
#~ msgid "Sector:"
#~ msgstr "Sector:"
I found those entries are duplicated, since in the file the correct translations are there too:
#: templates/userprofile.html:63
msgid "Location"
msgstr "Lugar:"
#: tiesport/userprofile.html:69
msgid "Sector"
msgstr "Sector:"
What does this '#~' mean?