Input method integration with ULS

The file ext.uls.settingspanel.js is a draft for common
code in the different settings panels.

Change-Id: I057274f16b27b2c18d43d41c1d43f485a18ef0bf
This commit is contained in:
Santhosh Thottingal
2012-10-18 16:27:25 +05:30
parent 90de05cb97
commit f13e474e43
67 changed files with 8867 additions and 22 deletions

View File

@@ -0,0 +1,84 @@
( function ( $ ) {
'use strict';
var asBornona = {
id: 'as-bornona',
name: 'Assamese Bornona',
description: 'Bornona input method for Assamese',
date: '2012-10-10',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Junaid P V',
license: 'GPLv3',
version: '1.0',
contextLength: 0,
maxKeyLength: 0,
patterns: [
['q', 'ং'],
['Q', 'ঙ'],
['w', 'ঢ'],
['W', 'ঠ'],
['e', 'ে'],
['E', 'ৈ'],
['r', 'ৰ'],
['R', 'ৃ'],
['t', 'ত'],
['T', 'ট'],
['y', 'ধ'],
['Y', 'থ'],
['u', 'ু'],
['U', 'ূ'],
['i', 'ি'],
['I', 'ী'],
['o', 'ো'],
['O', 'ৌ'],
['p', 'প'],
['P', '্ৰ'],
['\\|', 'র'],
['\\\\', 'ৱ'],
['a', 'া'],
['A', 'অ'],
['s', 'স'],
['S', 'শ'],
['d', 'দ'],
['D', 'ড'],
['f', 'ফ'],
['F', 'ৰ্ফ'],
['g', 'গ'],
['G', 'ঘ'],
['h', '্'],
['H', 'হ'],
['j', 'জ'],
['J', 'ঝ'],
['k', 'ক'],
['K', 'খ'],
['l', 'ল'],
['L', '।'],
['z', 'য'],
['Z', 'ড়'],
['x', 'ষ'],
['X', 'ঢ়'],
['c', 'চ'],
['C', 'ছ'],
['v', 'ভ'],
['V', '্য'],
['b', 'ব'],
['B', 'য়'],
['n', 'ন'],
['N', 'ণ'],
['m', 'ম'],
['M', 'ঞ'],
['0', ''],
['1', '১'],
['2', '২'],
['3', '৩'],
['4', ''],
['5', '৫'],
['6', '৬'],
['7', ''],
['8', '৮'],
['9', '৯'],
['\\`', '\u200C']]
};
$.ime.register( asBornona );
}( jQuery ) );