internationalization

2002-11-15 Thread Marivie Galeon
transtools.transtoolsResources langschools.langschoolsResources home.homeResources contact.contactResources Any input/help about internationalization would be great. Thanks in adv. Regards, Marie --- Outgoing mail is certified Virus Free. Checked by AVG

Re: Internationalization Issue

2001-08-20 Thread chris brown
necessary) in JavaScript or by "pre-filling" your HTML with characters appropriate for your locale. -Chris - Original Message - From: "vivek tiwari" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 16, 2001 5:19 PM Subject: Internationalizat

Internationalization Issue

2001-08-16 Thread vivek tiwari
I an designing a web page using JSP which has several text boxes. It is to be used in both English and Chinese locales. So the input can be in Chinese or English charset. Value entered is captured using request.getParameter("txtBoxName"); After that it is stored in Oracle database table. "Inser

Re: Help in Internationalization

2001-07-09 Thread Hans Bergsten
Bhavani Giritharan wrote: > > Hi, > > I need some start up in i18n and l10n. If any of you had worked on it plz help me in > the startup i got to do l18n with the JSP page. Look at the java.util.ResourceBundle class, and related classes. I describe how to internationalize JSP pages in detail in

Help in Internationalization

2001-07-09 Thread Bhavani Giritharan
Hi, I need some start up in i18n and l10n. If any of you had worked on it plz help me in the startup i got to do l18n with the JSP page. Regards Bhavani === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP

Internationalization options

2001-02-23 Thread Shane Witbeck
I am currently working on the internationalization portion of a large project. I am planning on storing resources and resource bundles in a database as opposed to using *.properties files. What are the respective advantages of using properties files or a database to store locale information. The

Re: Internationalization / unicode

2001-01-30 Thread Sharma Sachin
TECTED]] > Sent: Wednesday, January 31, 2001 9:25 AM > To: [EMAIL PROTECTED] > Subject: Internationalization / unicode > > Hi All, > > To Internationalize my jsp's labels such as the Title, to japanese, > do I need to load a properties file for it or just simply

Internationalization / unicode

2001-01-30 Thread Roland S. Jamito Jr
Hi All, To Internationalize my jsp's labels such as the Title, to japanese, do I need to load a properties file for it or just simply change change the title to its unicode japanese character? Anyone can help me about unicode equivalent characters for japanese? Thanks, I am really still new to t

Re: internationalization and localization

2000-11-30 Thread Oleg V Alexeev
Hello Misak, Friday, December 01, 2000, 1:20:11 AM, you wrote: BM> Thanks for responding. We were trying to use struts library. The only thing BM> I don't like about it is that for every request the action servlet is BM> instantiating (class.forname call) the object and then calls perform method

Re: internationalization and localization

2000-11-30 Thread Craig R. McClanahan
"Boulatian, Misak" wrote: > Hi Oleg, > > Thanks for responding. We were trying to use struts library. The only thing > I don't like about it is that for every request the action servlet is > instantiating (class.forname call) the object and then calls perform method > of that object. So, If your

Re: internationalization and localization

2000-11-30 Thread Boulatian, Misak
Hi Oleg, Thanks for responding. We were trying to use struts library. The only thing I don't like about it is that for every request the action servlet is instantiating (class.forname call) the object and then calls perform method of that object. So, If your action classes are not servlets themse

Re: internationalization and localization

2000-11-30 Thread Oleg V Alexeev
Hello Misak, Thursday, November 30, 2000, 11:16:27 PM, you wrote: BM> Does anyone know anything about internationalizing JSP files as JSP 1.1 BM> standard expects like attaching languange code to the JSP file names (e.g. BM> jspname_ja.jsp, etc.). I think struts library is good solution - http

Re: internationalization and localization

2000-11-30 Thread Boulatian, Misak
Hi everybody, Does anyone know anything about internationalizing JSP files as JSP 1.1 standard expects like attaching languange code to the JSP file names (e.g. jspname_ja.jsp, etc.). I appreciate the response. Thanks, Misak ==

Re: Internationalization and TagLibs

2000-09-16 Thread Craig R. McClanahan
Julia Reynolds wrote: > Hi, > > Is there a taglibrary available somewhere that includes > tags for Internationalization using the resource bundles > in the java.util package? > One option is the internationalization support in the Struts framework's tag library <http:/

Internationalization and TagLibs

