diff --git a/archinstall/translations.sh b/archinstall/translations.sh index 0ca413e..41d33a7 100755 --- a/archinstall/translations.sh +++ b/archinstall/translations.sh @@ -12,7 +12,7 @@ esac function translate_en { case $1 in "Arch install script (BETA)") - echo $1;; + echo "Arch install script (BETA)";; "Intro arch install script") echo "Through simple questions, we will install arch in your computer. Its designed to be simple and guied by options, but you need to be careful during the process. Warning: You musnt stop the install never, or anything can happen";; esac @@ -23,8 +23,8 @@ esac function T { case $sclang in "es") - translate_es $1;; + translate_es "$1";; "en") - translate_en $1;; + translate_en "$1";; esac }