Update jquery.ime from upstream
* Adds many input methods Change-Id: I2f3576948416e7d2bf2f935e609fe50977e7e9d9
This commit is contained in:
committed by
Santhosh
parent
6ec65fec6c
commit
7d9b81fb9d
100
lib/jquery.ime/rules/sr/sr-kbd.js
Normal file
100
lib/jquery.ime/rules/sr/sr-kbd.js
Normal file
@@ -0,0 +1,100 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var srKbd = {
|
||||
id: 'sr-kbd',
|
||||
name: 'Serbian keyboard',
|
||||
description: 'Serbian keyboard layout',
|
||||
date: '2013-02-12',
|
||||
URL: 'http://github.com/wikimedia/jquery.ime',
|
||||
author: 'Parag Nemade',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
['\'g', 'ѓ'],
|
||||
['\'G', 'Ѓ'],
|
||||
['\'k', 'ќ'],
|
||||
['\'K', 'Ќ'],
|
||||
['\\@', '\"'],
|
||||
['\\^', '&'],
|
||||
['\\&', '/'],
|
||||
['\\*', '('],
|
||||
['\\(', ')'],
|
||||
['\\)', '='],
|
||||
['\\-', '\''],
|
||||
['\\_', '?'],
|
||||
['\\=', '+'],
|
||||
['\\+', '*'],
|
||||
['q', 'љ'],
|
||||
['Q', 'Љ'],
|
||||
['w', 'њ'],
|
||||
['W', 'Њ'],
|
||||
['e', 'е'],
|
||||
['E', 'Е'],
|
||||
['r', 'р'],
|
||||
['R', 'Р'],
|
||||
['t', 'т'],
|
||||
['T', 'Т'],
|
||||
['y', 'з'],
|
||||
['Y', 'З'],
|
||||
['u', 'у'],
|
||||
['U', 'У'],
|
||||
['i', 'и'],
|
||||
['I', 'И'],
|
||||
['o', 'о'],
|
||||
['O', 'О'],
|
||||
['p', 'п'],
|
||||
['P', 'П'],
|
||||
['\\[', 'ш'],
|
||||
['\\{', 'Ш'],
|
||||
['\\]', 'ђ'],
|
||||
['\\}', 'Ђ'],
|
||||
['a', 'а'],
|
||||
['A', 'А'],
|
||||
['s', 'с'],
|
||||
['S', 'С'],
|
||||
['d', 'д'],
|
||||
['D', 'Д'],
|
||||
['f', 'ф'],
|
||||
['F', 'Ф'],
|
||||
['g', 'г'],
|
||||
['G', 'Г'],
|
||||
['h', 'х'],
|
||||
['H', 'Х'],
|
||||
['j', 'ј'],
|
||||
['J', 'Ј'],
|
||||
['k', 'к'],
|
||||
['K', 'К'],
|
||||
['l', 'л'],
|
||||
['L', 'Л'],
|
||||
[';', 'ч'],
|
||||
[':', 'Ч'],
|
||||
['\'', 'ћ'],
|
||||
['\"', 'Ћ'],
|
||||
['\\', 'ж'],
|
||||
['\\|', 'Ж'],
|
||||
['z', 'ѕ'],
|
||||
['Z', 'Ѕ'],
|
||||
['x', 'џ'],
|
||||
['X', 'Џ'],
|
||||
['c', 'ц'],
|
||||
['C', 'Ц'],
|
||||
['v', 'в'],
|
||||
['V', 'В'],
|
||||
['b', 'б'],
|
||||
['B', 'Б'],
|
||||
['n', 'н'],
|
||||
['N', 'Н'],
|
||||
['m', 'м'],
|
||||
['M', 'М'],
|
||||
['\\<', ';'],
|
||||
['\\>', ':'],
|
||||
['/', '-'],
|
||||
['\\?', '_']
|
||||
]
|
||||
|
||||
};
|
||||
$.ime.register( srKbd );
|
||||
|
||||
}( jQuery ) );
|
||||
|
||||
Reference in New Issue
Block a user