mc/po/Rules-pot-defaults
Yury V. Zaytsev f31d1c3207 Ticket #3479: Fix mc.pot comment tripping up Transifex and unportable inplace sed
Transifex doesn't like it when there is no space after `#` and complains
about autogenerated `/# "Plural-Forms ...` string; fix it and remove
unportable inplace sed invocation.

Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
2015-06-07 20:08:43 +02:00

14 lines
629 B
Plaintext

update-po: Makefile
$(MAKE) $(DOMAIN).pot-update && \
sed \
-e '/#, fuzzy/d' \
-e 's/Project-Id-Version: PACKAGE VERSION/Project-Id-Version: $(PACKAGE) $(VERSION)/' \
-e 's/^"Plural-Forms: nplurals=INTEGER;/# "Plural-Forms: nplurals=INTEGER;/' \
-e 's@Content-Type: text/plain; charset=CHARSET@Content-Type: text/plain; charset=utf-8@' \
< $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
mv -f $(DOMAIN).1po $(srcdir)/$(DOMAIN).pot
test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES)
$(MAKE) update-gmo && \
for i in $(srcdir)/*.po; do sed '/^#\:/d' < $$i > $$i.clean && mv -f $$i.clean $$i; done