New line break in language record value

2 meses atrás
Is it possible to edit the message in the Value field in language record? I would need a new line.

Thank you
2 meses atrás
It may depend...
Newlines may just be 'ignored' when rendered by the browser.
If you put in an HTML break <br/>, then it may show as-is if not wrapped in .Raw()
Which resource string do you want to add newlines to?
2 meses atrás
newsletter.resultactivated
2 meses atrás
Try this:
In this file, \Views\Newsletter\SubscriptionActivation.cshtml
Change from
@Model.Result
to
@Html.Raw(Model.Result)

Then, edit your locale resource string and use <br/> where you want the newlines.