Hey everybody, we use xcodebuild -exportLocalizations
in our project and it doesn't like this line:
return NSLocalizedString("Hello\u{00a0}world", comment: "")
The output we get is:
invalid unicode sequence: \u{00a
I tried other Unicode characters and they all produce this "invalid" message so it's not that.
I looked for other ways to escape it and this seems to be it according to the Swift escaping rules.
Putting in the actual character does work to silence the message. However in this case it's a non-breaking space and there is value in seeing its escaped code so I'd prefer to keep it this way.
I did not find anybody else on the web having this particular message. Any ideas?