Don't use fuzzy matching when updating message catalogs, to avoid issues where the number string substitution placeholders changes, per discussion.

This commit is contained in:
Dave Page 2021-07-05 09:49:51 +01:00
parent 9fdda038a9
commit fff4060b31

View File

@ -142,7 +142,7 @@ msg-extract:
cd web && pybabel extract -F babel.cfg -o pgadmin/messages.pot pgadmin
msg-update:
cd web && pybabel update -i pgadmin/messages.pot -d pgadmin/translations
cd web && pybabel update --no-fuzzy-matching -i pgadmin/messages.pot -d pgadmin/translations
.PHONY: docs