Template language question/multilingual

Hi,

I have something like this
{{ $currsection := (print "/" .Section ".html") }}
in one of my template pages, default language.

How can I add something like relLangURL to make this variable automatically switch to
{{ $currsection := (print "/en/" .Section ".html") }}
for a second language - in this case english?

Just found that this
{{ $currsection := (print .Site.LanguagePrefix "/" .Section ".html") }}
seems to work