From 57ae0bd4438dad471b857f9d30d8195d6fd2218a Mon Sep 17 00:00:00 2001 From: kprkpr Date: Sat, 4 Jun 2016 00:42:57 +0200 Subject: [PATCH] changes --- archinstall/translations.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }