diff options
Diffstat (limited to 'scripts/i18n/generate.sh')
-rwxr-xr-x | scripts/i18n/generate.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/i18n/generate.sh b/scripts/i18n/generate.sh deleted file mode 100755 index 0d1cd35c0..000000000 --- a/scripts/i18n/generate.sh +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | npm run build -- --i18n | ||
6 | |||
7 | cd client | ||
8 | ./node_modules/.bin/localize-extract -r . -f xliff --locale "en-US" -s 'dist/en-US/*.js' -o src/locale/angular.xlf | ||
9 | |||
10 | # Workaround of https://github.com/angular/angular/issues/38437 | ||
11 | sed -i 's/other {{INTERPOLATION}/other {<x id="INTERPOLATION"\/>/g' src/locale/angular.xlf | ||
12 | |||
13 | # Merge new translations in other language files | ||
14 | npm run ng run -- PeerTube:xliffmerge | ||
15 | |||
16 | # Add our strings too | ||
17 | cd ../ | ||
18 | npm run i18n:create-custom-files | ||