From bfdfaeb49cc5e0df7bee347a41293319a16be0bd Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Sat, 26 Aug 2000 12:52:38 +0000 Subject: [PATCH] shut up CVS --Sven --- app/.cvsignore | 1 + libgimp/.cvsignore | 1 + modules/.cvsignore | 1 + plug-ins/.cvsignore | 1 + po-script-fu/ChangeLog | 4 ++++ po-script-fu/update.sh | 7 ++++--- 6 files changed, 12 insertions(+), 3 deletions(-) diff --git a/app/.cvsignore b/app/.cvsignore index 91433ecdc7..cfb1a4aa4e 100644 --- a/app/.cvsignore +++ b/app/.cvsignore @@ -1,5 +1,6 @@ Makefile Makefile.in +makefile.mingw .deps .libs gimp diff --git a/libgimp/.cvsignore b/libgimp/.cvsignore index afbce7fb59..02f63ca32d 100644 --- a/libgimp/.cvsignore +++ b/libgimp/.cvsignore @@ -1,5 +1,6 @@ Makefile Makefile.in +makefile.mingw *.lo _libs .libs diff --git a/modules/.cvsignore b/modules/.cvsignore index ec8139d3a2..62af3f6308 100644 --- a/modules/.cvsignore +++ b/modules/.cvsignore @@ -1,5 +1,6 @@ Makefile.in Makefile +makefile.mingw .deps *.lo _libs diff --git a/plug-ins/.cvsignore b/plug-ins/.cvsignore index f592f00b7f..5487acd646 100644 --- a/plug-ins/.cvsignore +++ b/plug-ins/.cvsignore @@ -1,3 +1,4 @@ Makefile.in Makefile +makefile.mingw build diff --git a/po-script-fu/ChangeLog b/po-script-fu/ChangeLog index 2c8e57f88b..f483af5a93 100644 --- a/po-script-fu/ChangeLog +++ b/po-script-fu/ChangeLog @@ -1,3 +1,7 @@ +2000-08-26 Sven Neumann + + * update.sh: subtle changes + Fri Aug 25 11:15:08 CEST 2000 Stanislav Brabec * cs.po: Updated translation. diff --git a/po-script-fu/update.sh b/po-script-fu/update.sh index 417b58d9dc..56a0a0881f 100755 --- a/po-script-fu/update.sh +++ b/po-script-fu/update.sh @@ -22,13 +22,15 @@ xgettext --default-domain=$PACKAGE --directory=.. \ ../plug-ins/script-fu/scripts/*.scm \ ../plug-ins/gap/sel-to-anim-img.scm \ ../plug-ins/webbrowser/web-browser.scm \ - >> gimp-script-fu.po \ + >> $PACKAGE..po \ && test ! -f $PACKAGE.po \ || ( rm -f ./$PACKAGE.pot \ && mv $PACKAGE.po ./$PACKAGE.pot ); else +echo "Building the $PACKAGE.pot ..." + xgettext --default-domain=$PACKAGE --directory=.. \ --add-comments --keyword=_ --keyword=N_ \ --files-from=./POTFILES.in \ @@ -36,12 +38,11 @@ xgettext --default-domain=$PACKAGE --directory=.. \ ../plug-ins/script-fu/scripts/*.scm \ ../plug-ins/gap/sel-to-anim-img.scm \ ../plug-ins/webbrowser/web-browser.scm \ - >> gimp-script-fu.po \ + >> $PACKAGE.po \ && test ! -f $PACKAGE.po \ || ( rm -f ./$PACKAGE.pot \ && mv $PACKAGE.po ./$PACKAGE.pot ); -echo "Building the $PACKAGE.pot ..." echo "Now merging $1.po with $PACKAGE.pot, and creating an updated $1.po ..." mv $1.po $1.po.old && msgmerge $1.po.old $PACKAGE.pot -o $1.po \