Help:Extension:UniversalLanguageSelector/Input methods/mad-tilde
Appearance
You can type in the Madurese alphabet with all the special letters!
To enable it, do the following:
- Click the search box at the top of the page.
- Click the little keyboard icon that appears near the search box.
- If "Madhurâ" appears at the top of the list, select "Madhurâ - tilde".
- If "Madhurâ" doesn't appear at the top of the list, do the following:
- Click "..." at the bottom of the list. A panel will appear.
- Find "Madhurâ" in the panel. Click it.
- Click the little keyboard icon again, and select "Madhurâ - tilde".
To disable this special keyboard and go back to type usually, click the little keyboard icon and then click "Use native keyboard", or press Ctrl-M. To re-enable the keyboard, press Ctrl-M, or repeat the steps above.
To type Madurese letters, type the tilde (~
), and after it type the Latin letter that is the most similar to the Madurese letter.
For example, to type ḍ, type ~ and d.
The full list:
To type this letter... | Type these keyboard keys: |
---|---|
 | ~A |
â | ~a |
Ḍ | ~D |
ḍ | ~d |
È | ~E |
è | ~e |
Ṭ | ~T |
ṭ | ~t |
( function ( $ ) {
'use strict';
var madTilde = {
id: 'mad-tilde',
name: 'mad-tilde',
description: 'Madurese tilde keyboard',
date: '2020-12-06',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1',
patterns: [
[ '~A', 'Â' ],
[ '~a', 'â' ],
[ '~D', 'Ḍ' ],
[ '~d', 'ḍ' ],
[ '~E', 'È' ],
[ '~e', 'è' ],
[ '~T', 'Ṭ' ],
[ '~t', 'ṭ' ]
]
};
$.ime.register( madTilde );
}( jQuery ) );