diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-06 14:33:21 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-06 16:48:41 +0200 |
commit | f07d6385b4b46c3254898292a8a53ed415b8d49b (patch) | |
tree | dba932058694ede3166ba812d1cbea170344e330 /scripts | |
parent | e945b184a0f29b47c33bbd05578f3493ca9c8e6c (diff) | |
download | PeerTube-f07d6385b4b46c3254898292a8a53ed415b8d49b.tar.gz PeerTube-f07d6385b4b46c3254898292a8a53ed415b8d49b.tar.zst PeerTube-f07d6385b4b46c3254898292a8a53ed415b8d49b.zip |
Rename messages locale to angular
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/i18n/create-custom-files.ts | 23 | ||||
-rwxr-xr-x | scripts/i18n/generate.sh | 7 | ||||
-rwxr-xr-x | scripts/i18n/pull-hook.sh | 1 |
3 files changed, 17 insertions, 14 deletions
diff --git a/scripts/i18n/create-custom-files.ts b/scripts/i18n/create-custom-files.ts index 3895b3b9d..d8a87f291 100755 --- a/scripts/i18n/create-custom-files.ts +++ b/scripts/i18n/create-custom-files.ts | |||
@@ -30,20 +30,25 @@ for (const sourceObject of [ videojs, playerKeys ]) { | |||
30 | Object.keys(sourceObject).forEach(k => obj.resources.namespace1[ k ] = { source: sourceObject[ k ] }) | 30 | Object.keys(sourceObject).forEach(k => obj.resources.namespace1[ k ] = { source: sourceObject[ k ] }) |
31 | } | 31 | } |
32 | 32 | ||
33 | jsToXliff12(obj, (err, res) => { | 33 | saveToXliffFile(playerTarget, obj, err => { |
34 | if (err) { | 34 | if (err) { |
35 | console.error(err) | 35 | console.error(err) |
36 | process.exit(-1) | 36 | process.exit(-1) |
37 | } | 37 | } |
38 | 38 | ||
39 | writeFile(playerTarget, res, err => { | 39 | process.exit(0) |
40 | if (err) { | ||
41 | console.error(err) | ||
42 | process.exit(-1) | ||
43 | } | ||
44 | |||
45 | process.exit(0) | ||
46 | }) | ||
47 | }) | 40 | }) |
48 | 41 | ||
49 | // Then, the server strings | 42 | // Then, the server strings |
43 | |||
44 | function saveToXliffFile (targetPath: string, obj: any, cb: Function) { | ||
45 | jsToXliff12(obj, (err, res) => { | ||
46 | if (err) return cb(err) | ||
47 | |||
48 | writeFile(playerTarget, res, err => { | ||
49 | if (err) return cb(err) | ||
50 | |||
51 | return cb(null) | ||
52 | }) | ||
53 | }) | ||
54 | } | ||
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 ../ |
diff --git a/scripts/i18n/pull-hook.sh b/scripts/i18n/pull-hook.sh index dec426b88..3d57040cc 100755 --- a/scripts/i18n/pull-hook.sh +++ b/scripts/i18n/pull-hook.sh | |||
@@ -4,7 +4,6 @@ set -eu | |||
4 | 4 | ||
5 | # Zanata does not support inner elements in <source>, so we hack these special elements | 5 | # Zanata does not support inner elements in <source>, so we hack these special elements |
6 | # This regex translate the converted elements to initial Angular elements | 6 | # This regex translate the converted elements to initial Angular elements |
7 | #sed -i 's/\<x id=\(.\+\?\)\/\>/<x id=\1\/>/g' client/src/locale/target/* | ||
8 | 7 | ||
9 | for i in 1 2 3; do | 8 | for i in 1 2 3; do |
10 | perl -pi -e 's|<x id=(.+?)/>([^"])|<x id=\1/>\2|g' client/src/locale/target/*.xml | 9 | perl -pi -e 's|<x id=(.+?)/>([^"])|<x id=\1/>\2|g' client/src/locale/target/*.xml |