tags:

views:

44

answers:

2

I have a chat application . I want to give Arabic language support to my application. Is there any way to change language when a user selects his language from a select box? The User requires to Write in Arabic in his text area.

A: 

Yes, you can use unicode chars to code, e.g. \u5234 (or something like that - in java at least). Also, the user must support right to left keyboard typing if you want to type from right to left in a textbox.

waqasahmed
+1  A: 

jQuery Localisation would be a first step.

NoahD