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
33 lines
668 B
JavaScript
33 lines
668 B
JavaScript
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var defs = {
|
|
id: 'gaa-cqx',
|
|
name: 'Ga - CQX replacement',
|
|
description: 'Ga input method with C, Q and X replaced by Ŋ, Ɛ and Ɔ',
|
|
date: '2016-06-23',
|
|
URL: 'https://www.kasahorow.org/node/260',
|
|
author: 'Amir E. Aharoni, based on Kasahorow Akan',
|
|
license: 'GPLv3',
|
|
version: '1.1',
|
|
contextLength: 1,
|
|
maxKeyLength: 1,
|
|
patterns: [
|
|
[ '\\\\C', 'C' ],
|
|
[ '\\\\c', 'c' ],
|
|
[ '\\\\Q', 'Q' ],
|
|
[ '\\\\q', 'q' ],
|
|
[ '\\\\X', 'X' ],
|
|
[ '\\\\x', 'x' ],
|
|
[ 'C', 'Ŋ' ],
|
|
[ 'c', 'ŋ' ],
|
|
[ 'Q', 'Ɛ' ],
|
|
[ 'q', 'ɛ' ],
|
|
[ 'X', 'Ɔ' ],
|
|
[ 'x', 'ɔ' ]
|
|
]
|
|
};
|
|
|
|
$.ime.register( defs );
|
|
}( jQuery ) );
|