]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/build/client.sh
Translated using Weblate (Bengali (Bangladesh))
[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")
44 elif [ ! -z ${1+x} ] && [ "$1" == "--light-th" ]; then
45 languages=(["th"]="th-TH")
46 elif [ ! -z ${1+x} ] && [ "$1" == "--light-fi" ]; then
47 languages=(["fi"]="fi-FI")
48 elif [ ! -z ${1+x} ] && [ "$1" == "--light-nl" ]; then
49 languages=(["nl"]="nl-NL")
50 elif [ ! -z ${1+x} ] && [ "$1" == "--light-gd" ]; then
51 languages=(["gd"]="gd")
52 elif [ ! -z ${1+x} ] && [ "$1" == "--light-el" ]; then
53 languages=(["el"]="el-GR")
54 elif [ ! -z ${1+x} ] && [ "$1" == "--light-es" ]; then
55 languages=(["es"]="es-ES")
2a39506c
C
56 elif [ ! -z ${1+x} ] && [ "$1" == "--light-oc" ]; then
57 languages=(["oc"]="oc")
5a208b00
I
58 elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt" ]; then
59 languages=(["pt"]="pt-BR")
60 elif [ ! -z ${1+x} ] && [ "$1" == "--light-pt-PT" ]; then
61 languages=(["pt-PT"]="pt-PT")
62 elif [ ! -z ${1+x} ] && [ "$1" == "--light-sv" ]; then
63 languages=(["sv"]="sv-SE")
64 elif [ ! -z ${1+x} ] && [ "$1" == "--light-pl" ]; then
65 languages=(["pl"]="pl-PL")
66 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ru" ]; then
67 languages=(["ru"]="ru-RU")
68 elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hans" ]; then
69 languages=(["zh-Hans"]="zh-Hans-CN")
70 elif [ ! -z ${1+x} ] && [ "$1" == "--light-zh-Hant" ]; then
71 languages=(["zh-Hant"]="zh-Hant-TW")
72 elif [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then
361dcebc 73 languages=(["fr"]="fr-FR")
5a208b00
I
74 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ja" ]; then
75 languages=(["ja"]="ja-JP")
76 elif [ ! -z ${1+x} ] && [ "$1" == "--light-eu" ]; then
77 languages=(["eu"]="eu-ES")
78 elif [ ! -z ${1+x} ] && [ "$1" == "--light-ca" ]; then
79 languages=(["ca"]="ca-ES")
80 elif [ ! -z ${1+x} ] && [ "$1" == "--light-cs" ]; then
81 languages=(["cs"]="cs-CZ")
82 elif [ ! -z ${1+x} ] && [ "$1" == "--light-eo" ]; then
83 languages=(["eo"]="eo")
84 elif [ ! -z ${1+x} ] && [ "$1" == "--light-de" ]; then
85 languages=(["de"]="de-DE")
86 elif [ ! -z ${1+x} ] && [ "$1" == "--light-it" ]; then
87 languages=(["it"]="it-IT")
3dfa8494
C
88 else
89 # Supported languages
82054691 90 languages=(
361dcebc
C
91 ["hu"]="hu-HU"
92 ["th"]="th-TH"
93 ["fi"]="fi-FI"
94 ["nl"]="nl-NL"
95 ["gd"]="gd"
96 ["el"]="el-GR"
97 ["es"]="es-ES"
2a39506c 98 ["oc"]="oc"
361dcebc
C
99 ["pt"]="pt-BR"
100 ["pt-PT"]="pt-PT"
101 ["sv"]="sv-SE"
102 ["pl"]="pl-PL"
103 ["ru"]="ru-RU"
104 ["zh-Hans"]="zh-Hans-CN"
105 ["zh-Hant"]="zh-Hant-TW"
106 ["fr"]="fr-FR"
107 ["ja"]="ja-JP"
108 ["eu"]="eu-ES"
109 ["ca"]="ca-ES"
110 ["cs"]="cs-CZ"
111 ["eo"]="eo"
112 ["de"]="de-DE"
113 ["it"]="it-IT"
82054691 114 )
3dfa8494 115 fi
e032aec9 116
361dcebc
C
117 for key in "${!languages[@]}"; do
118 lang=${languages[$key]}
119
d73c9888
C
120 # TODO: remove when the project will use runtime translations
121 pre_build_hook "$lang"
122
2779f29a 123 npm run ng build -- --prod --configuration="$lang" --output-path "dist/build"
361dcebc 124
2779f29a
C
125 # If --localize is not used
126 mv "dist/build/$key" "dist/$lang"
127 rmdir "dist/build"
128
129 # If --localize is used
130 # if [ ! "$lang" = "$key" ]; then
131 # mv "dist/$key" "dist/$lang"
132 # fi
e032aec9 133
02ba6130 134 # Do not duplicate assets
e032aec9 135 rm -r "./dist/$lang/assets"
d73c9888
C
136
137 # TODO: remove when the project will use runtime translations
138 post_build_hook
e032aec9
C
139 done
140fi
989e526a 141
03d641a0 142cd ../ && npm run build:embed && cd client/
989e526a 143
96bb360d 144# Copy runtime locales
350131cb 145cp -r "./src/locale" "./dist/locale"