Help:Extension:UniversalLanguageSelector/Input methods/mad-tilde

You can type in the Madurese alphabet with all the special letters!

To enable it, do the following:

  1. Click the search box at the top of the page.
  2. Click the little keyboard icon that appears near the search box.
  3. If "Madhurâ" appears at the top of the list, select "Madhurâ - tilde".
  4. If "Madhurâ" doesn't appear at the top of the list, do the following:
    1. Click "..." at the bottom of the list. A panel will appear.
    2. Find "Madhurâ" in the panel. Click it.
    3. 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 ) );