diff options
Diffstat (limited to '')
-rwxr-xr-x | scripts/sync-translations.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/sync-translations.sh b/scripts/sync-translations.sh index 2567f99..67d3609 100755 --- a/scripts/sync-translations.sh +++ b/scripts/sync-translations.sh @@ -20,7 +20,8 @@ for f in $(find . -type f -name '*.md' | grep -v '^./vendor/' | grep -v '^./_sit l="$(grep '^lang: ..$' "$f" | awk '{print $2}')" if [[ "$l" != 'en' ]]; then ref="$(grep '^ref: ' "$f" | awk '{print $2}')" + # shellcheck disable=2046 FROM=$(find $(find . -name '*.md' -exec grep -l "^ref: $ref$" {} \;) -exec grep -l '^lang: en$' {} \;) - po2md "$FROM" --pofiles "locale/$l/LC_MESSAGES/$ref.po" --quiet --save "$f" + echo po2md "$FROM" --pofiles "locale/$l/LC_MESSAGES/$ref.po" --quiet --save "$f" fi done |