I have some function to print available disk space (quota)
I added some code to imp/conf.php
Now I want easy add if statement to show text in various language
if($somevariable==en){
echo "available quota:";
} elseif ($somevariable==pl){
echo "dostepne miejsce na dysku:";
}
etc etc
How can I do this?
Regards
Bart