66357162f8
* Remove i18n polyfill to translate things in components * Reduce bundle sizes * Improve runtime perf * Reduce a lot the time to make a full client build * Reduce client build complexity * We don't need a service to translate things anymore (so we will be able to translate title pages etc) Unfortunately we may loose some translations in the migration process. I'll put a message on weblate to notify translators
18 lines
477 B
Bash
Executable file
18 lines
477 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
npm run build -- --i18n
|
|
|
|
cd client
|
|
./node_modules/.bin/localize-extract -r . -f xliff --locale "en-US" -s 'dist/en-US/*.js' -o src/locale/angular.xlf
|
|
|
|
# Workaround of https://github.com/angular/angular/issues/38437
|
|
sed -i 's/other {{INTERPOLATION}/other {<x id="INTERPOLATION"\/>/g' src/locale/angular.xlf
|
|
|
|
# Merge new translations in other language files
|
|
npm run ng run -- PeerTube:xliffmerge
|
|
|
|
# Add our strings too
|
|
cd ../
|
|
npm run i18n:create-custom-files
|