Re: Where Do I Put This properties File (internationalization)

2004-03-11 Thread Srikanth Shenoy
And at runtime, the file goes directly under WEB-INF/classes Srikanth Shenoy Author Struts Survival Guide: Basics to Best Practices J2EE Project Survival Guide "Adam Hardy" <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > On 03/05/2004 05:16 AM Caroline Jen wrote: > >

Re: Where Do I Put This properties File (internationalization)

2004-03-05 Thread Adam Hardy
On 03/05/2004 05:16 AM Caroline Jen wrote: And "mvnplugin_mvnforum_MVNForumConfig" is a properties file. Please advice regarding the directory in which this properties file is supposed to be. It goes in the same place as your *.java code files. As you have it, there is no directory for it, so it

Where Do I Put This properties File (internationalization)

2004-03-04 Thread Caroline Jen
I am using Struts and internationalization. I have code like: private static final String OPTION_FILE_NAME = "mvnplugin_mvnforum_MVNForumConfig"; static { ResourceBundle res = ResourceBundle.getBundle(OPTION_FILE_NAME); } And "mvnplugin_mvnforum_MVNFo

RE: Struts and Internationalization

2004-02-10 Thread Jesse Alexander (KAID 11)
ent: Dienstag, 10. Februar 2004 23:38 To: Struts Users Mailing List Subject: RE: Struts and Internationalization any sample example with PropertyResourceBundle ~Thanks -Original Message- From: Abrams, Howard A [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 4:27 PM To: [EMAIL

RE: Struts and Internationalization

2004-02-10 Thread Samyukta Akunuru
any sample example with PropertyResourceBundle ~Thanks -Original Message- From: Abrams, Howard A [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 4:27 PM To: [EMAIL PROTECTED] Subject: Struts and Internationalization Hi, I had a quick question: What is the typical way

RE: Struts and Internationalization

2004-02-10 Thread Samyukta Akunuru
any sample zip/tutorials on the same ~Thanks -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 4:36 PM To: [EMAIL PROTECTED] Subject: Re: Struts and Internationalization That is probably the simplest way. Use the

Re: Struts and Internationalization

2004-02-10 Thread Larry Meadors
That is probably the simplest way. Use the ApplicationResources.properties file to create the other translations. Struts does much of the work for you. If you are using tiles, you can even use it for i18n, too, so if you have a different layout for different locations, it will do that for you.

Struts and Internationalization

2004-02-10 Thread Abrams, Howard A
Hi, I had a quick question: What is the typical way to 'internationalize'/translate a Struts application? Is it simply to use a PropertyResourceBundle? Or are there drawbacks to this method? Are there any Struts users reading this who have done something different? (store translations in a dat

Re: Large scale Internationalization using struts

2003-11-23 Thread Manish Singla
mance caching. With that struts flattens properties files i.e. struts automatically load keys from "en" to "en_us" bundle if key is not found in en_us. > > > As I'm probably not the first person who is trying to use Struts on a larger > scale for internationa

Re: Large scale Internationalization using struts

2003-11-21 Thread Khalid K.
We have broken down our property files into different categories... i.e Messages (validation stuff), Information (FAQs etc), Content (page text) Since we still use sturts 1.0.2 we customized struts to load more than one message bundle at servlet initizliation. Our content varies from state to

Re: Large scale Internationalization using struts

2003-11-21 Thread Kirk Wylie
Daniel Joshua wrote: My current resource file is 130+ KB and has 3000+ lines... Does not seem to be a big difference... There definately ppl who have tried with a bigger resource file, I believe. Definitely. And I have to say that I've never used a database-backed resource system, mostly becaus

RE: Large scale Internationalization using struts

2003-11-20 Thread Daniel Joshua
2:33 AM To: Struts Users Mailing List Subject: Re: Large scale Internationalization using struts If you're looking for something database based, which it sounds like you are, from what I understand Struts 1.2 will be using the commons-resources package for message resource management (rather

Re: Large scale Internationalization using struts

2003-11-20 Thread Kirk Wylie
elsewhere on the list. Kirk Wylie M7 Corporation Linus Nikander wrote: > > > As I'm probably not the first person who is trying to use > > Struts on a larger scale for internationalization issues I > > thought someone might have a better solution. Suggestions ?

Re: Large scale Internationalization using struts

2003-11-20 Thread Linus Nikander
> > > As I'm probably not the first person who is trying to use > > Struts on a larger scale for internationalization issues I > > thought someone might have a better solution. Suggestions ? > > In this case, you shouldn't be putting everything into one file

RE: Large scale Internationalization using struts

2003-11-19 Thread Edgar P Dollin
kander [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 19, 2003 3:44 AM > To: [EMAIL PROTECTED] > Subject: Large scale Internationalization using struts > > > I posted this same question a few months back but didn't > really get any answers that helped me decide on w

RE: Large scale Internationalization using struts

2003-11-19 Thread Joe Hertz
, but that's me guessing. Like you say, for performance reasons, I'd kind of hope so. Should be easy enough to test. > As I'm probably not the first person who is trying to use > Struts on a larger scale for internationalization issues I > thought someone might have a

Large scale Internationalization using struts

2003-11-19 Thread Linus Nikander
I posted this same question a few months back but didn't really get any answers that helped me decide on what to do. So here goes again: The thing I've been looking at Internationalization issues concerned with Struts. The thought of being able to change the whole language of a site

Internationalization: Tiles vs MessageResources

2003-11-18 Thread John . Pitchko
BDY.RTF Description: RTF file - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Question on Locale / Internationalization (Action and Message resources)

2003-11-14 Thread Srinivas Kusunam
Hi, I have a question on Action class and Message resources. My application have to support both English and Spanish users. In my action classes I need to use Message resources class the following way. Action class: Message resources resource = getResources(requ

RE: struts-menu and internationalization

2003-11-06 Thread Paul McCulloch
ject: RE: struts-menu and internationalization When a user logs in, I give him a default language, e.g. English, and create the appropriate Locale. This user sees the menu in the correct language. When this user switches his language, by clicking an image, I create another Locale, e.g. French. All the o

RE: struts-menu and internationalization

2003-11-06 Thread koen boutsen
>From: koen boutsen [mailto:[EMAIL PROTECTED] >Sent: 06 November 2003 10:44 >To: [EMAIL PROTECTED] >Subject: struts-menu and internationalization > > >Has anyone used internationalization in the struts-menu ? > >If so, could you explain me how I can do it. > >I

RE: struts-menu and internationalization

2003-11-06 Thread Paul McCulloch
EMAIL PROTECTED] Sent: 06 November 2003 10:44 To: [EMAIL PROTECTED] Subject: struts-menu and internationalization Has anyone used internationalization in the struts-menu ? If so, could you explain me how I can do it. I tried the following : menu-config.xml: and in listMen

struts-menu and internationalization

2003-11-06 Thread koen boutsen
Has anyone used internationalization in the struts-menu ? If so, could you explain me how I can do it. I tried the following : menu-config.xml: and in listMenu.jsp: but this did not work. any help is very appreciated Koen Boutsen

Re: & internationalization

2003-10-27 Thread Jason Lea
Normally I have an action that prepares data that initialises the form with default information. This action will get the information from the message resources (using the chosen locale), puts them into a LabelValueBean and put those beans into a List. Then that List is put into the ActionFor

& internationalization

2003-10-27 Thread koen boutsen
Does anyone know how I can use interantionalization in the tag in a . In Can anyone help Thanks Koen Enter for a chance to win one year's supply of allergy relief! http://ad.doubleclick.net/clk;6413623;3807821;f?http://mocda3.c

Question for you Internationalization supporters

2003-08-14 Thread Bailey, Shane C.
I don't have a need right now to support Internationalization but if I do need to it seems like I would have to do much more than just the field names but whole page content must be done with message keys. I mean, what is the best way to support not just form field names with diff

RE: Question for you Internationalization supporters

2003-08-14 Thread Paananen, Tero
> I guess the first way with EVERYTHING in a message resource > is the only way to go? Just curious what the best way and > any pit falls for supporting internationalization even with > all the built in locale stuff already in the framework? That's basically the way my compan

RE: Question for you Internationalization supporters

2003-08-14 Thread Kamholz, Keith (corp-staff) USX
Yeah, if you truly want to support internationalization, then you have to display all of your text with message keys. -Original Message- From: Bailey, Shane C. [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 1:50 PM To: [EMAIL PROTECTED] Subject: Question for you

Re: Question for you Internationalization supporters

2003-08-14 Thread Evan Schnell
You're right. Every bit of text should come from a resource. It will make it easy later. Bailey, Shane C. wrote: Every paragraph must be in a message resource. This is not the recommended way to do break out large amounts of text. Paragraph breaks, or even the number of paragraphs may

RE: Question for you Internationalization supporters

2003-08-14 Thread Larry Zappeterrini
Users Mailing List' Subject: RE: Question for you Internationalization supporters Yeah, if you truly want to support internationalization, then you have to display all of your text with message keys. -Original Message- From: Bailey, Shane C. [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Internationalization on a DB Scale

2003-08-03 Thread Juan Alvarado
I am developing an e-commerce application which will need among other things store things like a product description in different languages. These different product descriptions would be stored in a database table(product) and there will be a column for each (product_description_en, product_descrip

Re: Internationalization on a larger scale.

2003-07-02 Thread Vic Cekvenich
us solution to this. The thing I've been looking at Internationalization issues concerned with Struts. The thought of being able to change the whole language of a site simply by changing the locale of the user really appeals to me. All examples i've seen so far use parallel ve

RE: Internationalization on a larger scale.

2003-07-02 Thread James Childers
> I'm pretty new to Struts usage so it might be i'm overlooking > an obvious solution to this. The thing I've been looking at > Internationalization issues concerned with Struts. The thought > of being able to change the whole language of a site simply by > c

Re: Internationalization on a larger scale.

2003-07-02 Thread Sebastien Flacher
Let me know if you need help with these. Seb. "Linus Nikander" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm pretty new to Struts usage so it might be i'm overlooking an obvious > solution to this. The thing I've been looking at Internationa

Internationalization on a larger scale.

2003-07-02 Thread Linus Nikander
I'm pretty new to Struts usage so it might be i'm overlooking an obvious solution to this. The thing I've been looking at Internationalization issues concerned with Struts. The thought of being able to change the whole language of a site simply by changing the locale of the user re

Re: Internationalization support

2003-06-06 Thread Vic Cekvenich
handle internationalization in your system when using Struts framework? Basically, I would like to use human language specific resource bundles that would need to be used in session specific manner. Example: Croatian user logs on and MyAppResources_hr.properties resource file is used for her/his

Internationalization support

2003-06-05 Thread Alen Ribic
Hi all What is the best way to handle internationalization in your system when using Struts framework? Basically, I would like to use human language specific resource bundles that would need to be used in session specific manner. Example: Croatian user logs on and MyAppResources_hr.properties

Re: Tiles Internationalization with Definitions

2003-06-05 Thread Paweł Rzepa
Jason Lea wrote: Ed Smith wrote: I want to internationalize definitions in Tiles. Consider the following definitions in a tiles configuation file: I would like to internationalize the title values. I know I can create a tiles configuration file for each language; however,

Re: Tiles Internationalization with Definitions

2003-06-05 Thread Jason Lea
Ed Smith wrote: I want to internationalize definitions in Tiles. Consider the following definitions in a tiles configuation file: I would like to internationalize the title values. I know I can create a tiles configuration file for each language; however, these files would mos

Internationalization advice [OT]

2003-06-05 Thread Brian McSweeney
Hi all, I've got internationalization working nicely using the tags and using the setLocale method. However, from this very knowledgeable group perhaps i could get a bit of advice. If I want my database to be able to store some characters in a non ASCII languages like chinese, should

Tiles Internationalization with Definitions

2003-06-04 Thread Ed Smith
I want to internationalize definitions in Tiles. Consider the following definitions in a tiles configuation file: I would like to internationalize the title values. I know I can create a tiles configuration file for each language; however, these files would mostly be duplica

Re: internationalization

2003-03-24 Thread James Mitchell
On Mon, 2003-03-24 at 20:03, Vikas Malla wrote: > > I do not know how I can localize my jsp/html user manual? Couple of questions > regarding that: > > 1) Do I creat separate folders for each locale and then translate the help text into > each language and store them in folders? > 2) Do I ment

internationalization

2003-03-24 Thread Vikas Malla
I do not know how I can localize my jsp/html user manual? Couple of questions regarding that: 1) Do I creat separate folders for each locale and then translate the help text into each language and store them in folders? 2) Do I mention all the help text in properties file and then call these l

Re: struts Internationalization and fonts for jsp

2003-03-24 Thread Jason Lea
shish --- David Graham <[EMAIL PROTECTED]> wrote: I think he just wants to use a different font for each language. You shouldn't need to worry about it. David From: [EMAIL PROTECTED] Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]&

RE: struts Internationalization and fonts for jsp

2003-03-24 Thread Ashish Kulkarni
think he just wants to use a different font for > each language. You > shouldn't need to worry about it. > > David > > > > >From: [EMAIL PROTECTED] > >Reply-To: "Struts Users Mailing List" > <[EMAIL PROTECTED]> > >To: <[EMAIL PRO

RE: struts Internationalization and fonts for jsp

2003-03-24 Thread David Graham
I think he just wants to use a different font for each language. You shouldn't need to worry about it. David From: [EMAIL PROTECTED] Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: RE: struts Internationalization and font

RE: struts Internationalization and fonts for jsp

2003-03-24 Thread Mick . Knutson
: 48194 Mobile: 079.726.14.26 _ -Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 5:03 PM To: [EMAIL PROTECTED] Subject: Re: struts Internationalization and fonts for jsp That looks like a good approach. You can write a css block at the

Re: struts Internationalization and fonts for jsp

2003-03-24 Thread David Graham
That looks like a good approach. You can write a css block at the top of the page with the font from your properties file. David From: Ashish Kulkarni <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: struts In

struts Internationalization and fonts for jsp

2003-03-24 Thread Ashish Kulkarni
Hi, I have to build a website which can be viewed in multiple languages, I am using properties to file to get the text in different languages , but how do people select different font for different languages, What i was thinking was to have a property called font in properties file and have font

Re: Internationalization of string with embedded link?

2003-03-22 Thread Dolf Starreveld
In a mail from 13:44 +1200 3/23/03 Jason Lea wrote: Dolf pointed out this doesn't solve the problem due to the use of the on his jsp page. After looking around I have learnt something new :) and have found a solution (using Java Servlet 2.3 and JavaServer Pages 1.2 eg Tomcat 4+.) You can use

Re: Internationalization of string with embedded link?

2003-03-22 Thread Jason Lea
this helps... Jason Lea Jason Lea wrote: This can be done in Struts using the MessageResources: Struts Tip #4 - Formatting output with MessageResources http://husted.com/struts/tips/004.html also have a look at the Java Internationalization Tutorial's page http://java.sun.com/docs/book

Re: Internationalization of string with embedded link?

2003-03-22 Thread Jason Lea
This can be done in Struts using the MessageResources: Struts Tip #4 - Formatting output with MessageResources http://husted.com/struts/tips/004.html also have a look at the Java Internationalization Tutorial's page http://java.sun.com/docs/books/tutorial/i18n/format/messageFormat.html Yo

Re: Internationalization of string with embedded link?

2003-03-22 Thread David M. Karr
>>>>> "Dolf" == Dolf Starreveld <[EMAIL PROTECTED]> writes: Dolf> On a struts based JSP is need to output something like: Dolf> To do x, click Dolf> means that words needs to be a link. Without using resource (and Dolf> internationaliza

Internationalization of string with embedded link?

2003-03-22 Thread Dolf Starreveld
On a struts based JSP is need to output something like: To do x, click means that words needs to be a link. Without using resource (and internationalization), it would look like: To do x, click here Without internationalization 100% OK, it would become: here click=To do x, click The

RE: internationalization

2003-03-21 Thread Jason Lea
guage, country & variant so that I can store/read easily as a user preference eg default is 3 empty strings separated by '_' = '___', others would be 'fr__', 'ja__', 'en_US_' Jason Lea -

Internationalization and file uploads with multipart/for-data

2003-03-21 Thread Kevin Wang
Hi all, I am working on internationalization for our web application.By setting <%@ page contentType="text/html; charset=UTF-8"%> and using a filter to set request's characterset to "UTF-8", I am able to get user's input in Chinese and send it back to the

RE: internationalization

2003-03-21 Thread COMPAGNON GUILLAUME
ROTECTED] > Objet:internationalization > > Hi i've a simple question: is possible obtain the languages supported from > application? With the MessageResources class i could obtain the message in > a > particular language, if it is supported from application. For example if > i've > t

internationalization

2003-03-21 Thread modena
Hi i've a simple question: is possible obtain the languages supported from application? With the MessageResources class i could obtain the message in a particular language, if it is supported from application. For example if i've the properties file for the french languages i could obtain a message

Re: STRUTS INTERNATIONALIZATION

2003-02-28 Thread James Prance
I agree with Mr Mitchell... (thats three james' replied to this post.. any more out there) "scarter" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Is there a way in struts to maintain a default application resources > file that can be referred to in the event that a requested reso

RE: STRUTS INTERNATIONALIZATION

2003-02-27 Thread James Mitchell
t is to make #3 your base file and add locale specific messages as you need them. -- James Mitchell Web Developer/Struts Evangelist http://www.microsoft.com/struts/ > -Original Message- > From: scarter [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 27, 2003 3:51 PM > To:

RE: STRUTS INTERNATIONALIZATION

2003-02-27 Thread James Childers
xt one higher up in the hierarchy is searched. The default behavior of ResourceBundle does what you need. -= J > -Original Message- > From: scarter [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 27, 2003 2:51 PM > To: [EMAIL PROTECTED] > Subject: STRUTS INTERNATIONALIZ

STRUTS INTERNATIONALIZATION

2003-02-27 Thread scarter
Is there a way in struts to maintain a default application resources file that can be referred to in the event that a requested resource is not found in another resource file. For example, it would be nice if I could only define specific resources in each locale specific resource file, instead of

Struts & Image for Internationalization

2003-02-07 Thread Risika RANDRIANASOLO
How can we display different images, representing buttons, with Struts for internationalization ?? Please help :-)) Thanks -- Ce message est confidentiel. Son contenu ne represente en aucun cas un engagement de la part de

question about the internationalization

2002-12-20 Thread Tom
Is it true that the Struts framework only facilitate internationalization with Unicode or UTF8 encoding method? In other words, it is not possible to use different encoding methods for different locales. For example of the locale and encoding pairs en_US iso8859_1 eniso8859_1 zh_TW BIG5

Re: Internationalization of checkbox label

2002-12-04 Thread David Graham
You don't; you use it where you're using right now. David From: "Jana Navaneethan" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Re: Inter

Re: Internationalization of checkbox label

2002-12-04 Thread Jana Navaneethan
How do I use in my ActionForm ? Thanks, Jana. - Original Message - From: "David Graham" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 04, 2002 4:11 PM Subject: Re: Internationalization of checkbox label > Your items array should con

Re: Internationalization of checkbox label

2002-12-04 Thread David Graham
Mailing List" <[EMAIL PROTECTED]> Subject: Internationalization of checkbox label Date: Wed, 4 Dec 2002 16:08:38 -0500 Hi, I want to use values, labels for the multibox from my application properties file. I want to create a String[] in my form bean containing elements from properties

Internationalization of checkbox label

2002-12-04 Thread Jana Navaneethan
Hi, I want to use values, labels for the multibox from my application properties file. I want to create a String[] in my form bean containing elements from properties file (keys). for example in the code below I want to create string [] items form my properties file, i.e. UPS should come fro

Pb with Struts 1.1 Internationalization and Iplanet 6 SP4 Web Server

2002-11-14 Thread littleyann
Hi I've been using struts for my web application and Iplanet 6 WS SP4 And I encounter a big problem with localisation Ressources.properties file I putt hem in the web-inf/classes/com/mypackages In strus config I describe location well by Message Resource parameter=vom.mypackages.Resources But

Re: Internationalization - user setting the language manually?

2002-10-25 Thread David Graham
ECTED]> To: <[EMAIL PROTECTED]> Subject: Internationalization - user setting the language manually? Date: Fri, 25 Oct 2002 13:33:53 +0200 Hi there! I find the internationalisation feature of struts real nice, but there is something that is bothering me. What if a browser doesn't have a

Re: Internationalization - user setting the language manually?

2002-10-25 Thread Tumi Mathibedi
hi Stefan, if (request.getLocale() == null) { yada yada yada... } In short what I am saying is that u can have a logic to help solve the browserNotSetLocale to do what you want. On Fri 25 Oct 02 13:33, you wrote: > Hi there! > > I find the internationalisation feature of struts real nice, but

RE: Internationalization - user setting the language manually?

2002-10-25 Thread Stefan.Landro
Thanks to both of you. This is exactly what I needed to know. Stef. -Original Message- From: James Mitchell [mailto:jmitchtx@;telocity.com] Sent: Freitag, 25. Oktober 2002 14:11 To: Struts Users Mailing List Subject: RE: Internationalization - user setting the language manually

RE: Internationalization - user setting the language manually?

2002-10-25 Thread James Mitchell
> -Original Message- > From: [EMAIL PROTECTED] [mailto:Stefan.Landro@;swisscom.com] > Sent: Friday, October 25, 2002 7:34 AM > To: [EMAIL PROTECTED] > Subject: Internationalization - user setting the language manually? > > > Hi there! > > I find the internat

Re: Internationalization - user setting the language manually?

2002-10-25 Thread Gemes Tibor
2002. október 25. 13:33 dátummal [EMAIL PROTECTED] ezt írtad: > Hi there! > > I find the internationalisation feature of struts real nice, but there > is something that is bothering me. What if a browser doesn't have a > language setting, or if the user wants to change to a particular > language ju

Internationalization - user setting the language manually?

2002-10-25 Thread Stefan.Landro
Hi there! I find the internationalisation feature of struts real nice, but there is something that is bothering me. What if a browser doesn't have a language setting, or if the user wants to change to a particular language just for this one application? On most web-sites the user is able to set th

Re: Internationalization Broken on Struts 1.1b2?

2002-09-29 Thread Craig R. McClanahan
On Fri, 27 Sep 2002, Ryan Cuprak wrote: > Date: Fri, 27 Sep 2002 16:54:26 -0400 > From: Ryan Cuprak <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: Re: Internatio

RE: Internationalization Broken on Struts 1.1b2?

2002-09-27 Thread Charles McClain
Ryan: No, I don't think internationalization is broken -- I've tested it in my app under 1.12b. Do you have a tag like. .in your JSP? -Original Message- From: Ryan Cuprak [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 2:53 PM To: Struts Users Ma

Re: Internationalization Broken on Struts 1.1b2?

2002-09-27 Thread David Graham
I don't even use the tag and i18n works for me. I don't think it's a requirement. Dave >From: Ryan Cuprak <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: "Struts Users Mailing List" <[EMAIL PROT

Re: Internationalization

2002-09-27 Thread David Graham
List" <[EMAIL PROTECTED]> >To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >Subject: Re: Internationalization >Date: Fri, 27 Sep 2002 13:18:12 -0400 > >Looking through the startup logs of jboss (and my webapp with struts), I >noticed that only "

Re: Internationalization Broken on Struts 1.1b2?

2002-09-27 Thread Ryan Cuprak
Okay, I figured it out, one has to add the following to their jsp page: Why would I have to do this? -Thanks, Ryan Cuprak On Friday, September 27, 2002, at 02:53 PM, Ryan Cuprak wrote: > > With respect to Struts 1.1b2, is internationalization broken? I can't > get strut

Re: Internationalization Broken on Struts 1.1b2?

2002-09-27 Thread David Graham
sers Mailing List" <[EMAIL PROTECTED]> >To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >Subject: Internationalization Broken on Struts 1.1b2? >Date: Fri, 27 Sep 2002 14:53:04 -0400 > > >With respect to Struts 1.1b2, is internationalization broken? I can

Internationalization Broken on Struts 1.1b2?

2002-09-27 Thread Ryan Cuprak
With respect to Struts 1.1b2, is internationalization broken? I can't get struts to send back anything but English (default)- I have resources for both French and German and have configured a OS install on other machines for both of these languages. When I hit the login page, di

Re: Internationalization

2002-09-27 Thread Ryan Cuprak
inded Developer Network" >> http://www.open-tools.org/struts-atlanta >> >> >> >> >>> -Original Message- >>> From: James Mitchell [mailto:[EMAIL PROTECTED]] >>> Sent: Friday, September 27, 2002 10:47 AM >>> To: Struts

RE: Internationalization

2002-09-27 Thread James Mitchell
Struts-Atlanta, the "Open Minded Developer Network" http://www.open-tools.org/struts-atlanta > -Original Message- > From: Ryan Cuprak [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 27, 2002 11:08 AM > To: Struts Users Mailing List > Subject: Re: Internationaliz

Re: Internationalization

2002-09-27 Thread Ryan Cuprak
> > >> -Original Message- >> From: James Mitchell [mailto:[EMAIL PROTECTED]] >> Sent: Friday, September 27, 2002 10:47 AM >> To: Struts Users Mailing List >> Subject: RE: Internationalization >> >> >> Not sure why your browser is sendi

RE: Internationalization

2002-09-27 Thread James Mitchell
-Original Message- > From: James Mitchell [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 27, 2002 10:47 AM > To: Struts Users Mailing List > Subject: RE: Internationalization > > > Not sure why your browser is sending "deu" in Accept-Language, but you ca

Re: Internationalization

2002-09-27 Thread David Graham
uot; <[EMAIL PROTECTED]> >To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >Subject: Re: Internationalization >Date: Fri, 27 Sep 2002 10:25:02 -0400 > > > I haven't tried the Action.LOCALE_KEY yet, but restarting the server and >browser as well

RE: Internationalization

2002-09-27 Thread James Mitchell
AM > To: Struts Users Mailing List > Subject: Re: Internationalization > > > > I haven't tried the Action.LOCALE_KEY yet, but restarting the server > and browser as well as dumping the cookies hasn't fixed it. > > Thanks, > -Ryans > > On Friday, Septembe

Re: Internationalization

2002-09-27 Thread Ryan Cuprak
Ryan Cuprak <[EMAIL PROTECTED]> >> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >> To: Struts Mailing <[EMAIL PROTECTED]> >> Subject: Internationalization >> Date: Fri, 27 Sep 2002 10:02:02 -0400 >> >> >> Hello, >>

Re: Internationalization

2002-09-27 Thread David Graham
attribute. Dave >From: Ryan Cuprak <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: Struts Mailing <[EMAIL PROTECTED]> >Subject: Internationalization >Date: Fri, 27 Sep 2002 10:02:02 -0400 > > >Hello, > To test i

Internationalization

2002-09-27 Thread Ryan Cuprak
Hello, To test internationalization on my struts application I tossed a properties file "webapp_de.properties" into the same directory as my "webapp.properties". I know that struts is finding "webapp.properties" (English/US) as bean:message correctly retr

Re: Internationalization question.

2002-09-12 Thread Cristian Cardenas
? Thanks a lot. Cristian. - Original Message - From: "Cristian Cardenas" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, September 12, 2002 10:10 AM Subject: Re: Internationalization question. > No, I have &

Re: Internationalization question.

2002-09-12 Thread Cristian Cardenas
No, I have in the Struts-config.xml. Any idea? Cristian - Original Message - From: "John Yu" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, September 11, 2002 10:21 PM Subject: Re: Internationalization q

Re: Internationalization question.

2002-09-11 Thread John Yu
Do you have in the struts-config.xml? At 07:25 am 12-09-2002, you wrote: >Hi all, >I'm using Struts 1.1b2 and Weblogic 6.1 SP 1. >I was testing internationalization and I found that the server always used >the default ApplicationResource. Then I checked the value of >Act

Internationalization question.

2002-09-11 Thread Cristian Cardenas
Hi all, I'm using Struts 1.1b2 and Weblogic 6.1 SP 1. I was testing internationalization and I found that the server always used the default ApplicationResource. Then I checked the value of Action.LOCALE_KEY and I realized that It was null. So I tested a page that load the client's l

Re: Re: Problem with internationalization

2002-08-01 Thread Mrazovic, Maik
xt ", "Byte Encodings and Strings " or something else. -Ursprüngliche Nachricht- Von: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Gesendet: mercredi 31 juillet 2002 18:08 An: Struts Users Mailing List Betreff: Re: Problem with internationalization On Wed, 31 Jul 2002,

RE: Problem with internationalization

2002-07-31 Thread James Mitchell
> -Original Message- > From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 31, 2002 12:08 PM > To: Struts Users Mailing List > Subject: Re: Problem with internationalization > > > > > Whats the problem, and how can i solve it? >

Re: Problem with internationalization

2002-07-31 Thread Craig R. McClanahan
On Wed, 31 Jul 2002, Mrazovic, Maik wrote: > Date: Wed, 31 Jul 2002 10:57:29 +0200 > From: "Mrazovic, Maik" <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> &

Problem with internationalization

2002-07-31 Thread Mrazovic, Maik
Hello, I developed a webapplication with struts. Everything works fine after several tests. The Application must be internationalized, `cause we have customers in France e.g. When we´ve tested the application in France it did not work! And I don`t know why. Well, I managed my Windows2000 as an

Problem with internationalization

2002-07-31 Thread Mrazovic, Maik
Hello, I developed a webapplication with struts. Everything works fine after several tests. The Application must be internationalized, `cause we have customers in France e.g. When we´ve tested the application in France it did not work! And I don`t know why. Well, I managed my Windows2000 as an

  1   2   >