diff options
Diffstat (limited to 'scripts/i18n/generate.sh')
-rwxr-xr-x | scripts/i18n/generate.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/i18n/generate.sh b/scripts/i18n/generate.sh index 0a5b6dee1..f93d6cc03 100755 --- a/scripts/i18n/generate.sh +++ b/scripts/i18n/generate.sh | |||
@@ -3,13 +3,12 @@ | |||
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 locale/source --out-file messages_en_US.xml | 6 | npm run ng -- xi18n --i18n-locale "en-US" --output-path locale/source --out-file angular_en_US.xml |
7 | npm run ngx-extractor -- --locale "en-US" -i 'src/**/*.ts' -f xlf -o src/locale/source/messages_en_US.xml | 7 | npm run ngx-extractor -- --locale "en-US" -i 'src/**/*.ts' -f xlf -o src/locale/source/angular_en_US.xml |
8 | 8 | ||
9 | # Zanata does not support inner elements in <source>, so we hack these special elements | 9 | # Zanata does not support inner elements in <source>, so we hack these special elements |
10 | # This regex translate the Angular elements to special entities (that we will reconvert on pull) | 10 | # This regex translate the Angular elements to special entities (that we will reconvert on pull) |
11 | #sed -i 's/<x id=\(.\+\?\)\/>/\<x id=\1\/\>/g' src/locale/source/messages_en_US.xml | 11 | perl -pi -e 's|<x id=(.+?)/>|<x id=\1/>|g' src/locale/source/angular_en_US.xml |
12 | perl -pi -e 's|<x id=(.+?)/>|<x id=\1/>|g' src/locale/source/messages_en_US.xml | ||
13 | 12 | ||
14 | # Add our strings too | 13 | # Add our strings too |
15 | cd ../ | 14 | cd ../ |