<script src="http://www.google.com/jsapi" type="text/javascript">
</script>
<script type="text/javascript">
// Load the Google Transliteration API
google.load("elements", "1", {
packages: "transliteration"
});
function onLoad() {
var options = {
sourceLanguage: 'en',
destinationLanguage: ['hi','kn','ml','ta','te'],
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 textfields with the given ids.
var ids = [ "transl1", "transl2" ];
control.makeTransliteratable(ids);
// Show the transliteration control which can be used to toggle between
// English and Hindi and also choose other destination language.
control.showControl('translControl');
}
google.setOnLoadCallback(onLoad);
</script>
இந்திய மொழிகளில் தட்டச்சு செய்யுங்கள் (Press Ctrl+g to toggle between English and selected language)உரையை உள்ளிட்ட பின் ஒரு space விட உங்கள் உள்ளீடு transliterate ஆகும்..
இங்கே மொழியை தேர்வு செய்யவும்:
தலைப்பு :
சோதனை பெட்டி :