I’m translating my English app to Spanish. If I call:
TRANS("some string who's resulting translation includes accents or tildes").toUpperCase();
the accented/tilded letters stay in lower case. Here’s an example with a tilded “n”:
My current workaround is to just manually type the Spanish string in as uppercase in the translation file. But sometimes I use a string in more than one place in the app, one in lowercase, the other in uppercase, so that workaround isn’t always feasible.
Is there a way around this?