Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how i can use Marathi for desiging in ASP.NET
Posted
Comments
Sergey Alexandrovich Kryukov 20-Jun-12 2:05am    
What is your concern? it just works...
--SA

1 solution

To answer this simple question, look at the Marathi text in English Wikipedia article on the topic:
http://en.wikipedia.org/wiki/Marathi_language[^].

I can see the correctly rendered text even though I never installed anything related to this language on my system.

Everything on the Web supports Unicode; and this language is so popular, that nearly all modern systems support it by default. You don't need to do anything special. All you need is using Unicode (but if you can write in this language, you already do it) and save it in the Web standard encoding UTF-8. Any other UTF can work, but UTF-8 is most practical and standard. By the way, never forget to prescribe the encoding in http-equiv:
HTML
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />


In most situations, everything will work even if you don't do it, but in some situations a browser could be confusing. For example, such things happens when somebody saves a Web page without http-equiv on a local disk and view it later. In all cases, all pages should have this element (inner to the <head> element).

—SA
 
Share this answer
 
Comments
VJ Reddy 20-Jun-12 13:16pm    
Nice answer. 5!
Sergey Alexandrovich Kryukov 20-Jun-12 13:31pm    
Thank you, VJ.
Do you have any idea why so many developers from India feels that they have difficulty in using Indian languages in computing?
--SA
Rajeev Jayaram 22-Jun-12 11:14am    
I think it is because all Indian Languages have different alphabet structure compared to Engligh. So it becomes difficult to type in the Keyboard. Also the translation is itself a nightmare. Most people find it difficult to translate English equivalent word in their local language. Indian languages are not scientifially evolved with new terminologies (or) not most Indians bother to learn them.
Sergey Alexandrovich Kryukov 29-Jun-12 20:41pm    
I use Cyrillic often; in the past there were many problems, but increasingly less now, and most people use it well enough (even some of those not speaking language like Russian, Bulgarian, etc.). It's interesting that the major part of world supply of different writing systems are located in India. At the same time, most of them are Brahmic. I'm asking because answering question I apparently knew more about those systems then the Indian users and software developers. Here is a typical case: an inquirers was unaware about the fact they use Devanāgarī and asked about Hindi or Marathi which actually do not use separate scripts and all use Devanāgarī. Besides, I don't understand why people asking about support of their own Indian languages. I tried them on my Windows and Linux computers and see that are all fully supported by default, even though I did not install anything specially. I don't understand why people actually using languages failed at least try it themselves... I think people should pay more respect to their own cultures. I think this is a very valuable thing which should not be forgotten. You know, my both children spent most of their lives in USA (one of them 100% in USA), but they speak Russian on nearly native level, both can read/write...
--SA
Rajeev Jayaram 2-Jul-12 17:27pm    
I agree with you. People should pay more respect to their own culture and tradition. They should put that extra effort to help themselves before directly jumping on with simple questions.

Nice to hear about your children. Of course you are always there to guide them :-)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900