Hello all,
Can we have line break in NSL properties, to display a message in multiple lines?
I have something like this, but this is displayed all in one line. Is this even possible? Please advise.
MSG_DELETE_MESSAGE=Are you sure you want to delete this Record?\n\nID={0}\nProject Name={1}\nProject Manager={2}
I expect this to display something like this:
Are you sure you want to delete this record?
ID=1234
Project Name=ABCD
Project Manager=John Doe
But instead, I get all in one line. The \n doesn't display though. i.e.
Are you sure you want to delete this Record? ID=1234 Project Name=ABCD Project Manager=John Doe