How to get the name of a term (not the slug)

I use this line to display a term:
<Get local=local_term />
How can I get the (nice)name of the term (so not the slug)?

Hi Frans,
Since your local variable presumably only contains the term slug itself, you’d have to use a taxonomy term loop to get additional details for the term:

<Loop type=taxonomy_term taxonomy=my_tax_slug include="{Get local=local_term}">
  <Field title />
</Loop>

The taxonomy term loop is documented here:

O great, I will check it out.
Thanks!