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,54 @@
( function ( $ ) {
'use strict';
var berTfng = {
id: 'ber-tfng',
name: 'Tifinagh Transliteration',
description: 'Transliteration input method for Tifinagh script',
date: '2012-10-10',
URL: 'http://www.ircam.ma/fr/index.php?soc=telec&rd=2',
author: '',
license: '',
version: '1.0',
contextLength: 0,
maxKeyLength: 0,
patterns: [
['a', 'ⴰ'],
['b', 'ⴱ'],
['c', 'ⵛ'],
['d', 'ⴷ'],
['D', ''],
['e', 'ⴻ'],
['f', 'ⴼ'],
['F', 'ⴼⵯ'],
['g', 'ⴳ'],
['G', 'ⴳⵯ'],
['h', 'ⵀ'],
['i', 'ⵉ'],
['j', 'ⵊ'],
['k', 'ⴽ'],
['K', 'ⴽⵯ'],
['l', 'ⵍ'],
['m', 'ⵎ'],
['n', ''],
['o', 'ⵄ'],
['p', 'ⵃ'],
['q', 'ⵇ'],
['Q', 'ⵈ'],
['r', ''],
['R', ''],
['s', 'ⵙ'],
['S', 'ⵚ'],
['t', 'ⵜ'],
['T', 'ⵟ'],
['v', 'ⵖ'],
['u', 'ⵓ'],
['w', 'ⵡ'],
['y', 'ⵢ'],
['x', 'ⵅ'],
['z', 'ⵣ'],
['Z', 'ⵥ']]
};
$.ime.register( berTfng );
}( jQuery ) );