mirror of https://github.com/PCSX2/pcsx2.git
15 lines
627 B
Bash
Executable File
15 lines
627 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPTDIR=$(dirname "${BASH_SOURCE[0]}")
|
|
|
|
set -e
|
|
|
|
# While we use custom Qt builds for our releases, the Qt6 package will be good enough
|
|
# for just updating translations. Saves building it for this action alone.
|
|
"$SCRIPTDIR/../../../../tools/retry.sh" sudo apt-get -y install qt6-l10n-tools python3
|
|
|
|
"$SCRIPTDIR/../../../../tools/generate_fullscreen_ui_translation_strings.py"
|
|
"$SCRIPTDIR/../../../../pcsx2-qt/Translations/update_glyph_ranges.py"
|
|
"$SCRIPTDIR/../../../../tools/generate_update_fa_glyph_ranges.py"
|
|
PATH=/usr/lib/qt6/bin:$PATH "$SCRIPTDIR/../../../../pcsx2-qt/Translations/update_base_translation.sh"
|