Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/azb/azb-kbd.js
mjbmr b2d269c35e 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
2015-05-18 08:31:34 +00:00

109 lines
1.7 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 azb_kbd = {
id: 'azb-kbd',
name: 'تۆرکجه',
description: 'South Azerbaijani Keyboard Layout',
date: '2015-05-02',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Mjbmr',
license: 'GPLv3',
version: '1.0',
patterns: [
['`', '\u200d'],
['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', 'پ'],
[',', 'و'],
['~', '\u200c'],
['@', '٬'],
['#', '٫'],
['%', '٪'],
['\\^', '×'],
['&', '،'],
['\\(', ')'],
['\\)', '('],
['_', 'ـ'],
['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( azb_kbd );
}( jQuery ) );