I am developing one site in Indian language (Gujarati).

My problem is as below:

My client wants that they able to copy Gujarati text from word document and paste into the Text area.

But when i copy text from word doc and paste into text area the its get converted to the English letters.

http://www.chanakyanipothi.com/gujchanakya/Gopika.ttf

Above is the link of fonts which I am using.

I can provide you the demo code for you to make some work on it.

Is there any special thing which I am missing.

Hope I am clear to you. I am running in PHP and apache.

Thanks
Avinash

link|improve this question

59% accept rate
feedback

2 Answers

up vote 4 down vote accepted

You should set TextArea's font to Gopika.

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Gopika Test</title>
<style>
textarea {
    font-family:"Gopika";
}
</style>
</head>
<body>
<form><textarea>asdasdioasd</textarea></form>
</body>
</html>
link|improve this answer
not working, any special way to do this??? – Avinash Jun 18 '10 at 6:42
added code example, working fine in my firefox and safari. – VOX Jun 18 '10 at 7:02
i have created one HTML file with your code, but its displaying only English letters but it should display letters in Gujarati. – Avinash Jun 18 '10 at 7:11
let me know your OS and browser you are testing. – VOX Jun 18 '10 at 7:27
Windows 7 and FF 3.6.4 Working in IE8, Safari, and chrome also. Only problem with FF 3.6.4 – Avinash Jun 18 '10 at 7:32
show 19 more comments
feedback

Unable to replicate, I can paste Indian ગુજરાતી on textareas without any apparent issue. The problem may be that you are not actually using Indian characters but English characters, or more probably that word is screwing you in some way.

I suggest you paste the code of the textarea here, and possibly upload the word file, or an example of a similar one (not like I'm going to understand it) so we can try to replicate the issues.

Update:

First test scenario, I pasted some text from wikipedia that included Indian, the text shown correctly on both the textarea and after posting. I assume you are doing some testing yourself for what I can see on the image: alt text

Second test scenario, I copied the text from the docx file and when pasted on the textarea, it appeared as english letters. Why? Because those are not Indian characters, they are English characters that look like Indian characters.

Meaning that even though they appear like Indian, they're still the same ascii codes underneath and when translated for the textarea, they lose their 'look'. You should try with some real Indian text.

For example, depending on the font you're using, the letter 'a' will look different and can in fact be a bird, a tree an Indian character or a motorcycle for all we care, but if copied and pasted somewhere that allows just plain text and not font-base text we will still see letter 'a', since it's always ASCII character 97. To test this yourself, go to your word document and press key ALT + 97 (then let go of ALT) you will by this in fact enter letter 'a' whether it looks like it or not.

Hope you understood. Real Indian, Chinese or whatever will work correctly, fonts that look like it wont unless you set the textarea's font to that particular font -.-

If that doesn't convince you, if you use the Cujarati font all characters that weren't in English, let's say a comment that was in fact quoting English would still be shown in the Cujarati font and therefore will make absolutely no sense at all.

Last but not least, open the character map, view the Cujarati map and then any other font's map. Then you can see that characters are in fact the same. But I give up on trying to convince those who don't want to see.

link|improve this answer
xpertdeveloper.com/demo.docx here is the doc file i am using with Gopika fonts. and here is the link where is my text area. xpertdeveloper.com/demo2.php – Avinash Jun 18 '10 at 7:07
are you able to replicate the probelm??? – Avinash Jun 18 '10 at 7:26
read my update! – Juan Jun 18 '10 at 7:43
so what can i do with this??? Any demo for this??? – Avinash Jun 18 '10 at 8:58
1  
good editor thx.. I am in confusion for which ans to choose as accepted.. Both area excellent... – Avinash Jun 18 '10 at 9:39
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.