Update jquery.ime from upstream

* Adds many input methods

Change-Id: I2f3576948416e7d2bf2f935e609fe50977e7e9d9
This commit is contained in:
Santhosh Thottingal
2013-02-17 15:09:49 +05:30
committed by Santhosh
parent 6ec65fec6c
commit 7d9b81fb9d
45 changed files with 4209 additions and 53 deletions

View File

@@ -0,0 +1,116 @@
( function ( $ ) {
'use strict';
var kedmanee = {
id: 'th-kedmanee',
name: 'Thai Kedmanee',
description: 'Thai Kedmanee Input Method',
date: '2012-10-25',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Kevin K.S. Leung, <sprconan@gmail.com>',
license: 'GPLv3',
version: '1.0',
patterns: [
['Q', ''],
['W', '"'],
['E', 'ฎ'],
['R', 'ฑ'],
['T', 'ธ'],
['Y', 'ํ'],
['U', '๊'],
['I', 'ณ'],
['O', 'ฯ'],
['P', 'ญ'],
['{', 'ฐ'],
['}', ','],
['\\|', 'ฅ'],
['A', 'ฤ'],
['S', 'ฆ'],
['D', 'ฏ'],
['F', 'โ'],
['G', 'ฌ'],
['H', '็'],
['J', '๋'],
['K', 'ษ'],
['L', 'ศ'],
[':', 'ซ'],
['\"', '.'],
['Z', '('],
['X', ')'],
['C', 'ฉ'],
['V', 'ฮ'],
['B', 'ฺ'],
['N', '์'],
['M', '?'],
['<', 'ฒ'],
['>', 'ฬ'],
['\\?', 'ฦ'],
['q', 'ๆ'],
['w', 'ไ'],
['e', 'ำ'],
['r', 'พ'],
['t', 'ะ'],
['y', 'ั'],
['u', 'ี'],
['i', 'ร'],
['o', 'น'],
['p', 'ย'],
['\\[', 'บ'],
['\\]', 'ล'],
['\\\\', 'ฃ'],
['a', 'ฟ'],
['s', 'ห'],
['d', 'ก'],
['f', 'ด'],
['g', 'เ'],
['h', '้'],
['j', '่'],
['k', 'า'],
['l', 'ส'],
[';', 'ว'],
['\'', 'ง'],
['z', 'ผ'],
['x', 'ป'],
['c', 'แ'],
['v', 'อ'],
['b', 'ิ'],
['n', 'ื'],
['m', 'ท'],
[',', 'ม'],
['\\.', 'ใ'],
['/', 'ฝ'],
['`', '_'],
['1', 'ๅ'],
['2', '/'],
['3', '-'],
['4', 'ภ'],
['5', 'ถ'],
['6', 'ุ'],
['7', 'ึ'],
['8', 'ค'],
['9', 'ต'],
['0', 'จ'],
['\\-', 'ข'],
['=', 'ช'],
['~', '%'],
['!', '+'],
['@', '๑'],
['#', '๒'],
['\\$', '๓'],
['%', '๔'],
['\\^', 'ู'],
['&', '฿'],
['\\*', '๕'],
['\\(', '๖'],
['\\)', '๗'],
['_', '๘'],
['\\+', '๙']
]
};
$.ime.register( kedmanee );
}( jQuery ) );