Simplify update-translated-strings.sh

This commit is contained in:
JosJuice 2017-08-01 14:19:46 +02:00
parent 6425fa28ab
commit cd0abb1445
1 changed files with 1 additions and 5 deletions

View File

@ -6,8 +6,4 @@
# files might get modified the next time you try to build using cmake.
POTFILE=./Languages/po/dolphin-emu.pot
PO_FILES=$(find ./Languages/po -name '*.po')
for PO in $PO_FILES
do
msgmerge --quiet --update --backup=none -s $PO $POTFILE
done
find ./Languages/po -name '*.po' -exec msgmerge --quiet --update --backup=none -s {} $POTFILE \;