mirror of https://github.com/zulip/zulip.git
9 lines
188 B
Plaintext
9 lines
188 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
find ./locale \
|
||
|
-regextype sed \
|
||
|
-regex '^\./locale/.*/\(mobile\|translations\).json$' \
|
||
|
-exec ./tools/i18n/unescape-contents --unescape-html {} \;
|