Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/ee/ee-tilde.js
Amir E. Aharoni 6d8bda5553 Update jquery.ime and jquery.uls from upstream
jquery.ime
* Add layouts for Nyanja/Chichewa (ny) and Tumbuka (tum).
* Fix layout name for Bura (bwr)
* Add macron to the Ewe (ee) keyboard
Updating to:
fa2fb33e12

jquery.uls
* Localization updates
Updating to:
5ad9937ac6

Change-Id: Id599d7ce882ae6c2a744a15691a9e56059d7dac9
2022-06-27 13:25:58 +03:00

38 lines
815 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 eeTilde = {
id: 'ee-tilde',
name: 'ee-tilde',
description: 'Ewe input keyboard',
date: '2018-11-30',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.1',
patterns: [
[ '~D', 'Ɖ' ],
[ '~d', 'ɖ' ],
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~F', 'Ƒ' ],
[ '~f', 'ƒ' ],
[ '~G', 'Ɣ' ],
[ '~g', 'ɣ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~V', 'Ʋ' ],
[ '~v', 'ʋ' ],
[ '~/', '\u0301' ], // Combining acute
[ '~\\\\', '\u0300' ], // Combining grave
[ '~\\{', '\u0303' ], // Combining tilde
[ '~-', '\u0304' ], // Combining macron
[ '~\\^', '\u030C' ] // Combining caron
]
};
$.ime.register( eeTilde );
}( jQuery ) );