I have recently started i18n my django project, and I have .po
files. However in my templates, I have done things suboptimaly. I have just copied the local variable name for something that appears a lot. So I have near-duplicates in .po file, like %(num)s messages
and %(num_messages)s messages
and %d messages
. I should have written them all the same way, so that there is only one translation.
Is there any way/software that can read my .po
file and tell me these messages that I should merge?