Merged a lot of older and newer patches,
adding numerous new input methods:
* Tibetan Sambhota
* Fulfulde Alt
* Lushotseed
* Mongolian Todo, Todo-Ali, Traditional, Tradional-Ali, Phagspa
* Manchu, Manchu Ali
* Burmese mm3
* Piedmontese
* Tarandine
* Xibe
* Venetian
* Wolof
Also, updates for:
* Oriya Transliteration
* Tamil 99
Updating to
b7a96d4737
Change-Id: I092ff1b8aef70f8274829f3794090738826d1a8a
39 lines
675 B
JavaScript
39 lines
675 B
JavaScript
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var ffAlt = {
|
|
id: 'ff-alt',
|
|
name: 'Fulfulde Alt',
|
|
description: 'Fulfulde Alt',
|
|
date: '2017-05-30',
|
|
URL: 'http://github.com/wikimedia/jquery.ime',
|
|
author: 'Amir E. Aharoni',
|
|
license: 'GPLv3',
|
|
version: '1.0',
|
|
contextLength: 0,
|
|
maxKeyLength: 2,
|
|
patterns: [
|
|
[ 'n~', 'ñ' ],
|
|
[ 'N~', 'Ñ' ],
|
|
[ 'ñ~', 'n~' ],
|
|
[ 'Ñ~', 'N~' ]
|
|
],
|
|
patterns_x: [
|
|
[ 'b', 'ɓ' ],
|
|
[ 'B', 'Ɓ' ],
|
|
[ 'd', 'ɗ' ],
|
|
[ 'D', 'Ɗ' ],
|
|
[ 'g', 'ɠ' ],
|
|
[ 'G', 'Ɠ' ],
|
|
[ 'j', 'ɲ' ],
|
|
[ 'J', 'Ɲ' ],
|
|
[ 'n', 'ŋ' ],
|
|
[ 'N', 'Ŋ' ],
|
|
[ 'y', 'ƴ' ],
|
|
[ 'Y', 'Ƴ' ]
|
|
]
|
|
};
|
|
|
|
$.ime.register( ffAlt );
|
|
}( jQuery ) );
|