--
You received this message because you are subscribed to the Google Groups "Play Framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to play-framework+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/play-framework/b0ad8f79-08ea-41f2-a605-10f29885bed2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
messages.get(lang(),"key");
This sort of thing is typically an HTML escaping problem. (Since apostrophe is a legal quote delimiter, it's sensitive, and very easy to mess this up.) Have you inspected the final HTML (in the browser webpage), to see what is actually in there? In my experience, you generally have to work backwards, to figure out where the apostrophe is being mishandled...
On Mon, Oct 30, 2017 at 11:06 AM, Sascha Thiel <lino...@gmail.com> wrote:
Hey all,I've experienced the problem, that the apostrophe ' will not be rendered with messages.Sample: See what's happeningOutput: See whats happeningSo the ' just gets removed. Does anybody have an idea how to make the ' beeing rendered?Bests,Sascha
--
You received this message because you are subscribed to the Google Groups "Play Framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to play-framewor...@googlegroups.com.
"'{0}'"
represents string "{0}"
, not a FormatElement. A single quote itself must be represented by doubled single quotes ''
throughout a String.To unsubscribe from this group and stop receiving emails from it, send an email to play-framework+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/play-framework/3c837886-1176-46bc-9094-f2a595553da1%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/play-framework/3c837886-1176-46bc-9094-f2a595553da1%40googlegroups.com.