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

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

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

To enable it, do the following:

  1. ページ最上部の検索ボックスをクリック。
  2. 検索ボックスの右直下に小さなキーボードのアイコンが表示されたら、それをクリック。
  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. 一覧のいちばん後ろの「...」をクリックするとパネルが表示されます。
    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:

この文字を入力するには... 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 ) );