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
parent d92f7f194c
commit 12482c8c3b

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 \