Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/ks/ks-kbd.js
Santhosh Thottingal 7d9b81fb9d Update jquery.ime from upstream
* Adds many input methods

Change-Id: I2f3576948416e7d2bf2f935e609fe50977e7e9d9
2013-02-17 09:44:26 +00:00

114 lines
1.8 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

( function ( $ ) {
'use strict';
var ksKbd = {
id: 'ks-Kbd',
name: 'Kbd',
description: 'Kbd keyboard for Kashmiri language using Arabic script',
date: '2013-02-09',
author: 'Parag Nemade',
license: 'GPLv3',
version: '1.0',
patterns: [
['\\~', 'ٓ'],
['\\!', '!'],
['1', '۱'],
['\\@', '@'],
['2', '۲'],
['\\#', '#'],
['3', '۳'],
['\\$', '$'],
['4', '۴'],
['5', '۵'],
['6', '۶'],
['7', '۷'],
['8', '۸'],
['\\(', ')'],
['9', '۹'],
['\\)', '('],
['0', '۰'],
['\\_', 'ّ'],
['\\-', '-'],
['\\+', '+'],
['\\=', '='],
['Q', 'ﷺ'],
['q', 'ق'],
['W', 'ؤ'],
['w', 'و'],
['E', 'ئ'],
['e', 'ع'],
['R', 'ڑ'],
['r', 'ر'],
['T', 'ٹ'],
['t', 'ت'],
['Y', '؁'],
['y', 'ے'],
['U', '،'],
['u', 'ء'],
['I', 'ۆ'],
['i', 'ی'],
['O', 'ۃ'],
['o', 'ہ'],
['P', 'إ'],
['p', 'پ'],
['\\{', 'ٰ'],
['\\[', ']'],
['\\}', 'ٰ'],
['\\]', '['],
['A', 'آ'],
['a', 'ا'],
['S', 'ش'],
['s', 'س'],
['D', 'ڈ'],
['d', 'د'],
['F', 'ُ'],
['f', 'ف'],
['G', 'غ'],
['g', 'گ'],
['H', 'ح'],
['h', 'ھ'],
['J', 'ژ'],
['j', 'ج'],
['K', 'خ'],
['k', 'ک'],
['L', 'ؓ'],
['l', 'ل'],
[':', ':'],
[';', '؛'],
['\"', '\"'],
['\'', 'ٰ'],
['\\|', 'أ'],
['\\\\', '؎'],
['\\~', 'ً'],
['`', 'ٍ'],
['Z', 'ذ'],
['z', 'ز'],
['X', 'ض'],
['x', 'ص'],
['C', 'ث'],
['c', 'چ'],
['V', 'ظ'],
['v', 'ط'],
['B', 'أ'],
['b', 'ب'],
['N', 'ں'],
['n', 'ن'],
['M', 'ٔ'],
['m', 'م'],
['\\>', 'َ'],
[',', '،'],
['\\<', 'ِ'],
['\\.', '۔'],
['\\?', '؟'],
['/', '/'],
['\\%', '%'],
['\\^', '^'],
['\\&', '&'],
['\\*', '*']
]
};
$.ime.register( ksKbd );
}( jQuery ) );