Jump to content

Google transliteration in PHP


rabidityfactor

Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.