Major update of jquery.ime from upstream

Changes:
* New tilde-based layouts for several languages of Africa:
  Kabyle, Kabiye, Kikuyu, Luganda, Lingala, Malagasy,
  Northern Sotho, Koyraboro Senni, Sango, Sotho, Venda
* Latin Pinyin transliteration keyboard
  https://github.com/wikimedia/jquery.ime/pull/545
* CSS and JS cleanup, to switch to stylelint and eslint.

Updating to
22407cf992

Bug: T212637
Change-Id: I167e572a6cc0f7c1c727e87e8ff361d88f87b40f
This commit is contained in:
Amir Aharoni
2019-03-29 15:02:33 -07:00
parent ce063ac705
commit a85bc8171c
36 changed files with 1954 additions and 1482 deletions

View File

@@ -0,0 +1,41 @@
( function ( $ ) {
'use strict';
var kabTilde = {
id: 'kab-tilde',
name: 'kab-tilde',
description: 'Kabyle Latin tilde keyboard',
date: '2018-11-30',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~C', 'C\u030C' ], // C with combining caron
[ '~c', 'c\u030C' ], // c with combining caron
[ '~D', 'D\u0323' ], // D with combining dot below
[ '~d', 'd\u0323' ], // d with combining dot below
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~G', 'G\u030C' ], // G with combining caron
[ '~g', 'g\u030C' ], // g with combining caron
[ '~Y', 'Ɣ' ],
[ '~y', 'ɣ' ],
[ '~H', 'H\u0323' ], // H with combining dot below
[ '~h', 'h\u0323' ], // h with combining dot below
// ~R is not provided to avoided confusion between caron and dot below
[ '~S', 'S\u0323' ], // S with combining dot below
[ '~s', 's\u0323' ], // s with combining dot below
[ '~T', 'T\u0323' ], // T with combining dot below
[ '~t', 't\u0323' ], // t with combining dot below
[ '~Z', 'Z\u0323' ], // Z with combining dot below
[ '~z', 'z\u0323' ], // z with combining dot below
[ '~w', 'ʷ' ],
[ '~v', '\u030C' ], // Combining caron
[ '~\\.', '\u0323' ], // Combining dot below
[ '~,', '\u0327' ] // Combining cedilla
]
};
$.ime.register( kabTilde );
}( jQuery ) );