mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Update build with i18n
This commit is contained in:
@@ -6,14 +6,15 @@ cd client
|
||||
|
||||
rm -rf ./dist ./compiled
|
||||
|
||||
defaultLanguage="en-US"
|
||||
defaultLanguage="en_US"
|
||||
npm run ng build -- --output-path "dist/$defaultLanguage/" --deploy-url "/client/$defaultLanguage/" --prod --stats-json
|
||||
mv "./dist/$defaultLanguage/assets" "./dist"
|
||||
|
||||
languages="fr"
|
||||
# Supported languages
|
||||
languages="fr_FR"
|
||||
|
||||
for lang in "$languages"; do
|
||||
npm run ng build -- --prod --i18n-file "./src/locale/target/messages_$lang.xml" --i18n-format xlf --i18n-locale "$lang" \
|
||||
npm run ng build -- --prod --i18n-file "./src/locale/target/angular_$lang.xml" --i18n-format xlf --i18n-locale "$lang" \
|
||||
--output-path "dist/$lang/" --deploy-url "/client/$lang/"
|
||||
|
||||
# Do no duplicate assets
|
||||
@@ -22,3 +23,5 @@ done
|
||||
|
||||
NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js --mode production
|
||||
|
||||
# Copy runtime locales
|
||||
cp -r "./src/locale/target" "./dist/locale"
|
||||
Reference in New Issue
Block a user