mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Build: support strip-po target for translations
The target was added to top-level Makefile.am as well so the maintainer does not need to jump between directories when doing Zanata pull/push and strip-po. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com> Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com>
This commit is contained in:
committed by
Martin Basti
parent
4842231074
commit
d40c376ccc
20
po/Makefile.hack.in
Normal file
20
po/Makefile.hack.in
Normal file
@@ -0,0 +1,20 @@
|
||||
# Auxiliary target for translation maintainer:
|
||||
# Strip untranslated strings and comments with code lines from the po files
|
||||
# to make them smaller before storage in SCM.
|
||||
|
||||
DISTFILES.common.extra3 = Makefile.hack.in
|
||||
|
||||
MSGATTRIB = @MSGATTRIB@
|
||||
|
||||
.PHONY: strip-po
|
||||
strip-po:
|
||||
for po_file in $(POFILES); do \
|
||||
$(MSGATTRIB) --translated --no-fuzzy --no-location $$po_file > $$po_file.tmp || exit 1; \
|
||||
mv $$po_file.tmp $$po_file || exit 1; \
|
||||
done
|
||||
export FILES_TO_REMOVE=`find $(srcdir) -name '*.po' -empty` || exit 1; \
|
||||
if [ "$$FILES_TO_REMOVE" != "" ]; then \
|
||||
rm -v $$FILES_TO_REMOVE || exit 1; \
|
||||
echo; echo Please remove the deleted files from LINGUAS!; echo; \
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user