How to remove all fuzzy entries from django.po files? When i run makemessage command it created lot of fuzzy files. Any solution?
Have your translators verify that the translations for those entries are still correct and remove the fuzzy flag.
Gettext msgattrib is your friend.
ls **/*.po | xargs -n 1 -I @ msgattrib @ -o @
does work well. (ls **/*.po
is a function in zsh) You can search and replace using this regex ^#(\||,).*$
replace row found by empty. Then rerun the django-admin makemessages
command.