forked from Wavyzz/dolibarr
39 lines
1.2 KiB
Bash
Executable File
39 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
#------------------------------------------------------
|
|
# Script to pull language files to Transifex
|
|
#
|
|
# Laurent Destailleur - eldy@users.sourceforge.net
|
|
#------------------------------------------------------
|
|
# Usage: txpull.sh (all|xx_XX) [-r dolibarr.file] [-f]
|
|
#------------------------------------------------------
|
|
|
|
# Syntax
|
|
if [ "x$1" = "x" ]
|
|
then
|
|
echo "This pull remote transifex files to local dir."
|
|
echo "Note: If you pull a language file (not source), file will be skipped if local file is newer."
|
|
echo " Using -f will overwrite local file (does not work with 'all')."
|
|
echo "Usage: ./dev/translation/txpull.sh (all|xx_XX) [-r dolibarr.file] [-f]"
|
|
exit
|
|
fi
|
|
|
|
if [ ! -d ".tx" ]
|
|
then
|
|
echo "Script must be ran from root directory of project with command ./dev/translation/txpull.sh"
|
|
exit
|
|
fi
|
|
|
|
|
|
if [ "x$1" = "xall" ]
|
|
then
|
|
for fic in ar_SA bg_BG bs_BA ca_ES cs_CZ da_DK de_DE el_GR es_ES et_EE eu_ES fa_IR fi_FI fr_FR he_IL hr_HR hu_HU id_ID is_IS it_IT ja_JP ko_KR lt_LT lv_LV mk_MK nb_NO nl_NL pl_PL pt_PT ro_RO ru_RU ru_UA sk_SK sl_SI sq_AL sv_SE th_TH tr_TR uk_UA uz_UZ vi_VN zh_CN zh_TW
|
|
do
|
|
echo "tx pull -l $fic $2 $3"
|
|
tx pull -l $fic $2 $3
|
|
done
|
|
else
|
|
echo "tx pull -l $1 $2 $3 $4"
|
|
tx pull -l $1 $2 $3 $4
|
|
fi
|
|
|