How would you go with i18ning a rich web application?
Would you internationalize in the server or in the browser. What are your experiences with this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes.
Certainly you’ll need to work on the server-side. If you have client-side JavaScript that is creating user-visible text you’ll also need to localise that, which will generally be a separate task. eg. Have the server side write a <script src> pointing at a different script file depending on the language, with the script containing a lookup of text strings which can then be consulted by the logic scripts.