Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/lrc/lrc-kbd.js
mjbmr 8e207b2381 Update jquery.ime to 91dc90c2f2
* Fix indentation in bo-ewts (15668fa788)
* Fix Western Balochi and Northern Luri autonyms (91dc90c2f2)

Change-Id: Ia54c15e6051c1e0ecf4c8e70724e2478bc6e0a86
2015-08-18 06:22:15 +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 ) );