Translation: Ensure files are treated in the same order

This also tells `sort` to ignore the case, and to only consider using alphanumeric characters, to ensure parity across different filesystems.
This commit is contained in:
Joshua Vandaële 2025-07-16 23:50:35 +02:00
commit 12482c8c3b
No known key found for this signature in database
GPG key ID: 5E8F4E7EDBD390EA

View file

@ -7,7 +7,7 @@ cd "$(dirname "$0")/.."
# Scan the source code for strings and put them in dolphin-emu.pot
SRCDIR=Source
find $SRCDIR -name '*.cpp' -o -name '*.h' -o -name '*.c' | \
find $SRCDIR -name '*.cpp' -o -name '*.h' -o -name '*.c' | sort -fd | \
xgettext -s -p ./Languages/po -o dolphin-emu.pot --package-name="Dolphin Emulator" \
--keyword=_ \
--keyword=AskYesNoFmtT \