Bump version to 0.4
[panucci.git] / data / po / Makefile
blobae657cb65d3c07191e80080fcae25d7d6cbb9895
2 # gPodder - A media aggregator and podcast client
3 # Copyright (c) 2005-2009 Thomas Perl and the gPodder Team
5 # gPodder is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # gPodder is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 update:
20 for langfile in *.po; do \
21 echo 'Compiling translation:' $${langfile}; \
22 mo_dir="../locale/`basename $${langfile} .po`/LC_MESSAGES/"; \
23 mkdir -p $${mo_dir}; \
24 msgfmt $${langfile} -o $${mo_dir}/panucci.mo; \
25 done
27 generators:
28 for langfile in *.po; do \
29 echo -n $${langfile}; \
30 msgmerge -U $${langfile} ../messages.pot; \
31 done
33 clean:
34 rm -rf ../locale *~ *.mo
36 statistics:
37 @for file in *.po; do \
38 echo -n "$$file (`cat $$file | grep Revision-Date | cut -d' ' -f2`): "; \
39 msgfmt --statistics $$file 2>&1; \
40 done
43 .PHONY: update generators clean statistics