From e9e7e3877af87e375edd89e480ec0463d92ce632 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 16 Dec 2020 13:37:30 -0300 Subject: Revert "Remove --quiet from po2md" This reverts commit fb63b4765013b51157bc0c192000ed4deab313bc. Default output of po2md is too verbose for what I want. --- scripts/apply-translations.sh | 2 +- scripts/extract-translations.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/apply-translations.sh b/scripts/apply-translations.sh index 69437da..8c9a6f5 100755 --- a/scripts/apply-translations.sh +++ b/scripts/apply-translations.sh @@ -9,6 +9,6 @@ for f in $(git ls-files | grep -E '.(md|slides)$' | grep -v '^vendor/reveal.js$' 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/${FROM%.md}.po" --save "$f" + po2md "$FROM" --pofiles "locale/$l/LC_MESSAGES/${FROM%.md}.po" --quiet --save "$f" fi done diff --git a/scripts/extract-translations.sh b/scripts/extract-translations.sh index 9303f6c..79ace6b 100755 --- a/scripts/extract-translations.sh +++ b/scripts/extract-translations.sh @@ -11,7 +11,7 @@ for f in $(git ls-files | grep -E '.(md|slides)$' | grep -v '^vendor/reveal.js$' for l in "${TRANSLATIONS[@]}"; do OUT="locale/$l/LC_MESSAGES/${f%.md}.po" mkdir -p "$(dirname "$OUT")" - md2po "$f" --include-codeblocks --save --po-filepath "$OUT" + md2po "$f" --include-codeblocks --quiet --save --po-filepath "$OUT" done fi done -- cgit v1.2.3