In Kony Studio 6.5 I have a label in a form. In this label I have an i18n localized string. For formatting purposes, I want to add a space after the string. So far I've tried placing a space after the i18n key itself to no avail. I have also tried setting the label text in the form preShow() like so:
frmExample.lblSample.text = kony.i18n.getLocalizedString("my_i18n_key") + ' ';
I have also tried using unicode spaces and non-breaking spaces in the above code snippet, but all to no avail. Is there any way I can stop the label from automatically removing the trailing whitespaces?