update-translated-strings.sh: Disable fuzzy matching

This doesn't really matter in practice, because I always sync with
Transifex before running updated-translated-strings.sh, and then
there can't be any fuzzy matches. But we might as well disable fuzzy
matching explicitly, becase the results can be quite odd.
This should make the script a bit faster too.
This commit is contained in:
JosJuice 2019-04-14 15:19:29 +02:00
parent 241166a1a5
commit e526b39956
1 changed files with 1 additions and 1 deletions

View File

@ -7,4 +7,4 @@
cd "$(dirname "$0")/.."
POTFILE=./Languages/po/dolphin-emu.pot
find ./Languages/po -name '*.po' -exec msgmerge --quiet --update --backup=none -s {} $POTFILE \;
find ./Languages/po -name '*.po' -exec msgmerge --quiet --update -N --backup=none -s {} $POTFILE \;