Description
It will be good if Click could reload the i18n files in development mode, this will help a lot.
In my project, I override the Page.getMessages() method:
I override the getMessages() to reload the click-page.properties every request:
My PropertyMessagesMap just creates a new Properties, and load the InputStream.
public Map getMessages() {
if (Click.isDevelopmentMode()) {
if (messages == null)
return messages;
} else
}
The PropertyMessagesMap just create a new Properties, get the .properties InputStream, and load it.