Update jquery.ime to beeab196dd

* Fix for Western Baluchi Keyboard beeab196dd
* Add Northern Luri Keyboard Layout a2b34c8bd2
* Remove windows line ending extra character aa51ccb77c
* Fixing name of Western Baluchi Keyboard 0cd0018c3b
* Fixes for South Azerbaijani (azb) 8fa57066cb
* Fix test cases for Southern Kurdish 8295e88690
* Add Southern Kurdish Keyboard Layout 40f9949e55
* Fixes for South Azerbaijani Keyboard Layout 5498eae381

Change-Id: I5007cfd4d49c61ccd5c8ae574930dda517056b96
This commit is contained in:
mjbmr
2015-05-09 09:29:54 +00:00
committed by KartikMistry
parent 1227a9188c
commit b2d269c35e
5 changed files with 251 additions and 19 deletions

View File

@@ -0,0 +1,108 @@
( function ( $ ) {
'use strict';
var lrc_kbd = {
id: 'lrc-kbd',
name: 'لوری مینجایی',
description: 'Northern Luri Keyboard Layout',
date: '2015-05-11',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Mjbmr',
license: 'GPLv3',
version: '1.0',
patterns: [
['`', '\u200c'],
['1', '۱'],
['2', '۲'],
['3', '۳'],
['4', '۴'],
['5', '۵'],
['6', '۶'],
['7', '۷'],
['8', '۸'],
['9', '۹'],
['0', '۰'],
['q', 'ض'],
['w', 'ص'],
['e', 'ث'],
['r', 'ق'],
['t', 'ف'],
['y', 'غ'],
['u', 'ع'],
['i', 'ه'],
['o', 'خ'],
['p', 'ح'],
['\\[', 'ج'],
['\\]', 'چ'],
['a', 'ش'],
['s', 'س'],
['d', 'ی'],
['f', 'ب'],
['g', 'ل'],
['h', 'ا'],
['j', 'ت'],
['k', 'ن'],
['l', 'م'],
[';', 'ک'],
['\'', 'گ'],
['z', 'ظ'],
['x', 'ط'],
['c', 'ز'],
['v', 'ر'],
['b', 'ذ'],
['n', 'د'],
['m', 'پ'],
[',', 'ڤ'],
['~', '÷'],
['@', '٬'],
['#', '٫'],
['%', '٪'],
['\\^', '×'],
['&', '،'],
['\\(', ')'],
['\\)', '('],
['_', 'ـ'],
['Q', 'ۊ'],
['W', 'ۉ'],
['E', 'وٙ'],
['R', 'ً'],
['T', 'و'],
['Y', 'أ'],
['U', 'ە'],
['I', 'ؤ'],
['O', ']'],
['P', '['],
['\\{', '}'],
['\\}', '{'],
['A', 'اٛ'],
['S', 'ئ'],
['D', 'ئو'],
['F', 'ئى'],
['G', 'لٛ'],
['H', 'آ'],
['J', 'او'],
['K', '»'],
['L', '«'],
['"', '؛'],
['Z', 'نٛ'],
['X', 'گٛ'],
['C', 'ژ'],
['V', 'ێ'],
['B', 'دٙ'],
['N', 'ٔ'],
['M', 'ء'],
['<', '>'],
['>', '<'],
['\\?', '؟']
]
};
$.ime.register( lrc_kbd );
}( jQuery ) );