From c5230ea2ff8688c477e3754b50d4621179cd115a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 15 Nov 2013 23:39:44 +0100 Subject: [PATCH] Fix: option --skip on by default --- dev/translation/txpush.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev/translation/txpush.sh b/dev/translation/txpush.sh index 30a40379ce3..4a62a660637 100755 --- a/dev/translation/txpush.sh +++ b/dev/translation/txpush.sh @@ -13,7 +13,7 @@ then echo "This push local files to transifex." echo "Note: If you push a language file (not source), file will be skipped if transifex file is newer." echo " Using -f will overwrite translation but not memory." - echo "Usage: txpush.sh (source|all|xx_XX) [-r dolibarr.file] [-f] [--skip] [--no-interactive]" + echo "Usage: txpush.sh (source|all|xx_XX) [-r dolibarr.file] [-f] [--no-interactive]" exit fi @@ -22,8 +22,8 @@ if [ "x$1" = "xall" ] then for fic in ar_SA bg_BG ca_ES da_DK de_DE el_GR es_ES et_EE fa_IR fi_FI fr_FR he_IL hu_HU is_IS it_IT ja_JP ko_KR nb_NO nl_NL pl_PL pt_PT ro_RO ru_RU ru_UA sl_SI sv_SE tr_TR vi_VN zh_CN zh_TW do - echo "tx push -t -l $fic $2 $3" - tx push -t -l $fic $2 $3 + echo "tx push --skip -t -l $fic $2 $3" + tx push --skip -t -l $fic $2 $3 done else if [ "x$1" = "xsource" ] @@ -31,7 +31,7 @@ then echo "tx push -s $2 $3" tx push -s $2 $3 else - echo "tx push -t -l $1 $2 $3 $4" - tx push -t -l $1 $2 $3 $4 + echo "tx push --skip -t -l $1 $2 $3 $4" + tx push --skip -t -l $1 $2 $3 $4 fi fi