FIX: off by one error in fuzzy finder.

This commit is contained in:
Julien Palard 2018-05-08 17:08:23 +02:00
parent 31c80b4bb1
commit 085ea2c414
1 changed files with 1 additions and 1 deletions

View File

@ -90,4 +90,4 @@ endif
.PHONY: fuzzy
fuzzy:
for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c ^msgid) $$file; done | grep -v ^0 | sort -gr
for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c '#, fuzzy') $$file; done | grep -v ^0 | sort -gr