I would like to print in a defined location only the long foreign version of an acronym using acro. What I currently tried was \acf{}, but this gives me both the long translated version as well as the long original.
For clarity, if I have this:
\DeclareAcronym{ym}{ short = {YM}, long = {Ministry of the Environment}, foreign={Ympäristöministeriö / Miljöministeriet}, foreign-format = \textit, tag = org, pdfcomment = {Ministry of the Environment} } I would like to print in a defined location only the foreign attribute of this acronym (i.e., for this acronym "Ympäristöministeriö / Miljöministeriet").
Current MWE and output:
\documentclass[12pt]{report} % --- Essential Packages --- \usepackage[T1]{fontenc} \usepackage[british]{babel} \usepackage{xcolor} \usepackage[most]{tcolorbox} \usepackage{tabularray} \UseTblrLibrary{booktabs} \usepackage[en-GB]{datetime2} \usepackage{acro} \DeclareAcronym{ym}{ short = {YM}, long = {Ministry of the Environment}, foreign={Ympäristöministeriö / Miljöministeriet}, foreign-format = \textit, tag = org, pdfcomment = {Ministry of the Environment} } \begin{document} Print here \acf{ym}. \end{document} 

Miljöministerietcome from? I don't see that in the input?