2000-01-03 Kjartan Maraas <kmaraas@online.no> * update.sh: A little script that lets people update the .pot file without makefiles etc.
8 lines
265 B
Bash
Executable file
8 lines
265 B
Bash
Executable file
#!/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 )
|