13 lines
No EOL
545 B
Bash
13 lines
No EOL
545 B
Bash
#!/bin/bash
|
|
set -e
|
|
translate=${ENABLE_EN_US_TRANSLATION:-false}
|
|
if [ "$translate" = true ]; then
|
|
if command -v "metra" &> /dev/null; then
|
|
echo -e "\033[0;32m✓\033[0m metra is installed"
|
|
else
|
|
echo -e "\033[0;31m✗\033[0m metra is NOT installed"
|
|
exit 127
|
|
fi
|
|
metra -m $dir/game/WindowsNoEditor/Mercury/Content/Message -t ../imagestore/misc/translations
|
|
sed -i '/^\[Internationalization\]/,/^Culture=ja-JP/ s/^Culture=ja-JP/Culture=en-US/' $dir/game/WindowsNoEditor/Mercury/Config/DefaultEngine.ini
|
|
fi |