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 20:22:55 +00:00
committed by Kjartan Maraas
parent 6ad10d4df5
commit c2289c36fb
3 changed files with 18 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-28 Kjartan Maraas <kmaraas@online.no>
* no.po: Updated Norwegian translation.

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.
2000-01-02 Tor Lillqvist <tml@iki.fi>
* fi.po: Small update to Finnish translation.

8
po/update.sh Executable file
View File

@ -0,0 +1,8 @@
#!/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 )