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,124 @@
( function ( $ ) {
'use strict';
var asInScript = {
id: 'as-inscript',
name: 'Assamese InScript',
description: 'InScript input method for Assamese according to CDAC\'s Enhanced InScript Keyboard Layout 5.2',
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: [
['X', 'ঁ'],
['x', 'ং'],
['_', 'ঃ'],
['D', 'অ'],
['E', 'আ'],
['F', 'ই'],
['R', 'ঈ'],
['G', 'উ'],
['T', 'ঊ'],
['\\+', 'ঋ'],
['S', 'এ'],
['W', 'ঐ'],
['A', 'ও'],
['Q', 'ঔ'],
['k', 'ক'],
['K', 'খ'],
['i', 'গ'],
['I', 'ঘ'],
['U', 'ঙ'],
[';', 'চ'],
['\\:', 'ছ'],
['p', 'জ'],
['P', 'ঝ'],
['\\}', 'ঞ'],
['\'', 'ট'],
['\"', 'ঠ'],
['\\[', 'ড'],
['\\{', 'ঢ'],
['C', 'ণ'],
['l', 'ত'],
['L', 'থ'],
['o', 'দ'],
['O', 'ধ'],
['v', 'ন'],
['h', 'প'],
['H', 'ফ'],
['y', 'ব'],
['Y', 'ভ'],
['c', 'ম'],
['\\?', 'য'],
['j', '\u09F0'],
['J', 'ৎ'],
['n', 'ল'],
['M', 'শ'],
['\\<', 'ষ'],
['m', 'স'],
['u', 'হ'],
['\\]', '়'],
['e', 'া'],
['f', 'ি'],
['r', 'ী'],
['g', 'ু'],
['t', 'ূ'],
['\\=', 'ৃ'],
['s', 'ে'],
['w', 'ৈ'],
['a', 'ো'],
['q', 'ৌ'],
['d', '্'],
['/', 'য়'],
['\\>', '৤'],
['0', ''],
['1', '১'],
['2', '২'],
['3', '৩'],
['4', ''],
['5', '৫'],
['6', '৬'],
['7', ''],
['8', '৮'],
['9', '৯'],
['z', 'ʼ'],
['\\!', 'অ্যা'],
['\\#', '্\u09F0'],
['\\$', '\u09F0্'],
['\\%', 'জ্ঞ'],
['\\^', 'ত্র'],
['\\&', 'ক্ষ'],
['\\*', 'শ্র'],
['\\(', '\u200D'],
['\\)', '\u200C']],
patterns_x: [
['F', 'ঌ'],
['\\>', 'ঽ'],
['\\=', 'ৠ'],
['l', 'ৎ'],
['\\[', 'ড়'],
['\\{', 'ঢ়'],
['\\+', 'ৠ'],
['R', 'ৡ'],
['f', 'ৢ'],
['r', 'ৣ'],
['\\.', '৥'],
['x', '৺'],
['\\<', '৲'],
[',', '৳'],
['\\!', '৴'],
['\\@', '৵'],
['\\#', '৶'],
['\\$', '৷'],
['\\%', '৸'],
['\\^', '৹'],
['\\?', '৻'],
['4', '₹']]
};
$.ime.register( asInScript );
}( jQuery ) );