mirror of
https://gitlab.com/JKANetwork/JKArch.git
synced 2026-02-15 09:41:31 +01:00
18 lines
147 B
Bash
Executable File
18 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function translate_es {
|
|
case $1 in
|
|
"Hello")
|
|
echo "Hola";;
|
|
esac
|
|
}
|
|
|
|
|
|
function T {
|
|
|
|
case $sclang in
|
|
"es")
|
|
translate_es $2;;
|
|
esac
|
|
}
|