Major update of jquery.ime from upstream

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
This commit is contained in:
Amire80
2017-06-05 14:28:39 +03:00
parent 130375a22a
commit 07ba9a1191
19 changed files with 1569 additions and 56 deletions

View File

@@ -0,0 +1,112 @@
( function ( $ ) {
'use strict';
var sibe = {
id: 'sjo',
name: 'Sibe Scripts',
description: 'Sibe Scripts',
date: '2014-4-22',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Feilong Huang, <huangfeilong@gmail.com>',
license: 'GPLv3',
version: '1.0',
patterns: [
['Q', ''],
['W', '\u1838'],
['E', '\u1827'],
['R', '\u1870'],
['T', ''],
['Y', ''],
['U', ''],
['I', '\u185f'],
['O', ''],
['P', ''],
['{', '〈'],
['}', '〉'],
['A', ''],
['S', ''],
['D', ''],
['F', ''],
['G', '\u186c'],
['H', '\u186d'],
['J', ''],
['K', '\u183b'],
['L', '\u1840'],
[':', '\u1804'],
['"', '\u180c'],
['Z', '\u1872'],
['X', '\u1871'],
['C', '\u1842'],
['V', ''],
['B', ''],
['N', '\u1862'],
['M', ''],
['<', '《'],
['>', '》'],
['\\?', '?'],
['_', '\u180e'],
['\\+', '+'],
['q', '\u1834'],
['w', '\u1823'],
['e', '\u185d'],
['r', '\u1837'],
['t', '\u1868'],
['y', '\u1836'],
['u', '\u1860'],
['i', '\u185e'],
['o', '\u1825'],
['p', '\u1866'],
['\\[', ''],
['\\]', ''],
['a', '\u1820'],
['s', '\u1830'],
['d', '\u1869'],
['f', '\u186b'],
['g', '\u1864'],
['h', '\u1865'],
['j', '\u186a'],
['k', '\u1863'],
['l', '\u182f'],
[';', ';'],
['\'', '\u180b'],
['z', '\u186f'],
['x', '\u1867'],
['c', '\u186e'],
['v', '\u1861'],
['b', '\u182a'],
['n', '\u1828'],
['m', '\u182e'],
[',', '\u1808'],
['\\.', '\u1809'],
['/', '.'],
['\\-', '\u202f'],
['=', '='],
['`', '\u180d'],
['~', '~'],
['1', '1'],
['2', '2'],
['3', '3'],
['4', '4'],
['5', '5'],
['6', '6'],
['7', '7'],
['8', '8'],
['9', '9'],
['0', '0'],
['!', '!'],
['@', '\u2048'],
['#', '\u2049'],
['\\$', '—'],
['%', '%'],
['\\^', '\u200c'],
['&', '\u180a'],
['\\*', '\u200d'],
['\\(', '('],
['\\)', ')']
]
};
$.ime.register( sibe );
}( jQuery ) );