Hi,
I'm working on supporting different languages for our GUI. I'm having a problem translating strings that have a '\n' in them. They seem to be ignored.
In Qt Designer I have a QCheckBox with this in the text field:
Here's an \nexample that doesn't work
This appears in english in our french translation.
Having looked at the .ts XML it seems that the text after the '\n' is ommited (I guess this is why it doesn't get translated ?)
Does anyone have a way of including a newline in the original text?
Seems I had carriage returns in my text before the newline. (no idea how they got there)
e.g
Here's an [][][][]\nexample that doesn't work
After removing them, the translation worked.