2018-05-31 12:12:15 -04: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 12:12:48 -04:00
|
|
|
|
|
|
|
for i in 1 2 3; do
|
2018-06-06 08:23:40 -04:00
|
|
|
perl -pi -e 's|<x id=(.+?)/>([^"])|<x id=\1/>\2|g' client/src/locale/target/*.xml
|
|
|
|
done
|
|
|
|
|
2018-06-19 08:02:57 -04:00
|
|
|
npm run i18n:xliff2json
|
|
|
|
|