I have an angular app with implemented i18n for choosing language depends on customer will. Now I want to set up a footer with a link which will be redirected to a differing site depends on language e.g. link1="https://en.wikipedia.org/wiki/Angular_(web_framework)" link2="https://de.wikipedia.org/wiki/Angular" , so I will have one alias which will be redirected to different sites depends on the chosen language.
I tried to use angular pipes but I have no idea how to set up.
<a href="'" class="footer__link">{{'footer.angular' | translate}}</a>