From 5a208b004ad147091586f2d3eafaca07eaa021c4 Mon Sep 17 00:00:00 2001 From: ICabaleiro Date: Thu, 13 Feb 2020 12:59:20 +0000 Subject: Extend build commands --- scripts/build/client.sh | 46 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) (limited to 'scripts/build') diff --git a/scripts/build/client.sh b/scripts/build/client.sh index 912401faf..e7475f56c 100755 --- a/scripts/build/client.sh +++ b/scripts/build/client.sh @@ -39,8 +39,52 @@ post_build_hook # Don't build other languages if --light arg is provided if [ -z ${1+x} ] || [ "$1" != "--light" ]; then - if [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then + if [ ! -z ${1+x} ] && [ "$1" == "--light-hu" ]; then + languages=(["hu"]="hu-HU") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-th" ]; then + languages=(["th"]="th-TH") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-fi" ]; then + languages=(["fi"]="fi-FI") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-nl" ]; then + languages=(["nl"]="nl-NL") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-gd" ]; then + languages=(["gd"]="gd") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-el" ]; then + languages=(["el"]="el-GR") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-es" ]; then + languages=(["es"]="es-ES") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-oc" ]; then + languages=(["oc"]="oc") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt" ]; then + languages=(["pt"]="pt-BR") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt-PT" ]; then + languages=(["pt-PT"]="pt-PT") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-sv" ]; then + languages=(["sv"]="sv-SE") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-pl" ]; then + languages=(["pl"]="pl-PL") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-ru" ]; then + languages=(["ru"]="ru-RU") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hans" ]; then + languages=(["zh-Hans"]="zh-Hans-CN") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hant" ]; then + languages=(["zh-Hant"]="zh-Hant-TW") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then languages=(["fr"]="fr-FR") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-ja" ]; then + languages=(["ja"]="ja-JP") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-eu" ]; then + languages=(["eu"]="eu-ES") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-ca" ]; then + languages=(["ca"]="ca-ES") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-cs" ]; then + languages=(["cs"]="cs-CZ") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-eo" ]; then + languages=(["eo"]="eo") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-de" ]; then + languages=(["de"]="de-DE") + elif [ ! -z ${1+x} ] && [ "$1" == "--light-it" ]; then + languages=(["it"]="it-IT") else # Supported languages languages=( -- cgit v1.2.3