diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/extract-translations.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/extract-translations.sh b/scripts/extract-translations.sh index e6d2071..b0f70ed 100755 --- a/scripts/extract-translations.sh +++ b/scripts/extract-translations.sh @@ -11,7 +11,7 @@ for f in $(find . -type f -name '*.md' | grep -v '^./vendor' | grep -v '^./_site for l in "${TRANSLATIONS[@]}"; do OUT="locale/$l/LC_MESSAGES/${f%.md}.po" mkdir -p "$(dirname "$OUT")" - md2po "$f" --quiet --save --po-filepath "$OUT" + md2po "$f" --include-codeblocks --quiet --save --po-filepath "$OUT" done fi done |