2000-02-28 03:35:39 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
xgettext --default-domain=gimp-script-fu --directory=.. \
|
|
|
|
--add-comments --keyword=_ --keyword=N_ \
|
|
|
|
--files-from=./POTFILES.in \
|
2000-03-24 22:54:59 +08:00
|
|
|
&& ./script-fu-xgettext \
|
|
|
|
../plug-ins/script-fu/scripts/*.scm \
|
|
|
|
../plug-ins/gap/sel-to-anim-img.scm \
|
2000-03-29 05:06:39 +08:00
|
|
|
../plug-ins/webbrowser/web-browser.scm \
|
2000-03-24 22:54:59 +08:00
|
|
|
>> gimp-script-fu.po \
|
2000-02-28 03:35:39 +08:00
|
|
|
&& test ! -f gimp-script-fu.po \
|
|
|
|
|| ( rm -f ./gimp-script-fu.pot \
|
|
|
|
&& mv gimp-script-fu.po ./gimp-script-fu.pot )
|