2000-09-16 Thread Julia Reynolds
Hi, Is there a taglibrary available somewhere that includes tags for Internationalization using the resource bundles in the java.util package? Julia === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signof

Re: Repost: Internationalization with JSPs

2000-08-29 Thread Jorge Barrera
You need to look at the properties file in your documentation/reference. This includes all internationalization functions for JSPs. It's really nothing but an ini file w/ name value pairs, but the naming convention of the file allows for identification into multilanguages and even lo

Re: JSP Internationalization

2000-07-25 Thread Scott Evans
r does the servlet container do that for me? Thanks, Scott -Original Message- From: Frank Esch [mailto:[EMAIL PROTECTED]] Sent: Monday, July 24, 2000 10:42 PM To: [EMAIL PROTECTED] Subject: AW: JSP Internationalization Here's is the answer: <%@ page contentType="text/html;

AW: JSP Internationalization

2000-07-24 Thread Frank Esch
ns > Gesendet: Mittwoch, 19. Juli 2000 10:14 > An: [EMAIL PROTECTED] > Betreff: JSP Internationalization > > > Does anyone know of any problems/pitfalls associated with > using UTF-8 as the > content type for JSPs? For example: > > <%@

JSP Internationalization

2000-07-19 Thread Scott Evans
Does anyone know of any problems/pitfalls associated with using UTF-8 as the content type for JSPs? For example: <%@ page contentType="text/html; charset=UTF-8" %> Thanks, Scott === To unsubscribe: mailto [EMAIL PROTECTED]

Internationalization

2000-07-05 Thread Stephen Toner
Hi, I'm trying to provide localization through the use of a database. I have st= ored the characters in unicode and used the tag This workd fine for such awkward characters as Arabian squiggles, but for si= mple characters like =E9(in case that doesn't come out correctly that is sup= posed to be

input validation and internationalization?

2000-03-03 Thread Heidi Tang
bundles. However, I am not clear how to validate fields to support internationalization. For instance, how to validate numeric, monetary, date fields ? Does anyone know if there is any code fragments somewhere, or any previous postings that can help me? Apologies if this has been addressed before

Re: confused over internationalization

2000-01-29 Thread Scott Ferguson
O'Meara AnnMarie wrote: > I'm confused about what I've heard about internationalization with JSPs. What I > want to do is write one JSP file, and read the character set and user-visible > text from a ResourceBundle. This works with HTML templates, as long as the >

Re: confused over internationalization

2000-01-29 Thread Ray Cromwell
> I'm confused about what I've heard about internationalization with JSPs. What I > want to do is write one JSP file, and read the character set and user-visible > text from a ResourceBundle. This works with HTML templates, as long as the > .properties files for the Reso

confused over internationalization

2000-01-29 Thread O'Meara AnnMarie
I'm confused about what I've heard about internationalization with JSPs. What I want to do is write one JSP file, and read the character set and user-visible text from a ResourceBundle. This works with HTML templates, as long as the .properties files for the ResourceBundles are in

Re: Internationalization

2000-01-26 Thread Hans Bergsten
Magnus Björkman wrote: > > In a servlet it is possible to create the PrintWriter the way I want but > how do I set the PrintWriter in JSP 0.92 to: > > PrintWriter out = new PrintWriter(new > OutputStreamWriter(response.getOutputStream(), "UTF-8"), true); > > Is it possible? Let the JSP container

Internationalization

2000-01-26 Thread Magnus Björkman
In a servlet it is possible to create the PrintWriter the way I want but how do I set the PrintWriter in JSP 0.92 to: PrintWriter out = new PrintWriter(new OutputStreamWriter(response.getOutputStream(), "UTF-8"), true); Is it possible? /Magnus ==

Internationalization - JDBC question

2000-01-12 Thread Wilson. P
Hi Folks Here is my problem. I need to get input from the user in English,Japanese and Spanish. And I have to store this to the Oracle database and finally I have to display them back as details in the corresponding language. So, What is the rtable column type I have to use in Oracle and tel

Bean using ResourceBundle for Internationalization

1999-08-25 Thread Dye Blair
Hello, I'm trying to use a bean in a JSP in order to use a resource bundle/properties file for i18n. The problem is that my WebSphere server says "Cannot load bean" when I call the bean in the JSP. I've narrowed the problem to the declaration of the resource bundle: java.util.ResourceBundle label