From 402be120bd746fb04673cada5bf793bc76c24cab Mon Sep 17 00:00:00 2001 From: Andreas Hydén Date: Mon, 8 May 2000 14:16:46 +0000 Subject: New update.sh script from Kenneth svn path=/trunk/; revision=2919 --- po/ChangeLog | 4 ++++ po/update.sh | 37 +++++++++++++++++++++++++++++++++---- 2 files changed, 37 insertions(+), 4 deletions(-) diff --git a/po/ChangeLog b/po/ChangeLog index 0a7e3ab915..091f09dcf3 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +2000-05-08 Andreas Hyden + + * New update.sh script from Kenneth. + 2000-05-08 Andreas Hyden * sv.po: Updated Swedish translation. diff --git a/po/update.sh b/po/update.sh index 0f8d517b0d..d99d40e792 100755 --- a/po/update.sh +++ b/po/update.sh @@ -1,8 +1,37 @@ #!/bin/sh -xgettext --default-domain=evolution --directory=.. \ +PACKAGE="evolution" + +if [ "x$1" = "x--help" ]; then + +echo Usage: ./update.sh langcode +echo --help display this help and exit +echo +echo Examples of use: +echo ./update.sh ----- just creates a new pot file from the source +echo ./update.sh da -- created new pot file and updated the da.po file + +elif [ "x$1" = "x" ]; then + +xgettext --default-domain=$PACKAGE --directory=.. \ --add-comments --keyword=_ --keyword=N_ \ --files-from=./POTFILES.in \ -&& test ! -f evolution.po \ - || ( rm -f ./evolution.pot \ - && mv evolution.po ./evolution.pot ) +&& test ! -f $PACKAGE.po \ + || ( rm -f ./$PACKAGE.pot \ +&& mv $PACKAGE.po ./$PACKAGE.pot ); + +else + +xgettext --default-domain=gfloppy --directory=.. \ + --add-comments --keyword=_ --keyword=N_ \ + --files-from=./POTFILES.in \ +&& test ! -f $PACKAGE.po \ + || ( rm -f ./PACKAGE.pot \ +&& mv $PACKAGE.po ./$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 \ +&& rm $1.po.old; + +fi; -- cgit