From 49a56c72031802addffcaa8d6c374720d17e4d14 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 24 Aug 2020 09:35:27 +0200 Subject: Use update i18n command instead of generate --- scripts/i18n/generate.sh | 18 ------------------ scripts/i18n/update.sh | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 18 deletions(-) delete mode 100755 scripts/i18n/generate.sh create mode 100755 scripts/i18n/update.sh (limited to 'scripts') 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 @@ -#!/bin/sh - -set -eu - -npm run build -- --i18n - -cd client -./node_modules/.bin/localize-extract -r . -f xliff --locale "en-US" -s 'dist/en-US/*.js' -o src/locale/angular.xlf - -# Workaround of https://github.com/angular/angular/issues/38437 -sed -i 's/other {{INTERPOLATION}/other {/g' src/locale/angular.xlf - -# Merge new translations in other language files -npm run ng run -- PeerTube:xliffmerge - -# Add our strings too -cd ../ -npm run i18n:create-custom-files diff --git a/scripts/i18n/update.sh b/scripts/i18n/update.sh new file mode 100755 index 000000000..916918f84 --- /dev/null +++ b/scripts/i18n/update.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +set -eu + +git fetch weblate && git merge weblate/develop + +npm run build -- --i18n + +cd client +./node_modules/.bin/localize-extract -r . -f xliff --locale "en-US" -s 'dist/en-US/*.js' -o src/locale/angular.xlf + +# Workaround of https://github.com/angular/angular/issues/38437 +sed -i 's/other {{INTERPOLATION}/other {/g' src/locale/angular.xlf + +# Merge new translations in other language files +npm run ng run -- PeerTube:xliffmerge + +# Add our strings too +cd ../ +npm run i18n:create-custom-files -- cgit v1.2.3