Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django's makemessages creates a lot of fuzzy entries

Each time I added some strings to a Django project, I run "django-admin.py makemessages -all" to generate .PO files for all locales.

The problem is even I only added 5 news strings, the makemessages command will mark 50 strings as fuzzy in .PO files which brings a lot of extra work for our locale maintainers.

This also makes the entire i18n unusable before they manually revise those fuzzy strings.

like image 819
jack Avatar asked Apr 26 '10 02:04

jack


1 Answers

Removing fuzzy is exactly what I am doing... check this out.

http://code.djangoproject.com/ticket/10852

Sounds like we need extra sh script that automatically removes all the fuzzy from po.

like image 140
chris Avatar answered Sep 22 '22 10:09

chris