gimp/po/update.sh
Kjartan Maraas c2289c36fb 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.
2000-01-03 20:22:55 +00:00

9 lines
215 B
Bash
Executable file

#!/bin/sh
xgettext --default-domain=gimp --directory=.. \
--add-comments --keyword=_ --keyword=N_ \
--files-from=./POTFILES.in \
&& test ! -f gimp.po \
|| ( rm -f ./gimp.pot \
&& mv gimp.po ./gimp.pot )