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:
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.
Then press the“Window+Space” key of the keyboard.
Then open Notepad and start writing, but you will write any text defined in the Hindi language.
It will show 5 helping words but you can change the settings from here:
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.
Press Next.
Press Next.
On clicking “Enable Google Hindi Input”, you will see the following:
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:
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.
- English
- Hindi
- Hinglish
By default the english Type mode is selected. Now change the type mode by pressing the button.
After selection start writing the text as in the Windows OS.
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.
- <script src="https://www.google.com/jsapi" type="text/javascript">
- </script>
- <script type="text/javascript">
- 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: true
- };
-
- var control = new google.elements.transliteration.TransliterationControl(options);
- control.makeTransliteratable(['transliterateTextarea']);
- }
- google.setOnLoadCallback(onLoad);
- </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).
- <div class="Google-transliterate-Way2blogging">
- Type in Hindi (Press Ctrl+g to toggle between English and Hindi)<br>
- <textarea id="transliterateTextarea" style="width:600px;height:200px"></textarea>
- <span style="font-weight:bold;font-size:10px;float:right;margin:5px;"></span>
- </div>
I hope you will easily understand the Google transliteration.
Thank you.