Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/kus/kus-tilde.js
Amir E. Aharoni 7ce81838ac Update jquery.ime from upstream
Add keyboards for:
* Bari (bfa)
* Berom (bom)
* Kusaal (kus)
* Nzema (nzi)

Change-Id: Ia725f026101e48d3fe2e8c038b77075c6d5b2038
2022-12-12 20:01:28 +02:00

33 lines
705 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

( function ( $ ) {
'use strict';
var kusTilde = {
id: 'kus-tilde',
name: 'Kusaal tilde',
description: 'Kusaal input keyboard',
date: '2022-12-11',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~I', 'Ɩ' ],
[ '~i', 'ɩ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~U', 'Ʋ' ],
[ '~u', 'ʋ' ],
[ '~\\\\', '\u0300' ], // Combining grave
[ '~/', '\u0301' ], // Combining acute
[ '~\\{', '\u0303' ], // Combining tilde
[ '~-', '\u0304' ] // Combining macron
]
};
$.ime.register( kusTilde );
}( jQuery ) );