diff --git a/dev/translation/txpush.sh b/dev/translation/txpush.sh index ba639d5497d..3c4aa8fd2a6 100755 --- a/dev/translation/txpush.sh +++ b/dev/translation/txpush.sh @@ -10,7 +10,7 @@ # Syntax if [ "x$1" = "x" ] then - echo "Usage: txpush.sh (all|xx_XX) [-r dolibarr.file]" + echo "Usage: txpush.sh (source|all|xx_XX) [-r dolibarr.file]" exit fi @@ -22,8 +22,13 @@ then echo "tx push -t -l $fic $2 $3" tx push -t -l $fic $2 $3 done +else +if [ "x$1" = "xsource" ] +then + echo "tx push -s $2 $3" + tx push -s $2 $3 else echo "tx push -t -l $1 $2 $3" tx push -t -l $1 $2 $3 fi - +fi