Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/mnc/mnc.js
Amire80 07ba9a1191 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
2017-06-06 15:32:09 +03:00

113 lines
2.9 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

( function ( $ ) {
'use strict';
var manchu = {
id: 'mnc',
name: 'Manchu Scripts',
description: 'Manchu 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', '\u1877'],
['X', '\u1871'],
['C', '\u1842'],
['V', ''],
['B', ''],
['N', '\u1862'],
['M', ''],
['<', '《'],
['>', '》'],
['\\?', '?'],
['_', '\u180e'],
['\\+', '+'],
['q', '\u1834'],
['w', '\u1823'],
['e', '\u185d'],
['r', '\u1875'],
['t', '\u1868'],
['y', '\u1836'],
['u', '\u1860'],
['i', '\u1873'],
['o', '\u1825'],
['p', '\u1866'],
['\\[', ''],
['\\]', ''],
['a', '\u1820'],
['s', '\u1830'],
['d', '\u1869'],
['f', '\u1876'],
['g', '\u1864'],
['h', '\u1865'],
['j', '\u186a'],
['k', '\u1874'],
['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( manchu );
}( jQuery ) );