dolphin/Languages/update-translated-strings.sh

11 lines
459 B
Bash
Raw Normal View History

#!/bin/bash
# This script goes through the translated .po files to ensure that they
# match dolphin-emu.pot and are correctly formatted. You must run this
# script before committing changes to the .po files, otherwise the .po
# files might get modified the next time you try to build using cmake.
2017-08-04 19:09:12 +02:00
cd "$(dirname "$0")/.."
POTFILE=./Languages/po/dolphin-emu.pot
2017-08-01 14:19:46 +02:00
find ./Languages/po -name '*.po' -exec msgmerge --quiet --update --backup=none -s {} $POTFILE \;