Google Input Tools For Indian Language

Introduction

Google Input tools is a very powerful development tool for an Indian language. Input tools are also called transliteration. It can convert English to the Hindi Language. That concept can be used in the Windows OS, website and Android Phone.

I will show a simple example:

English: "Kya kar rhe ho?".

Converted to Hindi: "क्या कर रहे हो?".

Advantage

We can easily type the Hindi language and also the typing speed is greater than from English. Because when we talk to anyone we use the Hinglish Language. For example: "Kya kar rhe ho?".

So that tool helps you to write text in Hindi.

Installation on Windows OS

First go to the link. Then you will see the following:

download

Now you can select your choice language and then install on the Windows OS. After installing successfully you will see “ENG” in the right side of the Taskbar.

ENG

Then press the“Window+Space” key of the keyboard.

Window

Then open Notepad and start writing, but you will write any text defined in the Hindi language.

Hindi language

It will show 5 helping words but you can change the settings from here:

setting

When you want to again change the language Hindi to English the press again “Windows+Space keys”.

Installation on Android Phones

First go to Google Play Store link for Google Input. After installing the apps in your Android phone, open it.

open app

Press Next.

select item

Press Next.

Press next

On clicking “Enable Google Hindi Input”, you will see the following:

Enable Google Hindi Input

Check the Checkbox for Google Hindi Input and press the “back” button. Now click “Select Google hindi Input”, in other words the choice of your Android keyboard.

Then you can see the following: 

enable

Close the app. Open Google search and see that your keypad GUI has changed now. 

The keypad can now work with the following three languages.

  1. English
  2. Hindi
  3. Hinglish

By default the english Type mode is selected. Now change the type mode by pressing the button.

change the type mode

After selection start writing the text as in the Windows OS.

Example

Example


You can change the language by pressing the button at the bottom.

Installation on Website

Find the </head> tag and place the following code before it.

  1. <script src="https://www.google.com/jsapi" type="text/javascript">  
  2. </script>  
  3. <script type="text/javascript">  
  4.     google.load("elements""1", {  
  5.         packages: "transliteration"  
  6.     });  
  7.   
  8.     function onLoad() {  
  9.         var options = {  
  10.             sourceLanguage: google.elements.transliteration.LanguageCode.ENGLISH,  
  11.             destinationLanguage: [google.elements.transliteration.LanguageCode.HINDI],  
  12.             shortcutKey: 'ctrl+g',  
  13.             transliterationEnabled: true  
  14.         };  
  15.   
  16.         var control = new google.elements.transliteration.TransliterationControl(options);  
  17.         control.makeTransliteratable(['transliterateTextarea']);  
  18.     }  
  19.     google.setOnLoadCallback(onLoad);  
  20. </script>  
Change the Destination language code to "HINDI" with yours and it must be in Block Letters.

Available Languages: 
  • AMHARIC
  • ARABIC
  • BENGALI
  • GREEK
  • GUJARATI
  • HINDI
  • KANNADA
  • MALAYALAM
  • MARATHI
  • NEPALI
  • PERSIAN
  • PUNJABI
  • RUSSIAN
  • SANSKRIT
  • SERBIAN
  • TAMIL
  • TELUGU
  • TIGRINYA
  • URDU

Adding HTML Code

This is the HTML code and you can add this whereever you want (i.e. in the Sidebar, in the Contact Form or in the preceding Comment Form and so on).

  1. <div class="Google-transliterate-Way2blogging">  
  2.     Type in Hindi (Press Ctrl+g to toggle between English and Hindi)<br>  
  3.     <textarea id="transliterateTextarea" style="width:600px;height:200px"></textarea>  
  4. <span style="font-weight:bold;font-size:10px;float:right;margin:5px;"></span>  
  5. </div>  
I hope you will easily understand the Google transliteration.
Thank you.


Similar Articles