Skip to content

Commit 861ef19

Browse files
committed
Sort potest by number of translated messages.
1 parent 47dd34b commit 861ef19

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

locale/GNUmakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ diff:
7171
-I '^#:\s*:[0-9]*.*$$' \
7272
- roundup.pot || exit 0
7373
potest:
74-
for file in $(PO_FILES); do \
75-
${MSGFMT} -cv $$file; \
76-
done
74+
sh -c 'for file in $(PO_FILES); do \
75+
${MSGFMT} -cv --statistics $$file; \
76+
done' 2>&1 | sort -k 2,2n
7777

7878
%.po: $(TEMPLATE)
7979
${MSGMERGE} -U --suffix=.bak $@ $<

0 commit comments

Comments
 (0)