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
25 lines
459 B
JavaScript
25 lines
459 B
JavaScript
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var roaTara = {
|
|
id: 'roa-tara-GVU',
|
|
name: 'Tarandine',
|
|
description: 'Tarandine input method.',
|
|
date: '2013-09-01',
|
|
URL: 'http://github.com/wikimedia/jquery.ime',
|
|
author: 'roa-tara.wiki community',
|
|
license: 'GPLv3',
|
|
version: '1.0',
|
|
contextLength: 0,
|
|
maxKeyLength: 2,
|
|
patterns: [
|
|
['a§', 'á'],
|
|
['o§', 'ó'],
|
|
['A§', 'Á'],
|
|
['O§', 'Ó']
|
|
]
|
|
};
|
|
|
|
$.ime.register( roaTara );
|
|
}( jQuery ) );
|