No.
The Transliterate API is ultimately a JSONP service which depends on communication with Google's servers. As long as you are following the TOS and your page can contact Google's servers, there is nothing really to install, and the backend platform is entirely irrelevant. You cannot install any part of the API on your server.
Is there any way to use transliterate api in chat box of forum which
is using ajax and javascript ? Thanks...
<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: 'en', // or google.elements.transliteration.LanguageCode.ENGLISH,
destinationLanguage: ['ml'], // or [google.elements.transliteration.LanguageCode.MALAYALAM],
shortcutKey: 'ctrl+m',
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 = [ "subject", "message", "transl1", "transl2" ];
control.makeTransliteratable(ids);
// Show the transliteration control which can be used to toggle between
// English and Hindi.
control.showControl('translControl');
}
google.setOnLoadCallback(onLoad);
</script>