forked from AuroraMiddleware/gtk
19fd09725a
2000-01-04 Kjartan Maraas <kmaraas@online.no> * update.sh: A little script that lets people update the .pot file without makefiles etc.
9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
xgettext --default-domain=gtk+ --directory=.. \
|
|
--add-comments --keyword=_ --keyword=N_ \
|
|
--files-from=./POTFILES.in \
|
|
&& test ! -f gtk+.po \
|
|
|| ( rm -f ./gtk+.pot \
|
|
&& mv gtk+.po ./gtk+.pot )
|