Update jquery.ime from upstream
* UI improvements, fixes * More input methods * Misc functionality fixes Change-Id: I1a516027e9654a498e4e87c83f8d72ad24eb5596
This commit is contained in:
committed by
Gerrit Code Review
parent
e3e0be19f2
commit
f8947b9686
39
lib/jquery.ime/rules/be/be-latin.js
Normal file
39
lib/jquery.ime/rules/be/be-latin.js
Normal file
@@ -0,0 +1,39 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var beLatin = {
|
||||
id: 'be-latin',
|
||||
name: 'Belarusian Łacinka',
|
||||
description: 'Belarusian Latin alphabet input method',
|
||||
date: '2012-11-06',
|
||||
URL: 'http://github.com/wikimedia/jquery.ime',
|
||||
author: 'Pavel Selitskas',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
contextLength: 1,
|
||||
maxKeyLength: 1,
|
||||
patterns: [
|
||||
[ '=S', 'Š' ],
|
||||
[ '=U', 'Ŭ' ],
|
||||
[ '-S', 'Ś' ],
|
||||
[ '-L', 'Ł' ],
|
||||
[ '-Z', 'Ź' ],
|
||||
[ '=Z', 'Ž' ],
|
||||
[ '-C', 'Ć' ],
|
||||
[ '=C', 'Č' ],
|
||||
[ '-N', 'Ń' ],
|
||||
[ '=s', 'š' ],
|
||||
[ '=u', 'ŭ' ],
|
||||
[ '-s', 'ś' ],
|
||||
[ '-l', 'ł' ],
|
||||
[ '-z', 'ź' ],
|
||||
[ '=z', 'ž' ],
|
||||
[ '-c', 'ć' ],
|
||||
[ '=c', 'č' ],
|
||||
[ '-n', 'ń' ]
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( beLatin );
|
||||
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user