Pavankumar s k Ответов: 3

Как интегрировать Google Translator с ASP.NET использование C#


Как интегрировать Google Translator с ASP.NET использование C# для преобразования английского языка в Каннаду

aniket_Patil

но где мы показываем переведенный текст???

3 Ответов

Рейтинг:
2

Member 12689233

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. 


Рейтинг:
1

Zafar Sultan

Вот пример кода для преобразования введенного текста в каннаду при наборе текста(транслитерация):

Предположим, у вас есть текстовое поле "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>


Перевод см.:
http://weblogs.asp.net/jalpeshpvadgama/archive/2010/05/18/google-translation-api-integration-in-net.aspx[^]


Ocean007

Гуд код работал для меня, спасибо! ;)

Рейтинг:
1

Arpit-Systematix

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