phpldapadmin/tools/po/Makefile

61 lines
2.3 KiB
Makefile
Raw Normal View History

2009-06-30 12:05:31 +00:00
#!/bin/bash
#
# Makefile Utility to manipulate PO and POT files
# Copyright (c) 2009 Alessandro De Zorzi - <lota@nonlontano.it>
#
# This code is part of phpLDAPadmin
# http://phpldapadmin.wiki.sourceforge.net
# Released under the same licence of phpldapadmin
#
# Current target list:
#
# all display target
# all-mo compile .mo files from .po translation available
# pot create a update main POT file
2009-07-12 13:28:46 +00:00
# all-merge merge last POT with each current translations (re-create POT)
# all-merge-pot merge last POT with each current translations
2009-06-30 12:05:31 +00:00
LOCALEDIR = ../../locale
TEMPLATEFILES=`find ../../templates -iname *xml -exec echo -m {} \;`
EXPORTFILE = $(shell echo $${EXPORTFILE:-/tmp/launchpad-export.tgz})
all:
2009-07-12 13:28:46 +00:00
@echo Please, specify a target [pot, xml-pot, all-mo, all-merge, all-merge-pot, launchpad-export]
2009-06-30 12:05:31 +00:00
all-mo:
@for i in `ls -1 $(LOCALEDIR)` ; \
do \
if [ -f $(LOCALEDIR)/$$i/LC_MESSAGES/messages.po ]; then \
echo Processing: $$i ; \
msgfmt -v -c --statistics $(LOCALEDIR)/$$i/LC_MESSAGES/messages.po -o $(LOCALEDIR)/$$i/LC_MESSAGES/messages.mo; \
fi \
done
pot:
@po4a-gettextize -o tags="<title> <description> <display> <hint>" -o tagsonly=1 -f xml $(TEMPLATEFILES) -p messages.pot
2009-06-30 12:05:31 +00:00
@find ../../ -name *.php -exec xgettext --keyword=_ -L PHP -j --omit-header -o messages.pot -s {} \;
@find ../../ -name *.inc -exec xgettext --keyword=_ -L PHP -j --omit-header -o messages.pot -s {} \;
@echo messages.pot created, you might like to change the header with contents of messages.header
2009-06-30 12:05:31 +00:00
all-merge: pot
2009-07-12 13:28:46 +00:00
all-merge-pot:
2009-06-30 12:05:31 +00:00
@for i in `ls -1 $(LOCALEDIR)` ; \
do \
if [ -f $(LOCALEDIR)/$$i/LC_MESSAGES/messages.po ]; then \
echo Processing: $$i ; \
msgmerge -v $(LOCALEDIR)/$$i/LC_MESSAGES/messages.po messages.pot -o $$i.po; \
2009-07-12 13:28:46 +00:00
mv $$i.po $(LOCALEDIR)/$$i/LC_MESSAGES/messages.po; \
2009-06-30 12:05:31 +00:00
fi \
done
launchpad-extract:
@[ ! -r $(EXPORTFILE) ] && echo "No export file [$(EXPORTFILE)] found?" && exit 1 || true
@cd $(LOCALEDIR); tar xzf $(EXPORTFILE)
2009-07-21 13:21:25 +00:00
@rm -f $(LOCALEDIR)/phpldapadmin/phpldapadmin-uk.po
2009-06-30 12:05:31 +00:00
@rm -f $(LOCALEDIR)/phpldapadmin/phpldapadmin.pot
2009-07-21 13:21:25 +00:00
@find $(LOCALEDIR) -name phpldapadmin-\*.po | while read i; do newi=$$(echo $$i| sed -r 's/phpldapadmin-(.*).po/..\/\1\*\/LC_MESSAGES\/messages.po/'); mv $$i $$newi; done
rmdir $(LOCALEDIR)/phpldapadmin
2009-06-30 12:05:31 +00:00
launchpad-export: launchpad-extract all-mo