I have transliterate code to convert english number to gujrati number but 
is not converting. on same hand api can convert english alphabet to 
gujarati.!
any solution for this problem.?

<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.GUJARATI],
            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(['Name']);
        control.makeTransliteratable(['Address']);
        control.makeTransliteratable(['City']);
        control.makeTransliteratable(['State']);
        control.makeTransliteratable(['PhoneNumber']);
        control.makeTransliteratable(['OpenningAccountAmt']);
        control.makeTransliteratable(['OpeningCreditAmt']);
        control.makeTransliteratable(['OpeningDebitAmt']);
        control.makeTransliteratable(['Description']);
    }
    google.setOnLoadCallback(onLoad);
</script>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Google AJAX APIs" group.
To post to this group, send email to
google-ajax-search-api@googlegroups.com
To unsubscribe from this group, send email to
google-ajax-search-api+unsubscr...@googlegroups.com
To view this message on the web, visit
https://groups.google.com/d/msgid/google-ajax-search-api/4f92d184-4698-495e-a1c5-2b5170396732%40googlegroups.com
For more options, visit this group at
http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-ajax-search-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to