mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-13 03:29:11 +00:00
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:
parent
d92f7f194c
commit
12482c8c3b
1 changed files with 1 additions and 1 deletions
|
@ -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 \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue