A little script that lets people update the .pot file without makefiles

2000-01-03  Kjartan Maraas  <kmaraas@online.no>

	* update.sh: A little script that lets people
	update the .pot file without makefiles etc.
This commit is contained in:
Kjartan Maraas 2000-01-03 19:57:50 +00:00 committed by Kjartan Maraas
parent 2a23dc40a6
commit b3a408f9da
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2000-01-03 Kjartan Maraas <kmaraas@online.no>
* update.sh: A little script that lets people
update the .pot file without makefiles etc.
1999-12-29 Zbigniew Chyla <chyla@alice.ci.pwr.wroc.pl>
* pl.po: Updated translation.

8
po/update.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/sh
xgettext --default-domain=control-center --directory=.. \
--add-comments --keyword=_ --keyword=N_ \
--files-from=./POTFILES.in \
&& test ! -f control-center.po \
|| ( rm -f ./control-center.pot \
&& mv control-center.po ./control-center.pot )