forked from Wavyzz/dolibarr
57 lines
1.6 KiB
Bash
Executable File
57 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
#------------------------------------------------------
|
|
# Script to push language files to Transifex
|
|
#
|
|
# Laurent Destailleur (eldy) - eldy@users.sourceforge.net
|
|
#------------------------------------------------------
|
|
# Usage: txpush.sh (source|xx_XX) [-r dolibarr.file] [-f]
|
|
#------------------------------------------------------
|
|
|
|
export project='dolibarr'
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
cd $DIR/../..
|
|
|
|
# Syntax
|
|
if [ "x$1" = "x" ]
|
|
then
|
|
echo "This push local files to transifex for project $project."
|
|
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: ./dev/translation/txpush.sh (source|xx_XX|all) [-r $project.file] [-f] [--no-interactive]"
|
|
exit
|
|
fi
|
|
|
|
if [ ! -d ".tx" ]
|
|
then
|
|
echo "Script must be ran from root directory of project with command ./dev/translation/txpush.sh"
|
|
exit
|
|
fi
|
|
|
|
if [ "x$1" = "xsource" ]
|
|
then
|
|
echo "tx push -s $2 $3"
|
|
tx push -s $2 $3
|
|
else
|
|
if [ "x$1" = "xall" ]
|
|
then
|
|
for dir in `find htdocs/langs/* -type d`
|
|
do
|
|
shortdir=`basename $dir`
|
|
file=$3
|
|
echo $file
|
|
export basefile=`basename $file | sed -s s/\.lang//g`
|
|
echo "tx push --skip -t -l $shortdir $2 $3 $4"
|
|
tx push --skip -t -l $shortdir $2 $3 $4
|
|
done
|
|
else
|
|
for file in `find htdocs/langs/$1/*.lang -type f`
|
|
do
|
|
echo $file
|
|
export basefile=`basename $file | sed -s s/\.lang//g`
|
|
echo "tx push --skip -r $project.$basefile -t -l $1 $2 $3 $4"
|
|
tx push --skip -r $project.$basefile -t -l $1 $2 $3 $4
|
|
done
|
|
fi
|
|
fi
|