Staging
v0.8.1
https://github.com/git/git
Raw File
Tip revision: 455cf268dbaf227bdbd5e9fbf96525452bcfe44f authored by Junio C Hamano on 28 March 2012, 17:51:00 UTC
Git 1.7.10-rc3
Tip revision: 455cf26
Makefile
PO_TEMPLATE = git-gui-glossary.pot

ALL_POFILES = $(wildcard *.po)

$(PO_TEMPLATE): $(subst .pot,.txt,$(PO_TEMPLATE))
	./txt-to-pot.sh $< > $@

update-po:: git-gui-glossary.pot
	$(foreach p, $(ALL_POFILES), echo Updating $p ; msgmerge -U $p $(PO_TEMPLATE) ; )
back to top