I'm trying to start my Play Application in Prodmode with SSL. The Problem is, that all the floats in the templates are shown with a dot and not with comma. In dev mode on locahost everything is fine.... So I wonder why the floats are shown diffent in prod mode. For the format I tried:
@{"%.2f".format(session.get("product."+product.id.toString).toFloat*product.vkBrutto)}
and
@String.format("%.2f",product.vkBrutto)
both ways show the wron format when I start the server in prodmode with ssl.