1
0
mirror of https://gitlab.com/JKANetwork/JKArch.git synced 2026-02-15 17:51:33 +01:00
This commit is contained in:
kprkpr
2016-06-04 00:27:59 +02:00
parent f405a8a57a
commit 3e9e3602e1
3 changed files with 19 additions and 6 deletions

View File

@@ -2,16 +2,30 @@
function translate_es {
case $1 in
"Hello")
echo "Hola";;
"Arch install script (BETA)")
echo "Script de instalación de Arch(BETA)";;
"Intro arch install script")
echo "Mediante unas preguntas y avanzando, instalaremos arch en su ordenador \n Ha sido pensado para ser simple, y guiado por opciones, pero debes estar atento durante el proceso. \n Aviso: No debes interrumpir la instalacion por ningun motivo, a no ser que quieras que quede incompleta"
esac
}
function translate_en {
case $1 in
"Arch install script (BETA)")
echo $1;;
"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";;
}
function T {
case $sclang in
"es")
translate_es $1;;
"en")
translate_en $1;;
esac
}