1
0
Fork 0
peertube/scripts/i18n/generate.sh

15 lines
567 B
Bash
Raw Normal View History

2018-05-31 16:12:15 +00:00
#!/bin/sh
set -eu
cd client
2018-06-06 12:33:21 +00:00
npm run ng -- xi18n --i18n-locale "en-US" --output-path locale/source --out-file angular_en_US.xml
npm run ngx-extractor -- --locale "en-US" -i 'src/**/*.ts' -f xlf -o src/locale/source/angular_en_US.xml
2018-05-31 16:12:15 +00:00
# Zanata does not support inner elements in <source>, so we hack these special elements
# This regex translate the Angular elements to special entities (that we will reconvert on pull)
2018-06-06 12:33:21 +00:00
perl -pi -e 's|<x id=(.+?)/>|&lt;x id=\1/&gt;|g' src/locale/source/angular_en_US.xml
2018-06-06 12:23:40 +00:00
# Add our strings too
cd ../
npm run i18n:create-custom-files