aboutsummaryrefslogtreecommitdiff
path: root/scripts/apply-translations.sh
blob: e1b92dbc3a6210681632e5400fc54c088ed9b284 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -eu

for f in $(git ls-files | grep -E '.(md|slides)$' | grep -v '^vendor/reveal.js$'); do
  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/${FROM%.md}.po" --quiet --save "$f"
  fi
done