Xcode – How to deal with localized conditionnel expression within strings
I have this Text in SwiftUI : 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…