diff options
author | Chocobozzz <me@florianbigard.com> | 2019-11-13 10:05:27 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-11-13 10:05:27 +0100 |
commit | a42294c5edbdea3075c8defc03ba2cb73e0d86fc (patch) | |
tree | aca95591d1fb7ed89dd5f05f81406b4a4f282bac /scripts/i18n/generate.sh | |
parent | f0c0c0abd88d0177f8be769f12d5affcacd934e8 (diff) | |
parent | 2ef1d2bb74f333b05bbbbd27282605ee5654061e (diff) | |
download | PeerTube-a42294c5edbdea3075c8defc03ba2cb73e0d86fc.tar.gz PeerTube-a42294c5edbdea3075c8defc03ba2cb73e0d86fc.tar.zst PeerTube-a42294c5edbdea3075c8defc03ba2cb73e0d86fc.zip |
Merge branch 'weblate' into develop
Diffstat (limited to 'scripts/i18n/generate.sh')
-rwxr-xr-x | scripts/i18n/generate.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/scripts/i18n/generate.sh b/scripts/i18n/generate.sh index 3f3e3d8e5..f9c2f0613 100755 --- a/scripts/i18n/generate.sh +++ b/scripts/i18n/generate.sh | |||
@@ -3,12 +3,11 @@ | |||
3 | set -eu | 3 | set -eu |
4 | 4 | ||
5 | cd client | 5 | cd client |
6 | npm run ng -- xi18n --i18n-locale "en-US" --output-path src/locale/source --out-file angular_en_US.xml | 6 | npm run ng -- xi18n --i18n-locale "en-US" --output-path src/locale --out-file angular.xlf |
7 | npm run ngx-extractor -- --locale "en-US" -i 'src/**/*.ts' -f xlf -o src/locale/source/angular_en_US.xml | 7 | npm run ngx-extractor -- --locale "en-US" -i 'src/**/*.ts' -f xlf -o src/locale/angular.xlf |
8 | 8 | ||
9 | # Zanata does not support inner elements in <source>, so we hack these special elements | 9 | # Merge new translations in other language files |
10 | # This regex translate the Angular elements to special entities (that we will reconvert on pull) | 10 | npm run ng run -- PeerTube:xliffmerge |
11 | perl -pi -e 's|<x id=(.+?)/>|<x id=\1/>|g' src/locale/source/angular_en_US.xml | ||
12 | 11 | ||
13 | # Add our strings too | 12 | # Add our strings too |
14 | cd ../ | 13 | cd ../ |