I have an application where we are showing quotes from a client in a JSP. The actual text of the quotation is stored in a database and doesn't include the quotation marks.
The JSP currently has "{$bean.quote}" which, I pointed out to my boss, is not internationalizable.
I've got his approval to internationalize this, but I'm not sure what approach to use. My first one is to do an i18n lookup for startQuote and endQuote and store the character in the table. This feels heavy.
Ideas?