diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-04-07 11:45:07 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-04-10 16:27:45 +0200 |
commit | e24f82f476bc3c445fd0722b5aa55cc18095cab6 (patch) | |
tree | 4e3cba32de6ad1752bf4cee76153829e8314422d /po/Makefile | |
parent | b10c7fb86b366b74422e44a143d4a8c8ad2eda88 (diff) | |
download | aur-e24f82f476bc3c445fd0722b5aa55cc18095cab6.tar.gz aur-e24f82f476bc3c445fd0722b5aa55cc18095cab6.tar.xz |
Add "update-pot" target to Makefile.
Can be used to rebuild the message catalog from our source tree.
"po/POTFILES" contains a list of source files to be scanned for
translation strings.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'po/Makefile')
-rw-r--r-- | po/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/po/Makefile b/po/Makefile index 365c5fd2..18c63578 100644 --- a/po/Makefile +++ b/po/Makefile @@ -26,11 +26,22 @@ POFILES = \ MOFILES = ${POFILES:.po=.mo} LOCALES = ${MOFILES:.mo=} +MSGID_BUGS_ADDRESS = https://bugs.archlinux.org/index.php?project=2 + all: ${MOFILES} %.mo: %.po msgfmt -o $@ $< +update-pot: + pkgname=AUR; \ + pkgver=`sed -n 's/.*"AUR_VERSION", "\(.*\)".*/\1/p' ../web/lib/version.inc`; \ + xgettext --default-domain=aur -L php --keyword=__ --no-location \ + --add-comments=TRANSLATORS: --package-name="$$pkgname" \ + --package-version="$$pkgver" \ + --msgid-bugs-address='${MSGID_BUGS_ADDRESS}' \ + --directory ../web --files-from POTFILES -o aur.pot + clean: rm *.mo @@ -41,4 +52,4 @@ install: all uninstall: for l in ${LOCALES}; do rm -rf ${DESTDIR}${PREFIX}/$$l/LC_MESSAGES/; done -.PHONY: all clean install uninstall +.PHONY: all update-pot clean install uninstall |