I need to have a web page that support multiple languages, I am right in
thinking that I should be able to specify which languages my application
supports and if the browser supports that language have my code appear in that
language?? I want to set up a simple hello world app that does this using
stripes and I my web.xml looks like 
<filter>
                <display-name>Stripes Filter</display-name>
                <filter-name>StripesFilter</filter-name>
                
<filter-class>net.sourceforge.stripes.controller.StripesFilter</filter-class>
                <init-param>
                        <param-name>ActionResolver.Packages</param-name>
                        <param-value>Beans.*</param-value>
                </init-param>
                <init-param>
                        <param-name>ActionResolver.UrlFilters</param-name>
                        <param-value>WEB-INF/classes</param-value>
                </init-param>
                <init-param>
                    <param-name>LocalePicker.Locales</param-name>
                    <param-value>ja</param-value>
                </init-param>
                <init-param>
                    <param-name>LocalePicker.Locales</param-name>
                    <param-value>ja:Shift_JIS</param-value>
                </init-param>

        </filter>
But when i go to the page http://localhost:8085/ViewLocales it always appears in
English.  Am i taking the right approach this or is something else needed??


------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to