2018-05-31 11:12:15 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
# Zanata does not support inner elements in <source>, so we hack these special elements
|
|
|
|
# This regex translate the converted elements to initial Angular elements
|
2018-06-04 11:12:48 -05:00
|
|
|
|
|
|
|
for i in 1 2 3; do
|
2018-06-06 07:23:40 -05:00
|
|
|
perl -pi -e 's|<x id=(.+?)/>([^"])|<x id=\1/>\2|g' client/src/locale/target/*.xml
|
|
|
|
done
|
|
|
|
|
|
|
|
npm run i18n:xliff2json
|