rabidityfactor Posted June 28, 2010 Share Posted June 28, 2010 Im an absolute newbie. Im trying to include google transliteration code(ajax i think) into statusnet - php application. how do i go about doing it? this is the google tranliteration code: http://code.google.com/apis/ajaxlanguage/documentation/#Transliteration i have also attachd the php file <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <script type="text/javascript" src="http://www.google.com/jsapi"> </script> <script type="text/javascript"> // Load the Google Transliteration API google.load("elements", "1", { packages: "transliteration" }); function onLoad() { var options = { sourceLanguage: google.elements.transliteration.LanguageCode.ENGLISH, destinationLanguage: [google.elements.transliteration.LanguageCode.HINDI], shortcutKey: 'ctrl+g', transliterationEnabled: false }; // 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(['transliterateTextarea']); } google.setOnLoadCallback(onLoad); </script> </head> <body> Type in Hindi (Press Ctrl+g to toggle between English and Hindi)<br> <textarea id="transliterateTextarea" style="width:600px;height:200px"></textarea> </body> </html> [attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/206036-google-transliteration-in-php/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.