Как интегрировать Google Translator с ASP.NET использование C#
Как интегрировать Google Translator с ASP.NET использование C# для преобразования английского языка в Каннаду
aniket_Patil
но где мы показываем переведенный текст???
но где мы показываем переведенный текст???
It's simple to play with a translator, but first you have to register on google account and need to take token or ID to access the API using this you have to pass required value and test language and language code to be convert.
Вот пример кода для преобразования введенного текста в каннаду при наборе текста(транслитерация):
Предположим, у вас есть текстовое поле "txtDetails" на странице aspx.
<script type="text/javascript" src="https://www.google.com/jsapi"> </script> <script type="text/javascript"> // Load the Google Transliterate API google.load("elements", "1", { packages: "transliteration" }); function onLoad() { var options = { sourceLanguage: google.elements.transliteration.LanguageCode.ENGLISH, destinationLanguage: google.elements.transliteration.LanguageCode.KANNADA, shortcutKey: 'ctrl+g', transliterationEnabled: true }; // Create an instance on TransliterationControl with the required // options. var control = new google.elements.transliteration.TransliterationControl(options); // Enable transliteration in the textbox with id // 'transliterateTextarea'. control.makeTransliteratable(['txtDetails']); } google.setOnLoadCallback(onLoad); </script>
Гуд код работал для меня, спасибо! ;)
Hi, It's simple to play with a translator, but first you have to register on google account and need to take token or ID to access the API using this you have to pass required value and test language and language code to be convert. It's like that: new google.translate.TranslateElement({ pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE }, 'google_translate_element') Please check on google API they also guide for the same with etch steps. Thanks, AP