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,99 @@
( function ( $ ) {
'use strict';
var urTransliteration = {
id: 'ur-transliteration',
name: 'Urdu Transliteration',
description: 'Urdu Transliteration based on RTS',
date: '2012-10-16',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Mohammed Imran Tabani',
license: '',
version: '1.0',
patterns: [
['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', '\u0651\u00AD'],
['c', 'ے'],
['\\?','؟'],
['j', 'ا'],
['n', 'غ'],
['N', 'ئ'],
['b', 'ش'],
['\\<', '','>'],
['m', 'ع'],
['u', 'ت'],
['\\]', '','['],
['e', 'ھ'],
['f', 'ن'],
['r', 'د'],
['g', 'ل'],
['t', 'ٹ'],
['\\=', '','='],
['\\\\', '\\'],
['s', 'و'],
['w', 'ص'],
['a', 'م'],
['q', 'ط'],
['d', 'ر'],
['\\|', '|'],
['/', '/'],
['\\>', '<'],
['0', '0'],
['1', '1'],
['2', '2'],
['3', '3'],
['4', '4'],
['5', '5'],
['6', '6'],
['7', '7'],
['8', '8'],
['9', '9'],
['\\@', '@'],
['\\#', '','#'],
['\\$', '','$'],
['\\%', '','٪'],
['\\^', '','^'],
['\\&', 'ۖ'],
['\\*', '٭'],
['\\(', '('],
['\\)', ')']]
};
$.ime.register( urTransliteration );
}( jQuery ) );