]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/build/client.sh
Add ar-001 locale
[github/Chocobozzz/PeerTube.git] / scripts / build / client.sh
CommitLineData
10e63b68 1#!/bin/bash
b20b5fed 2
0e4ffb4b
LA
3set -eu
4
361dcebc
C
5declare -A languages
6
d73c9888 7pre_build_hook () {
350131cb
C
8 mkdir "./src/pending_locale" > /dev/null || true
9 mv ./src/locale/angular.*.xlf "./src/pending_locale"
d73c9888
C
10
11 if [ ! -z ${1+x} ]; then
350131cb 12 mv "./src/pending_locale/angular.$1.xlf" "./src/locale"
d73c9888
C
13 fi
14}
15
16post_build_hook () {
350131cb
C
17 mv ./src/pending_locale/* "./src/locale"
18 rmdir "./src/pending_locale/"
d73c9888
C
19}
20
95d51135 21# Previous build failed
350131cb
C
22if [ ! -f "client/src/locale/angular.fr-FR.xlf" ]; then
23 git checkout -- client/src/locale/
24 rm -r client/src/pending_locale
95d51135
C
25fi
26
0e4ffb4b 27cd client
b20b5fed 28
94edfc3b 29rm -rf ./dist ./compiled
d61e8153 30
d73c9888
C
31pre_build_hook
32
350131cb 33defaultLanguage="en-US"
989e526a
C
34npm run ng build -- --output-path "dist/$defaultLanguage/" --deploy-url "/client/$defaultLanguage/" --prod --stats-json
35mv "./dist/$defaultLanguage/assets" "./dist"
65be133b 36mv "./dist/$defaultLanguage/manifest.webmanifest" "./dist/manifest.webmanifest"
989e526a 37
d73c9888
C
38post_build_hook
39
e032aec9
C
40# Don't build other languages if --light arg is provided
41if [ -z ${1+x} ] || [ "$1" != "--light" ]; then
5a208b00
I
42 if [ ! -z ${1+x} ] && [ "$1" == "--light-hu" ]; then
43 languages=(["hu"]="hu-HU")
520745bf
C
44 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ar" ]; then
45 languages=(["ar"]="ar-001")
5a208b00
I
46 elif [ ! -z ${1+x} ] && [ "$1" == "--light-th" ]; then
47 languages=(["th"]="th-TH")
48 elif [ ! -z ${1+x} ] && [ "$1" == "--light-fi" ]; then
49 languages=(["fi"]="fi-FI")
50 elif [ ! -z ${1+x} ] && [ "$1" == "--light-nl" ]; then
51 languages=(["nl"]="nl-NL")
52 elif [ ! -z ${1+x} ] && [ "$1" == "--light-gd" ]; then
53 languages=(["gd"]="gd")
54 elif [ ! -z ${1+x} ] && [ "$1" == "--light-el" ]; then
55 languages=(["el"]="el-GR")
56 elif [ ! -z ${1+x} ] && [ "$1" == "--light-es" ]; then
57 languages=(["es"]="es-ES")
2a39506c
C
58 elif [ ! -z ${1+x} ] && [ "$1" == "--light-oc" ]; then
59 languages=(["oc"]="oc")
5a208b00
I
60 elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt" ]; then
61 languages=(["pt"]="pt-BR")
62 elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt-PT" ]; then
63 languages=(["pt-PT"]="pt-PT")
64 elif [ ! -z ${1+x} ] && [ "$1" == "--light-sv" ]; then
65 languages=(["sv"]="sv-SE")
66 elif [ ! -z ${1+x} ] && [ "$1" == "--light-pl" ]; then
67 languages=(["pl"]="pl-PL")
68 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ru" ]; then
69 languages=(["ru"]="ru-RU")
70 elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hans" ]; then
71 languages=(["zh-Hans"]="zh-Hans-CN")
72 elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hant" ]; then
73 languages=(["zh-Hant"]="zh-Hant-TW")
74 elif [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then
361dcebc 75 languages=(["fr"]="fr-FR")
5a208b00
I
76 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ja" ]; then
77 languages=(["ja"]="ja-JP")
78 elif [ ! -z ${1+x} ] && [ "$1" == "--light-eu" ]; then
79 languages=(["eu"]="eu-ES")
80 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ca" ]; then
81 languages=(["ca"]="ca-ES")
82 elif [ ! -z ${1+x} ] && [ "$1" == "--light-cs" ]; then
83 languages=(["cs"]="cs-CZ")
84 elif [ ! -z ${1+x} ] && [ "$1" == "--light-eo" ]; then
85 languages=(["eo"]="eo")
86 elif [ ! -z ${1+x} ] && [ "$1" == "--light-de" ]; then
87 languages=(["de"]="de-DE")
88 elif [ ! -z ${1+x} ] && [ "$1" == "--light-it" ]; then
89 languages=(["it"]="it-IT")
3dfa8494
C
90 else
91 # Supported languages
82054691 92 languages=(
520745bf 93 ["ar"]="ar-001"
361dcebc
C
94 ["hu"]="hu-HU"
95 ["th"]="th-TH"
96 ["fi"]="fi-FI"
97 ["nl"]="nl-NL"
98 ["gd"]="gd"
99 ["el"]="el-GR"
100 ["es"]="es-ES"
2a39506c 101 ["oc"]="oc"
361dcebc
C
102 ["pt"]="pt-BR"
103 ["pt-PT"]="pt-PT"
104 ["sv"]="sv-SE"
105 ["pl"]="pl-PL"
106 ["ru"]="ru-RU"
107 ["zh-Hans"]="zh-Hans-CN"
108 ["zh-Hant"]="zh-Hant-TW"
109 ["fr"]="fr-FR"
110 ["ja"]="ja-JP"
111 ["eu"]="eu-ES"
112 ["ca"]="ca-ES"
113 ["cs"]="cs-CZ"
114 ["eo"]="eo"
115 ["de"]="de-DE"
116 ["it"]="it-IT"
82054691 117 )
3dfa8494 118 fi
e032aec9 119
361dcebc
C
120 for key in "${!languages[@]}"; do
121 lang=${languages[$key]}
122
d73c9888
C
123 # TODO: remove when the project will use runtime translations
124 pre_build_hook "$lang"
125
2779f29a 126 npm run ng build -- --prod --configuration="$lang" --output-path "dist/build"
361dcebc 127
2779f29a
C
128 # If --localize is not used
129 mv "dist/build/$key" "dist/$lang"
130 rmdir "dist/build"
131
132 # If --localize is used
133 # if [ ! "$lang" = "$key" ]; then
134 # mv "dist/$key" "dist/$lang"
135 # fi
e032aec9 136
02ba6130 137 # Do not duplicate assets
e032aec9 138 rm -r "./dist/$lang/assets"
d73c9888
C
139
140 # TODO: remove when the project will use runtime translations
141 post_build_hook
e032aec9
C
142 done
143fi
989e526a 144
03d641a0 145cd ../ && npm run build:embed && cd client/
989e526a 146
96bb360d 147# Copy runtime locales
350131cb 148cp -r "./src/locale" "./dist/locale"