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,100 @@
( function ( $ ) {
'use strict';
var paPhonetic = {
id: 'pa-phonetic',
name: 'Punjabi Phonetic',
description: 'Punjabi Phonetic',
date: '2012-10-16',
URL: 'http://fedoraproject.org/wiki/I18N/Indic/PunjabiKeyboardLayouts',
author: '',
license: '',
version: '1.0',
patterns: [
['!', ''],
['1', '1'],
['@', '੨'],
['2', '2'],
['#', '੩'],
['3', '3'],
['\\$', ''],
['4', '4'],
['5', '5'],
['6', '6'],
['7', '7'],
['8', '8'],
['\\)', '੯'],
['9', '9'],
['\\),', ''],
['0', '0'],
['Q', 'ਥ'],
['q', 'ਤ'],
['w', 'ਾ'],
['E', 'ਓ'],
['e', 'ੲ'],
['r', 'ਰ'],
['T', 'ਠ'],
['t', 'ਟ'],
['Y', 'ੈ'],
['y', 'ੇ'],
['U', 'ੂ'],
['u', 'ੁ'],
['I', 'ੀ'],
['i', 'ਿ'],
['O', 'ੌ'],
['o', 'ੋ'],
['P', 'ਫ'],
['p', 'ਪ'],
['\\{', '('],
['\\}', ')'],
['A', 'ਅ'],
['a', 'ੳ'],
['S', 'ਸ਼'],
['s', 'ਸ'],
['D', 'ਧ'],
['d', 'ਦ'],
['F', 'ਢ'],
['f', 'ਡ'],
['G', 'ਘ'],
['g', 'ਗ'],
['h', 'ਹ'],
['J', 'ਝ'],
['j', 'ਜ'],
['K', 'ਖ'],
['k', 'ਕ'],
['L', 'ਲ਼'],
['l', 'ਲ'],
['\\', 'ਙ'],
['\\~', '?ੱ'],
['\\`', '?੍ '],
['Z', 'ਗ਼'],
['z', 'ਜ਼'],
['X', 'ਯ'],
['x', 'ਣ'],
['C', 'ਛ'],
['c', 'ਚ'],
['V', 'ੜ'],
['v', 'ਵ'],
['B', 'ਭ'],
['b', 'ਬ'],
['N', 'ਂ'],
['n', 'ਨ'],
['M', 'ੰ'],
['m', 'ਮ'],
['\\<', 'ਖ਼'],
['\\>', 'ੴ'],
['\\.', '?਼'],
['\\?', '?'],
['\\/', 'ਞ'],
['%', '੫'],
['\\^', '੬'],
['&', '੭'],
['\\*', '੮'],
['R', '੍ਰ'],
['H', '੍ਹ'],
['W', 'ਾਂ']]
};
$.ime.register( paPhonetic );
}( jQuery ) );