Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/lrc/lrc-kbd.js
mjbmr 3f1a498c24 Update jquery.ime to bb38f7d711
* Fixes for Northern Luri Keyboard Layout

Change-Id: I96eb538598ef37a33e209787446c1c1bc8709fb9
2015-05-27 19:32:12 +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 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 ) );