diff options
Diffstat (limited to 'scripts/i18n/pull-hook.sh')
-rwxr-xr-x | scripts/i18n/pull-hook.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/i18n/pull-hook.sh b/scripts/i18n/pull-hook.sh index cb969f83c..bbe4a813e 100755 --- a/scripts/i18n/pull-hook.sh +++ b/scripts/i18n/pull-hook.sh | |||
@@ -4,4 +4,8 @@ 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/* \ No newline at end of file | 7 | #sed -i 's/\<x id=\(.\+\?\)\/\>/<x id=\1\/>/g' client/src/locale/target/* |
8 | |||
9 | for i in 1 2 3; do | ||
10 | perl -pi -e 's|<x id=(.+?)/>([^"])|<x id=\1/>\2|g' client/src/locale/target/* | ||
11 | done \ No newline at end of file | ||