update-translated-strings.sh 462 B

1234567891011
  1. #!/bin/bash
  2. # This script goes through the translated .po files to ensure that they
  3. # match dolphin-emu.pot and are correctly formatted. You must run this
  4. # script before committing changes to the .po files, otherwise the .po
  5. # files might get modified the next time you try to build using cmake.
  6. cd "$(dirname "$0")/.."
  7. POTFILE=./Languages/po/dolphin-emu.pot
  8. find ./Languages/po -name '*.po' -exec msgmerge --quiet --update -N --backup=none -s {} $POTFILE \;