I have this Text in SwiftUI :
<code>Text("Level (level.id)" + (level.isEnded ? " ended" : ""))
</code>
<code>Text("Level (level.id)" + (level.isEnded ? " ended" : ""))
</code>
Text("Level (level.id)" + (level.isEnded ? " ended" : ""))
This string does not automatically go to the Strings catalog.
What is the best way to deal with this kind of text and localization ?
Thanks