Description
Currently CommentAuthenticators (MathCommentAuthenticator and LdapCommentAuthenticator) gets ApplicationResources via following way:
ResourceBundle.getBundle("ApplicationResources");
This always give a fixed instance of ApplicationResources. I think they should get ApplicationResources via following way instead:
ResourceBundle.getBundle("ApplicationResources", request.getLocale());