Update jquery.ime from upstream

1. Adding new input methods for languages of Africa
without the need for replacement or key combinations:
* Akan (ak, tw)
* Bambara (bm)
* Dagbani (dag)
* Dinka (din)
* Fula (ff)
* Ga (gaa)
* Wolof (wo)

2. Fixing the combining character in Yoruba Alt method
from combining tone to combining accent, for better
Unicode compliance.

3. Minor fixes in existing layouts with replacements and
key combinations for Akan, Dagbani, Dinka, Fula, and Ga.

Updating to
1ff996f24b

Change-Id: I3bbc0ac46def6b4e00f6155c14da9a40e2749b27
This commit is contained in:
Amir Aharoni
2019-05-10 21:44:55 +03:00
parent 3d18a0cc1f
commit 4f5565033d
14 changed files with 264 additions and 28 deletions

View File

@@ -0,0 +1,23 @@
( function ( $ ) {
'use strict';
var akTilde = {
id: 'ak-tilde',
name: 'Akan tilde',
description: 'Akan tilde',
date: '2019-05-06',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
maxKeyLength: 2,
patterns: [
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ]
]
};
$.ime.register( akTilde );
}( jQuery ) );