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,60 @@
( function ( $ ) {
'use strict';
var kaTransliteration = {
id: 'ka-transliteration',
name: 'Georgian Transliteration',
description: 'Georgian transliteration',
date: '2012-10-14',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Ioseb Dzmanashvili (http://www.code.ge), [[User:Hooman]], Srikanth L',
license: 'MIT',
version: '1.0',
contextLength: 3,
maxKeyLength: 1,
patterns: [
['\\\\([A-Za-z|\\~|\\`])', '\\\\', '$1'],
['`', '„'],
['~', '“'],
['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', 'მ'],
['W', 'ჭ'],
['R', 'ღ'],
['T', 'თ'],
['S', 'შ'],
['J', 'ჟ'],
['Z', 'ძ'],
['C', 'ჩ']]
};
$.ime.register( kaTransliteration );
}( jQuery ) );