Im trying to localize the Summary of my new SwiftUI AppIntent on my Swift project for making new Shortcuts.
I am not able to localize the Summary.
I have created a AppShortcuts.strings
with Localize of English and Spanish languages like in this page appears: click here.
AppShortcuts.string (es):
"add ${numberOne} ${numberTwo}" = "Sumar: ${numberOne} ${numberTwo}";
Shortcut:
static var parameterSummary: some ParameterSummary {
Summary("add \(\.$numberOne) \(\.$numberTwo)") {
\.$numberThree
\.$numberFour
}
}