X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fi18n%2Fgenerate.sh;h=0d1cd35c0ea15d5b13ee339c55cc9d7ff93f4220;hb=8546fe878d5f92161b83517c4bc1ecb7dedf3e9d;hp=0a5b6dee160b8aca04580e9dc3abf9eb40e51f22;hpb=e945b184a0f29b47c33bbd05578f3493ca9c8e6c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/i18n/generate.sh b/scripts/i18n/generate.sh index 0a5b6dee1..0d1cd35c0 100755 --- a/scripts/i18n/generate.sh +++ b/scripts/i18n/generate.sh @@ -2,15 +2,17 @@ set -eu +npm run build -- --i18n + cd client -npm run ng -- xi18n --i18n-locale "en-US" --output-path locale/source --out-file messages_en_US.xml -npm run ngx-extractor -- --locale "en-US" -i 'src/**/*.ts' -f xlf -o src/locale/source/messages_en_US.xml +./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 {/g' src/locale/angular.xlf -# Zanata does not support inner elements in , so we hack these special elements -# This regex translate the Angular elements to special entities (that we will reconvert on pull) -#sed -i 's//\<x id=\1\/\>/g' src/locale/source/messages_en_US.xml -perl -pi -e 's||<x id=\1/>|g' src/locale/source/messages_en_US.xml +# Merge new translations in other language files +npm run ng run -- PeerTube:xliffmerge # Add our strings too cd ../ -npm run i18n:create-custom-files \ No newline at end of file +npm run i18n:create-custom-files