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,133 @@
( function ( $ ) {
'use strict';
var bnNkb = {
id: 'bn-nkb',
name: 'National Keyboard',
description: 'Bengali National Keyboard input method',
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: [
['1', '১'],
['2', '২'],
['3', '৩'],
['4', ''],
['5', '৫'],
['6', '৬'],
['7', ''],
['8', '৮'],
['9', '৯'],
['0', ''],
['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', 'শ']],
patterns_x: [
['1', '৴'],
['2', '৵'],
['3', '৶'],
['4', '৳'],
['5', '৷'],
['6', '৸'],
['7', 'ं'],
['0', '৹'],
['\\-', '\u200C'],
['\\=', '\u200D'],
['q', 'ৢ'],
['w', '্য'],
['e', 'ৄ'],
['i', 'ঽ'],
['a', 'ঋ'],
['s', 'উ'],
['d', 'ই'],
['f', 'ৰ'],
['g', '॥'],
['h', 'আ'],
['j', '঱'],
['k', 'ঢ'],
['l', 'ঌ'],
['z', '৺'],
['x', 'ও'],
['c', 'এ'],
['v', '্র'],
['\\.', '়'],
['\\$', '৲'],
['\\^', '঳'],
['Q', 'ৣ'],
['A', 'ৠ'],
['S', 'ঊ'],
['D', 'ঈ'],
['F', 'ৱ'],
['L', 'ৡ'],
['X', 'ঔ'],
['C', 'ঐ']]
};
$.ime.register( bnNkb );
}( jQuery ) );