Click here to Skip to main content
15,891,864 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am working on a project which requires multi-languages text editor(e.g drop down list having languages like english,spanish,etc),like we see in google blogger, so how to get these API,I have searched a lot but couldnt find it ,kindly provide the API.
(Multi-language text editor is just used to write text in multiple languages as like english,hindi,spanish,french etc...) kindl note that i do not want multilingual features in my web site.

What I have tried:

I have searched on almost whole of internet (searched in google developer code,searched in jQuery website for source of file for multilanguage editor) but failed to get its API.
Posted
Updated 20-Feb-16 1:55am
v2
Comments
Sergey Alexandrovich Kryukov 19-Feb-16 23:17pm    
It makes no sense at all. No wonder Internet did not tell you anything: there is no such problem. However, you need to explain what "multilanguage" should do, exactly.
—SA
dheerajravi.com 20-Feb-16 6:23am    
Multi-language text editor is just used to write text in multiple languages as like english,hindi,spanish,french etc...
Sergey Alexandrovich Kryukov 20-Feb-16 11:27am    
This is absurd. Probably you don't understand that absolutely any .NET editor is such an "multi-language text editor". I gave you a detailed comprehensive answer, and you still don't understand. Same stands for any modern application. The same stands for any text input control in any modern Web browser. All present-day software uses Unicode and nothing else. Anyone can directly enter texts in any language, and even mix many different languages in one string.

And there is no such thing as "text in Hindi" (from this standpoint). The writing system used by modern Hindi is Devanāgarī (देवनागरी). I just demonstrated it: you can mix it up in one string with Latin, Cyrillic (ну конечно же), Chinese, Armenian, Georgian (unlike Hindi, they have their separate writing systems, and Japanese uses at least 4), Perso-Arabic, Urdu (اُردُو‎), anything...

—SA
Patrice T 20-Feb-16 9:34am    
Can you define what is the multi-language feature you talk about ?

Use Localization & Globalization concept of ASP.NET.
for example- follow below links

ASP.Net Multilingual website: Support and display Multiple Languages (English French) in ASP.Net[^]

C# Corner : Error Display[^]

Regards,
AARIF SHAIKH
 
Share this answer
 
Absolutely any editor implemented with ASP.NET will be multilanguage, by definition. The same stands for HTML + JavaScript editor, the same stands for any .NET application.

You don't really need to "drop down list having languages", because you can write in many languages at the same time; you can even combine any languaes and even different writing systems in the same string.

Perhaps you need something different: to present your UI in different languages, such elements as menus, notification areas, etc. But this problem is easily (I repeat: easily, but for a person familiar with all the target languages or a team of such people) is solved using .NET and ASP.NET globalization and localization technology:
ASP.NET Globalization and Localization[^],
Globalization Architecture for ASP.NET[^].

There is one more aspect of it: spell check and possibly grammar check. It depends on what technology, dictionaries and grammar databases you want to use. Generally, it is a difficule problem, except simple spell check. For ASP.NET, my best advice would be: don't do it at all. All reasonable Web browsers have some embedded spell checkers; just don't prevent browsers from using them. This solution won't be really perfect, but it will save you from hell of difficult work.

I just don't know what else would you possibly need for help. If, by any chance, you just don't know how to create the editor itself, no Quick Answers could help you before you learn some programming to an adequate level. I hope it wasn't your question, so I focused only on "multilanguage" aspects.

—SA
 
Share this answer
 
v4

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