With SwiftUI being recently introduced, I was curious if we could take advantage of SwiftUI preview to speed up testing localization and make sure your app looks great for any language. I’ve been using code generation tool to handle translation in the past, I’m personally fan of SwiftGen but even if it works with simulator, SwiftGen doesn’t work yet for preview. enum Translation { static var welcomeToMyApp : LocalizedStringKey { return "Welcome into my app" } static var startByTappingThisButton : LocalizedStringKey { return "Start by tapping this button" } static var startBrowsing : LocalizedStringKey { return "Start browsing" } }