Added new translation dependencies to the -c checklist.
This commit is contained in:
parent
bf81956b52
commit
c373f2d0e5
@ -202,6 +202,18 @@ checklist() {
|
||||
errorList+=("Warning: translate-shell is not installed. Games that require translation will not be translated.")
|
||||
fi
|
||||
packageList+=("translate-shell")
|
||||
if command -v sqlite3 &> /dev/null ; then
|
||||
[[ $# -eq 0 ]] && echo "Sqlite3 is installed."
|
||||
else
|
||||
errorList+=("Warning: sqlite is not installed. Required for games that need to be translated.")
|
||||
fi
|
||||
if command -v perl &> /dev/null ; then
|
||||
[[ $# -eq 0 ]] && echo "Perl is installed."
|
||||
else
|
||||
errorList+=("Warning: perl is not installed. Required for games that need to be translated.")
|
||||
fi
|
||||
packageList+=("perl")
|
||||
packageList+=("sqlite")
|
||||
if command -v unix2dos &> /dev/null ; then
|
||||
[[ $# -eq 0 ]] && echo "Dos2unix is installed."
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user