I've got an existing Netbeans/Glassfish web application that was created automatically using one of the Netbeans wizards.
The project structure has
/src
/conf
/java/com/java source here
/web
/WEB-INF
/css
/img
etc
I'm not looking to i18n the project, replacing the hard coded strings with messages from a properties file.
The actual process of performing the translations and placing them into the JSP seems straightforwards enough - but what I don't understand is where I should place the properties file containing the translations.
The best place I can think of is inside /web/WEB-INF but I'm not sure that that is the right place and Google has failed me. Is WEB-INF the correct place for the translations files to go?