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

This page is a translated version of the page Help:Extension:UniversalLanguageSelector/Input methods/mad-tilde and the translation is 35% complete.

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

Mache dies, um es zu aktivieren:

  1. Klicke das Suchfeld oben in der Seite.
  2. Klicke auf das kleine Tastatursymbol, das in der Nähe des Suchfelds erscheint.
  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. Klicke "..." am Ende der Liste. Ein Menü wird erscheinen.
    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:

Um diesen Buchstaben zu tippen... Tippe diese Tastaturtasten:
 ~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 ) );