Google Transliterate API is not working properly when i tried with CAPITAL letter/Initcap for destinationLanguage:[google.elements.transliteration.LanguageCode.MALAYALAM]

41 views
Skip to first unread message

shamseer pc

unread,
Jan 21, 2014, 4:52:42 AM1/21/14
to google-ajax...@googlegroups.com
Here is my source code ,
when i tired to translate using CAPITAL letters it's not working. For Initcaps words not working properly


<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <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.MALAYALAM],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(['transliterateTextarea']);
      }
      google.setOnLoadCallback(onLoad);
    </script>
  </head>
  <body>
    Type MALAYALAM (Press Ctrl+g to toggle between English and MALAYALAM)<br>
    <textarea id="transliterateTextarea" style="width:600px;height:200px" ></textarea>
  </body>
</html>

Regards Shamseer PC
Reply all
Reply to author
Forward
0 new messages