2017-07-01 15:39:19 +00:00
|
|
|
#!/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 17:09:12 +00:00
|
|
|
cd "$(dirname "$0")/.."
|
2017-07-01 15:39:19 +00:00
|
|
|
POTFILE=./Languages/po/dolphin-emu.pot
|
2019-04-14 13:19:29 +00:00
|
|
|
find ./Languages/po -name '*.po' -exec msgmerge --quiet --update -N --backup=none -s {} $POTFILE \;
|