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:fa2fb33e12jquery.uls * Localization updates Updating to:5ad9937ac6Change-Id: Id599d7ce882ae6c2a744a15691a9e56059d7dac9
22 lines
425 B
JavaScript
22 lines
425 B
JavaScript
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var nyTilde = {
|
|
id: 'ny-tilde',
|
|
name: 'ny-tilde',
|
|
description: 'Chichewa / Nyanja tilde keyboard',
|
|
date: '2022-06-16',
|
|
URL: 'https://github.com/wikimedia/jquery.ime',
|
|
author: 'Amir E. Aharoni',
|
|
license: 'GPLv3',
|
|
version: '1.0',
|
|
patterns: [
|
|
[ '~W', 'Ŵ' ],
|
|
[ '~w', 'ŵ' ],
|
|
[ '~/', '\u0301' ] // Combining acute
|
|
]
|
|
};
|
|
|
|
$.ime.register( nyTilde );
|
|
}( jQuery ) );
|