In the tutorial from here the errors are printed similar to this (I added the p + " " +):
<% if (errors) { %>
<p>
<% for (var p in errors) { %>
<div><%= p + " " + errors[p]; %></div>
<% } %>
</p>
<% } %>
The thing is that the message is not relevant at all. For example, I want the title to be always present, so, if I don't enter a value, the error title [[model.validatesPresent]] is displayed, but I want something better.
Do I have to write my own procedures for creating some meaningful messages or does geddy also have some other options that could help (I haven't found anything in the documentation)? Some advice?