mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
38 lines
1.2 KiB
Bash
Executable File
38 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
#------------------------------------------------------
|
|
# Script to push language files to Transifex
|
|
#
|
|
# Laurent Destailleur - eldy@users.sourceforge.net
|
|
#------------------------------------------------------
|
|
# Usage: txpush.sh (source|all|xx_XX) [-r dolibarr.file] [-f]
|
|
#------------------------------------------------------
|
|
|
|
# Syntax
|
|
if [ "x$1" = "x" ]
|
|
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] [--no-interactive]"
|
|
exit
|
|
fi
|
|
|
|
|
|
if [ "x$1" = "xall" ]
|
|
then
|
|
for fic in ar_SA bg_BG ca_ES cs_CZ 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 lv_LV nb_NO nl_NL pl_PL pt_PT ro_RO ru_RU ru_UA sk_SK sl_SI sv_SE tr_TR uz_UZ vi_VN zh_CN zh_TW
|
|
do
|
|
echo "tx push --skip -t -l $fic $2 $3"
|
|
tx push --skip -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 --skip -t -l $1 $2 $3 $4"
|
|
tx push --skip -t -l $1 $2 $3 $4
|
|
fi
|
|
fi
|