Any browser that doesn't send an Accept-Language request header will have this issue. The best solution is to set the fallbackLocale property, which is the Locale that will be used when no Accept-Language is specified.
This property can be set at any scope (page, request, application, session). The property that needs to be set is 'javax.servlet.jsp.jstl.fmt.fallbackLocale.scope', where scope is the appropriate value for where you are setting it.
So, to set it for the entire application, do something like:
servletContext.setAttribute("javax.servlet.jsp.jstl.fmt.fallbackLocale.application", java.util.Locale.US);
The best place to put this would be in a ServletContextListener.
If you only need to do this for certain pages, then you could also do the following in a JSP:
<% pageContext.setAttribute("javax.servlet.jsp.jstl.fmt.fallbackLocale.page", java.util.Locale.US); %>