Update jquery.ime from upstream

* Adds many input methods

Change-Id: I2f3576948416e7d2bf2f935e609fe50977e7e9d9
This commit is contained in:
Santhosh Thottingal
2013-02-17 15:09:49 +05:30
committed by Santhosh
parent 6ec65fec6c
commit 7d9b81fb9d
45 changed files with 4209 additions and 53 deletions

View File

@@ -0,0 +1,63 @@
( function ( $ ) {
'use strict';
var kkArabic = {
id: 'kk-arabic',
name: 'Kazak arabic',
description: 'Kazak arabic in Arabic script keyboard layout',
date: '2013-02-12',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Parag Nemade',
license: 'GPLv3',
version: '1.0',
patterns: [
['a', 'ا'],
['A', 'ٵ'],
['b', 'ب'],
['v', 'ۆ'],
['g', 'گ'],
['R', 'ع'],
['d', 'د'],
['e', 'ە'],
['j', 'ج'],
['z', 'ز'],
['y', 'ي'],
['k', 'ك'],
['q', 'ق'],
['l', 'ل'],
['m', 'م'],
['n', 'ن'],
['N', 'ڭ'],
['o', 'و'],
['O', 'ٶ'],
['p', 'پ'],
['r', 'ر'],
['s', 'س'],
['t', 'ت'],
['w', 'ۋ'],
['u', 'ۇ'],
['U', 'ٷ'],
['f', 'ف'],
['H', 'ح'],
['h', 'ه'],
['c', 'چ'],
['S', 'ش'],
['I', 'ى'],
['i', 'ٸ'],
[';', '؛'],
[',', '،'],
['\\?', '?'],
['\\<', '>'],
['\\>', '<'],
['\\(', ')'],
['\\)', '('],
['\\[', ']'],
['\\]', '['],
['\\{', '}'],
['\\}', '{']
]
};
$.ime.register( kkArabic );
}( jQuery ) );